dap-design-system 0.58.0 → 0.58.1

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.
@@ -210,11 +210,11 @@ type DefineGenericCustomElement<
210
210
  $props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
211
211
  }
212
212
 
213
- export interface DapDSAccordionEvents {
214
- /** Event fired when the accordion is opened. */
215
- onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
216
- /** Event fired when the accordion is closed. */
217
- onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
213
+ export interface DapDSAvatarEvents {
214
+ /** Fired when the image loads successfully. */
215
+ onDdsLoad?: (event: CustomEvent) => void
216
+ /** Fired when the image fails to load. */
217
+ onDdsError?: (event: CustomEvent) => void
218
218
  }
219
219
 
220
220
  export interface DapDSAvatarGroupEvents {
@@ -222,18 +222,18 @@ export interface DapDSAvatarGroupEvents {
222
222
  onDdsOverflowClick?: (event: CustomEvent) => void
223
223
  }
224
224
 
225
+ export interface DapDSAccordionEvents {
226
+ /** Event fired when the accordion is opened. */
227
+ onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
228
+ /** Event fired when the accordion is closed. */
229
+ onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
230
+ }
231
+
225
232
  export interface DapDSBannerEvents {
226
233
  /** Event fired when the banner is closed. */
227
234
  onDdsClose?: (event: CustomEvent) => void
228
235
  }
229
236
 
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
@@ -655,6 +655,18 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
+ export interface DapDSAvatarSlots {
659
+ /** The icon to display when variant is 'icon'. */
660
+ 'icon'?: () => any
661
+ /** Custom fallback content when image fails to load. */
662
+ 'fallback'?: () => any
663
+ }
664
+
665
+ export interface DapDSAvatarGroupSlots {
666
+ /** The avatars to display in the group. */
667
+ default?: () => any
668
+ }
669
+
658
670
  export interface DapDSAccordionSlots {
659
671
  /** The content of the accordion. */
660
672
  default?: () => any
@@ -666,11 +678,6 @@ export interface DapDSAccordionSlots {
666
678
  'icon-closed'?: () => any
667
679
  }
668
680
 
669
- export interface DapDSAvatarGroupSlots {
670
- /** The avatars to display in the group. */
671
- default?: () => any
672
- }
673
-
674
681
  export interface DapDSBadgeSlots {
675
682
  /** The content of the badge. */
676
683
  default?: () => any
@@ -678,6 +685,13 @@ export interface DapDSBadgeSlots {
678
685
  'icon'?: () => any
679
686
  }
680
687
 
688
+ export interface DapDSBreadcrumbSlots {
689
+ /** The content of the breadcrumb. */
690
+ default?: () => any
691
+ /** The separator between breadcrumb items. Default is '/'. */
692
+ 'separator'?: () => any
693
+ }
694
+
681
695
  export interface DapDSBannerSlots {
682
696
  /** The content of the banner. */
683
697
  default?: () => any
@@ -692,13 +706,6 @@ export interface DapDSAccordionGroupSlots {
692
706
  default?: () => any
693
707
  }
694
708
 
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
709
  export interface DapDSBreadcrumbItemSlots {
703
710
  /** The content of the breadcrumb item. */
704
711
  default?: () => any
@@ -721,6 +728,19 @@ export interface DapDSCalendarSlots {
721
728
  default?: () => any
722
729
  }
723
730
 
731
+ export interface DapDSCalloutSlots {
732
+ /** The content of the callout. */
733
+ default?: () => any
734
+ /** The title of the callout. */
735
+ 'title'?: () => any
736
+ /** The icon of the callout. */
737
+ 'icon'?: () => any
738
+ /** The actions of the callout. */
739
+ 'actions'?: () => any
740
+ /** The close button of the callout. */
741
+ 'close'?: () => any
742
+ }
743
+
724
744
  export interface DapDSCardActionsSlots {
725
745
  /** The content of the card actions. */
726
746
  default?: () => any
@@ -751,26 +771,6 @@ export interface DapDSCardSlots {
751
771
  default?: () => any
752
772
  }
753
773
 
754
- export interface DapDSCalloutSlots {
755
- /** The content of the callout. */
756
- default?: () => any
757
- /** The title of the callout. */
758
- 'title'?: () => any
759
- /** The icon of the callout. */
760
- 'icon'?: () => any
761
- /** The actions of the callout. */
762
- 'actions'?: () => any
763
- /** The close button of the callout. */
764
- 'close'?: () => any
765
- }
766
-
767
- export interface DapDSBreadcrumbSlots {
768
- /** The content of the breadcrumb. */
769
- default?: () => any
770
- /** The separator between breadcrumb items. Default is '/'. */
771
- 'separator'?: () => any
772
- }
773
-
774
774
  export interface DapDSCodePuncherSlots {
775
775
  /** Slot for code-puncher-group, code-puncher-slot, and code-puncher-separator elements. */
776
776
  default?: () => any
@@ -1123,15 +1123,50 @@ export interface DapDSRadioGroupSlots {
1123
1123
  'feedback-icon'?: () => any
1124
1124
  }
1125
1125
 
1126
- export type DapDSAnchorHeadingProps = {
1127
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1128
- variant?: DapDSAnchorHeading["variant"]
1129
- /** The label of the heading. */
1130
- label?: DapDSAnchorHeading["label"]
1131
- /** */
1132
- elementId?: DapDSAnchorHeading["elementId"]
1133
- /** */
1134
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1126
+ export type DapDSAvatarProps = {
1127
+ /** The shape of the avatar */
1128
+ shape?: DapDSAvatar["shape"]
1129
+ /** The variant type of the avatar */
1130
+ variant?: DapDSAvatar["variant"]
1131
+ /** The source of the avatar image */
1132
+ src?: DapDSAvatar["src"]
1133
+ /** The alt text of the avatar */
1134
+ alt?: DapDSAvatar["alt"]
1135
+ /** The initials to display when variant is 'initials' */
1136
+ initials?: DapDSAvatar["initials"]
1137
+ /** Accessible label for the avatar */
1138
+ label?: DapDSAvatar["label"]
1139
+ /** Loading state indicator */
1140
+ loading?: DapDSAvatar["loading"]
1141
+ /** Whether the avatar is interactive (clickable) */
1142
+ interactive?: DapDSAvatar["interactive"]
1143
+ /** The width of the avatar. This will override the size */
1144
+ width?: DapDSAvatar["width"]
1145
+ /** The height of the avatar. This will override the size */
1146
+ height?: DapDSAvatar["height"]
1147
+ /** The size of the avatar. Default is `md`. */
1148
+ size?: DapDSAvatar["size"]
1149
+ /** Responsive size map (e.g. "md:lg"). */
1150
+ sizeMap?: DapDSAvatar["sizeMap"]
1151
+ }
1152
+
1153
+ export type DapDSAvatarGroupProps = {
1154
+ /** Layout type for the avatar group */
1155
+ layout?: DapDSAvatarGroup["layout"]
1156
+ /** Maximum number of avatars to show before showing overflow */
1157
+ max?: DapDSAvatarGroup["max"]
1158
+ /** Whether to show the total count in overflow indicator */
1159
+ "show-total"?: DapDSAvatarGroup["showTotal"]
1160
+ /** Interactive overflow indicator */
1161
+ "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1162
+ /** Accessible label for the avatar group */
1163
+ label?: DapDSAvatarGroup["label"]
1164
+ /** Accessible label for the overflow indicator */
1165
+ "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1166
+ /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1167
+ size?: DapDSAvatarGroup["size"]
1168
+ /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1169
+ sizeMap?: DapDSAvatarGroup["sizeMap"]
1135
1170
  }
1136
1171
 
1137
1172
  export type DapDSAccordionProps = {
@@ -1159,25 +1194,6 @@ export type DapDSAccordionProps = {
1159
1194
  loading?: DapDSAccordion["loading"]
1160
1195
  }
1161
1196
 
1162
- export type DapDSAvatarGroupProps = {
1163
- /** Layout type for the avatar group */
1164
- layout?: DapDSAvatarGroup["layout"]
1165
- /** Maximum number of avatars to show before showing overflow */
1166
- max?: DapDSAvatarGroup["max"]
1167
- /** Whether to show the total count in overflow indicator */
1168
- "show-total"?: DapDSAvatarGroup["showTotal"]
1169
- /** Interactive overflow indicator */
1170
- "interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
1171
- /** Accessible label for the avatar group */
1172
- label?: DapDSAvatarGroup["label"]
1173
- /** Accessible label for the overflow indicator */
1174
- "overflow-label"?: DapDSAvatarGroup["overflowLabel"]
1175
- /** The size of avatars in the group. Default is `md`. See SizedMixin. */
1176
- size?: DapDSAvatarGroup["size"]
1177
- /** Responsive size map (e.g. "md:lg"); see SizedMixin. */
1178
- sizeMap?: DapDSAvatarGroup["sizeMap"]
1179
- }
1180
-
1181
1197
  export type DapDSBadgeProps = {
1182
1198
  /** The type of the badge */
1183
1199
  type?: DapDSBadge["type"]
@@ -1191,6 +1207,15 @@ export type DapDSBadgeProps = {
1191
1207
  sizeMap?: DapDSBadge["sizeMap"]
1192
1208
  }
1193
1209
 
1210
+ export type DapDSBreadcrumbProps = {
1211
+ /** */
1212
+ variant?: DapDSBreadcrumb["variant"]
1213
+ /** Mobile version of the breadcrumb */
1214
+ mobile?: DapDSBreadcrumb["mobile"]
1215
+ /** The aria-labelledby of the breadcrumb */
1216
+ "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1217
+ }
1218
+
1194
1219
  export type DapDSBannerProps = {
1195
1220
  /** The variant of the banner */
1196
1221
  variant?: DapDSBanner["variant"]
@@ -1213,31 +1238,15 @@ export type DapDSAccordionGroupProps = {
1213
1238
  variant?: DapDSAccordionGroup["variant"]
1214
1239
  }
1215
1240
 
1216
- export type DapDSAvatarProps = {
1217
- /** The shape of the avatar */
1218
- shape?: DapDSAvatar["shape"]
1219
- /** The variant type of the avatar */
1220
- variant?: DapDSAvatar["variant"]
1221
- /** The source of the avatar image */
1222
- src?: DapDSAvatar["src"]
1223
- /** The alt text of the avatar */
1224
- alt?: DapDSAvatar["alt"]
1225
- /** The initials to display when variant is 'initials' */
1226
- initials?: DapDSAvatar["initials"]
1227
- /** Accessible label for the avatar */
1228
- label?: DapDSAvatar["label"]
1229
- /** Loading state indicator */
1230
- loading?: DapDSAvatar["loading"]
1231
- /** Whether the avatar is interactive (clickable) */
1232
- interactive?: DapDSAvatar["interactive"]
1233
- /** The width of the avatar. This will override the size */
1234
- width?: DapDSAvatar["width"]
1235
- /** The height of the avatar. This will override the size */
1236
- height?: DapDSAvatar["height"]
1237
- /** The size of the avatar. Default is `md`. */
1238
- size?: DapDSAvatar["size"]
1239
- /** Responsive size map (e.g. "md:lg"). */
1240
- sizeMap?: DapDSAvatar["sizeMap"]
1241
+ export type DapDSAnchorHeadingProps = {
1242
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1243
+ variant?: DapDSAnchorHeading["variant"]
1244
+ /** The label of the heading. */
1245
+ label?: DapDSAnchorHeading["label"]
1246
+ /** */
1247
+ elementId?: DapDSAnchorHeading["elementId"]
1248
+ /** */
1249
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1241
1250
  }
1242
1251
 
1243
1252
  export type DapDSBreadcrumbItemProps = {
@@ -1346,6 +1355,27 @@ export type DapDSCalendarProps = {
1346
1355
  shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
1347
1356
  }
1348
1357
 
1358
+ export type DapDSCalloutProps = {
1359
+ /** The variant of the callout */
1360
+ variant?: DapDSCallout["variant"]
1361
+ /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1362
+ alignment?: DapDSCallout["alignment"]
1363
+ /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1364
+ shade?: DapDSCallout["shade"]
1365
+ /** If the callout has a border */
1366
+ noBorder?: DapDSCallout["noBorder"]
1367
+ /** If the callout has a close button */
1368
+ closeable?: DapDSCallout["closeable"]
1369
+ /** The header of the callout */
1370
+ title?: DapDSCallout["title"]
1371
+ /** The label of the close button */
1372
+ closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1373
+ /** `data-testid` for the default close button. */
1374
+ closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1375
+ /** If the callout is opened */
1376
+ opened?: DapDSCallout["opened"]
1377
+ }
1378
+
1349
1379
  export type DapDSCardActionsProps = {
1350
1380
  /** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
1351
1381
  spacing?: DapDSCardActions["spacing"]
@@ -1432,27 +1462,6 @@ export type DapDSCardProps = {
1432
1462
  sizeMap?: DapDSCard["sizeMap"]
1433
1463
  }
1434
1464
 
1435
- export type DapDSCalloutProps = {
1436
- /** The variant of the callout */
1437
- variant?: DapDSCallout["variant"]
1438
- /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1439
- alignment?: DapDSCallout["alignment"]
1440
- /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1441
- shade?: DapDSCallout["shade"]
1442
- /** If the callout has a border */
1443
- noBorder?: DapDSCallout["noBorder"]
1444
- /** If the callout has a close button */
1445
- closeable?: DapDSCallout["closeable"]
1446
- /** The header of the callout */
1447
- title?: DapDSCallout["title"]
1448
- /** The label of the close button */
1449
- closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1450
- /** `data-testid` for the default close button. */
1451
- closeButtonTestId?: DapDSCallout["closeButtonTestId"]
1452
- /** If the callout is opened */
1453
- opened?: DapDSCallout["opened"]
1454
- }
1455
-
1456
1465
  export type DapDSCheckboxProps = {
1457
1466
  /** Whether the checkbox is indeterminate */
1458
1467
  indeterminate?: DapDSCheckbox["indeterminate"]
@@ -1529,15 +1538,6 @@ export type DapDSChipProps = {
1529
1538
  sizeMap?: DapDSChip["sizeMap"]
1530
1539
  }
1531
1540
 
1532
- export type DapDSBreadcrumbProps = {
1533
- /** */
1534
- variant?: DapDSBreadcrumb["variant"]
1535
- /** Mobile version of the breadcrumb */
1536
- mobile?: DapDSBreadcrumb["mobile"]
1537
- /** The aria-labelledby of the breadcrumb */
1538
- "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1539
- }
1540
-
1541
1541
  export type DapDSCodePuncherSlotProps = {
1542
1542
  /** */
1543
1543
  disabled?: DapDSCodePuncherSlot["disabled"]
@@ -3743,26 +3743,26 @@ export type ArrowsArrowLeftLineProps = {
3743
3743
  focusable?: ArrowsArrowLeftLine["focusable"]
3744
3744
  }
3745
3745
 
3746
- export type ArrowsArrowLeftSLineProps = {
3746
+ export type ArrowsArrowLeftSFillProps = {
3747
3747
  /** (optional) The width and height in pixels */
3748
- size?: ArrowsArrowLeftSLine["size"]
3748
+ size?: ArrowsArrowLeftSFill["size"]
3749
3749
  /** (optional) Sets the icon color via the `fill` attribute */
3750
- selected?: ArrowsArrowLeftSLine["selected"]
3750
+ selected?: ArrowsArrowLeftSFill["selected"]
3751
3751
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3752
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3752
+ accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3753
3753
  /** (optional) If `true` the icon can receive focus */
3754
- focusable?: ArrowsArrowLeftSLine["focusable"]
3754
+ focusable?: ArrowsArrowLeftSFill["focusable"]
3755
3755
  }
3756
3756
 
3757
- export type ArrowsArrowLeftSFillProps = {
3757
+ export type ArrowsArrowLeftSLineProps = {
3758
3758
  /** (optional) The width and height in pixels */
3759
- size?: ArrowsArrowLeftSFill["size"]
3759
+ size?: ArrowsArrowLeftSLine["size"]
3760
3760
  /** (optional) Sets the icon color via the `fill` attribute */
3761
- selected?: ArrowsArrowLeftSFill["selected"]
3761
+ selected?: ArrowsArrowLeftSLine["selected"]
3762
3762
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3763
- accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3763
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3764
3764
  /** (optional) If `true` the icon can receive focus */
3765
- focusable?: ArrowsArrowLeftSFill["focusable"]
3765
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3766
3766
  }
3767
3767
 
3768
3768
  export type ArrowsArrowLeftUpLineProps = {
@@ -3886,26 +3886,26 @@ export type ArrowsExpandUpDownFillProps = {
3886
3886
  focusable?: ArrowsExpandUpDownFill["focusable"]
3887
3887
  }
3888
3888
 
3889
- export type BuildingsHome6LineProps = {
3889
+ export type BusinessCalendarLineProps = {
3890
3890
  /** (optional) The width and height in pixels */
3891
- size?: BuildingsHome6Line["size"]
3891
+ size?: BusinessCalendarLine["size"]
3892
3892
  /** (optional) Sets the icon color via the `fill` attribute */
3893
- selected?: BuildingsHome6Line["selected"]
3893
+ selected?: BusinessCalendarLine["selected"]
3894
3894
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3895
- accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3895
+ accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3896
3896
  /** (optional) If `true` the icon can receive focus */
3897
- focusable?: BuildingsHome6Line["focusable"]
3897
+ focusable?: BusinessCalendarLine["focusable"]
3898
3898
  }
3899
3899
 
3900
- export type BusinessCalendarLineProps = {
3900
+ export type BuildingsHome6LineProps = {
3901
3901
  /** (optional) The width and height in pixels */
3902
- size?: BusinessCalendarLine["size"]
3902
+ size?: BuildingsHome6Line["size"]
3903
3903
  /** (optional) Sets the icon color via the `fill` attribute */
3904
- selected?: BusinessCalendarLine["selected"]
3904
+ selected?: BuildingsHome6Line["selected"]
3905
3905
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3906
- accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
3906
+ accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3907
3907
  /** (optional) If `true` the icon can receive focus */
3908
- focusable?: BusinessCalendarLine["focusable"]
3908
+ focusable?: BuildingsHome6Line["focusable"]
3909
3909
  }
3910
3910
 
3911
3911
  export type DesignEditLineProps = {
@@ -3941,17 +3941,6 @@ export type DeviceComputerLineProps = {
3941
3941
  focusable?: DeviceComputerLine["focusable"]
3942
3942
  }
3943
3943
 
3944
- export type EditorSeparatorProps = {
3945
- /** (optional) The width and height in pixels */
3946
- size?: EditorSeparator["size"]
3947
- /** (optional) Sets the icon color via the `fill` attribute */
3948
- selected?: EditorSeparator["selected"]
3949
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3950
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3951
- /** (optional) If `true` the icon can receive focus */
3952
- focusable?: EditorSeparator["focusable"]
3953
- }
3954
-
3955
3944
  export type DocumentClipboardLineProps = {
3956
3945
  /** (optional) The width and height in pixels */
3957
3946
  size?: DocumentClipboardLine["size"]
@@ -4040,6 +4029,17 @@ export type DocumentFolderOpenLineProps = {
4040
4029
  focusable?: DocumentFolderOpenLine["focusable"]
4041
4030
  }
4042
4031
 
4032
+ export type EditorSeparatorProps = {
4033
+ /** (optional) The width and height in pixels */
4034
+ size?: EditorSeparator["size"]
4035
+ /** (optional) Sets the icon color via the `fill` attribute */
4036
+ selected?: EditorSeparator["selected"]
4037
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
4038
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
4039
+ /** (optional) If `true` the icon can receive focus */
4040
+ focusable?: EditorSeparator["focusable"]
4041
+ }
4042
+
4043
4043
  export type HealthHeartFillProps = {
4044
4044
  /** (optional) The width and height in pixels */
4045
4045
  size?: HealthHeartFill["size"]
@@ -4128,26 +4128,26 @@ export type SystemAddLineProps = {
4128
4128
  focusable?: SystemAddLine["focusable"]
4129
4129
  }
4130
4130
 
4131
- export type SystemAlertLineProps = {
4131
+ export type SystemAlertFillProps = {
4132
4132
  /** (optional) The width and height in pixels */
4133
- size?: SystemAlertLine["size"]
4133
+ size?: SystemAlertFill["size"]
4134
4134
  /** (optional) Sets the icon color via the `fill` attribute */
4135
- selected?: SystemAlertLine["selected"]
4135
+ selected?: SystemAlertFill["selected"]
4136
4136
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4137
- accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4137
+ accessibilityTitle?: SystemAlertFill["accessibilityTitle"]
4138
4138
  /** (optional) If `true` the icon can receive focus */
4139
- focusable?: SystemAlertLine["focusable"]
4139
+ focusable?: SystemAlertFill["focusable"]
4140
4140
  }
4141
4141
 
4142
- export type SystemAlertFillProps = {
4142
+ export type SystemAlertLineProps = {
4143
4143
  /** (optional) The width and height in pixels */
4144
- size?: SystemAlertFill["size"]
4144
+ size?: SystemAlertLine["size"]
4145
4145
  /** (optional) Sets the icon color via the `fill` attribute */
4146
- selected?: SystemAlertFill["selected"]
4146
+ selected?: SystemAlertLine["selected"]
4147
4147
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4148
- accessibilityTitle?: SystemAlertFill["accessibilityTitle"]
4148
+ accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
4149
4149
  /** (optional) If `true` the icon can receive focus */
4150
- focusable?: SystemAlertFill["focusable"]
4150
+ focusable?: SystemAlertLine["focusable"]
4151
4151
  }
4152
4152
 
4153
4153
  export type SystemCheckLineProps = {
@@ -4649,15 +4649,40 @@ export type SystemZoomOutLineProps = {
4649
4649
  declare module 'vue' {
4650
4650
  interface GlobalComponents {
4651
4651
  /**
4652
- * Anchor heading is a heading with an anchor link.
4652
+ * Avatar component can be used to display user profile images, initials, or icons.
4653
+ *
4654
+ * ### Events:
4655
+ * - **dds-load** - Fired when the image loads successfully.
4656
+ * - **dds-error** - Fired when the image fails to load.
4657
+ *
4658
+ * ### Slots:
4659
+ * - **icon** - The icon to display when variant is 'icon'.
4660
+ * - **fallback** - Custom fallback content when image fails to load.
4653
4661
  *
4654
4662
  * ### CSS Parts:
4655
- * - **base** - The main anchor heading container.
4656
- * - **link** - The link of the anchor heading. dap-ds-link element.
4657
- * - **link-base** - The base of the link part.
4658
- * - **text** - The text of the anchor heading.
4663
+ * - **base** - The main avatar container.
4664
+ * - **img** - The avatar image.
4665
+ * - **initials** - The initials container.
4666
+ * - **icon** - The icon container.
4667
+ * - **fallback** - The fallback content container.
4668
+ * - **loading** - The loading indicator.
4659
4669
  */
4660
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4670
+ 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4671
+ /**
4672
+ * Avatar group component displays multiple avatars in an organized layout with overflow management.
4673
+ *
4674
+ * ### Events:
4675
+ * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4676
+ *
4677
+ * ### Slots:
4678
+ * - **default** - The avatars to display in the group.
4679
+ *
4680
+ * ### CSS Parts:
4681
+ * - **base** - The main container of the avatar group.
4682
+ * - **avatars** - The container for the visible avatars.
4683
+ * - **overflow** - The overflow indicator element.
4684
+ */
4685
+ 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4661
4686
  /**
4662
4687
  * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4663
4688
  *
@@ -4684,21 +4709,6 @@ declare module 'vue' {
4684
4709
  * - **close-icon-base** - The base of the icon when the accordion is closed.
4685
4710
  */
4686
4711
  'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4687
- /**
4688
- * Avatar group component displays multiple avatars in an organized layout with overflow management.
4689
- *
4690
- * ### Events:
4691
- * - **dds-overflow-click** - Fired when the overflow indicator is clicked.
4692
- *
4693
- * ### Slots:
4694
- * - **default** - The avatars to display in the group.
4695
- *
4696
- * ### CSS Parts:
4697
- * - **base** - The main container of the avatar group.
4698
- * - **avatars** - The container for the visible avatars.
4699
- * - **overflow** - The overflow indicator element.
4700
- */
4701
- 'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
4702
4712
  /**
4703
4713
  * A badge is a small status descriptor for UI elements.
4704
4714
  *
@@ -4713,6 +4723,18 @@ declare module 'vue' {
4713
4723
  * - **icon-base** - The base of the icon.
4714
4724
  */
4715
4725
  'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
4726
+ /**
4727
+ * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4728
+ *
4729
+ * ### Slots:
4730
+ * - **default** - The content of the breadcrumb.
4731
+ * - **separator** - The separator between breadcrumb items. Default is '/'.
4732
+ *
4733
+ * ### CSS Parts:
4734
+ * - **base** - The main breadcrumb container.
4735
+ * - **separator** - The separator of the breadcrumb.
4736
+ */
4737
+ 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4716
4738
  /**
4717
4739
  * A banner is a message displayed at the top of the page to provide important information to the user.
4718
4740
  *
@@ -4748,25 +4770,15 @@ declare module 'vue' {
4748
4770
  */
4749
4771
  'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4750
4772
  /**
4751
- * Avatar component can be used to display user profile images, initials, or icons.
4752
- *
4753
- * ### Events:
4754
- * - **dds-load** - Fired when the image loads successfully.
4755
- * - **dds-error** - Fired when the image fails to load.
4756
- *
4757
- * ### Slots:
4758
- * - **icon** - The icon to display when variant is 'icon'.
4759
- * - **fallback** - Custom fallback content when image fails to load.
4773
+ * Anchor heading is a heading with an anchor link.
4760
4774
  *
4761
4775
  * ### CSS Parts:
4762
- * - **base** - The main avatar container.
4763
- * - **img** - The avatar image.
4764
- * - **initials** - The initials container.
4765
- * - **icon** - The icon container.
4766
- * - **fallback** - The fallback content container.
4767
- * - **loading** - The loading indicator.
4776
+ * - **base** - The main anchor heading container.
4777
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4778
+ * - **link-base** - The base of the link part.
4779
+ * - **text** - The text of the anchor heading.
4768
4780
  */
4769
- 'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4781
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4770
4782
  /**
4771
4783
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4772
4784
  *
@@ -4830,6 +4842,30 @@ declare module 'vue' {
4830
4842
  * - **calendar-header-month-select** - The month select of the calendar header.
4831
4843
  */
4832
4844
  'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
4845
+ /**
4846
+ *
4847
+ *
4848
+ * ### Events:
4849
+ * - **dds-close** - Fired when the close button is clicked.
4850
+ *
4851
+ * ### Slots:
4852
+ * - **default** - The content of the callout.
4853
+ * - **title** - The title of the callout.
4854
+ * - **icon** - The icon of the callout.
4855
+ * - **actions** - The actions of the callout.
4856
+ * - **close** - The close button of the callout.
4857
+ *
4858
+ * ### CSS Parts:
4859
+ * - **base** - The main callout container.
4860
+ * - **content** - The content of the callout.
4861
+ * - **card-content** - The content of the card.
4862
+ * - **icon** - The icon of the callout.
4863
+ * - **title** - The title of the callout.
4864
+ * - **description** - The description of the callout.
4865
+ * - **actions** - The actions of the callout.
4866
+ * - **close** - The close button of the callout.
4867
+ */
4868
+ 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4833
4869
  /**
4834
4870
  * A card actions is a container for actions in a card.
4835
4871
  *
@@ -4890,30 +4926,6 @@ declare module 'vue' {
4890
4926
  * - **base** - The main card container.
4891
4927
  */
4892
4928
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4893
- /**
4894
- *
4895
- *
4896
- * ### Events:
4897
- * - **dds-close** - Fired when the close button is clicked.
4898
- *
4899
- * ### Slots:
4900
- * - **default** - The content of the callout.
4901
- * - **title** - The title of the callout.
4902
- * - **icon** - The icon of the callout.
4903
- * - **actions** - The actions of the callout.
4904
- * - **close** - The close button of the callout.
4905
- *
4906
- * ### CSS Parts:
4907
- * - **base** - The main callout container.
4908
- * - **content** - The content of the callout.
4909
- * - **card-content** - The content of the card.
4910
- * - **icon** - The icon of the callout.
4911
- * - **title** - The title of the callout.
4912
- * - **description** - The description of the callout.
4913
- * - **actions** - The actions of the callout.
4914
- * - **close** - The close button of the callout.
4915
- */
4916
- 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4917
4929
  /**
4918
4930
  * A checkbox is a form element that allows the user to select one or more options from a set.
4919
4931
  *
@@ -4951,18 +4963,6 @@ declare module 'vue' {
4951
4963
  * - **remove-icon-base-base** - The base of the remove icon base
4952
4964
  */
4953
4965
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4954
- /**
4955
- * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4956
- *
4957
- * ### Slots:
4958
- * - **default** - The content of the breadcrumb.
4959
- * - **separator** - The separator between breadcrumb items. Default is '/'.
4960
- *
4961
- * ### CSS Parts:
4962
- * - **base** - The main breadcrumb container.
4963
- * - **separator** - The separator of the breadcrumb.
4964
- */
4965
- 'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4966
4966
  /**
4967
4967
  * Individual digit input slot for code puncher.
4968
4968
  *
@@ -6246,14 +6246,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6246
6246
  * ### CSS Parts:
6247
6247
  * - **base** - The main icon container.
6248
6248
  */
6249
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6249
+ 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6250
6250
  /**
6251
6251
  * An icon
6252
6252
  *
6253
6253
  * ### CSS Parts:
6254
6254
  * - **base** - The main icon container.
6255
6255
  */
6256
- 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6256
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6257
6257
  /**
6258
6258
  * An icon
6259
6259
  *
@@ -6337,14 +6337,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6337
6337
  * ### CSS Parts:
6338
6338
  * - **base** - The main icon container.
6339
6339
  */
6340
- 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6340
+ 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6341
6341
  /**
6342
6342
  * An icon
6343
6343
  *
6344
6344
  * ### CSS Parts:
6345
6345
  * - **base** - The main icon container.
6346
6346
  */
6347
- 'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
6347
+ 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6348
6348
  /**
6349
6349
  * An icon
6350
6350
  *
@@ -6366,13 +6366,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6366
6366
  * - **base** - The main icon container.
6367
6367
  */
6368
6368
  'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
6369
- /**
6370
- * An icon
6371
- *
6372
- * ### CSS Parts:
6373
- * - **base** - The main icon container.
6374
- */
6375
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6376
6369
  /**
6377
6370
  * An icon
6378
6371
  *
@@ -6429,6 +6422,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6429
6422
  * - **base** - The main icon container.
6430
6423
  */
6431
6424
  'dap-ds-icon-folder-open-line': DefineCustomElement<DocumentFolderOpenLine, DocumentFolderOpenLineProps, {}>
6425
+ /**
6426
+ * An icon
6427
+ *
6428
+ * ### CSS Parts:
6429
+ * - **base** - The main icon container.
6430
+ */
6431
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6432
6432
  /**
6433
6433
  * An icon
6434
6434
  *
@@ -6491,14 +6491,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6491
6491
  * ### CSS Parts:
6492
6492
  * - **base** - The main icon container.
6493
6493
  */
6494
- 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6494
+ 'dap-ds-icon-alert-fill': DefineCustomElement<SystemAlertFill, SystemAlertFillProps, {}>
6495
6495
  /**
6496
6496
  * An icon
6497
6497
  *
6498
6498
  * ### CSS Parts:
6499
6499
  * - **base** - The main icon container.
6500
6500
  */
6501
- 'dap-ds-icon-alert-fill': DefineCustomElement<SystemAlertFill, SystemAlertFillProps, {}>
6501
+ 'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
6502
6502
  /**
6503
6503
  * An icon
6504
6504
  *
@@ -6821,27 +6821,27 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6821
6821
  declare global {
6822
6822
  namespace JSX {
6823
6823
  interface IntrinsicElements {
6824
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6825
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6824
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6826
6825
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6826
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6827
6827
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6828
+ 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6828
6829
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6829
6830
  'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6830
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6831
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6831
6832
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6832
6833
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6833
6834
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6834
6835
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6836
+ 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6835
6837
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6836
6838
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6837
6839
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6838
6840
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6839
6841
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6840
6842
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6841
- 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6842
6843
  'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6843
6844
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6844
- 'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6845
6845
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6846
6846
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
6847
6847
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
@@ -6921,8 +6921,8 @@ declare global {
6921
6921
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6922
6922
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6923
6923
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6924
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6925
6924
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6925
+ 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6926
6926
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6927
6927
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6928
6928
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
@@ -6934,12 +6934,11 @@ declare global {
6934
6934
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6935
6935
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6936
6936
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6937
- 'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6938
6937
  'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6938
+ 'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6939
6939
  'dap-ds-icon-edit-line': DesignEditLineProps
6940
6940
  'dap-ds-icon-tools-line': DesignToolsLineProps
6941
6941
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6942
- 'dap-ds-icon-separator': EditorSeparatorProps
6943
6942
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6944
6943
  'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6945
6944
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
@@ -6948,6 +6947,7 @@ declare global {
6948
6947
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6949
6948
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6950
6949
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6950
+ 'dap-ds-icon-separator': EditorSeparatorProps
6951
6951
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6952
6952
  'dap-ds-icon-heart-line': HealthHeartLineProps
6953
6953
  'dap-ds-icon-cookie-line': OthersCookieLineProps
@@ -6956,8 +6956,8 @@ declare global {
6956
6956
  'dap-ds-icon-user-fill': UserUserFillProps
6957
6957
  'dap-ds-icon-user-line': UserUserLineProps
6958
6958
  'dap-ds-icon-add-line': SystemAddLineProps
6959
- 'dap-ds-icon-alert-line': SystemAlertLineProps
6960
6959
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6960
+ 'dap-ds-icon-alert-line': SystemAlertLineProps
6961
6961
  'dap-ds-icon-check-line': SystemCheckLineProps
6962
6962
  'dap-ds-icon-check-line2': SystemCheckLine2Props
6963
6963
  'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps