Skip to content

Commit 19746d6

Browse files
authored
fix(): change autocapitalize types to any to avoid conflicts (#2509)
1 parent 65006a1 commit 19746d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/declarations/stencil-public-runtime.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -875,8 +875,8 @@ export namespace JSXBase {
875875
accept?: string;
876876
allowdirs?: boolean;
877877
alt?: string;
878-
autoCapitalize?: string;
879-
autocapitalize?: string;
878+
autoCapitalize?: any;
879+
autocapitalize?: any;
880880
autoComplete?: string;
881881
autocomplete?: string;
882882
autoFocus?: boolean;
@@ -1235,8 +1235,8 @@ export namespace JSXBase {
12351235
vocab?: string;
12361236

12371237
// Non-standard Attributes
1238-
autoCapitalize?: string;
1239-
autocapitalize?: string;
1238+
autoCapitalize?: any;
1239+
autocapitalize?: any;
12401240
autoCorrect?: string;
12411241
autocorrect?: string;
12421242
autoSave?: string;

0 commit comments

Comments
 (0)