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.
@@ -7,30 +7,209 @@
7
7
  "html": {
8
8
  "elements": [
9
9
  {
10
- "name": "dap-ds-anchor-heading",
11
- "description": "Anchor heading is a heading with an anchor link.\n---\n\n\n### **CSS Properties:**\n - **--dds-anchor-link-color** - The color of the anchor link (default: var(--dds-color-primary)) _(default: undefined)_\n- **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered (default: 0) _(default: undefined)_\n- **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered (default: 1) _(default: undefined)_\n- **--dds-anchor-link-transition** - The transition property for the anchor link opacity (default: opacity 0.2s ease-in-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main anchor heading container.\n- **link** - The link of the anchor heading. dap-ds-link element.\n- **link-base** - The base of the link part.\n- **text** - The text of the anchor heading.",
10
+ "name": "dap-ds-accordion",
11
+ "description": "An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.\n---\n\n\n### **Events:**\n - **dds-opened** - Event fired when the accordion is opened.\n- **dds-closed** - Event fired when the accordion is closed.\n\n### **Slots:**\n - **default** - The content of the accordion.\n- **heading** - The heading of the accordion.\n- **icon-opened** - The icon when the accordion is opened.\n- **icon-closed** - The icon when the accordion is closed.\n\n### **CSS Properties:**\n - **--dds-accordion-border-width** - The width of the accordion border (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-border-style** - The style of the accordion border (default: solid) _(default: undefined)_\n- **--dds-accordion-border-radius** - The border radius of the accordion (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-border-color** - The color of the accordion border (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-accordion-background-color** - The background color of the accordion (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-text-color** - The text color of the accordion (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-hover-background** - The background color when hovering over the accordion (default: var(--dds-background-neutral-base)) _(default: undefined)_\n- **--dds-accordion-active-background** - The background color when the accordion is active (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-accordion-icon-background** - The background color of the accordion icon (default: var(--dds-transparent-black-subtle)) _(default: undefined)_\n- **--dds-accordion-icon-color** - The color of the accordion icon (default: var(--dds-icon-neutral-base)) _(default: undefined)_\n- **--dds-accordion-icon-hover-background** - The background color of the accordion icon when hovered (default: var(--dds-transparent-black-base)) _(default: undefined)_\n- **--dds-accordion-icon-active-background** - The background color of the accordion icon when active (default: var(--dds-transparent-black-strong)) _(default: undefined)_\n- **--dds-accordion-icon-hover-color** - The color of the accordion icon when hovered (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-icon-active-color** - The color of the accordion icon when active (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-content-color** - The color of the accordion content (default: var(--dds-text-text-neutral)) _(default: undefined)_\n- **--dds-accordion-transition-duration** - The duration of the accordion transitions (default: var(--dds-transition-fast)) _(default: undefined)_\n- **--dds-accordion-transition-timing** - The timing function of the accordion transitions (default: var(--dds-easing-ease-in-out)) _(default: undefined)_\n- **--dds-accordion-divider-color** - The color of the divider between accordion items (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion container.\n- **heading** - The heading of the accordion.\n- **button** - The button of the accordion.\n- **content** - The content of the accordion.\n- **content-container** - The container of the accordion content.\n- **icon-wrapper** - The icon wrapper of the accordion.\n- **open-icon** - The icon when the accordion is opened.\n- **open-icon-base** - The base of the icon when the accordion is opened.\n- **close-icon** - The icon when the accordion is closed.\n- **close-icon-base** - The base of the icon when the accordion is closed.",
12
+ "doc-url": "",
13
+ "attributes": [],
14
+ "slots": [
15
+ {
16
+ "name": "default",
17
+ "description": "The content of the accordion."
18
+ },
19
+ {
20
+ "name": "heading",
21
+ "description": "The heading of the accordion."
22
+ },
23
+ {
24
+ "name": "icon-opened",
25
+ "description": "The icon when the accordion is opened."
26
+ },
27
+ {
28
+ "name": "icon-closed",
29
+ "description": "The icon when the accordion is closed."
30
+ }
31
+ ],
32
+ "events": [
33
+ {
34
+ "name": "dds-opened",
35
+ "type": "{ open: boolean, item: AccordionBaseElement }",
36
+ "description": "Event fired when the accordion is opened."
37
+ },
38
+ {
39
+ "name": "dds-closed",
40
+ "type": "{ open: boolean, item: AccordionBaseElement }",
41
+ "description": "Event fired when the accordion is closed."
42
+ }
43
+ ],
44
+ "js": {
45
+ "properties": [
46
+ {
47
+ "name": "size",
48
+ "description": "The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm).",
49
+ "type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
50
+ },
51
+ {
52
+ "name": "sizeMap",
53
+ "description": "Responsive size map (e.g. \"md:lg\")",
54
+ "type": "string"
55
+ },
56
+ {
57
+ "name": "parentSized",
58
+ "description": "When \"true\", size is taken from the parent card if present.",
59
+ "type": "string"
60
+ },
61
+ {
62
+ "name": "heading",
63
+ "description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
64
+ "type": "string"
65
+ },
66
+ {
67
+ "name": "headingLevel",
68
+ "description": "The heading level of the accordion. Default is `4`.",
69
+ "type": "1 | 2 | 3 | 4 | 5 | 6"
70
+ },
71
+ {
72
+ "name": "opened",
73
+ "description": "Whether the accordion is opened. Default is `false`.",
74
+ "type": "boolean"
75
+ },
76
+ {
77
+ "name": "iconLocation",
78
+ "description": "The location of the icon. Default is `right`.",
79
+ "type": "'left' | 'right'"
80
+ },
81
+ {
82
+ "name": "variant",
83
+ "description": "The variant of the accordion.",
84
+ "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
85
+ },
86
+ {
87
+ "name": "lastItem",
88
+ "description": "Whether the accordion is the last item.",
89
+ "type": "boolean"
90
+ },
91
+ {
92
+ "name": "disabled",
93
+ "description": "Whether the accordion is disabled.",
94
+ "type": "boolean"
95
+ },
96
+ {
97
+ "name": "loading",
98
+ "description": "Whether the accordion is in loading state.",
99
+ "type": "boolean"
100
+ }
101
+ ],
102
+ "events": [
103
+ {
104
+ "name": "dds-opened",
105
+ "type": "{ open: boolean, item: AccordionBaseElement }",
106
+ "description": "Event fired when the accordion is opened."
107
+ },
108
+ {
109
+ "name": "dds-closed",
110
+ "type": "{ open: boolean, item: AccordionBaseElement }",
111
+ "description": "Event fired when the accordion is closed."
112
+ }
113
+ ]
114
+ }
115
+ },
116
+ {
117
+ "name": "dap-ds-avatar-group",
118
+ "description": "Avatar group component displays multiple avatars in an organized layout with overflow management.\n---\n\n\n### **Events:**\n - **dds-overflow-click** - Fired when the overflow indicator is clicked.\n\n### **Slots:**\n - _default_ - The avatars to display in the group.\n\n### **CSS Properties:**\n - **--dds-avatar-group-gap** - Gap between avatars in grid layout (default: 0) _(default: undefined)_\n- **--dds-avatar-group-overlap** - Overlap amount for stacked layout (default: -8px) _(default: undefined)_\n- **--dds-avatar-group-border-width** - Border width for avatars (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-avatar-group-border-color** - Border color for avatars (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-avatar-group-overflow-bg** - Background color for overflow indicator (default: var(--dds-neutral-300)) _(default: undefined)_\n- **--dds-avatar-group-overflow-color** - Text color for overflow indicator (default: var(--dds-neutral-700)) _(default: undefined)_\n- **--dds-avatar-group-overflow-border** - Border for overflow indicator (default: var(--dds-avatar-group-border-width) solid var(--dds-avatar-group-border-color)) _(default: undefined)_\n- **--dds-avatar-group-size-lg** - Size for large avatars (default: var(--dds-spacing-2000)) _(default: undefined)_\n- **--dds-avatar-group-size-md** - Size for medium avatars (default: var(--dds-spacing-1600)) _(default: undefined)_\n- **--dds-avatar-group-size-sm** - Size for small avatars (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-avatar-group-size-xs** - Size for extra small avatars (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-avatar-group-size-xxs** - Size for extra extra small avatars (default: var(--dds-spacing-400)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main container of the avatar group.\n- **avatars** - The container for the visible avatars.\n- **overflow** - The overflow indicator element.",
12
119
  "doc-url": "",
13
120
  "attributes": [
14
121
  {
15
- "name": "variant",
16
- "description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
17
- "value": { "type": "HeadingVariant" }
122
+ "name": "layout",
123
+ "description": "Layout type for the avatar group",
124
+ "value": { "type": "'stack' | 'grid'", "default": "'stack'" }
125
+ },
126
+ {
127
+ "name": "max",
128
+ "description": "Maximum number of avatars to show before showing overflow",
129
+ "value": { "type": "number", "default": "3" }
130
+ },
131
+ {
132
+ "name": "show-total",
133
+ "description": "Whether to show the total count in overflow indicator",
134
+ "value": { "type": "boolean", "default": "false" }
135
+ },
136
+ {
137
+ "name": "interactive-overflow",
138
+ "description": "Interactive overflow indicator",
139
+ "value": { "type": "boolean", "default": "false" }
18
140
  },
19
141
  {
20
142
  "name": "label",
21
- "description": "The label of the heading.",
143
+ "description": "Accessible label for the avatar group",
144
+ "value": { "type": "string" }
145
+ },
146
+ {
147
+ "name": "overflow-label",
148
+ "description": "Accessible label for the overflow indicator",
22
149
  "value": { "type": "string" }
23
150
  }
24
151
  ],
25
- "events": [],
152
+ "slots": [
153
+ {
154
+ "name": "",
155
+ "description": "The avatars to display in the group."
156
+ }
157
+ ],
158
+ "events": [
159
+ {
160
+ "name": "dds-overflow-click",
161
+ "description": "Fired when the overflow indicator is clicked."
162
+ }
163
+ ],
26
164
  "js": {
27
165
  "properties": [
28
- { "name": "variant", "type": "HeadingVariant" },
29
- { "name": "label", "type": "string" },
30
- { "name": "elementId" },
31
- { "name": "anchorTitle" }
166
+ {
167
+ "name": "layout",
168
+ "description": "Layout type for the avatar group",
169
+ "type": "'stack' | 'grid'"
170
+ },
171
+ {
172
+ "name": "max",
173
+ "description": "Maximum number of avatars to show before showing overflow",
174
+ "type": "number"
175
+ },
176
+ {
177
+ "name": "showTotal",
178
+ "description": "Whether to show the total count in overflow indicator",
179
+ "type": "boolean"
180
+ },
181
+ {
182
+ "name": "interactiveOverflow",
183
+ "description": "Interactive overflow indicator",
184
+ "type": "boolean"
185
+ },
186
+ {
187
+ "name": "label",
188
+ "description": "Accessible label for the avatar group",
189
+ "type": "string"
190
+ },
191
+ {
192
+ "name": "overflowLabel",
193
+ "description": "Accessible label for the overflow indicator",
194
+ "type": "string"
195
+ },
196
+ {
197
+ "name": "size",
198
+ "description": "The size of avatars in the group. Default is `md`. See SizedMixin.",
199
+ "type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
200
+ },
201
+ {
202
+ "name": "sizeMap",
203
+ "description": "Responsive size map (e.g. \"md:lg\"); see SizedMixin.",
204
+ "type": "string"
205
+ }
32
206
  ],
33
- "events": []
207
+ "events": [
208
+ {
209
+ "name": "dds-overflow-click",
210
+ "description": "Fired when the overflow indicator is clicked."
211
+ }
212
+ ]
34
213
  }
35
214
  },
36
215
  {
@@ -190,144 +369,6 @@
190
369
  ]
191
370
  }
192
371
  },
193
- {
194
- "name": "dap-ds-accordion-group",
195
- "description": "An accordion group is a collection of accordion components.\n---\n\n\n### **Slots:**\n - _default_ - The content of the accordion group.\n\n### **CSS Properties:**\n - **--dds-accordion-group-spacing** - Controls the gap between accordion items (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-accordion-group-border-color** - Controls the border color (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-group-border-width** - Controls the border width (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-group-border-radius** - Controls the border radius (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-group-background** - Controls the background color (default: transparent) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion group container.",
196
- "doc-url": "",
197
- "attributes": [
198
- {
199
- "name": "autoClose",
200
- "description": "Whether to close other accordions when one is opened.",
201
- "value": { "type": "string", "default": "'true'" }
202
- },
203
- {
204
- "name": "variant",
205
- "description": "The variant of the accordion",
206
- "value": {
207
- "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
208
- "default": "'default'"
209
- }
210
- }
211
- ],
212
- "slots": [
213
- { "name": "", "description": "The content of the accordion group." }
214
- ],
215
- "events": [],
216
- "js": {
217
- "properties": [
218
- {
219
- "name": "autoClose",
220
- "description": "Whether to close other accordions when one is opened.",
221
- "type": "string"
222
- },
223
- {
224
- "name": "variant",
225
- "description": "The variant of the accordion",
226
- "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
227
- }
228
- ],
229
- "events": []
230
- }
231
- },
232
- {
233
- "name": "dap-ds-avatar-group",
234
- "description": "Avatar group component displays multiple avatars in an organized layout with overflow management.\n---\n\n\n### **Events:**\n - **dds-overflow-click** - Fired when the overflow indicator is clicked.\n\n### **Slots:**\n - _default_ - The avatars to display in the group.\n\n### **CSS Properties:**\n - **--dds-avatar-group-gap** - Gap between avatars in grid layout (default: 0) _(default: undefined)_\n- **--dds-avatar-group-overlap** - Overlap amount for stacked layout (default: -8px) _(default: undefined)_\n- **--dds-avatar-group-border-width** - Border width for avatars (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-avatar-group-border-color** - Border color for avatars (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-avatar-group-overflow-bg** - Background color for overflow indicator (default: var(--dds-neutral-300)) _(default: undefined)_\n- **--dds-avatar-group-overflow-color** - Text color for overflow indicator (default: var(--dds-neutral-700)) _(default: undefined)_\n- **--dds-avatar-group-overflow-border** - Border for overflow indicator (default: var(--dds-avatar-group-border-width) solid var(--dds-avatar-group-border-color)) _(default: undefined)_\n- **--dds-avatar-group-size-lg** - Size for large avatars (default: var(--dds-spacing-2000)) _(default: undefined)_\n- **--dds-avatar-group-size-md** - Size for medium avatars (default: var(--dds-spacing-1600)) _(default: undefined)_\n- **--dds-avatar-group-size-sm** - Size for small avatars (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-avatar-group-size-xs** - Size for extra small avatars (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-avatar-group-size-xxs** - Size for extra extra small avatars (default: var(--dds-spacing-400)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main container of the avatar group.\n- **avatars** - The container for the visible avatars.\n- **overflow** - The overflow indicator element.",
235
- "doc-url": "",
236
- "attributes": [
237
- {
238
- "name": "layout",
239
- "description": "Layout type for the avatar group",
240
- "value": { "type": "'stack' | 'grid'", "default": "'stack'" }
241
- },
242
- {
243
- "name": "max",
244
- "description": "Maximum number of avatars to show before showing overflow",
245
- "value": { "type": "number", "default": "3" }
246
- },
247
- {
248
- "name": "show-total",
249
- "description": "Whether to show the total count in overflow indicator",
250
- "value": { "type": "boolean", "default": "false" }
251
- },
252
- {
253
- "name": "interactive-overflow",
254
- "description": "Interactive overflow indicator",
255
- "value": { "type": "boolean", "default": "false" }
256
- },
257
- {
258
- "name": "label",
259
- "description": "Accessible label for the avatar group",
260
- "value": { "type": "string" }
261
- },
262
- {
263
- "name": "overflow-label",
264
- "description": "Accessible label for the overflow indicator",
265
- "value": { "type": "string" }
266
- }
267
- ],
268
- "slots": [
269
- {
270
- "name": "",
271
- "description": "The avatars to display in the group."
272
- }
273
- ],
274
- "events": [
275
- {
276
- "name": "dds-overflow-click",
277
- "description": "Fired when the overflow indicator is clicked."
278
- }
279
- ],
280
- "js": {
281
- "properties": [
282
- {
283
- "name": "layout",
284
- "description": "Layout type for the avatar group",
285
- "type": "'stack' | 'grid'"
286
- },
287
- {
288
- "name": "max",
289
- "description": "Maximum number of avatars to show before showing overflow",
290
- "type": "number"
291
- },
292
- {
293
- "name": "showTotal",
294
- "description": "Whether to show the total count in overflow indicator",
295
- "type": "boolean"
296
- },
297
- {
298
- "name": "interactiveOverflow",
299
- "description": "Interactive overflow indicator",
300
- "type": "boolean"
301
- },
302
- {
303
- "name": "label",
304
- "description": "Accessible label for the avatar group",
305
- "type": "string"
306
- },
307
- {
308
- "name": "overflowLabel",
309
- "description": "Accessible label for the overflow indicator",
310
- "type": "string"
311
- },
312
- {
313
- "name": "size",
314
- "description": "The size of avatars in the group. Default is `md`. See SizedMixin.",
315
- "type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
316
- },
317
- {
318
- "name": "sizeMap",
319
- "description": "Responsive size map (e.g. \"md:lg\"); see SizedMixin.",
320
- "type": "string"
321
- }
322
- ],
323
- "events": [
324
- {
325
- "name": "dds-overflow-click",
326
- "description": "Fired when the overflow indicator is clicked."
327
- }
328
- ]
329
- }
330
- },
331
372
  {
332
373
  "name": "dap-ds-badge",
333
374
  "description": "A badge is a small status descriptor for UI elements.\n---\n\n\n### **Slots:**\n - _default_ - The content of the badge.\n- **icon** - The icon of the badge.\n\n### **CSS Properties:**\n - **--dds-badge-border-width** - The width of the badge's border (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-badge-border-style** - The style of the badge's border (default: solid) _(default: undefined)_\n- **--dds-badge-border-radius** - The border radius of the badge (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-badge-font-weight** - The font weight of the badge text (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-badge-line-height** - The line height of the badge text (default: 1.2) _(default: undefined)_\n- **--dds-badge-transition** - The transition property for the badge (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-badge-padding-sm** - The padding of the small badge (default: var(--dds-spacing-100) var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-badge-padding-lg** - The padding of the large badge (default: var(--dds-spacing-100) var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-badge-font-size-sm** - The font size of the small badge (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-badge-font-size-lg** - The font size of the large badge (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-badge-neutral-border-color** - The border color of the neutral badge (default: var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-badge-neutral-background** - The background color of the neutral badge (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-badge-neutral-color** - The text color of the neutral badge (default: var(--dds-text-neutral-subtle)) _(default: undefined)_\n- **--dds-badge-brand-border-color** - The border color of the brand badge (default: var(--dds-border-brand-base)) _(default: undefined)_\n- **--dds-badge-brand-background** - The background color of the brand badge (default: var(--dds-background-brand-medium)) _(default: undefined)_\n- **--dds-badge-brand-color** - The text color of the brand badge (default: var(--dds-text-brand-subtle)) _(default: undefined)_\n- **--dds-badge-info-border-color** - The border color of the info badge (default: var(--dds-border-informative-base)) _(default: undefined)_\n- **--dds-badge-info-background** - The background color of the info badge (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-badge-info-color** - The text color of the info badge (default: var(--dds-text-informative-subtle)) _(default: undefined)_\n- **--dds-badge-positive-border-color** - The border color of the positive badge (default: var(--dds-border-positive-base)) _(default: undefined)_\n- **--dds-badge-positive-background** - The background color of the positive badge (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-badge-positive-color** - The text color of the positive badge (default: var(--dds-text-positive-subtle)) _(default: undefined)_\n- **--dds-badge-warning-border-color** - The border color of the warning badge (default: var(--dds-border-warning-subtle)) _(default: undefined)_\n- **--dds-badge-warning-background** - The background color of the warning badge (default: var(--dds-background-warning-medium)) _(default: undefined)_\n- **--dds-badge-warning-color** - The text color of the warning badge (default: var(--dds-text-warning-subtle)) _(default: undefined)_\n- **--dds-badge-negative-border-color** - The border color of the negative badge (default: var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-badge-negative-background** - The background color of the negative badge (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-badge-negative-color** - The text color of the negative badge (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main container of the badge.\n- **icon** - The icon of the badge.\n- **content** - The content of the badge.\n- **icon-base** - The base of the icon.",
@@ -471,113 +512,6 @@
471
512
  ]
472
513
  }
473
514
  },
474
- {
475
- "name": "dap-ds-accordion",
476
- "description": "An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.\n---\n\n\n### **Events:**\n - **dds-opened** - Event fired when the accordion is opened.\n- **dds-closed** - Event fired when the accordion is closed.\n\n### **Slots:**\n - **default** - The content of the accordion.\n- **heading** - The heading of the accordion.\n- **icon-opened** - The icon when the accordion is opened.\n- **icon-closed** - The icon when the accordion is closed.\n\n### **CSS Properties:**\n - **--dds-accordion-border-width** - The width of the accordion border (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-border-style** - The style of the accordion border (default: solid) _(default: undefined)_\n- **--dds-accordion-border-radius** - The border radius of the accordion (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-border-color** - The color of the accordion border (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n- **--dds-accordion-background-color** - The background color of the accordion (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-text-color** - The text color of the accordion (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-hover-background** - The background color when hovering over the accordion (default: var(--dds-background-neutral-base)) _(default: undefined)_\n- **--dds-accordion-active-background** - The background color when the accordion is active (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-accordion-icon-background** - The background color of the accordion icon (default: var(--dds-transparent-black-subtle)) _(default: undefined)_\n- **--dds-accordion-icon-color** - The color of the accordion icon (default: var(--dds-icon-neutral-base)) _(default: undefined)_\n- **--dds-accordion-icon-hover-background** - The background color of the accordion icon when hovered (default: var(--dds-transparent-black-base)) _(default: undefined)_\n- **--dds-accordion-icon-active-background** - The background color of the accordion icon when active (default: var(--dds-transparent-black-strong)) _(default: undefined)_\n- **--dds-accordion-icon-hover-color** - The color of the accordion icon when hovered (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-icon-active-color** - The color of the accordion icon when active (default: var(--dds-icon-neutral-strong)) _(default: undefined)_\n- **--dds-accordion-content-color** - The color of the accordion content (default: var(--dds-text-text-neutral)) _(default: undefined)_\n- **--dds-accordion-transition-duration** - The duration of the accordion transitions (default: var(--dds-transition-fast)) _(default: undefined)_\n- **--dds-accordion-transition-timing** - The timing function of the accordion transitions (default: var(--dds-easing-ease-in-out)) _(default: undefined)_\n- **--dds-accordion-divider-color** - The color of the divider between accordion items (default: var(--dds-border-neutral-divider)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion container.\n- **heading** - The heading of the accordion.\n- **button** - The button of the accordion.\n- **content** - The content of the accordion.\n- **content-container** - The container of the accordion content.\n- **icon-wrapper** - The icon wrapper of the accordion.\n- **open-icon** - The icon when the accordion is opened.\n- **open-icon-base** - The base of the icon when the accordion is opened.\n- **close-icon** - The icon when the accordion is closed.\n- **close-icon-base** - The base of the icon when the accordion is closed.",
477
- "doc-url": "",
478
- "attributes": [],
479
- "slots": [
480
- {
481
- "name": "default",
482
- "description": "The content of the accordion."
483
- },
484
- {
485
- "name": "heading",
486
- "description": "The heading of the accordion."
487
- },
488
- {
489
- "name": "icon-opened",
490
- "description": "The icon when the accordion is opened."
491
- },
492
- {
493
- "name": "icon-closed",
494
- "description": "The icon when the accordion is closed."
495
- }
496
- ],
497
- "events": [
498
- {
499
- "name": "dds-opened",
500
- "type": "{ open: boolean, item: AccordionBaseElement }",
501
- "description": "Event fired when the accordion is opened."
502
- },
503
- {
504
- "name": "dds-closed",
505
- "type": "{ open: boolean, item: AccordionBaseElement }",
506
- "description": "Event fired when the accordion is closed."
507
- }
508
- ],
509
- "js": {
510
- "properties": [
511
- {
512
- "name": "size",
513
- "description": "The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm).",
514
- "type": "'xxs' | 'xs' | 'sm' | 'md' | 'lg'"
515
- },
516
- {
517
- "name": "sizeMap",
518
- "description": "Responsive size map (e.g. \"md:lg\")",
519
- "type": "string"
520
- },
521
- {
522
- "name": "parentSized",
523
- "description": "When \"true\", size is taken from the parent card if present.",
524
- "type": "string"
525
- },
526
- {
527
- "name": "heading",
528
- "description": "The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided",
529
- "type": "string"
530
- },
531
- {
532
- "name": "headingLevel",
533
- "description": "The heading level of the accordion. Default is `4`.",
534
- "type": "1 | 2 | 3 | 4 | 5 | 6"
535
- },
536
- {
537
- "name": "opened",
538
- "description": "Whether the accordion is opened. Default is `false`.",
539
- "type": "boolean"
540
- },
541
- {
542
- "name": "iconLocation",
543
- "description": "The location of the icon. Default is `right`.",
544
- "type": "'left' | 'right'"
545
- },
546
- {
547
- "name": "variant",
548
- "description": "The variant of the accordion.",
549
- "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
550
- },
551
- {
552
- "name": "lastItem",
553
- "description": "Whether the accordion is the last item.",
554
- "type": "boolean"
555
- },
556
- {
557
- "name": "disabled",
558
- "description": "Whether the accordion is disabled.",
559
- "type": "boolean"
560
- },
561
- {
562
- "name": "loading",
563
- "description": "Whether the accordion is in loading state.",
564
- "type": "boolean"
565
- }
566
- ],
567
- "events": [
568
- {
569
- "name": "dds-opened",
570
- "type": "{ open: boolean, item: AccordionBaseElement }",
571
- "description": "Event fired when the accordion is opened."
572
- },
573
- {
574
- "name": "dds-closed",
575
- "type": "{ open: boolean, item: AccordionBaseElement }",
576
- "description": "Event fired when the accordion is closed."
577
- }
578
- ]
579
- }
580
- },
581
515
  {
582
516
  "name": "dap-ds-breadcrumb",
583
517
  "description": "A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.\n---\n\n\n### **Slots:**\n - _default_ - The content of the breadcrumb.\n- **separator** - The separator between breadcrumb items. Default is '/'.\n\n### **CSS Properties:**\n - **--dds-breadcrumb-width** - The width of the breadcrumb container (default: 100%) _(default: undefined)_\n- **--dds-breadcrumb-overflow-x** - The horizontal overflow behavior of the breadcrumb (default: auto) _(default: undefined)_\n- **--dds-breadcrumb-transition** - The transition property for the breadcrumb (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-breadcrumb-list-display** - The display property of the breadcrumb list (default: flex) _(default: undefined)_\n- **--dds-breadcrumb-list-flex-wrap** - The flex-wrap property of the breadcrumb list (default: nowrap) _(default: undefined)_\n- **--dds-breadcrumb-list-align-items** - The align-items property of the breadcrumb list (default: center) _(default: undefined)_\n- **--dds-breadcrumb-list-min-width** - The minimum width of the breadcrumb list (default: max-content) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb container.\n- **separator** - The separator of the breadcrumb.",
@@ -623,6 +557,72 @@
623
557
  "events": []
624
558
  }
625
559
  },
560
+ {
561
+ "name": "dap-ds-accordion-group",
562
+ "description": "An accordion group is a collection of accordion components.\n---\n\n\n### **Slots:**\n - _default_ - The content of the accordion group.\n\n### **CSS Properties:**\n - **--dds-accordion-group-spacing** - Controls the gap between accordion items (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-accordion-group-border-color** - Controls the border color (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-accordion-group-border-width** - Controls the border width (default: var(--dds-border-width-base)) _(default: undefined)_\n- **--dds-accordion-group-border-radius** - Controls the border radius (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-accordion-group-background** - Controls the background color (default: transparent) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main accordion group container.",
563
+ "doc-url": "",
564
+ "attributes": [
565
+ {
566
+ "name": "autoClose",
567
+ "description": "Whether to close other accordions when one is opened.",
568
+ "value": { "type": "string", "default": "'true'" }
569
+ },
570
+ {
571
+ "name": "variant",
572
+ "description": "The variant of the accordion",
573
+ "value": {
574
+ "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'",
575
+ "default": "'default'"
576
+ }
577
+ }
578
+ ],
579
+ "slots": [
580
+ { "name": "", "description": "The content of the accordion group." }
581
+ ],
582
+ "events": [],
583
+ "js": {
584
+ "properties": [
585
+ {
586
+ "name": "autoClose",
587
+ "description": "Whether to close other accordions when one is opened.",
588
+ "type": "string"
589
+ },
590
+ {
591
+ "name": "variant",
592
+ "description": "The variant of the accordion",
593
+ "type": "'default' | 'collapsed' | 'clean' | 'clean-collapsed'"
594
+ }
595
+ ],
596
+ "events": []
597
+ }
598
+ },
599
+ {
600
+ "name": "dap-ds-anchor-heading",
601
+ "description": "Anchor heading is a heading with an anchor link.\n---\n\n\n### **CSS Properties:**\n - **--dds-anchor-link-color** - The color of the anchor link (default: var(--dds-color-primary)) _(default: undefined)_\n- **--dds-anchor-link-opacity** - The opacity of the anchor link when not hovered (default: 0) _(default: undefined)_\n- **--dds-anchor-link-hover-opacity** - The opacity of the anchor link when hovered (default: 1) _(default: undefined)_\n- **--dds-anchor-link-transition** - The transition property for the anchor link opacity (default: opacity 0.2s ease-in-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main anchor heading container.\n- **link** - The link of the anchor heading. dap-ds-link element.\n- **link-base** - The base of the link part.\n- **text** - The text of the anchor heading.",
602
+ "doc-url": "",
603
+ "attributes": [
604
+ {
605
+ "name": "variant",
606
+ "description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
607
+ "value": { "type": "HeadingVariant" }
608
+ },
609
+ {
610
+ "name": "label",
611
+ "description": "The label of the heading.",
612
+ "value": { "type": "string" }
613
+ }
614
+ ],
615
+ "events": [],
616
+ "js": {
617
+ "properties": [
618
+ { "name": "variant", "type": "HeadingVariant" },
619
+ { "name": "label", "type": "string" },
620
+ { "name": "elementId" },
621
+ { "name": "anchorTitle" }
622
+ ],
623
+ "events": []
624
+ }
625
+ },
626
626
  {
627
627
  "name": "dap-ds-breadcrumb-item",
628
628
  "description": "A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.\n---\n\n\n### **Slots:**\n - _default_ - The content of the breadcrumb item.\n- **separator** - The separator between breadcrumb items. Default is an arrow-right-s-line icon.\n\n### **CSS Properties:**\n - **--dds-breadcrumb-item-display** - The display property of the breadcrumb item (default: inline-flex) _(default: undefined)_\n- **--dds-breadcrumb-item-flex-wrap** - The flex-wrap property of the breadcrumb item (default: nowrap) _(default: undefined)_\n- **--dds-breadcrumb-item-align-items** - The align-items property of the breadcrumb item (default: center) _(default: undefined)_\n- **--dds-breadcrumb-item-color** - The text color of the breadcrumb item (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-breadcrumb-item-transition** - The transition property for the breadcrumb item (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-breadcrumb-item-gap** - The gap between the breadcrumb item and the separator (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-breadcrumb-item-padding** - The padding of the breadcrumb item (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-size** - The font size of the breadcrumb item (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-weight** - The font weight of the breadcrumb item (default: var(--dds-font-weight-medium)) _(default: undefined)_\n- **--dds-breadcrumb-item-font-weight-bold** - The bold font weight of the breadcrumb item (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-breadcrumb-item-separator-color** - The color of the separator (default: var(--dds-text-neutral-disabled)) _(default: undefined)_\n- **--dds-breadcrumb-item-link-color** - The color of the link (default: var(--dds-link-neutral-enabled)) _(default: undefined)_\n- **--dds-breadcrumb-item-inverted-color** - The text color when inverted (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n- **--dds-breadcrumb-item-inverted-link-color** - The link color when inverted (default: var(--dds-text-neutral-inverted)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main breadcrumb item container. The li element.\n- **link** - The link of the breadcrumb item. The dds-link component.\n- **link-base** - The base part of the link part. The dds-link components base part.\n- **item-nolink** - The item of the breadcrumb item without a link. The span element.\n- **separator** - The separator of the breadcrumb item.",
@@ -701,7 +701,7 @@
701
701
  },
702
702
  {
703
703
  "name": "dap-ds-button",
704
- "description": "A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.\n---\n\n\n### **Events:**\n - **dds-loading-timeout** - Emitted when the loading timeout is reached\n\n### **Slots:**\n - _default_ - The content of the button. Can contain text, icons, or other elements.\n\n### **CSS Properties:**\n - **--dds-button-padding-x** - Horizontal padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-padding-y** - Vertical padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-border-radius** - Border radius of the button (default: var(--dds-radius-rounded)) _(default: undefined)_\n- **--dds-button-font-weight** - Font weight of the button (default: 700) _(default: undefined)_\n- **--dds-button-line-height** - Line height of the button (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-button-transition** - Transition property of the button (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-button-disabled-opacity** - Opacity of disabled button (default: 0.5) _(default: undefined)_\n- **--dds-button-size-lg** - Size of large button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-size-md** - Size of medium button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-size-sm** - Size of small button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-size-xs** - Size of extra small button (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-button-circle-lg** - Size of large circle button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-circle-md** - Size of medium circle button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-circle-sm** - Size of small circle button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-circle-xs** - Size of extra small circle button (default: var(--dds-spacing-600)) Primary button properties: _(default: undefined)_\n- **--dds-button-primary-color-bg** - Background color of primary button (default: var(--dds-button-primary-background-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-bg-hover** - Background color of primary button on hover (default: var(--dds-button-primary-background-hover)) _(default: undefined)_\n- **--dds-button-primary-color-bg-active** - Background color of primary button when active (default: var(--dds-button-primary-background-pressed)) _(default: undefined)_\n- **--dds-button-primary-color-bg-disabled** - Background color of disabled primary button (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-button-primary-color-text** - Text color of primary button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-text-disabled** - Text color of disabled primary button (default: var(--dds-button-primary-text-disabled)) Primary inverted button properties: _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg** - Background color of primary inverted button (default: var(--dds-button-primary-background-inverted-enabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-hover** - Background color of primary inverted button on hover (default: var(--dds-button-primary-background-inverted-hover)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-active** - Background color of primary inverted button when active (default: var(--dds-button-primary-background-inverted-pressed)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-disabled** - Background color of disabled primary inverted button (default: var(--dds-button-primary-background-inverted-disabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text** - Text color of primary inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text-disabled** - Text color of disabled primary inverted button (default: var(--dds-button-primary-text-inverted-disabled)) Outline button properties: _(default: undefined)_\n- **--dds-button-outline-color-border** - Border color of outline button (default: var(--dds-button-outline-border-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-border-hover** - Border color of outline button on hover (default: var(--dds-button-outline-border-hover)) _(default: undefined)_\n- **--dds-button-outline-color-border-active** - Border color of outline button when active (default: var(--dds-button-outline-border-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-border-disabled** - Border color of disabled outline button (default: var(--dds-button-outline-border-disabled)) _(default: undefined)_\n- **--dds-button-outline-color-text** - Text color of outline button (default: var(--dds-button-outline-text-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-text-hover** - Text color of outline button on hover (default: var(--dds-button-outline-text-hover)) _(default: undefined)_\n- **--dds-button-outline-color-text-active** - Text color of outline button when active (default: var(--dds-button-outline-text-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-text-disabled** - Text color of disabled outline button (default: var(--dds-button-outline-text-disabled)) Outline inverted button properties: _(default: undefined)_\n- **--dds-button-outline-inverted-color-border** - Border color of outline inverted button (default: var(--dds-button-outline-border-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-hover** - Border color of outline inverted button on hover (default: var(--dds-button-outline-border-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-active** - Border color of outline inverted button when active (default: var(--dds-button-outline-border-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-disabled** - Border color of disabled outline inverted button (default: var(--dds-button-outline-border-inverted-disabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text** - Text color of outline inverted button (default: var(--dds-button-outline-text-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-hover** - Text color of outline inverted button on hover (default: var(--dds-button-outline-text-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-active** - Text color of outline inverted button when active (default: var(--dds-button-outline-text-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-disabled** - Text color of disabled outline inverted button (default: var(--dds-button-outline-text-inverted-disabled)) Subtle button properties: _(default: undefined)_\n- **--dds-button-subtle-color-bg** - Background color of subtle button (default: var(--dds-button-subtle-background-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-hover** - Background color of subtle button on hover (default: var(--dds-button-subtle-background-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-active** - Background color of subtle button when active (default: var(--dds-button-subtle-background-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-disabled** - Background color of disabled subtle button (default: var(--dds-button-subtle-background-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border** - Border color of subtle button (default: var(--dds-button-subtle-border-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border-hover** - Border color of subtle button on hover (default: var(--dds-button-subtle-border-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-border-active** - Border color of subtle button when active (default: var(--dds-button-subtle-border-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-border-disabled** - Border color of disabled subtle button (default: var(--dds-button-subtle-border-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text** - Text color of subtle button (default: var(--dds-button-subtle-text-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text-hover** - Text color of subtle button on hover (default: var(--dds-button-subtle-text-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-text-active** - Text color of subtle button when active (default: var(--dds-button-subtle-text-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-text-disabled** - Text color of disabled subtle button (default: var(--dds-button-subtle-text-disabled)) Clean button properties: _(default: undefined)_\n- **--dds-button-clean-color-text** - Text color of clean button (default: var(--dds-text-link-base)) _(default: undefined)_\n- **--dds-button-clean-color-text-hover** - Text color of clean button on hover (default: var(--dds-text-link-hover)) _(default: undefined)_\n- **--dds-button-clean-color-text-active** - Text color of clean button when active (default: var(--dds-text-link-pressed)) _(default: undefined)_\n- **--dds-button-clean-color-text-disabled** - Text color of disabled clean button (default: var(--dds-text-neutral-disabled)) Clean inverted button properties: _(default: undefined)_\n- **--dds-button-clean-inverted-color-text** - Text color of clean inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-hover** - Text color of clean inverted button on hover (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-active** - Text color of clean inverted button when active (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-disabled** - Text color of disabled clean inverted button (default: var(--dds-text-neutral-disabled)) Danger button properties: _(default: undefined)_\n- **--dds-button-danger-color-bg** - Background color of danger button (default: var(--dds-button-primary-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-color-bg-hover** - Background color of danger button on hover (default: var(--dds-button-primary-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-color-bg-active** - Background color of danger button when active (default: var(--dds-button-primary-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-color-text** - Text color of danger button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border** - Border color of danger outline button (default: var(--dds-button-outline-border-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-hover** - Border color of danger outline button on hover (default: var(--dds-button-outline-border-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-active** - Border color of danger outline button when active (default: var(--dds-button-outline-border-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text** - Text color of danger outline button (default: var(--dds-button-outline-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-hover** - Text color of danger outline button on hover (default: var(--dds-button-outline-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-active** - Text color of danger outline button when active (default: var(--dds-button-outline-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg** - Background color of danger subtle button (default: var(--dds-button-subtle-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-hover** - Background color of danger subtle button on hover (default: var(--dds-button-subtle-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-active** - Background color of danger subtle button when active (default: var(--dds-button-subtle-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text** - Text color of danger subtle button (default: var(--dds-button-subtle-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-hover** - Text color of danger subtle button on hover (default: var(--dds-button-subtle-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-active** - Text color of danger subtle button when active (default: var(--dds-button-subtle-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text** - Text color of danger clean button (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-hover** - Text color of danger clean button on hover (default: var(--dds-text-negative-base)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-active** - Text color of danger clean button when active (default: var(--dds-text-negative-strong)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main button container.\n- **high-contrast** - The high contrast part of the button.\n- **content** - The content wrapper inside the button.",
704
+ "description": "A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.\n---\n\n\n### **Events:**\n - **dds-loading-timeout** - Emitted when the loading timeout is reached\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - `this.button` is a `@query`, so it is null until Lit has rendered the shadow root.\nA caller focusing a button the same tick it mounts -- a \"Save\" button that appears\nonly after the form it belongs to opens, say -- would otherwise get a TypeError,\nnot a no-op. Throwing out of a focus() call breaks whatever effect made it.\n\n### **Slots:**\n - _default_ - The content of the button. Can contain text, icons, or other elements.\n\n### **CSS Properties:**\n - **--dds-button-padding-x** - Horizontal padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-padding-y** - Vertical padding of the button (default: var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-button-border-radius** - Border radius of the button (default: var(--dds-radius-rounded)) _(default: undefined)_\n- **--dds-button-font-weight** - Font weight of the button (default: 700) _(default: undefined)_\n- **--dds-button-line-height** - Line height of the button (default: var(--dds-font-line-height-large)) _(default: undefined)_\n- **--dds-button-transition** - Transition property of the button (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-button-disabled-opacity** - Opacity of disabled button (default: 0.5) _(default: undefined)_\n- **--dds-button-size-lg** - Size of large button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-size-md** - Size of medium button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-size-sm** - Size of small button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-size-xs** - Size of extra small button (default: var(--dds-spacing-600)) _(default: undefined)_\n- **--dds-button-circle-lg** - Size of large circle button (default: var(--dds-spacing-1200)) _(default: undefined)_\n- **--dds-button-circle-md** - Size of medium circle button (default: var(--dds-spacing-1000)) _(default: undefined)_\n- **--dds-button-circle-sm** - Size of small circle button (default: var(--dds-spacing-800)) _(default: undefined)_\n- **--dds-button-circle-xs** - Size of extra small circle button (default: var(--dds-spacing-600)) Primary button properties: _(default: undefined)_\n- **--dds-button-primary-color-bg** - Background color of primary button (default: var(--dds-button-primary-background-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-bg-hover** - Background color of primary button on hover (default: var(--dds-button-primary-background-hover)) _(default: undefined)_\n- **--dds-button-primary-color-bg-active** - Background color of primary button when active (default: var(--dds-button-primary-background-pressed)) _(default: undefined)_\n- **--dds-button-primary-color-bg-disabled** - Background color of disabled primary button (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-button-primary-color-text** - Text color of primary button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-primary-color-text-disabled** - Text color of disabled primary button (default: var(--dds-button-primary-text-disabled)) Primary inverted button properties: _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg** - Background color of primary inverted button (default: var(--dds-button-primary-background-inverted-enabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-hover** - Background color of primary inverted button on hover (default: var(--dds-button-primary-background-inverted-hover)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-active** - Background color of primary inverted button when active (default: var(--dds-button-primary-background-inverted-pressed)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-bg-disabled** - Background color of disabled primary inverted button (default: var(--dds-button-primary-background-inverted-disabled)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text** - Text color of primary inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-primary-inverted-color-text-disabled** - Text color of disabled primary inverted button (default: var(--dds-button-primary-text-inverted-disabled)) Outline button properties: _(default: undefined)_\n- **--dds-button-outline-color-border** - Border color of outline button (default: var(--dds-button-outline-border-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-border-hover** - Border color of outline button on hover (default: var(--dds-button-outline-border-hover)) _(default: undefined)_\n- **--dds-button-outline-color-border-active** - Border color of outline button when active (default: var(--dds-button-outline-border-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-border-disabled** - Border color of disabled outline button (default: var(--dds-button-outline-border-disabled)) _(default: undefined)_\n- **--dds-button-outline-color-text** - Text color of outline button (default: var(--dds-button-outline-text-enabled)) _(default: undefined)_\n- **--dds-button-outline-color-text-hover** - Text color of outline button on hover (default: var(--dds-button-outline-text-hover)) _(default: undefined)_\n- **--dds-button-outline-color-text-active** - Text color of outline button when active (default: var(--dds-button-outline-text-pressed)) _(default: undefined)_\n- **--dds-button-outline-color-text-disabled** - Text color of disabled outline button (default: var(--dds-button-outline-text-disabled)) Outline inverted button properties: _(default: undefined)_\n- **--dds-button-outline-inverted-color-border** - Border color of outline inverted button (default: var(--dds-button-outline-border-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-hover** - Border color of outline inverted button on hover (default: var(--dds-button-outline-border-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-active** - Border color of outline inverted button when active (default: var(--dds-button-outline-border-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-border-disabled** - Border color of disabled outline inverted button (default: var(--dds-button-outline-border-inverted-disabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text** - Text color of outline inverted button (default: var(--dds-button-outline-text-inverted-enabled)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-hover** - Text color of outline inverted button on hover (default: var(--dds-button-outline-text-inverted-hover)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-active** - Text color of outline inverted button when active (default: var(--dds-button-outline-text-inverted-pressed)) _(default: undefined)_\n- **--dds-button-outline-inverted-color-text-disabled** - Text color of disabled outline inverted button (default: var(--dds-button-outline-text-inverted-disabled)) Subtle button properties: _(default: undefined)_\n- **--dds-button-subtle-color-bg** - Background color of subtle button (default: var(--dds-button-subtle-background-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-hover** - Background color of subtle button on hover (default: var(--dds-button-subtle-background-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-active** - Background color of subtle button when active (default: var(--dds-button-subtle-background-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-bg-disabled** - Background color of disabled subtle button (default: var(--dds-button-subtle-background-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border** - Border color of subtle button (default: var(--dds-button-subtle-border-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-border-hover** - Border color of subtle button on hover (default: var(--dds-button-subtle-border-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-border-active** - Border color of subtle button when active (default: var(--dds-button-subtle-border-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-border-disabled** - Border color of disabled subtle button (default: var(--dds-button-subtle-border-disabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text** - Text color of subtle button (default: var(--dds-button-subtle-text-enabled)) _(default: undefined)_\n- **--dds-button-subtle-color-text-hover** - Text color of subtle button on hover (default: var(--dds-button-subtle-text-hover)) _(default: undefined)_\n- **--dds-button-subtle-color-text-active** - Text color of subtle button when active (default: var(--dds-button-subtle-text-pressed)) _(default: undefined)_\n- **--dds-button-subtle-color-text-disabled** - Text color of disabled subtle button (default: var(--dds-button-subtle-text-disabled)) Clean button properties: _(default: undefined)_\n- **--dds-button-clean-color-text** - Text color of clean button (default: var(--dds-text-link-base)) _(default: undefined)_\n- **--dds-button-clean-color-text-hover** - Text color of clean button on hover (default: var(--dds-text-link-hover)) _(default: undefined)_\n- **--dds-button-clean-color-text-active** - Text color of clean button when active (default: var(--dds-text-link-pressed)) _(default: undefined)_\n- **--dds-button-clean-color-text-disabled** - Text color of disabled clean button (default: var(--dds-text-neutral-disabled)) Clean inverted button properties: _(default: undefined)_\n- **--dds-button-clean-inverted-color-text** - Text color of clean inverted button (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-hover** - Text color of clean inverted button on hover (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-active** - Text color of clean inverted button when active (default: var(--dds-button-primary-text-inverted)) _(default: undefined)_\n- **--dds-button-clean-inverted-color-text-disabled** - Text color of disabled clean inverted button (default: var(--dds-text-neutral-disabled)) Danger button properties: _(default: undefined)_\n- **--dds-button-danger-color-bg** - Background color of danger button (default: var(--dds-button-primary-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-color-bg-hover** - Background color of danger button on hover (default: var(--dds-button-primary-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-color-bg-active** - Background color of danger button when active (default: var(--dds-button-primary-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-color-text** - Text color of danger button (default: var(--dds-button-primary-text-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border** - Border color of danger outline button (default: var(--dds-button-outline-border-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-hover** - Border color of danger outline button on hover (default: var(--dds-button-outline-border-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-border-active** - Border color of danger outline button when active (default: var(--dds-button-outline-border-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text** - Text color of danger outline button (default: var(--dds-button-outline-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-hover** - Text color of danger outline button on hover (default: var(--dds-button-outline-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-outline-color-text-active** - Text color of danger outline button when active (default: var(--dds-button-outline-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg** - Background color of danger subtle button (default: var(--dds-button-subtle-background-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-hover** - Background color of danger subtle button on hover (default: var(--dds-button-subtle-background-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-bg-active** - Background color of danger subtle button when active (default: var(--dds-button-subtle-background-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text** - Text color of danger subtle button (default: var(--dds-button-subtle-text-destructive-enabled)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-hover** - Text color of danger subtle button on hover (default: var(--dds-button-subtle-text-destructive-hover)) _(default: undefined)_\n- **--dds-button-danger-subtle-color-text-active** - Text color of danger subtle button when active (default: var(--dds-button-subtle-text-destructive-pressed)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text** - Text color of danger clean button (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-hover** - Text color of danger clean button on hover (default: var(--dds-text-negative-base)) _(default: undefined)_\n- **--dds-button-danger-clean-color-text-active** - Text color of danger clean button when active (default: var(--dds-text-negative-strong)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main button container.\n- **high-contrast** - The high contrast part of the button.\n- **content** - The content wrapper inside the button.",
705
705
  "doc-url": "",
706
706
  "attributes": [
707
707
  {
@@ -8564,6 +8564,14 @@
8564
8564
  "description": "Whether the side navigation item is active",
8565
8565
  "value": { "type": "boolean", "default": "false" }
8566
8566
  },
8567
+ {
8568
+ "name": "current",
8569
+ "description": "Which `aria-current` token to expose on the link when `active` is set.\n\n`aria-current` has to sit on the anchor that assistive technology actually\nexposes. Setting it on this host does nothing: the host is a role-less custom\nelement, so the attribute is stranded there and screen-reader users cannot tell\nwhich item is current. Use `current=\"step\"` inside a stepper.",
8570
+ "value": {
8571
+ "type": "'page' | 'step' | 'location' | 'date' | 'time' | 'true'",
8572
+ "default": "'page'"
8573
+ }
8574
+ },
8567
8575
  {
8568
8576
  "name": "spacing",
8569
8577
  "description": "The spacing of the side navigation item",
@@ -8601,6 +8609,11 @@
8601
8609
  "description": "Whether the side navigation item is active",
8602
8610
  "type": "boolean"
8603
8611
  },
8612
+ {
8613
+ "name": "current",
8614
+ "description": "Which `aria-current` token to expose on the link when `active` is set.\n\n`aria-current` has to sit on the anchor that assistive technology actually\nexposes. Setting it on this host does nothing: the host is a role-less custom\nelement, so the attribute is stranded there and screen-reader users cannot tell\nwhich item is current. Use `current=\"step\"` inside a stepper.",
8615
+ "type": "'page' | 'step' | 'location' | 'date' | 'time' | 'true'"
8616
+ },
8604
8617
  {
8605
8618
  "name": "spacing",
8606
8619
  "description": "The spacing of the side navigation item",
@@ -8673,62 +8686,6 @@
8673
8686
  ]
8674
8687
  }
8675
8688
  },
8676
- {
8677
- "name": "dap-ds-skip-link",
8678
- "description": "A skip link is a link that allows keyboard users to skip to the main content of a page.\n---\n\n\n### **Slots:**\n - _default_ - The content of the skip link.\n\n### **CSS Properties:**\n - **--dds-skip-link-border-color** - Border color for the high contrast outline (default: var(--dds-border-neutral-transparent-interactive, #fff500)) _(default: undefined)_\n- **--dds-skip-link-border-width** - Border width for the high contrast outline (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-skip-link-border-width-active** - Border width for the active state (default: var(--dds-border-width-xlarge)) _(default: undefined)_\n- **--dds-skip-link-border-radius** - Border radius of the skip link (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skip-link-padding-sm** - Padding for small size variant (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-skip-link-padding-lg** - Padding for large size variant (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-skip-link-text-underline-offset** - Underline offset for the text (default: 3px) _(default: undefined)_\n- **--dds-skip-link-z-index** - Z-index of the skip link (default: var(--dds-z-index-100)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skip link container.\n- **text** - The text container of the skip link.\n- **high-contrast** - The high contrast outline container.",
8679
- "doc-url": "",
8680
- "attributes": [
8681
- {
8682
- "name": "placement",
8683
- "description": "The placement of the skip link.",
8684
- "value": { "type": "'left' | 'center'" }
8685
- },
8686
- {
8687
- "name": "href",
8688
- "description": "The href of the skip link",
8689
- "value": { "type": "string", "default": "'#'" }
8690
- },
8691
- {
8692
- "name": "size",
8693
- "description": "The size of the skip link",
8694
- "value": { "type": "'sm' | 'lg'", "default": "'sm'" }
8695
- },
8696
- {
8697
- "name": "noUnderline",
8698
- "description": "Whether the skip link should have an underline",
8699
- "value": { "type": "boolean", "default": "false" }
8700
- }
8701
- ],
8702
- "slots": [
8703
- { "name": "", "description": "The content of the skip link." }
8704
- ],
8705
- "events": [],
8706
- "js": {
8707
- "properties": [
8708
- {
8709
- "name": "placement",
8710
- "description": "The placement of the skip link.",
8711
- "type": "'left' | 'center'"
8712
- },
8713
- {
8714
- "name": "href",
8715
- "description": "The href of the skip link",
8716
- "type": "string"
8717
- },
8718
- {
8719
- "name": "size",
8720
- "description": "The size of the skip link",
8721
- "type": "'sm' | 'lg'"
8722
- },
8723
- {
8724
- "name": "noUnderline",
8725
- "description": "Whether the skip link should have an underline",
8726
- "type": "boolean"
8727
- }
8728
- ],
8729
- "events": []
8730
- }
8731
- },
8732
8689
  {
8733
8690
  "name": "dap-ds-skeleton",
8734
8691
  "description": "A skeleton loader component for displaying placeholder content while loading.\n---\n\n\n### **CSS Properties:**\n - **--dds-skeleton-base-color** - Solid background color always visible (default: rgb(0 0 0 / 11%)); shown as a static block when prefers-reduced-motion is active _(default: undefined)_\n- **--dds-skeleton-color** - The shimmer overlay gradient (default: linear-gradient(90deg, transparent, rgb(0 0 0 / 10%), transparent)) _(default: undefined)_\n- **--dds-skeleton-animation-duration** - Duration of the loading animation (default: 1.5s) _(default: undefined)_\n- **--dds-skeleton-border-radius** - Border radius for rectangular skeletons (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skeleton-text-spacing** - Spacing between text lines in text variant (default: var(--dds-spacing-100)) _(default: undefined)_\n- **--dds-skeleton-animation-timing-function** - Timing function for the loading animation (default: ease-in-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skeleton container.",
@@ -8808,6 +8765,62 @@
8808
8765
  "events": []
8809
8766
  }
8810
8767
  },
8768
+ {
8769
+ "name": "dap-ds-skip-link",
8770
+ "description": "A skip link is a link that allows keyboard users to skip to the main content of a page.\n---\n\n\n### **Slots:**\n - _default_ - The content of the skip link.\n\n### **CSS Properties:**\n - **--dds-skip-link-border-color** - Border color for the high contrast outline (default: var(--dds-border-neutral-transparent-interactive, #fff500)) _(default: undefined)_\n- **--dds-skip-link-border-width** - Border width for the high contrast outline (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-skip-link-border-width-active** - Border width for the active state (default: var(--dds-border-width-xlarge)) _(default: undefined)_\n- **--dds-skip-link-border-radius** - Border radius of the skip link (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-skip-link-padding-sm** - Padding for small size variant (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-skip-link-padding-lg** - Padding for large size variant (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-skip-link-text-underline-offset** - Underline offset for the text (default: 3px) _(default: undefined)_\n- **--dds-skip-link-z-index** - Z-index of the skip link (default: var(--dds-z-index-100)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main skip link container.\n- **text** - The text container of the skip link.\n- **high-contrast** - The high contrast outline container.",
8771
+ "doc-url": "",
8772
+ "attributes": [
8773
+ {
8774
+ "name": "placement",
8775
+ "description": "The placement of the skip link.",
8776
+ "value": { "type": "'left' | 'center'" }
8777
+ },
8778
+ {
8779
+ "name": "href",
8780
+ "description": "The href of the skip link",
8781
+ "value": { "type": "string", "default": "'#'" }
8782
+ },
8783
+ {
8784
+ "name": "size",
8785
+ "description": "The size of the skip link",
8786
+ "value": { "type": "'sm' | 'lg'", "default": "'sm'" }
8787
+ },
8788
+ {
8789
+ "name": "noUnderline",
8790
+ "description": "Whether the skip link should have an underline",
8791
+ "value": { "type": "boolean", "default": "false" }
8792
+ }
8793
+ ],
8794
+ "slots": [
8795
+ { "name": "", "description": "The content of the skip link." }
8796
+ ],
8797
+ "events": [],
8798
+ "js": {
8799
+ "properties": [
8800
+ {
8801
+ "name": "placement",
8802
+ "description": "The placement of the skip link.",
8803
+ "type": "'left' | 'center'"
8804
+ },
8805
+ {
8806
+ "name": "href",
8807
+ "description": "The href of the skip link",
8808
+ "type": "string"
8809
+ },
8810
+ {
8811
+ "name": "size",
8812
+ "description": "The size of the skip link",
8813
+ "type": "'sm' | 'lg'"
8814
+ },
8815
+ {
8816
+ "name": "noUnderline",
8817
+ "description": "Whether the skip link should have an underline",
8818
+ "type": "boolean"
8819
+ }
8820
+ ],
8821
+ "events": []
8822
+ }
8823
+ },
8811
8824
  {
8812
8825
  "name": "dap-ds-snackbar-message",
8813
8826
  "description": "The Snackbar component shows a sliding message to the user.\n---\n\n\n### **Events:**\n - **dds-close** - Fires when the snackbar closes.\n\n### **Slots:**\n - **default** - The content of the snackbar.\n\n### **CSS Properties:**\n - **--dds-snackbar-width** - Width of the snackbar (default: clamp(var(--dds-spacing-6000), 20vw, var(--dds-containers-xsmall))) _(default: undefined)_\n- **--dds-snackbar-gap** - Gap between snackbar elements (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-padding** - Padding inside the snackbar (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-margin-bottom** - Bottom margin of the snackbar (default: var(--dds-spacing-400)) _(default: undefined)_\n- **--dds-snackbar-transition** - Transition property for the snackbar (default: transform var(--dds-transition-slow) var(--dds-easing-ease-out)allow-discrete, opacity var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete, margin var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete, box-shadow var(--dds-transition-slow) var(--dds-easing-ease-out) allow-discrete) _(default: undefined)_\n- **--dds-snackbar-border-radius** - Border radius of the snackbar (default: var(--dds-radius-base)) _(default: undefined)_\n- **--dds-snackbar-font-size** - Font size used in the snackbar (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-snackbar-background** - Background color of the snackbar (default: var(--dds-snackbar-error-background)) _(default: undefined)_\n- **--dds-snackbar-border** - Border color of the snackbar (default: var(--dds-snackbar-error-border)) _(default: undefined)_\n- **--dds-snackbar-text** - Text color of the snackbar (default: var(--dds-snackbar-variant-text)) _(default: undefined)_\n- **--dds-snackbar-icon** - Icon color of the snackbar (default: var(--dds-snackbar-variant-icon)) _(default: undefined)_\n- **--dds-snackbar-link** - Link color of the snackbar (default: var(--dds-snackbar-variant-link)) _(default: undefined)_\n- **--dds-snackbar-information-background** - Background color for information variant (default: var(--dds-background-informative-medium)) _(default: undefined)_\n- **--dds-snackbar-information-border** - Border color for information variant (default: var(--dds-border-width-base) solidvar(--dds-border-informative-subtle)) _(default: undefined)_\n- **--dds-snackbar-information-icon** - Icon color for information variant (default: var(--dds-icon-informative-subtle)) _(default: undefined)_\n- **--dds-snackbar-success-background** - Background color for success variant (default: var(--dds-background-positive-medium)) _(default: undefined)_\n- **--dds-snackbar-success-border** - Border color for success variant (default: var(--dds-border-width-base) solidvar(--dds-border-positive-subtle)) _(default: undefined)_\n- **--dds-snackbar-success-icon** - Icon color for success variant (default: var(--dds-icon-positive-subtle)) _(default: undefined)_\n- **--dds-snackbar-error-background** - Background color for error variant (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-snackbar-error-border** - Border color for error variant (default: var(--dds-border-width-base) solidvar(--dds-border-negative-subtle)) _(default: undefined)_\n- **--dds-snackbar-error-icon** - Icon color for error variant (default: var(--dds-icon-negative-subtle)) _(default: undefined)_\n- **--dds-snackbar-variant-text** - Text color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-variant-icon** - Icon color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-variant-link** - Link color for information, success, and error variants (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-snackbar-animation-duration** - Duration of entrance animations (default: 0.3s) _(default: undefined)_\n- **--dds-snackbar-animation-timing** - Timing function for animations (default: ease-out) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - Main snackbar container.\n- **text** - The text part of the snackbar.\n- **closebutton** - The close button part of the component.\n- **icon** - The icon part of the close button.",
@@ -11505,7 +11518,7 @@
11505
11518
  }
11506
11519
  },
11507
11520
  {
11508
- "name": "dap-ds-icon-arrow-left-up-line",
11521
+ "name": "dap-ds-icon-arrow-right-down-line",
11509
11522
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
11510
11523
  "doc-url": "",
11511
11524
  "attributes": [
@@ -11558,7 +11571,7 @@
11558
11571
  }
11559
11572
  },
11560
11573
  {
11561
- "name": "dap-ds-icon-arrow-right-down-line",
11574
+ "name": "dap-ds-icon-arrow-left-up-line",
11562
11575
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
11563
11576
  "doc-url": "",
11564
11577
  "attributes": [
@@ -11611,7 +11624,7 @@
11611
11624
  }
11612
11625
  },
11613
11626
  {
11614
- "name": "dap-ds-icon-arrow-right-l-line",
11627
+ "name": "dap-ds-icon-arrow-right-line",
11615
11628
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
11616
11629
  "doc-url": "",
11617
11630
  "attributes": [
@@ -11664,7 +11677,7 @@
11664
11677
  }
11665
11678
  },
11666
11679
  {
11667
- "name": "dap-ds-icon-arrow-right-line",
11680
+ "name": "dap-ds-icon-arrow-right-l-line",
11668
11681
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
11669
11682
  "doc-url": "",
11670
11683
  "attributes": [
@@ -12353,7 +12366,7 @@
12353
12366
  }
12354
12367
  },
12355
12368
  {
12356
- "name": "dap-ds-icon-clipboard-line",
12369
+ "name": "dap-ds-icon-separator",
12357
12370
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12358
12371
  "doc-url": "",
12359
12372
  "attributes": [
@@ -12406,7 +12419,7 @@
12406
12419
  }
12407
12420
  },
12408
12421
  {
12409
- "name": "dap-ds-icon-file-copy-line",
12422
+ "name": "dap-ds-icon-clipboard-line",
12410
12423
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12411
12424
  "doc-url": "",
12412
12425
  "attributes": [
@@ -12459,7 +12472,7 @@
12459
12472
  }
12460
12473
  },
12461
12474
  {
12462
- "name": "dap-ds-icon-file-image-line",
12475
+ "name": "dap-ds-icon-file-copy-line",
12463
12476
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12464
12477
  "doc-url": "",
12465
12478
  "attributes": [
@@ -12512,7 +12525,7 @@
12512
12525
  }
12513
12526
  },
12514
12527
  {
12515
- "name": "dap-ds-icon-file-music-line",
12528
+ "name": "dap-ds-icon-file-image-line",
12516
12529
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12517
12530
  "doc-url": "",
12518
12531
  "attributes": [
@@ -12565,7 +12578,7 @@
12565
12578
  }
12566
12579
  },
12567
12580
  {
12568
- "name": "dap-ds-icon-file-text-line",
12581
+ "name": "dap-ds-icon-file-music-line",
12569
12582
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12570
12583
  "doc-url": "",
12571
12584
  "attributes": [
@@ -12618,7 +12631,7 @@
12618
12631
  }
12619
12632
  },
12620
12633
  {
12621
- "name": "dap-ds-icon-file-video-line",
12634
+ "name": "dap-ds-icon-file-text-line",
12622
12635
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12623
12636
  "doc-url": "",
12624
12637
  "attributes": [
@@ -12671,7 +12684,7 @@
12671
12684
  }
12672
12685
  },
12673
12686
  {
12674
- "name": "dap-ds-icon-folder-line",
12687
+ "name": "dap-ds-icon-file-video-line",
12675
12688
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12676
12689
  "doc-url": "",
12677
12690
  "attributes": [
@@ -12724,7 +12737,7 @@
12724
12737
  }
12725
12738
  },
12726
12739
  {
12727
- "name": "dap-ds-icon-folder-open-line",
12740
+ "name": "dap-ds-icon-folder-line",
12728
12741
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12729
12742
  "doc-url": "",
12730
12743
  "attributes": [
@@ -12777,7 +12790,7 @@
12777
12790
  }
12778
12791
  },
12779
12792
  {
12780
- "name": "dap-ds-icon-separator",
12793
+ "name": "dap-ds-icon-folder-open-line",
12781
12794
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12782
12795
  "doc-url": "",
12783
12796
  "attributes": [
@@ -12883,7 +12896,7 @@
12883
12896
  }
12884
12897
  },
12885
12898
  {
12886
- "name": "dap-ds-icon-cookie-line",
12899
+ "name": "dap-ds-icon-heart-line",
12887
12900
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12888
12901
  "doc-url": "",
12889
12902
  "attributes": [
@@ -12936,7 +12949,7 @@
12936
12949
  }
12937
12950
  },
12938
12951
  {
12939
- "name": "dap-ds-icon-heart-line",
12952
+ "name": "dap-ds-icon-cookie-line",
12940
12953
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12941
12954
  "doc-url": "",
12942
12955
  "attributes": [
@@ -12989,7 +13002,7 @@
12989
13002
  }
12990
13003
  },
12991
13004
  {
12992
- "name": "dap-ds-icon-add-line",
13005
+ "name": "dap-ds-icon-account-circle-fill",
12993
13006
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
12994
13007
  "doc-url": "",
12995
13008
  "attributes": [
@@ -13042,7 +13055,7 @@
13042
13055
  }
13043
13056
  },
13044
13057
  {
13045
- "name": "dap-ds-icon-alert-fill",
13058
+ "name": "dap-ds-icon-account-circle-line",
13046
13059
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13047
13060
  "doc-url": "",
13048
13061
  "attributes": [
@@ -13095,7 +13108,7 @@
13095
13108
  }
13096
13109
  },
13097
13110
  {
13098
- "name": "dap-ds-icon-alert-line",
13111
+ "name": "dap-ds-icon-user-fill",
13099
13112
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13100
13113
  "doc-url": "",
13101
13114
  "attributes": [
@@ -13148,7 +13161,7 @@
13148
13161
  }
13149
13162
  },
13150
13163
  {
13151
- "name": "dap-ds-icon-check-line",
13164
+ "name": "dap-ds-icon-user-line",
13152
13165
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13153
13166
  "doc-url": "",
13154
13167
  "attributes": [
@@ -13201,7 +13214,7 @@
13201
13214
  }
13202
13215
  },
13203
13216
  {
13204
- "name": "dap-ds-icon-check-line2",
13217
+ "name": "dap-ds-icon-add-line",
13205
13218
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13206
13219
  "doc-url": "",
13207
13220
  "attributes": [
@@ -13254,7 +13267,7 @@
13254
13267
  }
13255
13268
  },
13256
13269
  {
13257
- "name": "dap-ds-icon-checkbox-blank-circle-fill",
13270
+ "name": "dap-ds-icon-alert-fill",
13258
13271
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13259
13272
  "doc-url": "",
13260
13273
  "attributes": [
@@ -13307,7 +13320,7 @@
13307
13320
  }
13308
13321
  },
13309
13322
  {
13310
- "name": "dap-ds-icon-checkbox-blank-circle-fill-check",
13323
+ "name": "dap-ds-icon-alert-line",
13311
13324
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13312
13325
  "doc-url": "",
13313
13326
  "attributes": [
@@ -13360,7 +13373,7 @@
13360
13373
  }
13361
13374
  },
13362
13375
  {
13363
- "name": "dap-ds-icon-checkbox-blank-circle-line",
13376
+ "name": "dap-ds-icon-check-line",
13364
13377
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13365
13378
  "doc-url": "",
13366
13379
  "attributes": [
@@ -13413,7 +13426,7 @@
13413
13426
  }
13414
13427
  },
13415
13428
  {
13416
- "name": "dap-ds-icon-checkbox-circle-fill",
13429
+ "name": "dap-ds-icon-check-line2",
13417
13430
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13418
13431
  "doc-url": "",
13419
13432
  "attributes": [
@@ -13466,7 +13479,7 @@
13466
13479
  }
13467
13480
  },
13468
13481
  {
13469
- "name": "dap-ds-icon-checkbox-circle-line",
13482
+ "name": "dap-ds-icon-checkbox-blank-circle-fill",
13470
13483
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13471
13484
  "doc-url": "",
13472
13485
  "attributes": [
@@ -13519,7 +13532,7 @@
13519
13532
  }
13520
13533
  },
13521
13534
  {
13522
- "name": "dap-ds-icon-close-circle-fill",
13535
+ "name": "dap-ds-icon-checkbox-blank-circle-fill-check",
13523
13536
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13524
13537
  "doc-url": "",
13525
13538
  "attributes": [
@@ -13572,7 +13585,7 @@
13572
13585
  }
13573
13586
  },
13574
13587
  {
13575
- "name": "dap-ds-icon-close-circle-line",
13588
+ "name": "dap-ds-icon-checkbox-blank-circle-line",
13576
13589
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13577
13590
  "doc-url": "",
13578
13591
  "attributes": [
@@ -13625,7 +13638,7 @@
13625
13638
  }
13626
13639
  },
13627
13640
  {
13628
- "name": "dap-ds-icon-close-fill",
13641
+ "name": "dap-ds-icon-checkbox-circle-fill",
13629
13642
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13630
13643
  "doc-url": "",
13631
13644
  "attributes": [
@@ -13678,7 +13691,7 @@
13678
13691
  }
13679
13692
  },
13680
13693
  {
13681
- "name": "dap-ds-icon-close-line",
13694
+ "name": "dap-ds-icon-checkbox-circle-line",
13682
13695
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13683
13696
  "doc-url": "",
13684
13697
  "attributes": [
@@ -13731,7 +13744,7 @@
13731
13744
  }
13732
13745
  },
13733
13746
  {
13734
- "name": "dap-ds-icon-delete-bin-fill",
13747
+ "name": "dap-ds-icon-close-circle-fill",
13735
13748
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13736
13749
  "doc-url": "",
13737
13750
  "attributes": [
@@ -13784,7 +13797,7 @@
13784
13797
  }
13785
13798
  },
13786
13799
  {
13787
- "name": "dap-ds-icon-delete-bin-line",
13800
+ "name": "dap-ds-icon-close-circle-line",
13788
13801
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13789
13802
  "doc-url": "",
13790
13803
  "attributes": [
@@ -13837,7 +13850,7 @@
13837
13850
  }
13838
13851
  },
13839
13852
  {
13840
- "name": "dap-ds-icon-download-line",
13853
+ "name": "dap-ds-icon-close-fill",
13841
13854
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13842
13855
  "doc-url": "",
13843
13856
  "attributes": [
@@ -13890,7 +13903,7 @@
13890
13903
  }
13891
13904
  },
13892
13905
  {
13893
- "name": "dap-ds-icon-error-warning-fill",
13906
+ "name": "dap-ds-icon-close-line",
13894
13907
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13895
13908
  "doc-url": "",
13896
13909
  "attributes": [
@@ -13943,7 +13956,7 @@
13943
13956
  }
13944
13957
  },
13945
13958
  {
13946
- "name": "dap-ds-icon-error-warning-line",
13959
+ "name": "dap-ds-icon-delete-bin-fill",
13947
13960
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
13948
13961
  "doc-url": "",
13949
13962
  "attributes": [
@@ -13996,7 +14009,7 @@
13996
14009
  }
13997
14010
  },
13998
14011
  {
13999
- "name": "dap-ds-icon-external-link-line",
14012
+ "name": "dap-ds-icon-delete-bin-line",
14000
14013
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14001
14014
  "doc-url": "",
14002
14015
  "attributes": [
@@ -14049,7 +14062,7 @@
14049
14062
  }
14050
14063
  },
14051
14064
  {
14052
- "name": "dap-ds-icon-eye-line",
14065
+ "name": "dap-ds-icon-download-line",
14053
14066
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14054
14067
  "doc-url": "",
14055
14068
  "attributes": [
@@ -14102,7 +14115,7 @@
14102
14115
  }
14103
14116
  },
14104
14117
  {
14105
- "name": "dap-ds-icon-eye-off-line",
14118
+ "name": "dap-ds-icon-error-warning-fill",
14106
14119
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14107
14120
  "doc-url": "",
14108
14121
  "attributes": [
@@ -14155,7 +14168,7 @@
14155
14168
  }
14156
14169
  },
14157
14170
  {
14158
- "name": "dap-ds-icon-forbid-fill",
14171
+ "name": "dap-ds-icon-error-warning-line",
14159
14172
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14160
14173
  "doc-url": "",
14161
14174
  "attributes": [
@@ -14208,7 +14221,7 @@
14208
14221
  }
14209
14222
  },
14210
14223
  {
14211
- "name": "dap-ds-icon-information-2-fill",
14224
+ "name": "dap-ds-icon-external-link-line",
14212
14225
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14213
14226
  "doc-url": "",
14214
14227
  "attributes": [
@@ -14261,7 +14274,7 @@
14261
14274
  }
14262
14275
  },
14263
14276
  {
14264
- "name": "dap-ds-icon-information-fill",
14277
+ "name": "dap-ds-icon-eye-line",
14265
14278
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14266
14279
  "doc-url": "",
14267
14280
  "attributes": [
@@ -14314,7 +14327,7 @@
14314
14327
  }
14315
14328
  },
14316
14329
  {
14317
- "name": "dap-ds-icon-information-line",
14330
+ "name": "dap-ds-icon-eye-off-line",
14318
14331
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14319
14332
  "doc-url": "",
14320
14333
  "attributes": [
@@ -14367,7 +14380,7 @@
14367
14380
  }
14368
14381
  },
14369
14382
  {
14370
- "name": "dap-ds-icon-lightbulb-fill",
14383
+ "name": "dap-ds-icon-forbid-fill",
14371
14384
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14372
14385
  "doc-url": "",
14373
14386
  "attributes": [
@@ -14420,7 +14433,7 @@
14420
14433
  }
14421
14434
  },
14422
14435
  {
14423
- "name": "dap-ds-icon-loading-spinner",
14436
+ "name": "dap-ds-icon-information-2-fill",
14424
14437
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14425
14438
  "doc-url": "",
14426
14439
  "attributes": [
@@ -14473,7 +14486,7 @@
14473
14486
  }
14474
14487
  },
14475
14488
  {
14476
- "name": "dap-ds-icon-lock-fill",
14489
+ "name": "dap-ds-icon-information-fill",
14477
14490
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14478
14491
  "doc-url": "",
14479
14492
  "attributes": [
@@ -14526,7 +14539,7 @@
14526
14539
  }
14527
14540
  },
14528
14541
  {
14529
- "name": "dap-ds-icon-lock-line",
14542
+ "name": "dap-ds-icon-information-line",
14530
14543
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14531
14544
  "doc-url": "",
14532
14545
  "attributes": [
@@ -14579,7 +14592,7 @@
14579
14592
  }
14580
14593
  },
14581
14594
  {
14582
- "name": "dap-ds-icon-menu-line",
14595
+ "name": "dap-ds-icon-lightbulb-fill",
14583
14596
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14584
14597
  "doc-url": "",
14585
14598
  "attributes": [
@@ -14632,7 +14645,7 @@
14632
14645
  }
14633
14646
  },
14634
14647
  {
14635
- "name": "dap-ds-icon-menu-line-s",
14648
+ "name": "dap-ds-icon-loading-spinner",
14636
14649
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14637
14650
  "doc-url": "",
14638
14651
  "attributes": [
@@ -14685,7 +14698,7 @@
14685
14698
  }
14686
14699
  },
14687
14700
  {
14688
- "name": "dap-ds-icon-more-2-line",
14701
+ "name": "dap-ds-icon-lock-fill",
14689
14702
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14690
14703
  "doc-url": "",
14691
14704
  "attributes": [
@@ -14738,7 +14751,7 @@
14738
14751
  }
14739
14752
  },
14740
14753
  {
14741
- "name": "dap-ds-icon-more-line",
14754
+ "name": "dap-ds-icon-lock-line",
14742
14755
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14743
14756
  "doc-url": "",
14744
14757
  "attributes": [
@@ -14791,7 +14804,7 @@
14791
14804
  }
14792
14805
  },
14793
14806
  {
14794
- "name": "dap-ds-icon-search-line",
14807
+ "name": "dap-ds-icon-menu-line",
14795
14808
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14796
14809
  "doc-url": "",
14797
14810
  "attributes": [
@@ -14844,7 +14857,7 @@
14844
14857
  }
14845
14858
  },
14846
14859
  {
14847
- "name": "dap-ds-icon-share-line",
14860
+ "name": "dap-ds-icon-menu-line-s",
14848
14861
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14849
14862
  "doc-url": "",
14850
14863
  "attributes": [
@@ -14897,7 +14910,7 @@
14897
14910
  }
14898
14911
  },
14899
14912
  {
14900
- "name": "dap-ds-icon-shield-check-line",
14913
+ "name": "dap-ds-icon-more-2-line",
14901
14914
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14902
14915
  "doc-url": "",
14903
14916
  "attributes": [
@@ -14950,7 +14963,7 @@
14950
14963
  }
14951
14964
  },
14952
14965
  {
14953
- "name": "dap-ds-icon-shield-check-fill",
14966
+ "name": "dap-ds-icon-more-line",
14954
14967
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
14955
14968
  "doc-url": "",
14956
14969
  "attributes": [
@@ -15003,7 +15016,7 @@
15003
15016
  }
15004
15017
  },
15005
15018
  {
15006
- "name": "dap-ds-icon-star-fill",
15019
+ "name": "dap-ds-icon-search-line",
15007
15020
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15008
15021
  "doc-url": "",
15009
15022
  "attributes": [
@@ -15056,7 +15069,7 @@
15056
15069
  }
15057
15070
  },
15058
15071
  {
15059
- "name": "dap-ds-icon-subtract-line",
15072
+ "name": "dap-ds-icon-share-line",
15060
15073
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15061
15074
  "doc-url": "",
15062
15075
  "attributes": [
@@ -15109,7 +15122,7 @@
15109
15122
  }
15110
15123
  },
15111
15124
  {
15112
- "name": "dap-ds-icon-subtract-line2",
15125
+ "name": "dap-ds-icon-shield-check-fill",
15113
15126
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15114
15127
  "doc-url": "",
15115
15128
  "attributes": [
@@ -15162,7 +15175,7 @@
15162
15175
  }
15163
15176
  },
15164
15177
  {
15165
- "name": "dap-ds-icon-time-fill",
15178
+ "name": "dap-ds-icon-shield-check-line",
15166
15179
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15167
15180
  "doc-url": "",
15168
15181
  "attributes": [
@@ -15215,7 +15228,7 @@
15215
15228
  }
15216
15229
  },
15217
15230
  {
15218
- "name": "dap-ds-icon-time-line",
15231
+ "name": "dap-ds-icon-star-fill",
15219
15232
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15220
15233
  "doc-url": "",
15221
15234
  "attributes": [
@@ -15268,7 +15281,7 @@
15268
15281
  }
15269
15282
  },
15270
15283
  {
15271
- "name": "dap-ds-icon-upload-2-fill",
15284
+ "name": "dap-ds-icon-subtract-line",
15272
15285
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15273
15286
  "doc-url": "",
15274
15287
  "attributes": [
@@ -15321,7 +15334,7 @@
15321
15334
  }
15322
15335
  },
15323
15336
  {
15324
- "name": "dap-ds-icon-upload-2-line",
15337
+ "name": "dap-ds-icon-subtract-line2",
15325
15338
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15326
15339
  "doc-url": "",
15327
15340
  "attributes": [
@@ -15374,7 +15387,7 @@
15374
15387
  }
15375
15388
  },
15376
15389
  {
15377
- "name": "dap-ds-icon-upload-line",
15390
+ "name": "dap-ds-icon-time-fill",
15378
15391
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15379
15392
  "doc-url": "",
15380
15393
  "attributes": [
@@ -15427,7 +15440,7 @@
15427
15440
  }
15428
15441
  },
15429
15442
  {
15430
- "name": "dap-ds-icon-zoom-in-line",
15443
+ "name": "dap-ds-icon-time-line",
15431
15444
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15432
15445
  "doc-url": "",
15433
15446
  "attributes": [
@@ -15480,7 +15493,7 @@
15480
15493
  }
15481
15494
  },
15482
15495
  {
15483
- "name": "dap-ds-icon-zoom-out-line",
15496
+ "name": "dap-ds-icon-upload-2-fill",
15484
15497
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15485
15498
  "doc-url": "",
15486
15499
  "attributes": [
@@ -15533,7 +15546,7 @@
15533
15546
  }
15534
15547
  },
15535
15548
  {
15536
- "name": "dap-ds-icon-account-circle-fill",
15549
+ "name": "dap-ds-icon-upload-2-line",
15537
15550
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15538
15551
  "doc-url": "",
15539
15552
  "attributes": [
@@ -15586,7 +15599,7 @@
15586
15599
  }
15587
15600
  },
15588
15601
  {
15589
- "name": "dap-ds-icon-account-circle-line",
15602
+ "name": "dap-ds-icon-upload-line",
15590
15603
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15591
15604
  "doc-url": "",
15592
15605
  "attributes": [
@@ -15639,7 +15652,7 @@
15639
15652
  }
15640
15653
  },
15641
15654
  {
15642
- "name": "dap-ds-icon-user-fill",
15655
+ "name": "dap-ds-icon-zoom-in-line",
15643
15656
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15644
15657
  "doc-url": "",
15645
15658
  "attributes": [
@@ -15692,7 +15705,7 @@
15692
15705
  }
15693
15706
  },
15694
15707
  {
15695
- "name": "dap-ds-icon-user-line",
15708
+ "name": "dap-ds-icon-zoom-out-line",
15696
15709
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
15697
15710
  "doc-url": "",
15698
15711
  "attributes": [