dap-design-system 0.56.2 → 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.
- package/dist/components/skeleton/skeleton.component.d.ts +2 -1
- package/dist/{components-DtNvQM0v.js → components-B3TPbxBv.js} +19 -17
- package/dist/components-B3TPbxBv.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/light.theme.css +20 -2
- package/dist/manifest/types/vue/index.d.ts +277 -277
- package/dist/manifest/vscode.html-custom-data.json +152 -152
- package/dist/manifest/web-types.json +475 -475
- package/dist/react/dap-ds-skeleton/index.d.ts +2 -1
- package/dist/react/index.d.ts +10 -10
- package/dist/react-types.ts +10 -10
- package/dist/react.js +163 -163
- package/dist/react.js.map +1 -1
- package/dist/scss/variables-light.scss +886 -886
- package/dist/scss/variables-teal.scss +886 -886
- package/dist/teal.theme.css +2 -2
- package/dist/variables/variables-light.css +32 -13
- package/dist/variables/variables-teal.css +5 -4
- package/package.json +1 -1
- package/dist/components-DtNvQM0v.js.map +0 -1
|
@@ -210,13 +210,6 @@ type DefineGenericCustomElement<
|
|
|
210
210
|
$props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
export interface DapDSAvatarEvents {
|
|
214
|
-
/** Fired when the image loads successfully. */
|
|
215
|
-
onDdsLoad?: (event: CustomEvent) => void
|
|
216
|
-
/** Fired when the image fails to load. */
|
|
217
|
-
onDdsError?: (event: CustomEvent) => void
|
|
218
|
-
}
|
|
219
|
-
|
|
220
213
|
export interface DapDSAccordionEvents {
|
|
221
214
|
/** Event fired when the accordion is opened. */
|
|
222
215
|
onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
@@ -224,9 +217,11 @@ export interface DapDSAccordionEvents {
|
|
|
224
217
|
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
225
218
|
}
|
|
226
219
|
|
|
227
|
-
export interface
|
|
228
|
-
/**
|
|
229
|
-
|
|
220
|
+
export interface DapDSAvatarEvents {
|
|
221
|
+
/** Fired when the image loads successfully. */
|
|
222
|
+
onDdsLoad?: (event: CustomEvent) => void
|
|
223
|
+
/** Fired when the image fails to load. */
|
|
224
|
+
onDdsError?: (event: CustomEvent) => void
|
|
230
225
|
}
|
|
231
226
|
|
|
232
227
|
export interface DapDSAvatarGroupEvents {
|
|
@@ -234,6 +229,11 @@ export interface DapDSAvatarGroupEvents {
|
|
|
234
229
|
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
235
230
|
}
|
|
236
231
|
|
|
232
|
+
export interface DapDSBannerEvents {
|
|
233
|
+
/** Event fired when the banner is closed. */
|
|
234
|
+
onDdsClose?: (event: CustomEvent) => void
|
|
235
|
+
}
|
|
236
|
+
|
|
237
237
|
export interface DapDSButtonEvents {
|
|
238
238
|
/** Emitted when the loading timeout is reached */
|
|
239
239
|
onDdsLoadingTimeout?: (event: CustomEvent) => void
|
|
@@ -655,6 +655,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 DapDSAccordionGroupSlots {
|
|
659
670
|
/** The content of the accordion group. */
|
|
660
671
|
default?: () => any
|
|
@@ -667,15 +678,9 @@ export interface DapDSAvatarSlots {
|
|
|
667
678
|
'fallback'?: () => any
|
|
668
679
|
}
|
|
669
680
|
|
|
670
|
-
export interface
|
|
671
|
-
/** The
|
|
681
|
+
export interface DapDSAvatarGroupSlots {
|
|
682
|
+
/** The avatars to display in the group. */
|
|
672
683
|
default?: () => any
|
|
673
|
-
/** The heading of the accordion. */
|
|
674
|
-
'heading'?: () => any
|
|
675
|
-
/** The icon when the accordion is opened. */
|
|
676
|
-
'icon-opened'?: () => any
|
|
677
|
-
/** The icon when the accordion is closed. */
|
|
678
|
-
'icon-closed'?: () => any
|
|
679
684
|
}
|
|
680
685
|
|
|
681
686
|
export interface DapDSBadgeSlots {
|
|
@@ -701,11 +706,6 @@ export interface DapDSBreadcrumbSlots {
|
|
|
701
706
|
'separator'?: () => any
|
|
702
707
|
}
|
|
703
708
|
|
|
704
|
-
export interface DapDSAvatarGroupSlots {
|
|
705
|
-
/** The avatars to display in the group. */
|
|
706
|
-
default?: () => any
|
|
707
|
-
}
|
|
708
|
-
|
|
709
709
|
export interface DapDSBreadcrumbItemSlots {
|
|
710
710
|
/** The content of the breadcrumb item. */
|
|
711
711
|
default?: () => any
|
|
@@ -1123,6 +1123,31 @@ export interface DapDSRadioGroupSlots {
|
|
|
1123
1123
|
'feedback-icon'?: () => any
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
|
+
export type DapDSAccordionProps = {
|
|
1127
|
+
/** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
|
|
1128
|
+
size?: DapDSAccordion["size"]
|
|
1129
|
+
/** Responsive size map (e.g. "md:lg") */
|
|
1130
|
+
sizeMap?: DapDSAccordion["sizeMap"]
|
|
1131
|
+
/** When "true", size is taken from the parent card if present. */
|
|
1132
|
+
parentSized?: DapDSAccordion["parentSized"]
|
|
1133
|
+
/** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
|
|
1134
|
+
heading?: DapDSAccordion["heading"]
|
|
1135
|
+
/** The heading level of the accordion. Default is `4`. */
|
|
1136
|
+
headingLevel?: DapDSAccordion["headingLevel"]
|
|
1137
|
+
/** Whether the accordion is opened. Default is `false`. */
|
|
1138
|
+
opened?: DapDSAccordion["opened"]
|
|
1139
|
+
/** The location of the icon. Default is `right`. */
|
|
1140
|
+
iconLocation?: DapDSAccordion["iconLocation"]
|
|
1141
|
+
/** The variant of the accordion. */
|
|
1142
|
+
variant?: DapDSAccordion["variant"]
|
|
1143
|
+
/** Whether the accordion is the last item. */
|
|
1144
|
+
lastItem?: DapDSAccordion["lastItem"]
|
|
1145
|
+
/** Whether the accordion is disabled. */
|
|
1146
|
+
disabled?: DapDSAccordion["disabled"]
|
|
1147
|
+
/** Whether the accordion is in loading state. */
|
|
1148
|
+
loading?: DapDSAccordion["loading"]
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1126
1151
|
export type DapDSAccordionGroupProps = {
|
|
1127
1152
|
/** Whether to close other accordions when one is opened. */
|
|
1128
1153
|
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
@@ -1157,29 +1182,23 @@ export type DapDSAvatarProps = {
|
|
|
1157
1182
|
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1158
1183
|
}
|
|
1159
1184
|
|
|
1160
|
-
export type
|
|
1161
|
-
/**
|
|
1162
|
-
|
|
1163
|
-
/**
|
|
1164
|
-
|
|
1165
|
-
/**
|
|
1166
|
-
|
|
1167
|
-
/**
|
|
1168
|
-
|
|
1169
|
-
/**
|
|
1170
|
-
|
|
1171
|
-
/**
|
|
1172
|
-
|
|
1173
|
-
/** The
|
|
1174
|
-
|
|
1175
|
-
/**
|
|
1176
|
-
|
|
1177
|
-
/** Whether the accordion is the last item. */
|
|
1178
|
-
lastItem?: DapDSAccordion["lastItem"]
|
|
1179
|
-
/** Whether the accordion is disabled. */
|
|
1180
|
-
disabled?: DapDSAccordion["disabled"]
|
|
1181
|
-
/** Whether the accordion is in loading state. */
|
|
1182
|
-
loading?: DapDSAccordion["loading"]
|
|
1185
|
+
export type DapDSAvatarGroupProps = {
|
|
1186
|
+
/** Layout type for the avatar group */
|
|
1187
|
+
layout?: DapDSAvatarGroup["layout"]
|
|
1188
|
+
/** Maximum number of avatars to show before showing overflow */
|
|
1189
|
+
max?: DapDSAvatarGroup["max"]
|
|
1190
|
+
/** Whether to show the total count in overflow indicator */
|
|
1191
|
+
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1192
|
+
/** Interactive overflow indicator */
|
|
1193
|
+
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1194
|
+
/** Accessible label for the avatar group */
|
|
1195
|
+
label?: DapDSAvatarGroup["label"]
|
|
1196
|
+
/** Accessible label for the overflow indicator */
|
|
1197
|
+
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1198
|
+
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1199
|
+
size?: DapDSAvatarGroup["size"]
|
|
1200
|
+
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1201
|
+
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1183
1202
|
}
|
|
1184
1203
|
|
|
1185
1204
|
export type DapDSBadgeProps = {
|
|
@@ -1208,15 +1227,6 @@ export type DapDSBannerProps = {
|
|
|
1208
1227
|
icon?: DapDSBanner["icon"]
|
|
1209
1228
|
}
|
|
1210
1229
|
|
|
1211
|
-
export type DapDSBreadcrumbProps = {
|
|
1212
|
-
/** */
|
|
1213
|
-
variant?: DapDSBreadcrumb["variant"]
|
|
1214
|
-
/** Mobile version of the breadcrumb */
|
|
1215
|
-
mobile?: DapDSBreadcrumb["mobile"]
|
|
1216
|
-
/** The aria-labelledby of the breadcrumb */
|
|
1217
|
-
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
1230
|
export type DapDSAnchorHeadingProps = {
|
|
1221
1231
|
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1222
1232
|
variant?: DapDSAnchorHeading["variant"]
|
|
@@ -1228,23 +1238,13 @@ export type DapDSAnchorHeadingProps = {
|
|
|
1228
1238
|
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1229
1239
|
}
|
|
1230
1240
|
|
|
1231
|
-
export type
|
|
1232
|
-
/**
|
|
1233
|
-
|
|
1234
|
-
/**
|
|
1235
|
-
|
|
1236
|
-
/**
|
|
1237
|
-
"
|
|
1238
|
-
/** Interactive overflow indicator */
|
|
1239
|
-
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1240
|
-
/** Accessible label for the avatar group */
|
|
1241
|
-
label?: DapDSAvatarGroup["label"]
|
|
1242
|
-
/** Accessible label for the overflow indicator */
|
|
1243
|
-
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1244
|
-
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1245
|
-
size?: DapDSAvatarGroup["size"]
|
|
1246
|
-
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1247
|
-
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1241
|
+
export type DapDSBreadcrumbProps = {
|
|
1242
|
+
/** */
|
|
1243
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1244
|
+
/** Mobile version of the breadcrumb */
|
|
1245
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1246
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1247
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1248
1248
|
}
|
|
1249
1249
|
|
|
1250
1250
|
export type DapDSBreadcrumbItemProps = {
|
|
@@ -1368,57 +1368,6 @@ export type DapDSCalloutProps = {
|
|
|
1368
1368
|
opened?: DapDSCallout["opened"]
|
|
1369
1369
|
}
|
|
1370
1370
|
|
|
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"]
|
|
1420
|
-
}
|
|
1421
|
-
|
|
1422
1371
|
export type DapDSCardActionsProps = {
|
|
1423
1372
|
/** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
|
|
1424
1373
|
spacing?: DapDSCardActions["spacing"]
|
|
@@ -1505,6 +1454,57 @@ export type DapDSCardProps = {
|
|
|
1505
1454
|
sizeMap?: DapDSCard["sizeMap"]
|
|
1506
1455
|
}
|
|
1507
1456
|
|
|
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"]
|
|
@@ -3543,15 +3543,26 @@ export type DapDSRadioGroupProps = {
|
|
|
3543
3543
|
size?: DapDSRadioGroup["size"]
|
|
3544
3544
|
}
|
|
3545
3545
|
|
|
3546
|
-
export type
|
|
3546
|
+
export type BuildingsHome6LineProps = {
|
|
3547
3547
|
/** (optional) The width and height in pixels */
|
|
3548
|
-
size?:
|
|
3548
|
+
size?: BuildingsHome6Line["size"]
|
|
3549
3549
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3550
|
-
selected?:
|
|
3550
|
+
selected?: BuildingsHome6Line["selected"]
|
|
3551
3551
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3552
|
-
accessibilityTitle?:
|
|
3552
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3553
3553
|
/** (optional) If `true` the icon can receive focus */
|
|
3554
|
-
focusable?:
|
|
3554
|
+
focusable?: BuildingsHome6Line["focusable"]
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3557
|
+
export type ArrowsArrowDownLineProps = {
|
|
3558
|
+
/** (optional) The width and height in pixels */
|
|
3559
|
+
size?: ArrowsArrowDownLine["size"]
|
|
3560
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3561
|
+
selected?: ArrowsArrowDownLine["selected"]
|
|
3562
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3563
|
+
accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
|
|
3564
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3565
|
+
focusable?: ArrowsArrowDownLine["focusable"]
|
|
3555
3566
|
}
|
|
3556
3567
|
|
|
3557
3568
|
export type ArrowsArrowDownSFillProps = {
|
|
@@ -3609,26 +3620,26 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3609
3620
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3610
3621
|
}
|
|
3611
3622
|
|
|
3612
|
-
export type
|
|
3623
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3613
3624
|
/** (optional) The width and height in pixels */
|
|
3614
|
-
size?:
|
|
3625
|
+
size?: ArrowsArrowLeftSLine["size"]
|
|
3615
3626
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3616
|
-
selected?:
|
|
3627
|
+
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3617
3628
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3618
|
-
accessibilityTitle?:
|
|
3629
|
+
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3619
3630
|
/** (optional) If `true` the icon can receive focus */
|
|
3620
|
-
focusable?:
|
|
3631
|
+
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3621
3632
|
}
|
|
3622
3633
|
|
|
3623
|
-
export type
|
|
3634
|
+
export type ArrowsArrowLeftSFillProps = {
|
|
3624
3635
|
/** (optional) The width and height in pixels */
|
|
3625
|
-
size?:
|
|
3636
|
+
size?: ArrowsArrowLeftSFill["size"]
|
|
3626
3637
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3627
|
-
selected?:
|
|
3638
|
+
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3628
3639
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3629
|
-
accessibilityTitle?:
|
|
3640
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3630
3641
|
/** (optional) If `true` the icon can receive focus */
|
|
3631
|
-
focusable?:
|
|
3642
|
+
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3632
3643
|
}
|
|
3633
3644
|
|
|
3634
3645
|
export type ArrowsArrowLeftUpLineProps = {
|
|
@@ -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"]
|
|
@@ -3807,17 +3807,6 @@ export type DeviceComputerLineProps = {
|
|
|
3807
3807
|
focusable?: DeviceComputerLine["focusable"]
|
|
3808
3808
|
}
|
|
3809
3809
|
|
|
3810
|
-
export type EditorSeparatorProps = {
|
|
3811
|
-
/** (optional) The width and height in pixels */
|
|
3812
|
-
size?: EditorSeparator["size"]
|
|
3813
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3814
|
-
selected?: EditorSeparator["selected"]
|
|
3815
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3816
|
-
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3817
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3818
|
-
focusable?: EditorSeparator["focusable"]
|
|
3819
|
-
}
|
|
3820
|
-
|
|
3821
3810
|
export type DocumentClipboardLineProps = {
|
|
3822
3811
|
/** (optional) The width and height in pixels */
|
|
3823
3812
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3829,26 +3818,26 @@ export type DocumentClipboardLineProps = {
|
|
|
3829
3818
|
focusable?: DocumentClipboardLine["focusable"]
|
|
3830
3819
|
}
|
|
3831
3820
|
|
|
3832
|
-
export type
|
|
3821
|
+
export type DocumentFileImageLineProps = {
|
|
3833
3822
|
/** (optional) The width and height in pixels */
|
|
3834
|
-
size?:
|
|
3823
|
+
size?: DocumentFileImageLine["size"]
|
|
3835
3824
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3836
|
-
selected?:
|
|
3825
|
+
selected?: DocumentFileImageLine["selected"]
|
|
3837
3826
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3838
|
-
accessibilityTitle?:
|
|
3827
|
+
accessibilityTitle?: DocumentFileImageLine["accessibilityTitle"]
|
|
3839
3828
|
/** (optional) If `true` the icon can receive focus */
|
|
3840
|
-
focusable?:
|
|
3829
|
+
focusable?: DocumentFileImageLine["focusable"]
|
|
3841
3830
|
}
|
|
3842
3831
|
|
|
3843
|
-
export type
|
|
3832
|
+
export type DocumentFileCopyLineProps = {
|
|
3844
3833
|
/** (optional) The width and height in pixels */
|
|
3845
|
-
size?:
|
|
3834
|
+
size?: DocumentFileCopyLine["size"]
|
|
3846
3835
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3847
|
-
selected?:
|
|
3836
|
+
selected?: DocumentFileCopyLine["selected"]
|
|
3848
3837
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3849
|
-
accessibilityTitle?:
|
|
3838
|
+
accessibilityTitle?: DocumentFileCopyLine["accessibilityTitle"]
|
|
3850
3839
|
/** (optional) If `true` the icon can receive focus */
|
|
3851
|
-
focusable?:
|
|
3840
|
+
focusable?: DocumentFileCopyLine["focusable"]
|
|
3852
3841
|
}
|
|
3853
3842
|
|
|
3854
3843
|
export type DocumentFileMusicLineProps = {
|
|
@@ -3906,6 +3895,17 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3906
3895
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3907
3896
|
}
|
|
3908
3897
|
|
|
3898
|
+
export type EditorSeparatorProps = {
|
|
3899
|
+
/** (optional) The width and height in pixels */
|
|
3900
|
+
size?: EditorSeparator["size"]
|
|
3901
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3902
|
+
selected?: EditorSeparator["selected"]
|
|
3903
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3904
|
+
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3905
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3906
|
+
focusable?: EditorSeparator["focusable"]
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
3909
|
export type HealthHeartFillProps = {
|
|
3910
3910
|
/** (optional) The width and height in pixels */
|
|
3911
3911
|
size?: HealthHeartFill["size"]
|
|
@@ -4159,17 +4159,6 @@ export type SystemDeleteBinLineProps = {
|
|
|
4159
4159
|
focusable?: SystemDeleteBinLine["focusable"]
|
|
4160
4160
|
}
|
|
4161
4161
|
|
|
4162
|
-
export type SystemDownloadLineProps = {
|
|
4163
|
-
/** (optional) The width and height in pixels */
|
|
4164
|
-
size?: SystemDownloadLine["size"]
|
|
4165
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4166
|
-
selected?: SystemDownloadLine["selected"]
|
|
4167
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4168
|
-
accessibilityTitle?: SystemDownloadLine["accessibilityTitle"]
|
|
4169
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4170
|
-
focusable?: SystemDownloadLine["focusable"]
|
|
4171
|
-
}
|
|
4172
|
-
|
|
4173
4162
|
export type SystemErrorWarningFillProps = {
|
|
4174
4163
|
/** (optional) The width and height in pixels */
|
|
4175
4164
|
size?: SystemErrorWarningFill["size"]
|
|
@@ -4181,15 +4170,15 @@ export type SystemErrorWarningFillProps = {
|
|
|
4181
4170
|
focusable?: SystemErrorWarningFill["focusable"]
|
|
4182
4171
|
}
|
|
4183
4172
|
|
|
4184
|
-
export type
|
|
4173
|
+
export type SystemDownloadLineProps = {
|
|
4185
4174
|
/** (optional) The width and height in pixels */
|
|
4186
|
-
size?:
|
|
4175
|
+
size?: SystemDownloadLine["size"]
|
|
4187
4176
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4188
|
-
selected?:
|
|
4177
|
+
selected?: SystemDownloadLine["selected"]
|
|
4189
4178
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4190
|
-
accessibilityTitle?:
|
|
4179
|
+
accessibilityTitle?: SystemDownloadLine["accessibilityTitle"]
|
|
4191
4180
|
/** (optional) If `true` the icon can receive focus */
|
|
4192
|
-
focusable?:
|
|
4181
|
+
focusable?: SystemDownloadLine["focusable"]
|
|
4193
4182
|
}
|
|
4194
4183
|
|
|
4195
4184
|
export type SystemErrorWarningLineProps = {
|
|
@@ -4203,6 +4192,17 @@ export type SystemErrorWarningLineProps = {
|
|
|
4203
4192
|
focusable?: SystemErrorWarningLine["focusable"]
|
|
4204
4193
|
}
|
|
4205
4194
|
|
|
4195
|
+
export type SystemExternalLinkLineProps = {
|
|
4196
|
+
/** (optional) The width and height in pixels */
|
|
4197
|
+
size?: SystemExternalLinkLine["size"]
|
|
4198
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4199
|
+
selected?: SystemExternalLinkLine["selected"]
|
|
4200
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4201
|
+
accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
|
|
4202
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4203
|
+
focusable?: SystemExternalLinkLine["focusable"]
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4206
4206
|
export type SystemEyeLineProps = {
|
|
4207
4207
|
/** (optional) The width and height in pixels */
|
|
4208
4208
|
size?: SystemEyeLine["size"]
|
|
@@ -4514,6 +4514,32 @@ export type SystemZoomOutLineProps = {
|
|
|
4514
4514
|
// Augment Vue's GlobalComponents interface
|
|
4515
4515
|
declare module 'vue' {
|
|
4516
4516
|
interface GlobalComponents {
|
|
4517
|
+
/**
|
|
4518
|
+
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4519
|
+
*
|
|
4520
|
+
* ### Events:
|
|
4521
|
+
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4522
|
+
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4523
|
+
*
|
|
4524
|
+
* ### Slots:
|
|
4525
|
+
* - **default** - The content of the accordion.
|
|
4526
|
+
* - **heading** - The heading of the accordion.
|
|
4527
|
+
* - **icon-opened** - The icon when the accordion is opened.
|
|
4528
|
+
* - **icon-closed** - The icon when the accordion is closed.
|
|
4529
|
+
*
|
|
4530
|
+
* ### CSS Parts:
|
|
4531
|
+
* - **base** - The main accordion container.
|
|
4532
|
+
* - **heading** - The heading of the accordion.
|
|
4533
|
+
* - **button** - The button of the accordion.
|
|
4534
|
+
* - **content** - The content of the accordion.
|
|
4535
|
+
* - **content-container** - The container of the accordion content.
|
|
4536
|
+
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4537
|
+
* - **open-icon** - The icon when the accordion is opened.
|
|
4538
|
+
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4539
|
+
* - **close-icon** - The icon when the accordion is closed.
|
|
4540
|
+
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4541
|
+
*/
|
|
4542
|
+
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4517
4543
|
/**
|
|
4518
4544
|
* An accordion group is a collection of accordion components.
|
|
4519
4545
|
*
|
|
@@ -4545,31 +4571,20 @@ declare module 'vue' {
|
|
|
4545
4571
|
*/
|
|
4546
4572
|
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4547
4573
|
/**
|
|
4548
|
-
*
|
|
4574
|
+
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4549
4575
|
*
|
|
4550
4576
|
* ### Events:
|
|
4551
|
-
* - **dds-
|
|
4552
|
-
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4577
|
+
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4553
4578
|
*
|
|
4554
4579
|
* ### Slots:
|
|
4555
|
-
* - **default** - The
|
|
4556
|
-
* - **heading** - The heading of the accordion.
|
|
4557
|
-
* - **icon-opened** - The icon when the accordion is opened.
|
|
4558
|
-
* - **icon-closed** - The icon when the accordion is closed.
|
|
4580
|
+
* - **default** - The avatars to display in the group.
|
|
4559
4581
|
*
|
|
4560
4582
|
* ### CSS Parts:
|
|
4561
|
-
* - **base** - The main
|
|
4562
|
-
* - **
|
|
4563
|
-
* - **
|
|
4564
|
-
* - **content** - The content of the accordion.
|
|
4565
|
-
* - **content-container** - The container of the accordion content.
|
|
4566
|
-
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4567
|
-
* - **open-icon** - The icon when the accordion is opened.
|
|
4568
|
-
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4569
|
-
* - **close-icon** - The icon when the accordion is closed.
|
|
4570
|
-
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4583
|
+
* - **base** - The main container of the avatar group.
|
|
4584
|
+
* - **avatars** - The container for the visible avatars.
|
|
4585
|
+
* - **overflow** - The overflow indicator element.
|
|
4571
4586
|
*/
|
|
4572
|
-
'dap-ds-
|
|
4587
|
+
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4573
4588
|
/**
|
|
4574
4589
|
* A badge is a small status descriptor for UI elements.
|
|
4575
4590
|
*
|
|
@@ -4608,18 +4623,6 @@ declare module 'vue' {
|
|
|
4608
4623
|
* - **title** - The title of the banner.
|
|
4609
4624
|
*/
|
|
4610
4625
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4611
|
-
/**
|
|
4612
|
-
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4613
|
-
*
|
|
4614
|
-
* ### Slots:
|
|
4615
|
-
* - **default** - The content of the breadcrumb.
|
|
4616
|
-
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4617
|
-
*
|
|
4618
|
-
* ### CSS Parts:
|
|
4619
|
-
* - **base** - The main breadcrumb container.
|
|
4620
|
-
* - **separator** - The separator of the breadcrumb.
|
|
4621
|
-
*/
|
|
4622
|
-
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4623
4626
|
/**
|
|
4624
4627
|
* Anchor heading is a heading with an anchor link.
|
|
4625
4628
|
*
|
|
@@ -4631,20 +4634,17 @@ declare module 'vue' {
|
|
|
4631
4634
|
*/
|
|
4632
4635
|
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4633
4636
|
/**
|
|
4634
|
-
*
|
|
4635
|
-
*
|
|
4636
|
-
* ### Events:
|
|
4637
|
-
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4637
|
+
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4638
4638
|
*
|
|
4639
4639
|
* ### Slots:
|
|
4640
|
-
* - **default** - The
|
|
4640
|
+
* - **default** - The content of the breadcrumb.
|
|
4641
|
+
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4641
4642
|
*
|
|
4642
4643
|
* ### CSS Parts:
|
|
4643
|
-
* - **base** - The main container
|
|
4644
|
-
* - **
|
|
4645
|
-
* - **overflow** - The overflow indicator element.
|
|
4644
|
+
* - **base** - The main breadcrumb container.
|
|
4645
|
+
* - **separator** - The separator of the breadcrumb.
|
|
4646
4646
|
*/
|
|
4647
|
-
'dap-ds-
|
|
4647
|
+
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4648
4648
|
/**
|
|
4649
4649
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4650
4650
|
*
|
|
@@ -4732,27 +4732,6 @@ declare module 'vue' {
|
|
|
4732
4732
|
* - **close** - The close button of the callout.
|
|
4733
4733
|
*/
|
|
4734
4734
|
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4735
|
-
/**
|
|
4736
|
-
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4737
|
-
*
|
|
4738
|
-
* ### Events:
|
|
4739
|
-
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4740
|
-
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4741
|
-
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4742
|
-
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4743
|
-
*
|
|
4744
|
-
* ### CSS Parts:
|
|
4745
|
-
* - **base** - The main checkbox container.
|
|
4746
|
-
* - **label** - The label of the checkbox.
|
|
4747
|
-
* - **input** - The input of the checkbox.
|
|
4748
|
-
* - **control** - The control of the checkbox.
|
|
4749
|
-
* - **icon** - The icon of the checkbox.
|
|
4750
|
-
* - **icon-base** - The base icon container.
|
|
4751
|
-
* - **label-container** - The label container of the checkbox.
|
|
4752
|
-
* - **description** - The description of the checkbox.
|
|
4753
|
-
* - **readonly** - The readonly state of the checkbox.
|
|
4754
|
-
*/
|
|
4755
|
-
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4756
4735
|
/**
|
|
4757
4736
|
* A card actions is a container for actions in a card.
|
|
4758
4737
|
*
|
|
@@ -4813,6 +4792,27 @@ declare module 'vue' {
|
|
|
4813
4792
|
* - **base** - The main card container.
|
|
4814
4793
|
*/
|
|
4815
4794
|
'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
|
|
4795
|
+
/**
|
|
4796
|
+
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4797
|
+
*
|
|
4798
|
+
* ### Events:
|
|
4799
|
+
* - **dds-change** - Fired when the checkbox is checked or unchecked.
|
|
4800
|
+
* - **dds-blur** - Emitted when the checkbox loses focus.
|
|
4801
|
+
* - **dds-focus** - Emitted when the checkbox gains focus.
|
|
4802
|
+
* - **dds-input** - Emitted when the checkbox receives input.
|
|
4803
|
+
*
|
|
4804
|
+
* ### CSS Parts:
|
|
4805
|
+
* - **base** - The main checkbox container.
|
|
4806
|
+
* - **label** - The label of the checkbox.
|
|
4807
|
+
* - **input** - The input of the checkbox.
|
|
4808
|
+
* - **control** - The control of the checkbox.
|
|
4809
|
+
* - **icon** - The icon of the checkbox.
|
|
4810
|
+
* - **icon-base** - The base icon container.
|
|
4811
|
+
* - **label-container** - The label container of the checkbox.
|
|
4812
|
+
* - **description** - The description of the checkbox.
|
|
4813
|
+
* - **readonly** - The readonly state of the checkbox.
|
|
4814
|
+
*/
|
|
4815
|
+
'dap-ds-checkbox': DefineCustomElement<DapDSCheckbox, DapDSCheckboxProps, DapDSCheckboxEvents>
|
|
4816
4816
|
/**
|
|
4817
4817
|
* A chip is a small status descriptor for UI elements.
|
|
4818
4818
|
*
|
|
@@ -6064,6 +6064,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6064
6064
|
* - **container** - The container of the radio group items.
|
|
6065
6065
|
*/
|
|
6066
6066
|
'dap-ds-radio-group': DefineCustomElement<DapDSRadioGroup, DapDSRadioGroupProps, DapDSRadioGroupEvents>
|
|
6067
|
+
/**
|
|
6068
|
+
* An icon
|
|
6069
|
+
*
|
|
6070
|
+
* ### CSS Parts:
|
|
6071
|
+
* - **base** - The main icon container.
|
|
6072
|
+
*/
|
|
6073
|
+
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6067
6074
|
/**
|
|
6068
6075
|
* An icon
|
|
6069
6076
|
*
|
|
@@ -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-
|
|
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-
|
|
6129
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6123
6130
|
/**
|
|
6124
6131
|
* An icon
|
|
6125
6132
|
*
|
|
@@ -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
|
*
|
|
@@ -6238,14 +6238,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6238
6238
|
* ### CSS Parts:
|
|
6239
6239
|
* - **base** - The main icon container.
|
|
6240
6240
|
*/
|
|
6241
|
-
'dap-ds-icon-
|
|
6241
|
+
'dap-ds-icon-clipboard-line': DefineCustomElement<DocumentClipboardLine, DocumentClipboardLineProps, {}>
|
|
6242
6242
|
/**
|
|
6243
6243
|
* An icon
|
|
6244
6244
|
*
|
|
6245
6245
|
* ### CSS Parts:
|
|
6246
6246
|
* - **base** - The main icon container.
|
|
6247
6247
|
*/
|
|
6248
|
-
'dap-ds-icon-
|
|
6248
|
+
'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
|
|
6249
6249
|
/**
|
|
6250
6250
|
* An icon
|
|
6251
6251
|
*
|
|
@@ -6259,42 +6259,42 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6259
6259
|
* ### CSS Parts:
|
|
6260
6260
|
* - **base** - The main icon container.
|
|
6261
6261
|
*/
|
|
6262
|
-
'dap-ds-icon-file-
|
|
6262
|
+
'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
|
|
6263
6263
|
/**
|
|
6264
6264
|
* An icon
|
|
6265
6265
|
*
|
|
6266
6266
|
* ### CSS Parts:
|
|
6267
6267
|
* - **base** - The main icon container.
|
|
6268
6268
|
*/
|
|
6269
|
-
'dap-ds-icon-file-
|
|
6269
|
+
'dap-ds-icon-file-text-line': DefineCustomElement<DocumentFileTextLine, DocumentFileTextLineProps, {}>
|
|
6270
6270
|
/**
|
|
6271
6271
|
* An icon
|
|
6272
6272
|
*
|
|
6273
6273
|
* ### CSS Parts:
|
|
6274
6274
|
* - **base** - The main icon container.
|
|
6275
6275
|
*/
|
|
6276
|
-
'dap-ds-icon-file-
|
|
6276
|
+
'dap-ds-icon-file-video-line': DefineCustomElement<DocumentFileVideoLine, DocumentFileVideoLineProps, {}>
|
|
6277
6277
|
/**
|
|
6278
6278
|
* An icon
|
|
6279
6279
|
*
|
|
6280
6280
|
* ### CSS Parts:
|
|
6281
6281
|
* - **base** - The main icon container.
|
|
6282
6282
|
*/
|
|
6283
|
-
'dap-ds-icon-
|
|
6283
|
+
'dap-ds-icon-folder-line': DefineCustomElement<DocumentFolderLine, DocumentFolderLineProps, {}>
|
|
6284
6284
|
/**
|
|
6285
6285
|
* An icon
|
|
6286
6286
|
*
|
|
6287
6287
|
* ### CSS Parts:
|
|
6288
6288
|
* - **base** - The main icon container.
|
|
6289
6289
|
*/
|
|
6290
|
-
'dap-ds-icon-folder-line': DefineCustomElement<
|
|
6290
|
+
'dap-ds-icon-folder-open-line': DefineCustomElement<DocumentFolderOpenLine, DocumentFolderOpenLineProps, {}>
|
|
6291
6291
|
/**
|
|
6292
6292
|
* An icon
|
|
6293
6293
|
*
|
|
6294
6294
|
* ### CSS Parts:
|
|
6295
6295
|
* - **base** - The main icon container.
|
|
6296
6296
|
*/
|
|
6297
|
-
'dap-ds-icon-
|
|
6297
|
+
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6298
6298
|
/**
|
|
6299
6299
|
* An icon
|
|
6300
6300
|
*
|
|
@@ -6462,28 +6462,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6462
6462
|
* ### CSS Parts:
|
|
6463
6463
|
* - **base** - The main icon container.
|
|
6464
6464
|
*/
|
|
6465
|
-
'dap-ds-icon-
|
|
6465
|
+
'dap-ds-icon-error-warning-fill': DefineCustomElement<SystemErrorWarningFill, SystemErrorWarningFillProps, {}>
|
|
6466
6466
|
/**
|
|
6467
6467
|
* An icon
|
|
6468
6468
|
*
|
|
6469
6469
|
* ### CSS Parts:
|
|
6470
6470
|
* - **base** - The main icon container.
|
|
6471
6471
|
*/
|
|
6472
|
-
'dap-ds-icon-
|
|
6472
|
+
'dap-ds-icon-download-line': DefineCustomElement<SystemDownloadLine, SystemDownloadLineProps, {}>
|
|
6473
6473
|
/**
|
|
6474
6474
|
* An icon
|
|
6475
6475
|
*
|
|
6476
6476
|
* ### CSS Parts:
|
|
6477
6477
|
* - **base** - The main icon container.
|
|
6478
6478
|
*/
|
|
6479
|
-
'dap-ds-icon-
|
|
6479
|
+
'dap-ds-icon-error-warning-line': DefineCustomElement<SystemErrorWarningLine, SystemErrorWarningLineProps, {}>
|
|
6480
6480
|
/**
|
|
6481
6481
|
* An icon
|
|
6482
6482
|
*
|
|
6483
6483
|
* ### CSS Parts:
|
|
6484
6484
|
* - **base** - The main icon container.
|
|
6485
6485
|
*/
|
|
6486
|
-
'dap-ds-icon-
|
|
6486
|
+
'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
|
|
6487
6487
|
/**
|
|
6488
6488
|
* An icon
|
|
6489
6489
|
*
|
|
@@ -6687,26 +6687,26 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6687
6687
|
declare global {
|
|
6688
6688
|
namespace JSX {
|
|
6689
6689
|
interface IntrinsicElements {
|
|
6690
|
+
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6690
6691
|
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6691
6692
|
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6692
|
-
'dap-ds-
|
|
6693
|
+
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6693
6694
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6694
6695
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6695
|
-
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6696
6696
|
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6697
|
-
'dap-ds-
|
|
6697
|
+
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6698
6698
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6699
6699
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6700
6700
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6701
6701
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6702
6702
|
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6703
|
-
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6704
6703
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
6705
6704
|
'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
|
|
6706
6705
|
'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
|
|
6707
6706
|
'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
|
|
6708
6707
|
'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
|
|
6709
6708
|
'dap-ds-card': DapDSCardProps & DapDSCardSlots
|
|
6709
|
+
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6710
6710
|
'dap-ds-chip': DapDSChipProps & DapDSChipEvents
|
|
6711
6711
|
'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
|
|
6712
6712
|
'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
|
|
@@ -6781,14 +6781,15 @@ 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
6786
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6786
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
|
|
6794
6795
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
@@ -6800,20 +6801,19 @@ declare global {
|
|
|
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
|
-
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6809
6808
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6810
|
-
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6811
6809
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
6810
|
+
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6812
6811
|
'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
|
|
6813
6812
|
'dap-ds-icon-file-text-line': DocumentFileTextLineProps
|
|
6814
6813
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6815
6814
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6816
6815
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6816
|
+
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6817
6817
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6818
6818
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6819
6819
|
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
@@ -6837,10 +6837,10 @@ declare global {
|
|
|
6837
6837
|
'dap-ds-icon-close-line': SystemCloseLineProps
|
|
6838
6838
|
'dap-ds-icon-delete-bin-fill': SystemDeleteBinFillProps
|
|
6839
6839
|
'dap-ds-icon-delete-bin-line': SystemDeleteBinLineProps
|
|
6840
|
-
'dap-ds-icon-download-line': SystemDownloadLineProps
|
|
6841
6840
|
'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
|
|
6842
|
-
'dap-ds-icon-
|
|
6841
|
+
'dap-ds-icon-download-line': SystemDownloadLineProps
|
|
6843
6842
|
'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
|
|
6843
|
+
'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
|
|
6844
6844
|
'dap-ds-icon-eye-line': SystemEyeLineProps
|
|
6845
6845
|
'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
|
|
6846
6846
|
'dap-ds-icon-forbid-fill': SystemForbidFillProps
|