@openfin/ui-library 0.22.0 → 0.23.0-alpha.1694620338
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/README.md +1 -1
- package/dist/components/controls/CollapsibleCard/collapsibleCard.d.ts +14 -5
- package/dist/components/elements/Calendar/calendar.d.ts +5 -4
- package/dist/components/elements/DropdownMenu/dropdownButton.d.ts +14 -0
- package/dist/components/elements/DropdownMenu/dropdownMenu.d.ts +2 -2
- package/dist/components/elements/DropdownMenu/index.d.ts +1 -0
- package/dist/components/elements/Label/label.d.ts +11 -0
- package/dist/components/input/BaseInput/baseInput.d.ts +6 -6
- package/dist/components/input/Checkbox/checkbox.d.ts +1 -1
- package/dist/components/input/CheckboxGroup/checkboxGroup.d.ts +9 -1
- package/dist/components/input/NumberInput/numberInput.d.ts +6 -2
- package/dist/components/input/RadioGroup/radioGroup.d.ts +3 -0
- package/dist/components/input/TextArea/textArea.d.ts +6 -4
- package/dist/components/input/TextInput/textInput.d.ts +1 -1
- package/dist/components/typography/Heading/heading.d.ts +42 -42
- package/dist/components/typography/Text/text.d.ts +1 -1
- package/dist/hooks/useTheme.d.ts +2 -1
- package/dist/hooks/useTheme.spec.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +120 -57
- package/dist/lib/math.d.ts +1 -1
- package/dist/testUtils.d.ts +9 -0
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -42,7 +42,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
42
42
|
suppressHydrationWarning?: boolean | undefined;
|
|
43
43
|
accessKey?: string | undefined;
|
|
44
44
|
className?: string | undefined;
|
|
45
|
-
contentEditable?:
|
|
45
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
46
46
|
contextMenu?: string | undefined;
|
|
47
47
|
dir?: string | undefined;
|
|
48
48
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -56,7 +56,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
56
56
|
style?: import("react").CSSProperties | undefined;
|
|
57
57
|
tabIndex?: number | undefined;
|
|
58
58
|
title?: string | undefined;
|
|
59
|
-
translate?: "
|
|
59
|
+
translate?: "yes" | "no" | undefined;
|
|
60
60
|
radioGroup?: string | undefined;
|
|
61
61
|
role?: import("react").AriaRole | undefined;
|
|
62
62
|
about?: string | undefined;
|
|
@@ -79,7 +79,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
79
79
|
results?: number | undefined;
|
|
80
80
|
security?: string | undefined;
|
|
81
81
|
unselectable?: "on" | "off" | undefined;
|
|
82
|
-
inputMode?: "text" | "
|
|
82
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
83
83
|
is?: string | undefined;
|
|
84
84
|
'aria-activedescendant'?: string | undefined;
|
|
85
85
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -90,7 +90,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
90
90
|
'aria-colindex'?: number | undefined;
|
|
91
91
|
'aria-colspan'?: number | undefined;
|
|
92
92
|
'aria-controls'?: string | undefined;
|
|
93
|
-
'aria-current'?: boolean | "time" | "
|
|
93
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
94
94
|
'aria-describedby'?: string | undefined;
|
|
95
95
|
'aria-details'?: string | undefined;
|
|
96
96
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -99,7 +99,7 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
99
99
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
100
100
|
'aria-flowto'?: string | undefined;
|
|
101
101
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
102
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
102
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
103
103
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
104
104
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
105
105
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -294,9 +294,9 @@ export declare const H1: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
294
294
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
295
295
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
296
296
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
297
|
-
weight?: "
|
|
297
|
+
weight?: "normal" | "bold" | undefined;
|
|
298
298
|
theme: import("styled-components").DefaultTheme;
|
|
299
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
300
300
|
export declare const H2: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
301
301
|
level: 2;
|
|
302
302
|
defaultChecked?: boolean | undefined;
|
|
@@ -305,7 +305,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
305
305
|
suppressHydrationWarning?: boolean | undefined;
|
|
306
306
|
accessKey?: string | undefined;
|
|
307
307
|
className?: string | undefined;
|
|
308
|
-
contentEditable?:
|
|
308
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
309
309
|
contextMenu?: string | undefined;
|
|
310
310
|
dir?: string | undefined;
|
|
311
311
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -319,7 +319,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
319
319
|
style?: import("react").CSSProperties | undefined;
|
|
320
320
|
tabIndex?: number | undefined;
|
|
321
321
|
title?: string | undefined;
|
|
322
|
-
translate?: "
|
|
322
|
+
translate?: "yes" | "no" | undefined;
|
|
323
323
|
radioGroup?: string | undefined;
|
|
324
324
|
role?: import("react").AriaRole | undefined;
|
|
325
325
|
about?: string | undefined;
|
|
@@ -342,7 +342,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
342
342
|
results?: number | undefined;
|
|
343
343
|
security?: string | undefined;
|
|
344
344
|
unselectable?: "on" | "off" | undefined;
|
|
345
|
-
inputMode?: "text" | "
|
|
345
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
346
346
|
is?: string | undefined;
|
|
347
347
|
'aria-activedescendant'?: string | undefined;
|
|
348
348
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -353,7 +353,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
353
353
|
'aria-colindex'?: number | undefined;
|
|
354
354
|
'aria-colspan'?: number | undefined;
|
|
355
355
|
'aria-controls'?: string | undefined;
|
|
356
|
-
'aria-current'?: boolean | "time" | "
|
|
356
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
357
357
|
'aria-describedby'?: string | undefined;
|
|
358
358
|
'aria-details'?: string | undefined;
|
|
359
359
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -362,7 +362,7 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
362
362
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
363
363
|
'aria-flowto'?: string | undefined;
|
|
364
364
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
365
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
365
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
366
366
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
367
367
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
368
368
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -557,9 +557,9 @@ export declare const H2: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
557
557
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
558
558
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
559
559
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
560
|
-
weight?: "
|
|
560
|
+
weight?: "normal" | "bold" | undefined;
|
|
561
561
|
theme: import("styled-components").DefaultTheme;
|
|
562
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
563
563
|
export declare const H3: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
564
564
|
level: 3;
|
|
565
565
|
defaultChecked?: boolean | undefined;
|
|
@@ -568,7 +568,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
568
568
|
suppressHydrationWarning?: boolean | undefined;
|
|
569
569
|
accessKey?: string | undefined;
|
|
570
570
|
className?: string | undefined;
|
|
571
|
-
contentEditable?:
|
|
571
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
572
572
|
contextMenu?: string | undefined;
|
|
573
573
|
dir?: string | undefined;
|
|
574
574
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -582,7 +582,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
582
582
|
style?: import("react").CSSProperties | undefined;
|
|
583
583
|
tabIndex?: number | undefined;
|
|
584
584
|
title?: string | undefined;
|
|
585
|
-
translate?: "
|
|
585
|
+
translate?: "yes" | "no" | undefined;
|
|
586
586
|
radioGroup?: string | undefined;
|
|
587
587
|
role?: import("react").AriaRole | undefined;
|
|
588
588
|
about?: string | undefined;
|
|
@@ -605,7 +605,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
605
605
|
results?: number | undefined;
|
|
606
606
|
security?: string | undefined;
|
|
607
607
|
unselectable?: "on" | "off" | undefined;
|
|
608
|
-
inputMode?: "text" | "
|
|
608
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
609
609
|
is?: string | undefined;
|
|
610
610
|
'aria-activedescendant'?: string | undefined;
|
|
611
611
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -616,7 +616,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
616
616
|
'aria-colindex'?: number | undefined;
|
|
617
617
|
'aria-colspan'?: number | undefined;
|
|
618
618
|
'aria-controls'?: string | undefined;
|
|
619
|
-
'aria-current'?: boolean | "time" | "
|
|
619
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
620
620
|
'aria-describedby'?: string | undefined;
|
|
621
621
|
'aria-details'?: string | undefined;
|
|
622
622
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -625,7 +625,7 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
625
625
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
626
626
|
'aria-flowto'?: string | undefined;
|
|
627
627
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
628
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
628
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
629
629
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
630
630
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
631
631
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -820,9 +820,9 @@ export declare const H3: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
820
820
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
821
821
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
822
822
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
823
|
-
weight?: "
|
|
823
|
+
weight?: "normal" | "bold" | undefined;
|
|
824
824
|
theme: import("styled-components").DefaultTheme;
|
|
825
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
826
826
|
export declare const H4: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
827
827
|
level: 4;
|
|
828
828
|
defaultChecked?: boolean | undefined;
|
|
@@ -831,7 +831,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
831
831
|
suppressHydrationWarning?: boolean | undefined;
|
|
832
832
|
accessKey?: string | undefined;
|
|
833
833
|
className?: string | undefined;
|
|
834
|
-
contentEditable?:
|
|
834
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
835
835
|
contextMenu?: string | undefined;
|
|
836
836
|
dir?: string | undefined;
|
|
837
837
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -845,7 +845,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
845
845
|
style?: import("react").CSSProperties | undefined;
|
|
846
846
|
tabIndex?: number | undefined;
|
|
847
847
|
title?: string | undefined;
|
|
848
|
-
translate?: "
|
|
848
|
+
translate?: "yes" | "no" | undefined;
|
|
849
849
|
radioGroup?: string | undefined;
|
|
850
850
|
role?: import("react").AriaRole | undefined;
|
|
851
851
|
about?: string | undefined;
|
|
@@ -868,7 +868,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
868
868
|
results?: number | undefined;
|
|
869
869
|
security?: string | undefined;
|
|
870
870
|
unselectable?: "on" | "off" | undefined;
|
|
871
|
-
inputMode?: "text" | "
|
|
871
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
872
872
|
is?: string | undefined;
|
|
873
873
|
'aria-activedescendant'?: string | undefined;
|
|
874
874
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -879,7 +879,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
879
879
|
'aria-colindex'?: number | undefined;
|
|
880
880
|
'aria-colspan'?: number | undefined;
|
|
881
881
|
'aria-controls'?: string | undefined;
|
|
882
|
-
'aria-current'?: boolean | "time" | "
|
|
882
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
883
883
|
'aria-describedby'?: string | undefined;
|
|
884
884
|
'aria-details'?: string | undefined;
|
|
885
885
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -888,7 +888,7 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
888
888
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
889
889
|
'aria-flowto'?: string | undefined;
|
|
890
890
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
891
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
891
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
892
892
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
893
893
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
894
894
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -1083,9 +1083,9 @@ export declare const H4: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1083
1083
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1084
1084
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1085
1085
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1086
|
-
weight?: "
|
|
1086
|
+
weight?: "normal" | "bold" | undefined;
|
|
1087
1087
|
theme: import("styled-components").DefaultTheme;
|
|
1088
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
1089
1089
|
export declare const H5: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1090
1090
|
level: 5;
|
|
1091
1091
|
defaultChecked?: boolean | undefined;
|
|
@@ -1094,7 +1094,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1094
1094
|
suppressHydrationWarning?: boolean | undefined;
|
|
1095
1095
|
accessKey?: string | undefined;
|
|
1096
1096
|
className?: string | undefined;
|
|
1097
|
-
contentEditable?:
|
|
1097
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1098
1098
|
contextMenu?: string | undefined;
|
|
1099
1099
|
dir?: string | undefined;
|
|
1100
1100
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1108,7 +1108,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1108
1108
|
style?: import("react").CSSProperties | undefined;
|
|
1109
1109
|
tabIndex?: number | undefined;
|
|
1110
1110
|
title?: string | undefined;
|
|
1111
|
-
translate?: "
|
|
1111
|
+
translate?: "yes" | "no" | undefined;
|
|
1112
1112
|
radioGroup?: string | undefined;
|
|
1113
1113
|
role?: import("react").AriaRole | undefined;
|
|
1114
1114
|
about?: string | undefined;
|
|
@@ -1131,7 +1131,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1131
1131
|
results?: number | undefined;
|
|
1132
1132
|
security?: string | undefined;
|
|
1133
1133
|
unselectable?: "on" | "off" | undefined;
|
|
1134
|
-
inputMode?: "text" | "
|
|
1134
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1135
1135
|
is?: string | undefined;
|
|
1136
1136
|
'aria-activedescendant'?: string | undefined;
|
|
1137
1137
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1142,7 +1142,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1142
1142
|
'aria-colindex'?: number | undefined;
|
|
1143
1143
|
'aria-colspan'?: number | undefined;
|
|
1144
1144
|
'aria-controls'?: string | undefined;
|
|
1145
|
-
'aria-current'?: boolean | "time" | "
|
|
1145
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
1146
1146
|
'aria-describedby'?: string | undefined;
|
|
1147
1147
|
'aria-details'?: string | undefined;
|
|
1148
1148
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1151,7 +1151,7 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1151
1151
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
1152
1152
|
'aria-flowto'?: string | undefined;
|
|
1153
1153
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
1154
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1154
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1155
1155
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
1156
1156
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1157
1157
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -1346,9 +1346,9 @@ export declare const H5: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1346
1346
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1347
1347
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1348
1348
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1349
|
-
weight?: "
|
|
1349
|
+
weight?: "normal" | "bold" | undefined;
|
|
1350
1350
|
theme: import("styled-components").DefaultTheme;
|
|
1351
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
1352
1352
|
export declare const H6: import("styled-components").StyledComponent<FC<HeadingProps>, import("styled-components").DefaultTheme, {
|
|
1353
1353
|
level: 6;
|
|
1354
1354
|
defaultChecked?: boolean | undefined;
|
|
@@ -1357,7 +1357,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1357
1357
|
suppressHydrationWarning?: boolean | undefined;
|
|
1358
1358
|
accessKey?: string | undefined;
|
|
1359
1359
|
className?: string | undefined;
|
|
1360
|
-
contentEditable?:
|
|
1360
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1361
1361
|
contextMenu?: string | undefined;
|
|
1362
1362
|
dir?: string | undefined;
|
|
1363
1363
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
@@ -1371,7 +1371,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1371
1371
|
style?: import("react").CSSProperties | undefined;
|
|
1372
1372
|
tabIndex?: number | undefined;
|
|
1373
1373
|
title?: string | undefined;
|
|
1374
|
-
translate?: "
|
|
1374
|
+
translate?: "yes" | "no" | undefined;
|
|
1375
1375
|
radioGroup?: string | undefined;
|
|
1376
1376
|
role?: import("react").AriaRole | undefined;
|
|
1377
1377
|
about?: string | undefined;
|
|
@@ -1394,7 +1394,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1394
1394
|
results?: number | undefined;
|
|
1395
1395
|
security?: string | undefined;
|
|
1396
1396
|
unselectable?: "on" | "off" | undefined;
|
|
1397
|
-
inputMode?: "text" | "
|
|
1397
|
+
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
1398
1398
|
is?: string | undefined;
|
|
1399
1399
|
'aria-activedescendant'?: string | undefined;
|
|
1400
1400
|
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1405,7 +1405,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1405
1405
|
'aria-colindex'?: number | undefined;
|
|
1406
1406
|
'aria-colspan'?: number | undefined;
|
|
1407
1407
|
'aria-controls'?: string | undefined;
|
|
1408
|
-
'aria-current'?: boolean | "time" | "
|
|
1408
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
1409
1409
|
'aria-describedby'?: string | undefined;
|
|
1410
1410
|
'aria-details'?: string | undefined;
|
|
1411
1411
|
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
@@ -1414,7 +1414,7 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1414
1414
|
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
1415
1415
|
'aria-flowto'?: string | undefined;
|
|
1416
1416
|
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
1417
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
1417
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1418
1418
|
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
1419
1419
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1420
1420
|
'aria-keyshortcuts'?: string | undefined;
|
|
@@ -1609,6 +1609,6 @@ export declare const H6: import("styled-components").StyledComponent<FC<HeadingP
|
|
|
1609
1609
|
onTransitionEnd?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1610
1610
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLHeadingElement> & import("react").TransitionEventHandler<HTMLElement>) | undefined;
|
|
1611
1611
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
1612
|
-
weight?: "
|
|
1612
|
+
weight?: "normal" | "bold" | undefined;
|
|
1613
1613
|
theme: import("styled-components").DefaultTheme;
|
|
1614
|
-
}, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "
|
|
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">;
|
|
@@ -15,5 +15,5 @@ export type TextProps = HTMLAttributes<HTMLElement> & {
|
|
|
15
15
|
export declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, HTMLAttributes<HTMLElement> & {
|
|
16
16
|
children: ReactNode;
|
|
17
17
|
size?: "base" | "small" | "xsmall" | "large" | "xlarge" | "xxlarge" | "xxxlarge" | "xxxxlarge" | undefined;
|
|
18
|
-
weight?: "
|
|
18
|
+
weight?: "normal" | "bold" | undefined;
|
|
19
19
|
}, never>;
|
package/dist/hooks/useTheme.d.ts
CHANGED
|
@@ -2,8 +2,9 @@ import { ConfigurationType } from './../components/system/ThemeProvider/lib/conf
|
|
|
2
2
|
import { DefaultTheme } from 'styled-components';
|
|
3
3
|
import { ColorScheme } from '../hooks/useColorScheme';
|
|
4
4
|
import { ThemePaletteSet } from '../components/system/ThemeProvider';
|
|
5
|
+
import type { DeepPartial } from '../types';
|
|
5
6
|
export declare const useTheme: ({ themes, scheme, config, }: {
|
|
6
|
-
themes?: ThemePaletteSet | undefined;
|
|
7
|
+
themes?: DeepPartial<ThemePaletteSet> | undefined;
|
|
7
8
|
scheme?: "dark" | "light" | "system" | undefined;
|
|
8
9
|
config?: ConfigurationType | undefined;
|
|
9
10
|
}) => DefaultTheme;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
CHANGED