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