react-magma-dom 3.9.0 → 3.10.0
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/Accordion/Accordion.stories.d.ts +3 -3
- package/dist/components/Alert/Alert.stories.d.ts +3 -3
- package/dist/components/AlertBase/index.d.ts +1 -1
- package/dist/components/Announce/Announce.stories.d.ts +2 -2
- package/dist/components/Badge/Badge.stories.d.ts +3 -3
- package/dist/components/Breadcrumb/BreadcrumbItem.d.ts +1 -1
- package/dist/components/BreakpointsContainer/BreakpointsContainer.stories.d.ts +2 -2
- package/dist/components/Button/Button.stories.d.ts +3 -2
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +57 -52
- package/dist/components/Card/Card.stories.d.ts +2 -2
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +111 -101
- package/dist/components/Checkbox/Checkbox.stories.d.ts +3 -3
- package/dist/components/Checkbox/index.d.ts +2 -2
- package/dist/components/Combobox/Combobox.d.ts +2 -2
- package/dist/components/Combobox/Combobox.stories.d.ts +4 -4
- package/dist/components/Combobox/ComboboxInput.d.ts +1 -1
- package/dist/components/Combobox/MultiCombobox.d.ts +2 -2
- package/dist/components/Combobox/index.d.ts +1 -1
- package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
- package/dist/components/Datagrid/components.d.ts +2 -2
- package/dist/components/DatePicker/DatePicker.stories.d.ts +6 -6
- package/dist/components/Drawer/Drawer.stories.d.ts +2 -2
- package/dist/components/Dropdown/Dropdown.stories.d.ts +5 -5
- package/dist/components/FormGroup/FormGroup.stories.d.ts +2 -2
- package/dist/components/Heading/Heading.stories.d.ts +3 -3
- package/dist/components/Heading/index.d.ts +1 -1
- package/dist/components/HideAtBreakpoint/HideAtBreakpoint.stories.d.ts +2 -2
- package/dist/components/Hyperlink/Hyperlink.stories.d.ts +5 -5
- package/dist/components/IndeterminateCheckbox/IndeterminateCheckbox.stories.d.ts +4 -4
- package/dist/components/Input/Input.stories.d.ts +166 -157
- package/dist/components/InputBase/InputBase.stories.d.ts +3 -3
- package/dist/components/List/List.d.ts +0 -6
- package/dist/components/List/List.stories.d.ts +63 -2
- package/dist/components/List/ListItem.d.ts +8 -0
- package/dist/components/LoadingIndicator/LoadingIndicator.stories.d.ts +2 -2
- package/dist/components/Modal/Modal.d.ts +4 -0
- package/dist/components/Modal/Modal.stories.d.ts +10 -8
- package/dist/components/NavTabs/NavTab.d.ts +1 -4
- package/dist/components/NavTabs/NavTabs.stories.d.ts +6 -4
- package/dist/components/Pagination/Pagination.stories.d.ts +2 -2
- package/dist/components/Paragraph/Paragraph.stories.d.ts +2 -2
- package/dist/components/ProgressBar/ProgressBar.stories.d.ts +2 -2
- package/dist/components/Radio/Radio.stories.d.ts +3 -3
- package/dist/components/Select/ItemsList.d.ts +1 -1
- package/dist/components/Select/MultiSelect.d.ts +2 -2
- package/dist/components/Select/Select.d.ts +2 -2
- package/dist/components/Select/Select.stories.d.ts +2 -2
- package/dist/components/Select/SelectContainer.d.ts +1 -1
- package/dist/components/Select/SelectTriggerButton.d.ts +1 -1
- package/dist/components/Select/components.d.ts +7 -7
- package/dist/components/Select/index.d.ts +1 -1
- package/dist/components/Select/shared.d.ts +4 -4
- package/dist/components/SkipLink/SkipLink.stories.d.ts +2 -2
- package/dist/components/Spinner/index.d.ts +5 -0
- package/dist/components/Stepper/Step.d.ts +1 -1
- package/dist/components/Table/Table.stories.d.ts +335 -305
- package/dist/components/Table/TableRow.d.ts +4 -0
- package/dist/components/Tag/Tag.stories.d.ts +110 -100
- package/dist/components/Textarea/Textarea.stories.d.ts +55 -51
- package/dist/components/TimePicker/TimePicker.stories.d.ts +2 -2
- package/dist/components/Toast/Toast.stories.d.ts +3 -3
- package/dist/components/Toggle/Toggle.stories.d.ts +3 -3
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +216 -200
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +110 -100
- package/dist/components/Tooltip/Tooltip.stories.d.ts +2 -2
- package/dist/components/Transition/Transition.stories.d.ts +1 -1
- package/dist/components/TreeView/TreeView.stories.d.ts +24 -9
- package/dist/components/TreeView/TreeViewContext.d.ts +2 -0
- package/dist/components/TreeView/useTreeView.d.ts +17 -2
- package/dist/components/VisuallyHidden/VisuallyHidden.stories.d.ts +2 -2
- package/dist/esm/index.js +1068 -635
- package/dist/esm/index.js.map +1 -1
- package/dist/i18n/interface.d.ts +7 -0
- package/dist/index.d.ts +1 -1
- package/dist/properties.json +177 -138
- package/dist/react-magma-dom.cjs.development.js +944 -536
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/dist/theme/components/reducedMotionTransition.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { AccordionProps } from '.';
|
|
3
3
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
4
4
|
export default _default;
|
|
@@ -6,10 +6,10 @@ export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("
|
|
|
6
6
|
export declare const NoMulti: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, AccordionProps>;
|
|
7
7
|
export declare const Controlled: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, AccordionProps>;
|
|
8
8
|
export declare const ControlledNoMulti: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, AccordionProps>;
|
|
9
|
-
export declare const ExpandCollapseAll: (args: any) => JSX.Element;
|
|
9
|
+
export declare const ExpandCollapseAll: (args: any) => React.JSX.Element;
|
|
10
10
|
export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, AccordionProps>;
|
|
11
11
|
export declare const WithDropdown: {
|
|
12
|
-
(args: any): JSX.Element;
|
|
12
|
+
(args: any): React.JSX.Element;
|
|
13
13
|
args: {
|
|
14
14
|
isInverse: boolean;
|
|
15
15
|
isMulti: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const Default: () => JSX.Element;
|
|
5
|
-
export declare const Inverse: () => JSX.Element;
|
|
4
|
+
export declare const Default: () => React.JSX.Element;
|
|
5
|
+
export declare const Inverse: () => React.JSX.Element;
|
|
@@ -36,5 +36,5 @@ export declare function buildAlertBorder(props: any): any;
|
|
|
36
36
|
export declare function buildAlertColor(props: any): any;
|
|
37
37
|
export declare function buildLinkColor(props: any): any;
|
|
38
38
|
export declare function buildLinkHoverColor(props: any): any;
|
|
39
|
-
export declare const AdditionalContentWrapper: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "color" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "children" | "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" | "css">, ThemeInterface>;
|
|
39
|
+
export declare const AdditionalContentWrapper: import("@emotion/styled-base").StyledComponent<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "slot" | "style" | "title" | "color" | "content" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "children" | "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" | "css">, ThemeInterface>;
|
|
40
40
|
export declare const AlertBase: React.ForwardRefExoticComponent<AlertBaseProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const Default: () => JSX.Element;
|
|
4
|
+
export declare const Default: () => React.JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const Default: () => JSX.Element;
|
|
5
|
-
export declare const Inverse: () => JSX.Element;
|
|
4
|
+
export declare const Default: () => React.JSX.Element;
|
|
5
|
+
export declare const Inverse: () => React.JSX.Element;
|
|
@@ -8,7 +8,7 @@ export interface BreadcrumbItemProps extends React.HTMLAttributes<HTMLLIElement>
|
|
|
8
8
|
*/
|
|
9
9
|
testId?: string;
|
|
10
10
|
/**
|
|
11
|
-
* The
|
|
11
|
+
* The URL for the link. If not provided, the breadcrumb item will display as a non-clickable element with aria-current="page".
|
|
12
12
|
*/
|
|
13
13
|
to?: string;
|
|
14
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const Default: () => JSX.Element;
|
|
4
|
+
export declare const Default: () => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { ButtonProps } from '.';
|
|
3
3
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
4
4
|
export default _default;
|
|
@@ -6,4 +6,5 @@ export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("
|
|
|
6
6
|
export declare const Disabled: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
|
|
7
7
|
export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
|
|
8
8
|
export declare const InverseDisabled: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
|
|
9
|
-
export declare const All: () => JSX.Element;
|
|
9
|
+
export declare const All: () => React.JSX.Element;
|
|
10
|
+
export declare const LoadingButton: (args: any) => React.JSX.Element;
|
|
@@ -5,7 +5,7 @@ declare const _default: import("@storybook/csf").ComponentAnnotations<import("@s
|
|
|
5
5
|
export default _default;
|
|
6
6
|
export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonGroupProps>;
|
|
7
7
|
export declare const SmallBreakpoint: {
|
|
8
|
-
(args: any): JSX.Element;
|
|
8
|
+
(args: any): React.JSX.Element;
|
|
9
9
|
args: {
|
|
10
10
|
orientation: ButtonGroupOrientation;
|
|
11
11
|
alignment: ButtonGroupAlignment;
|
|
@@ -22,6 +22,7 @@ export declare const SmallBreakpoint: {
|
|
|
22
22
|
suppressContentEditableWarning?: boolean;
|
|
23
23
|
suppressHydrationWarning?: boolean;
|
|
24
24
|
accessKey?: string;
|
|
25
|
+
autoFocus?: boolean;
|
|
25
26
|
className?: string;
|
|
26
27
|
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
27
28
|
contextMenu?: string;
|
|
@@ -30,6 +31,7 @@ export declare const SmallBreakpoint: {
|
|
|
30
31
|
hidden?: boolean;
|
|
31
32
|
id?: string;
|
|
32
33
|
lang?: string;
|
|
34
|
+
nonce?: string;
|
|
33
35
|
placeholder?: string;
|
|
34
36
|
slot?: string;
|
|
35
37
|
spellCheck?: boolean | "true" | "false";
|
|
@@ -40,11 +42,14 @@ export declare const SmallBreakpoint: {
|
|
|
40
42
|
radioGroup?: string;
|
|
41
43
|
role?: React.AriaRole;
|
|
42
44
|
about?: string;
|
|
45
|
+
content?: string;
|
|
43
46
|
datatype?: string;
|
|
44
47
|
inlist?: any;
|
|
45
48
|
prefix?: string;
|
|
46
49
|
property?: string;
|
|
50
|
+
rel?: string;
|
|
47
51
|
resource?: string;
|
|
52
|
+
rev?: string;
|
|
48
53
|
typeof?: string;
|
|
49
54
|
vocab?: string;
|
|
50
55
|
autoCapitalize?: string;
|
|
@@ -60,57 +65,57 @@ export declare const SmallBreakpoint: {
|
|
|
60
65
|
unselectable?: "on" | "off";
|
|
61
66
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
62
67
|
is?: string;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
68
|
+
"aria-activedescendant"?: string;
|
|
69
|
+
"aria-atomic"?: boolean | "true" | "false";
|
|
70
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both";
|
|
71
|
+
"aria-busy"?: boolean | "true" | "false";
|
|
72
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed";
|
|
73
|
+
"aria-colcount"?: number;
|
|
74
|
+
"aria-colindex"?: number;
|
|
75
|
+
"aria-colspan"?: number;
|
|
76
|
+
"aria-controls"?: string;
|
|
77
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
78
|
+
"aria-describedby"?: string;
|
|
79
|
+
"aria-details"?: string;
|
|
80
|
+
"aria-disabled"?: boolean | "true" | "false";
|
|
81
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
82
|
+
"aria-errormessage"?: string;
|
|
83
|
+
"aria-expanded"?: boolean | "true" | "false";
|
|
84
|
+
"aria-flowto"?: string;
|
|
85
|
+
"aria-grabbed"?: boolean | "true" | "false";
|
|
86
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
87
|
+
"aria-hidden"?: boolean | "true" | "false";
|
|
88
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
89
|
+
"aria-keyshortcuts"?: string;
|
|
90
|
+
"aria-label"?: string;
|
|
91
|
+
"aria-labelledby"?: string;
|
|
92
|
+
"aria-level"?: number;
|
|
93
|
+
"aria-live"?: "off" | "assertive" | "polite";
|
|
94
|
+
"aria-modal"?: boolean | "true" | "false";
|
|
95
|
+
"aria-multiline"?: boolean | "true" | "false";
|
|
96
|
+
"aria-multiselectable"?: boolean | "true" | "false";
|
|
97
|
+
"aria-orientation"?: "horizontal" | "vertical";
|
|
98
|
+
"aria-owns"?: string;
|
|
99
|
+
"aria-placeholder"?: string;
|
|
100
|
+
"aria-posinset"?: number;
|
|
101
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed";
|
|
102
|
+
"aria-readonly"?: boolean | "true" | "false";
|
|
103
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
104
|
+
"aria-required"?: boolean | "true" | "false";
|
|
105
|
+
"aria-roledescription"?: string;
|
|
106
|
+
"aria-rowcount"?: number;
|
|
107
|
+
"aria-rowindex"?: number;
|
|
108
|
+
"aria-rowspan"?: number;
|
|
109
|
+
"aria-selected"?: boolean | "true" | "false";
|
|
110
|
+
"aria-setsize"?: number;
|
|
111
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other";
|
|
112
|
+
"aria-valuemax"?: number;
|
|
113
|
+
"aria-valuemin"?: number;
|
|
114
|
+
"aria-valuenow"?: number;
|
|
115
|
+
"aria-valuetext"?: string;
|
|
111
116
|
children?: React.ReactNode;
|
|
112
117
|
dangerouslySetInnerHTML?: {
|
|
113
|
-
__html: string;
|
|
118
|
+
__html: string | TrustedHTML;
|
|
114
119
|
};
|
|
115
120
|
onCopy?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
116
121
|
onCopyCapture?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
@@ -275,5 +280,5 @@ export declare const SmallBreakpoint: {
|
|
|
275
280
|
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
276
281
|
};
|
|
277
282
|
};
|
|
278
|
-
export declare const WithDropdowns: (args: any) => JSX.Element;
|
|
279
|
-
export declare const WithSplitButton: (args: any) => JSX.Element;
|
|
283
|
+
export declare const WithDropdowns: (args: any) => React.JSX.Element;
|
|
284
|
+
export declare const WithSplitButton: (args: any) => React.JSX.Element;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
4
|
export declare const Default: {
|
|
5
|
-
(args: any): JSX.Element;
|
|
5
|
+
(args: any): React.JSX.Element;
|
|
6
6
|
args: {
|
|
7
7
|
isInverse: boolean;
|
|
8
8
|
align: string;
|
|
@@ -4,7 +4,7 @@ declare const _default: import("@storybook/csf").ComponentAnnotations<import("@s
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, CharacterCounterProps>;
|
|
6
6
|
export declare const WithChildren: {
|
|
7
|
-
(args: any): JSX.Element;
|
|
7
|
+
(args: any): React.JSX.Element;
|
|
8
8
|
args: {
|
|
9
9
|
hasCharacterCounter?: boolean;
|
|
10
10
|
id?: string;
|
|
@@ -18,6 +18,7 @@ export declare const WithChildren: {
|
|
|
18
18
|
suppressContentEditableWarning?: boolean;
|
|
19
19
|
suppressHydrationWarning?: boolean;
|
|
20
20
|
accessKey?: string;
|
|
21
|
+
autoFocus?: boolean;
|
|
21
22
|
className?: string;
|
|
22
23
|
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
23
24
|
contextMenu?: string;
|
|
@@ -25,6 +26,7 @@ export declare const WithChildren: {
|
|
|
25
26
|
draggable?: boolean | "true" | "false";
|
|
26
27
|
hidden?: boolean;
|
|
27
28
|
lang?: string;
|
|
29
|
+
nonce?: string;
|
|
28
30
|
placeholder?: string;
|
|
29
31
|
slot?: string;
|
|
30
32
|
spellCheck?: boolean | "true" | "false";
|
|
@@ -35,11 +37,14 @@ export declare const WithChildren: {
|
|
|
35
37
|
radioGroup?: string;
|
|
36
38
|
role?: React.AriaRole;
|
|
37
39
|
about?: string;
|
|
40
|
+
content?: string;
|
|
38
41
|
datatype?: string;
|
|
39
42
|
inlist?: any;
|
|
40
43
|
prefix?: string;
|
|
41
44
|
property?: string;
|
|
45
|
+
rel?: string;
|
|
42
46
|
resource?: string;
|
|
47
|
+
rev?: string;
|
|
43
48
|
typeof?: string;
|
|
44
49
|
vocab?: string;
|
|
45
50
|
autoCapitalize?: string;
|
|
@@ -56,57 +61,57 @@ export declare const WithChildren: {
|
|
|
56
61
|
unselectable?: "on" | "off";
|
|
57
62
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
58
63
|
is?: string;
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
64
|
+
"aria-activedescendant"?: string;
|
|
65
|
+
"aria-atomic"?: boolean | "true" | "false";
|
|
66
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both";
|
|
67
|
+
"aria-busy"?: boolean | "true" | "false";
|
|
68
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed";
|
|
69
|
+
"aria-colcount"?: number;
|
|
70
|
+
"aria-colindex"?: number;
|
|
71
|
+
"aria-colspan"?: number;
|
|
72
|
+
"aria-controls"?: string;
|
|
73
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
74
|
+
"aria-describedby"?: string;
|
|
75
|
+
"aria-details"?: string;
|
|
76
|
+
"aria-disabled"?: boolean | "true" | "false";
|
|
77
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
78
|
+
"aria-errormessage"?: string;
|
|
79
|
+
"aria-expanded"?: boolean | "true" | "false";
|
|
80
|
+
"aria-flowto"?: string;
|
|
81
|
+
"aria-grabbed"?: boolean | "true" | "false";
|
|
82
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
83
|
+
"aria-hidden"?: boolean | "true" | "false";
|
|
84
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
85
|
+
"aria-keyshortcuts"?: string;
|
|
86
|
+
"aria-label"?: string;
|
|
87
|
+
"aria-labelledby"?: string;
|
|
88
|
+
"aria-level"?: number;
|
|
89
|
+
"aria-live"?: "off" | "assertive" | "polite";
|
|
90
|
+
"aria-modal"?: boolean | "true" | "false";
|
|
91
|
+
"aria-multiline"?: boolean | "true" | "false";
|
|
92
|
+
"aria-multiselectable"?: boolean | "true" | "false";
|
|
93
|
+
"aria-orientation"?: "horizontal" | "vertical";
|
|
94
|
+
"aria-owns"?: string;
|
|
95
|
+
"aria-placeholder"?: string;
|
|
96
|
+
"aria-posinset"?: number;
|
|
97
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed";
|
|
98
|
+
"aria-readonly"?: boolean | "true" | "false";
|
|
99
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
100
|
+
"aria-required"?: boolean | "true" | "false";
|
|
101
|
+
"aria-roledescription"?: string;
|
|
102
|
+
"aria-rowcount"?: number;
|
|
103
|
+
"aria-rowindex"?: number;
|
|
104
|
+
"aria-rowspan"?: number;
|
|
105
|
+
"aria-selected"?: boolean | "true" | "false";
|
|
106
|
+
"aria-setsize"?: number;
|
|
107
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other";
|
|
108
|
+
"aria-valuemax"?: number;
|
|
109
|
+
"aria-valuemin"?: number;
|
|
110
|
+
"aria-valuenow"?: number;
|
|
111
|
+
"aria-valuetext"?: string;
|
|
107
112
|
children?: React.ReactNode;
|
|
108
113
|
dangerouslySetInnerHTML?: {
|
|
109
|
-
__html: string;
|
|
114
|
+
__html: string | TrustedHTML;
|
|
110
115
|
};
|
|
111
116
|
onCopy?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
112
117
|
onCopyCapture?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
@@ -272,7 +277,7 @@ export declare const WithChildren: {
|
|
|
272
277
|
};
|
|
273
278
|
};
|
|
274
279
|
export declare const TextArea: {
|
|
275
|
-
(args: any): JSX.Element;
|
|
280
|
+
(args: any): React.JSX.Element;
|
|
276
281
|
args: {
|
|
277
282
|
hasCharacterCounter?: boolean;
|
|
278
283
|
id?: string;
|
|
@@ -286,6 +291,7 @@ export declare const TextArea: {
|
|
|
286
291
|
suppressContentEditableWarning?: boolean;
|
|
287
292
|
suppressHydrationWarning?: boolean;
|
|
288
293
|
accessKey?: string;
|
|
294
|
+
autoFocus?: boolean;
|
|
289
295
|
className?: string;
|
|
290
296
|
contentEditable?: boolean | "true" | "false" | "inherit";
|
|
291
297
|
contextMenu?: string;
|
|
@@ -293,6 +299,7 @@ export declare const TextArea: {
|
|
|
293
299
|
draggable?: boolean | "true" | "false";
|
|
294
300
|
hidden?: boolean;
|
|
295
301
|
lang?: string;
|
|
302
|
+
nonce?: string;
|
|
296
303
|
placeholder?: string;
|
|
297
304
|
slot?: string;
|
|
298
305
|
spellCheck?: boolean | "true" | "false";
|
|
@@ -303,11 +310,14 @@ export declare const TextArea: {
|
|
|
303
310
|
radioGroup?: string;
|
|
304
311
|
role?: React.AriaRole;
|
|
305
312
|
about?: string;
|
|
313
|
+
content?: string;
|
|
306
314
|
datatype?: string;
|
|
307
315
|
inlist?: any;
|
|
308
316
|
prefix?: string;
|
|
309
317
|
property?: string;
|
|
318
|
+
rel?: string;
|
|
310
319
|
resource?: string;
|
|
320
|
+
rev?: string;
|
|
311
321
|
typeof?: string;
|
|
312
322
|
vocab?: string;
|
|
313
323
|
autoCapitalize?: string;
|
|
@@ -324,57 +334,57 @@ export declare const TextArea: {
|
|
|
324
334
|
unselectable?: "on" | "off";
|
|
325
335
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
326
336
|
is?: string;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
337
|
+
"aria-activedescendant"?: string;
|
|
338
|
+
"aria-atomic"?: boolean | "true" | "false";
|
|
339
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both";
|
|
340
|
+
"aria-busy"?: boolean | "true" | "false";
|
|
341
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed";
|
|
342
|
+
"aria-colcount"?: number;
|
|
343
|
+
"aria-colindex"?: number;
|
|
344
|
+
"aria-colspan"?: number;
|
|
345
|
+
"aria-controls"?: string;
|
|
346
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
347
|
+
"aria-describedby"?: string;
|
|
348
|
+
"aria-details"?: string;
|
|
349
|
+
"aria-disabled"?: boolean | "true" | "false";
|
|
350
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
351
|
+
"aria-errormessage"?: string;
|
|
352
|
+
"aria-expanded"?: boolean | "true" | "false";
|
|
353
|
+
"aria-flowto"?: string;
|
|
354
|
+
"aria-grabbed"?: boolean | "true" | "false";
|
|
355
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
356
|
+
"aria-hidden"?: boolean | "true" | "false";
|
|
357
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
358
|
+
"aria-keyshortcuts"?: string;
|
|
359
|
+
"aria-label"?: string;
|
|
360
|
+
"aria-labelledby"?: string;
|
|
361
|
+
"aria-level"?: number;
|
|
362
|
+
"aria-live"?: "off" | "assertive" | "polite";
|
|
363
|
+
"aria-modal"?: boolean | "true" | "false";
|
|
364
|
+
"aria-multiline"?: boolean | "true" | "false";
|
|
365
|
+
"aria-multiselectable"?: boolean | "true" | "false";
|
|
366
|
+
"aria-orientation"?: "horizontal" | "vertical";
|
|
367
|
+
"aria-owns"?: string;
|
|
368
|
+
"aria-placeholder"?: string;
|
|
369
|
+
"aria-posinset"?: number;
|
|
370
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed";
|
|
371
|
+
"aria-readonly"?: boolean | "true" | "false";
|
|
372
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
373
|
+
"aria-required"?: boolean | "true" | "false";
|
|
374
|
+
"aria-roledescription"?: string;
|
|
375
|
+
"aria-rowcount"?: number;
|
|
376
|
+
"aria-rowindex"?: number;
|
|
377
|
+
"aria-rowspan"?: number;
|
|
378
|
+
"aria-selected"?: boolean | "true" | "false";
|
|
379
|
+
"aria-setsize"?: number;
|
|
380
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other";
|
|
381
|
+
"aria-valuemax"?: number;
|
|
382
|
+
"aria-valuemin"?: number;
|
|
383
|
+
"aria-valuenow"?: number;
|
|
384
|
+
"aria-valuetext"?: string;
|
|
375
385
|
children?: React.ReactNode;
|
|
376
386
|
dangerouslySetInnerHTML?: {
|
|
377
|
-
__html: string;
|
|
387
|
+
__html: string | TrustedHTML;
|
|
378
388
|
};
|
|
379
389
|
onCopy?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
380
390
|
onCopyCapture?: (event: React.ClipboardEvent<HTMLDivElement>) => void;
|
|
@@ -545,7 +555,7 @@ export declare const TextArea: {
|
|
|
545
555
|
};
|
|
546
556
|
};
|
|
547
557
|
export declare const MaxCountAndMaxLength: {
|
|
548
|
-
(args: any): JSX.Element;
|
|
558
|
+
(args: any): React.JSX.Element;
|
|
549
559
|
args: {
|
|
550
560
|
maxCount: number;
|
|
551
561
|
maxLength: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
3
3
|
export default _default;
|
|
4
|
-
export declare const Default: () => JSX.Element;
|
|
5
|
-
export declare const Inverse: () => JSX.Element;
|
|
4
|
+
export declare const Default: () => React.JSX.Element;
|
|
5
|
+
export declare const Inverse: () => React.JSX.Element;
|