dap-design-system 0.56.3 → 0.56.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.
@@ -234,6 +234,11 @@ export interface DapDSBannerEvents {
234
234
  onDdsClose?: (event: CustomEvent) => void
235
235
  }
236
236
 
237
+ export interface DapDSButtonEvents {
238
+ /** Emitted when the loading timeout is reached */
239
+ onDdsLoadingTimeout?: (event: CustomEvent) => void
240
+ }
241
+
237
242
  export interface DapDSCalendarEvents {
238
243
  /** Fired when the calendar value changes. */
239
244
  onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
@@ -262,11 +267,6 @@ export interface DapDSChipEvents {
262
267
  onDdsSelect?: (event: CustomEvent<{ value?: string, selected: boolean }>) => void
263
268
  }
264
269
 
265
- export interface DapDSButtonEvents {
266
- /** Emitted when the loading timeout is reached */
267
- onDdsLoadingTimeout?: (event: CustomEvent) => void
268
- }
269
-
270
270
  export interface DapDSCodePuncherEvents {
271
271
  /** Fires on each digit input. */
272
272
  onDdsInput?: (event: CustomEvent<{ value: string, index: number }>) => void
@@ -713,6 +713,11 @@ export interface DapDSBreadcrumbItemSlots {
713
713
  'separator'?: () => any
714
714
  }
715
715
 
716
+ export interface DapDSButtonSlots {
717
+ /** The content of the button. Can contain text, icons, or other elements. */
718
+ default?: () => any
719
+ }
720
+
716
721
  export interface DapDSCalendarCellSlots {
717
722
  /** The content of the calendar cell. */
718
723
  default?: () => any
@@ -766,11 +771,6 @@ export interface DapDSCardSlots {
766
771
  default?: () => any
767
772
  }
768
773
 
769
- export interface DapDSButtonSlots {
770
- /** The content of the button. Can contain text, icons, or other elements. */
771
- default?: () => 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
@@ -1155,17 +1155,6 @@ export type DapDSAccordionGroupProps = {
1155
1155
  variant?: DapDSAccordionGroup["variant"]
1156
1156
  }
1157
1157
 
1158
- export type DapDSAnchorHeadingProps = {
1159
- /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1160
- variant?: DapDSAnchorHeading["variant"]
1161
- /** The label of the heading. */
1162
- label?: DapDSAnchorHeading["label"]
1163
- /** */
1164
- elementId?: DapDSAnchorHeading["elementId"]
1165
- /** */
1166
- anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1167
- }
1168
-
1169
1158
  export type DapDSAvatarProps = {
1170
1159
  /** The shape of the avatar */
1171
1160
  shape?: DapDSAvatar["shape"]
@@ -1238,6 +1227,17 @@ export type DapDSBannerProps = {
1238
1227
  icon?: DapDSBanner["icon"]
1239
1228
  }
1240
1229
 
1230
+ export type DapDSAnchorHeadingProps = {
1231
+ /** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
1232
+ variant?: DapDSAnchorHeading["variant"]
1233
+ /** The label of the heading. */
1234
+ label?: DapDSAnchorHeading["label"]
1235
+ /** */
1236
+ elementId?: DapDSAnchorHeading["elementId"]
1237
+ /** */
1238
+ anchorTitle?: DapDSAnchorHeading["anchorTitle"]
1239
+ }
1240
+
1241
1241
  export type DapDSBreadcrumbProps = {
1242
1242
  /** */
1243
1243
  variant?: DapDSBreadcrumb["variant"]
@@ -1260,6 +1260,37 @@ export type DapDSBreadcrumbItemProps = {
1260
1260
  variant?: DapDSBreadcrumbItem["variant"]
1261
1261
  }
1262
1262
 
1263
+ export type DapDSButtonProps = {
1264
+ /** The visual style variant of the button */
1265
+ variant?: DapDSButton["variant"]
1266
+ /** The size of the button affecting padding and font size */
1267
+ size?: DapDSButton["size"]
1268
+ /** Whether the button is in loading state, showing a spinner and disabling interaction */
1269
+ loading?: DapDSButton["loading"]
1270
+ /** Whether the button represents a destructive action (applies danger styling) */
1271
+ danger?: DapDSButton["danger"]
1272
+ /** The shape of the button - use 'circle' for icon-only buttons */
1273
+ shape?: DapDSButton["shape"]
1274
+ /** The HTML type attribute for form interaction */
1275
+ htmlType?: DapDSButton["htmlType"]
1276
+ /** The URL to navigate to. When present, the button renders as an anchor element */
1277
+ href?: DapDSButton["href"]
1278
+ /** The target attribute for link navigation */
1279
+ target?: DapDSButton["target"]
1280
+ /** The rel attribute for link security and behavior */
1281
+ rel?: DapDSButton["rel"]
1282
+ /** Controls loading timeout in milliseconds */
1283
+ loadingTimeout?: DapDSButton["loadingTimeout"]
1284
+ /** Whether the button is active */
1285
+ active?: DapDSButton["active"]
1286
+ /** The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text */
1287
+ targetBlankText?: DapDSButton["targetBlankText"]
1288
+ /** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
1289
+ forceRole?: DapDSButton["forceRole"]
1290
+ /** The size map of the button. */
1291
+ sizeMap?: DapDSButton["sizeMap"]
1292
+ }
1293
+
1263
1294
  export type DapDSCalendarCellProps = {
1264
1295
  /** Whether the calendar cell is selected. */
1265
1296
  selected?: DapDSCalendarCell["selected"]
@@ -1493,37 +1524,6 @@ export type DapDSChipProps = {
1493
1524
  sizeMap?: DapDSChip["sizeMap"]
1494
1525
  }
1495
1526
 
1496
- export type DapDSButtonProps = {
1497
- /** The visual style variant of the button */
1498
- variant?: DapDSButton["variant"]
1499
- /** The size of the button affecting padding and font size */
1500
- size?: DapDSButton["size"]
1501
- /** Whether the button is in loading state, showing a spinner and disabling interaction */
1502
- loading?: DapDSButton["loading"]
1503
- /** Whether the button represents a destructive action (applies danger styling) */
1504
- danger?: DapDSButton["danger"]
1505
- /** The shape of the button - use 'circle' for icon-only buttons */
1506
- shape?: DapDSButton["shape"]
1507
- /** The HTML type attribute for form interaction */
1508
- htmlType?: DapDSButton["htmlType"]
1509
- /** The URL to navigate to. When present, the button renders as an anchor element */
1510
- href?: DapDSButton["href"]
1511
- /** The target attribute for link navigation */
1512
- target?: DapDSButton["target"]
1513
- /** The rel attribute for link security and behavior */
1514
- rel?: DapDSButton["rel"]
1515
- /** Controls loading timeout in milliseconds */
1516
- loadingTimeout?: DapDSButton["loadingTimeout"]
1517
- /** Whether the button is active */
1518
- active?: DapDSButton["active"]
1519
- /** The text for the target blank link, applicable when target is _blank. PRO TIP: Use parenthesis to wrap the text */
1520
- targetBlankText?: DapDSButton["targetBlankText"]
1521
- /** Overrides the ARIA role on the internal native button/anchor element. Use when the host's semantics must differ from the native element (e.g. role="link" on a button acting as a SPA navigation trigger). */
1522
- forceRole?: DapDSButton["forceRole"]
1523
- /** The size map of the button. */
1524
- sizeMap?: DapDSButton["sizeMap"]
1525
- }
1526
-
1527
1527
  export type DapDSCodePuncherSlotProps = {
1528
1528
  /** */
1529
1529
  disabled?: DapDSCodePuncherSlot["disabled"]
@@ -3543,26 +3543,26 @@ export type DapDSRadioGroupProps = {
3543
3543
  size?: DapDSRadioGroup["size"]
3544
3544
  }
3545
3545
 
3546
- export type ArrowsArrowDownLineProps = {
3546
+ export type BuildingsHome6LineProps = {
3547
3547
  /** (optional) The width and height in pixels */
3548
- size?: ArrowsArrowDownLine["size"]
3548
+ size?: BuildingsHome6Line["size"]
3549
3549
  /** (optional) Sets the icon color via the `fill` attribute */
3550
- selected?: ArrowsArrowDownLine["selected"]
3550
+ selected?: BuildingsHome6Line["selected"]
3551
3551
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3552
- accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3552
+ accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3553
3553
  /** (optional) If `true` the icon can receive focus */
3554
- focusable?: ArrowsArrowDownLine["focusable"]
3554
+ focusable?: BuildingsHome6Line["focusable"]
3555
3555
  }
3556
3556
 
3557
- export type ArrowsArrowDownSLineProps = {
3557
+ export type ArrowsArrowDownLineProps = {
3558
3558
  /** (optional) The width and height in pixels */
3559
- size?: ArrowsArrowDownSLine["size"]
3559
+ size?: ArrowsArrowDownLine["size"]
3560
3560
  /** (optional) Sets the icon color via the `fill` attribute */
3561
- selected?: ArrowsArrowDownSLine["selected"]
3561
+ selected?: ArrowsArrowDownLine["selected"]
3562
3562
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3563
- accessibilityTitle?: ArrowsArrowDownSLine["accessibilityTitle"]
3563
+ accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
3564
3564
  /** (optional) If `true` the icon can receive focus */
3565
- focusable?: ArrowsArrowDownSLine["focusable"]
3565
+ focusable?: ArrowsArrowDownLine["focusable"]
3566
3566
  }
3567
3567
 
3568
3568
  export type ArrowsArrowDownSFillProps = {
@@ -3576,6 +3576,17 @@ export type ArrowsArrowDownSFillProps = {
3576
3576
  focusable?: ArrowsArrowDownSFill["focusable"]
3577
3577
  }
3578
3578
 
3579
+ export type ArrowsArrowDownSLineProps = {
3580
+ /** (optional) The width and height in pixels */
3581
+ size?: ArrowsArrowDownSLine["size"]
3582
+ /** (optional) Sets the icon color via the `fill` attribute */
3583
+ selected?: ArrowsArrowDownSLine["selected"]
3584
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3585
+ accessibilityTitle?: ArrowsArrowDownSLine["accessibilityTitle"]
3586
+ /** (optional) If `true` the icon can receive focus */
3587
+ focusable?: ArrowsArrowDownSLine["focusable"]
3588
+ }
3589
+
3579
3590
  export type ArrowsArrowLeftDownLineProps = {
3580
3591
  /** (optional) The width and height in pixels */
3581
3592
  size?: ArrowsArrowLeftDownLine["size"]
@@ -3609,26 +3620,26 @@ export type ArrowsArrowLeftLineProps = {
3609
3620
  focusable?: ArrowsArrowLeftLine["focusable"]
3610
3621
  }
3611
3622
 
3612
- export type ArrowsArrowLeftSFillProps = {
3623
+ export type ArrowsArrowLeftSLineProps = {
3613
3624
  /** (optional) The width and height in pixels */
3614
- size?: ArrowsArrowLeftSFill["size"]
3625
+ size?: ArrowsArrowLeftSLine["size"]
3615
3626
  /** (optional) Sets the icon color via the `fill` attribute */
3616
- selected?: ArrowsArrowLeftSFill["selected"]
3627
+ selected?: ArrowsArrowLeftSLine["selected"]
3617
3628
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3618
- accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3629
+ accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3619
3630
  /** (optional) If `true` the icon can receive focus */
3620
- focusable?: ArrowsArrowLeftSFill["focusable"]
3631
+ focusable?: ArrowsArrowLeftSLine["focusable"]
3621
3632
  }
3622
3633
 
3623
- export type ArrowsArrowLeftSLineProps = {
3634
+ export type ArrowsArrowLeftSFillProps = {
3624
3635
  /** (optional) The width and height in pixels */
3625
- size?: ArrowsArrowLeftSLine["size"]
3636
+ size?: ArrowsArrowLeftSFill["size"]
3626
3637
  /** (optional) Sets the icon color via the `fill` attribute */
3627
- selected?: ArrowsArrowLeftSLine["selected"]
3638
+ selected?: ArrowsArrowLeftSFill["selected"]
3628
3639
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3629
- accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
3640
+ accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
3630
3641
  /** (optional) If `true` the icon can receive focus */
3631
- focusable?: ArrowsArrowLeftSLine["focusable"]
3642
+ focusable?: ArrowsArrowLeftSFill["focusable"]
3632
3643
  }
3633
3644
 
3634
3645
  export type ArrowsArrowLeftUpLineProps = {
@@ -3653,6 +3664,17 @@ export type ArrowsArrowRightDownLineProps = {
3653
3664
  focusable?: ArrowsArrowRightDownLine["focusable"]
3654
3665
  }
3655
3666
 
3667
+ export type ArrowsArrowRightLLineProps = {
3668
+ /** (optional) The width and height in pixels */
3669
+ size?: ArrowsArrowRightLLine["size"]
3670
+ /** (optional) Sets the icon color via the `fill` attribute */
3671
+ selected?: ArrowsArrowRightLLine["selected"]
3672
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3673
+ accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3674
+ /** (optional) If `true` the icon can receive focus */
3675
+ focusable?: ArrowsArrowRightLLine["focusable"]
3676
+ }
3677
+
3656
3678
  export type ArrowsArrowRightLineProps = {
3657
3679
  /** (optional) The width and height in pixels */
3658
3680
  size?: ArrowsArrowRightLine["size"]
@@ -3686,17 +3708,6 @@ export type ArrowsArrowRightSLineProps = {
3686
3708
  focusable?: ArrowsArrowRightSLine["focusable"]
3687
3709
  }
3688
3710
 
3689
- export type ArrowsArrowRightLLineProps = {
3690
- /** (optional) The width and height in pixels */
3691
- size?: ArrowsArrowRightLLine["size"]
3692
- /** (optional) Sets the icon color via the `fill` attribute */
3693
- selected?: ArrowsArrowRightLLine["selected"]
3694
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3695
- accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
3696
- /** (optional) If `true` the icon can receive focus */
3697
- focusable?: ArrowsArrowRightLLine["focusable"]
3698
- }
3699
-
3700
3711
  export type ArrowsArrowRightUpLineProps = {
3701
3712
  /** (optional) The width and height in pixels */
3702
3713
  size?: ArrowsArrowRightUpLine["size"]
@@ -3752,17 +3763,6 @@ export type ArrowsExpandUpDownFillProps = {
3752
3763
  focusable?: ArrowsExpandUpDownFill["focusable"]
3753
3764
  }
3754
3765
 
3755
- export type BuildingsHome6LineProps = {
3756
- /** (optional) The width and height in pixels */
3757
- size?: BuildingsHome6Line["size"]
3758
- /** (optional) Sets the icon color via the `fill` attribute */
3759
- selected?: BuildingsHome6Line["selected"]
3760
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
3761
- accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
3762
- /** (optional) If `true` the icon can receive focus */
3763
- focusable?: BuildingsHome6Line["focusable"]
3764
- }
3765
-
3766
3766
  export type BusinessCalendarLineProps = {
3767
3767
  /** (optional) The width and height in pixels */
3768
3768
  size?: BusinessCalendarLine["size"]
@@ -3818,26 +3818,26 @@ export type DocumentClipboardLineProps = {
3818
3818
  focusable?: DocumentClipboardLine["focusable"]
3819
3819
  }
3820
3820
 
3821
- export type DocumentFileCopyLineProps = {
3821
+ export type DocumentFileImageLineProps = {
3822
3822
  /** (optional) The width and height in pixels */
3823
- size?: DocumentFileCopyLine["size"]
3823
+ size?: DocumentFileImageLine["size"]
3824
3824
  /** (optional) Sets the icon color via the `fill` attribute */
3825
- selected?: DocumentFileCopyLine["selected"]
3825
+ selected?: DocumentFileImageLine["selected"]
3826
3826
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3827
- accessibilityTitle?: DocumentFileCopyLine["accessibilityTitle"]
3827
+ accessibilityTitle?: DocumentFileImageLine["accessibilityTitle"]
3828
3828
  /** (optional) If `true` the icon can receive focus */
3829
- focusable?: DocumentFileCopyLine["focusable"]
3829
+ focusable?: DocumentFileImageLine["focusable"]
3830
3830
  }
3831
3831
 
3832
- export type DocumentFileImageLineProps = {
3832
+ export type DocumentFileCopyLineProps = {
3833
3833
  /** (optional) The width and height in pixels */
3834
- size?: DocumentFileImageLine["size"]
3834
+ size?: DocumentFileCopyLine["size"]
3835
3835
  /** (optional) Sets the icon color via the `fill` attribute */
3836
- selected?: DocumentFileImageLine["selected"]
3836
+ selected?: DocumentFileCopyLine["selected"]
3837
3837
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
3838
- accessibilityTitle?: DocumentFileImageLine["accessibilityTitle"]
3838
+ accessibilityTitle?: DocumentFileCopyLine["accessibilityTitle"]
3839
3839
  /** (optional) If `true` the icon can receive focus */
3840
- focusable?: DocumentFileImageLine["focusable"]
3840
+ focusable?: DocumentFileCopyLine["focusable"]
3841
3841
  }
3842
3842
 
3843
3843
  export type DocumentFileMusicLineProps = {
@@ -3939,6 +3939,50 @@ export type OthersCookieLineProps = {
3939
3939
  focusable?: OthersCookieLine["focusable"]
3940
3940
  }
3941
3941
 
3942
+ export type UserAccountCircleFillProps = {
3943
+ /** (optional) The width and height in pixels */
3944
+ size?: UserAccountCircleFill["size"]
3945
+ /** (optional) Sets the icon color via the `fill` attribute */
3946
+ selected?: UserAccountCircleFill["selected"]
3947
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3948
+ accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
3949
+ /** (optional) If `true` the icon can receive focus */
3950
+ focusable?: UserAccountCircleFill["focusable"]
3951
+ }
3952
+
3953
+ export type UserAccountCircleLineProps = {
3954
+ /** (optional) The width and height in pixels */
3955
+ size?: UserAccountCircleLine["size"]
3956
+ /** (optional) Sets the icon color via the `fill` attribute */
3957
+ selected?: UserAccountCircleLine["selected"]
3958
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3959
+ accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
3960
+ /** (optional) If `true` the icon can receive focus */
3961
+ focusable?: UserAccountCircleLine["focusable"]
3962
+ }
3963
+
3964
+ export type UserUserFillProps = {
3965
+ /** (optional) The width and height in pixels */
3966
+ size?: UserUserFill["size"]
3967
+ /** (optional) Sets the icon color via the `fill` attribute */
3968
+ selected?: UserUserFill["selected"]
3969
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3970
+ accessibilityTitle?: UserUserFill["accessibilityTitle"]
3971
+ /** (optional) If `true` the icon can receive focus */
3972
+ focusable?: UserUserFill["focusable"]
3973
+ }
3974
+
3975
+ export type UserUserLineProps = {
3976
+ /** (optional) The width and height in pixels */
3977
+ size?: UserUserLine["size"]
3978
+ /** (optional) Sets the icon color via the `fill` attribute */
3979
+ selected?: UserUserLine["selected"]
3980
+ /** (optional) When using the icon standalone, make it meaningful for accessibility */
3981
+ accessibilityTitle?: UserUserLine["accessibilityTitle"]
3982
+ /** (optional) If `true` the icon can receive focus */
3983
+ focusable?: UserUserLine["focusable"]
3984
+ }
3985
+
3942
3986
  export type SystemAddLineProps = {
3943
3987
  /** (optional) The width and height in pixels */
3944
3988
  size?: SystemAddLine["size"]
@@ -4115,26 +4159,26 @@ export type SystemDeleteBinLineProps = {
4115
4159
  focusable?: SystemDeleteBinLine["focusable"]
4116
4160
  }
4117
4161
 
4118
- export type SystemDownloadLineProps = {
4162
+ export type SystemErrorWarningFillProps = {
4119
4163
  /** (optional) The width and height in pixels */
4120
- size?: SystemDownloadLine["size"]
4164
+ size?: SystemErrorWarningFill["size"]
4121
4165
  /** (optional) Sets the icon color via the `fill` attribute */
4122
- selected?: SystemDownloadLine["selected"]
4166
+ selected?: SystemErrorWarningFill["selected"]
4123
4167
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4124
- accessibilityTitle?: SystemDownloadLine["accessibilityTitle"]
4168
+ accessibilityTitle?: SystemErrorWarningFill["accessibilityTitle"]
4125
4169
  /** (optional) If `true` the icon can receive focus */
4126
- focusable?: SystemDownloadLine["focusable"]
4170
+ focusable?: SystemErrorWarningFill["focusable"]
4127
4171
  }
4128
4172
 
4129
- export type SystemErrorWarningFillProps = {
4173
+ export type SystemDownloadLineProps = {
4130
4174
  /** (optional) The width and height in pixels */
4131
- size?: SystemErrorWarningFill["size"]
4175
+ size?: SystemDownloadLine["size"]
4132
4176
  /** (optional) Sets the icon color via the `fill` attribute */
4133
- selected?: SystemErrorWarningFill["selected"]
4177
+ selected?: SystemDownloadLine["selected"]
4134
4178
  /** (optional) When using the icon standalone, make it meaningful for accessibility */
4135
- accessibilityTitle?: SystemErrorWarningFill["accessibilityTitle"]
4179
+ accessibilityTitle?: SystemDownloadLine["accessibilityTitle"]
4136
4180
  /** (optional) If `true` the icon can receive focus */
4137
- focusable?: SystemErrorWarningFill["focusable"]
4181
+ focusable?: SystemDownloadLine["focusable"]
4138
4182
  }
4139
4183
 
4140
4184
  export type SystemErrorWarningLineProps = {
@@ -4467,50 +4511,6 @@ export type SystemZoomOutLineProps = {
4467
4511
  focusable?: SystemZoomOutLine["focusable"]
4468
4512
  }
4469
4513
 
4470
- export type UserAccountCircleFillProps = {
4471
- /** (optional) The width and height in pixels */
4472
- size?: UserAccountCircleFill["size"]
4473
- /** (optional) Sets the icon color via the `fill` attribute */
4474
- selected?: UserAccountCircleFill["selected"]
4475
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4476
- accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
4477
- /** (optional) If `true` the icon can receive focus */
4478
- focusable?: UserAccountCircleFill["focusable"]
4479
- }
4480
-
4481
- export type UserAccountCircleLineProps = {
4482
- /** (optional) The width and height in pixels */
4483
- size?: UserAccountCircleLine["size"]
4484
- /** (optional) Sets the icon color via the `fill` attribute */
4485
- selected?: UserAccountCircleLine["selected"]
4486
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4487
- accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
4488
- /** (optional) If `true` the icon can receive focus */
4489
- focusable?: UserAccountCircleLine["focusable"]
4490
- }
4491
-
4492
- export type UserUserFillProps = {
4493
- /** (optional) The width and height in pixels */
4494
- size?: UserUserFill["size"]
4495
- /** (optional) Sets the icon color via the `fill` attribute */
4496
- selected?: UserUserFill["selected"]
4497
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4498
- accessibilityTitle?: UserUserFill["accessibilityTitle"]
4499
- /** (optional) If `true` the icon can receive focus */
4500
- focusable?: UserUserFill["focusable"]
4501
- }
4502
-
4503
- export type UserUserLineProps = {
4504
- /** (optional) The width and height in pixels */
4505
- size?: UserUserLine["size"]
4506
- /** (optional) Sets the icon color via the `fill` attribute */
4507
- selected?: UserUserLine["selected"]
4508
- /** (optional) When using the icon standalone, make it meaningful for accessibility */
4509
- accessibilityTitle?: UserUserLine["accessibilityTitle"]
4510
- /** (optional) If `true` the icon can receive focus */
4511
- focusable?: UserUserLine["focusable"]
4512
- }
4513
-
4514
4514
  // Augment Vue's GlobalComponents interface
4515
4515
  declare module 'vue' {
4516
4516
  interface GlobalComponents {
@@ -4550,16 +4550,6 @@ declare module 'vue' {
4550
4550
  * - **base** - The main accordion group container.
4551
4551
  */
4552
4552
  'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
4553
- /**
4554
- * Anchor heading is a heading with an anchor link.
4555
- *
4556
- * ### CSS Parts:
4557
- * - **base** - The main anchor heading container.
4558
- * - **link** - The link of the anchor heading. dap-ds-link element.
4559
- * - **link-base** - The base of the link part.
4560
- * - **text** - The text of the anchor heading.
4561
- */
4562
- 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4563
4553
  /**
4564
4554
  * Avatar component can be used to display user profile images, initials, or icons.
4565
4555
  *
@@ -4633,6 +4623,16 @@ declare module 'vue' {
4633
4623
  * - **title** - The title of the banner.
4634
4624
  */
4635
4625
  'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
4626
+ /**
4627
+ * Anchor heading is a heading with an anchor link.
4628
+ *
4629
+ * ### CSS Parts:
4630
+ * - **base** - The main anchor heading container.
4631
+ * - **link** - The link of the anchor heading. dap-ds-link element.
4632
+ * - **link-base** - The base of the link part.
4633
+ * - **text** - The text of the anchor heading.
4634
+ */
4635
+ 'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
4636
4636
  /**
4637
4637
  * A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
4638
4638
  *
@@ -4660,6 +4660,21 @@ declare module 'vue' {
4660
4660
  * - **separator** - The separator of the breadcrumb item.
4661
4661
  */
4662
4662
  'dap-ds-breadcrumb-item': DefineCustomElement<DapDSBreadcrumbItem, DapDSBreadcrumbItemProps, {}>
4663
+ /**
4664
+ * A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
4665
+ *
4666
+ * ### Events:
4667
+ * - **dds-loading-timeout** - Emitted when the loading timeout is reached
4668
+ *
4669
+ * ### Slots:
4670
+ * - **default** - The content of the button. Can contain text, icons, or other elements.
4671
+ *
4672
+ * ### CSS Parts:
4673
+ * - **base** - The main button container.
4674
+ * - **high-contrast** - The high contrast part of the button.
4675
+ * - **content** - The content wrapper inside the button.
4676
+ */
4677
+ 'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
4663
4678
  /**
4664
4679
  * Calendar cell represents a single cell in the calendar.
4665
4680
  *
@@ -4814,21 +4829,6 @@ declare module 'vue' {
4814
4829
  * - **remove-icon-base-base** - The base of the remove icon base
4815
4830
  */
4816
4831
  'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
4817
- /**
4818
- * A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
4819
- *
4820
- * ### Events:
4821
- * - **dds-loading-timeout** - Emitted when the loading timeout is reached
4822
- *
4823
- * ### Slots:
4824
- * - **default** - The content of the button. Can contain text, icons, or other elements.
4825
- *
4826
- * ### CSS Parts:
4827
- * - **base** - The main button container.
4828
- * - **high-contrast** - The high contrast part of the button.
4829
- * - **content** - The content wrapper inside the button.
4830
- */
4831
- 'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
4832
4832
  /**
4833
4833
  * Individual digit input slot for code puncher.
4834
4834
  *
@@ -6070,14 +6070,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6070
6070
  * ### CSS Parts:
6071
6071
  * - **base** - The main icon container.
6072
6072
  */
6073
- 'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
6073
+ 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6074
6074
  /**
6075
6075
  * An icon
6076
6076
  *
6077
6077
  * ### CSS Parts:
6078
6078
  * - **base** - The main icon container.
6079
6079
  */
6080
- 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
6080
+ 'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
6081
6081
  /**
6082
6082
  * An icon
6083
6083
  *
@@ -6085,6 +6085,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6085
6085
  * - **base** - The main icon container.
6086
6086
  */
6087
6087
  'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
6088
+ /**
6089
+ * An icon
6090
+ *
6091
+ * ### CSS Parts:
6092
+ * - **base** - The main icon container.
6093
+ */
6094
+ 'dap-ds-icon-arrow-down-s-line': DefineCustomElement<ArrowsArrowDownSLine, ArrowsArrowDownSLineProps, {}>
6088
6095
  /**
6089
6096
  * An icon
6090
6097
  *
@@ -6112,14 +6119,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6112
6119
  * ### CSS Parts:
6113
6120
  * - **base** - The main icon container.
6114
6121
  */
6115
- 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6122
+ 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6116
6123
  /**
6117
6124
  * An icon
6118
6125
  *
6119
6126
  * ### CSS Parts:
6120
6127
  * - **base** - The main icon container.
6121
6128
  */
6122
- 'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
6129
+ 'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
6123
6130
  /**
6124
6131
  * An icon
6125
6132
  *
@@ -6140,28 +6147,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6140
6147
  * ### CSS Parts:
6141
6148
  * - **base** - The main icon container.
6142
6149
  */
6143
- 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6150
+ 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6144
6151
  /**
6145
6152
  * An icon
6146
6153
  *
6147
6154
  * ### CSS Parts:
6148
6155
  * - **base** - The main icon container.
6149
6156
  */
6150
- 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6157
+ 'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
6151
6158
  /**
6152
6159
  * An icon
6153
6160
  *
6154
6161
  * ### CSS Parts:
6155
6162
  * - **base** - The main icon container.
6156
6163
  */
6157
- 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6164
+ 'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
6158
6165
  /**
6159
6166
  * An icon
6160
6167
  *
6161
6168
  * ### CSS Parts:
6162
6169
  * - **base** - The main icon container.
6163
6170
  */
6164
- 'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
6171
+ 'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
6165
6172
  /**
6166
6173
  * An icon
6167
6174
  *
@@ -6197,13 +6204,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6197
6204
  * - **base** - The main icon container.
6198
6205
  */
6199
6206
  'dap-ds-icon-expand-up-down-fill': DefineCustomElement<ArrowsExpandUpDownFill, ArrowsExpandUpDownFillProps, {}>
6200
- /**
6201
- * An icon
6202
- *
6203
- * ### CSS Parts:
6204
- * - **base** - The main icon container.
6205
- */
6206
- 'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
6207
6207
  /**
6208
6208
  * An icon
6209
6209
  *
@@ -6245,14 +6245,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6245
6245
  * ### CSS Parts:
6246
6246
  * - **base** - The main icon container.
6247
6247
  */
6248
- 'dap-ds-icon-file-copy-line': DefineCustomElement<DocumentFileCopyLine, DocumentFileCopyLineProps, {}>
6248
+ 'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
6249
6249
  /**
6250
6250
  * An icon
6251
6251
  *
6252
6252
  * ### CSS Parts:
6253
6253
  * - **base** - The main icon container.
6254
6254
  */
6255
- 'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
6255
+ 'dap-ds-icon-file-copy-line': DefineCustomElement<DocumentFileCopyLine, DocumentFileCopyLineProps, {}>
6256
6256
  /**
6257
6257
  * An icon
6258
6258
  *
@@ -6316,6 +6316,34 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6316
6316
  * - **base** - The main icon container.
6317
6317
  */
6318
6318
  'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
6319
+ /**
6320
+ * An icon
6321
+ *
6322
+ * ### CSS Parts:
6323
+ * - **base** - The main icon container.
6324
+ */
6325
+ 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6326
+ /**
6327
+ * An icon
6328
+ *
6329
+ * ### CSS Parts:
6330
+ * - **base** - The main icon container.
6331
+ */
6332
+ 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6333
+ /**
6334
+ * An icon
6335
+ *
6336
+ * ### CSS Parts:
6337
+ * - **base** - The main icon container.
6338
+ */
6339
+ 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6340
+ /**
6341
+ * An icon
6342
+ *
6343
+ * ### CSS Parts:
6344
+ * - **base** - The main icon container.
6345
+ */
6346
+ 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6319
6347
  /**
6320
6348
  * An icon
6321
6349
  *
@@ -6434,14 +6462,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6434
6462
  * ### CSS Parts:
6435
6463
  * - **base** - The main icon container.
6436
6464
  */
6437
- 'dap-ds-icon-download-line': DefineCustomElement<SystemDownloadLine, SystemDownloadLineProps, {}>
6465
+ 'dap-ds-icon-error-warning-fill': DefineCustomElement<SystemErrorWarningFill, SystemErrorWarningFillProps, {}>
6438
6466
  /**
6439
6467
  * An icon
6440
6468
  *
6441
6469
  * ### CSS Parts:
6442
6470
  * - **base** - The main icon container.
6443
6471
  */
6444
- 'dap-ds-icon-error-warning-fill': DefineCustomElement<SystemErrorWarningFill, SystemErrorWarningFillProps, {}>
6472
+ 'dap-ds-icon-download-line': DefineCustomElement<SystemDownloadLine, SystemDownloadLineProps, {}>
6445
6473
  /**
6446
6474
  * An icon
6447
6475
  *
@@ -6652,34 +6680,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
6652
6680
  * - **base** - The main icon container.
6653
6681
  */
6654
6682
  'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
6655
- /**
6656
- * An icon
6657
- *
6658
- * ### CSS Parts:
6659
- * - **base** - The main icon container.
6660
- */
6661
- 'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
6662
- /**
6663
- * An icon
6664
- *
6665
- * ### CSS Parts:
6666
- * - **base** - The main icon container.
6667
- */
6668
- 'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
6669
- /**
6670
- * An icon
6671
- *
6672
- * ### CSS Parts:
6673
- * - **base** - The main icon container.
6674
- */
6675
- 'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
6676
- /**
6677
- * An icon
6678
- *
6679
- * ### CSS Parts:
6680
- * - **base** - The main icon container.
6681
- */
6682
- 'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
6683
6683
  }
6684
6684
  }
6685
6685
 
@@ -6689,13 +6689,14 @@ declare global {
6689
6689
  interface IntrinsicElements {
6690
6690
  'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
6691
6691
  'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
6692
- 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6693
6692
  'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
6694
6693
  'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
6695
6694
  'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
6696
6695
  'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
6696
+ 'dap-ds-anchor-heading': DapDSAnchorHeadingProps
6697
6697
  'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
6698
6698
  'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
6699
+ 'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6699
6700
  'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
6700
6701
  'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
6701
6702
  'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
@@ -6707,7 +6708,6 @@ declare global {
6707
6708
  'dap-ds-card': DapDSCardProps & DapDSCardSlots
6708
6709
  'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
6709
6710
  'dap-ds-chip': DapDSChipProps & DapDSChipEvents
6710
- 'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
6711
6711
  'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
6712
6712
  'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
6713
6713
  'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
@@ -6781,33 +6781,33 @@ declare global {
6781
6781
  'dap-ds-form-label': DapDSFormLabelProps
6782
6782
  'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
6783
6783
  'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
6784
+ 'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6784
6785
  'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
6785
- 'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6786
6786
  'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
6787
+ 'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
6787
6788
  'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
6788
6789
  'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
6789
6790
  'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
6790
- 'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6791
6791
  'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
6792
+ 'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
6792
6793
  'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
6793
6794
  'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
6795
+ 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6794
6796
  'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
6795
6797
  'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
6796
6798
  'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
6797
- 'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
6798
6799
  'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
6799
6800
  'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
6800
6801
  'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
6801
6802
  'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
6802
6803
  'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
6803
- 'dap-ds-icon-home-6-line': BuildingsHome6LineProps
6804
6804
  'dap-ds-icon-calendar-line': BusinessCalendarLineProps
6805
6805
  'dap-ds-icon-edit-line': DesignEditLineProps
6806
6806
  'dap-ds-icon-tools-line': DesignToolsLineProps
6807
6807
  'dap-ds-icon-computer-line': DeviceComputerLineProps
6808
6808
  'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
6809
- 'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6810
6809
  'dap-ds-icon-file-image-line': DocumentFileImageLineProps
6810
+ 'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
6811
6811
  'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
6812
6812
  'dap-ds-icon-file-text-line': DocumentFileTextLineProps
6813
6813
  'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
@@ -6817,6 +6817,10 @@ declare global {
6817
6817
  'dap-ds-icon-heart-fill': HealthHeartFillProps
6818
6818
  'dap-ds-icon-heart-line': HealthHeartLineProps
6819
6819
  'dap-ds-icon-cookie-line': OthersCookieLineProps
6820
+ 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6821
+ 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6822
+ 'dap-ds-icon-user-fill': UserUserFillProps
6823
+ 'dap-ds-icon-user-line': UserUserLineProps
6820
6824
  'dap-ds-icon-add-line': SystemAddLineProps
6821
6825
  'dap-ds-icon-alert-fill': SystemAlertFillProps
6822
6826
  'dap-ds-icon-alert-line': SystemAlertLineProps
@@ -6833,8 +6837,8 @@ declare global {
6833
6837
  'dap-ds-icon-close-line': SystemCloseLineProps
6834
6838
  'dap-ds-icon-delete-bin-fill': SystemDeleteBinFillProps
6835
6839
  'dap-ds-icon-delete-bin-line': SystemDeleteBinLineProps
6836
- 'dap-ds-icon-download-line': SystemDownloadLineProps
6837
6840
  'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
6841
+ 'dap-ds-icon-download-line': SystemDownloadLineProps
6838
6842
  'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
6839
6843
  'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
6840
6844
  'dap-ds-icon-eye-line': SystemEyeLineProps
@@ -6865,10 +6869,6 @@ declare global {
6865
6869
  'dap-ds-icon-upload-line': SystemUploadLineProps
6866
6870
  'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
6867
6871
  'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
6868
- 'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
6869
- 'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
6870
- 'dap-ds-icon-user-fill': UserUserFillProps
6871
- 'dap-ds-icon-user-line': UserUserLineProps
6872
6872
  }
6873
6873
  }
6874
6874
  }