dap-design-system 0.57.5 → 0.57.7
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/common/types.d.ts +2 -0
- package/dist/components/accordion/accordion-base-element.d.ts +12 -0
- package/dist/components/button/button.component.d.ts +7 -0
- package/dist/components/form/radio-group/radio-group.component.d.ts +2 -0
- package/dist/components/image-zoom/image-zoom.component.d.ts +1 -1
- package/dist/components/modal/modal-base-element.d.ts +15 -1
- package/dist/components/sidenav/sidenav-item.component.d.ts +13 -2
- package/dist/{components-DAqH4X61.js → components-CMBmObyM.js} +627 -550
- package/dist/components-CMBmObyM.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +310 -303
- package/dist/manifest/vscode.html-custom-data.json +266 -254
- package/dist/manifest/web-types.json +394 -381
- package/dist/react/index.d.ts +14 -14
- package/dist/react-types.ts +15 -15
- package/dist/react.js +256 -256
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-DAqH4X61.js.map +0 -1
|
@@ -210,11 +210,11 @@ type DefineGenericCustomElement<
|
|
|
210
210
|
$props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
export interface
|
|
214
|
-
/**
|
|
215
|
-
|
|
216
|
-
/**
|
|
217
|
-
|
|
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
218
|
}
|
|
219
219
|
|
|
220
220
|
export interface DapDSAvatarGroupEvents {
|
|
@@ -222,18 +222,18 @@ export interface DapDSAvatarGroupEvents {
|
|
|
222
222
|
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
223
223
|
}
|
|
224
224
|
|
|
225
|
+
export interface DapDSAvatarEvents {
|
|
226
|
+
/** Fired when the image loads successfully. */
|
|
227
|
+
onDdsLoad?: (event: CustomEvent) => void
|
|
228
|
+
/** Fired when the image fails to load. */
|
|
229
|
+
onDdsError?: (event: CustomEvent) => void
|
|
230
|
+
}
|
|
231
|
+
|
|
225
232
|
export interface DapDSBannerEvents {
|
|
226
233
|
/** Event fired when the banner is closed. */
|
|
227
234
|
onDdsClose?: (event: CustomEvent) => void
|
|
228
235
|
}
|
|
229
236
|
|
|
230
|
-
export interface DapDSAccordionEvents {
|
|
231
|
-
/** Event fired when the accordion is opened. */
|
|
232
|
-
onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
233
|
-
/** Event fired when the accordion is closed. */
|
|
234
|
-
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
235
|
-
}
|
|
236
|
-
|
|
237
237
|
export interface DapDSButtonEvents {
|
|
238
238
|
/** Emitted when the loading timeout is reached */
|
|
239
239
|
onDdsLoadingTimeout?: (event: CustomEvent) => void
|
|
@@ -655,16 +655,15 @@ export interface DapDSRadioGroupEvents {
|
|
|
655
655
|
onDdsFocus?: (event: CustomEvent) => void
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
export interface
|
|
659
|
-
/** The
|
|
660
|
-
'icon'?: () => any
|
|
661
|
-
/** Custom fallback content when image fails to load. */
|
|
662
|
-
'fallback'?: () => any
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
export interface DapDSAccordionGroupSlots {
|
|
666
|
-
/** The content of the accordion group. */
|
|
658
|
+
export interface DapDSAccordionSlots {
|
|
659
|
+
/** The content of the accordion. */
|
|
667
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
|
|
668
667
|
}
|
|
669
668
|
|
|
670
669
|
export interface DapDSAvatarGroupSlots {
|
|
@@ -672,6 +671,13 @@ export interface DapDSAvatarGroupSlots {
|
|
|
672
671
|
default?: () => any
|
|
673
672
|
}
|
|
674
673
|
|
|
674
|
+
export interface DapDSAvatarSlots {
|
|
675
|
+
/** The icon to display when variant is 'icon'. */
|
|
676
|
+
'icon'?: () => any
|
|
677
|
+
/** Custom fallback content when image fails to load. */
|
|
678
|
+
'fallback'?: () => any
|
|
679
|
+
}
|
|
680
|
+
|
|
675
681
|
export interface DapDSBadgeSlots {
|
|
676
682
|
/** The content of the badge. */
|
|
677
683
|
default?: () => any
|
|
@@ -688,17 +694,6 @@ export interface DapDSBannerSlots {
|
|
|
688
694
|
'icon'?: () => any
|
|
689
695
|
}
|
|
690
696
|
|
|
691
|
-
export interface DapDSAccordionSlots {
|
|
692
|
-
/** The content of the accordion. */
|
|
693
|
-
default?: () => any
|
|
694
|
-
/** The heading of the accordion. */
|
|
695
|
-
'heading'?: () => any
|
|
696
|
-
/** The icon when the accordion is opened. */
|
|
697
|
-
'icon-opened'?: () => any
|
|
698
|
-
/** The icon when the accordion is closed. */
|
|
699
|
-
'icon-closed'?: () => any
|
|
700
|
-
}
|
|
701
|
-
|
|
702
697
|
export interface DapDSBreadcrumbSlots {
|
|
703
698
|
/** The content of the breadcrumb. */
|
|
704
699
|
default?: () => any
|
|
@@ -706,6 +701,11 @@ export interface DapDSBreadcrumbSlots {
|
|
|
706
701
|
'separator'?: () => any
|
|
707
702
|
}
|
|
708
703
|
|
|
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
|
|
@@ -1123,15 +1123,48 @@ export interface DapDSRadioGroupSlots {
|
|
|
1123
1123
|
'feedback-icon'?: () => any
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
|
-
export type
|
|
1127
|
-
/** The
|
|
1128
|
-
|
|
1129
|
-
/**
|
|
1130
|
-
|
|
1131
|
-
/**
|
|
1132
|
-
|
|
1133
|
-
/**
|
|
1134
|
-
|
|
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
|
+
|
|
1151
|
+
export type DapDSAvatarGroupProps = {
|
|
1152
|
+
/** Layout type for the avatar group */
|
|
1153
|
+
layout?: DapDSAvatarGroup["layout"]
|
|
1154
|
+
/** Maximum number of avatars to show before showing overflow */
|
|
1155
|
+
max?: DapDSAvatarGroup["max"]
|
|
1156
|
+
/** Whether to show the total count in overflow indicator */
|
|
1157
|
+
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1158
|
+
/** Interactive overflow indicator */
|
|
1159
|
+
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1160
|
+
/** Accessible label for the avatar group */
|
|
1161
|
+
label?: DapDSAvatarGroup["label"]
|
|
1162
|
+
/** Accessible label for the overflow indicator */
|
|
1163
|
+
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1164
|
+
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1165
|
+
size?: DapDSAvatarGroup["size"]
|
|
1166
|
+
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1167
|
+
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1135
1168
|
}
|
|
1136
1169
|
|
|
1137
1170
|
export type DapDSAvatarProps = {
|
|
@@ -1161,32 +1194,6 @@ export type DapDSAvatarProps = {
|
|
|
1161
1194
|
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1162
1195
|
}
|
|
1163
1196
|
|
|
1164
|
-
export type DapDSAccordionGroupProps = {
|
|
1165
|
-
/** Whether to close other accordions when one is opened. */
|
|
1166
|
-
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1167
|
-
/** The variant of the accordion */
|
|
1168
|
-
variant?: DapDSAccordionGroup["variant"]
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
export type DapDSAvatarGroupProps = {
|
|
1172
|
-
/** Layout type for the avatar group */
|
|
1173
|
-
layout?: DapDSAvatarGroup["layout"]
|
|
1174
|
-
/** Maximum number of avatars to show before showing overflow */
|
|
1175
|
-
max?: DapDSAvatarGroup["max"]
|
|
1176
|
-
/** Whether to show the total count in overflow indicator */
|
|
1177
|
-
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1178
|
-
/** Interactive overflow indicator */
|
|
1179
|
-
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1180
|
-
/** Accessible label for the avatar group */
|
|
1181
|
-
label?: DapDSAvatarGroup["label"]
|
|
1182
|
-
/** Accessible label for the overflow indicator */
|
|
1183
|
-
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1184
|
-
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1185
|
-
size?: DapDSAvatarGroup["size"]
|
|
1186
|
-
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1187
|
-
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
1197
|
export type DapDSBadgeProps = {
|
|
1191
1198
|
/** The type of the badge */
|
|
1192
1199
|
type?: DapDSBadge["type"]
|
|
@@ -1213,31 +1220,6 @@ export type DapDSBannerProps = {
|
|
|
1213
1220
|
icon?: DapDSBanner["icon"]
|
|
1214
1221
|
}
|
|
1215
1222
|
|
|
1216
|
-
export type DapDSAccordionProps = {
|
|
1217
|
-
/** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
|
|
1218
|
-
size?: DapDSAccordion["size"]
|
|
1219
|
-
/** Responsive size map (e.g. "md:lg") */
|
|
1220
|
-
sizeMap?: DapDSAccordion["sizeMap"]
|
|
1221
|
-
/** When "true", size is taken from the parent card if present. */
|
|
1222
|
-
parentSized?: DapDSAccordion["parentSized"]
|
|
1223
|
-
/** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
|
|
1224
|
-
heading?: DapDSAccordion["heading"]
|
|
1225
|
-
/** The heading level of the accordion. Default is `4`. */
|
|
1226
|
-
headingLevel?: DapDSAccordion["headingLevel"]
|
|
1227
|
-
/** Whether the accordion is opened. Default is `false`. */
|
|
1228
|
-
opened?: DapDSAccordion["opened"]
|
|
1229
|
-
/** The location of the icon. Default is `right`. */
|
|
1230
|
-
iconLocation?: DapDSAccordion["iconLocation"]
|
|
1231
|
-
/** The variant of the accordion. */
|
|
1232
|
-
variant?: DapDSAccordion["variant"]
|
|
1233
|
-
/** Whether the accordion is the last item. */
|
|
1234
|
-
lastItem?: DapDSAccordion["lastItem"]
|
|
1235
|
-
/** Whether the accordion is disabled. */
|
|
1236
|
-
disabled?: DapDSAccordion["disabled"]
|
|
1237
|
-
/** Whether the accordion is in loading state. */
|
|
1238
|
-
loading?: DapDSAccordion["loading"]
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
1223
|
export type DapDSBreadcrumbProps = {
|
|
1242
1224
|
/** */
|
|
1243
1225
|
variant?: DapDSBreadcrumb["variant"]
|
|
@@ -1247,6 +1229,24 @@ export type DapDSBreadcrumbProps = {
|
|
|
1247
1229
|
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1248
1230
|
}
|
|
1249
1231
|
|
|
1232
|
+
export type DapDSAccordionGroupProps = {
|
|
1233
|
+
/** Whether to close other accordions when one is opened. */
|
|
1234
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1235
|
+
/** The variant of the accordion */
|
|
1236
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
export type DapDSAnchorHeadingProps = {
|
|
1240
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1241
|
+
variant?: DapDSAnchorHeading["variant"]
|
|
1242
|
+
/** The label of the heading. */
|
|
1243
|
+
label?: DapDSAnchorHeading["label"]
|
|
1244
|
+
/** */
|
|
1245
|
+
elementId?: DapDSAnchorHeading["elementId"]
|
|
1246
|
+
/** */
|
|
1247
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
1250
|
export type DapDSBreadcrumbItemProps = {
|
|
1251
1251
|
/** The URL of the breadcrumb item. */
|
|
1252
1252
|
href?: DapDSBreadcrumbItem["href"]
|
|
@@ -2988,6 +2988,13 @@ export type DapDSSideNavItemProps = {
|
|
|
2988
2988
|
href?: DapDSSideNavItem["href"]
|
|
2989
2989
|
/** Whether the side navigation item is active */
|
|
2990
2990
|
active?: DapDSSideNavItem["active"]
|
|
2991
|
+
/** Which `aria-current` token to expose on the link when `active` is set.
|
|
2992
|
+
|
|
2993
|
+
`aria-current` has to sit on the anchor that assistive technology actually
|
|
2994
|
+
exposes. Setting it on this host does nothing: the host is a role-less custom
|
|
2995
|
+
element, so the attribute is stranded there and screen-reader users cannot tell
|
|
2996
|
+
which item is current. Use `current="step"` inside a stepper. */
|
|
2997
|
+
current?: DapDSSideNavItem["current"]
|
|
2991
2998
|
/** The spacing of the side navigation item */
|
|
2992
2999
|
spacing?: DapDSSideNavItem["spacing"]
|
|
2993
3000
|
/** The size of the side navigation item */
|
|
@@ -3003,17 +3010,6 @@ export type DapDSSideNavProps = {
|
|
|
3003
3010
|
size?: DapDSSideNav["size"]
|
|
3004
3011
|
}
|
|
3005
3012
|
|
|
3006
|
-
export type DapDSSkipLinkProps = {
|
|
3007
|
-
/** The placement of the skip link. */
|
|
3008
|
-
placement?: DapDSSkipLink["placement"]
|
|
3009
|
-
/** The href of the skip link */
|
|
3010
|
-
href?: DapDSSkipLink["href"]
|
|
3011
|
-
/** The size of the skip link */
|
|
3012
|
-
size?: DapDSSkipLink["size"]
|
|
3013
|
-
/** Whether the skip link should have an underline */
|
|
3014
|
-
noUnderline?: DapDSSkipLink["noUnderline"]
|
|
3015
|
-
}
|
|
3016
|
-
|
|
3017
3013
|
export type DapDSSkeletonProps = {
|
|
3018
3014
|
/** The variant of the skeleton. */
|
|
3019
3015
|
variant?: DapDSSkeleton["variant"]
|
|
@@ -3030,6 +3026,17 @@ Should be a valid CSS keyframes string without the */
|
|
|
3030
3026
|
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
3031
3027
|
}
|
|
3032
3028
|
|
|
3029
|
+
export type DapDSSkipLinkProps = {
|
|
3030
|
+
/** The placement of the skip link. */
|
|
3031
|
+
placement?: DapDSSkipLink["placement"]
|
|
3032
|
+
/** The href of the skip link */
|
|
3033
|
+
href?: DapDSSkipLink["href"]
|
|
3034
|
+
/** The size of the skip link */
|
|
3035
|
+
size?: DapDSSkipLink["size"]
|
|
3036
|
+
/** Whether the skip link should have an underline */
|
|
3037
|
+
noUnderline?: DapDSSkipLink["noUnderline"]
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3033
3040
|
export type DapDSSnackbarMessageProps = {
|
|
3034
3041
|
/** The actions of the snackbar item. */
|
|
3035
3042
|
actions?: DapDSSnackbarMessage["actions"]
|
|
@@ -3631,17 +3638,6 @@ export type ArrowsArrowLeftSLineProps = {
|
|
|
3631
3638
|
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3632
3639
|
}
|
|
3633
3640
|
|
|
3634
|
-
export type ArrowsArrowLeftUpLineProps = {
|
|
3635
|
-
/** (optional) The width and height in pixels */
|
|
3636
|
-
size?: ArrowsArrowLeftUpLine["size"]
|
|
3637
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3638
|
-
selected?: ArrowsArrowLeftUpLine["selected"]
|
|
3639
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3640
|
-
accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
|
|
3641
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3642
|
-
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3643
|
-
}
|
|
3644
|
-
|
|
3645
3641
|
export type ArrowsArrowRightDownLineProps = {
|
|
3646
3642
|
/** (optional) The width and height in pixels */
|
|
3647
3643
|
size?: ArrowsArrowRightDownLine["size"]
|
|
@@ -3653,15 +3649,15 @@ export type ArrowsArrowRightDownLineProps = {
|
|
|
3653
3649
|
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3654
3650
|
}
|
|
3655
3651
|
|
|
3656
|
-
export type
|
|
3652
|
+
export type ArrowsArrowLeftUpLineProps = {
|
|
3657
3653
|
/** (optional) The width and height in pixels */
|
|
3658
|
-
size?:
|
|
3654
|
+
size?: ArrowsArrowLeftUpLine["size"]
|
|
3659
3655
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3660
|
-
selected?:
|
|
3656
|
+
selected?: ArrowsArrowLeftUpLine["selected"]
|
|
3661
3657
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3662
|
-
accessibilityTitle?:
|
|
3658
|
+
accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
|
|
3663
3659
|
/** (optional) If `true` the icon can receive focus */
|
|
3664
|
-
focusable?:
|
|
3660
|
+
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3665
3661
|
}
|
|
3666
3662
|
|
|
3667
3663
|
export type ArrowsArrowRightLineProps = {
|
|
@@ -3675,6 +3671,17 @@ export type ArrowsArrowRightLineProps = {
|
|
|
3675
3671
|
focusable?: ArrowsArrowRightLine["focusable"]
|
|
3676
3672
|
}
|
|
3677
3673
|
|
|
3674
|
+
export type ArrowsArrowRightLLineProps = {
|
|
3675
|
+
/** (optional) The width and height in pixels */
|
|
3676
|
+
size?: ArrowsArrowRightLLine["size"]
|
|
3677
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3678
|
+
selected?: ArrowsArrowRightLLine["selected"]
|
|
3679
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3680
|
+
accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
|
|
3681
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3682
|
+
focusable?: ArrowsArrowRightLLine["focusable"]
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3678
3685
|
export type ArrowsArrowRightSFillProps = {
|
|
3679
3686
|
/** (optional) The width and height in pixels */
|
|
3680
3687
|
size?: ArrowsArrowRightSFill["size"]
|
|
@@ -3807,6 +3814,17 @@ export type DeviceComputerLineProps = {
|
|
|
3807
3814
|
focusable?: DeviceComputerLine["focusable"]
|
|
3808
3815
|
}
|
|
3809
3816
|
|
|
3817
|
+
export type EditorSeparatorProps = {
|
|
3818
|
+
/** (optional) The width and height in pixels */
|
|
3819
|
+
size?: EditorSeparator["size"]
|
|
3820
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3821
|
+
selected?: EditorSeparator["selected"]
|
|
3822
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3823
|
+
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3824
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3825
|
+
focusable?: EditorSeparator["focusable"]
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3810
3828
|
export type DocumentClipboardLineProps = {
|
|
3811
3829
|
/** (optional) The width and height in pixels */
|
|
3812
3830
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3895,26 +3913,26 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3895
3913
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3896
3914
|
}
|
|
3897
3915
|
|
|
3898
|
-
export type
|
|
3916
|
+
export type HealthHeartFillProps = {
|
|
3899
3917
|
/** (optional) The width and height in pixels */
|
|
3900
|
-
size?:
|
|
3918
|
+
size?: HealthHeartFill["size"]
|
|
3901
3919
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3902
|
-
selected?:
|
|
3920
|
+
selected?: HealthHeartFill["selected"]
|
|
3903
3921
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3904
|
-
accessibilityTitle?:
|
|
3922
|
+
accessibilityTitle?: HealthHeartFill["accessibilityTitle"]
|
|
3905
3923
|
/** (optional) If `true` the icon can receive focus */
|
|
3906
|
-
focusable?:
|
|
3924
|
+
focusable?: HealthHeartFill["focusable"]
|
|
3907
3925
|
}
|
|
3908
3926
|
|
|
3909
|
-
export type
|
|
3927
|
+
export type HealthHeartLineProps = {
|
|
3910
3928
|
/** (optional) The width and height in pixels */
|
|
3911
|
-
size?:
|
|
3929
|
+
size?: HealthHeartLine["size"]
|
|
3912
3930
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3913
|
-
selected?:
|
|
3931
|
+
selected?: HealthHeartLine["selected"]
|
|
3914
3932
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3915
|
-
accessibilityTitle?:
|
|
3933
|
+
accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
|
|
3916
3934
|
/** (optional) If `true` the icon can receive focus */
|
|
3917
|
-
focusable?:
|
|
3935
|
+
focusable?: HealthHeartLine["focusable"]
|
|
3918
3936
|
}
|
|
3919
3937
|
|
|
3920
3938
|
export type OthersCookieLineProps = {
|
|
@@ -3928,15 +3946,48 @@ export type OthersCookieLineProps = {
|
|
|
3928
3946
|
focusable?: OthersCookieLine["focusable"]
|
|
3929
3947
|
}
|
|
3930
3948
|
|
|
3931
|
-
export type
|
|
3949
|
+
export type UserAccountCircleFillProps = {
|
|
3932
3950
|
/** (optional) The width and height in pixels */
|
|
3933
|
-
size?:
|
|
3951
|
+
size?: UserAccountCircleFill["size"]
|
|
3934
3952
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3935
|
-
selected?:
|
|
3953
|
+
selected?: UserAccountCircleFill["selected"]
|
|
3936
3954
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3937
|
-
accessibilityTitle?:
|
|
3955
|
+
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
3938
3956
|
/** (optional) If `true` the icon can receive focus */
|
|
3939
|
-
focusable?:
|
|
3957
|
+
focusable?: UserAccountCircleFill["focusable"]
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
export type UserAccountCircleLineProps = {
|
|
3961
|
+
/** (optional) The width and height in pixels */
|
|
3962
|
+
size?: UserAccountCircleLine["size"]
|
|
3963
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3964
|
+
selected?: UserAccountCircleLine["selected"]
|
|
3965
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3966
|
+
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
3967
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3968
|
+
focusable?: UserAccountCircleLine["focusable"]
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
export type UserUserFillProps = {
|
|
3972
|
+
/** (optional) The width and height in pixels */
|
|
3973
|
+
size?: UserUserFill["size"]
|
|
3974
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3975
|
+
selected?: UserUserFill["selected"]
|
|
3976
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3977
|
+
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
3978
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3979
|
+
focusable?: UserUserFill["focusable"]
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
export type UserUserLineProps = {
|
|
3983
|
+
/** (optional) The width and height in pixels */
|
|
3984
|
+
size?: UserUserLine["size"]
|
|
3985
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3986
|
+
selected?: UserUserLine["selected"]
|
|
3987
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3988
|
+
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
3989
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3990
|
+
focusable?: UserUserLine["focusable"]
|
|
3940
3991
|
}
|
|
3941
3992
|
|
|
3942
3993
|
export type SystemAddLineProps = {
|
|
@@ -4335,26 +4386,26 @@ export type SystemShareLineProps = {
|
|
|
4335
4386
|
focusable?: SystemShareLine["focusable"]
|
|
4336
4387
|
}
|
|
4337
4388
|
|
|
4338
|
-
export type
|
|
4389
|
+
export type SystemShieldCheckFillProps = {
|
|
4339
4390
|
/** (optional) The width and height in pixels */
|
|
4340
|
-
size?:
|
|
4391
|
+
size?: SystemShieldCheckFill["size"]
|
|
4341
4392
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4342
|
-
selected?:
|
|
4393
|
+
selected?: SystemShieldCheckFill["selected"]
|
|
4343
4394
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4344
|
-
accessibilityTitle?:
|
|
4395
|
+
accessibilityTitle?: SystemShieldCheckFill["accessibilityTitle"]
|
|
4345
4396
|
/** (optional) If `true` the icon can receive focus */
|
|
4346
|
-
focusable?:
|
|
4397
|
+
focusable?: SystemShieldCheckFill["focusable"]
|
|
4347
4398
|
}
|
|
4348
4399
|
|
|
4349
|
-
export type
|
|
4400
|
+
export type SystemShieldCheckLineProps = {
|
|
4350
4401
|
/** (optional) The width and height in pixels */
|
|
4351
|
-
size?:
|
|
4402
|
+
size?: SystemShieldCheckLine["size"]
|
|
4352
4403
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4353
|
-
selected?:
|
|
4404
|
+
selected?: SystemShieldCheckLine["selected"]
|
|
4354
4405
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4355
|
-
accessibilityTitle?:
|
|
4406
|
+
accessibilityTitle?: SystemShieldCheckLine["accessibilityTitle"]
|
|
4356
4407
|
/** (optional) If `true` the icon can receive focus */
|
|
4357
|
-
focusable?:
|
|
4408
|
+
focusable?: SystemShieldCheckLine["focusable"]
|
|
4358
4409
|
}
|
|
4359
4410
|
|
|
4360
4411
|
export type SystemStarFillProps = {
|
|
@@ -4467,63 +4518,50 @@ export type SystemZoomOutLineProps = {
|
|
|
4467
4518
|
focusable?: SystemZoomOutLine["focusable"]
|
|
4468
4519
|
}
|
|
4469
4520
|
|
|
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
4521
|
// Augment Vue's GlobalComponents interface
|
|
4515
4522
|
declare module 'vue' {
|
|
4516
4523
|
interface GlobalComponents {
|
|
4517
4524
|
/**
|
|
4518
|
-
*
|
|
4525
|
+
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4526
|
+
*
|
|
4527
|
+
* ### Events:
|
|
4528
|
+
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4529
|
+
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4530
|
+
*
|
|
4531
|
+
* ### Slots:
|
|
4532
|
+
* - **default** - The content of the accordion.
|
|
4533
|
+
* - **heading** - The heading of the accordion.
|
|
4534
|
+
* - **icon-opened** - The icon when the accordion is opened.
|
|
4535
|
+
* - **icon-closed** - The icon when the accordion is closed.
|
|
4519
4536
|
*
|
|
4520
4537
|
* ### CSS Parts:
|
|
4521
|
-
* - **base** - The main
|
|
4522
|
-
* - **
|
|
4523
|
-
* - **
|
|
4524
|
-
* - **
|
|
4538
|
+
* - **base** - The main accordion container.
|
|
4539
|
+
* - **heading** - The heading of the accordion.
|
|
4540
|
+
* - **button** - The button of the accordion.
|
|
4541
|
+
* - **content** - The content of the accordion.
|
|
4542
|
+
* - **content-container** - The container of the accordion content.
|
|
4543
|
+
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4544
|
+
* - **open-icon** - The icon when the accordion is opened.
|
|
4545
|
+
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4546
|
+
* - **close-icon** - The icon when the accordion is closed.
|
|
4547
|
+
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4525
4548
|
*/
|
|
4526
|
-
'dap-ds-
|
|
4549
|
+
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4550
|
+
/**
|
|
4551
|
+
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4552
|
+
*
|
|
4553
|
+
* ### Events:
|
|
4554
|
+
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4555
|
+
*
|
|
4556
|
+
* ### Slots:
|
|
4557
|
+
* - **default** - The avatars to display in the group.
|
|
4558
|
+
*
|
|
4559
|
+
* ### CSS Parts:
|
|
4560
|
+
* - **base** - The main container of the avatar group.
|
|
4561
|
+
* - **avatars** - The container for the visible avatars.
|
|
4562
|
+
* - **overflow** - The overflow indicator element.
|
|
4563
|
+
*/
|
|
4564
|
+
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4527
4565
|
/**
|
|
4528
4566
|
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4529
4567
|
*
|
|
@@ -4544,31 +4582,6 @@ declare module 'vue' {
|
|
|
4544
4582
|
* - **loading** - The loading indicator.
|
|
4545
4583
|
*/
|
|
4546
4584
|
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4547
|
-
/**
|
|
4548
|
-
* An accordion group is a collection of accordion components.
|
|
4549
|
-
*
|
|
4550
|
-
* ### Slots:
|
|
4551
|
-
* - **default** - The content of the accordion group.
|
|
4552
|
-
*
|
|
4553
|
-
* ### CSS Parts:
|
|
4554
|
-
* - **base** - The main accordion group container.
|
|
4555
|
-
*/
|
|
4556
|
-
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4557
|
-
/**
|
|
4558
|
-
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4559
|
-
*
|
|
4560
|
-
* ### Events:
|
|
4561
|
-
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4562
|
-
*
|
|
4563
|
-
* ### Slots:
|
|
4564
|
-
* - **default** - The avatars to display in the group.
|
|
4565
|
-
*
|
|
4566
|
-
* ### CSS Parts:
|
|
4567
|
-
* - **base** - The main container of the avatar group.
|
|
4568
|
-
* - **avatars** - The container for the visible avatars.
|
|
4569
|
-
* - **overflow** - The overflow indicator element.
|
|
4570
|
-
*/
|
|
4571
|
-
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4572
4585
|
/**
|
|
4573
4586
|
* A badge is a small status descriptor for UI elements.
|
|
4574
4587
|
*
|
|
@@ -4607,32 +4620,6 @@ declare module 'vue' {
|
|
|
4607
4620
|
* - **title** - The title of the banner.
|
|
4608
4621
|
*/
|
|
4609
4622
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4610
|
-
/**
|
|
4611
|
-
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4612
|
-
*
|
|
4613
|
-
* ### Events:
|
|
4614
|
-
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4615
|
-
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4616
|
-
*
|
|
4617
|
-
* ### Slots:
|
|
4618
|
-
* - **default** - The content of the accordion.
|
|
4619
|
-
* - **heading** - The heading of the accordion.
|
|
4620
|
-
* - **icon-opened** - The icon when the accordion is opened.
|
|
4621
|
-
* - **icon-closed** - The icon when the accordion is closed.
|
|
4622
|
-
*
|
|
4623
|
-
* ### CSS Parts:
|
|
4624
|
-
* - **base** - The main accordion container.
|
|
4625
|
-
* - **heading** - The heading of the accordion.
|
|
4626
|
-
* - **button** - The button of the accordion.
|
|
4627
|
-
* - **content** - The content of the accordion.
|
|
4628
|
-
* - **content-container** - The container of the accordion content.
|
|
4629
|
-
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4630
|
-
* - **open-icon** - The icon when the accordion is opened.
|
|
4631
|
-
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4632
|
-
* - **close-icon** - The icon when the accordion is closed.
|
|
4633
|
-
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4634
|
-
*/
|
|
4635
|
-
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4636
4623
|
/**
|
|
4637
4624
|
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4638
4625
|
*
|
|
@@ -4645,6 +4632,26 @@ declare module 'vue' {
|
|
|
4645
4632
|
* - **separator** - The separator of the breadcrumb.
|
|
4646
4633
|
*/
|
|
4647
4634
|
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4635
|
+
/**
|
|
4636
|
+
* An accordion group is a collection of accordion components.
|
|
4637
|
+
*
|
|
4638
|
+
* ### Slots:
|
|
4639
|
+
* - **default** - The content of the accordion group.
|
|
4640
|
+
*
|
|
4641
|
+
* ### CSS Parts:
|
|
4642
|
+
* - **base** - The main accordion group container.
|
|
4643
|
+
*/
|
|
4644
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4645
|
+
/**
|
|
4646
|
+
* Anchor heading is a heading with an anchor link.
|
|
4647
|
+
*
|
|
4648
|
+
* ### CSS Parts:
|
|
4649
|
+
* - **base** - The main anchor heading container.
|
|
4650
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4651
|
+
* - **link-base** - The base of the link part.
|
|
4652
|
+
* - **text** - The text of the anchor heading.
|
|
4653
|
+
*/
|
|
4654
|
+
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4648
4655
|
/**
|
|
4649
4656
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4650
4657
|
*
|
|
@@ -5710,6 +5717,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5710
5717
|
* - **menu** - The menu of the side navigation.
|
|
5711
5718
|
*/
|
|
5712
5719
|
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5720
|
+
/**
|
|
5721
|
+
* A skeleton loader component for displaying placeholder content while loading.
|
|
5722
|
+
*
|
|
5723
|
+
* ### CSS Parts:
|
|
5724
|
+
* - **base** - The main skeleton container.
|
|
5725
|
+
*/
|
|
5726
|
+
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5713
5727
|
/**
|
|
5714
5728
|
* A skip link is a link that allows keyboard users to skip to the main content of a page.
|
|
5715
5729
|
*
|
|
@@ -5722,13 +5736,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5722
5736
|
* - **high-contrast** - The high contrast outline container.
|
|
5723
5737
|
*/
|
|
5724
5738
|
'dap-ds-skip-link': DefineCustomElement<DapDSSkipLink, DapDSSkipLinkProps, {}>
|
|
5725
|
-
/**
|
|
5726
|
-
* A skeleton loader component for displaying placeholder content while loading.
|
|
5727
|
-
*
|
|
5728
|
-
* ### CSS Parts:
|
|
5729
|
-
* - **base** - The main skeleton container.
|
|
5730
|
-
*/
|
|
5731
|
-
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5732
5739
|
/**
|
|
5733
5740
|
* The Snackbar component shows a sliding message to the user.
|
|
5734
5741
|
*
|
|
@@ -6126,28 +6133,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6126
6133
|
* ### CSS Parts:
|
|
6127
6134
|
* - **base** - The main icon container.
|
|
6128
6135
|
*/
|
|
6129
|
-
'dap-ds-icon-arrow-
|
|
6136
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6130
6137
|
/**
|
|
6131
6138
|
* An icon
|
|
6132
6139
|
*
|
|
6133
6140
|
* ### CSS Parts:
|
|
6134
6141
|
* - **base** - The main icon container.
|
|
6135
6142
|
*/
|
|
6136
|
-
'dap-ds-icon-arrow-
|
|
6143
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6137
6144
|
/**
|
|
6138
6145
|
* An icon
|
|
6139
6146
|
*
|
|
6140
6147
|
* ### CSS Parts:
|
|
6141
6148
|
* - **base** - The main icon container.
|
|
6142
6149
|
*/
|
|
6143
|
-
'dap-ds-icon-arrow-right-
|
|
6150
|
+
'dap-ds-icon-arrow-right-line': DefineCustomElement<ArrowsArrowRightLine, ArrowsArrowRightLineProps, {}>
|
|
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-line': DefineCustomElement<
|
|
6157
|
+
'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
|
|
6151
6158
|
/**
|
|
6152
6159
|
* An icon
|
|
6153
6160
|
*
|
|
@@ -6232,6 +6239,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6232
6239
|
* - **base** - The main icon container.
|
|
6233
6240
|
*/
|
|
6234
6241
|
'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
|
|
6242
|
+
/**
|
|
6243
|
+
* An icon
|
|
6244
|
+
*
|
|
6245
|
+
* ### CSS Parts:
|
|
6246
|
+
* - **base** - The main icon container.
|
|
6247
|
+
*/
|
|
6248
|
+
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6235
6249
|
/**
|
|
6236
6250
|
* An icon
|
|
6237
6251
|
*
|
|
@@ -6294,14 +6308,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6294
6308
|
* ### CSS Parts:
|
|
6295
6309
|
* - **base** - The main icon container.
|
|
6296
6310
|
*/
|
|
6297
|
-
'dap-ds-icon-
|
|
6311
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
6298
6312
|
/**
|
|
6299
6313
|
* An icon
|
|
6300
6314
|
*
|
|
6301
6315
|
* ### CSS Parts:
|
|
6302
6316
|
* - **base** - The main icon container.
|
|
6303
6317
|
*/
|
|
6304
|
-
'dap-ds-icon-heart-
|
|
6318
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
6305
6319
|
/**
|
|
6306
6320
|
* An icon
|
|
6307
6321
|
*
|
|
@@ -6315,7 +6329,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6315
6329
|
* ### CSS Parts:
|
|
6316
6330
|
* - **base** - The main icon container.
|
|
6317
6331
|
*/
|
|
6318
|
-
'dap-ds-icon-
|
|
6332
|
+
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6333
|
+
/**
|
|
6334
|
+
* An icon
|
|
6335
|
+
*
|
|
6336
|
+
* ### CSS Parts:
|
|
6337
|
+
* - **base** - The main icon container.
|
|
6338
|
+
*/
|
|
6339
|
+
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6340
|
+
/**
|
|
6341
|
+
* An icon
|
|
6342
|
+
*
|
|
6343
|
+
* ### CSS Parts:
|
|
6344
|
+
* - **base** - The main icon container.
|
|
6345
|
+
*/
|
|
6346
|
+
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6347
|
+
/**
|
|
6348
|
+
* An icon
|
|
6349
|
+
*
|
|
6350
|
+
* ### CSS Parts:
|
|
6351
|
+
* - **base** - The main icon container.
|
|
6352
|
+
*/
|
|
6353
|
+
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6319
6354
|
/**
|
|
6320
6355
|
* An icon
|
|
6321
6356
|
*
|
|
@@ -6574,14 +6609,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6574
6609
|
* ### CSS Parts:
|
|
6575
6610
|
* - **base** - The main icon container.
|
|
6576
6611
|
*/
|
|
6577
|
-
'dap-ds-icon-shield-check-
|
|
6612
|
+
'dap-ds-icon-shield-check-fill': DefineCustomElement<SystemShieldCheckFill, SystemShieldCheckFillProps, {}>
|
|
6578
6613
|
/**
|
|
6579
6614
|
* An icon
|
|
6580
6615
|
*
|
|
6581
6616
|
* ### CSS Parts:
|
|
6582
6617
|
* - **base** - The main icon container.
|
|
6583
6618
|
*/
|
|
6584
|
-
'dap-ds-icon-shield-check-
|
|
6619
|
+
'dap-ds-icon-shield-check-line': DefineCustomElement<SystemShieldCheckLine, SystemShieldCheckLineProps, {}>
|
|
6585
6620
|
/**
|
|
6586
6621
|
* An icon
|
|
6587
6622
|
*
|
|
@@ -6652,34 +6687,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6652
6687
|
* - **base** - The main icon container.
|
|
6653
6688
|
*/
|
|
6654
6689
|
'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
6690
|
}
|
|
6684
6691
|
}
|
|
6685
6692
|
|
|
@@ -6687,14 +6694,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6687
6694
|
declare global {
|
|
6688
6695
|
namespace JSX {
|
|
6689
6696
|
interface IntrinsicElements {
|
|
6690
|
-
'dap-ds-
|
|
6691
|
-
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6692
|
-
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6697
|
+
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6693
6698
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6699
|
+
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6694
6700
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6695
6701
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6696
|
-
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6697
6702
|
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6703
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6704
|
+
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6698
6705
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6699
6706
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6700
6707
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
@@ -6755,8 +6762,8 @@ declare global {
|
|
|
6755
6762
|
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6756
6763
|
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6757
6764
|
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6758
|
-
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6759
6765
|
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6766
|
+
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6760
6767
|
'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
|
|
6761
6768
|
'dap-ds-snackbar': DapDSSnackbarProps
|
|
6762
6769
|
'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
|
|
@@ -6789,10 +6796,10 @@ declare global {
|
|
|
6789
6796
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6790
6797
|
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6791
6798
|
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6792
|
-
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6793
6799
|
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6794
|
-
'dap-ds-icon-arrow-
|
|
6800
|
+
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6795
6801
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6802
|
+
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6796
6803
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6797
6804
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
6798
6805
|
'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
|
|
@@ -6805,6 +6812,7 @@ declare global {
|
|
|
6805
6812
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6806
6813
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6807
6814
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6815
|
+
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6808
6816
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6809
6817
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6810
6818
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
@@ -6813,10 +6821,13 @@ declare global {
|
|
|
6813
6821
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6814
6822
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6815
6823
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6816
|
-
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6817
6824
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6818
|
-
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6819
6825
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6826
|
+
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6827
|
+
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6828
|
+
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6829
|
+
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6830
|
+
'dap-ds-icon-user-line': UserUserLineProps
|
|
6820
6831
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6821
6832
|
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6822
6833
|
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
@@ -6853,8 +6864,8 @@ declare global {
|
|
|
6853
6864
|
'dap-ds-icon-more-line': SystemMoreLineProps
|
|
6854
6865
|
'dap-ds-icon-search-line': SystemSearchLineProps
|
|
6855
6866
|
'dap-ds-icon-share-line': SystemShareLineProps
|
|
6856
|
-
'dap-ds-icon-shield-check-line': SystemShieldCheckLineProps
|
|
6857
6867
|
'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
|
|
6868
|
+
'dap-ds-icon-shield-check-line': SystemShieldCheckLineProps
|
|
6858
6869
|
'dap-ds-icon-star-fill': SystemStarFillProps
|
|
6859
6870
|
'dap-ds-icon-subtract-line': SystemSubtractLineProps
|
|
6860
6871
|
'dap-ds-icon-subtract-line2': SystemSubtractLine2Props
|
|
@@ -6865,10 +6876,6 @@ declare global {
|
|
|
6865
6876
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6866
6877
|
'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
|
|
6867
6878
|
'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
6879
|
}
|
|
6873
6880
|
}
|
|
6874
6881
|
}
|