dap-design-system 0.57.2 → 0.57.4

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.
@@ -217,13 +217,6 @@ export interface DapDSAccordionEvents {
217
217
  onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
218
218
  }
219
219
 
220
- export interface DapDSAvatarEvents {
221
- /** Fired when the image loads successfully. */
222
- onDdsLoad?: (event: CustomEvent) => void
223
- /** Fired when the image fails to load. */
224
- onDdsError?: (event: CustomEvent) => void
225
- }
226
-
227
220
  export interface DapDSAvatarGroupEvents {
228
221
  /** Fired when the overflow indicator is clicked. */
229
222
  onDdsOverflowClick?: (event: CustomEvent) => void
@@ -234,6 +227,13 @@ export interface DapDSBannerEvents {
234
227
  onDdsClose?: (event: CustomEvent) => void
235
228
  }
236
229
 
230
+ export interface DapDSAvatarEvents {
231
+ /** Fired when the image loads successfully. */
232
+ onDdsLoad?: (event: CustomEvent) => void
233
+ /** Fired when the image fails to load. */
234
+ onDdsError?: (event: CustomEvent) => void
235
+ }
236
+
237
237
  export interface DapDSButtonEvents {
238
238
  /** Emitted when the loading timeout is reached */
239
239
  onDdsLoadingTimeout?: (event: CustomEvent) => void
@@ -666,15 +666,8 @@ export interface DapDSAccordionSlots {
666
666
  'icon-closed'?: () => any
667
667
  }
668
668
 
669
- export interface DapDSAvatarSlots {
670
- /** The icon to display when variant is 'icon'. */
671
- 'icon'?: () => any
672
- /** Custom fallback content when image fails to load. */
673
- 'fallback'?: () => any
674
- }
675
-
676
- export interface DapDSAccordionGroupSlots {
677
- /** The content of the accordion group. */
669
+ export interface DapDSAvatarGroupSlots {
670
+ /** The avatars to display in the group. */
678
671
  default?: () => any
679
672
  }
680
673
 
@@ -685,8 +678,8 @@ export interface DapDSBadgeSlots {
685
678
  'icon'?: () => any
686
679
  }
687
680
 
688
- export interface DapDSAvatarGroupSlots {
689
- /** The avatars to display in the group. */
681
+ export interface DapDSAccordionGroupSlots {
682
+ /** The content of the accordion group. */
690
683
  default?: () => any
691
684
  }
692
685
 
@@ -699,6 +692,13 @@ export interface DapDSBannerSlots {
699
692
  'icon'?: () => any
700
693
  }
701
694
 
695
+ export interface DapDSAvatarSlots {
696
+ /** The icon to display when variant is 'icon'. */
697
+ 'icon'?: () => any
698
+ /** Custom fallback content when image fails to load. */
699
+ 'fallback'?: () => any
700
+ }
701
+
702
702
  export interface DapDSBreadcrumbSlots {
703
703
  /** The content of the breadcrumb. */
704
704
  default?: () => any
@@ -1068,6 +1068,11 @@ export interface DapDSTableSlots {
1068
1068
  default?: () => any
1069
1069
  }
1070
1070
 
1071
+ export interface DapDSTextareaSlots {
1072
+ /** The custom icon of the feedback. */
1073
+ 'feedback-icon'?: () => any
1074
+ }
1075
+
1071
1076
  export interface DapDSTimelineItemSlots {
1072
1077
  /** The default slot for the item content. */
1073
1078
  default?: () => any
@@ -1078,11 +1083,6 @@ export interface DapDSTimelineSlots {
1078
1083
  default?: () => any
1079
1084
  }
1080
1085
 
1081
- export interface DapDSTextareaSlots {
1082
- /** The custom icon of the feedback. */
1083
- 'feedback-icon'?: () => any
1084
- }
1085
-
1086
1086
  export interface DapDSToggleButtonSlots {
1087
1087
  /** The content of the toggle button. */
1088
1088
  default?: () => any
@@ -1148,33 +1148,6 @@ export type DapDSAccordionProps = {
1148
1148
  loading?: DapDSAccordion["loading"]
1149
1149
  }
1150
1150
 
1151
- export type DapDSAvatarProps = {
1152
- /** The shape of the avatar */
1153
- shape?: DapDSAvatar["shape"]
1154
- /** The variant type of the avatar */
1155
- variant?: DapDSAvatar["variant"]
1156
- /** The source of the avatar image */
1157
- src?: DapDSAvatar["src"]
1158
- /** The alt text of the avatar */
1159
- alt?: DapDSAvatar["alt"]
1160
- /** The initials to display when variant is 'initials' */
1161
- initials?: DapDSAvatar["initials"]
1162
- /** Accessible label for the avatar */
1163
- label?: DapDSAvatar["label"]
1164
- /** Loading state indicator */
1165
- loading?: DapDSAvatar["loading"]
1166
- /** Whether the avatar is interactive (clickable) */
1167
- interactive?: DapDSAvatar["interactive"]
1168
- /** The width of the avatar. This will override the size */
1169
- width?: DapDSAvatar["width"]
1170
- /** The height of the avatar. This will override the size */
1171
- height?: DapDSAvatar["height"]
1172
- /** The size of the avatar. Default is `md`. */
1173
- size?: DapDSAvatar["size"]
1174
- /** Responsive size map (e.g. "md:lg"). */
1175
- sizeMap?: DapDSAvatar["sizeMap"]
1176
- }
1177
-
1178
1151
  export type DapDSAnchorHeadingProps = {
1179
1152
  /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1180
1153
  variant?: DapDSAnchorHeading["variant"]
@@ -1186,26 +1159,6 @@ export type DapDSAnchorHeadingProps = {
1186
1159
  anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1187
1160
  }
1188
1161
 
1189
- export type DapDSAccordionGroupProps = {
1190
- /** Whether to close other accordions when one is opened. */
1191
- autoClose?: DapDSAccordionGroup["autoClose"]
1192
- /** The variant of the accordion */
1193
- variant?: DapDSAccordionGroup["variant"]
1194
- }
1195
-
1196
- export type DapDSBadgeProps = {
1197
- /** The type of the badge */
1198
- type?: DapDSBadge["type"]
1199
- /** The icon of the badge, this is a name of a built in icon */
1200
- icon?: DapDSBadge["icon"]
1201
- /** Whether the badge represents dynamic content that should announce changes */
1202
- live?: DapDSBadge["live"]
1203
- /** The size of the badge. Default is `sm`. */
1204
- size?: DapDSBadge["size"]
1205
- /** Responsive size map (e.g. "md:lg"). */
1206
- sizeMap?: DapDSBadge["sizeMap"]
1207
- }
1208
-
1209
1162
  export type DapDSAvatarGroupProps = {
1210
1163
  /** Layout type for the avatar group */
1211
1164
  layout?: DapDSAvatarGroup["layout"]
@@ -1225,6 +1178,26 @@ export type DapDSAvatarGroupProps = {
1225
1178
  sizeMap?: DapDSAvatarGroup["sizeMap"]
1226
1179
  }
1227
1180
 
1181
+ export type DapDSBadgeProps = {
1182
+ /** The type of the badge */
1183
+ type?: DapDSBadge["type"]
1184
+ /** The icon of the badge, this is a name of a built in icon */
1185
+ icon?: DapDSBadge["icon"]
1186
+ /** Whether the badge represents dynamic content that should announce changes */
1187
+ live?: DapDSBadge["live"]
1188
+ /** The size of the badge. Default is `sm`. */
1189
+ size?: DapDSBadge["size"]
1190
+ /** Responsive size map (e.g. "md:lg"). */
1191
+ sizeMap?: DapDSBadge["sizeMap"]
1192
+ }
1193
+
1194
+ export type DapDSAccordionGroupProps = {
1195
+ /** Whether to close other accordions when one is opened. */
1196
+ autoClose?: DapDSAccordionGroup["autoClose"]
1197
+ /** The variant of the accordion */
1198
+ variant?: DapDSAccordionGroup["variant"]
1199
+ }
1200
+
1228
1201
  export type DapDSBannerProps = {
1229
1202
  /** The variant of the banner */
1230
1203
  variant?: DapDSBanner["variant"]
@@ -1238,6 +1211,33 @@ export type DapDSBannerProps = {
1238
1211
  icon?: DapDSBanner["icon"]
1239
1212
  }
1240
1213
 
1214
+ export type DapDSAvatarProps = {
1215
+ /** The shape of the avatar */
1216
+ shape?: DapDSAvatar["shape"]
1217
+ /** The variant type of the avatar */
1218
+ variant?: DapDSAvatar["variant"]
1219
+ /** The source of the avatar image */
1220
+ src?: DapDSAvatar["src"]
1221
+ /** The alt text of the avatar */
1222
+ alt?: DapDSAvatar["alt"]
1223
+ /** The initials to display when variant is 'initials' */
1224
+ initials?: DapDSAvatar["initials"]
1225
+ /** Accessible label for the avatar */
1226
+ label?: DapDSAvatar["label"]
1227
+ /** Loading state indicator */
1228
+ loading?: DapDSAvatar["loading"]
1229
+ /** Whether the avatar is interactive (clickable) */
1230
+ interactive?: DapDSAvatar["interactive"]
1231
+ /** The width of the avatar. This will override the size */
1232
+ width?: DapDSAvatar["width"]
1233
+ /** The height of the avatar. This will override the size */
1234
+ height?: DapDSAvatar["height"]
1235
+ /** The size of the avatar. Default is `md`. */
1236
+ size?: DapDSAvatar["size"]
1237
+ /** Responsive size map (e.g. "md:lg"). */
1238
+ sizeMap?: DapDSAvatar["sizeMap"]
1239
+ }
1240
+
1241
1241
  export type DapDSBreadcrumbProps = {
1242
1242
  /** */
1243
1243
  variant?: DapDSBreadcrumb["variant"]
@@ -3178,14 +3178,6 @@ export type DapDSTableProps = {
3178
3178
  caption?: DapDSTable["caption"]
3179
3179
  }
3180
3180
 
3181
- export type DapDSTimelineItemProps = {
3182
-
3183
- }
3184
-
3185
- export type DapDSTimelineProps = {
3186
-
3187
- }
3188
-
3189
3181
  export type DapDSTextareaProps = {
3190
3182
  /** Hide character counter. */
3191
3183
  hideCounter?: DapDSTextarea["hideCounter"]
@@ -3239,6 +3231,14 @@ export type DapDSTextareaProps = {
3239
3231
  autofocus?: DapDSTextarea["autofocus"]
3240
3232
  }
3241
3233
 
3234
+ export type DapDSTimelineItemProps = {
3235
+
3236
+ }
3237
+
3238
+ export type DapDSTimelineProps = {
3239
+
3240
+ }
3241
+
3242
3242
  export type DapDSTimeGridProps = {
3243
3243
  /** The currently selected hour (0-23). */
3244
3244
  selectedHour?: DapDSTimeGrid["selectedHour"]
@@ -3609,26 +3609,26 @@ export type ArrowsArrowLeftLineProps = {
3609
3609
  focusable?: ArrowsArrowLeftLine["focusable"]
3610
3610
  }
3611
3611
 
3612
- export type ArrowsArrowLeftSLineProps = {
3612
+ export type ArrowsArrowLeftSFillProps = {
3613
3613
  /** (optional) The width and height in pixels */
3614
- size?: ArrowsArrowLeftSLine["size"]
3614
+ size?: ArrowsArrowLeftSFill["size"]
3615
3615
  /** (optional) Sets the icon color via the `fill` attribute */
3616
- selected?: ArrowsArrowLeftSLine["selected"]
3616
+ selected?: ArrowsArrowLeftSFill["selected"]
3617
3617
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3618
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3618
+ accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3619
3619
  /** (optional) If `true` the icon can receive focus */
3620
- focusable?: ArrowsArrowLeftSLine["focusable"]
3620
+ focusable?: ArrowsArrowLeftSFill["focusable"]
3621
3621
  }
3622
3622
 
3623
- export type ArrowsArrowLeftSFillProps = {
3623
+ export type ArrowsArrowLeftSLineProps = {
3624
3624
  /** (optional) The width and height in pixels */
3625
- size?: ArrowsArrowLeftSFill["size"]
3625
+ size?: ArrowsArrowLeftSLine["size"]
3626
3626
  /** (optional) Sets the icon color via the `fill` attribute */
3627
- selected?: ArrowsArrowLeftSFill["selected"]
3627
+ selected?: ArrowsArrowLeftSLine["selected"]
3628
3628
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3629
- accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3629
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3630
3630
  /** (optional) If `true` the icon can receive focus */
3631
- focusable?: ArrowsArrowLeftSFill["focusable"]
3631
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3632
3632
  }
3633
3633
 
3634
3634
  export type ArrowsArrowLeftUpLineProps = {
@@ -3939,50 +3939,6 @@ export type OthersCookieLineProps = {
3939
3939
  focusable?: OthersCookieLine["focusable"]
3940
3940
  }
3941
3941
 
3942
- export type UserAccountCircleFillProps = {
3943
- /** (optional) The width and height in pixels */
3944
- size?: UserAccountCircleFill["size"]
3945
- /** (optional) Sets the icon color via the `fill` attribute */
3946
- selected?: UserAccountCircleFill["selected"]
3947
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3948
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
3949
- /** (optional) If `true` the icon can receive focus */
3950
- focusable?: UserAccountCircleFill["focusable"]
3951
- }
3952
-
3953
- export type UserAccountCircleLineProps = {
3954
- /** (optional) The width and height in pixels */
3955
- size?: UserAccountCircleLine["size"]
3956
- /** (optional) Sets the icon color via the `fill` attribute */
3957
- selected?: UserAccountCircleLine["selected"]
3958
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3959
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
3960
- /** (optional) If `true` the icon can receive focus */
3961
- focusable?: UserAccountCircleLine["focusable"]
3962
- }
3963
-
3964
- export type UserUserFillProps = {
3965
- /** (optional) The width and height in pixels */
3966
- size?: UserUserFill["size"]
3967
- /** (optional) Sets the icon color via the `fill` attribute */
3968
- selected?: UserUserFill["selected"]
3969
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3970
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
3971
- /** (optional) If `true` the icon can receive focus */
3972
- focusable?: UserUserFill["focusable"]
3973
- }
3974
-
3975
- export type UserUserLineProps = {
3976
- /** (optional) The width and height in pixels */
3977
- size?: UserUserLine["size"]
3978
- /** (optional) Sets the icon color via the `fill` attribute */
3979
- selected?: UserUserLine["selected"]
3980
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3981
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
3982
- /** (optional) If `true` the icon can receive focus */
3983
- focusable?: UserUserLine["focusable"]
3984
- }
3985
-
3986
3942
  export type SystemAddLineProps = {
3987
3943
  /** (optional) The width and height in pixels */
3988
3944
  size?: SystemAddLine["size"]
@@ -4511,6 +4467,50 @@ export type SystemZoomOutLineProps = {
4511
4467
  focusable?: SystemZoomOutLine["focusable"]
4512
4468
  }
4513
4469
 
4470
+ export type UserAccountCircleFillProps = {
4471
+ /** (optional) The width and height in pixels */
4472
+ size?: UserAccountCircleFill["size"]
4473
+ /** (optional) Sets the icon color via the `fill` attribute */
4474
+ selected?: UserAccountCircleFill["selected"]
4475
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4476
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4477
+ /** (optional) If `true` the icon can receive focus */
4478
+ focusable?: UserAccountCircleFill["focusable"]
4479
+ }
4480
+
4481
+ export type UserAccountCircleLineProps = {
4482
+ /** (optional) The width and height in pixels */
4483
+ size?: UserAccountCircleLine["size"]
4484
+ /** (optional) Sets the icon color via the `fill` attribute */
4485
+ selected?: UserAccountCircleLine["selected"]
4486
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4487
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4488
+ /** (optional) If `true` the icon can receive focus */
4489
+ focusable?: UserAccountCircleLine["focusable"]
4490
+ }
4491
+
4492
+ export type UserUserFillProps = {
4493
+ /** (optional) The width and height in pixels */
4494
+ size?: UserUserFill["size"]
4495
+ /** (optional) Sets the icon color via the `fill` attribute */
4496
+ selected?: UserUserFill["selected"]
4497
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4498
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
4499
+ /** (optional) If `true` the icon can receive focus */
4500
+ focusable?: UserUserFill["focusable"]
4501
+ }
4502
+
4503
+ export type UserUserLineProps = {
4504
+ /** (optional) The width and height in pixels */
4505
+ size?: UserUserLine["size"]
4506
+ /** (optional) Sets the icon color via the `fill` attribute */
4507
+ selected?: UserUserLine["selected"]
4508
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4509
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
4510
+ /** (optional) If `true` the icon can receive focus */
4511
+ focusable?: UserUserLine["focusable"]
4512
+ }
4513
+
4514
4514
  // Augment Vue's GlobalComponents interface
4515
4515
  declare module 'vue' {
4516
4516
  interface GlobalComponents {
@@ -4540,26 +4540,6 @@ declare module 'vue' {
4540
4540
  * - **close-icon-base** - The base of the icon when the accordion is closed.
4541
4541
  */
4542
4542
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4543
- /**
4544
- * Avatar component can be used to display user profile images, initials, or icons.
4545
- *
4546
- * ### Events:
4547
- * - **dds-load** - Fired when the image loads successfully.
4548
- * - **dds-error** - Fired when the image fails to load.
4549
- *
4550
- * ### Slots:
4551
- * - **icon** - The icon to display when variant is 'icon'.
4552
- * - **fallback** - Custom fallback content when image fails to load.
4553
- *
4554
- * ### CSS Parts:
4555
- * - **base** - The main avatar container.
4556
- * - **img** - The avatar image.
4557
- * - **initials** - The initials container.
4558
- * - **icon** - The icon container.
4559
- * - **fallback** - The fallback content container.
4560
- * - **loading** - The loading indicator.
4561
- */
4562
- 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4563
4543
  /**
4564
4544
  * Anchor heading is a heading with an anchor link.
4565
4545
  *
@@ -4571,15 +4551,20 @@ declare module 'vue' {
4571
4551
  */
4572
4552
  'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4573
4553
  /**
4574
- * An accordion group is a collection of accordion components.
4554
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4555
+ *
4556
+ * ### Events:
4557
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4575
4558
  *
4576
4559
  * ### Slots:
4577
- * - **default** - The content of the accordion group.
4560
+ * - **default** - The avatars to display in the group.
4578
4561
  *
4579
4562
  * ### CSS Parts:
4580
- * - **base** - The main accordion group container.
4563
+ * - **base** - The main container of the avatar group.
4564
+ * - **avatars** - The container for the visible avatars.
4565
+ * - **overflow** - The overflow indicator element.
4581
4566
  */
4582
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4567
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4583
4568
  /**
4584
4569
  * A badge is a small status descriptor for UI elements.
4585
4570
  *
@@ -4595,20 +4580,15 @@ declare module 'vue' {
4595
4580
  */
4596
4581
  'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4597
4582
  /**
4598
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4599
- *
4600
- * ### Events:
4601
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4583
+ * An accordion group is a collection of accordion components.
4602
4584
  *
4603
4585
  * ### Slots:
4604
- * - **default** - The avatars to display in the group.
4586
+ * - **default** - The content of the accordion group.
4605
4587
  *
4606
4588
  * ### CSS Parts:
4607
- * - **base** - The main container of the avatar group.
4608
- * - **avatars** - The container for the visible avatars.
4609
- * - **overflow** - The overflow indicator element.
4589
+ * - **base** - The main accordion group container.
4610
4590
  */
4611
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4591
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4612
4592
  /**
4613
4593
  * A banner is a message displayed at the top of the page to provide important information to the user.
4614
4594
  *
@@ -4633,6 +4613,26 @@ declare module 'vue' {
4633
4613
  * - **title** - The title of the banner.
4634
4614
  */
4635
4615
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4616
+ /**
4617
+ * Avatar component can be used to display user profile images, initials, or icons.
4618
+ *
4619
+ * ### Events:
4620
+ * - **dds-load** - Fired when the image loads successfully.
4621
+ * - **dds-error** - Fired when the image fails to load.
4622
+ *
4623
+ * ### Slots:
4624
+ * - **icon** - The icon to display when variant is 'icon'.
4625
+ * - **fallback** - Custom fallback content when image fails to load.
4626
+ *
4627
+ * ### CSS Parts:
4628
+ * - **base** - The main avatar container.
4629
+ * - **img** - The avatar image.
4630
+ * - **initials** - The initials container.
4631
+ * - **icon** - The icon container.
4632
+ * - **fallback** - The fallback content container.
4633
+ * - **loading** - The loading indicator.
4634
+ */
4635
+ 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4636
4636
  /**
4637
4637
  * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4638
4638
  *
@@ -5861,28 +5861,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5861
5861
  * - **default** - The default slot. Accepts `dap-ds-table-row` elements.
5862
5862
  */
5863
5863
  'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
5864
- /**
5865
- * A timeline is a graphical representation of a series of events.
5866
- *
5867
- * ### Slots:
5868
- * - **default** - The default slot for the item content.
5869
- *
5870
- * ### CSS Parts:
5871
- * - **base** - The main timeline item container.
5872
- * - **connector** - The connector element between two timeline items.
5873
- * - **content** - The content of the timeline item.
5874
- */
5875
- 'dap-ds-timeline-item': DefineCustomElement<DapDSTimelineItem, DapDSTimelineItemProps, {}>
5876
- /**
5877
- * A timeline is a graphical representation of a series of events.
5878
- *
5879
- * ### Slots:
5880
- * - **default** - The default slot for the timeline items.
5881
- *
5882
- * ### CSS Parts:
5883
- * - **base** - The main timeline container.
5884
- */
5885
- 'dap-ds-timeline': DefineCustomElement<DapDSTimeline, DapDSTimelineProps, {}>
5886
5864
  /**
5887
5865
  * A textarea is a multi-line text input field.
5888
5866
  *
@@ -5909,6 +5887,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5909
5887
  * - **feedback-icon** - The icon of the feedback.
5910
5888
  */
5911
5889
  'dap-ds-textarea': DefineCustomElement<DapDSTextarea, DapDSTextareaProps, DapDSTextareaEvents>
5890
+ /**
5891
+ * A timeline is a graphical representation of a series of events.
5892
+ *
5893
+ * ### Slots:
5894
+ * - **default** - The default slot for the item content.
5895
+ *
5896
+ * ### CSS Parts:
5897
+ * - **base** - The main timeline item container.
5898
+ * - **connector** - The connector element between two timeline items.
5899
+ * - **content** - The content of the timeline item.
5900
+ */
5901
+ 'dap-ds-timeline-item': DefineCustomElement<DapDSTimelineItem, DapDSTimelineItemProps, {}>
5902
+ /**
5903
+ * A timeline is a graphical representation of a series of events.
5904
+ *
5905
+ * ### Slots:
5906
+ * - **default** - The default slot for the timeline items.
5907
+ *
5908
+ * ### CSS Parts:
5909
+ * - **base** - The main timeline container.
5910
+ */
5911
+ 'dap-ds-timeline': DefineCustomElement<DapDSTimeline, DapDSTimelineProps, {}>
5912
5912
  /**
5913
5913
  * A time grid component that allows users to select hours and minutes in two side-by-side scrollable columns.
5914
5914
  *
@@ -6112,14 +6112,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6112
6112
  * ### CSS Parts:
6113
6113
  * - **base** - The main icon container.
6114
6114
  */
6115
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6115
+ 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6116
6116
  /**
6117
6117
  * An icon
6118
6118
  *
6119
6119
  * ### CSS Parts:
6120
6120
  * - **base** - The main icon container.
6121
6121
  */
6122
- 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6122
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6123
6123
  /**
6124
6124
  * An icon
6125
6125
  *
@@ -6316,34 +6316,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6316
6316
  * - **base** - The main icon container.
6317
6317
  */
6318
6318
  'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6319
- /**
6320
- * An icon
6321
- *
6322
- * ### CSS Parts:
6323
- * - **base** - The main icon container.
6324
- */
6325
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6326
- /**
6327
- * An icon
6328
- *
6329
- * ### CSS Parts:
6330
- * - **base** - The main icon container.
6331
- */
6332
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6333
- /**
6334
- * An icon
6335
- *
6336
- * ### CSS Parts:
6337
- * - **base** - The main icon container.
6338
- */
6339
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6340
- /**
6341
- * An icon
6342
- *
6343
- * ### CSS Parts:
6344
- * - **base** - The main icon container.
6345
- */
6346
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6347
6319
  /**
6348
6320
  * An icon
6349
6321
  *
@@ -6680,6 +6652,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6680
6652
  * - **base** - The main icon container.
6681
6653
  */
6682
6654
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6655
+ /**
6656
+ * An icon
6657
+ *
6658
+ * ### CSS Parts:
6659
+ * - **base** - The main icon container.
6660
+ */
6661
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6662
+ /**
6663
+ * An icon
6664
+ *
6665
+ * ### CSS Parts:
6666
+ * - **base** - The main icon container.
6667
+ */
6668
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6669
+ /**
6670
+ * An icon
6671
+ *
6672
+ * ### CSS Parts:
6673
+ * - **base** - The main icon container.
6674
+ */
6675
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6676
+ /**
6677
+ * An icon
6678
+ *
6679
+ * ### CSS Parts:
6680
+ * - **base** - The main icon container.
6681
+ */
6682
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6683
6683
  }
6684
6684
  }
6685
6685
 
@@ -6688,12 +6688,12 @@ declare global {
6688
6688
  namespace JSX {
6689
6689
  interface IntrinsicElements {
6690
6690
  'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6691
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6692
6691
  'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6693
- 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6694
- 'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6695
6692
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6693
+ 'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6694
+ 'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6696
6695
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6696
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6697
6697
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6698
6698
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6699
6699
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
@@ -6768,9 +6768,9 @@ declare global {
6768
6768
  'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
6769
6769
  'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
6770
6770
  'dap-ds-table': DapDSTableProps & DapDSTableSlots
6771
+ 'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
6771
6772
  'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
6772
6773
  'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
6773
- 'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
6774
6774
  'dap-ds-time-grid': DapDSTimeGridProps & DapDSTimeGridEvents
6775
6775
  'dap-ds-timepicker': DapDSTimePickerProps & DapDSTimePickerEvents
6776
6776
  'dap-ds-toc': DapDSTOCProps & DapDSTOCEvents
@@ -6787,8 +6787,8 @@ declare global {
6787
6787
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6788
6788
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6789
6789
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6790
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6791
6790
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6791
+ 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6792
6792
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6793
6793
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6794
6794
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
@@ -6817,10 +6817,6 @@ declare global {
6817
6817
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6818
6818
  'dap-ds-icon-heart-line': HealthHeartLineProps
6819
6819
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6820
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6821
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6822
- 'dap-ds-icon-user-fill': UserUserFillProps
6823
- 'dap-ds-icon-user-line': UserUserLineProps
6824
6820
  'dap-ds-icon-add-line': SystemAddLineProps
6825
6821
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6826
6822
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6869,6 +6865,10 @@ declare global {
6869
6865
  'dap-ds-icon-upload-line': SystemUploadLineProps
6870
6866
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6871
6867
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
6868
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6869
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6870
+ 'dap-ds-icon-user-fill': UserUserFillProps
6871
+ 'dap-ds-icon-user-line': UserUserLineProps
6872
6872
  }
6873
6873
  }
6874
6874
  }