@openfin/ui-library 0.28.1-alpha.1737713987 → 0.28.1-alpha.1738144127
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/CollapsibleCard/collapsibleCard.d.ts +1 -1
- package/dist/components/controls/ExpandableButton/expandableButton.d.ts +1 -1
- package/dist/components/controls/ExpandableButton/expandablePanel.d.ts +1 -1
- package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/CustomContextMenuItem.d.ts +1 -1
- package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/NormalCustomContextMenuItem.d.ts +1 -1
- package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/RootMenuHeader.d.ts +1 -1
- package/dist/components/controls/Menus/CustomContextMenu/CustomContextMenuItems/SubmenuHeaderCustomContextMenuItem.d.ts +1 -1
- 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 +36 -65
- package/dist/components/elements/Calendar/calendar.d.ts +1 -1
- package/dist/components/elements/Icon/openfin/BellFilledIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/BellIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/BlockedIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/BookmarkFilled.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/BookmarkOutlined.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/BrokenLinkIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/ChevronDownIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/ChevronLeftIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/ChevronRightIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/ChevronUpIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/ExclamationCircledFilledIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/FallbackGlobeIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/FilledCircleIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/FilterIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/FloppyDiskIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/FragmentsIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/LightBulbFilledIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/LightBulbOutlinedIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/LockedClosedFilledIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/MinimizeIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/OpenFinIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/PageIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/RedDotIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/StackIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/StorefrontIcon.d.ts +2 -2
- package/dist/components/elements/Icon/openfin/WorkspaceIcon.d.ts +2 -2
- package/dist/components/elements/Label/label.d.ts +1 -2
- 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 +10 -8
- package/dist/components/input/Checkbox/checkbox.d.ts +7 -7
- package/dist/components/input/NumberInput/numberInput.d.ts +0 -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 +7 -8
- package/dist/components/layout/Box/box.d.ts +1 -15
- package/dist/components/layout/HamburgerNavigation/sidebarMenu.d.ts +1 -1
- package/dist/components/layout/TabList/tab.d.ts +2 -1
- package/dist/components/system/ThemeProvider/lib/iconSet.d.ts +340 -320
- package/dist/components/system/ThemeProvider/themeProvider.d.ts +2 -1
- package/dist/components/system/ThemeProvider/themeProvider.spec.d.ts +1 -1
- package/dist/components/templates/CascadingDropdownMenu/cascadingDropdownMenu.d.ts +1 -2
- package/dist/components/templates/ContactCard/PresenceIcons.d.ts +4 -4
- package/dist/components/typography/Heading/heading.d.ts +408 -354
- package/dist/components/typography/Text/text.d.ts +1 -6
- package/dist/hooks/useColorScheme.d.ts +1 -1
- package/dist/hooks/useTheme.d.ts +2 -2
- package/dist/index.js +164 -164
- package/dist/index.js.LICENSE.txt +3 -17
- package/dist/storybookHelpers.d.ts +53 -54
- package/package.json +20 -20
|
@@ -41,16 +41,18 @@ 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 | (string & {});
|
|
45
|
+
autoFocus?: boolean | undefined;
|
|
44
46
|
className?: string | undefined;
|
|
45
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
47
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
46
48
|
contextMenu?: string | undefined;
|
|
47
49
|
dir?: string | undefined;
|
|
48
50
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
51
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
49
52
|
hidden?: boolean | undefined;
|
|
50
53
|
id?: string | undefined;
|
|
51
54
|
lang?: string | undefined;
|
|
52
55
|
nonce?: string | undefined;
|
|
53
|
-
placeholder?: string | undefined;
|
|
54
56
|
slot?: string | undefined;
|
|
55
57
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
56
58
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -60,14 +62,16 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
60
62
|
radioGroup?: string | undefined;
|
|
61
63
|
role?: import("react").AriaRole | undefined;
|
|
62
64
|
about?: string | undefined;
|
|
65
|
+
content?: string | undefined;
|
|
63
66
|
datatype?: string | undefined;
|
|
64
67
|
inlist?: any;
|
|
65
68
|
prefix?: string | undefined;
|
|
66
69
|
property?: string | undefined;
|
|
70
|
+
rel?: string | undefined;
|
|
67
71
|
resource?: string | undefined;
|
|
72
|
+
rev?: string | undefined;
|
|
68
73
|
typeof?: string | undefined;
|
|
69
74
|
vocab?: string | undefined;
|
|
70
|
-
autoCapitalize?: string | undefined;
|
|
71
75
|
autoCorrect?: string | undefined;
|
|
72
76
|
autoSave?: string | undefined;
|
|
73
77
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -79,59 +83,64 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
79
83
|
results?: number | undefined;
|
|
80
84
|
security?: string | undefined;
|
|
81
85
|
unselectable?: "on" | "off" | undefined;
|
|
82
|
-
inputMode?: "
|
|
86
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
83
87
|
is?: string | undefined;
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
88
|
+
"aria-activedescendant"?: string | undefined;
|
|
89
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
91
|
+
"aria-braillelabel"?: string | undefined;
|
|
92
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
93
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
94
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
95
|
+
"aria-colcount"?: number | undefined;
|
|
96
|
+
"aria-colindex"?: number | undefined;
|
|
97
|
+
"aria-colindextext"?: string | undefined;
|
|
98
|
+
"aria-colspan"?: number | undefined;
|
|
99
|
+
"aria-controls"?: string | undefined;
|
|
100
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
101
|
+
"aria-describedby"?: string | undefined;
|
|
102
|
+
"aria-description"?: string | undefined;
|
|
103
|
+
"aria-details"?: string | undefined;
|
|
104
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
105
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
106
|
+
"aria-errormessage"?: string | undefined;
|
|
107
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
108
|
+
"aria-flowto"?: string | undefined;
|
|
109
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
110
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
111
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
113
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
114
|
+
"aria-label"?: string | undefined;
|
|
115
|
+
"aria-labelledby"?: string | undefined;
|
|
116
|
+
"aria-level"?: number | undefined;
|
|
117
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
118
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
119
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
120
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
121
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
122
|
+
"aria-owns"?: string | undefined;
|
|
123
|
+
"aria-placeholder"?: string | undefined;
|
|
124
|
+
"aria-posinset"?: number | undefined;
|
|
125
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
126
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
127
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
128
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
129
|
+
"aria-roledescription"?: string | undefined;
|
|
130
|
+
"aria-rowcount"?: number | undefined;
|
|
131
|
+
"aria-rowindex"?: number | undefined;
|
|
132
|
+
"aria-rowindextext"?: string | undefined;
|
|
133
|
+
"aria-rowspan"?: number | undefined;
|
|
134
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
135
|
+
"aria-setsize"?: number | undefined;
|
|
136
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
137
|
+
"aria-valuemax"?: number | undefined;
|
|
138
|
+
"aria-valuemin"?: number | undefined;
|
|
139
|
+
"aria-valuenow"?: number | undefined;
|
|
140
|
+
"aria-valuetext"?: string | undefined;
|
|
141
|
+
children: import("react").ReactNode | undefined;
|
|
133
142
|
dangerouslySetInnerHTML?: {
|
|
134
|
-
__html: string;
|
|
143
|
+
__html: string | TrustedHTML;
|
|
135
144
|
} | undefined;
|
|
136
145
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
137
146
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -201,6 +210,8 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
201
210
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
202
211
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
203
212
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
213
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
214
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
204
215
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
205
216
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
206
217
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -270,9 +281,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
270
281
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
271
282
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
272
283
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
273
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
274
284
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
275
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
276
285
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
277
286
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
278
287
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -293,10 +302,10 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
293
302
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
294
303
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
295
304
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
296
|
-
size?: "
|
|
297
|
-
weight?: "
|
|
305
|
+
size?: import("../../system").FontSizeType;
|
|
306
|
+
weight?: import("../../system").FontWeightType;
|
|
298
307
|
theme: import("styled-components").DefaultTheme;
|
|
299
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
308
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|
|
300
309
|
export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
301
310
|
level: 2;
|
|
302
311
|
defaultChecked?: boolean | undefined;
|
|
@@ -304,16 +313,18 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
304
313
|
suppressContentEditableWarning?: boolean | undefined;
|
|
305
314
|
suppressHydrationWarning?: boolean | undefined;
|
|
306
315
|
accessKey?: string | undefined;
|
|
316
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
317
|
+
autoFocus?: boolean | undefined;
|
|
307
318
|
className?: string | undefined;
|
|
308
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
319
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
309
320
|
contextMenu?: string | undefined;
|
|
310
321
|
dir?: string | undefined;
|
|
311
322
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
323
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
312
324
|
hidden?: boolean | undefined;
|
|
313
325
|
id?: string | undefined;
|
|
314
326
|
lang?: string | undefined;
|
|
315
327
|
nonce?: string | undefined;
|
|
316
|
-
placeholder?: string | undefined;
|
|
317
328
|
slot?: string | undefined;
|
|
318
329
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
319
330
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -323,14 +334,16 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
323
334
|
radioGroup?: string | undefined;
|
|
324
335
|
role?: import("react").AriaRole | undefined;
|
|
325
336
|
about?: string | undefined;
|
|
337
|
+
content?: string | undefined;
|
|
326
338
|
datatype?: string | undefined;
|
|
327
339
|
inlist?: any;
|
|
328
340
|
prefix?: string | undefined;
|
|
329
341
|
property?: string | undefined;
|
|
342
|
+
rel?: string | undefined;
|
|
330
343
|
resource?: string | undefined;
|
|
344
|
+
rev?: string | undefined;
|
|
331
345
|
typeof?: string | undefined;
|
|
332
346
|
vocab?: string | undefined;
|
|
333
|
-
autoCapitalize?: string | undefined;
|
|
334
347
|
autoCorrect?: string | undefined;
|
|
335
348
|
autoSave?: string | undefined;
|
|
336
349
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -342,59 +355,64 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
342
355
|
results?: number | undefined;
|
|
343
356
|
security?: string | undefined;
|
|
344
357
|
unselectable?: "on" | "off" | undefined;
|
|
345
|
-
inputMode?: "
|
|
358
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
346
359
|
is?: string | undefined;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
360
|
+
"aria-activedescendant"?: string | undefined;
|
|
361
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
362
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
363
|
+
"aria-braillelabel"?: string | undefined;
|
|
364
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
365
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
366
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
367
|
+
"aria-colcount"?: number | undefined;
|
|
368
|
+
"aria-colindex"?: number | undefined;
|
|
369
|
+
"aria-colindextext"?: string | undefined;
|
|
370
|
+
"aria-colspan"?: number | undefined;
|
|
371
|
+
"aria-controls"?: string | undefined;
|
|
372
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
373
|
+
"aria-describedby"?: string | undefined;
|
|
374
|
+
"aria-description"?: string | undefined;
|
|
375
|
+
"aria-details"?: string | undefined;
|
|
376
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
377
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
378
|
+
"aria-errormessage"?: string | undefined;
|
|
379
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
380
|
+
"aria-flowto"?: string | undefined;
|
|
381
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
382
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
383
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
384
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
385
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
386
|
+
"aria-label"?: string | undefined;
|
|
387
|
+
"aria-labelledby"?: string | undefined;
|
|
388
|
+
"aria-level"?: number | undefined;
|
|
389
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
390
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
391
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
392
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
393
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
394
|
+
"aria-owns"?: string | undefined;
|
|
395
|
+
"aria-placeholder"?: string | undefined;
|
|
396
|
+
"aria-posinset"?: number | undefined;
|
|
397
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
398
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
399
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
400
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
401
|
+
"aria-roledescription"?: string | undefined;
|
|
402
|
+
"aria-rowcount"?: number | undefined;
|
|
403
|
+
"aria-rowindex"?: number | undefined;
|
|
404
|
+
"aria-rowindextext"?: string | undefined;
|
|
405
|
+
"aria-rowspan"?: number | undefined;
|
|
406
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
407
|
+
"aria-setsize"?: number | undefined;
|
|
408
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
409
|
+
"aria-valuemax"?: number | undefined;
|
|
410
|
+
"aria-valuemin"?: number | undefined;
|
|
411
|
+
"aria-valuenow"?: number | undefined;
|
|
412
|
+
"aria-valuetext"?: string | undefined;
|
|
413
|
+
children: import("react").ReactNode | undefined;
|
|
396
414
|
dangerouslySetInnerHTML?: {
|
|
397
|
-
__html: string;
|
|
415
|
+
__html: string | TrustedHTML;
|
|
398
416
|
} | undefined;
|
|
399
417
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
400
418
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -464,6 +482,8 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
464
482
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
465
483
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
466
484
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
485
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
486
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
467
487
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
468
488
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
469
489
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -533,9 +553,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
533
553
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
534
554
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
535
555
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
536
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
537
556
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
538
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
539
557
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
540
558
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
541
559
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -556,10 +574,10 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
556
574
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
557
575
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
558
576
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
559
|
-
size?: "
|
|
560
|
-
weight?: "
|
|
577
|
+
size?: import("../../system").FontSizeType;
|
|
578
|
+
weight?: import("../../system").FontWeightType;
|
|
561
579
|
theme: import("styled-components").DefaultTheme;
|
|
562
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
580
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|
|
563
581
|
export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
564
582
|
level: 3;
|
|
565
583
|
defaultChecked?: boolean | undefined;
|
|
@@ -567,16 +585,18 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
567
585
|
suppressContentEditableWarning?: boolean | undefined;
|
|
568
586
|
suppressHydrationWarning?: boolean | undefined;
|
|
569
587
|
accessKey?: string | undefined;
|
|
588
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
589
|
+
autoFocus?: boolean | undefined;
|
|
570
590
|
className?: string | undefined;
|
|
571
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
591
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
572
592
|
contextMenu?: string | undefined;
|
|
573
593
|
dir?: string | undefined;
|
|
574
594
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
595
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
575
596
|
hidden?: boolean | undefined;
|
|
576
597
|
id?: string | undefined;
|
|
577
598
|
lang?: string | undefined;
|
|
578
599
|
nonce?: string | undefined;
|
|
579
|
-
placeholder?: string | undefined;
|
|
580
600
|
slot?: string | undefined;
|
|
581
601
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
582
602
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -586,14 +606,16 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
586
606
|
radioGroup?: string | undefined;
|
|
587
607
|
role?: import("react").AriaRole | undefined;
|
|
588
608
|
about?: string | undefined;
|
|
609
|
+
content?: string | undefined;
|
|
589
610
|
datatype?: string | undefined;
|
|
590
611
|
inlist?: any;
|
|
591
612
|
prefix?: string | undefined;
|
|
592
613
|
property?: string | undefined;
|
|
614
|
+
rel?: string | undefined;
|
|
593
615
|
resource?: string | undefined;
|
|
616
|
+
rev?: string | undefined;
|
|
594
617
|
typeof?: string | undefined;
|
|
595
618
|
vocab?: string | undefined;
|
|
596
|
-
autoCapitalize?: string | undefined;
|
|
597
619
|
autoCorrect?: string | undefined;
|
|
598
620
|
autoSave?: string | undefined;
|
|
599
621
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -605,59 +627,64 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
605
627
|
results?: number | undefined;
|
|
606
628
|
security?: string | undefined;
|
|
607
629
|
unselectable?: "on" | "off" | undefined;
|
|
608
|
-
inputMode?: "
|
|
630
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
609
631
|
is?: string | undefined;
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
632
|
+
"aria-activedescendant"?: string | undefined;
|
|
633
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
634
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
635
|
+
"aria-braillelabel"?: string | undefined;
|
|
636
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
637
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
638
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
639
|
+
"aria-colcount"?: number | undefined;
|
|
640
|
+
"aria-colindex"?: number | undefined;
|
|
641
|
+
"aria-colindextext"?: string | undefined;
|
|
642
|
+
"aria-colspan"?: number | undefined;
|
|
643
|
+
"aria-controls"?: string | undefined;
|
|
644
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
645
|
+
"aria-describedby"?: string | undefined;
|
|
646
|
+
"aria-description"?: string | undefined;
|
|
647
|
+
"aria-details"?: string | undefined;
|
|
648
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
649
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
650
|
+
"aria-errormessage"?: string | undefined;
|
|
651
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
652
|
+
"aria-flowto"?: string | undefined;
|
|
653
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
654
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
655
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
656
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
657
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
658
|
+
"aria-label"?: string | undefined;
|
|
659
|
+
"aria-labelledby"?: string | undefined;
|
|
660
|
+
"aria-level"?: number | undefined;
|
|
661
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
662
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
663
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
664
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
665
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
666
|
+
"aria-owns"?: string | undefined;
|
|
667
|
+
"aria-placeholder"?: string | undefined;
|
|
668
|
+
"aria-posinset"?: number | undefined;
|
|
669
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
670
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
671
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
672
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
673
|
+
"aria-roledescription"?: string | undefined;
|
|
674
|
+
"aria-rowcount"?: number | undefined;
|
|
675
|
+
"aria-rowindex"?: number | undefined;
|
|
676
|
+
"aria-rowindextext"?: string | undefined;
|
|
677
|
+
"aria-rowspan"?: number | undefined;
|
|
678
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
679
|
+
"aria-setsize"?: number | undefined;
|
|
680
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
681
|
+
"aria-valuemax"?: number | undefined;
|
|
682
|
+
"aria-valuemin"?: number | undefined;
|
|
683
|
+
"aria-valuenow"?: number | undefined;
|
|
684
|
+
"aria-valuetext"?: string | undefined;
|
|
685
|
+
children: import("react").ReactNode | undefined;
|
|
659
686
|
dangerouslySetInnerHTML?: {
|
|
660
|
-
__html: string;
|
|
687
|
+
__html: string | TrustedHTML;
|
|
661
688
|
} | undefined;
|
|
662
689
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
663
690
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -727,6 +754,8 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
727
754
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
728
755
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
729
756
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
757
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
758
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
730
759
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
731
760
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
732
761
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -796,9 +825,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
796
825
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
797
826
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
798
827
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
799
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
800
828
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
801
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
802
829
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
803
830
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
804
831
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -819,10 +846,10 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
819
846
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
820
847
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
821
848
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
822
|
-
size?: "
|
|
823
|
-
weight?: "
|
|
849
|
+
size?: import("../../system").FontSizeType;
|
|
850
|
+
weight?: import("../../system").FontWeightType;
|
|
824
851
|
theme: import("styled-components").DefaultTheme;
|
|
825
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
852
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|
|
826
853
|
export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
827
854
|
level: 4;
|
|
828
855
|
defaultChecked?: boolean | undefined;
|
|
@@ -830,16 +857,18 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
830
857
|
suppressContentEditableWarning?: boolean | undefined;
|
|
831
858
|
suppressHydrationWarning?: boolean | undefined;
|
|
832
859
|
accessKey?: string | undefined;
|
|
860
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
861
|
+
autoFocus?: boolean | undefined;
|
|
833
862
|
className?: string | undefined;
|
|
834
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
863
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
835
864
|
contextMenu?: string | undefined;
|
|
836
865
|
dir?: string | undefined;
|
|
837
866
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
867
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
838
868
|
hidden?: boolean | undefined;
|
|
839
869
|
id?: string | undefined;
|
|
840
870
|
lang?: string | undefined;
|
|
841
871
|
nonce?: string | undefined;
|
|
842
|
-
placeholder?: string | undefined;
|
|
843
872
|
slot?: string | undefined;
|
|
844
873
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
845
874
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -849,14 +878,16 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
849
878
|
radioGroup?: string | undefined;
|
|
850
879
|
role?: import("react").AriaRole | undefined;
|
|
851
880
|
about?: string | undefined;
|
|
881
|
+
content?: string | undefined;
|
|
852
882
|
datatype?: string | undefined;
|
|
853
883
|
inlist?: any;
|
|
854
884
|
prefix?: string | undefined;
|
|
855
885
|
property?: string | undefined;
|
|
886
|
+
rel?: string | undefined;
|
|
856
887
|
resource?: string | undefined;
|
|
888
|
+
rev?: string | undefined;
|
|
857
889
|
typeof?: string | undefined;
|
|
858
890
|
vocab?: string | undefined;
|
|
859
|
-
autoCapitalize?: string | undefined;
|
|
860
891
|
autoCorrect?: string | undefined;
|
|
861
892
|
autoSave?: string | undefined;
|
|
862
893
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -868,59 +899,64 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
868
899
|
results?: number | undefined;
|
|
869
900
|
security?: string | undefined;
|
|
870
901
|
unselectable?: "on" | "off" | undefined;
|
|
871
|
-
inputMode?: "
|
|
902
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
872
903
|
is?: string | undefined;
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
904
|
+
"aria-activedescendant"?: string | undefined;
|
|
905
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
906
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
907
|
+
"aria-braillelabel"?: string | undefined;
|
|
908
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
909
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
910
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
911
|
+
"aria-colcount"?: number | undefined;
|
|
912
|
+
"aria-colindex"?: number | undefined;
|
|
913
|
+
"aria-colindextext"?: string | undefined;
|
|
914
|
+
"aria-colspan"?: number | undefined;
|
|
915
|
+
"aria-controls"?: string | undefined;
|
|
916
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
917
|
+
"aria-describedby"?: string | undefined;
|
|
918
|
+
"aria-description"?: string | undefined;
|
|
919
|
+
"aria-details"?: string | undefined;
|
|
920
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
921
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
922
|
+
"aria-errormessage"?: string | undefined;
|
|
923
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
924
|
+
"aria-flowto"?: string | undefined;
|
|
925
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
926
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
927
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
928
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
929
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
930
|
+
"aria-label"?: string | undefined;
|
|
931
|
+
"aria-labelledby"?: string | undefined;
|
|
932
|
+
"aria-level"?: number | undefined;
|
|
933
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
934
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
935
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
936
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
937
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
938
|
+
"aria-owns"?: string | undefined;
|
|
939
|
+
"aria-placeholder"?: string | undefined;
|
|
940
|
+
"aria-posinset"?: number | undefined;
|
|
941
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
942
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
943
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
944
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
945
|
+
"aria-roledescription"?: string | undefined;
|
|
946
|
+
"aria-rowcount"?: number | undefined;
|
|
947
|
+
"aria-rowindex"?: number | undefined;
|
|
948
|
+
"aria-rowindextext"?: string | undefined;
|
|
949
|
+
"aria-rowspan"?: number | undefined;
|
|
950
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
951
|
+
"aria-setsize"?: number | undefined;
|
|
952
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
953
|
+
"aria-valuemax"?: number | undefined;
|
|
954
|
+
"aria-valuemin"?: number | undefined;
|
|
955
|
+
"aria-valuenow"?: number | undefined;
|
|
956
|
+
"aria-valuetext"?: string | undefined;
|
|
957
|
+
children: import("react").ReactNode | undefined;
|
|
922
958
|
dangerouslySetInnerHTML?: {
|
|
923
|
-
__html: string;
|
|
959
|
+
__html: string | TrustedHTML;
|
|
924
960
|
} | undefined;
|
|
925
961
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
926
962
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -990,6 +1026,8 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
990
1026
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
991
1027
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
992
1028
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1029
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1030
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
993
1031
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
994
1032
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
995
1033
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -1059,9 +1097,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1059
1097
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1060
1098
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1061
1099
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1062
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1063
1100
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1064
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1065
1101
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1066
1102
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1067
1103
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -1082,10 +1118,10 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1082
1118
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1083
1119
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1084
1120
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1085
|
-
size?: "
|
|
1086
|
-
weight?: "
|
|
1121
|
+
size?: import("../../system").FontSizeType;
|
|
1122
|
+
weight?: import("../../system").FontWeightType;
|
|
1087
1123
|
theme: import("styled-components").DefaultTheme;
|
|
1088
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
1124
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|
|
1089
1125
|
export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1090
1126
|
level: 5;
|
|
1091
1127
|
defaultChecked?: boolean | undefined;
|
|
@@ -1093,16 +1129,18 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1093
1129
|
suppressContentEditableWarning?: boolean | undefined;
|
|
1094
1130
|
suppressHydrationWarning?: boolean | undefined;
|
|
1095
1131
|
accessKey?: string | undefined;
|
|
1132
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
1133
|
+
autoFocus?: boolean | undefined;
|
|
1096
1134
|
className?: string | undefined;
|
|
1097
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1135
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
1098
1136
|
contextMenu?: string | undefined;
|
|
1099
1137
|
dir?: string | undefined;
|
|
1100
1138
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
1139
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
1101
1140
|
hidden?: boolean | undefined;
|
|
1102
1141
|
id?: string | undefined;
|
|
1103
1142
|
lang?: string | undefined;
|
|
1104
1143
|
nonce?: string | undefined;
|
|
1105
|
-
placeholder?: string | undefined;
|
|
1106
1144
|
slot?: string | undefined;
|
|
1107
1145
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1108
1146
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -1112,14 +1150,16 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1112
1150
|
radioGroup?: string | undefined;
|
|
1113
1151
|
role?: import("react").AriaRole | undefined;
|
|
1114
1152
|
about?: string | undefined;
|
|
1153
|
+
content?: string | undefined;
|
|
1115
1154
|
datatype?: string | undefined;
|
|
1116
1155
|
inlist?: any;
|
|
1117
1156
|
prefix?: string | undefined;
|
|
1118
1157
|
property?: string | undefined;
|
|
1158
|
+
rel?: string | undefined;
|
|
1119
1159
|
resource?: string | undefined;
|
|
1160
|
+
rev?: string | undefined;
|
|
1120
1161
|
typeof?: string | undefined;
|
|
1121
1162
|
vocab?: string | undefined;
|
|
1122
|
-
autoCapitalize?: string | undefined;
|
|
1123
1163
|
autoCorrect?: string | undefined;
|
|
1124
1164
|
autoSave?: string | undefined;
|
|
1125
1165
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -1131,59 +1171,64 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1131
1171
|
results?: number | undefined;
|
|
1132
1172
|
security?: string | undefined;
|
|
1133
1173
|
unselectable?: "on" | "off" | undefined;
|
|
1134
|
-
inputMode?: "
|
|
1174
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1135
1175
|
is?: string | undefined;
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1176
|
+
"aria-activedescendant"?: string | undefined;
|
|
1177
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1178
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
1179
|
+
"aria-braillelabel"?: string | undefined;
|
|
1180
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1181
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1182
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1183
|
+
"aria-colcount"?: number | undefined;
|
|
1184
|
+
"aria-colindex"?: number | undefined;
|
|
1185
|
+
"aria-colindextext"?: string | undefined;
|
|
1186
|
+
"aria-colspan"?: number | undefined;
|
|
1187
|
+
"aria-controls"?: string | undefined;
|
|
1188
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
1189
|
+
"aria-describedby"?: string | undefined;
|
|
1190
|
+
"aria-description"?: string | undefined;
|
|
1191
|
+
"aria-details"?: string | undefined;
|
|
1192
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1193
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
1194
|
+
"aria-errormessage"?: string | undefined;
|
|
1195
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1196
|
+
"aria-flowto"?: string | undefined;
|
|
1197
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1198
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
1199
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1200
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1201
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1202
|
+
"aria-label"?: string | undefined;
|
|
1203
|
+
"aria-labelledby"?: string | undefined;
|
|
1204
|
+
"aria-level"?: number | undefined;
|
|
1205
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1206
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1207
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1208
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1209
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1210
|
+
"aria-owns"?: string | undefined;
|
|
1211
|
+
"aria-placeholder"?: string | undefined;
|
|
1212
|
+
"aria-posinset"?: number | undefined;
|
|
1213
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1214
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1215
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
1216
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1217
|
+
"aria-roledescription"?: string | undefined;
|
|
1218
|
+
"aria-rowcount"?: number | undefined;
|
|
1219
|
+
"aria-rowindex"?: number | undefined;
|
|
1220
|
+
"aria-rowindextext"?: string | undefined;
|
|
1221
|
+
"aria-rowspan"?: number | undefined;
|
|
1222
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1223
|
+
"aria-setsize"?: number | undefined;
|
|
1224
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1225
|
+
"aria-valuemax"?: number | undefined;
|
|
1226
|
+
"aria-valuemin"?: number | undefined;
|
|
1227
|
+
"aria-valuenow"?: number | undefined;
|
|
1228
|
+
"aria-valuetext"?: string | undefined;
|
|
1229
|
+
children: import("react").ReactNode | undefined;
|
|
1185
1230
|
dangerouslySetInnerHTML?: {
|
|
1186
|
-
__html: string;
|
|
1231
|
+
__html: string | TrustedHTML;
|
|
1187
1232
|
} | undefined;
|
|
1188
1233
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
1189
1234
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -1253,6 +1298,8 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1253
1298
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1254
1299
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1255
1300
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1301
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1302
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1256
1303
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1257
1304
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1258
1305
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -1322,9 +1369,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1322
1369
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1323
1370
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1324
1371
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1325
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1326
1372
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1327
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1328
1373
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1329
1374
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1330
1375
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -1345,10 +1390,10 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1345
1390
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1346
1391
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1347
1392
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1348
|
-
size?: "
|
|
1349
|
-
weight?: "
|
|
1393
|
+
size?: import("../../system").FontSizeType;
|
|
1394
|
+
weight?: import("../../system").FontWeightType;
|
|
1350
1395
|
theme: import("styled-components").DefaultTheme;
|
|
1351
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
1396
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|
|
1352
1397
|
export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1353
1398
|
level: 6;
|
|
1354
1399
|
defaultChecked?: boolean | undefined;
|
|
@@ -1356,16 +1401,18 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1356
1401
|
suppressContentEditableWarning?: boolean | undefined;
|
|
1357
1402
|
suppressHydrationWarning?: boolean | undefined;
|
|
1358
1403
|
accessKey?: string | undefined;
|
|
1404
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
1405
|
+
autoFocus?: boolean | undefined;
|
|
1359
1406
|
className?: string | undefined;
|
|
1360
|
-
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1407
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
1361
1408
|
contextMenu?: string | undefined;
|
|
1362
1409
|
dir?: string | undefined;
|
|
1363
1410
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
1411
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
1364
1412
|
hidden?: boolean | undefined;
|
|
1365
1413
|
id?: string | undefined;
|
|
1366
1414
|
lang?: string | undefined;
|
|
1367
1415
|
nonce?: string | undefined;
|
|
1368
|
-
placeholder?: string | undefined;
|
|
1369
1416
|
slot?: string | undefined;
|
|
1370
1417
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1371
1418
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -1375,14 +1422,16 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1375
1422
|
radioGroup?: string | undefined;
|
|
1376
1423
|
role?: import("react").AriaRole | undefined;
|
|
1377
1424
|
about?: string | undefined;
|
|
1425
|
+
content?: string | undefined;
|
|
1378
1426
|
datatype?: string | undefined;
|
|
1379
1427
|
inlist?: any;
|
|
1380
1428
|
prefix?: string | undefined;
|
|
1381
1429
|
property?: string | undefined;
|
|
1430
|
+
rel?: string | undefined;
|
|
1382
1431
|
resource?: string | undefined;
|
|
1432
|
+
rev?: string | undefined;
|
|
1383
1433
|
typeof?: string | undefined;
|
|
1384
1434
|
vocab?: string | undefined;
|
|
1385
|
-
autoCapitalize?: string | undefined;
|
|
1386
1435
|
autoCorrect?: string | undefined;
|
|
1387
1436
|
autoSave?: string | undefined;
|
|
1388
1437
|
color?: "textDefault" | "background6" | undefined;
|
|
@@ -1394,59 +1443,64 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1394
1443
|
results?: number | undefined;
|
|
1395
1444
|
security?: string | undefined;
|
|
1396
1445
|
unselectable?: "on" | "off" | undefined;
|
|
1397
|
-
inputMode?: "
|
|
1446
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
1398
1447
|
is?: string | undefined;
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
+
"aria-activedescendant"?: string | undefined;
|
|
1449
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1450
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
1451
|
+
"aria-braillelabel"?: string | undefined;
|
|
1452
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
1453
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1454
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1455
|
+
"aria-colcount"?: number | undefined;
|
|
1456
|
+
"aria-colindex"?: number | undefined;
|
|
1457
|
+
"aria-colindextext"?: string | undefined;
|
|
1458
|
+
"aria-colspan"?: number | undefined;
|
|
1459
|
+
"aria-controls"?: string | undefined;
|
|
1460
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
1461
|
+
"aria-describedby"?: string | undefined;
|
|
1462
|
+
"aria-description"?: string | undefined;
|
|
1463
|
+
"aria-details"?: string | undefined;
|
|
1464
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1465
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
1466
|
+
"aria-errormessage"?: string | undefined;
|
|
1467
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1468
|
+
"aria-flowto"?: string | undefined;
|
|
1469
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1470
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
1471
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1472
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1473
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
1474
|
+
"aria-label"?: string | undefined;
|
|
1475
|
+
"aria-labelledby"?: string | undefined;
|
|
1476
|
+
"aria-level"?: number | undefined;
|
|
1477
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1478
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1479
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1480
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1481
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1482
|
+
"aria-owns"?: string | undefined;
|
|
1483
|
+
"aria-placeholder"?: string | undefined;
|
|
1484
|
+
"aria-posinset"?: number | undefined;
|
|
1485
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1486
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1487
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
1488
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1489
|
+
"aria-roledescription"?: string | undefined;
|
|
1490
|
+
"aria-rowcount"?: number | undefined;
|
|
1491
|
+
"aria-rowindex"?: number | undefined;
|
|
1492
|
+
"aria-rowindextext"?: string | undefined;
|
|
1493
|
+
"aria-rowspan"?: number | undefined;
|
|
1494
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1495
|
+
"aria-setsize"?: number | undefined;
|
|
1496
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1497
|
+
"aria-valuemax"?: number | undefined;
|
|
1498
|
+
"aria-valuemin"?: number | undefined;
|
|
1499
|
+
"aria-valuenow"?: number | undefined;
|
|
1500
|
+
"aria-valuetext"?: string | undefined;
|
|
1501
|
+
children: import("react").ReactNode | undefined;
|
|
1448
1502
|
dangerouslySetInnerHTML?: {
|
|
1449
|
-
__html: string;
|
|
1503
|
+
__html: string | TrustedHTML;
|
|
1450
1504
|
} | undefined;
|
|
1451
1505
|
onCopy?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
1452
1506
|
onCopyCapture?: (import("react").ClipboardEventHandler<HTMLHeadingElement> & import("react").ClipboardEventHandler<HTMLElement>) | undefined;
|
|
@@ -1516,6 +1570,8 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1516
1570
|
onProgressCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1517
1571
|
onRateChange?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1518
1572
|
onRateChangeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1573
|
+
onResize?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1574
|
+
onResizeCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1519
1575
|
onSeeked?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1520
1576
|
onSeekedCapture?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
1521
1577
|
onSeeking?: (import("react").ReactEventHandler<HTMLHeadingElement> & import("react").ReactEventHandler<HTMLElement>) | undefined;
|
|
@@ -1585,9 +1641,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1585
1641
|
onPointerCancel?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1586
1642
|
onPointerCancelCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1587
1643
|
onPointerEnter?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1588
|
-
onPointerEnterCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1589
1644
|
onPointerLeave?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1590
|
-
onPointerLeaveCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1591
1645
|
onPointerOver?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1592
1646
|
onPointerOverCapture?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
1593
1647
|
onPointerOut?: (import("react").PointerEventHandler<HTMLHeadingElement> & import("react").PointerEventHandler<HTMLElement>) | undefined;
|
|
@@ -1608,7 +1662,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1608
1662
|
onAnimationIterationCapture?: (import("react").AnimationEventHandler<HTMLHeadingElement> & import("react").AnimationEventHandler<HTMLElement>) | undefined;
|
|
1609
1663
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1610
1664
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1611
|
-
size?: "
|
|
1612
|
-
weight?: "
|
|
1665
|
+
size?: import("../../system").FontSizeType;
|
|
1666
|
+
weight?: import("../../system").FontWeightType;
|
|
1613
1667
|
theme: import("styled-components").DefaultTheme;
|
|
1614
|
-
}, "children" | "slot" | "style" | "title" | "theme" | "
|
|
1668
|
+
}, "children" | "slot" | "style" | "title" | "theme" | "suppressHydrationWarning" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "weight" | "level">;
|