@dpa-id-components/dpa-shared-components 12.2.4 → 12.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/ai-VuCGPNLN.mjs +15 -0
  2. package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +6 -6
  3. package/dist/components/DpaMediaItem/DpaMediaItem.vue.d.ts +3 -2
  4. package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +3 -3
  5. package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +3 -3
  6. package/dist/components/UiBadge/UiBadge.stories.d.ts +10 -11
  7. package/dist/components/UiBadge/UiBadge.vue.d.ts +4 -4
  8. package/dist/components/UiButton/UiButton.stories.d.ts +7 -8
  9. package/dist/components/UiButton/UiButton.vue.d.ts +3 -3
  10. package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +2 -1
  11. package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +81 -82
  12. package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +31 -31
  13. package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +2 -2
  14. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +2 -2
  15. package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +28 -29
  16. package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +5 -5
  17. package/dist/components/UiIcon/UiIcon.stories.d.ts +4 -5
  18. package/dist/components/UiIcon/UiIcon.vue.d.ts +8 -4
  19. package/dist/components/UiIcon/iconNames.d.ts +1 -1
  20. package/dist/components/UiIconButton/UiIconButton.stories.d.ts +10 -11
  21. package/dist/components/UiIconButton/UiIconButton.vue.d.ts +2 -2
  22. package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +32 -33
  23. package/dist/components/UiInfoContent/UiInfoContent.vue.d.ts +3 -3
  24. package/dist/components/UiInput/UiInput.stories.d.ts +12 -12
  25. package/dist/components/UiInput/UiInput.vue.d.ts +1 -1
  26. package/dist/components/UiList/UiList.stories.d.ts +6 -6
  27. package/dist/components/UiListItem/UiListItem.stories.d.ts +26 -27
  28. package/dist/components/UiListItem/UiListItem.vue.d.ts +3 -3
  29. package/dist/components/UiMenu/UiMenu.stories.d.ts +4 -4
  30. package/dist/components/UiMenu/UiMenu.vue.d.ts +3 -2
  31. package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +12 -12
  32. package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +16 -0
  33. package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -0
  34. package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +25 -26
  35. package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +3 -3
  36. package/dist/components/UiTextButton/UiTextButton.stories.d.ts +14 -14
  37. package/dist/components/UiTextButton/UiTextButton.vue.d.ts +5 -6
  38. package/dist/components/index.d.ts +2 -2
  39. package/dist/dpa-shared-components.mjs +3780 -3886
  40. package/dist/dpa-shared-components.umd.js +7 -7
  41. package/dist/graphic-C1wh-TxG.mjs +15 -0
  42. package/dist/label-ZzjOPjln.mjs +19 -0
  43. package/dist/label-filled-j_-BCTAD.mjs +19 -0
  44. package/dist/lock-Dcj4HaSk.mjs +19 -0
  45. package/dist/lock-filled-BnsIWWZt.mjs +19 -0
  46. package/dist/story-cXfkRTNd.mjs +15 -0
  47. package/dist/style.css +1 -1
  48. package/dist/thumbs-down-CdwHyt1J.mjs +19 -0
  49. package/package.json +4 -13
  50. package/dist/graphic-BmqiWT4u.mjs +0 -20
  51. package/dist/lock-EkeSCdjL.mjs +0 -19
  52. /package/dist/components/UiSimpleInput/{UiSimpleInput.d.ts → UiSimpleInput.spec.d.ts} +0 -0
@@ -1,5 +1,4 @@
1
1
  import { StoryObj } from '@storybook/vue3';
2
- import { iconNames } from '../UiIcon/iconNames';
3
2
  declare const meta: {
4
3
  title: string;
5
4
  component: {
@@ -34,7 +33,7 @@ declare const meta: {
34
33
  monthPicker?: boolean;
35
34
  customFormatCallback?: any;
36
35
  inputLabel?: string;
37
- iconLeft?: (typeof iconNames)[number] | null;
36
+ iconLeft?: import('..').UiIconName | null;
38
37
  utc?: boolean;
39
38
  teleport?: boolean | string;
40
39
  closeOnScroll?: boolean;
@@ -54,7 +53,7 @@ declare const meta: {
54
53
  }, import('vue').PublicProps, {
55
54
  cancel: string;
56
55
  submit: string;
57
- iconLeft: (typeof iconNames)[number] | null;
56
+ iconLeft: import('..').UiIconName | null;
58
57
  definesRange: boolean;
59
58
  multiCalendars: boolean;
60
59
  enableTimePicker: boolean;
@@ -145,25 +144,22 @@ declare const meta: {
145
144
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
146
145
  } | undefined;
147
146
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
148
- readonly concat?: string[] | undefined;
149
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
150
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
151
- readonly slice?: string[] | undefined;
152
147
  readonly length?: number | undefined;
153
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
154
- readonly at?: ((index: number) => string | undefined) | undefined;
155
- readonly toLocaleString?: string | undefined;
156
148
  readonly pop?: string | undefined;
157
149
  readonly push?: number | undefined;
150
+ readonly concat?: string[] | undefined;
158
151
  readonly join?: string | undefined;
159
152
  readonly reverse?: string[] | undefined;
160
153
  readonly shift?: string | undefined;
154
+ readonly slice?: string[] | undefined;
161
155
  readonly sort?: string[] | undefined;
162
156
  readonly splice?: {
163
157
  (start: number, deleteCount?: number): string[];
164
158
  (start: number, deleteCount: number, ...items: string[]): string[];
165
159
  } | undefined;
166
160
  readonly unshift?: number | undefined;
161
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
162
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
167
163
  readonly every?: {
168
164
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
169
165
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -190,8 +186,10 @@ declare const meta: {
190
186
  readonly entries?: ArrayIterator<[number, string]> | undefined;
191
187
  readonly keys?: ArrayIterator<number> | undefined;
192
188
  readonly values?: ArrayIterator<string> | undefined;
189
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
193
190
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
194
191
  readonly flat?: unknown[] | undefined;
192
+ readonly at?: ((index: number) => string | undefined) | undefined;
195
193
  readonly findLast?: {
196
194
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
197
195
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -205,6 +203,7 @@ declare const meta: {
205
203
  } | undefined;
206
204
  readonly with?: ((index: number, value: string) => string[]) | undefined;
207
205
  readonly toString?: string | undefined;
206
+ readonly toLocaleString?: string | undefined;
208
207
  onFocus?: ((...args: any[]) => any) | undefined;
209
208
  onBlur?: ((...args: any[]) => any) | undefined;
210
209
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -678,25 +677,22 @@ declare const meta: {
678
677
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
679
678
  } | undefined;
680
679
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
681
- readonly concat?: string[] | undefined;
682
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
683
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
684
- readonly slice?: string[] | undefined;
685
680
  readonly length?: number | undefined;
686
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
687
- readonly at?: ((index: number) => string | undefined) | undefined;
688
- readonly toLocaleString?: string | undefined;
689
681
  readonly pop?: string | undefined;
690
682
  readonly push?: number | undefined;
683
+ readonly concat?: string[] | undefined;
691
684
  readonly join?: string | undefined;
692
685
  readonly reverse?: string[] | undefined;
693
686
  readonly shift?: string | undefined;
687
+ readonly slice?: string[] | undefined;
694
688
  readonly sort?: string[] | undefined;
695
689
  readonly splice?: {
696
690
  (start: number, deleteCount?: number): string[];
697
691
  (start: number, deleteCount: number, ...items: string[]): string[];
698
692
  } | undefined;
699
693
  readonly unshift?: number | undefined;
694
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
695
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
700
696
  readonly every?: {
701
697
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
702
698
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -723,8 +719,10 @@ declare const meta: {
723
719
  readonly entries?: ArrayIterator<[number, string]> | undefined;
724
720
  readonly keys?: ArrayIterator<number> | undefined;
725
721
  readonly values?: ArrayIterator<string> | undefined;
722
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
726
723
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
727
724
  readonly flat?: unknown[] | undefined;
725
+ readonly at?: ((index: number) => string | undefined) | undefined;
728
726
  readonly findLast?: {
729
727
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
730
728
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -738,6 +736,7 @@ declare const meta: {
738
736
  } | undefined;
739
737
  readonly with?: ((index: number, value: string) => string[]) | undefined;
740
738
  readonly toString?: string | undefined;
739
+ readonly toLocaleString?: string | undefined;
741
740
  onFocus?: ((...args: any[]) => any) | undefined;
742
741
  onBlur?: ((...args: any[]) => any) | undefined;
743
742
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -1191,7 +1190,7 @@ declare const meta: {
1191
1190
  monthPicker?: boolean;
1192
1191
  customFormatCallback?: any;
1193
1192
  inputLabel?: string;
1194
- iconLeft?: (typeof iconNames)[number] | null;
1193
+ iconLeft?: import('..').UiIconName | null;
1195
1194
  utc?: boolean;
1196
1195
  teleport?: boolean | string;
1197
1196
  closeOnScroll?: boolean;
@@ -1205,7 +1204,7 @@ declare const meta: {
1205
1204
  }>, {}, {}, {}, {}, {
1206
1205
  cancel: string;
1207
1206
  submit: string;
1208
- iconLeft: (typeof iconNames)[number] | null;
1207
+ iconLeft: import('..').UiIconName | null;
1209
1208
  definesRange: boolean;
1210
1209
  multiCalendars: boolean;
1211
1210
  enableTimePicker: boolean;
@@ -1273,7 +1272,7 @@ declare const meta: {
1273
1272
  monthPicker?: boolean;
1274
1273
  customFormatCallback?: any;
1275
1274
  inputLabel?: string;
1276
- iconLeft?: (typeof iconNames)[number] | null;
1275
+ iconLeft?: import('..').UiIconName | null;
1277
1276
  utc?: boolean;
1278
1277
  teleport?: boolean | string;
1279
1278
  closeOnScroll?: boolean;
@@ -1293,7 +1292,7 @@ declare const meta: {
1293
1292
  }, string, {
1294
1293
  cancel: string;
1295
1294
  submit: string;
1296
- iconLeft: (typeof iconNames)[number] | null;
1295
+ iconLeft: import('..').UiIconName | null;
1297
1296
  definesRange: boolean;
1298
1297
  multiCalendars: boolean;
1299
1298
  enableTimePicker: boolean;
@@ -1409,7 +1408,7 @@ declare const meta: {
1409
1408
  };
1410
1409
  iconLeft: {
1411
1410
  control: "select";
1412
- options: string[];
1411
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
1413
1412
  };
1414
1413
  };
1415
1414
  args: {
@@ -1470,7 +1469,7 @@ declare const meta: {
1470
1469
  monthPicker?: boolean;
1471
1470
  customFormatCallback?: any;
1472
1471
  inputLabel?: string;
1473
- iconLeft?: (typeof iconNames)[number] | null;
1472
+ iconLeft?: import('..').UiIconName | null;
1474
1473
  utc?: boolean;
1475
1474
  teleport?: boolean | string;
1476
1475
  closeOnScroll?: boolean;
@@ -1490,7 +1489,7 @@ declare const meta: {
1490
1489
  }, import('vue').PublicProps, {
1491
1490
  cancel: string;
1492
1491
  submit: string;
1493
- iconLeft: (typeof iconNames)[number] | null;
1492
+ iconLeft: import('..').UiIconName | null;
1494
1493
  definesRange: boolean;
1495
1494
  multiCalendars: boolean;
1496
1495
  enableTimePicker: boolean;
@@ -1581,25 +1580,22 @@ declare const meta: {
1581
1580
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
1582
1581
  } | undefined;
1583
1582
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
1584
- readonly concat?: string[] | undefined;
1585
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
1586
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
1587
- readonly slice?: string[] | undefined;
1588
1583
  readonly length?: number | undefined;
1589
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
1590
- readonly at?: ((index: number) => string | undefined) | undefined;
1591
- readonly toLocaleString?: string | undefined;
1592
1584
  readonly pop?: string | undefined;
1593
1585
  readonly push?: number | undefined;
1586
+ readonly concat?: string[] | undefined;
1594
1587
  readonly join?: string | undefined;
1595
1588
  readonly reverse?: string[] | undefined;
1596
1589
  readonly shift?: string | undefined;
1590
+ readonly slice?: string[] | undefined;
1597
1591
  readonly sort?: string[] | undefined;
1598
1592
  readonly splice?: {
1599
1593
  (start: number, deleteCount?: number): string[];
1600
1594
  (start: number, deleteCount: number, ...items: string[]): string[];
1601
1595
  } | undefined;
1602
1596
  readonly unshift?: number | undefined;
1597
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
1598
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
1603
1599
  readonly every?: {
1604
1600
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
1605
1601
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -1626,8 +1622,10 @@ declare const meta: {
1626
1622
  readonly entries?: ArrayIterator<[number, string]> | undefined;
1627
1623
  readonly keys?: ArrayIterator<number> | undefined;
1628
1624
  readonly values?: ArrayIterator<string> | undefined;
1625
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
1629
1626
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
1630
1627
  readonly flat?: unknown[] | undefined;
1628
+ readonly at?: ((index: number) => string | undefined) | undefined;
1631
1629
  readonly findLast?: {
1632
1630
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
1633
1631
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -1641,6 +1639,7 @@ declare const meta: {
1641
1639
  } | undefined;
1642
1640
  readonly with?: ((index: number, value: string) => string[]) | undefined;
1643
1641
  readonly toString?: string | undefined;
1642
+ readonly toLocaleString?: string | undefined;
1644
1643
  onFocus?: ((...args: any[]) => any) | undefined;
1645
1644
  onBlur?: ((...args: any[]) => any) | undefined;
1646
1645
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -2114,25 +2113,22 @@ declare const meta: {
2114
2113
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
2115
2114
  } | undefined;
2116
2115
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
2117
- readonly concat?: string[] | undefined;
2118
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2119
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2120
- readonly slice?: string[] | undefined;
2121
2116
  readonly length?: number | undefined;
2122
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
2123
- readonly at?: ((index: number) => string | undefined) | undefined;
2124
- readonly toLocaleString?: string | undefined;
2125
2117
  readonly pop?: string | undefined;
2126
2118
  readonly push?: number | undefined;
2119
+ readonly concat?: string[] | undefined;
2127
2120
  readonly join?: string | undefined;
2128
2121
  readonly reverse?: string[] | undefined;
2129
2122
  readonly shift?: string | undefined;
2123
+ readonly slice?: string[] | undefined;
2130
2124
  readonly sort?: string[] | undefined;
2131
2125
  readonly splice?: {
2132
2126
  (start: number, deleteCount?: number): string[];
2133
2127
  (start: number, deleteCount: number, ...items: string[]): string[];
2134
2128
  } | undefined;
2135
2129
  readonly unshift?: number | undefined;
2130
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2131
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2136
2132
  readonly every?: {
2137
2133
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
2138
2134
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -2159,8 +2155,10 @@ declare const meta: {
2159
2155
  readonly entries?: ArrayIterator<[number, string]> | undefined;
2160
2156
  readonly keys?: ArrayIterator<number> | undefined;
2161
2157
  readonly values?: ArrayIterator<string> | undefined;
2158
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
2162
2159
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
2163
2160
  readonly flat?: unknown[] | undefined;
2161
+ readonly at?: ((index: number) => string | undefined) | undefined;
2164
2162
  readonly findLast?: {
2165
2163
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
2166
2164
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -2174,6 +2172,7 @@ declare const meta: {
2174
2172
  } | undefined;
2175
2173
  readonly with?: ((index: number, value: string) => string[]) | undefined;
2176
2174
  readonly toString?: string | undefined;
2175
+ readonly toLocaleString?: string | undefined;
2177
2176
  onFocus?: ((...args: any[]) => any) | undefined;
2178
2177
  onBlur?: ((...args: any[]) => any) | undefined;
2179
2178
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -2627,7 +2626,7 @@ declare const meta: {
2627
2626
  monthPicker?: boolean;
2628
2627
  customFormatCallback?: any;
2629
2628
  inputLabel?: string;
2630
- iconLeft?: (typeof iconNames)[number] | null;
2629
+ iconLeft?: import('..').UiIconName | null;
2631
2630
  utc?: boolean;
2632
2631
  teleport?: boolean | string;
2633
2632
  closeOnScroll?: boolean;
@@ -2641,7 +2640,7 @@ declare const meta: {
2641
2640
  }>, {}, {}, {}, {}, {
2642
2641
  cancel: string;
2643
2642
  submit: string;
2644
- iconLeft: (typeof iconNames)[number] | null;
2643
+ iconLeft: import('..').UiIconName | null;
2645
2644
  definesRange: boolean;
2646
2645
  multiCalendars: boolean;
2647
2646
  enableTimePicker: boolean;
@@ -2709,7 +2708,7 @@ declare const meta: {
2709
2708
  monthPicker?: boolean;
2710
2709
  customFormatCallback?: any;
2711
2710
  inputLabel?: string;
2712
- iconLeft?: (typeof iconNames)[number] | null;
2711
+ iconLeft?: import('..').UiIconName | null;
2713
2712
  utc?: boolean;
2714
2713
  teleport?: boolean | string;
2715
2714
  closeOnScroll?: boolean;
@@ -2729,7 +2728,7 @@ declare const meta: {
2729
2728
  }, string, {
2730
2729
  cancel: string;
2731
2730
  submit: string;
2732
- iconLeft: (typeof iconNames)[number] | null;
2731
+ iconLeft: import('..').UiIconName | null;
2733
2732
  definesRange: boolean;
2734
2733
  multiCalendars: boolean;
2735
2734
  enableTimePicker: boolean;
@@ -2800,7 +2799,7 @@ declare const meta: {
2800
2799
  monthPicker?: boolean;
2801
2800
  customFormatCallback?: any;
2802
2801
  inputLabel?: string;
2803
- iconLeft?: (typeof iconNames)[number] | null;
2802
+ iconLeft?: import('..').UiIconName | null;
2804
2803
  utc?: boolean;
2805
2804
  teleport?: boolean | string;
2806
2805
  closeOnScroll?: boolean;
@@ -2820,7 +2819,7 @@ declare const meta: {
2820
2819
  }, import('vue').PublicProps, {
2821
2820
  cancel: string;
2822
2821
  submit: string;
2823
- iconLeft: (typeof iconNames)[number] | null;
2822
+ iconLeft: import('..').UiIconName | null;
2824
2823
  definesRange: boolean;
2825
2824
  multiCalendars: boolean;
2826
2825
  enableTimePicker: boolean;
@@ -2911,25 +2910,22 @@ declare const meta: {
2911
2910
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
2912
2911
  } | undefined;
2913
2912
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
2914
- readonly concat?: string[] | undefined;
2915
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2916
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2917
- readonly slice?: string[] | undefined;
2918
2913
  readonly length?: number | undefined;
2919
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
2920
- readonly at?: ((index: number) => string | undefined) | undefined;
2921
- readonly toLocaleString?: string | undefined;
2922
2914
  readonly pop?: string | undefined;
2923
2915
  readonly push?: number | undefined;
2916
+ readonly concat?: string[] | undefined;
2924
2917
  readonly join?: string | undefined;
2925
2918
  readonly reverse?: string[] | undefined;
2926
2919
  readonly shift?: string | undefined;
2920
+ readonly slice?: string[] | undefined;
2927
2921
  readonly sort?: string[] | undefined;
2928
2922
  readonly splice?: {
2929
2923
  (start: number, deleteCount?: number): string[];
2930
2924
  (start: number, deleteCount: number, ...items: string[]): string[];
2931
2925
  } | undefined;
2932
2926
  readonly unshift?: number | undefined;
2927
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2928
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
2933
2929
  readonly every?: {
2934
2930
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
2935
2931
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -2956,8 +2952,10 @@ declare const meta: {
2956
2952
  readonly entries?: ArrayIterator<[number, string]> | undefined;
2957
2953
  readonly keys?: ArrayIterator<number> | undefined;
2958
2954
  readonly values?: ArrayIterator<string> | undefined;
2955
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
2959
2956
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
2960
2957
  readonly flat?: unknown[] | undefined;
2958
+ readonly at?: ((index: number) => string | undefined) | undefined;
2961
2959
  readonly findLast?: {
2962
2960
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
2963
2961
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -2971,6 +2969,7 @@ declare const meta: {
2971
2969
  } | undefined;
2972
2970
  readonly with?: ((index: number, value: string) => string[]) | undefined;
2973
2971
  readonly toString?: string | undefined;
2972
+ readonly toLocaleString?: string | undefined;
2974
2973
  onFocus?: ((...args: any[]) => any) | undefined;
2975
2974
  onBlur?: ((...args: any[]) => any) | undefined;
2976
2975
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -3444,25 +3443,22 @@ declare const meta: {
3444
3443
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
3445
3444
  } | undefined;
3446
3445
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
3447
- readonly concat?: string[] | undefined;
3448
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
3449
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
3450
- readonly slice?: string[] | undefined;
3451
3446
  readonly length?: number | undefined;
3452
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
3453
- readonly at?: ((index: number) => string | undefined) | undefined;
3454
- readonly toLocaleString?: string | undefined;
3455
3447
  readonly pop?: string | undefined;
3456
3448
  readonly push?: number | undefined;
3449
+ readonly concat?: string[] | undefined;
3457
3450
  readonly join?: string | undefined;
3458
3451
  readonly reverse?: string[] | undefined;
3459
3452
  readonly shift?: string | undefined;
3453
+ readonly slice?: string[] | undefined;
3460
3454
  readonly sort?: string[] | undefined;
3461
3455
  readonly splice?: {
3462
3456
  (start: number, deleteCount?: number): string[];
3463
3457
  (start: number, deleteCount: number, ...items: string[]): string[];
3464
3458
  } | undefined;
3465
3459
  readonly unshift?: number | undefined;
3460
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
3461
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
3466
3462
  readonly every?: {
3467
3463
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
3468
3464
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -3489,8 +3485,10 @@ declare const meta: {
3489
3485
  readonly entries?: ArrayIterator<[number, string]> | undefined;
3490
3486
  readonly keys?: ArrayIterator<number> | undefined;
3491
3487
  readonly values?: ArrayIterator<string> | undefined;
3488
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
3492
3489
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
3493
3490
  readonly flat?: unknown[] | undefined;
3491
+ readonly at?: ((index: number) => string | undefined) | undefined;
3494
3492
  readonly findLast?: {
3495
3493
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
3496
3494
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -3504,6 +3502,7 @@ declare const meta: {
3504
3502
  } | undefined;
3505
3503
  readonly with?: ((index: number, value: string) => string[]) | undefined;
3506
3504
  readonly toString?: string | undefined;
3505
+ readonly toLocaleString?: string | undefined;
3507
3506
  onFocus?: ((...args: any[]) => any) | undefined;
3508
3507
  onBlur?: ((...args: any[]) => any) | undefined;
3509
3508
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -3957,7 +3956,7 @@ declare const meta: {
3957
3956
  monthPicker?: boolean;
3958
3957
  customFormatCallback?: any;
3959
3958
  inputLabel?: string;
3960
- iconLeft?: (typeof iconNames)[number] | null;
3959
+ iconLeft?: import('..').UiIconName | null;
3961
3960
  utc?: boolean;
3962
3961
  teleport?: boolean | string;
3963
3962
  closeOnScroll?: boolean;
@@ -3971,7 +3970,7 @@ declare const meta: {
3971
3970
  }>, {}, {}, {}, {}, {
3972
3971
  cancel: string;
3973
3972
  submit: string;
3974
- iconLeft: (typeof iconNames)[number] | null;
3973
+ iconLeft: import('..').UiIconName | null;
3975
3974
  definesRange: boolean;
3976
3975
  multiCalendars: boolean;
3977
3976
  enableTimePicker: boolean;
@@ -4039,7 +4038,7 @@ declare const meta: {
4039
4038
  monthPicker?: boolean;
4040
4039
  customFormatCallback?: any;
4041
4040
  inputLabel?: string;
4042
- iconLeft?: (typeof iconNames)[number] | null;
4041
+ iconLeft?: import('..').UiIconName | null;
4043
4042
  utc?: boolean;
4044
4043
  teleport?: boolean | string;
4045
4044
  closeOnScroll?: boolean;
@@ -4059,7 +4058,7 @@ declare const meta: {
4059
4058
  }, string, {
4060
4059
  cancel: string;
4061
4060
  submit: string;
4062
- iconLeft: (typeof iconNames)[number] | null;
4061
+ iconLeft: import('..').UiIconName | null;
4063
4062
  definesRange: boolean;
4064
4063
  multiCalendars: boolean;
4065
4064
  enableTimePicker: boolean;
@@ -4131,7 +4130,7 @@ declare const meta: {
4131
4130
  monthPicker?: boolean;
4132
4131
  customFormatCallback?: any;
4133
4132
  inputLabel?: string;
4134
- iconLeft?: (typeof iconNames)[number] | null;
4133
+ iconLeft?: import('..').UiIconName | null;
4135
4134
  utc?: boolean;
4136
4135
  teleport?: boolean | string;
4137
4136
  closeOnScroll?: boolean;
@@ -4151,7 +4150,7 @@ declare const meta: {
4151
4150
  }, import('vue').PublicProps, {
4152
4151
  cancel: string;
4153
4152
  submit: string;
4154
- iconLeft: (typeof iconNames)[number] | null;
4153
+ iconLeft: import('..').UiIconName | null;
4155
4154
  definesRange: boolean;
4156
4155
  multiCalendars: boolean;
4157
4156
  enableTimePicker: boolean;
@@ -4242,25 +4241,22 @@ declare const meta: {
4242
4241
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
4243
4242
  } | undefined;
4244
4243
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
4245
- readonly concat?: string[] | undefined;
4246
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4247
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4248
- readonly slice?: string[] | undefined;
4249
4244
  readonly length?: number | undefined;
4250
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
4251
- readonly at?: ((index: number) => string | undefined) | undefined;
4252
- readonly toLocaleString?: string | undefined;
4253
4245
  readonly pop?: string | undefined;
4254
4246
  readonly push?: number | undefined;
4247
+ readonly concat?: string[] | undefined;
4255
4248
  readonly join?: string | undefined;
4256
4249
  readonly reverse?: string[] | undefined;
4257
4250
  readonly shift?: string | undefined;
4251
+ readonly slice?: string[] | undefined;
4258
4252
  readonly sort?: string[] | undefined;
4259
4253
  readonly splice?: {
4260
4254
  (start: number, deleteCount?: number): string[];
4261
4255
  (start: number, deleteCount: number, ...items: string[]): string[];
4262
4256
  } | undefined;
4263
4257
  readonly unshift?: number | undefined;
4258
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4259
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4264
4260
  readonly every?: {
4265
4261
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
4266
4262
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -4287,8 +4283,10 @@ declare const meta: {
4287
4283
  readonly entries?: ArrayIterator<[number, string]> | undefined;
4288
4284
  readonly keys?: ArrayIterator<number> | undefined;
4289
4285
  readonly values?: ArrayIterator<string> | undefined;
4286
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
4290
4287
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
4291
4288
  readonly flat?: unknown[] | undefined;
4289
+ readonly at?: ((index: number) => string | undefined) | undefined;
4292
4290
  readonly findLast?: {
4293
4291
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
4294
4292
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -4302,6 +4300,7 @@ declare const meta: {
4302
4300
  } | undefined;
4303
4301
  readonly with?: ((index: number, value: string) => string[]) | undefined;
4304
4302
  readonly toString?: string | undefined;
4303
+ readonly toLocaleString?: string | undefined;
4305
4304
  onFocus?: ((...args: any[]) => any) | undefined;
4306
4305
  onBlur?: ((...args: any[]) => any) | undefined;
4307
4306
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -4775,25 +4774,22 @@ declare const meta: {
4775
4774
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
4776
4775
  } | undefined;
4777
4776
  readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
4778
- readonly concat?: string[] | undefined;
4779
- readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4780
- readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4781
- readonly slice?: string[] | undefined;
4782
4777
  readonly length?: number | undefined;
4783
- readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
4784
- readonly at?: ((index: number) => string | undefined) | undefined;
4785
- readonly toLocaleString?: string | undefined;
4786
4778
  readonly pop?: string | undefined;
4787
4779
  readonly push?: number | undefined;
4780
+ readonly concat?: string[] | undefined;
4788
4781
  readonly join?: string | undefined;
4789
4782
  readonly reverse?: string[] | undefined;
4790
4783
  readonly shift?: string | undefined;
4784
+ readonly slice?: string[] | undefined;
4791
4785
  readonly sort?: string[] | undefined;
4792
4786
  readonly splice?: {
4793
4787
  (start: number, deleteCount?: number): string[];
4794
4788
  (start: number, deleteCount: number, ...items: string[]): string[];
4795
4789
  } | undefined;
4796
4790
  readonly unshift?: number | undefined;
4791
+ readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4792
+ readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
4797
4793
  readonly every?: {
4798
4794
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
4799
4795
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
@@ -4820,8 +4816,10 @@ declare const meta: {
4820
4816
  readonly entries?: ArrayIterator<[number, string]> | undefined;
4821
4817
  readonly keys?: ArrayIterator<number> | undefined;
4822
4818
  readonly values?: ArrayIterator<string> | undefined;
4819
+ readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
4823
4820
  readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
4824
4821
  readonly flat?: unknown[] | undefined;
4822
+ readonly at?: ((index: number) => string | undefined) | undefined;
4825
4823
  readonly findLast?: {
4826
4824
  <S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
4827
4825
  (predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
@@ -4835,6 +4833,7 @@ declare const meta: {
4835
4833
  } | undefined;
4836
4834
  readonly with?: ((index: number, value: string) => string[]) | undefined;
4837
4835
  readonly toString?: string | undefined;
4836
+ readonly toLocaleString?: string | undefined;
4838
4837
  onFocus?: ((...args: any[]) => any) | undefined;
4839
4838
  onBlur?: ((...args: any[]) => any) | undefined;
4840
4839
  onOpen?: ((...args: any[]) => any) | undefined;
@@ -5288,7 +5287,7 @@ declare const meta: {
5288
5287
  monthPicker?: boolean;
5289
5288
  customFormatCallback?: any;
5290
5289
  inputLabel?: string;
5291
- iconLeft?: (typeof iconNames)[number] | null;
5290
+ iconLeft?: import('..').UiIconName | null;
5292
5291
  utc?: boolean;
5293
5292
  teleport?: boolean | string;
5294
5293
  closeOnScroll?: boolean;
@@ -5302,7 +5301,7 @@ declare const meta: {
5302
5301
  }>, {}, {}, {}, {}, {
5303
5302
  cancel: string;
5304
5303
  submit: string;
5305
- iconLeft: (typeof iconNames)[number] | null;
5304
+ iconLeft: import('..').UiIconName | null;
5306
5305
  definesRange: boolean;
5307
5306
  multiCalendars: boolean;
5308
5307
  enableTimePicker: boolean;
@@ -5370,7 +5369,7 @@ declare const meta: {
5370
5369
  monthPicker?: boolean;
5371
5370
  customFormatCallback?: any;
5372
5371
  inputLabel?: string;
5373
- iconLeft?: (typeof iconNames)[number] | null;
5372
+ iconLeft?: import('..').UiIconName | null;
5374
5373
  utc?: boolean;
5375
5374
  teleport?: boolean | string;
5376
5375
  closeOnScroll?: boolean;
@@ -5390,7 +5389,7 @@ declare const meta: {
5390
5389
  }, string, {
5391
5390
  cancel: string;
5392
5391
  submit: string;
5393
- iconLeft: (typeof iconNames)[number] | null;
5392
+ iconLeft: import('..').UiIconName | null;
5394
5393
  definesRange: boolean;
5395
5394
  multiCalendars: boolean;
5396
5395
  enableTimePicker: boolean;