react-magma-dom 4.6.0-next.4 → 4.6.0-next.6
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/Button/Button.stories.d.ts +1 -0
- package/dist/components/ButtonGroup/ButtonGroup.stories.d.ts +4 -4
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +8 -8
- package/dist/components/Datagrid/Datagrid.stories.d.ts +8 -8
- package/dist/components/IconButton/IconButton.stories.d.ts +4 -4
- package/dist/components/Input/Input.stories.d.ts +15 -15
- package/dist/components/Spinner/index.d.ts +5 -0
- package/dist/components/Table/Table.stories.d.ts +24 -24
- package/dist/components/Tag/Tag.stories.d.ts +18 -18
- package/dist/components/Textarea/Textarea.stories.d.ts +4 -4
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +16 -16
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +8 -8
- package/dist/components/TreeView/TreeView.stories.d.ts +6 -0
- package/dist/components/TreeView/TreeViewContext.d.ts +2 -0
- package/dist/components/TreeView/useTreeView.d.ts +15 -0
- package/dist/esm/index.js +140 -117
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +143 -87
- package/dist/react-magma-dom.cjs.development.js +137 -114
- 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/package.json +1 -1
|
@@ -6,3 +6,4 @@ export declare const Disabled: import("@storybook/csf").AnnotatedStoryFn<import(
|
|
|
6
6
|
export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
|
|
7
7
|
export declare const InverseDisabled: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ButtonProps>;
|
|
8
8
|
export declare const All: () => JSX.Element;
|
|
9
|
+
export declare const LoadingButton: (args: any) => JSX.Element;
|
|
@@ -69,7 +69,7 @@ export declare const SmallBreakpoint: {
|
|
|
69
69
|
'aria-colindex'?: number;
|
|
70
70
|
'aria-colspan'?: number;
|
|
71
71
|
'aria-controls'?: string;
|
|
72
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
72
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
73
73
|
'aria-describedby'?: string;
|
|
74
74
|
'aria-details'?: string;
|
|
75
75
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -78,7 +78,7 @@ export declare const SmallBreakpoint: {
|
|
|
78
78
|
'aria-expanded'?: boolean | "true" | "false";
|
|
79
79
|
'aria-flowto'?: string;
|
|
80
80
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
81
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
81
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
82
82
|
'aria-hidden'?: boolean | "true" | "false";
|
|
83
83
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
84
84
|
'aria-keyshortcuts'?: string;
|
|
@@ -95,7 +95,7 @@ export declare const SmallBreakpoint: {
|
|
|
95
95
|
'aria-posinset'?: number;
|
|
96
96
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
97
97
|
'aria-readonly'?: boolean | "true" | "false";
|
|
98
|
-
'aria-relevant'?: "text" | "
|
|
98
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
99
99
|
'aria-required'?: boolean | "true" | "false";
|
|
100
100
|
'aria-roledescription'?: string;
|
|
101
101
|
'aria-rowcount'?: number;
|
|
@@ -103,7 +103,7 @@ export declare const SmallBreakpoint: {
|
|
|
103
103
|
'aria-rowspan'?: number;
|
|
104
104
|
'aria-selected'?: boolean | "true" | "false";
|
|
105
105
|
'aria-setsize'?: number;
|
|
106
|
-
'aria-sort'?: "
|
|
106
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
107
107
|
'aria-valuemax'?: number;
|
|
108
108
|
'aria-valuemin'?: number;
|
|
109
109
|
'aria-valuenow'?: number;
|
|
@@ -65,7 +65,7 @@ export declare const WithChildren: {
|
|
|
65
65
|
'aria-colindex'?: number;
|
|
66
66
|
'aria-colspan'?: number;
|
|
67
67
|
'aria-controls'?: string;
|
|
68
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
68
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
69
69
|
'aria-describedby'?: string;
|
|
70
70
|
'aria-details'?: string;
|
|
71
71
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -74,7 +74,7 @@ export declare const WithChildren: {
|
|
|
74
74
|
'aria-expanded'?: boolean | "true" | "false";
|
|
75
75
|
'aria-flowto'?: string;
|
|
76
76
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
77
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
77
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
78
78
|
'aria-hidden'?: boolean | "true" | "false";
|
|
79
79
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
80
80
|
'aria-keyshortcuts'?: string;
|
|
@@ -91,7 +91,7 @@ export declare const WithChildren: {
|
|
|
91
91
|
'aria-posinset'?: number;
|
|
92
92
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
93
93
|
'aria-readonly'?: boolean | "true" | "false";
|
|
94
|
-
'aria-relevant'?: "text" | "
|
|
94
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
95
95
|
'aria-required'?: boolean | "true" | "false";
|
|
96
96
|
'aria-roledescription'?: string;
|
|
97
97
|
'aria-rowcount'?: number;
|
|
@@ -99,7 +99,7 @@ export declare const WithChildren: {
|
|
|
99
99
|
'aria-rowspan'?: number;
|
|
100
100
|
'aria-selected'?: boolean | "true" | "false";
|
|
101
101
|
'aria-setsize'?: number;
|
|
102
|
-
'aria-sort'?: "
|
|
102
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
103
103
|
'aria-valuemax'?: number;
|
|
104
104
|
'aria-valuemin'?: number;
|
|
105
105
|
'aria-valuenow'?: number;
|
|
@@ -332,7 +332,7 @@ export declare const TextArea: {
|
|
|
332
332
|
'aria-colindex'?: number;
|
|
333
333
|
'aria-colspan'?: number;
|
|
334
334
|
'aria-controls'?: string;
|
|
335
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
335
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
336
336
|
'aria-describedby'?: string;
|
|
337
337
|
'aria-details'?: string;
|
|
338
338
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -341,7 +341,7 @@ export declare const TextArea: {
|
|
|
341
341
|
'aria-expanded'?: boolean | "true" | "false";
|
|
342
342
|
'aria-flowto'?: string;
|
|
343
343
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
344
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
344
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
345
345
|
'aria-hidden'?: boolean | "true" | "false";
|
|
346
346
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
347
347
|
'aria-keyshortcuts'?: string;
|
|
@@ -358,7 +358,7 @@ export declare const TextArea: {
|
|
|
358
358
|
'aria-posinset'?: number;
|
|
359
359
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
360
360
|
'aria-readonly'?: boolean | "true" | "false";
|
|
361
|
-
'aria-relevant'?: "text" | "
|
|
361
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
362
362
|
'aria-required'?: boolean | "true" | "false";
|
|
363
363
|
'aria-roledescription'?: string;
|
|
364
364
|
'aria-rowcount'?: number;
|
|
@@ -366,7 +366,7 @@ export declare const TextArea: {
|
|
|
366
366
|
'aria-rowspan'?: number;
|
|
367
367
|
'aria-selected'?: boolean | "true" | "false";
|
|
368
368
|
'aria-setsize'?: number;
|
|
369
|
-
'aria-sort'?: "
|
|
369
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
370
370
|
'aria-valuemax'?: number;
|
|
371
371
|
'aria-valuemin'?: number;
|
|
372
372
|
'aria-valuenow'?: number;
|
|
@@ -2,13 +2,13 @@ import { Story } from '@storybook/react/types-6-0';
|
|
|
2
2
|
import { DatagridProps } from './Datagrid';
|
|
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;
|
|
5
|
-
export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
6
|
-
export declare const ColoredRows: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
7
|
-
export declare const Selectable: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
5
|
+
export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
6
|
+
export declare const ColoredRows: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
7
|
+
export declare const Selectable: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
8
8
|
export declare const SelectableAndSortable: Story<DatagridProps>;
|
|
9
|
-
export declare const ControlledSelectable: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
10
|
-
export declare const DisabledSelectableRow: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
11
|
-
export declare const PaginationChangedDefaults: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
9
|
+
export declare const ControlledSelectable: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "selectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
10
|
+
export declare const DisabledSelectableRow: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
11
|
+
export declare const PaginationChangedDefaults: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
12
12
|
export declare const ControlledPagination: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, DatagridProps>;
|
|
13
|
-
export declare const WithoutPagination: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
14
|
-
export declare const PaginationWithCustomComponent: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "
|
|
13
|
+
export declare const WithoutPagination: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
14
|
+
export declare const PaginationWithCustomComponent: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "testId" | "isInverse" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "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" | "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" | "rows" | "components" | "selectedItems" | "defaultSelectedRows" | "columns" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "minWidth" | "rowCount">>;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
declare const _default: import("@storybook/csf").ComponentAnnotations<import("@storybook/react/types-6-0").ReactFramework, import("@storybook/react/types-6-0").Args>;
|
|
2
2
|
export default _default;
|
|
3
3
|
export declare const Default: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ({} & import(".").IconTextButtonProps) | ({
|
|
4
|
-
children?: never;
|
|
5
4
|
iconPosition?: never;
|
|
5
|
+
children?: never;
|
|
6
6
|
} & import(".").IconOnlyButtonProps)>;
|
|
7
7
|
export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ({} & import(".").IconTextButtonProps) | ({
|
|
8
|
-
children?: never;
|
|
9
8
|
iconPosition?: never;
|
|
9
|
+
children?: never;
|
|
10
10
|
} & import(".").IconOnlyButtonProps)>;
|
|
11
11
|
export declare const IconOnly: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ({} & import(".").IconTextButtonProps) | ({
|
|
12
|
-
children?: never;
|
|
13
12
|
iconPosition?: never;
|
|
13
|
+
children?: never;
|
|
14
14
|
} & import(".").IconOnlyButtonProps)>;
|
|
15
15
|
export declare const AnimatedIcon: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, ({} & import(".").IconTextButtonProps) | ({
|
|
16
|
-
children?: never;
|
|
17
16
|
iconPosition?: never;
|
|
17
|
+
children?: never;
|
|
18
18
|
} & import(".").IconOnlyButtonProps)>;
|
|
@@ -12,9 +12,9 @@ export declare const IconPositions: {
|
|
|
12
12
|
args: {
|
|
13
13
|
placeholder: string;
|
|
14
14
|
helperMessage: any;
|
|
15
|
-
isInverse?: boolean;
|
|
16
15
|
testId?: string;
|
|
17
16
|
iconPosition?: InputIconPosition;
|
|
17
|
+
isInverse?: boolean;
|
|
18
18
|
containerStyle?: React.CSSProperties;
|
|
19
19
|
actionable?: boolean;
|
|
20
20
|
errorMessage?: React.ReactNode;
|
|
@@ -127,7 +127,7 @@ export declare const IconPositions: {
|
|
|
127
127
|
'aria-colindex'?: number;
|
|
128
128
|
'aria-colspan'?: number;
|
|
129
129
|
'aria-controls'?: string;
|
|
130
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
130
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
131
131
|
'aria-describedby'?: string;
|
|
132
132
|
'aria-details'?: string;
|
|
133
133
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -136,7 +136,7 @@ export declare const IconPositions: {
|
|
|
136
136
|
'aria-expanded'?: boolean | "true" | "false";
|
|
137
137
|
'aria-flowto'?: string;
|
|
138
138
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
139
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
139
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
140
140
|
'aria-hidden'?: boolean | "true" | "false";
|
|
141
141
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
142
142
|
'aria-keyshortcuts'?: string;
|
|
@@ -153,7 +153,7 @@ export declare const IconPositions: {
|
|
|
153
153
|
'aria-posinset'?: number;
|
|
154
154
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
155
155
|
'aria-readonly'?: boolean | "true" | "false";
|
|
156
|
-
'aria-relevant'?: "text" | "
|
|
156
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
157
157
|
'aria-required'?: boolean | "true" | "false";
|
|
158
158
|
'aria-roledescription'?: string;
|
|
159
159
|
'aria-rowcount'?: number;
|
|
@@ -161,7 +161,7 @@ export declare const IconPositions: {
|
|
|
161
161
|
'aria-rowspan'?: number;
|
|
162
162
|
'aria-selected'?: boolean | "true" | "false";
|
|
163
163
|
'aria-setsize'?: number;
|
|
164
|
-
'aria-sort'?: "
|
|
164
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
165
165
|
'aria-valuemax'?: number;
|
|
166
166
|
'aria-valuemin'?: number;
|
|
167
167
|
'aria-valuenow'?: number;
|
|
@@ -341,9 +341,9 @@ export declare const Inverse: import("@storybook/csf").AnnotatedStoryFn<import("
|
|
|
341
341
|
export declare const WithChildren: {
|
|
342
342
|
(args: any): JSX.Element;
|
|
343
343
|
args: {
|
|
344
|
-
isInverse?: boolean;
|
|
345
344
|
testId?: string;
|
|
346
345
|
iconPosition?: InputIconPosition;
|
|
346
|
+
isInverse?: boolean;
|
|
347
347
|
containerStyle?: React.CSSProperties;
|
|
348
348
|
actionable?: boolean;
|
|
349
349
|
errorMessage?: React.ReactNode;
|
|
@@ -458,7 +458,7 @@ export declare const WithChildren: {
|
|
|
458
458
|
'aria-colindex'?: number;
|
|
459
459
|
'aria-colspan'?: number;
|
|
460
460
|
'aria-controls'?: string;
|
|
461
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
461
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
462
462
|
'aria-describedby'?: string;
|
|
463
463
|
'aria-details'?: string;
|
|
464
464
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -467,7 +467,7 @@ export declare const WithChildren: {
|
|
|
467
467
|
'aria-expanded'?: boolean | "true" | "false";
|
|
468
468
|
'aria-flowto'?: string;
|
|
469
469
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
470
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
470
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
471
471
|
'aria-hidden'?: boolean | "true" | "false";
|
|
472
472
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
473
473
|
'aria-keyshortcuts'?: string;
|
|
@@ -484,7 +484,7 @@ export declare const WithChildren: {
|
|
|
484
484
|
'aria-posinset'?: number;
|
|
485
485
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
486
486
|
'aria-readonly'?: boolean | "true" | "false";
|
|
487
|
-
'aria-relevant'?: "text" | "
|
|
487
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
488
488
|
'aria-required'?: boolean | "true" | "false";
|
|
489
489
|
'aria-roledescription'?: string;
|
|
490
490
|
'aria-rowcount'?: number;
|
|
@@ -492,7 +492,7 @@ export declare const WithChildren: {
|
|
|
492
492
|
'aria-rowspan'?: number;
|
|
493
493
|
'aria-selected'?: boolean | "true" | "false";
|
|
494
494
|
'aria-setsize'?: number;
|
|
495
|
-
'aria-sort'?: "
|
|
495
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
496
496
|
'aria-valuemax'?: number;
|
|
497
497
|
'aria-valuemin'?: number;
|
|
498
498
|
'aria-valuenow'?: number;
|
|
@@ -669,9 +669,9 @@ export declare const WithChildren: {
|
|
|
669
669
|
export declare const WithTwoIcons: {
|
|
670
670
|
(args: any): JSX.Element;
|
|
671
671
|
args: {
|
|
672
|
-
isInverse?: boolean;
|
|
673
672
|
testId?: string;
|
|
674
673
|
iconPosition?: InputIconPosition;
|
|
674
|
+
isInverse?: boolean;
|
|
675
675
|
containerStyle?: React.CSSProperties;
|
|
676
676
|
actionable?: boolean;
|
|
677
677
|
errorMessage?: React.ReactNode;
|
|
@@ -786,7 +786,7 @@ export declare const WithTwoIcons: {
|
|
|
786
786
|
'aria-colindex'?: number;
|
|
787
787
|
'aria-colspan'?: number;
|
|
788
788
|
'aria-controls'?: string;
|
|
789
|
-
'aria-current'?: boolean | "time" | "true" | "false" | "
|
|
789
|
+
'aria-current'?: boolean | "time" | "true" | "false" | "step" | "page" | "location" | "date";
|
|
790
790
|
'aria-describedby'?: string;
|
|
791
791
|
'aria-details'?: string;
|
|
792
792
|
'aria-disabled'?: boolean | "true" | "false";
|
|
@@ -795,7 +795,7 @@ export declare const WithTwoIcons: {
|
|
|
795
795
|
'aria-expanded'?: boolean | "true" | "false";
|
|
796
796
|
'aria-flowto'?: string;
|
|
797
797
|
'aria-grabbed'?: boolean | "true" | "false";
|
|
798
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
798
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree";
|
|
799
799
|
'aria-hidden'?: boolean | "true" | "false";
|
|
800
800
|
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
801
801
|
'aria-keyshortcuts'?: string;
|
|
@@ -812,7 +812,7 @@ export declare const WithTwoIcons: {
|
|
|
812
812
|
'aria-posinset'?: number;
|
|
813
813
|
'aria-pressed'?: boolean | "true" | "false" | "mixed";
|
|
814
814
|
'aria-readonly'?: boolean | "true" | "false";
|
|
815
|
-
'aria-relevant'?: "text" | "
|
|
815
|
+
'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
816
816
|
'aria-required'?: boolean | "true" | "false";
|
|
817
817
|
'aria-roledescription'?: string;
|
|
818
818
|
'aria-rowcount'?: number;
|
|
@@ -820,7 +820,7 @@ export declare const WithTwoIcons: {
|
|
|
820
820
|
'aria-rowspan'?: number;
|
|
821
821
|
'aria-selected'?: boolean | "true" | "false";
|
|
822
822
|
'aria-setsize'?: number;
|
|
823
|
-
'aria-sort'?: "
|
|
823
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
824
824
|
'aria-valuemax'?: number;
|
|
825
825
|
'aria-valuemin'?: number;
|
|
826
826
|
'aria-valuenow'?: number;
|