react-magma-dom 4.7.0-next.11 → 4.7.0-next.12
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/ButtonGroup/ButtonGroup.stories.d.ts +22 -22
- package/dist/components/CharacterCounter/CharacterCounter.stories.d.ts +44 -44
- 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 +69 -69
- package/dist/components/Table/Table.stories.d.ts +132 -132
- package/dist/components/Tag/Tag.stories.d.ts +58 -58
- package/dist/components/Textarea/Textarea.stories.d.ts +22 -22
- package/dist/components/ToggleButton/ToggleButton.stories.d.ts +88 -88
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.stories.d.ts +44 -44
- package/dist/esm/index.js +5 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +5 -1
- 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
|
@@ -23,16 +23,16 @@ export declare const SmallBreakpoint: {
|
|
|
23
23
|
suppressHydrationWarning?: boolean;
|
|
24
24
|
accessKey?: string;
|
|
25
25
|
className?: string;
|
|
26
|
-
contentEditable?: boolean | "
|
|
26
|
+
contentEditable?: boolean | "inherit" | "false" | "true";
|
|
27
27
|
contextMenu?: string;
|
|
28
28
|
dir?: string;
|
|
29
|
-
draggable?: boolean | "
|
|
29
|
+
draggable?: boolean | "false" | "true";
|
|
30
30
|
hidden?: boolean;
|
|
31
31
|
id?: string;
|
|
32
32
|
lang?: string;
|
|
33
33
|
placeholder?: string;
|
|
34
34
|
slot?: string;
|
|
35
|
-
spellCheck?: boolean | "
|
|
35
|
+
spellCheck?: boolean | "false" | "true";
|
|
36
36
|
style?: React.CSSProperties;
|
|
37
37
|
tabIndex?: number;
|
|
38
38
|
title?: string;
|
|
@@ -61,47 +61,47 @@ export declare const SmallBreakpoint: {
|
|
|
61
61
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
62
62
|
is?: string;
|
|
63
63
|
'aria-activedescendant'?: string;
|
|
64
|
-
'aria-atomic'?: boolean | "
|
|
65
|
-
'aria-autocomplete'?: "
|
|
66
|
-
'aria-busy'?: boolean | "
|
|
67
|
-
'aria-checked'?: boolean | "
|
|
64
|
+
'aria-atomic'?: boolean | "false" | "true";
|
|
65
|
+
'aria-autocomplete'?: "both" | "none" | "inline" | "list";
|
|
66
|
+
'aria-busy'?: boolean | "false" | "true";
|
|
67
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true";
|
|
68
68
|
'aria-colcount'?: number;
|
|
69
69
|
'aria-colindex'?: number;
|
|
70
70
|
'aria-colspan'?: number;
|
|
71
71
|
'aria-controls'?: string;
|
|
72
|
-
'aria-current'?: boolean | "time" | "
|
|
72
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date";
|
|
73
73
|
'aria-describedby'?: string;
|
|
74
74
|
'aria-details'?: string;
|
|
75
|
-
'aria-disabled'?: boolean | "
|
|
75
|
+
'aria-disabled'?: boolean | "false" | "true";
|
|
76
76
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
77
77
|
'aria-errormessage'?: string;
|
|
78
|
-
'aria-expanded'?: boolean | "
|
|
78
|
+
'aria-expanded'?: boolean | "false" | "true";
|
|
79
79
|
'aria-flowto'?: string;
|
|
80
|
-
'aria-grabbed'?: boolean | "
|
|
81
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
82
|
-
'aria-hidden'?: boolean | "
|
|
83
|
-
'aria-invalid'?: boolean | "
|
|
80
|
+
'aria-grabbed'?: boolean | "false" | "true";
|
|
81
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree";
|
|
82
|
+
'aria-hidden'?: boolean | "false" | "true";
|
|
83
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling";
|
|
84
84
|
'aria-keyshortcuts'?: string;
|
|
85
85
|
'aria-label'?: string;
|
|
86
86
|
'aria-labelledby'?: string;
|
|
87
87
|
'aria-level'?: number;
|
|
88
88
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
89
|
-
'aria-modal'?: boolean | "
|
|
90
|
-
'aria-multiline'?: boolean | "
|
|
91
|
-
'aria-multiselectable'?: boolean | "
|
|
89
|
+
'aria-modal'?: boolean | "false" | "true";
|
|
90
|
+
'aria-multiline'?: boolean | "false" | "true";
|
|
91
|
+
'aria-multiselectable'?: boolean | "false" | "true";
|
|
92
92
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
93
93
|
'aria-owns'?: string;
|
|
94
94
|
'aria-placeholder'?: string;
|
|
95
95
|
'aria-posinset'?: number;
|
|
96
|
-
'aria-pressed'?: boolean | "
|
|
97
|
-
'aria-readonly'?: boolean | "
|
|
98
|
-
'aria-relevant'?: "text" | "
|
|
99
|
-
'aria-required'?: boolean | "
|
|
96
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true";
|
|
97
|
+
'aria-readonly'?: boolean | "false" | "true";
|
|
98
|
+
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
99
|
+
'aria-required'?: boolean | "false" | "true";
|
|
100
100
|
'aria-roledescription'?: string;
|
|
101
101
|
'aria-rowcount'?: number;
|
|
102
102
|
'aria-rowindex'?: number;
|
|
103
103
|
'aria-rowspan'?: number;
|
|
104
|
-
'aria-selected'?: boolean | "
|
|
104
|
+
'aria-selected'?: boolean | "false" | "true";
|
|
105
105
|
'aria-setsize'?: number;
|
|
106
106
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
107
107
|
'aria-valuemax'?: number;
|
|
@@ -19,15 +19,15 @@ export declare const WithChildren: {
|
|
|
19
19
|
suppressHydrationWarning?: boolean;
|
|
20
20
|
accessKey?: string;
|
|
21
21
|
className?: string;
|
|
22
|
-
contentEditable?: boolean | "
|
|
22
|
+
contentEditable?: boolean | "inherit" | "false" | "true";
|
|
23
23
|
contextMenu?: string;
|
|
24
24
|
dir?: string;
|
|
25
|
-
draggable?: boolean | "
|
|
25
|
+
draggable?: boolean | "false" | "true";
|
|
26
26
|
hidden?: boolean;
|
|
27
27
|
lang?: string;
|
|
28
28
|
placeholder?: string;
|
|
29
29
|
slot?: string;
|
|
30
|
-
spellCheck?: boolean | "
|
|
30
|
+
spellCheck?: boolean | "false" | "true";
|
|
31
31
|
style?: React.CSSProperties;
|
|
32
32
|
tabIndex?: number;
|
|
33
33
|
title?: string;
|
|
@@ -57,47 +57,47 @@ export declare const WithChildren: {
|
|
|
57
57
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
58
58
|
is?: string;
|
|
59
59
|
'aria-activedescendant'?: string;
|
|
60
|
-
'aria-atomic'?: boolean | "
|
|
61
|
-
'aria-autocomplete'?: "
|
|
62
|
-
'aria-busy'?: boolean | "
|
|
63
|
-
'aria-checked'?: boolean | "
|
|
60
|
+
'aria-atomic'?: boolean | "false" | "true";
|
|
61
|
+
'aria-autocomplete'?: "both" | "none" | "inline" | "list";
|
|
62
|
+
'aria-busy'?: boolean | "false" | "true";
|
|
63
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true";
|
|
64
64
|
'aria-colcount'?: number;
|
|
65
65
|
'aria-colindex'?: number;
|
|
66
66
|
'aria-colspan'?: number;
|
|
67
67
|
'aria-controls'?: string;
|
|
68
|
-
'aria-current'?: boolean | "time" | "
|
|
68
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date";
|
|
69
69
|
'aria-describedby'?: string;
|
|
70
70
|
'aria-details'?: string;
|
|
71
|
-
'aria-disabled'?: boolean | "
|
|
71
|
+
'aria-disabled'?: boolean | "false" | "true";
|
|
72
72
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
73
73
|
'aria-errormessage'?: string;
|
|
74
|
-
'aria-expanded'?: boolean | "
|
|
74
|
+
'aria-expanded'?: boolean | "false" | "true";
|
|
75
75
|
'aria-flowto'?: string;
|
|
76
|
-
'aria-grabbed'?: boolean | "
|
|
77
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
78
|
-
'aria-hidden'?: boolean | "
|
|
79
|
-
'aria-invalid'?: boolean | "
|
|
76
|
+
'aria-grabbed'?: boolean | "false" | "true";
|
|
77
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree";
|
|
78
|
+
'aria-hidden'?: boolean | "false" | "true";
|
|
79
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling";
|
|
80
80
|
'aria-keyshortcuts'?: string;
|
|
81
81
|
'aria-label'?: string;
|
|
82
82
|
'aria-labelledby'?: string;
|
|
83
83
|
'aria-level'?: number;
|
|
84
84
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
85
|
-
'aria-modal'?: boolean | "
|
|
86
|
-
'aria-multiline'?: boolean | "
|
|
87
|
-
'aria-multiselectable'?: boolean | "
|
|
85
|
+
'aria-modal'?: boolean | "false" | "true";
|
|
86
|
+
'aria-multiline'?: boolean | "false" | "true";
|
|
87
|
+
'aria-multiselectable'?: boolean | "false" | "true";
|
|
88
88
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
89
89
|
'aria-owns'?: string;
|
|
90
90
|
'aria-placeholder'?: string;
|
|
91
91
|
'aria-posinset'?: number;
|
|
92
|
-
'aria-pressed'?: boolean | "
|
|
93
|
-
'aria-readonly'?: boolean | "
|
|
94
|
-
'aria-relevant'?: "text" | "
|
|
95
|
-
'aria-required'?: boolean | "
|
|
92
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true";
|
|
93
|
+
'aria-readonly'?: boolean | "false" | "true";
|
|
94
|
+
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
95
|
+
'aria-required'?: boolean | "false" | "true";
|
|
96
96
|
'aria-roledescription'?: string;
|
|
97
97
|
'aria-rowcount'?: number;
|
|
98
98
|
'aria-rowindex'?: number;
|
|
99
99
|
'aria-rowspan'?: number;
|
|
100
|
-
'aria-selected'?: boolean | "
|
|
100
|
+
'aria-selected'?: boolean | "false" | "true";
|
|
101
101
|
'aria-setsize'?: number;
|
|
102
102
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
103
103
|
'aria-valuemax'?: number;
|
|
@@ -286,15 +286,15 @@ export declare const TextArea: {
|
|
|
286
286
|
suppressHydrationWarning?: boolean;
|
|
287
287
|
accessKey?: string;
|
|
288
288
|
className?: string;
|
|
289
|
-
contentEditable?: boolean | "
|
|
289
|
+
contentEditable?: boolean | "inherit" | "false" | "true";
|
|
290
290
|
contextMenu?: string;
|
|
291
291
|
dir?: string;
|
|
292
|
-
draggable?: boolean | "
|
|
292
|
+
draggable?: boolean | "false" | "true";
|
|
293
293
|
hidden?: boolean;
|
|
294
294
|
lang?: string;
|
|
295
295
|
placeholder?: string;
|
|
296
296
|
slot?: string;
|
|
297
|
-
spellCheck?: boolean | "
|
|
297
|
+
spellCheck?: boolean | "false" | "true";
|
|
298
298
|
style?: React.CSSProperties;
|
|
299
299
|
tabIndex?: number;
|
|
300
300
|
title?: string;
|
|
@@ -324,47 +324,47 @@ export declare const TextArea: {
|
|
|
324
324
|
inputMode?: "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
325
325
|
is?: string;
|
|
326
326
|
'aria-activedescendant'?: string;
|
|
327
|
-
'aria-atomic'?: boolean | "
|
|
328
|
-
'aria-autocomplete'?: "
|
|
329
|
-
'aria-busy'?: boolean | "
|
|
330
|
-
'aria-checked'?: boolean | "
|
|
327
|
+
'aria-atomic'?: boolean | "false" | "true";
|
|
328
|
+
'aria-autocomplete'?: "both" | "none" | "inline" | "list";
|
|
329
|
+
'aria-busy'?: boolean | "false" | "true";
|
|
330
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true";
|
|
331
331
|
'aria-colcount'?: number;
|
|
332
332
|
'aria-colindex'?: number;
|
|
333
333
|
'aria-colspan'?: number;
|
|
334
334
|
'aria-controls'?: string;
|
|
335
|
-
'aria-current'?: boolean | "time" | "
|
|
335
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date";
|
|
336
336
|
'aria-describedby'?: string;
|
|
337
337
|
'aria-details'?: string;
|
|
338
|
-
'aria-disabled'?: boolean | "
|
|
338
|
+
'aria-disabled'?: boolean | "false" | "true";
|
|
339
339
|
'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
340
340
|
'aria-errormessage'?: string;
|
|
341
|
-
'aria-expanded'?: boolean | "
|
|
341
|
+
'aria-expanded'?: boolean | "false" | "true";
|
|
342
342
|
'aria-flowto'?: string;
|
|
343
|
-
'aria-grabbed'?: boolean | "
|
|
344
|
-
'aria-haspopup'?: boolean | "dialog" | "menu" | "
|
|
345
|
-
'aria-hidden'?: boolean | "
|
|
346
|
-
'aria-invalid'?: boolean | "
|
|
343
|
+
'aria-grabbed'?: boolean | "false" | "true";
|
|
344
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree";
|
|
345
|
+
'aria-hidden'?: boolean | "false" | "true";
|
|
346
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling";
|
|
347
347
|
'aria-keyshortcuts'?: string;
|
|
348
348
|
'aria-label'?: string;
|
|
349
349
|
'aria-labelledby'?: string;
|
|
350
350
|
'aria-level'?: number;
|
|
351
351
|
'aria-live'?: "off" | "assertive" | "polite";
|
|
352
|
-
'aria-modal'?: boolean | "
|
|
353
|
-
'aria-multiline'?: boolean | "
|
|
354
|
-
'aria-multiselectable'?: boolean | "
|
|
352
|
+
'aria-modal'?: boolean | "false" | "true";
|
|
353
|
+
'aria-multiline'?: boolean | "false" | "true";
|
|
354
|
+
'aria-multiselectable'?: boolean | "false" | "true";
|
|
355
355
|
'aria-orientation'?: "horizontal" | "vertical";
|
|
356
356
|
'aria-owns'?: string;
|
|
357
357
|
'aria-placeholder'?: string;
|
|
358
358
|
'aria-posinset'?: number;
|
|
359
|
-
'aria-pressed'?: boolean | "
|
|
360
|
-
'aria-readonly'?: boolean | "
|
|
361
|
-
'aria-relevant'?: "text" | "
|
|
362
|
-
'aria-required'?: boolean | "
|
|
359
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true";
|
|
360
|
+
'aria-readonly'?: boolean | "false" | "true";
|
|
361
|
+
'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
|
|
362
|
+
'aria-required'?: boolean | "false" | "true";
|
|
363
363
|
'aria-roledescription'?: string;
|
|
364
364
|
'aria-rowcount'?: number;
|
|
365
365
|
'aria-rowindex'?: number;
|
|
366
366
|
'aria-rowspan'?: number;
|
|
367
|
-
'aria-selected'?: boolean | "
|
|
367
|
+
'aria-selected'?: boolean | "false" | "true";
|
|
368
368
|
'aria-setsize'?: number;
|
|
369
369
|
'aria-sort'?: "none" | "ascending" | "descending" | "other";
|
|
370
370
|
'aria-valuemax'?: 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, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|
|
6
|
+
export declare const ColoredRows: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|
|
7
|
+
export declare const Selectable: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "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, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|
|
10
|
+
export declare const DisabledSelectableRow: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|
|
11
|
+
export declare const PaginationChangedDefaults: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "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, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|
|
14
|
+
export declare const PaginationWithCustomComponent: import("@storybook/csf").AnnotatedStoryFn<import("@storybook/react/types-6-0").ReactFramework, Pick<DatagridProps, "slot" | "style" | "title" | "color" | "minWidth" | "translate" | "columns" | "children" | "isInverse" | "hidden" | "id" | "testId" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "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" | "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" | "componentsProps" | "hasPagination" | "onHeaderSelect" | "onRowSelect" | "onSelectedRowsChange" | "paginationProps" | "onSortBySelected" | "sortDirection" | "density" | "hasHoverStyles" | "hasSquareCorners" | "hasVerticalBorders" | "hasZebraStripes" | "isSelectable" | "isSortableBySelected" | "rowCount">>;
|