@loadsmart/loadsmart-ui 7.3.1 → 7.3.3
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/common/BackButton/BackButton.d.ts +1 -0
- package/dist/common/CloseButton/CloseButton.d.ts +1 -0
- package/dist/components/Accordion/Accordion.stories.d.ts +1 -0
- package/dist/components/Banner/Banner.d.ts +1 -1
- package/dist/components/Calendar/Calendar.d.ts +1 -0
- package/dist/components/Calendar/Calendar.stories.d.ts +1 -0
- package/dist/components/Calendar/PickerModeToggle.d.ts +1 -0
- package/dist/components/Calendar/Pickers/DayPicker.d.ts +1 -0
- package/dist/components/Calendar/Pickers/MonthPicker.d.ts +1 -0
- package/dist/components/Calendar/Pickers/YearPicker.d.ts +1 -0
- package/dist/components/Checkbox/Checkbox.stories.d.ts +1 -0
- package/dist/components/DatePicker/DatePicker.stories.d.ts +1 -0
- package/dist/components/DatePicker/DateRangePicker.d.ts +1 -0
- package/dist/components/DatePicker/DateRangePicker.stories.d.ts +1 -0
- package/dist/components/DatePicker/useDatePicker.d.ts +102 -102
- package/dist/components/DatePicker/useDateRangePicker.d.ts +153 -154
- package/dist/components/Dialog/Dialog.stories.d.ts +1 -0
- package/dist/components/DragDropFile/DragDropFile.stories.d.ts +1 -0
- package/dist/components/DragDropFile/components/DropZone.d.ts +1 -0
- package/dist/components/DragDropFile/components/FileItem.d.ts +1 -0
- package/dist/components/DragDropFile/components/FileList.d.ts +1 -0
- package/dist/components/DragDropFile/styles.d.ts +1 -1
- package/dist/components/EmptyState/EmptyState.stories.d.ts +1 -0
- package/dist/components/ErrorMessage/ErrorMessage.stories.d.ts +1 -0
- package/dist/components/Icon/Icon.d.ts +2 -1
- package/dist/components/IconFactory/IconFactory.d.ts +2 -1
- package/dist/components/Label/Label.stories.d.ts +1 -0
- package/dist/components/Layout/Layout.stories.d.ts +1 -0
- package/dist/components/Link/Link.stories.d.ts +1 -0
- package/dist/components/Loaders/LoadingDots.d.ts +1 -0
- package/dist/components/Loaders/Spinner.d.ts +1 -0
- package/dist/components/Modal/Modal.stories.d.ts +1 -0
- package/dist/components/Pagination/Pagination.d.ts +1 -0
- package/dist/components/Pagination/PaginationItem.d.ts +1 -0
- package/dist/components/Popover/Popover.d.ts +1 -0
- package/dist/components/ProgressBar/ProgressBar.stories.d.ts +1 -0
- package/dist/components/Radio/Radio.stories.d.ts +1 -0
- package/dist/components/Section/Sections.stories.d.ts +1 -0
- package/dist/components/Select/SelectCreatableOption.d.ts +1 -0
- package/dist/components/Select/SelectEmpty.d.ts +1 -0
- package/dist/components/Select/SelectOption.d.ts +1 -0
- package/dist/components/SideNavigation/Separator/Separator.d.ts +1 -0
- package/dist/components/SideNavigation/SideNavigation.stories.d.ts +1 -0
- package/dist/components/Steps/ProgressSteps/ProgressSteps.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +1 -0
- package/dist/components/Table/Table.stories.d.ts +1 -0
- package/dist/components/Table/TableSortHandle.d.ts +1 -0
- package/dist/components/TablePagination/RowsPerPage.d.ts +1 -0
- package/dist/components/TablePagination/TablePagination.d.ts +1 -0
- package/dist/components/TablePagination/TablePaginationActions.d.ts +2 -1
- package/dist/components/Tabs/Tabs.stories.d.ts +1 -0
- package/dist/components/TextField/TextField.stories.d.ts +1 -0
- package/dist/components/Textarea/Textarea.stories.d.ts +1 -0
- package/dist/components/Toast/Toast.stories.d.ts +1 -0
- package/dist/components/ToggleGroup/Toggle.d.ts +1 -0
- package/dist/components/ToggleGroup/ToggleGroup.d.ts +1 -0
- package/dist/components/Tooltip/Tooltip.stories.d.ts +1 -0
- package/dist/components/TopNavigation/OpenSideNavButton/OpenSideNavButton.d.ts +1 -0
- package/dist/components/TopNavigation/TopNavigation.stories.d.ts +1 -0
- package/dist/components/VisuallyHidden/VisuallyHidden.stories.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/toolset/highlightMatch.d.ts +1 -0
- package/package.json +189 -184
- package/src/components/Dropdown/Dropdown.stories.tsx +1 -2
- package/src/components/IconFactory/IconFactory.tsx +2 -2
- package/src/components/Select/Select.constants.ts +2 -2
- package/src/components/Steps/useSteps.ts +1 -1
- package/src/components/Tag/Tag.tsx +1 -1
- package/src/hooks/useSelectable/SelectableStrategy.ts +1 -1
|
@@ -24,8 +24,6 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
24
24
|
autoComplete?: string | undefined;
|
|
25
25
|
capture?: boolean | "user" | "environment" | undefined;
|
|
26
26
|
checked?: boolean | undefined;
|
|
27
|
-
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
28
|
-
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
29
27
|
form?: string | undefined;
|
|
30
28
|
formAction?: string | undefined;
|
|
31
29
|
formEncType?: string | undefined;
|
|
@@ -54,11 +52,13 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
54
52
|
suppressContentEditableWarning?: boolean | undefined;
|
|
55
53
|
suppressHydrationWarning?: boolean | undefined;
|
|
56
54
|
accessKey?: string | undefined;
|
|
55
|
+
autoCapitalize?: "none" | "off" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
57
56
|
autoFocus?: boolean | undefined;
|
|
58
57
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
59
58
|
contextMenu?: string | undefined;
|
|
60
59
|
dir?: string | undefined;
|
|
61
60
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
61
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
62
62
|
hidden?: boolean | undefined;
|
|
63
63
|
lang?: string | undefined;
|
|
64
64
|
nonce?: string | undefined;
|
|
@@ -81,7 +81,6 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
81
81
|
rev?: string | undefined;
|
|
82
82
|
typeof?: string | undefined;
|
|
83
83
|
vocab?: string | undefined;
|
|
84
|
-
autoCapitalize?: string | undefined;
|
|
85
84
|
autoCorrect?: string | undefined;
|
|
86
85
|
autoSave?: string | undefined;
|
|
87
86
|
color?: string | undefined;
|
|
@@ -92,57 +91,57 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
92
91
|
itemRef?: string | undefined;
|
|
93
92
|
results?: number | undefined;
|
|
94
93
|
security?: string | undefined;
|
|
95
|
-
unselectable?: "
|
|
94
|
+
unselectable?: "off" | "on" | undefined;
|
|
96
95
|
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
97
96
|
is?: string | undefined;
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
97
|
+
"aria-activedescendant"?: string | undefined;
|
|
98
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
99
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
100
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
102
|
+
"aria-colcount"?: number | undefined;
|
|
103
|
+
"aria-colindex"?: number | undefined;
|
|
104
|
+
"aria-colspan"?: number | undefined;
|
|
105
|
+
"aria-controls"?: string | undefined;
|
|
106
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
107
|
+
"aria-describedby"?: string | undefined;
|
|
108
|
+
"aria-details"?: string | undefined;
|
|
109
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
110
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
111
|
+
"aria-errormessage"?: string | undefined;
|
|
112
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
113
|
+
"aria-flowto"?: string | undefined;
|
|
114
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
115
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
116
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
117
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
118
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
119
|
+
"aria-label"?: string | undefined;
|
|
120
|
+
"aria-labelledby"?: string | undefined;
|
|
121
|
+
"aria-level"?: number | undefined;
|
|
122
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
123
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
124
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
125
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
126
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
127
|
+
"aria-owns"?: string | undefined;
|
|
128
|
+
"aria-placeholder"?: string | undefined;
|
|
129
|
+
"aria-posinset"?: number | undefined;
|
|
130
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
131
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
132
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
133
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
134
|
+
"aria-roledescription"?: string | undefined;
|
|
135
|
+
"aria-rowcount"?: number | undefined;
|
|
136
|
+
"aria-rowindex"?: number | undefined;
|
|
137
|
+
"aria-rowspan"?: number | undefined;
|
|
138
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
139
|
+
"aria-setsize"?: number | undefined;
|
|
140
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
141
|
+
"aria-valuemax"?: number | undefined;
|
|
142
|
+
"aria-valuemin"?: number | undefined;
|
|
143
|
+
"aria-valuenow"?: number | undefined;
|
|
144
|
+
"aria-valuetext"?: string | undefined;
|
|
146
145
|
dangerouslySetInnerHTML?: {
|
|
147
146
|
__html: string | TrustedHTML;
|
|
148
147
|
} | undefined;
|
|
@@ -324,8 +323,6 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
324
323
|
autoComplete?: string | undefined;
|
|
325
324
|
capture?: boolean | "user" | "environment" | undefined;
|
|
326
325
|
checked?: boolean | undefined;
|
|
327
|
-
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
328
|
-
enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
|
|
329
326
|
form?: string | undefined;
|
|
330
327
|
formAction?: string | undefined;
|
|
331
328
|
formEncType?: string | undefined;
|
|
@@ -354,11 +351,13 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
354
351
|
suppressContentEditableWarning?: boolean | undefined;
|
|
355
352
|
suppressHydrationWarning?: boolean | undefined;
|
|
356
353
|
accessKey?: string | undefined;
|
|
354
|
+
autoCapitalize?: "none" | "off" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
357
355
|
autoFocus?: boolean | undefined;
|
|
358
356
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
359
357
|
contextMenu?: string | undefined;
|
|
360
358
|
dir?: string | undefined;
|
|
361
359
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
360
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
362
361
|
hidden?: boolean | undefined;
|
|
363
362
|
lang?: string | undefined;
|
|
364
363
|
nonce?: string | undefined;
|
|
@@ -381,7 +380,6 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
381
380
|
rev?: string | undefined;
|
|
382
381
|
typeof?: string | undefined;
|
|
383
382
|
vocab?: string | undefined;
|
|
384
|
-
autoCapitalize?: string | undefined;
|
|
385
383
|
autoCorrect?: string | undefined;
|
|
386
384
|
autoSave?: string | undefined;
|
|
387
385
|
color?: string | undefined;
|
|
@@ -392,57 +390,57 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
392
390
|
itemRef?: string | undefined;
|
|
393
391
|
results?: number | undefined;
|
|
394
392
|
security?: string | undefined;
|
|
395
|
-
unselectable?: "
|
|
393
|
+
unselectable?: "off" | "on" | undefined;
|
|
396
394
|
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
397
395
|
is?: string | undefined;
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
396
|
+
"aria-activedescendant"?: string | undefined;
|
|
397
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
398
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
399
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
400
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
401
|
+
"aria-colcount"?: number | undefined;
|
|
402
|
+
"aria-colindex"?: number | undefined;
|
|
403
|
+
"aria-colspan"?: number | undefined;
|
|
404
|
+
"aria-controls"?: string | undefined;
|
|
405
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
406
|
+
"aria-describedby"?: string | undefined;
|
|
407
|
+
"aria-details"?: string | undefined;
|
|
408
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
409
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
410
|
+
"aria-errormessage"?: string | undefined;
|
|
411
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
412
|
+
"aria-flowto"?: string | undefined;
|
|
413
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
414
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
415
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
416
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
417
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
418
|
+
"aria-label"?: string | undefined;
|
|
419
|
+
"aria-labelledby"?: string | undefined;
|
|
420
|
+
"aria-level"?: number | undefined;
|
|
421
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
422
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
423
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
424
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
425
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
426
|
+
"aria-owns"?: string | undefined;
|
|
427
|
+
"aria-placeholder"?: string | undefined;
|
|
428
|
+
"aria-posinset"?: number | undefined;
|
|
429
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
430
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
431
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
432
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
433
|
+
"aria-roledescription"?: string | undefined;
|
|
434
|
+
"aria-rowcount"?: number | undefined;
|
|
435
|
+
"aria-rowindex"?: number | undefined;
|
|
436
|
+
"aria-rowspan"?: number | undefined;
|
|
437
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
438
|
+
"aria-setsize"?: number | undefined;
|
|
439
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
440
|
+
"aria-valuemax"?: number | undefined;
|
|
441
|
+
"aria-valuemin"?: number | undefined;
|
|
442
|
+
"aria-valuenow"?: number | undefined;
|
|
443
|
+
"aria-valuetext"?: string | undefined;
|
|
446
444
|
dangerouslySetInnerHTML?: {
|
|
447
445
|
__html: string | TrustedHTML;
|
|
448
446
|
} | undefined;
|
|
@@ -622,12 +620,14 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
622
620
|
suppressContentEditableWarning?: boolean | undefined;
|
|
623
621
|
suppressHydrationWarning?: boolean | undefined;
|
|
624
622
|
accessKey?: string | undefined;
|
|
623
|
+
autoCapitalize?: "none" | "off" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
625
624
|
autoFocus?: boolean | undefined;
|
|
626
625
|
className?: string | undefined;
|
|
627
626
|
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
628
627
|
contextMenu?: string | undefined;
|
|
629
628
|
dir?: string | undefined;
|
|
630
629
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
630
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
631
631
|
hidden?: boolean | undefined;
|
|
632
632
|
id?: string | undefined;
|
|
633
633
|
lang?: string | undefined;
|
|
@@ -652,7 +652,6 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
652
652
|
rev?: string | undefined;
|
|
653
653
|
typeof?: string | undefined;
|
|
654
654
|
vocab?: string | undefined;
|
|
655
|
-
autoCapitalize?: string | undefined;
|
|
656
655
|
autoCorrect?: string | undefined;
|
|
657
656
|
autoSave?: string | undefined;
|
|
658
657
|
color?: string | undefined;
|
|
@@ -663,57 +662,57 @@ declare function useDateRangePicker(props: DateRangePickerProps): {
|
|
|
663
662
|
itemRef?: string | undefined;
|
|
664
663
|
results?: number | undefined;
|
|
665
664
|
security?: string | undefined;
|
|
666
|
-
unselectable?: "
|
|
665
|
+
unselectable?: "off" | "on" | undefined;
|
|
667
666
|
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
668
667
|
is?: string | undefined;
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
668
|
+
"aria-activedescendant"?: string | undefined;
|
|
669
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
670
|
+
"aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
|
|
671
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
672
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
673
|
+
"aria-colcount"?: number | undefined;
|
|
674
|
+
"aria-colindex"?: number | undefined;
|
|
675
|
+
"aria-colspan"?: number | undefined;
|
|
676
|
+
"aria-controls"?: string | undefined;
|
|
677
|
+
"aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
678
|
+
"aria-describedby"?: string | undefined;
|
|
679
|
+
"aria-details"?: string | undefined;
|
|
680
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
681
|
+
"aria-dropeffect"?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
682
|
+
"aria-errormessage"?: string | undefined;
|
|
683
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
684
|
+
"aria-flowto"?: string | undefined;
|
|
685
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
686
|
+
"aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
|
|
687
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
688
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
689
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
690
|
+
"aria-label"?: string | undefined;
|
|
691
|
+
"aria-labelledby"?: string | undefined;
|
|
692
|
+
"aria-level"?: number | undefined;
|
|
693
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
694
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
695
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
696
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
697
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
698
|
+
"aria-owns"?: string | undefined;
|
|
699
|
+
"aria-placeholder"?: string | undefined;
|
|
700
|
+
"aria-posinset"?: number | undefined;
|
|
701
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
702
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
703
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
704
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
705
|
+
"aria-roledescription"?: string | undefined;
|
|
706
|
+
"aria-rowcount"?: number | undefined;
|
|
707
|
+
"aria-rowindex"?: number | undefined;
|
|
708
|
+
"aria-rowspan"?: number | undefined;
|
|
709
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
710
|
+
"aria-setsize"?: number | undefined;
|
|
711
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
712
|
+
"aria-valuemax"?: number | undefined;
|
|
713
|
+
"aria-valuemin"?: number | undefined;
|
|
714
|
+
"aria-valuenow"?: number | undefined;
|
|
715
|
+
"aria-valuetext"?: string | undefined;
|
|
717
716
|
children?: import("react").ReactNode;
|
|
718
717
|
dangerouslySetInnerHTML?: {
|
|
719
718
|
__html: string | TrustedHTML;
|
|
@@ -6,6 +6,6 @@ export declare const DragDropFileWrapper: import("styled-components").StyledComp
|
|
|
6
6
|
}, never>;
|
|
7
7
|
export declare const DropZoneWrapper: import("styled-components").StyledComponent<(props: StackProps) => React.JSX.Element, any, Pick<DropZoneProps, "disabled" | "error">, never>;
|
|
8
8
|
export declare const HiddenInput: import("styled-components").StyledComponent<"input", any, {}, never>;
|
|
9
|
-
export declare const UploadIcon: import("styled-components").StyledComponent<
|
|
9
|
+
export declare const UploadIcon: import("styled-components").StyledComponent<React.ComponentType<import("../IconFactory").IconProps<import("../IconFactory").IconMapping>>, any, {}, never>;
|
|
10
10
|
export declare const FileListUL: import("styled-components").StyledComponent<(props: StackProps) => React.JSX.Element, any, {}, never>;
|
|
11
11
|
export declare const Divider: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { EmptyStateProps, EmptyStateWithIllustrationProps, EmptyStateWithIconProps } from './EmptyState.types';
|
|
2
3
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
|
|
3
4
|
export default _default;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { IconProps as GenericIconProps } from '../IconFactory';
|
|
2
3
|
declare const icons: {
|
|
3
4
|
'burguer-menu': JSX.Element;
|
|
@@ -22,6 +23,6 @@ declare const icons: {
|
|
|
22
23
|
'dots-horizontal': JSX.Element;
|
|
23
24
|
'caret-right-last': JSX.Element;
|
|
24
25
|
};
|
|
25
|
-
declare const Icon: (
|
|
26
|
+
declare const Icon: import("react").ComponentType<GenericIconProps<import("../IconFactory").IconMapping>>;
|
|
26
27
|
export declare type IconProps = GenericIconProps<typeof icons>;
|
|
27
28
|
export default Icon;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ComponentType } from 'react';
|
|
1
2
|
import type { ThemeToken } from "../../theming";
|
|
2
3
|
declare type ThemeColors = keyof {
|
|
3
4
|
[ColorToken in ThemeToken as ColorToken extends `color-${infer Token}` ? Token : never]: ColorToken;
|
|
@@ -12,5 +13,5 @@ export interface IconProps<T> {
|
|
|
12
13
|
}
|
|
13
14
|
export declare type IconMapping = Record<string, JSX.Element | ((props: never) => JSX.Element)>;
|
|
14
15
|
export declare function UnknownIcon(): JSX.Element;
|
|
15
|
-
declare function IconFactory(map: IconMapping):
|
|
16
|
+
declare function IconFactory(map: IconMapping): ComponentType<IconProps<typeof map>>;
|
|
16
17
|
export default IconFactory;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { ProgressBarProps } from './ProgressBar';
|
|
2
3
|
import Status from "../../utils/types/Status";
|
|
3
4
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { SideNavigationProps } from './SideNavigation';
|
|
2
3
|
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
|
|
3
4
|
export default _default;
|