@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.
Files changed (70) hide show
  1. package/dist/common/BackButton/BackButton.d.ts +1 -0
  2. package/dist/common/CloseButton/CloseButton.d.ts +1 -0
  3. package/dist/components/Accordion/Accordion.stories.d.ts +1 -0
  4. package/dist/components/Banner/Banner.d.ts +1 -1
  5. package/dist/components/Calendar/Calendar.d.ts +1 -0
  6. package/dist/components/Calendar/Calendar.stories.d.ts +1 -0
  7. package/dist/components/Calendar/PickerModeToggle.d.ts +1 -0
  8. package/dist/components/Calendar/Pickers/DayPicker.d.ts +1 -0
  9. package/dist/components/Calendar/Pickers/MonthPicker.d.ts +1 -0
  10. package/dist/components/Calendar/Pickers/YearPicker.d.ts +1 -0
  11. package/dist/components/Checkbox/Checkbox.stories.d.ts +1 -0
  12. package/dist/components/DatePicker/DatePicker.stories.d.ts +1 -0
  13. package/dist/components/DatePicker/DateRangePicker.d.ts +1 -0
  14. package/dist/components/DatePicker/DateRangePicker.stories.d.ts +1 -0
  15. package/dist/components/DatePicker/useDatePicker.d.ts +102 -102
  16. package/dist/components/DatePicker/useDateRangePicker.d.ts +153 -154
  17. package/dist/components/Dialog/Dialog.stories.d.ts +1 -0
  18. package/dist/components/DragDropFile/DragDropFile.stories.d.ts +1 -0
  19. package/dist/components/DragDropFile/components/DropZone.d.ts +1 -0
  20. package/dist/components/DragDropFile/components/FileItem.d.ts +1 -0
  21. package/dist/components/DragDropFile/components/FileList.d.ts +1 -0
  22. package/dist/components/DragDropFile/styles.d.ts +1 -1
  23. package/dist/components/EmptyState/EmptyState.stories.d.ts +1 -0
  24. package/dist/components/ErrorMessage/ErrorMessage.stories.d.ts +1 -0
  25. package/dist/components/Icon/Icon.d.ts +2 -1
  26. package/dist/components/IconFactory/IconFactory.d.ts +2 -1
  27. package/dist/components/Label/Label.stories.d.ts +1 -0
  28. package/dist/components/Layout/Layout.stories.d.ts +1 -0
  29. package/dist/components/Link/Link.stories.d.ts +1 -0
  30. package/dist/components/Loaders/LoadingDots.d.ts +1 -0
  31. package/dist/components/Loaders/Spinner.d.ts +1 -0
  32. package/dist/components/Modal/Modal.stories.d.ts +1 -0
  33. package/dist/components/Pagination/Pagination.d.ts +1 -0
  34. package/dist/components/Pagination/PaginationItem.d.ts +1 -0
  35. package/dist/components/Popover/Popover.d.ts +1 -0
  36. package/dist/components/ProgressBar/ProgressBar.stories.d.ts +1 -0
  37. package/dist/components/Radio/Radio.stories.d.ts +1 -0
  38. package/dist/components/Section/Sections.stories.d.ts +1 -0
  39. package/dist/components/Select/SelectCreatableOption.d.ts +1 -0
  40. package/dist/components/Select/SelectEmpty.d.ts +1 -0
  41. package/dist/components/Select/SelectOption.d.ts +1 -0
  42. package/dist/components/SideNavigation/Separator/Separator.d.ts +1 -0
  43. package/dist/components/SideNavigation/SideNavigation.stories.d.ts +1 -0
  44. package/dist/components/Steps/ProgressSteps/ProgressSteps.d.ts +1 -0
  45. package/dist/components/Table/Table.d.ts +1 -0
  46. package/dist/components/Table/Table.stories.d.ts +1 -0
  47. package/dist/components/Table/TableSortHandle.d.ts +1 -0
  48. package/dist/components/TablePagination/RowsPerPage.d.ts +1 -0
  49. package/dist/components/TablePagination/TablePagination.d.ts +1 -0
  50. package/dist/components/TablePagination/TablePaginationActions.d.ts +2 -1
  51. package/dist/components/Tabs/Tabs.stories.d.ts +1 -0
  52. package/dist/components/TextField/TextField.stories.d.ts +1 -0
  53. package/dist/components/Textarea/Textarea.stories.d.ts +1 -0
  54. package/dist/components/Toast/Toast.stories.d.ts +1 -0
  55. package/dist/components/ToggleGroup/Toggle.d.ts +1 -0
  56. package/dist/components/ToggleGroup/ToggleGroup.d.ts +1 -0
  57. package/dist/components/Tooltip/Tooltip.stories.d.ts +1 -0
  58. package/dist/components/TopNavigation/OpenSideNavButton/OpenSideNavButton.d.ts +1 -0
  59. package/dist/components/TopNavigation/TopNavigation.stories.d.ts +1 -0
  60. package/dist/components/VisuallyHidden/VisuallyHidden.stories.d.ts +1 -0
  61. package/dist/index.js +1 -1
  62. package/dist/index.js.map +1 -1
  63. package/dist/utils/toolset/highlightMatch.d.ts +1 -0
  64. package/package.json +189 -184
  65. package/src/components/Dropdown/Dropdown.stories.tsx +1 -2
  66. package/src/components/IconFactory/IconFactory.tsx +2 -2
  67. package/src/components/Select/Select.constants.ts +2 -2
  68. package/src/components/Steps/useSteps.ts +1 -1
  69. package/src/components/Tag/Tag.tsx +1 -1
  70. 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?: "on" | "off" | undefined;
94
+ unselectable?: "off" | "on" | undefined;
96
95
  inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
97
96
  is?: string | undefined;
98
- 'aria-activedescendant'?: string | undefined;
99
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
100
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
101
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
102
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
103
- 'aria-colcount'?: number | undefined;
104
- 'aria-colindex'?: number | undefined;
105
- 'aria-colspan'?: number | undefined;
106
- 'aria-controls'?: string | undefined;
107
- 'aria-current'?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
108
- 'aria-describedby'?: string | undefined;
109
- 'aria-details'?: string | undefined;
110
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
111
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
112
- 'aria-errormessage'?: string | undefined;
113
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
114
- 'aria-flowto'?: string | undefined;
115
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
116
- 'aria-haspopup'?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
117
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
118
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
119
- 'aria-keyshortcuts'?: string | undefined;
120
- 'aria-label'?: string | undefined;
121
- 'aria-labelledby'?: string | undefined;
122
- 'aria-level'?: number | undefined;
123
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
124
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
125
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
126
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
127
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
128
- 'aria-owns'?: string | undefined;
129
- 'aria-placeholder'?: string | undefined;
130
- 'aria-posinset'?: number | undefined;
131
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
132
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
133
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
134
- 'aria-required'?: (boolean | "true" | "false") | undefined;
135
- 'aria-roledescription'?: string | undefined;
136
- 'aria-rowcount'?: number | undefined;
137
- 'aria-rowindex'?: number | undefined;
138
- 'aria-rowspan'?: number | undefined;
139
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
140
- 'aria-setsize'?: number | undefined;
141
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
142
- 'aria-valuemax'?: number | undefined;
143
- 'aria-valuemin'?: number | undefined;
144
- 'aria-valuenow'?: number | undefined;
145
- 'aria-valuetext'?: string | undefined;
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?: "on" | "off" | undefined;
393
+ unselectable?: "off" | "on" | undefined;
396
394
  inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
397
395
  is?: string | undefined;
398
- 'aria-activedescendant'?: string | undefined;
399
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
400
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
401
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
402
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
403
- 'aria-colcount'?: number | undefined;
404
- 'aria-colindex'?: number | undefined;
405
- 'aria-colspan'?: number | undefined;
406
- 'aria-controls'?: string | undefined;
407
- 'aria-current'?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
408
- 'aria-describedby'?: string | undefined;
409
- 'aria-details'?: string | undefined;
410
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
411
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
412
- 'aria-errormessage'?: string | undefined;
413
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
414
- 'aria-flowto'?: string | undefined;
415
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
416
- 'aria-haspopup'?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
417
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
418
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
419
- 'aria-keyshortcuts'?: string | undefined;
420
- 'aria-label'?: string | undefined;
421
- 'aria-labelledby'?: string | undefined;
422
- 'aria-level'?: number | undefined;
423
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
424
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
425
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
426
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
427
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
428
- 'aria-owns'?: string | undefined;
429
- 'aria-placeholder'?: string | undefined;
430
- 'aria-posinset'?: number | undefined;
431
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
432
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
433
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
434
- 'aria-required'?: (boolean | "true" | "false") | undefined;
435
- 'aria-roledescription'?: string | undefined;
436
- 'aria-rowcount'?: number | undefined;
437
- 'aria-rowindex'?: number | undefined;
438
- 'aria-rowspan'?: number | undefined;
439
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
440
- 'aria-setsize'?: number | undefined;
441
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
442
- 'aria-valuemax'?: number | undefined;
443
- 'aria-valuemin'?: number | undefined;
444
- 'aria-valuenow'?: number | undefined;
445
- 'aria-valuetext'?: string | undefined;
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?: "on" | "off" | undefined;
665
+ unselectable?: "off" | "on" | undefined;
667
666
  inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
668
667
  is?: string | undefined;
669
- 'aria-activedescendant'?: string | undefined;
670
- 'aria-atomic'?: (boolean | "true" | "false") | undefined;
671
- 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
672
- 'aria-busy'?: (boolean | "true" | "false") | undefined;
673
- 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
674
- 'aria-colcount'?: number | undefined;
675
- 'aria-colindex'?: number | undefined;
676
- 'aria-colspan'?: number | undefined;
677
- 'aria-controls'?: string | undefined;
678
- 'aria-current'?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time" | undefined;
679
- 'aria-describedby'?: string | undefined;
680
- 'aria-details'?: string | undefined;
681
- 'aria-disabled'?: (boolean | "true" | "false") | undefined;
682
- 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
683
- 'aria-errormessage'?: string | undefined;
684
- 'aria-expanded'?: (boolean | "true" | "false") | undefined;
685
- 'aria-flowto'?: string | undefined;
686
- 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
687
- 'aria-haspopup'?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
688
- 'aria-hidden'?: (boolean | "true" | "false") | undefined;
689
- 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
690
- 'aria-keyshortcuts'?: string | undefined;
691
- 'aria-label'?: string | undefined;
692
- 'aria-labelledby'?: string | undefined;
693
- 'aria-level'?: number | undefined;
694
- 'aria-live'?: "off" | "assertive" | "polite" | undefined;
695
- 'aria-modal'?: (boolean | "true" | "false") | undefined;
696
- 'aria-multiline'?: (boolean | "true" | "false") | undefined;
697
- 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
698
- 'aria-orientation'?: "horizontal" | "vertical" | undefined;
699
- 'aria-owns'?: string | undefined;
700
- 'aria-placeholder'?: string | undefined;
701
- 'aria-posinset'?: number | undefined;
702
- 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
703
- 'aria-readonly'?: (boolean | "true" | "false") | undefined;
704
- 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
705
- 'aria-required'?: (boolean | "true" | "false") | undefined;
706
- 'aria-roledescription'?: string | undefined;
707
- 'aria-rowcount'?: number | undefined;
708
- 'aria-rowindex'?: number | undefined;
709
- 'aria-rowspan'?: number | undefined;
710
- 'aria-selected'?: (boolean | "true" | "false") | undefined;
711
- 'aria-setsize'?: number | undefined;
712
- 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
713
- 'aria-valuemax'?: number | undefined;
714
- 'aria-valuemin'?: number | undefined;
715
- 'aria-valuenow'?: number | undefined;
716
- 'aria-valuetext'?: string | undefined;
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;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DialogProps } from './Dialog';
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 { DropZoneProps } from './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 { DropZoneProps } from '../types';
2
3
  declare const DropZone: ({ className, hint, multiple, accept, disabled, error, renderCustomContent, ...props }: DropZoneProps) => JSX.Element;
3
4
  export default DropZone;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { FileItemProps } from '../types';
2
3
  declare const FileItem: (props: FileItemProps) => JSX.Element;
3
4
  export default FileItem;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { FileListProps } from '../types';
2
3
  declare const FileList: ({ disabled, ...props }: FileListProps) => JSX.Element | null;
3
4
  export default FileList;
@@ -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<(props: import("../IconFactory").IconProps<import("../IconFactory").IconMapping>) => JSX.Element, any, {}, never>;
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 { ErrorMessageProps } from './ErrorMessage';
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: (props: GenericIconProps<import("../IconFactory").IconMapping>) => JSX.Element;
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): (props: IconProps<typeof map>) => JSX.Element;
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 { LabelProps } from './Label';
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 { BoxProps } from './Box';
2
3
  import type { SidebarProps } from './Sidebar';
3
4
  import type { StackProps } from './Stack';
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { LinkProps } from './Link';
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
  export interface LoadingDotsProps {
2
3
  size?: number;
3
4
  variant?: 'dark' | 'light';
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface SpinnerProps {
2
3
  title?: string;
3
4
  size: number;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { ModalProps } from './Modal';
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 { PaginationProps } from './Pagination.types';
2
3
  declare function Pagination(props: PaginationProps): JSX.Element;
3
4
  export default Pagination;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { PaginationItemProps } from './Pagination.types';
2
3
  declare function PaginationItem(props: PaginationItemProps): JSX.Element;
3
4
  export default PaginationItem;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { PopoverFloatingProps, PopoverProps, PopoverReferenceProps, UsePopoverReturn } from './Popover.types';
2
3
  export declare function usePopover(): UsePopoverReturn;
3
4
  declare function Popover(props: PopoverProps): JSX.Element;
@@ -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 { RadioProps } from './Radio';
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 { SectionProps } from './Section';
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 { SelectCreatableOptionProps } from './Select.types';
2
3
  declare function SelectCreatableOption({ children, ...rest }: SelectCreatableOptionProps): JSX.Element;
3
4
  export default SelectCreatableOption;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { SelectEmptyProps } from './Select.types';
2
3
  declare function SelectEmpty({ children, ...others }: SelectEmptyProps): JSX.Element;
3
4
  export default SelectEmpty;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { SelectOptionProps } from './Select.types';
2
3
  declare function SelectOption({ children, value, leading, trailing, ...rest }: SelectOptionProps): JSX.Element;
3
4
  export default SelectOption;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface SeparatorProps {
2
3
  className?: string;
3
4
  }
@@ -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;