Skip to content

Commit 869b745

Browse files
committed
autocapitalize is standard
1 parent d6b032d commit 869b745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/elements.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,7 @@ export type AriaRole =
721721
export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, DOMAttributes<T> {
722722
// Standard HTML Attributes
723723
accesskey?: string | undefined | null;
724+
autocapitalize?: 'characters' | 'off' | 'on' | 'none' | 'sentences' | 'words' | undefined | null;
724725
autofocus?: boolean | undefined | null;
725726
class?: string | undefined | null;
726727
contenteditable?: Booleanish | 'inherit' | 'plaintext-only' | undefined | null;
@@ -770,7 +771,6 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
770771
vocab?: string | undefined | null;
771772

772773
// Non-standard Attributes
773-
autocapitalize?: 'characters' | 'off' | 'on' | 'none' | 'sentences' | 'words' | undefined | null;
774774
autocorrect?: string | undefined | null;
775775
autosave?: string | undefined | null;
776776
color?: string | undefined | null;

0 commit comments

Comments
 (0)