@openfin/ui-library 0.30.21 → 0.31.0-alpha.1757709323
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/controls/Menus/ContentMenu/ContentMenuItem/ContentMenuItem.d.ts +17 -15
- package/dist/components/controls/Menus/CustomContextMenu/useContextMenuKeyboardNavigation.d.ts +1 -1
- package/dist/components/controls/Menus/CustomContextMenu/useContextMenuNavigation.d.ts +2 -2
- package/dist/components/controls/Menus/common.d.ts +66 -37
- package/dist/components/elements/DropdownMenu/dropdownMenu.d.ts +3 -0
- package/dist/components/elements/DropdownMenu/menu.d.ts +5 -0
- package/dist/components/elements/Icon/icon.d.ts +1 -0
- package/dist/components/elements/Label/label.d.ts +1 -0
- package/dist/components/elements/Loader/loader.d.ts +1 -1
- package/dist/components/elements/Loader/openfinLoader.d.ts +1 -1
- package/dist/components/input/BaseInput/baseInput.d.ts +13 -11
- package/dist/components/input/Checkbox/checkbox.d.ts +10 -11
- package/dist/components/input/Checkbox/checkbox.variants.d.ts +21 -0
- package/dist/components/input/DateInput/dateInput.d.ts +3 -1
- package/dist/components/input/NumberInput/numberInput.d.ts +4 -1
- package/dist/components/input/RadioInput/radioInput.d.ts +3 -3
- package/dist/components/input/TextArea/textArea.d.ts +3 -3
- package/dist/components/input/TextInput/textInput.d.ts +10 -7
- package/dist/components/layout/Box/box.d.ts +15 -1
- package/dist/components/system/ThemeProvider/lib/iconSet.d.ts +2 -1
- package/dist/components/typography/Heading/heading.d.ts +96 -96
- package/dist/components/typography/Text/text.d.ts +6 -1
- package/dist/hooks/useColorScheme.d.ts +1 -1
- package/dist/hooks/useTheme.d.ts +2 -2
- package/dist/index.js +145 -108
- package/dist/storybookHelpers.d.ts +53 -52
- package/package.json +41 -38
|
@@ -41,14 +41,14 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
41
41
|
suppressContentEditableWarning?: boolean | undefined;
|
|
42
42
|
suppressHydrationWarning?: boolean | undefined;
|
|
43
43
|
accessKey?: string | undefined;
|
|
44
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
44
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
45
45
|
autoFocus?: boolean | undefined;
|
|
46
46
|
className?: string | undefined;
|
|
47
47
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
48
48
|
contextMenu?: string | undefined;
|
|
49
49
|
dir?: string | undefined;
|
|
50
50
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
51
|
-
enterKeyHint?: "
|
|
51
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
52
52
|
hidden?: boolean | undefined;
|
|
53
53
|
id?: string | undefined;
|
|
54
54
|
lang?: string | undefined;
|
|
@@ -82,34 +82,34 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
82
82
|
itemRef?: string | undefined;
|
|
83
83
|
results?: number | undefined;
|
|
84
84
|
security?: string | undefined;
|
|
85
|
-
unselectable?: "
|
|
86
|
-
inputMode?: "
|
|
85
|
+
unselectable?: "off" | "on" | undefined;
|
|
86
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
87
87
|
is?: string | undefined;
|
|
88
88
|
"aria-activedescendant"?: string | undefined;
|
|
89
89
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
90
|
-
"aria-autocomplete"?: "none" | "
|
|
90
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
91
91
|
"aria-braillelabel"?: string | undefined;
|
|
92
92
|
"aria-brailleroledescription"?: string | undefined;
|
|
93
93
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
94
|
-
"aria-checked"?: boolean | "
|
|
94
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
95
95
|
"aria-colcount"?: number | undefined;
|
|
96
96
|
"aria-colindex"?: number | undefined;
|
|
97
97
|
"aria-colindextext"?: string | undefined;
|
|
98
98
|
"aria-colspan"?: number | undefined;
|
|
99
99
|
"aria-controls"?: string | undefined;
|
|
100
|
-
"aria-current"?: boolean | "
|
|
100
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
101
101
|
"aria-describedby"?: string | undefined;
|
|
102
102
|
"aria-description"?: string | undefined;
|
|
103
103
|
"aria-details"?: string | undefined;
|
|
104
104
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
105
|
-
"aria-dropeffect"?: "
|
|
105
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
106
106
|
"aria-errormessage"?: string | undefined;
|
|
107
107
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
108
108
|
"aria-flowto"?: string | undefined;
|
|
109
109
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
110
|
-
"aria-haspopup"?: boolean | "
|
|
110
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
111
111
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
112
|
-
"aria-invalid"?: boolean | "
|
|
112
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
113
113
|
"aria-keyshortcuts"?: string | undefined;
|
|
114
114
|
"aria-label"?: string | undefined;
|
|
115
115
|
"aria-labelledby"?: string | undefined;
|
|
@@ -122,9 +122,9 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
122
122
|
"aria-owns"?: string | undefined;
|
|
123
123
|
"aria-placeholder"?: string | undefined;
|
|
124
124
|
"aria-posinset"?: number | undefined;
|
|
125
|
-
"aria-pressed"?: boolean | "
|
|
125
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
126
126
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
127
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
127
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
128
128
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
129
129
|
"aria-roledescription"?: string | undefined;
|
|
130
130
|
"aria-rowcount"?: number | undefined;
|
|
@@ -138,7 +138,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
138
138
|
"aria-valuemin"?: number | undefined;
|
|
139
139
|
"aria-valuenow"?: number | undefined;
|
|
140
140
|
"aria-valuetext"?: string | undefined;
|
|
141
|
-
children: import("react").ReactNode
|
|
141
|
+
children: import("react").ReactNode;
|
|
142
142
|
dangerouslySetInnerHTML?: {
|
|
143
143
|
__html: string | TrustedHTML;
|
|
144
144
|
} | undefined;
|
|
@@ -302,10 +302,10 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
302
302
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
303
303
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
304
304
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
305
|
-
size?:
|
|
306
|
-
weight?:
|
|
305
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
306
|
+
weight?: "normal" | "bold" | undefined;
|
|
307
307
|
theme: import("styled-components").DefaultTheme;
|
|
308
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
308
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|
|
309
309
|
export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
310
310
|
level: 2;
|
|
311
311
|
defaultChecked?: boolean | undefined;
|
|
@@ -313,14 +313,14 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
313
313
|
suppressContentEditableWarning?: boolean | undefined;
|
|
314
314
|
suppressHydrationWarning?: boolean | undefined;
|
|
315
315
|
accessKey?: string | undefined;
|
|
316
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
316
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
317
317
|
autoFocus?: boolean | undefined;
|
|
318
318
|
className?: string | undefined;
|
|
319
319
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
320
320
|
contextMenu?: string | undefined;
|
|
321
321
|
dir?: string | undefined;
|
|
322
322
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
323
|
-
enterKeyHint?: "
|
|
323
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
324
324
|
hidden?: boolean | undefined;
|
|
325
325
|
id?: string | undefined;
|
|
326
326
|
lang?: string | undefined;
|
|
@@ -354,34 +354,34 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
354
354
|
itemRef?: string | undefined;
|
|
355
355
|
results?: number | undefined;
|
|
356
356
|
security?: string | undefined;
|
|
357
|
-
unselectable?: "
|
|
358
|
-
inputMode?: "
|
|
357
|
+
unselectable?: "off" | "on" | undefined;
|
|
358
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
359
359
|
is?: string | undefined;
|
|
360
360
|
"aria-activedescendant"?: string | undefined;
|
|
361
361
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
362
|
-
"aria-autocomplete"?: "none" | "
|
|
362
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
363
363
|
"aria-braillelabel"?: string | undefined;
|
|
364
364
|
"aria-brailleroledescription"?: string | undefined;
|
|
365
365
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
366
|
-
"aria-checked"?: boolean | "
|
|
366
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
367
367
|
"aria-colcount"?: number | undefined;
|
|
368
368
|
"aria-colindex"?: number | undefined;
|
|
369
369
|
"aria-colindextext"?: string | undefined;
|
|
370
370
|
"aria-colspan"?: number | undefined;
|
|
371
371
|
"aria-controls"?: string | undefined;
|
|
372
|
-
"aria-current"?: boolean | "
|
|
372
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
373
373
|
"aria-describedby"?: string | undefined;
|
|
374
374
|
"aria-description"?: string | undefined;
|
|
375
375
|
"aria-details"?: string | undefined;
|
|
376
376
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
377
|
-
"aria-dropeffect"?: "
|
|
377
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
378
378
|
"aria-errormessage"?: string | undefined;
|
|
379
379
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
380
380
|
"aria-flowto"?: string | undefined;
|
|
381
381
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
382
|
-
"aria-haspopup"?: boolean | "
|
|
382
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
383
383
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
384
|
-
"aria-invalid"?: boolean | "
|
|
384
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
385
385
|
"aria-keyshortcuts"?: string | undefined;
|
|
386
386
|
"aria-label"?: string | undefined;
|
|
387
387
|
"aria-labelledby"?: string | undefined;
|
|
@@ -394,9 +394,9 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
394
394
|
"aria-owns"?: string | undefined;
|
|
395
395
|
"aria-placeholder"?: string | undefined;
|
|
396
396
|
"aria-posinset"?: number | undefined;
|
|
397
|
-
"aria-pressed"?: boolean | "
|
|
397
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
398
398
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
399
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
399
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
400
400
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
401
401
|
"aria-roledescription"?: string | undefined;
|
|
402
402
|
"aria-rowcount"?: number | undefined;
|
|
@@ -410,7 +410,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
410
410
|
"aria-valuemin"?: number | undefined;
|
|
411
411
|
"aria-valuenow"?: number | undefined;
|
|
412
412
|
"aria-valuetext"?: string | undefined;
|
|
413
|
-
children: import("react").ReactNode
|
|
413
|
+
children: import("react").ReactNode;
|
|
414
414
|
dangerouslySetInnerHTML?: {
|
|
415
415
|
__html: string | TrustedHTML;
|
|
416
416
|
} | undefined;
|
|
@@ -574,10 +574,10 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
574
574
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
575
575
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
576
576
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
577
|
-
size?:
|
|
578
|
-
weight?:
|
|
577
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
578
|
+
weight?: "normal" | "bold" | undefined;
|
|
579
579
|
theme: import("styled-components").DefaultTheme;
|
|
580
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
580
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|
|
581
581
|
export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
582
582
|
level: 3;
|
|
583
583
|
defaultChecked?: boolean | undefined;
|
|
@@ -585,14 +585,14 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
585
585
|
suppressContentEditableWarning?: boolean | undefined;
|
|
586
586
|
suppressHydrationWarning?: boolean | undefined;
|
|
587
587
|
accessKey?: string | undefined;
|
|
588
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
588
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
589
589
|
autoFocus?: boolean | undefined;
|
|
590
590
|
className?: string | undefined;
|
|
591
591
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
592
592
|
contextMenu?: string | undefined;
|
|
593
593
|
dir?: string | undefined;
|
|
594
594
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
595
|
-
enterKeyHint?: "
|
|
595
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
596
596
|
hidden?: boolean | undefined;
|
|
597
597
|
id?: string | undefined;
|
|
598
598
|
lang?: string | undefined;
|
|
@@ -626,34 +626,34 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
626
626
|
itemRef?: string | undefined;
|
|
627
627
|
results?: number | undefined;
|
|
628
628
|
security?: string | undefined;
|
|
629
|
-
unselectable?: "
|
|
630
|
-
inputMode?: "
|
|
629
|
+
unselectable?: "off" | "on" | undefined;
|
|
630
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
631
631
|
is?: string | undefined;
|
|
632
632
|
"aria-activedescendant"?: string | undefined;
|
|
633
633
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
634
|
-
"aria-autocomplete"?: "none" | "
|
|
634
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
635
635
|
"aria-braillelabel"?: string | undefined;
|
|
636
636
|
"aria-brailleroledescription"?: string | undefined;
|
|
637
637
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
638
|
-
"aria-checked"?: boolean | "
|
|
638
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
639
639
|
"aria-colcount"?: number | undefined;
|
|
640
640
|
"aria-colindex"?: number | undefined;
|
|
641
641
|
"aria-colindextext"?: string | undefined;
|
|
642
642
|
"aria-colspan"?: number | undefined;
|
|
643
643
|
"aria-controls"?: string | undefined;
|
|
644
|
-
"aria-current"?: boolean | "
|
|
644
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
645
645
|
"aria-describedby"?: string | undefined;
|
|
646
646
|
"aria-description"?: string | undefined;
|
|
647
647
|
"aria-details"?: string | undefined;
|
|
648
648
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
649
|
-
"aria-dropeffect"?: "
|
|
649
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
650
650
|
"aria-errormessage"?: string | undefined;
|
|
651
651
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
652
652
|
"aria-flowto"?: string | undefined;
|
|
653
653
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
654
|
-
"aria-haspopup"?: boolean | "
|
|
654
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
655
655
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
656
|
-
"aria-invalid"?: boolean | "
|
|
656
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
657
657
|
"aria-keyshortcuts"?: string | undefined;
|
|
658
658
|
"aria-label"?: string | undefined;
|
|
659
659
|
"aria-labelledby"?: string | undefined;
|
|
@@ -666,9 +666,9 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
666
666
|
"aria-owns"?: string | undefined;
|
|
667
667
|
"aria-placeholder"?: string | undefined;
|
|
668
668
|
"aria-posinset"?: number | undefined;
|
|
669
|
-
"aria-pressed"?: boolean | "
|
|
669
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
670
670
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
671
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
671
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
672
672
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
673
673
|
"aria-roledescription"?: string | undefined;
|
|
674
674
|
"aria-rowcount"?: number | undefined;
|
|
@@ -682,7 +682,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
682
682
|
"aria-valuemin"?: number | undefined;
|
|
683
683
|
"aria-valuenow"?: number | undefined;
|
|
684
684
|
"aria-valuetext"?: string | undefined;
|
|
685
|
-
children: import("react").ReactNode
|
|
685
|
+
children: import("react").ReactNode;
|
|
686
686
|
dangerouslySetInnerHTML?: {
|
|
687
687
|
__html: string | TrustedHTML;
|
|
688
688
|
} | undefined;
|
|
@@ -846,10 +846,10 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
846
846
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
847
847
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
848
848
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
849
|
-
size?:
|
|
850
|
-
weight?:
|
|
849
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
850
|
+
weight?: "normal" | "bold" | undefined;
|
|
851
851
|
theme: import("styled-components").DefaultTheme;
|
|
852
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
852
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|
|
853
853
|
export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
854
854
|
level: 4;
|
|
855
855
|
defaultChecked?: boolean | undefined;
|
|
@@ -857,14 +857,14 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
857
857
|
suppressContentEditableWarning?: boolean | undefined;
|
|
858
858
|
suppressHydrationWarning?: boolean | undefined;
|
|
859
859
|
accessKey?: string | undefined;
|
|
860
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
860
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
861
861
|
autoFocus?: boolean | undefined;
|
|
862
862
|
className?: string | undefined;
|
|
863
863
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
864
864
|
contextMenu?: string | undefined;
|
|
865
865
|
dir?: string | undefined;
|
|
866
866
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
867
|
-
enterKeyHint?: "
|
|
867
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
868
868
|
hidden?: boolean | undefined;
|
|
869
869
|
id?: string | undefined;
|
|
870
870
|
lang?: string | undefined;
|
|
@@ -898,34 +898,34 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
898
898
|
itemRef?: string | undefined;
|
|
899
899
|
results?: number | undefined;
|
|
900
900
|
security?: string | undefined;
|
|
901
|
-
unselectable?: "
|
|
902
|
-
inputMode?: "
|
|
901
|
+
unselectable?: "off" | "on" | undefined;
|
|
902
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
903
903
|
is?: string | undefined;
|
|
904
904
|
"aria-activedescendant"?: string | undefined;
|
|
905
905
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
906
|
-
"aria-autocomplete"?: "none" | "
|
|
906
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
907
907
|
"aria-braillelabel"?: string | undefined;
|
|
908
908
|
"aria-brailleroledescription"?: string | undefined;
|
|
909
909
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
910
|
-
"aria-checked"?: boolean | "
|
|
910
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
911
911
|
"aria-colcount"?: number | undefined;
|
|
912
912
|
"aria-colindex"?: number | undefined;
|
|
913
913
|
"aria-colindextext"?: string | undefined;
|
|
914
914
|
"aria-colspan"?: number | undefined;
|
|
915
915
|
"aria-controls"?: string | undefined;
|
|
916
|
-
"aria-current"?: boolean | "
|
|
916
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
917
917
|
"aria-describedby"?: string | undefined;
|
|
918
918
|
"aria-description"?: string | undefined;
|
|
919
919
|
"aria-details"?: string | undefined;
|
|
920
920
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
921
|
-
"aria-dropeffect"?: "
|
|
921
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
922
922
|
"aria-errormessage"?: string | undefined;
|
|
923
923
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
924
924
|
"aria-flowto"?: string | undefined;
|
|
925
925
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
926
|
-
"aria-haspopup"?: boolean | "
|
|
926
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
927
927
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
928
|
-
"aria-invalid"?: boolean | "
|
|
928
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
929
929
|
"aria-keyshortcuts"?: string | undefined;
|
|
930
930
|
"aria-label"?: string | undefined;
|
|
931
931
|
"aria-labelledby"?: string | undefined;
|
|
@@ -938,9 +938,9 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
938
938
|
"aria-owns"?: string | undefined;
|
|
939
939
|
"aria-placeholder"?: string | undefined;
|
|
940
940
|
"aria-posinset"?: number | undefined;
|
|
941
|
-
"aria-pressed"?: boolean | "
|
|
941
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
942
942
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
943
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
943
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
944
944
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
945
945
|
"aria-roledescription"?: string | undefined;
|
|
946
946
|
"aria-rowcount"?: number | undefined;
|
|
@@ -954,7 +954,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
954
954
|
"aria-valuemin"?: number | undefined;
|
|
955
955
|
"aria-valuenow"?: number | undefined;
|
|
956
956
|
"aria-valuetext"?: string | undefined;
|
|
957
|
-
children: import("react").ReactNode
|
|
957
|
+
children: import("react").ReactNode;
|
|
958
958
|
dangerouslySetInnerHTML?: {
|
|
959
959
|
__html: string | TrustedHTML;
|
|
960
960
|
} | undefined;
|
|
@@ -1118,10 +1118,10 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1118
1118
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1119
1119
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1120
1120
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1121
|
-
size?:
|
|
1122
|
-
weight?:
|
|
1121
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1122
|
+
weight?: "normal" | "bold" | undefined;
|
|
1123
1123
|
theme: import("styled-components").DefaultTheme;
|
|
1124
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
1124
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|
|
1125
1125
|
export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1126
1126
|
level: 5;
|
|
1127
1127
|
defaultChecked?: boolean | undefined;
|
|
@@ -1129,14 +1129,14 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1129
1129
|
suppressContentEditableWarning?: boolean | undefined;
|
|
1130
1130
|
suppressHydrationWarning?: boolean | undefined;
|
|
1131
1131
|
accessKey?: string | undefined;
|
|
1132
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
1132
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
1133
1133
|
autoFocus?: boolean | undefined;
|
|
1134
1134
|
className?: string | undefined;
|
|
1135
1135
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
1136
1136
|
contextMenu?: string | undefined;
|
|
1137
1137
|
dir?: string | undefined;
|
|
1138
1138
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
1139
|
-
enterKeyHint?: "
|
|
1139
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
1140
1140
|
hidden?: boolean | undefined;
|
|
1141
1141
|
id?: string | undefined;
|
|
1142
1142
|
lang?: string | undefined;
|
|
@@ -1170,34 +1170,34 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1170
1170
|
itemRef?: string | undefined;
|
|
1171
1171
|
results?: number | undefined;
|
|
1172
1172
|
security?: string | undefined;
|
|
1173
|
-
unselectable?: "
|
|
1174
|
-
inputMode?: "
|
|
1173
|
+
unselectable?: "off" | "on" | undefined;
|
|
1174
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1175
1175
|
is?: string | undefined;
|
|
1176
1176
|
"aria-activedescendant"?: string | undefined;
|
|
1177
1177
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1178
|
-
"aria-autocomplete"?: "none" | "
|
|
1178
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
1179
1179
|
"aria-braillelabel"?: string | undefined;
|
|
1180
1180
|
"aria-brailleroledescription"?: string | undefined;
|
|
1181
1181
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1182
|
-
"aria-checked"?: boolean | "
|
|
1182
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1183
1183
|
"aria-colcount"?: number | undefined;
|
|
1184
1184
|
"aria-colindex"?: number | undefined;
|
|
1185
1185
|
"aria-colindextext"?: string | undefined;
|
|
1186
1186
|
"aria-colspan"?: number | undefined;
|
|
1187
1187
|
"aria-controls"?: string | undefined;
|
|
1188
|
-
"aria-current"?: boolean | "
|
|
1188
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
1189
1189
|
"aria-describedby"?: string | undefined;
|
|
1190
1190
|
"aria-description"?: string | undefined;
|
|
1191
1191
|
"aria-details"?: string | undefined;
|
|
1192
1192
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1193
|
-
"aria-dropeffect"?: "
|
|
1193
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1194
1194
|
"aria-errormessage"?: string | undefined;
|
|
1195
1195
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1196
1196
|
"aria-flowto"?: string | undefined;
|
|
1197
1197
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1198
|
-
"aria-haspopup"?: boolean | "
|
|
1198
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1199
1199
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1200
|
-
"aria-invalid"?: boolean | "
|
|
1200
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1201
1201
|
"aria-keyshortcuts"?: string | undefined;
|
|
1202
1202
|
"aria-label"?: string | undefined;
|
|
1203
1203
|
"aria-labelledby"?: string | undefined;
|
|
@@ -1210,9 +1210,9 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1210
1210
|
"aria-owns"?: string | undefined;
|
|
1211
1211
|
"aria-placeholder"?: string | undefined;
|
|
1212
1212
|
"aria-posinset"?: number | undefined;
|
|
1213
|
-
"aria-pressed"?: boolean | "
|
|
1213
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1214
1214
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1215
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
1215
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1216
1216
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1217
1217
|
"aria-roledescription"?: string | undefined;
|
|
1218
1218
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1226,7 +1226,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1226
1226
|
"aria-valuemin"?: number | undefined;
|
|
1227
1227
|
"aria-valuenow"?: number | undefined;
|
|
1228
1228
|
"aria-valuetext"?: string | undefined;
|
|
1229
|
-
children: import("react").ReactNode
|
|
1229
|
+
children: import("react").ReactNode;
|
|
1230
1230
|
dangerouslySetInnerHTML?: {
|
|
1231
1231
|
__html: string | TrustedHTML;
|
|
1232
1232
|
} | undefined;
|
|
@@ -1390,10 +1390,10 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1390
1390
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1391
1391
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1392
1392
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1393
|
-
size?:
|
|
1394
|
-
weight?:
|
|
1393
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1394
|
+
weight?: "normal" | "bold" | undefined;
|
|
1395
1395
|
theme: import("styled-components").DefaultTheme;
|
|
1396
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
1396
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|
|
1397
1397
|
export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1398
1398
|
level: 6;
|
|
1399
1399
|
defaultChecked?: boolean | undefined;
|
|
@@ -1401,14 +1401,14 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1401
1401
|
suppressContentEditableWarning?: boolean | undefined;
|
|
1402
1402
|
suppressHydrationWarning?: boolean | undefined;
|
|
1403
1403
|
accessKey?: string | undefined;
|
|
1404
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined
|
|
1404
|
+
autoCapitalize?: (string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
1405
1405
|
autoFocus?: boolean | undefined;
|
|
1406
1406
|
className?: string | undefined;
|
|
1407
1407
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
1408
1408
|
contextMenu?: string | undefined;
|
|
1409
1409
|
dir?: string | undefined;
|
|
1410
1410
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
1411
|
-
enterKeyHint?: "
|
|
1411
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
1412
1412
|
hidden?: boolean | undefined;
|
|
1413
1413
|
id?: string | undefined;
|
|
1414
1414
|
lang?: string | undefined;
|
|
@@ -1442,34 +1442,34 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1442
1442
|
itemRef?: string | undefined;
|
|
1443
1443
|
results?: number | undefined;
|
|
1444
1444
|
security?: string | undefined;
|
|
1445
|
-
unselectable?: "
|
|
1446
|
-
inputMode?: "
|
|
1445
|
+
unselectable?: "off" | "on" | undefined;
|
|
1446
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1447
1447
|
is?: string | undefined;
|
|
1448
1448
|
"aria-activedescendant"?: string | undefined;
|
|
1449
1449
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1450
|
-
"aria-autocomplete"?: "none" | "
|
|
1450
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
1451
1451
|
"aria-braillelabel"?: string | undefined;
|
|
1452
1452
|
"aria-brailleroledescription"?: string | undefined;
|
|
1453
1453
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1454
|
-
"aria-checked"?: boolean | "
|
|
1454
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1455
1455
|
"aria-colcount"?: number | undefined;
|
|
1456
1456
|
"aria-colindex"?: number | undefined;
|
|
1457
1457
|
"aria-colindextext"?: string | undefined;
|
|
1458
1458
|
"aria-colspan"?: number | undefined;
|
|
1459
1459
|
"aria-controls"?: string | undefined;
|
|
1460
|
-
"aria-current"?: boolean | "
|
|
1460
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
1461
1461
|
"aria-describedby"?: string | undefined;
|
|
1462
1462
|
"aria-description"?: string | undefined;
|
|
1463
1463
|
"aria-details"?: string | undefined;
|
|
1464
1464
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1465
|
-
"aria-dropeffect"?: "
|
|
1465
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1466
1466
|
"aria-errormessage"?: string | undefined;
|
|
1467
1467
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1468
1468
|
"aria-flowto"?: string | undefined;
|
|
1469
1469
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1470
|
-
"aria-haspopup"?: boolean | "
|
|
1470
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1471
1471
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1472
|
-
"aria-invalid"?: boolean | "
|
|
1472
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1473
1473
|
"aria-keyshortcuts"?: string | undefined;
|
|
1474
1474
|
"aria-label"?: string | undefined;
|
|
1475
1475
|
"aria-labelledby"?: string | undefined;
|
|
@@ -1482,9 +1482,9 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1482
1482
|
"aria-owns"?: string | undefined;
|
|
1483
1483
|
"aria-placeholder"?: string | undefined;
|
|
1484
1484
|
"aria-posinset"?: number | undefined;
|
|
1485
|
-
"aria-pressed"?: boolean | "
|
|
1485
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1486
1486
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1487
|
-
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text
|
|
1487
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1488
1488
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1489
1489
|
"aria-roledescription"?: string | undefined;
|
|
1490
1490
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1498,7 +1498,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1498
1498
|
"aria-valuemin"?: number | undefined;
|
|
1499
1499
|
"aria-valuenow"?: number | undefined;
|
|
1500
1500
|
"aria-valuetext"?: string | undefined;
|
|
1501
|
-
children: import("react").ReactNode
|
|
1501
|
+
children: import("react").ReactNode;
|
|
1502
1502
|
dangerouslySetInnerHTML?: {
|
|
1503
1503
|
__html: string | TrustedHTML;
|
|
1504
1504
|
} | undefined;
|
|
@@ -1662,7 +1662,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1662
1662
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1663
1663
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1664
1664
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1665
|
-
size?:
|
|
1666
|
-
weight?:
|
|
1665
|
+
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1666
|
+
weight?: "normal" | "bold" | undefined;
|
|
1667
1667
|
theme: import("styled-components").DefaultTheme;
|
|
1668
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "
|
|
1668
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "size" | "weight" | "level">;
|