dap-design-system 0.55.3 → 0.55.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.
@@ -210,6 +210,13 @@ 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
218
+ }
219
+
213
220
  export interface DapDSAvatarGroupEvents {
214
221
  /** Fired when the overflow indicator is clicked. */
215
222
  onDdsOverflowClick?: (event: CustomEvent) => void
@@ -220,13 +227,6 @@ export interface DapDSBannerEvents {
220
227
  onDdsClose?: (event: CustomEvent) => void
221
228
  }
222
229
 
223
- export interface DapDSAccordionEvents {
224
- /** Event fired when the accordion is opened. */
225
- onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
226
- /** Event fired when the accordion is closed. */
227
- onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
228
- }
229
-
230
230
  export interface DapDSAvatarEvents {
231
231
  /** Fired when the image loads successfully. */
232
232
  onDdsLoad?: (event: CustomEvent) => void
@@ -234,6 +234,11 @@ export interface DapDSAvatarEvents {
234
234
  onDdsError?: (event: CustomEvent) => void
235
235
  }
236
236
 
237
+ export interface DapDSCalloutEvents {
238
+ /** Fired when the close button is clicked. */
239
+ onDdsClose?: (event: CustomEvent) => void
240
+ }
241
+
237
242
  export interface DapDSButtonEvents {
238
243
  /** Emitted when the loading timeout is reached */
239
244
  onDdsLoadingTimeout?: (event: CustomEvent) => void
@@ -244,11 +249,6 @@ export interface DapDSCalendarEvents {
244
249
  onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
245
250
  }
246
251
 
247
- export interface DapDSCalloutEvents {
248
- /** Fired when the close button is clicked. */
249
- onDdsClose?: (event: CustomEvent) => void
250
- }
251
-
252
252
  export interface DapDSCheckboxEvents {
253
253
  /** Fired when the checkbox is checked or unchecked. */
254
254
  onDdsChange?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean, type: 'checkbox' }>) => void
@@ -448,13 +448,6 @@ export interface DapDSNavigationMenuEvents {
448
448
  onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
449
449
  }
450
450
 
451
- export interface DapDSOfficialWebsiteBannerEvents {
452
- /** Event fired when the accordion is opened. */
453
- onDdsOpened?: (event: CustomEvent) => void
454
- /** Event fired when the accordion is closed. */
455
- onDdsClosed?: (event: CustomEvent) => void
456
- }
457
-
458
451
  export interface DapDSNumberInputEvents {
459
452
  /** Fired when the input value changes. */
460
453
  onDdsChange?: (event: CustomEvent<{ value: string }>) => void
@@ -468,6 +461,13 @@ export interface DapDSNumberInputEvents {
468
461
  onDdsFocus?: (event: CustomEvent) => void
469
462
  }
470
463
 
464
+ export interface DapDSOfficialWebsiteBannerEvents {
465
+ /** Event fired when the accordion is opened. */
466
+ onDdsOpened?: (event: CustomEvent) => void
467
+ /** Event fired when the accordion is closed. */
468
+ onDdsClosed?: (event: CustomEvent) => void
469
+ }
470
+
471
471
  export interface DapDSOptionListEvents {
472
472
  /** Fired when the escape key is pressed. */
473
473
  onDdsCancel?: (event: CustomEvent) => void
@@ -655,6 +655,17 @@ export interface DapDSRadioGroupEvents {
655
655
  onDdsFocus?: (event: CustomEvent) => void
656
656
  }
657
657
 
658
+ export interface DapDSAccordionSlots {
659
+ /** The content of the accordion. */
660
+ default?: () => any
661
+ /** The heading of the accordion. */
662
+ 'heading'?: () => any
663
+ /** The icon when the accordion is opened. */
664
+ 'icon-opened'?: () => any
665
+ /** The icon when the accordion is closed. */
666
+ 'icon-closed'?: () => any
667
+ }
668
+
658
669
  export interface DapDSAvatarGroupSlots {
659
670
  /** The avatars to display in the group. */
660
671
  default?: () => any
@@ -683,15 +694,9 @@ export interface DapDSBreadcrumbSlots {
683
694
  'separator'?: () => any
684
695
  }
685
696
 
686
- export interface DapDSAccordionSlots {
687
- /** The content of the accordion. */
697
+ export interface DapDSAccordionGroupSlots {
698
+ /** The content of the accordion group. */
688
699
  default?: () => any
689
- /** The heading of the accordion. */
690
- 'heading'?: () => any
691
- /** The icon when the accordion is opened. */
692
- 'icon-opened'?: () => any
693
- /** The icon when the accordion is closed. */
694
- 'icon-closed'?: () => any
695
700
  }
696
701
 
697
702
  export interface DapDSAvatarSlots {
@@ -701,11 +706,6 @@ export interface DapDSAvatarSlots {
701
706
  'fallback'?: () => any
702
707
  }
703
708
 
704
- export interface DapDSAccordionGroupSlots {
705
- /** The content of the accordion group. */
706
- default?: () => any
707
- }
708
-
709
709
  export interface DapDSBreadcrumbItemSlots {
710
710
  /** The content of the breadcrumb item. */
711
711
  default?: () => any
@@ -713,6 +713,19 @@ export interface DapDSBreadcrumbItemSlots {
713
713
  'separator'?: () => any
714
714
  }
715
715
 
716
+ export interface DapDSCalloutSlots {
717
+ /** The content of the callout. */
718
+ default?: () => any
719
+ /** The title of the callout. */
720
+ 'title'?: () => any
721
+ /** The icon of the callout. */
722
+ 'icon'?: () => any
723
+ /** The actions of the callout. */
724
+ 'actions'?: () => any
725
+ /** The close button of the callout. */
726
+ 'close'?: () => any
727
+ }
728
+
716
729
  export interface DapDSButtonSlots {
717
730
  /** The content of the button. Can contain text, icons, or other elements. */
718
731
  default?: () => any
@@ -728,19 +741,6 @@ export interface DapDSCalendarSlots {
728
741
  default?: () => any
729
742
  }
730
743
 
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
-
744
744
  export interface DapDSCardActionsSlots {
745
745
  /** The content of the card actions. */
746
746
  default?: () => any
@@ -924,6 +924,11 @@ export interface DapDSNotificationBadgeSlots {
924
924
  default?: () => any
925
925
  }
926
926
 
927
+ export interface DapDSNumberInputSlots {
928
+ /** The custom icon of the feedback. */
929
+ 'feedback-icon'?: () => any
930
+ }
931
+
927
932
  export interface DapDSOfficialWebsiteBannerSlots {
928
933
  /** The content of the accordion. */
929
934
  default?: () => any
@@ -935,11 +940,6 @@ export interface DapDSOfficialWebsiteBannerSlots {
935
940
  'icon-closed'?: () => any
936
941
  }
937
942
 
938
- export interface DapDSNumberInputSlots {
939
- /** The custom icon of the feedback. */
940
- 'feedback-icon'?: () => any
941
- }
942
-
943
943
  export interface DapDSOptionGroupSlots {
944
944
  /** The option items in this group. */
945
945
  default?: () => any
@@ -1134,6 +1134,31 @@ export type DapDSAnchorHeadingProps = {
1134
1134
  anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1135
1135
  }
1136
1136
 
1137
+ export type DapDSAccordionProps = {
1138
+ /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1139
+ size?: DapDSAccordion["size"]
1140
+ /** Responsive size map (e.g. "md:lg") */
1141
+ sizeMap?: DapDSAccordion["sizeMap"]
1142
+ /** When "true", size is taken from the parent card if present. */
1143
+ parentSized?: DapDSAccordion["parentSized"]
1144
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1145
+ heading?: DapDSAccordion["heading"]
1146
+ /** The heading level of the accordion. Default is `4`. */
1147
+ headingLevel?: DapDSAccordion["headingLevel"]
1148
+ /** Whether the accordion is opened. Default is `false`. */
1149
+ opened?: DapDSAccordion["opened"]
1150
+ /** The location of the icon. Default is `right`. */
1151
+ iconLocation?: DapDSAccordion["iconLocation"]
1152
+ /** The variant of the accordion. */
1153
+ variant?: DapDSAccordion["variant"]
1154
+ /** Whether the accordion is the last item. */
1155
+ lastItem?: DapDSAccordion["lastItem"]
1156
+ /** Whether the accordion is disabled. */
1157
+ disabled?: DapDSAccordion["disabled"]
1158
+ /** Whether the accordion is in loading state. */
1159
+ loading?: DapDSAccordion["loading"]
1160
+ }
1161
+
1137
1162
  export type DapDSAvatarGroupProps = {
1138
1163
  /** Layout type for the avatar group */
1139
1164
  layout?: DapDSAvatarGroup["layout"]
@@ -1188,29 +1213,11 @@ export type DapDSBreadcrumbProps = {
1188
1213
  "aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
1189
1214
  }
1190
1215
 
1191
- export type DapDSAccordionProps = {
1192
- /** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
1193
- size?: DapDSAccordion["size"]
1194
- /** Responsive size map (e.g. "md:lg") */
1195
- sizeMap?: DapDSAccordion["sizeMap"]
1196
- /** When "true", size is taken from the parent card if present. */
1197
- parentSized?: DapDSAccordion["parentSized"]
1198
- /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
1199
- heading?: DapDSAccordion["heading"]
1200
- /** The heading level of the accordion. Default is `4`. */
1201
- headingLevel?: DapDSAccordion["headingLevel"]
1202
- /** Whether the accordion is opened. Default is `false`. */
1203
- opened?: DapDSAccordion["opened"]
1204
- /** The location of the icon. Default is `right`. */
1205
- iconLocation?: DapDSAccordion["iconLocation"]
1206
- /** The variant of the accordion. */
1207
- variant?: DapDSAccordion["variant"]
1208
- /** Whether the accordion is the last item. */
1209
- lastItem?: DapDSAccordion["lastItem"]
1210
- /** Whether the accordion is disabled. */
1211
- disabled?: DapDSAccordion["disabled"]
1212
- /** Whether the accordion is in loading state. */
1213
- loading?: DapDSAccordion["loading"]
1216
+ export type DapDSAccordionGroupProps = {
1217
+ /** Whether to close other accordions when one is opened. */
1218
+ autoClose?: DapDSAccordionGroup["autoClose"]
1219
+ /** The variant of the accordion */
1220
+ variant?: DapDSAccordionGroup["variant"]
1214
1221
  }
1215
1222
 
1216
1223
  export type DapDSAvatarProps = {
@@ -1240,13 +1247,6 @@ export type DapDSAvatarProps = {
1240
1247
  sizeMap?: DapDSAvatar["sizeMap"]
1241
1248
  }
1242
1249
 
1243
- export type DapDSAccordionGroupProps = {
1244
- /** Whether to close other accordions when one is opened. */
1245
- autoClose?: DapDSAccordionGroup["autoClose"]
1246
- /** The variant of the accordion */
1247
- variant?: DapDSAccordionGroup["variant"]
1248
- }
1249
-
1250
1250
  export type DapDSBreadcrumbItemProps = {
1251
1251
  /** The URL of the breadcrumb item. */
1252
1252
  href?: DapDSBreadcrumbItem["href"]
@@ -1260,6 +1260,25 @@ export type DapDSBreadcrumbItemProps = {
1260
1260
  variant?: DapDSBreadcrumbItem["variant"]
1261
1261
  }
1262
1262
 
1263
+ export type DapDSCalloutProps = {
1264
+ /** The variant of the callout */
1265
+ variant?: DapDSCallout["variant"]
1266
+ /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1267
+ alignment?: DapDSCallout["alignment"]
1268
+ /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1269
+ shade?: DapDSCallout["shade"]
1270
+ /** If the callout has a border */
1271
+ noBorder?: DapDSCallout["noBorder"]
1272
+ /** If the callout has a close button */
1273
+ closeable?: DapDSCallout["closeable"]
1274
+ /** The header of the callout */
1275
+ title?: DapDSCallout["title"]
1276
+ /** The label of the close button */
1277
+ closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1278
+ /** If the callout is opened */
1279
+ opened?: DapDSCallout["opened"]
1280
+ }
1281
+
1263
1282
  export type DapDSButtonProps = {
1264
1283
  /** The visual style variant of the button */
1265
1284
  variant?: DapDSButton["variant"]
@@ -1349,23 +1368,55 @@ export type DapDSCalendarProps = {
1349
1368
  shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
1350
1369
  }
1351
1370
 
1352
- export type DapDSCalloutProps = {
1353
- /** The variant of the callout */
1354
- variant?: DapDSCallout["variant"]
1355
- /** The alignment of the callout. Can be `vertical` or `horizontal`. */
1356
- alignment?: DapDSCallout["alignment"]
1357
- /** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
1358
- shade?: DapDSCallout["shade"]
1359
- /** If the callout has a border */
1360
- noBorder?: DapDSCallout["noBorder"]
1361
- /** If the callout has a close button */
1362
- closeable?: DapDSCallout["closeable"]
1363
- /** The header of the callout */
1364
- title?: DapDSCallout["title"]
1365
- /** The label of the close button */
1366
- closeButtonLabel?: DapDSCallout["closeButtonLabel"]
1367
- /** If the callout is opened */
1368
- opened?: DapDSCallout["opened"]
1371
+ export type DapDSCheckboxProps = {
1372
+ /** Whether the checkbox is indeterminate */
1373
+ indeterminate?: DapDSCheckbox["indeterminate"]
1374
+ /** Whether the checkbox should prevent the default action */
1375
+ preventDefault?: DapDSCheckbox["preventDefault"]
1376
+ /** This sets up border around the checkbox, when true. */
1377
+ border?: DapDSCheckbox["border"]
1378
+ /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1379
+ readonly?: DapDSCheckbox["readonly"]
1380
+ /** The type of the checkbox */
1381
+ type?: DapDSCheckbox["type"]
1382
+ /** */
1383
+ focusElement?: DapDSCheckbox["focusElement"]
1384
+ /** */
1385
+ feedbackId?: DapDSCheckbox["feedbackId"]
1386
+ /** The name of the checkbox. */
1387
+ name?: DapDSCheckbox["name"]
1388
+ /** The value of the checkbox. */
1389
+ value?: DapDSCheckbox["value"]
1390
+ /** Whether the checkbox is checked. */
1391
+ checked?: DapDSCheckbox["checked"]
1392
+ /** The label of the checkbox. */
1393
+ label?: DapDSCheckbox["label"]
1394
+ /** The description of the checkbox. */
1395
+ description?: DapDSCheckbox["description"]
1396
+ /** Whether the checkbox is disabled. */
1397
+ disabled?: DapDSCheckbox["disabled"]
1398
+ /** Whether the checkbox is required. */
1399
+ required?: DapDSCheckbox["required"]
1400
+ /** The size of the checkbox. Default is 'sm'. */
1401
+ size?: DapDSCheckbox["size"]
1402
+ /** Responsive size map (e.g. "md:lg"). */
1403
+ sizeMap?: DapDSCheckbox["sizeMap"]
1404
+ /** The placement of the label. */
1405
+ labelPlacement?: DapDSCheckbox["labelPlacement"]
1406
+ /** The placement of the description. */
1407
+ descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1408
+ /** The weight of the label. */
1409
+ subtle?: DapDSCheckbox["subtle"]
1410
+ /** The feedback of the checkbox. */
1411
+ feedback?: DapDSCheckbox["feedback"]
1412
+ /** The feedback type of the checkbox. */
1413
+ feedbackType?: DapDSCheckbox["feedbackType"]
1414
+ /** The invalid state of the checkbox. */
1415
+ invalid?: DapDSCheckbox["invalid"]
1416
+ /** The optional state of the checkbox. */
1417
+ optional?: DapDSCheckbox["optional"]
1418
+ /** The optional label of the checkbox. */
1419
+ optionalLabel?: DapDSCheckbox["optionalLabel"]
1369
1420
  }
1370
1421
 
1371
1422
  export type DapDSCardActionsProps = {
@@ -1454,57 +1505,6 @@ export type DapDSCardProps = {
1454
1505
  sizeMap?: DapDSCard["sizeMap"]
1455
1506
  }
1456
1507
 
1457
- export type DapDSCheckboxProps = {
1458
- /** Whether the checkbox is indeterminate */
1459
- indeterminate?: DapDSCheckbox["indeterminate"]
1460
- /** Whether the checkbox should prevent the default action */
1461
- preventDefault?: DapDSCheckbox["preventDefault"]
1462
- /** This sets up border around the checkbox, when true. */
1463
- border?: DapDSCheckbox["border"]
1464
- /** Whether the checkbox is readonly (cannot be changed but value is submitted with form). */
1465
- readonly?: DapDSCheckbox["readonly"]
1466
- /** The type of the checkbox */
1467
- type?: DapDSCheckbox["type"]
1468
- /** */
1469
- focusElement?: DapDSCheckbox["focusElement"]
1470
- /** */
1471
- feedbackId?: DapDSCheckbox["feedbackId"]
1472
- /** The name of the checkbox. */
1473
- name?: DapDSCheckbox["name"]
1474
- /** The value of the checkbox. */
1475
- value?: DapDSCheckbox["value"]
1476
- /** Whether the checkbox is checked. */
1477
- checked?: DapDSCheckbox["checked"]
1478
- /** The label of the checkbox. */
1479
- label?: DapDSCheckbox["label"]
1480
- /** The description of the checkbox. */
1481
- description?: DapDSCheckbox["description"]
1482
- /** Whether the checkbox is disabled. */
1483
- disabled?: DapDSCheckbox["disabled"]
1484
- /** Whether the checkbox is required. */
1485
- required?: DapDSCheckbox["required"]
1486
- /** The size of the checkbox. Default is 'sm'. */
1487
- size?: DapDSCheckbox["size"]
1488
- /** Responsive size map (e.g. "md:lg"). */
1489
- sizeMap?: DapDSCheckbox["sizeMap"]
1490
- /** The placement of the label. */
1491
- labelPlacement?: DapDSCheckbox["labelPlacement"]
1492
- /** The placement of the description. */
1493
- descriptionPlacement?: DapDSCheckbox["descriptionPlacement"]
1494
- /** The weight of the label. */
1495
- subtle?: DapDSCheckbox["subtle"]
1496
- /** The feedback of the checkbox. */
1497
- feedback?: DapDSCheckbox["feedback"]
1498
- /** The feedback type of the checkbox. */
1499
- feedbackType?: DapDSCheckbox["feedbackType"]
1500
- /** The invalid state of the checkbox. */
1501
- invalid?: DapDSCheckbox["invalid"]
1502
- /** The optional state of the checkbox. */
1503
- optional?: DapDSCheckbox["optional"]
1504
- /** The optional label of the checkbox. */
1505
- optionalLabel?: DapDSCheckbox["optionalLabel"]
1506
- }
1507
-
1508
1508
  export type DapDSChipProps = {
1509
1509
  /** Whether the chip is removeable */
1510
1510
  removeable?: DapDSChip["removeable"]
@@ -1704,15 +1704,6 @@ export type DapDSContentSwitcherProps = {
1704
1704
  value?: DapDSContentSwitcher["value"]
1705
1705
  }
1706
1706
 
1707
- export type DapDSDAPBadgeProps = {
1708
- /** The variant of the DÁP badge */
1709
- variant?: DapDSDAPBadge["variant"]
1710
- /** The size of the DÁP badge. Default is `sm`. */
1711
- size?: DapDSDAPBadge["size"]
1712
- /** Responsive size map (e.g. "md:lg"). */
1713
- sizeMap?: DapDSDAPBadge["sizeMap"]
1714
- }
1715
-
1716
1707
  export type DapDSCopyBoxInputProps = {
1717
1708
  /** The aria label of the copy button. */
1718
1709
  copyButtonAriaLabel?: DapDSCopyBoxInput["copyButtonAriaLabel"]
@@ -1758,6 +1749,15 @@ export type DapDSCopyBoxInputProps = {
1758
1749
  subtle?: DapDSCopyBoxInput["subtle"]
1759
1750
  }
1760
1751
 
1752
+ export type DapDSDAPBadgeProps = {
1753
+ /** The variant of the DÁP badge */
1754
+ variant?: DapDSDAPBadge["variant"]
1755
+ /** The size of the DÁP badge. Default is `sm`. */
1756
+ size?: DapDSDAPBadge["size"]
1757
+ /** Responsive size map (e.g. "md:lg"). */
1758
+ sizeMap?: DapDSDAPBadge["sizeMap"]
1759
+ }
1760
+
1761
1761
  export type DapDSDataTableProps<T> = {
1762
1762
  /** Row key to use for row selection, this should be a unique key for each row */
1763
1763
  rowKey?: DapDSDataTable<T>["rowKey"]
@@ -2476,23 +2476,6 @@ export type DapDSNotificationBadgeProps = {
2476
2476
  "force-circular"?: DapDSNotificationBadge["forceCircular"]
2477
2477
  }
2478
2478
 
2479
- export type DapDSOfficialWebsiteBannerProps = {
2480
- /** The size of the official website banner. Default is `sm`. */
2481
- size?: DapDSOfficialWebsiteBanner["size"]
2482
- /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
2483
- heading?: DapDSOfficialWebsiteBanner["heading"]
2484
- /** The heading level of the accordion. Default is `4`. */
2485
- headingLevel?: DapDSOfficialWebsiteBanner["headingLevel"]
2486
- /** Whether the accordion is opened. Default is `false`. */
2487
- opened?: DapDSOfficialWebsiteBanner["opened"]
2488
- /** The location of the icon. Default is `right`. */
2489
- iconLocation?: DapDSOfficialWebsiteBanner["iconLocation"]
2490
- /** The variant of the accordion. */
2491
- variant?: DapDSOfficialWebsiteBanner["variant"]
2492
- /** Whether the accordion is the last item. */
2493
- lastItem?: DapDSOfficialWebsiteBanner["lastItem"]
2494
- }
2495
-
2496
2479
  export type DapDSNumberInputProps = {
2497
2480
  /** The thousand separator of the input. */
2498
2481
  thousandSeparator?: DapDSNumberInput["thousandSeparator"]
@@ -2562,6 +2545,23 @@ export type DapDSNumberInputProps = {
2562
2545
  disableEnter?: DapDSNumberInput["disableEnter"]
2563
2546
  }
2564
2547
 
2548
+ export type DapDSOfficialWebsiteBannerProps = {
2549
+ /** The size of the official website banner. Default is `sm`. */
2550
+ size?: DapDSOfficialWebsiteBanner["size"]
2551
+ /** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
2552
+ heading?: DapDSOfficialWebsiteBanner["heading"]
2553
+ /** The heading level of the accordion. Default is `4`. */
2554
+ headingLevel?: DapDSOfficialWebsiteBanner["headingLevel"]
2555
+ /** Whether the accordion is opened. Default is `false`. */
2556
+ opened?: DapDSOfficialWebsiteBanner["opened"]
2557
+ /** The location of the icon. Default is `right`. */
2558
+ iconLocation?: DapDSOfficialWebsiteBanner["iconLocation"]
2559
+ /** The variant of the accordion. */
2560
+ variant?: DapDSOfficialWebsiteBanner["variant"]
2561
+ /** Whether the accordion is the last item. */
2562
+ lastItem?: DapDSOfficialWebsiteBanner["lastItem"]
2563
+ }
2564
+
2565
2565
  export type DapDSOptionGroupProps = {
2566
2566
  /** The label of the option group (displayed in native optgroup). */
2567
2567
  label?: DapDSOptionGroup["label"]
@@ -2997,17 +2997,6 @@ export type DapDSSideNavProps = {
2997
2997
  size?: DapDSSideNav["size"]
2998
2998
  }
2999
2999
 
3000
- export type DapDSSkipLinkProps = {
3001
- /** The placement of the skip link. */
3002
- placement?: DapDSSkipLink["placement"]
3003
- /** The href of the skip link */
3004
- href?: DapDSSkipLink["href"]
3005
- /** The size of the skip link */
3006
- size?: DapDSSkipLink["size"]
3007
- /** Whether the skip link should have an underline */
3008
- noUnderline?: DapDSSkipLink["noUnderline"]
3009
- }
3010
-
3011
3000
  export type DapDSSkeletonProps = {
3012
3001
  /** The variant of the skeleton. */
3013
3002
  variant?: DapDSSkeleton["variant"]
@@ -3024,6 +3013,17 @@ Should be a valid CSS keyframes string without the */
3024
3013
  "custom-keyframes"?: DapDSSkeleton["customKeyframes"]
3025
3014
  }
3026
3015
 
3016
+ export type DapDSSkipLinkProps = {
3017
+ /** The placement of the skip link. */
3018
+ placement?: DapDSSkipLink["placement"]
3019
+ /** The href of the skip link */
3020
+ href?: DapDSSkipLink["href"]
3021
+ /** The size of the skip link */
3022
+ size?: DapDSSkipLink["size"]
3023
+ /** Whether the skip link should have an underline */
3024
+ noUnderline?: DapDSSkipLink["noUnderline"]
3025
+ }
3026
+
3027
3027
  export type DapDSSnackbarMessageProps = {
3028
3028
  /** The actions of the snackbar item. */
3029
3029
  actions?: DapDSSnackbarMessage["actions"]
@@ -3548,26 +3548,26 @@ export type BuildingsHome6LineProps = {
3548
3548
  focusable?: BuildingsHome6Line["focusable"]
3549
3549
  }
3550
3550
 
3551
- export type ArrowsArrowDownLineProps = {
3551
+ export type ArrowsArrowDownSFillProps = {
3552
3552
  /** (optional) The width and height in pixels */
3553
- size?: ArrowsArrowDownLine["size"]
3553
+ size?: ArrowsArrowDownSFill["size"]
3554
3554
  /** (optional) Sets the icon color via the `fill` attribute */
3555
- selected?: ArrowsArrowDownLine["selected"]
3555
+ selected?: ArrowsArrowDownSFill["selected"]
3556
3556
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3557
- accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3557
+ accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3558
3558
  /** (optional) If `true` the icon can receive focus */
3559
- focusable?: ArrowsArrowDownLine["focusable"]
3559
+ focusable?: ArrowsArrowDownSFill["focusable"]
3560
3560
  }
3561
3561
 
3562
- export type ArrowsArrowDownSFillProps = {
3562
+ export type ArrowsArrowDownLineProps = {
3563
3563
  /** (optional) The width and height in pixels */
3564
- size?: ArrowsArrowDownSFill["size"]
3564
+ size?: ArrowsArrowDownLine["size"]
3565
3565
  /** (optional) Sets the icon color via the `fill` attribute */
3566
- selected?: ArrowsArrowDownSFill["selected"]
3566
+ selected?: ArrowsArrowDownLine["selected"]
3567
3567
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3568
- accessibilityTitle?: ArrowsArrowDownSFill["accessibilityTitle"]
3568
+ accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3569
3569
  /** (optional) If `true` the icon can receive focus */
3570
- focusable?: ArrowsArrowDownSFill["focusable"]
3570
+ focusable?: ArrowsArrowDownLine["focusable"]
3571
3571
  }
3572
3572
 
3573
3573
  export type ArrowsArrowDownSLineProps = {
@@ -3625,26 +3625,26 @@ export type ArrowsArrowLeftSFillProps = {
3625
3625
  focusable?: ArrowsArrowLeftSFill["focusable"]
3626
3626
  }
3627
3627
 
3628
- export type ArrowsArrowLeftSLineProps = {
3628
+ export type ArrowsArrowRightDownLineProps = {
3629
3629
  /** (optional) The width and height in pixels */
3630
- size?: ArrowsArrowLeftSLine["size"]
3630
+ size?: ArrowsArrowRightDownLine["size"]
3631
3631
  /** (optional) Sets the icon color via the `fill` attribute */
3632
- selected?: ArrowsArrowLeftSLine["selected"]
3632
+ selected?: ArrowsArrowRightDownLine["selected"]
3633
3633
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3634
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3634
+ accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
3635
3635
  /** (optional) If `true` the icon can receive focus */
3636
- focusable?: ArrowsArrowLeftSLine["focusable"]
3636
+ focusable?: ArrowsArrowRightDownLine["focusable"]
3637
3637
  }
3638
3638
 
3639
- export type ArrowsArrowRightDownLineProps = {
3639
+ export type ArrowsArrowLeftSLineProps = {
3640
3640
  /** (optional) The width and height in pixels */
3641
- size?: ArrowsArrowRightDownLine["size"]
3641
+ size?: ArrowsArrowLeftSLine["size"]
3642
3642
  /** (optional) Sets the icon color via the `fill` attribute */
3643
- selected?: ArrowsArrowRightDownLine["selected"]
3643
+ selected?: ArrowsArrowLeftSLine["selected"]
3644
3644
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3645
- accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
3645
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3646
3646
  /** (optional) If `true` the icon can receive focus */
3647
- focusable?: ArrowsArrowRightDownLine["focusable"]
3647
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3648
3648
  }
3649
3649
 
3650
3650
  export type ArrowsArrowLeftUpLineProps = {
@@ -3680,6 +3680,17 @@ export type ArrowsArrowRightLineProps = {
3680
3680
  focusable?: ArrowsArrowRightLine["focusable"]
3681
3681
  }
3682
3682
 
3683
+ export type ArrowsArrowRightSFillProps = {
3684
+ /** (optional) The width and height in pixels */
3685
+ size?: ArrowsArrowRightSFill["size"]
3686
+ /** (optional) Sets the icon color via the `fill` attribute */
3687
+ selected?: ArrowsArrowRightSFill["selected"]
3688
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3689
+ accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
3690
+ /** (optional) If `true` the icon can receive focus */
3691
+ focusable?: ArrowsArrowRightSFill["focusable"]
3692
+ }
3693
+
3683
3694
  export type ArrowsArrowRightSLineProps = {
3684
3695
  /** (optional) The width and height in pixels */
3685
3696
  size?: ArrowsArrowRightSLine["size"]
@@ -3702,17 +3713,6 @@ export type ArrowsArrowRightUpLineProps = {
3702
3713
  focusable?: ArrowsArrowRightUpLine["focusable"]
3703
3714
  }
3704
3715
 
3705
- export type ArrowsArrowRightSFillProps = {
3706
- /** (optional) The width and height in pixels */
3707
- size?: ArrowsArrowRightSFill["size"]
3708
- /** (optional) Sets the icon color via the `fill` attribute */
3709
- selected?: ArrowsArrowRightSFill["selected"]
3710
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3711
- accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
3712
- /** (optional) If `true` the icon can receive focus */
3713
- focusable?: ArrowsArrowRightSFill["focusable"]
3714
- }
3715
-
3716
3716
  export type ArrowsArrowUpLineProps = {
3717
3717
  /** (optional) The width and height in pixels */
3718
3718
  size?: ArrowsArrowUpLine["size"]
@@ -3889,17 +3889,6 @@ export type DocumentFolderOpenLineProps = {
3889
3889
  focusable?: DocumentFolderOpenLine["focusable"]
3890
3890
  }
3891
3891
 
3892
- export type EditorSeparatorProps = {
3893
- /** (optional) The width and height in pixels */
3894
- size?: EditorSeparator["size"]
3895
- /** (optional) Sets the icon color via the `fill` attribute */
3896
- selected?: EditorSeparator["selected"]
3897
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3898
- accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3899
- /** (optional) If `true` the icon can receive focus */
3900
- focusable?: EditorSeparator["focusable"]
3901
- }
3902
-
3903
3892
  export type HealthHeartFillProps = {
3904
3893
  /** (optional) The width and height in pixels */
3905
3894
  size?: HealthHeartFill["size"]
@@ -3922,6 +3911,17 @@ export type HealthHeartLineProps = {
3922
3911
  focusable?: HealthHeartLine["focusable"]
3923
3912
  }
3924
3913
 
3914
+ export type EditorSeparatorProps = {
3915
+ /** (optional) The width and height in pixels */
3916
+ size?: EditorSeparator["size"]
3917
+ /** (optional) Sets the icon color via the `fill` attribute */
3918
+ selected?: EditorSeparator["selected"]
3919
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3920
+ accessibilityTitle?: EditorSeparator["accessibilityTitle"]
3921
+ /** (optional) If `true` the icon can receive focus */
3922
+ focusable?: EditorSeparator["focusable"]
3923
+ }
3924
+
3925
3925
  export type OthersCookieLineProps = {
3926
3926
  /** (optional) The width and height in pixels */
3927
3927
  size?: OthersCookieLine["size"]
@@ -4329,26 +4329,26 @@ export type SystemMenuLineSProps = {
4329
4329
  focusable?: SystemMenuLineS["focusable"]
4330
4330
  }
4331
4331
 
4332
- export type SystemMoreLineProps = {
4332
+ export type SystemMore2LineProps = {
4333
4333
  /** (optional) The width and height in pixels */
4334
- size?: SystemMoreLine["size"]
4334
+ size?: SystemMore2Line["size"]
4335
4335
  /** (optional) Sets the icon color via the `fill` attribute */
4336
- selected?: SystemMoreLine["selected"]
4336
+ selected?: SystemMore2Line["selected"]
4337
4337
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4338
- accessibilityTitle?: SystemMoreLine["accessibilityTitle"]
4338
+ accessibilityTitle?: SystemMore2Line["accessibilityTitle"]
4339
4339
  /** (optional) If `true` the icon can receive focus */
4340
- focusable?: SystemMoreLine["focusable"]
4340
+ focusable?: SystemMore2Line["focusable"]
4341
4341
  }
4342
4342
 
4343
- export type SystemMore2LineProps = {
4343
+ export type SystemMoreLineProps = {
4344
4344
  /** (optional) The width and height in pixels */
4345
- size?: SystemMore2Line["size"]
4345
+ size?: SystemMoreLine["size"]
4346
4346
  /** (optional) Sets the icon color via the `fill` attribute */
4347
- selected?: SystemMore2Line["selected"]
4347
+ selected?: SystemMoreLine["selected"]
4348
4348
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4349
- accessibilityTitle?: SystemMore2Line["accessibilityTitle"]
4349
+ accessibilityTitle?: SystemMoreLine["accessibilityTitle"]
4350
4350
  /** (optional) If `true` the icon can receive focus */
4351
- focusable?: SystemMore2Line["focusable"]
4351
+ focusable?: SystemMoreLine["focusable"]
4352
4352
  }
4353
4353
 
4354
4354
  export type SystemSearchLineProps = {
@@ -4517,7 +4517,33 @@ declare module 'vue' {
4517
4517
  * - **link-base** - The base of the link part.
4518
4518
  * - **text** - The text of the anchor heading.
4519
4519
  */
4520
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4520
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4521
+ /**
4522
+ * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4523
+ *
4524
+ * ### Events:
4525
+ * - **dds-opened** - Event fired when the accordion is opened.
4526
+ * - **dds-closed** - Event fired when the accordion is closed.
4527
+ *
4528
+ * ### Slots:
4529
+ * - **default** - The content of the accordion.
4530
+ * - **heading** - The heading of the accordion.
4531
+ * - **icon-opened** - The icon when the accordion is opened.
4532
+ * - **icon-closed** - The icon when the accordion is closed.
4533
+ *
4534
+ * ### CSS Parts:
4535
+ * - **base** - The main accordion container.
4536
+ * - **heading** - The heading of the accordion.
4537
+ * - **button** - The button of the accordion.
4538
+ * - **content** - The content of the accordion.
4539
+ * - **content-container** - The container of the accordion content.
4540
+ * - **icon-wrapper** - The icon wrapper of the accordion.
4541
+ * - **open-icon** - The icon when the accordion is opened.
4542
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
4543
+ * - **close-icon** - The icon when the accordion is closed.
4544
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
4545
+ */
4546
+ 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4521
4547
  /**
4522
4548
  * Avatar group component displays multiple avatars in an organized layout with overflow management.
4523
4549
  *
@@ -4584,31 +4610,15 @@ declare module 'vue' {
4584
4610
  */
4585
4611
  'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
4586
4612
  /**
4587
- * An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
4588
- *
4589
- * ### Events:
4590
- * - **dds-opened** - Event fired when the accordion is opened.
4591
- * - **dds-closed** - Event fired when the accordion is closed.
4613
+ * An accordion group is a collection of accordion components.
4592
4614
  *
4593
4615
  * ### Slots:
4594
- * - **default** - The content of the accordion.
4595
- * - **heading** - The heading of the accordion.
4596
- * - **icon-opened** - The icon when the accordion is opened.
4597
- * - **icon-closed** - The icon when the accordion is closed.
4616
+ * - **default** - The content of the accordion group.
4598
4617
  *
4599
4618
  * ### CSS Parts:
4600
- * - **base** - The main accordion container.
4601
- * - **heading** - The heading of the accordion.
4602
- * - **button** - The button of the accordion.
4603
- * - **content** - The content of the accordion.
4604
- * - **content-container** - The container of the accordion content.
4605
- * - **icon-wrapper** - The icon wrapper of the accordion.
4606
- * - **open-icon** - The icon when the accordion is opened.
4607
- * - **open-icon-base** - The base of the icon when the accordion is opened.
4608
- * - **close-icon** - The icon when the accordion is closed.
4609
- * - **close-icon-base** - The base of the icon when the accordion is closed.
4619
+ * - **base** - The main accordion group container.
4610
4620
  */
4611
- 'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
4621
+ 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4612
4622
  /**
4613
4623
  * Avatar component can be used to display user profile images, initials, or icons.
4614
4624
  *
@@ -4629,16 +4639,6 @@ declare module 'vue' {
4629
4639
  * - **loading** - The loading indicator.
4630
4640
  */
4631
4641
  'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
4632
- /**
4633
- * An accordion group is a collection of accordion components.
4634
- *
4635
- * ### Slots:
4636
- * - **default** - The content of the accordion group.
4637
- *
4638
- * ### CSS Parts:
4639
- * - **base** - The main accordion group container.
4640
- */
4641
- 'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4642
4642
  /**
4643
4643
  * A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
4644
4644
  *
@@ -4654,6 +4654,30 @@ declare module 'vue' {
4654
4654
  * - **separator** - The separator of the breadcrumb item.
4655
4655
  */
4656
4656
  'dap-ds-breadcrumb-item': DefineCustomElement<DapDSBreadcrumbItem, DapDSBreadcrumbItemProps, {}>
4657
+ /**
4658
+ *
4659
+ *
4660
+ * ### Events:
4661
+ * - **dds-close** - Fired when the close button is clicked.
4662
+ *
4663
+ * ### Slots:
4664
+ * - **default** - The content of the callout.
4665
+ * - **title** - The title of the callout.
4666
+ * - **icon** - The icon of the callout.
4667
+ * - **actions** - The actions of the callout.
4668
+ * - **close** - The close button of the callout.
4669
+ *
4670
+ * ### CSS Parts:
4671
+ * - **base** - The main callout container.
4672
+ * - **content** - The content of the callout.
4673
+ * - **card-content** - The content of the card.
4674
+ * - **icon** - The icon of the callout.
4675
+ * - **title** - The title of the callout.
4676
+ * - **description** - The description of the callout.
4677
+ * - **actions** - The actions of the callout.
4678
+ * - **close** - The close button of the callout.
4679
+ */
4680
+ 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4657
4681
  /**
4658
4682
  * A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
4659
4683
  *
@@ -4703,29 +4727,26 @@ declare module 'vue' {
4703
4727
  */
4704
4728
  'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
4705
4729
  /**
4706
- *
4730
+ * A checkbox is a form element that allows the user to select one or more options from a set.
4707
4731
  *
4708
4732
  * ### Events:
4709
- * - **dds-close** - Fired when the close button is clicked.
4710
- *
4711
- * ### Slots:
4712
- * - **default** - The content of the callout.
4713
- * - **title** - The title of the callout.
4714
- * - **icon** - The icon of the callout.
4715
- * - **actions** - The actions of the callout.
4716
- * - **close** - The close button of the callout.
4733
+ * - **dds-change** - Fired when the checkbox is checked or unchecked.
4734
+ * - **dds-blur** - Emitted when the checkbox loses focus.
4735
+ * - **dds-focus** - Emitted when the checkbox gains focus.
4736
+ * - **dds-input** - Emitted when the checkbox receives input.
4717
4737
  *
4718
4738
  * ### CSS Parts:
4719
- * - **base** - The main callout container.
4720
- * - **content** - The content of the callout.
4721
- * - **card-content** - The content of the card.
4722
- * - **icon** - The icon of the callout.
4723
- * - **title** - The title of the callout.
4724
- * - **description** - The description of the callout.
4725
- * - **actions** - The actions of the callout.
4726
- * - **close** - The close button of the callout.
4739
+ * - **base** - The main checkbox container.
4740
+ * - **label** - The label of the checkbox.
4741
+ * - **input** - The input of the checkbox.
4742
+ * - **control** - The control of the checkbox.
4743
+ * - **icon** - The icon of the checkbox.
4744
+ * - **icon-base** - The base icon container.
4745
+ * - **label-container** - The label container of the checkbox.
4746
+ * - **description** - The description of the checkbox.
4747
+ * - **readonly** - The readonly state of the checkbox.
4727
4748
  */
4728
- 'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
4749
+ 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4729
4750
  /**
4730
4751
  * A card actions is a container for actions in a card.
4731
4752
  *
@@ -4786,27 +4807,6 @@ declare module 'vue' {
4786
4807
  * - **base** - The main card container.
4787
4808
  */
4788
4809
  'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
4789
- /**
4790
- * A checkbox is a form element that allows the user to select one or more options from a set.
4791
- *
4792
- * ### Events:
4793
- * - **dds-change** - Fired when the checkbox is checked or unchecked.
4794
- * - **dds-blur** - Emitted when the checkbox loses focus.
4795
- * - **dds-focus** - Emitted when the checkbox gains focus.
4796
- * - **dds-input** - Emitted when the checkbox receives input.
4797
- *
4798
- * ### CSS Parts:
4799
- * - **base** - The main checkbox container.
4800
- * - **label** - The label of the checkbox.
4801
- * - **input** - The input of the checkbox.
4802
- * - **control** - The control of the checkbox.
4803
- * - **icon** - The icon of the checkbox.
4804
- * - **icon-base** - The base icon container.
4805
- * - **label-container** - The label container of the checkbox.
4806
- * - **description** - The description of the checkbox.
4807
- * - **readonly** - The readonly state of the checkbox.
4808
- */
4809
- 'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
4810
4810
  /**
4811
4811
  * A chip is a small status descriptor for UI elements.
4812
4812
  *
@@ -4946,18 +4946,6 @@ declare module 'vue' {
4946
4946
  * - **base** - The main content switcher container.
4947
4947
  */
4948
4948
  'dap-ds-content-switcher': DefineCustomElement<DapDSContentSwitcher, DapDSContentSwitcherProps, DapDSContentSwitcherEvents>
4949
- /**
4950
- * A DÁP badge is a brand element showing the use of this system design library.
4951
- *
4952
- * ### Slots:
4953
- * - **default** - Description of badge *
4954
- *
4955
- * ### CSS Parts:
4956
- * - **base** - Main badge container
4957
- * - **icon** - Badge icon
4958
- * - **text** - Badge text
4959
- */
4960
- 'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
4961
4949
  /**
4962
4950
  * A copybox input is a field for copying an input value.
4963
4951
  *
@@ -4980,6 +4968,18 @@ declare module 'vue' {
4980
4968
  * - **copy-icon-base** - The base of the copy icon.
4981
4969
  */
4982
4970
  'dap-ds-copybox-input': DefineCustomElement<DapDSCopyBoxInput, DapDSCopyBoxInputProps, DapDSCopyBoxInputEvents>
4971
+ /**
4972
+ * A DÁP badge is a brand element showing the use of this system design library.
4973
+ *
4974
+ * ### Slots:
4975
+ * - **default** - Description of badge *
4976
+ *
4977
+ * ### CSS Parts:
4978
+ * - **base** - Main badge container
4979
+ * - **icon** - Badge icon
4980
+ * - **text** - Badge text
4981
+ */
4982
+ 'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
4983
4983
  /**
4984
4984
  * A data table is a component that displays data in a tabular format.
4985
4985
  *
@@ -5341,32 +5341,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
5341
5341
  * - **noty** - The notification badge container.
5342
5342
  */
5343
5343
  'dap-ds-notification-badge': DefineCustomElement<DapDSNotificationBadge, DapDSNotificationBadgeProps, {}>
5344
- /**
5345
- * An official website banner is a banner that displays that the website is an official website.
5346
- *
5347
- * ### Events:
5348
- * - **dds-opened** - Event fired when the accordion is opened.
5349
- * - **dds-closed** - Event fired when the accordion is closed.
5350
- *
5351
- * ### Slots:
5352
- * - **default** - The content of the accordion.
5353
- * - **heading** - The heading of the accordion.
5354
- * - **icon-opened** - The icon when the accordion is opened.
5355
- * - **icon-closed** - The icon when the accordion is closed.
5356
- *
5357
- * ### CSS Parts:
5358
- * - **base** - The main accordion container.
5359
- * - **heading** - The heading of the accordion.
5360
- * - **button** - The button of the accordion.
5361
- * - **content** - The content of the accordion.
5362
- * - **content-container** - The container of the accordion content.
5363
- * - **icon-wrapper** - The icon wrapper of the accordion.
5364
- * - **open-icon** - The icon when the accordion is opened.
5365
- * - **open-icon-base** - The base of the icon when the accordion is opened.
5366
- * - **close-icon** - The icon when the accordion is closed.
5367
- * - **close-icon-base** - The base of the icon when the accordion is closed.
5368
- */
5369
- 'dap-ds-official-website-banner': DefineCustomElement<DapDSOfficialWebsiteBanner, DapDSOfficialWebsiteBannerProps, DapDSOfficialWebsiteBannerEvents>
5370
5344
  /**
5371
5345
  * A number input component.
5372
5346
  *
@@ -5399,6 +5373,32 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
5399
5373
  * - **increment-button-content** - The content of the increment button.
5400
5374
  */
5401
5375
  'dap-ds-number-input': DefineCustomElement<DapDSNumberInput, DapDSNumberInputProps, DapDSNumberInputEvents>
5376
+ /**
5377
+ * An official website banner is a banner that displays that the website is an official website.
5378
+ *
5379
+ * ### Events:
5380
+ * - **dds-opened** - Event fired when the accordion is opened.
5381
+ * - **dds-closed** - Event fired when the accordion is closed.
5382
+ *
5383
+ * ### Slots:
5384
+ * - **default** - The content of the accordion.
5385
+ * - **heading** - The heading of the accordion.
5386
+ * - **icon-opened** - The icon when the accordion is opened.
5387
+ * - **icon-closed** - The icon when the accordion is closed.
5388
+ *
5389
+ * ### CSS Parts:
5390
+ * - **base** - The main accordion container.
5391
+ * - **heading** - The heading of the accordion.
5392
+ * - **button** - The button of the accordion.
5393
+ * - **content** - The content of the accordion.
5394
+ * - **content-container** - The container of the accordion content.
5395
+ * - **icon-wrapper** - The icon wrapper of the accordion.
5396
+ * - **open-icon** - The icon when the accordion is opened.
5397
+ * - **open-icon-base** - The base of the icon when the accordion is opened.
5398
+ * - **close-icon** - The icon when the accordion is closed.
5399
+ * - **close-icon-base** - The base of the icon when the accordion is closed.
5400
+ */
5401
+ 'dap-ds-official-website-banner': DefineCustomElement<DapDSOfficialWebsiteBanner, DapDSOfficialWebsiteBannerProps, DapDSOfficialWebsiteBannerEvents>
5402
5402
  /**
5403
5403
  * An option group is a container for grouping related option items.
5404
5404
  Used with dap-ds-select to create grouped options that render as native optgroup elements.
@@ -5704,6 +5704,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5704
5704
  * - **menu** - The menu of the side navigation.
5705
5705
  */
5706
5706
  'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
5707
+ /**
5708
+ * A skeleton loader component for displaying placeholder content while loading.
5709
+ *
5710
+ * ### CSS Parts:
5711
+ * - **base** - The main skeleton container.
5712
+ */
5713
+ 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5707
5714
  /**
5708
5715
  * A skip link is a link that allows keyboard users to skip to the main content of a page.
5709
5716
  *
@@ -5716,13 +5723,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
5716
5723
  * - **high-contrast** - The high contrast outline container.
5717
5724
  */
5718
5725
  'dap-ds-skip-link': DefineCustomElement<DapDSSkipLink, DapDSSkipLinkProps, {}>
5719
- /**
5720
- * A skeleton loader component for displaying placeholder content while loading.
5721
- *
5722
- * ### CSS Parts:
5723
- * - **base** - The main skeleton container.
5724
- */
5725
- 'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
5726
5726
  /**
5727
5727
  * The Snackbar component shows a sliding message to the user.
5728
5728
  *
@@ -6071,14 +6071,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6071
6071
  * ### CSS Parts:
6072
6072
  * - **base** - The main icon container.
6073
6073
  */
6074
- 'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
6074
+ 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
6075
6075
  /**
6076
6076
  * An icon
6077
6077
  *
6078
6078
  * ### CSS Parts:
6079
6079
  * - **base** - The main icon container.
6080
6080
  */
6081
- 'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
6081
+ 'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
6082
6082
  /**
6083
6083
  * An icon
6084
6084
  *
@@ -6120,14 +6120,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6120
6120
  * ### CSS Parts:
6121
6121
  * - **base** - The main icon container.
6122
6122
  */
6123
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6123
+ 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6124
6124
  /**
6125
6125
  * An icon
6126
6126
  *
6127
6127
  * ### CSS Parts:
6128
6128
  * - **base** - The main icon container.
6129
6129
  */
6130
- 'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
6130
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6131
6131
  /**
6132
6132
  * An icon
6133
6133
  *
@@ -6155,21 +6155,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6155
6155
  * ### CSS Parts:
6156
6156
  * - **base** - The main icon container.
6157
6157
  */
6158
- 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6158
+ 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6159
6159
  /**
6160
6160
  * An icon
6161
6161
  *
6162
6162
  * ### CSS Parts:
6163
6163
  * - **base** - The main icon container.
6164
6164
  */
6165
- 'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
6165
+ 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6166
6166
  /**
6167
6167
  * An icon
6168
6168
  *
6169
6169
  * ### CSS Parts:
6170
6170
  * - **base** - The main icon container.
6171
6171
  */
6172
- 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6172
+ 'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
6173
6173
  /**
6174
6174
  * An icon
6175
6175
  *
@@ -6288,21 +6288,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6288
6288
  * ### CSS Parts:
6289
6289
  * - **base** - The main icon container.
6290
6290
  */
6291
- 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6291
+ 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6292
6292
  /**
6293
6293
  * An icon
6294
6294
  *
6295
6295
  * ### CSS Parts:
6296
6296
  * - **base** - The main icon container.
6297
6297
  */
6298
- 'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
6298
+ 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6299
6299
  /**
6300
6300
  * An icon
6301
6301
  *
6302
6302
  * ### CSS Parts:
6303
6303
  * - **base** - The main icon container.
6304
6304
  */
6305
- 'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
6305
+ 'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
6306
6306
  /**
6307
6307
  * An icon
6308
6308
  *
@@ -6568,14 +6568,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6568
6568
  * ### CSS Parts:
6569
6569
  * - **base** - The main icon container.
6570
6570
  */
6571
- 'dap-ds-icon-more-line': DefineCustomElement<SystemMoreLine, SystemMoreLineProps, {}>
6571
+ 'dap-ds-icon-more-2-line': DefineCustomElement<SystemMore2Line, SystemMore2LineProps, {}>
6572
6572
  /**
6573
6573
  * An icon
6574
6574
  *
6575
6575
  * ### CSS Parts:
6576
6576
  * - **base** - The main icon container.
6577
6577
  */
6578
- 'dap-ds-icon-more-2-line': DefineCustomElement<SystemMore2Line, SystemMore2LineProps, {}>
6578
+ 'dap-ds-icon-more-line': DefineCustomElement<SystemMoreLine, SystemMoreLineProps, {}>
6579
6579
  /**
6580
6580
  * An icon
6581
6581
  *
@@ -6682,25 +6682,25 @@ declare global {
6682
6682
  namespace JSX {
6683
6683
  interface IntrinsicElements {
6684
6684
  'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6685
+ 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6685
6686
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6686
6687
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6687
6688
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6688
6689
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6689
- 'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6690
- 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6691
6690
  'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6691
+ 'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6692
6692
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6693
+ 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6693
6694
  'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6694
6695
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6695
6696
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6696
- 'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
6697
+ 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6697
6698
  'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
6698
6699
  'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
6699
6700
  'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
6700
6701
  'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
6701
6702
  'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
6702
6703
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6703
- 'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6704
6704
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6705
6705
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6706
6706
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
@@ -6710,8 +6710,8 @@ declare global {
6710
6710
  'dap-ds-command': DapDSCommandProps & DapDSCommandEvents & DapDSCommandSlots
6711
6711
  'dap-ds-content-switcher-item': DapDSContentSwitcherItemProps & DapDSContentSwitcherItemSlots
6712
6712
  'dap-ds-content-switcher': DapDSContentSwitcherProps & DapDSContentSwitcherEvents & DapDSContentSwitcherSlots
6713
- 'dap-ds-dap-badge': DapDSDAPBadgeProps & DapDSDAPBadgeSlots
6714
6713
  'dap-ds-copybox-input': DapDSCopyBoxInputProps & DapDSCopyBoxInputEvents
6714
+ 'dap-ds-dap-badge': DapDSDAPBadgeProps & DapDSDAPBadgeSlots
6715
6715
  'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
6716
6716
  'dap-ds-datepicker': DapDSDatePickerProps & DapDSDatePickerEvents
6717
6717
  'dap-ds-divider': DapDSDividerProps
@@ -6730,8 +6730,8 @@ declare global {
6730
6730
  'dap-ds-navigation-menu-item': DapDSNavigationMenuItemProps & DapDSNavigationMenuItemEvents & DapDSNavigationMenuItemSlots
6731
6731
  'dap-ds-navigation-menu': DapDSNavigationMenuProps & DapDSNavigationMenuEvents & DapDSNavigationMenuSlots
6732
6732
  'dap-ds-notification-badge': DapDSNotificationBadgeProps & DapDSNotificationBadgeSlots
6733
- 'dap-ds-official-website-banner': DapDSOfficialWebsiteBannerProps & DapDSOfficialWebsiteBannerEvents & DapDSOfficialWebsiteBannerSlots
6734
6733
  'dap-ds-number-input': DapDSNumberInputProps & DapDSNumberInputEvents & DapDSNumberInputSlots
6734
+ 'dap-ds-official-website-banner': DapDSOfficialWebsiteBannerProps & DapDSOfficialWebsiteBannerEvents & DapDSOfficialWebsiteBannerSlots
6735
6735
  'dap-ds-option-group': DapDSOptionGroupProps & DapDSOptionGroupSlots
6736
6736
  'dap-ds-option-item': DapDSOptionItemProps & DapDSOptionItemSlots
6737
6737
  'dap-ds-option-list': DapDSOptionListProps & DapDSOptionListEvents & DapDSOptionListSlots
@@ -6749,8 +6749,8 @@ declare global {
6749
6749
  'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
6750
6750
  'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
6751
6751
  'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
6752
- 'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
6753
6752
  'dap-ds-skeleton': DapDSSkeletonProps
6753
+ 'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
6754
6754
  'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
6755
6755
  'dap-ds-snackbar': DapDSSnackbarProps
6756
6756
  'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
@@ -6776,21 +6776,21 @@ declare global {
6776
6776
  'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6777
6777
  'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
6778
6778
  'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6779
- 'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6780
6779
  'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6780
+ 'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6781
6781
  'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6782
6782
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6783
6783
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6784
6784
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6785
6785
  'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6786
- 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6787
6786
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6787
+ 'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6788
6788
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6789
6789
  'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6790
6790
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6791
+ 'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6791
6792
  'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6792
6793
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
6793
- 'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6794
6794
  'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
6795
6795
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6796
6796
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
@@ -6807,9 +6807,9 @@ declare global {
6807
6807
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
6808
6808
  'dap-ds-icon-folder-line': DocumentFolderLineProps
6809
6809
  'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
6810
- 'dap-ds-icon-separator': EditorSeparatorProps
6811
6810
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6812
6811
  'dap-ds-icon-heart-line': HealthHeartLineProps
6812
+ 'dap-ds-icon-separator': EditorSeparatorProps
6813
6813
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6814
6814
  'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6815
6815
  'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
@@ -6847,8 +6847,8 @@ declare global {
6847
6847
  'dap-ds-icon-lock-line': SystemLockLineProps
6848
6848
  'dap-ds-icon-menu-line': SystemMenuLineProps
6849
6849
  'dap-ds-icon-menu-line-s': SystemMenuLineSProps
6850
- 'dap-ds-icon-more-line': SystemMoreLineProps
6851
6850
  'dap-ds-icon-more-2-line': SystemMore2LineProps
6851
+ 'dap-ds-icon-more-line': SystemMoreLineProps
6852
6852
  'dap-ds-icon-search-line': SystemSearchLineProps
6853
6853
  'dap-ds-icon-share-line': SystemShareLineProps
6854
6854
  'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps