dap-design-system 0.57.7 → 0.57.9

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.
Files changed (33) hide show
  1. package/dist/components/banner/banner.component.d.ts +2 -0
  2. package/dist/components/calendar/calendar.component.d.ts +4 -0
  3. package/dist/components/callout/callout.component.d.ts +2 -0
  4. package/dist/components/chip/chip.component.d.ts +2 -0
  5. package/dist/components/combobox/comboboxBase.d.ts +4 -0
  6. package/dist/components/copybox-input/copybox-input.component.d.ts +2 -0
  7. package/dist/components/datatable/datatable.component.d.ts +2 -0
  8. package/dist/components/datepicker/datepicker.component.d.ts +4 -0
  9. package/dist/components/file-input/file-input-list-item.component.d.ts +2 -0
  10. package/dist/components/file-input/file-input.component.d.ts +4 -0
  11. package/dist/components/image-zoom/image-zoom.component.d.ts +4 -0
  12. package/dist/components/modal/modal-base-element.d.ts +6 -0
  13. package/dist/components/navigation-menu/navigation-menu-item.component.d.ts +2 -0
  14. package/dist/components/number-input/number-input.component.d.ts +4 -0
  15. package/dist/components/pager/pager.component.d.ts +2 -0
  16. package/dist/components/password-input/password-input.component.d.ts +2 -0
  17. package/dist/components/snackbar/snackbar-message.component.d.ts +2 -0
  18. package/dist/components/tab/tab-group.component.d.ts +10 -0
  19. package/dist/components/timepicker/time-grid.component.d.ts +8 -0
  20. package/dist/components/timepicker/timepicker.component.d.ts +4 -0
  21. package/dist/{components-CMBmObyM.js → components-DM_rlHV7.js} +3295 -3161
  22. package/dist/components-DM_rlHV7.js.map +1 -0
  23. package/dist/components.js +1 -1
  24. package/dist/dds.js +1 -1
  25. package/dist/manifest/types/vue/index.d.ts +382 -330
  26. package/dist/manifest/vscode.html-custom-data.json +454 -320
  27. package/dist/manifest/web-types.json +843 -525
  28. package/dist/react/index.d.ts +15 -15
  29. package/dist/react-types.ts +16 -16
  30. package/dist/react.js +270 -270
  31. package/dist/react.js.map +1 -1
  32. package/package.json +1 -1
  33. package/dist/components-CMBmObyM.js.map +0 -1
@@ -14,44 +14,29 @@
14
14
  ]
15
15
  },
16
16
  {
17
- "name": "dap-ds-avatar-group",
18
- "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.",
17
+ "name": "dap-ds-accordion-group",
18
+ "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.",
19
19
  "attributes": [
20
20
  {
21
- "name": "layout",
22
- "description": "Layout type for the avatar group",
23
- "values": [{ "name": "stack" }, { "name": "grid" }]
24
- },
25
- {
26
- "name": "max",
27
- "description": "Maximum number of avatars to show before showing overflow",
28
- "values": []
29
- },
30
- {
31
- "name": "show-total",
32
- "description": "Whether to show the total count in overflow indicator",
33
- "values": []
34
- },
35
- {
36
- "name": "interactive-overflow",
37
- "description": "Interactive overflow indicator",
38
- "values": []
39
- },
40
- {
41
- "name": "label",
42
- "description": "Accessible label for the avatar group",
21
+ "name": "autoClose",
22
+ "description": "Whether to close other accordions when one is opened.",
43
23
  "values": []
44
24
  },
45
25
  {
46
- "name": "overflow-label",
47
- "description": "Accessible label for the overflow indicator",
48
- "values": []
26
+ "name": "variant",
27
+ "description": "The variant of the accordion",
28
+ "values": [
29
+ { "name": "default" },
30
+ { "name": "collapsed" },
31
+ { "name": "clean" },
32
+ { "name": "clean-collapsed" }
33
+ ]
49
34
  }
50
35
  ],
51
36
  "references": [
52
37
  {
53
38
  "name": "Documentation",
54
- "url": "https://shoelace.style/components/avatar-group"
39
+ "url": "https://shoelace.style/components/accordion-group"
55
40
  }
56
41
  ]
57
42
  },
@@ -126,36 +111,66 @@
126
111
  ]
127
112
  },
128
113
  {
129
- "name": "dap-ds-badge",
130
- "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.",
114
+ "name": "dap-ds-anchor-heading",
115
+ "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.",
131
116
  "attributes": [
132
117
  {
133
- "name": "type",
134
- "description": "The type of the badge",
135
- "values": [
136
- { "name": "neutral" },
137
- { "name": "brand" },
138
- { "name": "info" },
139
- { "name": "positive" },
140
- { "name": "warning" },
141
- { "name": "negative" }
142
- ]
118
+ "name": "variant",
119
+ "description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
120
+ "values": [{ "name": "HeadingVariant" }]
143
121
  },
144
122
  {
145
- "name": "icon",
146
- "description": "The icon of the badge, this is a name of a built in icon",
123
+ "name": "label",
124
+ "description": "The label of the heading.",
147
125
  "values": []
126
+ }
127
+ ],
128
+ "references": [
129
+ {
130
+ "name": "Documentation",
131
+ "url": "https://shoelace.style/components/anchor-heading"
132
+ }
133
+ ]
134
+ },
135
+ {
136
+ "name": "dap-ds-avatar-group",
137
+ "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.",
138
+ "attributes": [
139
+ {
140
+ "name": "layout",
141
+ "description": "Layout type for the avatar group",
142
+ "values": [{ "name": "stack" }, { "name": "grid" }]
148
143
  },
149
144
  {
150
- "name": "live",
151
- "description": "Whether the badge represents dynamic content that should announce changes",
145
+ "name": "max",
146
+ "description": "Maximum number of avatars to show before showing overflow",
147
+ "values": []
148
+ },
149
+ {
150
+ "name": "show-total",
151
+ "description": "Whether to show the total count in overflow indicator",
152
+ "values": []
153
+ },
154
+ {
155
+ "name": "interactive-overflow",
156
+ "description": "Interactive overflow indicator",
157
+ "values": []
158
+ },
159
+ {
160
+ "name": "label",
161
+ "description": "Accessible label for the avatar group",
162
+ "values": []
163
+ },
164
+ {
165
+ "name": "overflow-label",
166
+ "description": "Accessible label for the overflow indicator",
152
167
  "values": []
153
168
  }
154
169
  ],
155
170
  "references": [
156
171
  {
157
172
  "name": "Documentation",
158
- "url": "https://shoelace.style/components/badge"
173
+ "url": "https://shoelace.style/components/avatar-group"
159
174
  }
160
175
  ]
161
176
  },
@@ -189,6 +204,11 @@
189
204
  "description": "The aria-label for the close button",
190
205
  "values": []
191
206
  },
207
+ {
208
+ "name": "closeButtonTestId",
209
+ "description": "`data-testid` for the close button.",
210
+ "values": []
211
+ },
192
212
  {
193
213
  "name": "icon",
194
214
  "description": "The icon of the banner, this is a name of a built icon icon",
@@ -226,51 +246,36 @@
226
246
  ]
227
247
  },
228
248
  {
229
- "name": "dap-ds-accordion-group",
230
- "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.",
249
+ "name": "dap-ds-badge",
250
+ "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.",
231
251
  "attributes": [
232
252
  {
233
- "name": "autoClose",
234
- "description": "Whether to close other accordions when one is opened.",
235
- "values": []
236
- },
237
- {
238
- "name": "variant",
239
- "description": "The variant of the accordion",
253
+ "name": "type",
254
+ "description": "The type of the badge",
240
255
  "values": [
241
- { "name": "default" },
242
- { "name": "collapsed" },
243
- { "name": "clean" },
244
- { "name": "clean-collapsed" }
256
+ { "name": "neutral" },
257
+ { "name": "brand" },
258
+ { "name": "info" },
259
+ { "name": "positive" },
260
+ { "name": "warning" },
261
+ { "name": "negative" }
245
262
  ]
246
- }
247
- ],
248
- "references": [
249
- {
250
- "name": "Documentation",
251
- "url": "https://shoelace.style/components/accordion-group"
252
- }
253
- ]
254
- },
255
- {
256
- "name": "dap-ds-anchor-heading",
257
- "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.",
258
- "attributes": [
263
+ },
259
264
  {
260
- "name": "variant",
261
- "description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
262
- "values": [{ "name": "HeadingVariant" }]
265
+ "name": "icon",
266
+ "description": "The icon of the badge, this is a name of a built in icon",
267
+ "values": []
263
268
  },
264
269
  {
265
- "name": "label",
266
- "description": "The label of the heading.",
270
+ "name": "live",
271
+ "description": "Whether the badge represents dynamic content that should announce changes",
267
272
  "values": []
268
273
  }
269
274
  ],
270
275
  "references": [
271
276
  {
272
277
  "name": "Documentation",
273
- "url": "https://shoelace.style/components/anchor-heading"
278
+ "url": "https://shoelace.style/components/badge"
274
279
  }
275
280
  ]
276
281
  },
@@ -501,6 +506,16 @@
501
506
  "name": "locale",
502
507
  "description": "The locale of the calendar.",
503
508
  "values": [{ "name": "hu" }, { "name": "en" }, { "name": "de" }]
509
+ },
510
+ {
511
+ "name": "prevButtonTestId",
512
+ "description": "`data-testid` for the previous-month button.",
513
+ "values": []
514
+ },
515
+ {
516
+ "name": "nextButtonTestId",
517
+ "description": "`data-testid` for the next-month button.",
518
+ "values": []
504
519
  }
505
520
  ],
506
521
  "references": [
@@ -561,52 +576,20 @@
561
576
  "values": []
562
577
  },
563
578
  {
564
- "name": "opened",
565
- "description": "If the callout is opened",
566
- "values": []
567
- }
568
- ],
569
- "references": [
570
- {
571
- "name": "Documentation",
572
- "url": "https://shoelace.style/components/callout"
573
- }
574
- ]
575
- },
576
- {
577
- "name": "dap-ds-checkbox",
578
- "description": "A checkbox is a form element that allows the user to select one or more options from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the checkbox is checked or unchecked.\n- **dds-blur** - Emitted when the checkbox loses focus.\n- **dds-focus** - Emitted when the checkbox gains focus.\n- **dds-input** - Emitted when the checkbox receives input.\n\n### **Methods:**\n - **focus(): _void_** - Programmatically focuses the checkbox input element.\n- **blur(): _void_** - Programmatically blurs the checkbox input element.\n\n### **CSS Properties:**\n - **--dds-checkbox-size** - The size of the checkbox. (default: var(--dds-spacing-500)) _(default: undefined)_\n- **--dds-checkbox-border-width** - The border width of the checkbox. (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-checkbox-border-radius** - The border radius of the checkbox. (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-checkbox-border-color** - The border color of the checkbox. (default: var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-checkbox-background-color** - The background color of the checkbox. (default: transparent) _(default: undefined)_\n- **--dds-checkbox-icon-color** - The color of the checkbox icon. (default: var(--dds-button-primary-icon-enabled)) _(default: undefined)_\n- **--dds-checkbox-hover-border-color** - The border color when hovering over the checkbox. (default: var(--dds-border-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-hover-background-color** - The background color when hovering over the checkbox. (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-active-border-color** - The border color when the checkbox is active. (default: var(--dds-border-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-active-background-color** - The background color when the checkbox is active. (default: var(--dds-background-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-checked-border-color** - The border color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-background-color** - The background color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-border-color** - The border color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-background-color** - The background color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-border-color** - The border color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-background-color** - The background color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-invalid-border-color** - The border color when the checkbox is invalid. (default: var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-background-color** - The background color when the checkbox is invalid. (default: var(--dds-background-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-border-color** - The border color when hovering over an invalid checkbox. (default: var(--dds-border-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-background-color** - The background color when hovering over an invalid checkbox. (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-border-color** - The border color when an invalid checkbox is active. (default: var(--dds-border-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-background-color** - The background color when an invalid checkbox is active. (default: var(--dds-background-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-disabled-border-color** - The border color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-background-color** - The background color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-icon-color** - The color of the checkbox icon when disabled. (default: var(--dds-button-primary-icon-disabled)) _(default: undefined)_\n- **--dds-checkbox-readonly-border-color** - The border color when the checkbox is readonly. (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-background-color** - The background color when the checkbox is readonly. (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-icon-color** - The color of the checkbox icon when readonly. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main checkbox container.\n- **label** - The label of the checkbox.\n- **input** - The input of the checkbox.\n- **control** - The control of the checkbox.\n- **icon** - The icon of the checkbox.\n- **icon-base** - The base icon container.\n- **label-container** - The label container of the checkbox.\n- **description** - The description of the checkbox.\n- **readonly** - The readonly state of the checkbox.",
579
- "attributes": [
580
- {
581
- "name": "indeterminate",
582
- "description": "Whether the checkbox is indeterminate",
579
+ "name": "closeButtonTestId",
580
+ "description": "`data-testid` for the default close button.",
583
581
  "values": []
584
582
  },
585
583
  {
586
- "name": "preventDefault",
587
- "description": "Whether the checkbox should prevent the default action",
588
- "values": []
589
- },
590
- {
591
- "name": "border",
592
- "description": "This sets up border around the checkbox, when true.",
593
- "values": []
594
- },
595
- {
596
- "name": "readonly",
597
- "description": "Whether the checkbox is readonly (cannot be changed but value is submitted with form).",
584
+ "name": "opened",
585
+ "description": "If the callout is opened",
598
586
  "values": []
599
- },
600
- {
601
- "name": "type",
602
- "description": "The type of the checkbox",
603
- "values": [{ "name": "normal" }, { "name": "background" }]
604
587
  }
605
588
  ],
606
589
  "references": [
607
590
  {
608
591
  "name": "Documentation",
609
- "url": "https://shoelace.style/components/checkbox"
592
+ "url": "https://shoelace.style/components/callout"
610
593
  }
611
594
  ]
612
595
  },
@@ -767,6 +750,43 @@
767
750
  }
768
751
  ]
769
752
  },
753
+ {
754
+ "name": "dap-ds-checkbox",
755
+ "description": "A checkbox is a form element that allows the user to select one or more options from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the checkbox is checked or unchecked.\n- **dds-blur** - Emitted when the checkbox loses focus.\n- **dds-focus** - Emitted when the checkbox gains focus.\n- **dds-input** - Emitted when the checkbox receives input.\n\n### **Methods:**\n - **focus(): _void_** - Programmatically focuses the checkbox input element.\n- **blur(): _void_** - Programmatically blurs the checkbox input element.\n\n### **CSS Properties:**\n - **--dds-checkbox-size** - The size of the checkbox. (default: var(--dds-spacing-500)) _(default: undefined)_\n- **--dds-checkbox-border-width** - The border width of the checkbox. (default: var(--dds-border-width-large)) _(default: undefined)_\n- **--dds-checkbox-border-radius** - The border radius of the checkbox. (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-checkbox-border-color** - The border color of the checkbox. (default: var(--dds-border-neutral-base)) _(default: undefined)_\n- **--dds-checkbox-background-color** - The background color of the checkbox. (default: transparent) _(default: undefined)_\n- **--dds-checkbox-icon-color** - The color of the checkbox icon. (default: var(--dds-button-primary-icon-enabled)) _(default: undefined)_\n- **--dds-checkbox-hover-border-color** - The border color when hovering over the checkbox. (default: var(--dds-border-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-hover-background-color** - The background color when hovering over the checkbox. (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-checkbox-active-border-color** - The border color when the checkbox is active. (default: var(--dds-border-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-active-background-color** - The background color when the checkbox is active. (default: var(--dds-background-neutral-strong)) _(default: undefined)_\n- **--dds-checkbox-checked-border-color** - The border color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-background-color** - The background color when the checkbox is checked. (default: var(--dds-background-brand-base-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-border-color** - The border color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-hover-background-color** - The background color when hovering over a checked checkbox. (default: var(--dds-background-brand-medium-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-border-color** - The border color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-checked-active-background-color** - The background color when a checked checkbox is active. (default: var(--dds-background-brand-strong-inverted)) _(default: undefined)_\n- **--dds-checkbox-invalid-border-color** - The border color when the checkbox is invalid. (default: var(--dds-border-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-background-color** - The background color when the checkbox is invalid. (default: var(--dds-background-negative-base)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-border-color** - The border color when hovering over an invalid checkbox. (default: var(--dds-border-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-hover-background-color** - The background color when hovering over an invalid checkbox. (default: var(--dds-background-negative-medium)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-border-color** - The border color when an invalid checkbox is active. (default: var(--dds-border-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-invalid-active-background-color** - The background color when an invalid checkbox is active. (default: var(--dds-background-negative-strong)) _(default: undefined)_\n- **--dds-checkbox-disabled-border-color** - The border color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-background-color** - The background color when the checkbox is disabled. (default: var(--dds-button-primary-background-disabled)) _(default: undefined)_\n- **--dds-checkbox-disabled-icon-color** - The color of the checkbox icon when disabled. (default: var(--dds-button-primary-icon-disabled)) _(default: undefined)_\n- **--dds-checkbox-readonly-border-color** - The border color when the checkbox is readonly. (default: var(--dds-border-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-background-color** - The background color when the checkbox is readonly. (default: var(--dds-background-neutral-subtle)) _(default: undefined)_\n- **--dds-checkbox-readonly-icon-color** - The color of the checkbox icon when readonly. (default: var(--dds-text-neutral-base)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main checkbox container.\n- **label** - The label of the checkbox.\n- **input** - The input of the checkbox.\n- **control** - The control of the checkbox.\n- **icon** - The icon of the checkbox.\n- **icon-base** - The base icon container.\n- **label-container** - The label container of the checkbox.\n- **description** - The description of the checkbox.\n- **readonly** - The readonly state of the checkbox.",
756
+ "attributes": [
757
+ {
758
+ "name": "indeterminate",
759
+ "description": "Whether the checkbox is indeterminate",
760
+ "values": []
761
+ },
762
+ {
763
+ "name": "preventDefault",
764
+ "description": "Whether the checkbox should prevent the default action",
765
+ "values": []
766
+ },
767
+ {
768
+ "name": "border",
769
+ "description": "This sets up border around the checkbox, when true.",
770
+ "values": []
771
+ },
772
+ {
773
+ "name": "readonly",
774
+ "description": "Whether the checkbox is readonly (cannot be changed but value is submitted with form).",
775
+ "values": []
776
+ },
777
+ {
778
+ "name": "type",
779
+ "description": "The type of the checkbox",
780
+ "values": [{ "name": "normal" }, { "name": "background" }]
781
+ }
782
+ ],
783
+ "references": [
784
+ {
785
+ "name": "Documentation",
786
+ "url": "https://shoelace.style/components/checkbox"
787
+ }
788
+ ]
789
+ },
770
790
  {
771
791
  "name": "dap-ds-chip",
772
792
  "description": "A chip is a small status descriptor for UI elements.\n---\n\n\n### **Events:**\n - **dds-remove** - Fired when the chip is removed\n- **dds-select** - Fired when the chip is selected\n\n### **CSS Properties:**\n - **--dds-chip-border** - Border of the chip (default: var(--dds-border-width-base) solid var(--dds-transparent-black-base)) _(default: undefined)_\n- **--dds-chip-border-radius** - Border radius of the chip (default: var(--dds-radius-small)) _(default: undefined)_\n- **--dds-chip-font-weight** - Font weight of the chip (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-chip-line-height** - Line height of the chip (default: 1.5) _(default: undefined)_\n- **--dds-chip-transition** - Transition timing for chip interactions (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-chip-padding-sm** - Padding for small chip size (default: var(--dds-spacing-100) var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-chip-padding-lg** - Padding for large chip size (default: var(--dds-spacing-200) var(--dds-spacing-300)) _(default: undefined)_\n- **--dds-chip-font-size-sm** - Font size for small chip size (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-chip-font-size-lg** - Font size for large chip size (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-chip-background-color** - Background color of the chip (default: var(--dds-background-neutral-base)) _(default: undefined)_\n- **--dds-chip-text-color** - Text color of the chip (default: var(--dds-text-neutral-base)) _(default: undefined)_\n- **--dds-chip-hover-background-color** - Background color of the chip on hover (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-chip-active-background-color** - Background color of the chip when active (default: var(--dds-background-neutral-strong)) _(default: undefined)_\n- **--dds-chip-selected-background-color** - Background color of the selected chip (default: var(--dds-background-brand-medium)) _(default: undefined)_\n- **--dds-chip-selected-text-color** - Text color of the selected chip (default: var(--dds-text-brand-subtle)) _(default: undefined)_\n- **--dds-chip-selected-border-color** - Border color of the selected chip (default: var(--dds-border-brand-base)) _(default: undefined)_\n- **--dds-chip-disabled-background-color** - Background color of the disabled chip (default: var(--dds-background-neutral-medium)) _(default: undefined)_\n- **--dds-chip-disabled-text-color** - Text color of the disabled chip (default: var(--dds-text-neutral-subtle)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The base part\n- **content-container** - The container for the content\n- **remove-button** - The remove button\n- **remove-icon** - The icon of the remove icon\n- **remove-icon-base** - The base of the remove icon\n- **remove-icon-base-base** - The base of the remove icon base",
@@ -800,6 +820,11 @@
800
820
  "name": "deleteAriaLabel",
801
821
  "description": "The aria label for the delete button",
802
822
  "values": []
823
+ },
824
+ {
825
+ "name": "removeButtonTestId",
826
+ "description": "`data-testid` for the remove button.",
827
+ "values": []
803
828
  }
804
829
  ],
805
830
  "references": [
@@ -1036,6 +1061,11 @@
1036
1061
  "name": "copyButtonAriaLabel",
1037
1062
  "description": "The aria label of the copy button.",
1038
1063
  "values": []
1064
+ },
1065
+ {
1066
+ "name": "copyButtonTestId",
1067
+ "description": "`data-testid` for the copy button.",
1068
+ "values": []
1039
1069
  }
1040
1070
  ],
1041
1071
  "references": [
@@ -1234,6 +1264,11 @@
1234
1264
  "description": "The label of the last button",
1235
1265
  "values": []
1236
1266
  },
1267
+ {
1268
+ "name": "sortButtonTestId",
1269
+ "description": "`data-testid` for the column sort-toggle button. Suffixed with the column id.",
1270
+ "values": []
1271
+ },
1237
1272
  {
1238
1273
  "name": "pageSizeOptions",
1239
1274
  "description": "Available page size options for the pager",
@@ -1379,6 +1414,16 @@
1379
1414
  "description": "The aria label of the clear button.",
1380
1415
  "values": []
1381
1416
  },
1417
+ {
1418
+ "name": "clearButtonTestId",
1419
+ "description": "`data-testid` for the clear button.",
1420
+ "values": []
1421
+ },
1422
+ {
1423
+ "name": "calendarButtonTestId",
1424
+ "description": "`data-testid` for the calendar indicator button that opens the calendar.",
1425
+ "values": []
1426
+ },
1382
1427
  {
1383
1428
  "name": "floatingStrategy",
1384
1429
  "description": "The floating strategy of the datepicker.",
@@ -1505,6 +1550,11 @@
1505
1550
  "description": "Show delete button.",
1506
1551
  "values": []
1507
1552
  },
1553
+ {
1554
+ "name": "removeButtonTestId",
1555
+ "description": "`data-testid` for the remove-file button.",
1556
+ "values": []
1557
+ },
1508
1558
  {
1509
1559
  "name": "showFileSize",
1510
1560
  "description": "Show file size.",
@@ -1646,6 +1696,16 @@
1646
1696
  "description": "The label for the browse button.",
1647
1697
  "values": []
1648
1698
  },
1699
+ {
1700
+ "name": "browseButtonTestId",
1701
+ "description": "`data-testid` for the browse button.",
1702
+ "values": []
1703
+ },
1704
+ {
1705
+ "name": "uploadButtonTestId",
1706
+ "description": "`data-testid` for the upload button.",
1707
+ "values": []
1708
+ },
1649
1709
  {
1650
1710
  "name": "showDropzone",
1651
1711
  "description": "Whether to show a separate dropzone area.",
@@ -1960,7 +2020,20 @@
1960
2020
  "description": "Hides the expand and unzoom buttons. Default is false.",
1961
2021
  "values": []
1962
2022
  },
1963
- { "name": "zoomButtonVariant", "values": [{ "name": "ButtonVariant" }] }
2023
+ {
2024
+ "name": "zoomButtonVariant",
2025
+ "values": [{ "name": "ButtonVariant" }]
2026
+ },
2027
+ {
2028
+ "name": "expandButtonTestId",
2029
+ "description": "`data-testid` for the expand/zoom button.",
2030
+ "values": []
2031
+ },
2032
+ {
2033
+ "name": "unzoomButtonTestId",
2034
+ "description": "`data-testid` for the unzoom/close button.",
2035
+ "values": []
2036
+ }
1964
2037
  ],
1965
2038
  "references": [
1966
2039
  {
@@ -2313,6 +2386,11 @@
2313
2386
  "name": "tabMode",
2314
2387
  "description": "Controls how Tab key navigates through top-level items. Default is 'group'.",
2315
2388
  "values": [{ "name": "group" }, { "name": "items" }]
2389
+ },
2390
+ {
2391
+ "name": "triggerButtonTestId",
2392
+ "description": "`data-testid` for the default menu trigger button.",
2393
+ "values": []
2316
2394
  }
2317
2395
  ],
2318
2396
  "references": [
@@ -2466,6 +2544,16 @@
2466
2544
  "name": "padStart",
2467
2545
  "description": "The number of leading zeros to add to the input.",
2468
2546
  "values": []
2547
+ },
2548
+ {
2549
+ "name": "decrementButtonTestId",
2550
+ "description": "`data-testid` for the decrement stepper button.",
2551
+ "values": []
2552
+ },
2553
+ {
2554
+ "name": "incrementButtonTestId",
2555
+ "description": "`data-testid` for the increment stepper button.",
2556
+ "values": []
2469
2557
  }
2470
2558
  ],
2471
2559
  "references": [
@@ -2707,6 +2795,11 @@
2707
2795
  "name": "lastButtonLabel",
2708
2796
  "description": "The last button label.",
2709
2797
  "values": []
2798
+ },
2799
+ {
2800
+ "name": "pageButtonTestId",
2801
+ "description": "`data-testid` for the pagination buttons. Suffixed with the button's part (first/previous/next/last).",
2802
+ "values": []
2710
2803
  }
2711
2804
  ],
2712
2805
  "references": [
@@ -2719,7 +2812,13 @@
2719
2812
  {
2720
2813
  "name": "dap-ds-password-input",
2721
2814
  "description": "A password input a field for entering a password.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the input value changes.\n- **dds-input** - Fired when the input value changes.\n- **dds-keydown** - Fired when a key is pressed down.\n- **dds-blur** - Fired when the input loses focus.\n- **dds-focus** - Emitted when the input gains focus.\n\n### **CSS Properties:**\n - **--dds-input-height-xs** - The height of the extra small input. (default: var(--dds-spacing-800)). _(default: undefined)_\n- **--dds-input-height-sm** - The height of the small input. (default: var(--dds-spacing-1000)). _(default: undefined)_\n- **--dds-input-height-lg** - The height of the large input. (default: var(--dds-spacing-1200)). _(default: undefined)_\n- **--dds-input-padding-xs** - The padding of the extra small input. (default: 0 var(--dds-spacing-200)). _(default: undefined)_\n- **--dds-input-padding-sm** - The padding of the small input. (default: 0 var(--dds-spacing-300)). _(default: undefined)_\n- **--dds-input-padding-lg** - The padding of the large input. (default: 0 var(--dds-spacing-400)). _(default: undefined)_\n- **--dds-input-font-size-xs** - The font size of the extra small input. (default: var(--dds-font-sm)). _(default: undefined)_\n- **--dds-input-font-size-sm** - The font size of the small input. (default: var(--dds-font-base)). _(default: undefined)_\n- **--dds-input-font-size-lg** - The font size of the large input. (default: var(--dds-font-lg)). _(default: undefined)_\n- **--dds-input-border** - The border of the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)). _(default: undefined)_\n- **--dds-input-background** - The background color of the input. (default: var(--dds-fields-background-default)). _(default: undefined)_\n- **--dds-input-text-color** - The text color of the input. (default: var(--dds-text-neutral-base)). _(default: undefined)_\n- **--dds-input-border-radius** - The border radius of the input. (default: var(--dds-radius-base)). _(default: undefined)_\n- **--dds-input-disabled-border** - The border of the disabled input. (default: 0 solid var(--dds-border-neutral-disabled)). _(default: undefined)_\n- **--dds-input-disabled-background** - The background color of the disabled input. (default: var(--dds-fields-background-disabled)). _(default: undefined)_\n- **--dds-input-disabled-text** - The text color of the disabled input. (default: var(--dds-text-neutral-disabled)). _(default: undefined)_\n- **--dds-input-readonly-border** - The border of the readonly input. (default: 0 solid var(--dds-border-neutral-subtle)). _(default: undefined)_\n- **--dds-input-readonly-background** - The background color of the readonly input. (default: var(--dds-fields-background-read-only)). _(default: undefined)_\n- **--dds-input-readonly-text** - The text color of the readonly input. (default: var(--dds-text-neutral-subtle)). _(default: undefined)_\n- **--dds-input-success-border** - The border of the success input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)). _(default: undefined)_\n- **--dds-input-error-border** - The border of the error input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)). _(default: undefined)_\n- **--dds-input-addon-background** - The background color of the input addon. (default: var(--dds-fields-background-default)). _(default: undefined)_\n- **--dds-input-addon-success-background** - The background color of the success input addon. (default: var(--dds-fields-background-default)). _(default: undefined)_\n- **--dds-input-addon-error-background** - The background color of the error input addon. (default: var(--dds-fields-background-default)). _(default: undefined)_\n- **--dds-input-addon-border-before** - The border of the addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)). _(default: undefined)_\n- **--dds-input-addon-border-after** - The border of the addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-neutral-base)). _(default: undefined)_\n- **--dds-input-addon-border-width-before** - The border width of the addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)). _(default: undefined)_\n- **--dds-input-addon-border-width-after** - The border width of the addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0). _(default: undefined)_\n- **--dds-input-addon-success-border** - The border of the success addon. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)). _(default: undefined)_\n- **--dds-input-addon-success-border-before** - The border of the success addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)). _(default: undefined)_\n- **--dds-input-addon-success-border-after** - The border of the success addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-positive-base)). _(default: undefined)_\n- **--dds-input-addon-success-border-width-before** - The border width of the success addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)). _(default: undefined)_\n- **--dds-input-addon-success-border-width-after** - The border width of the success addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0). _(default: undefined)_\n- **--dds-input-addon-error-border-before** - The border of the error addon before the input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)). _(default: undefined)_\n- **--dds-input-addon-error-border-after** - The border of the error addon after the input. (default: var(--dds-border-width-base) solid var(--dds-border-negative-base)). _(default: undefined)_\n- **--dds-input-addon-error-border-width-before** - The border width of the error addon before the input. (default: var(--dds-border-width-base) 0 var(--dds-border-width-base) var(--dds-border-width-base)). _(default: undefined)_\n- **--dds-input-addon-error-border-width-after** - The border width of the error addon after the input. (default: var(--dds-border-width-base) var(--dds-border-width-base) var(--dds-border-width-base) 0). _(default: undefined)_\n\n### **CSS Parts:**\n - **postfix** - The postfix of the password input.\n- **password-input** - The password input.\n- **password-input--visible** - The visible password input.\n- **show-button** - The show button of the password input.\n- **show-button-base** - The base of the show button.\n- **show-button-content** - The content of the show button.\n- **show-icon** - The show icon of the password input.\n- **show-icon-base** - The base of the show icon.\n- **hide-button** - The hide button of the password input.\n- **hide-button-base** - The base of the hide button.\n- **hide-button-content** - The content of the hide button.\n- **hide-icon** - The hide icon of the password input.\n- **hide-icon-base** - The base of the hide icon.",
2722
- "attributes": [],
2815
+ "attributes": [
2816
+ {
2817
+ "name": "toggleButtonTestId",
2818
+ "description": "`data-testid` for the show/hide toggle button.",
2819
+ "values": []
2820
+ }
2821
+ ],
2723
2822
  "references": [
2724
2823
  {
2725
2824
  "name": "Documentation",
@@ -3242,6 +3341,11 @@
3242
3341
  "name": "position",
3243
3342
  "description": "The position of the snackbar container for directional animations.",
3244
3343
  "values": [{ "name": "SnackbarPosition" }]
3344
+ },
3345
+ {
3346
+ "name": "closeButtonTestId",
3347
+ "description": "`data-testid` for the snackbar close button.",
3348
+ "values": []
3245
3349
  }
3246
3350
  ],
3247
3351
  "references": [
@@ -3646,7 +3750,27 @@
3646
3750
  { "name": "showSeconds", "values": [] },
3647
3751
  { "name": "secondsStep", "values": [] },
3648
3752
  { "name": "hideDisabledTimes", "values": [] },
3649
- { "name": "presets", "values": [{ "name": "TimePreset[]" }] }
3753
+ { "name": "presets", "values": [{ "name": "TimePreset[]" }] },
3754
+ {
3755
+ "name": "presetButtonTestId",
3756
+ "description": "`data-testid` base for the preset buttons (preset value appended).",
3757
+ "values": []
3758
+ },
3759
+ {
3760
+ "name": "hourButtonTestId",
3761
+ "description": "`data-testid` base for the hour select buttons (hour value appended).",
3762
+ "values": []
3763
+ },
3764
+ {
3765
+ "name": "minuteButtonTestId",
3766
+ "description": "`data-testid` base for the minute select buttons (minute value appended).",
3767
+ "values": []
3768
+ },
3769
+ {
3770
+ "name": "secondButtonTestId",
3771
+ "description": "`data-testid` base for the second select buttons (second value appended).",
3772
+ "values": []
3773
+ }
3650
3774
  ],
3651
3775
  "references": [
3652
3776
  {
@@ -3724,6 +3848,16 @@
3724
3848
  "description": "The aria label of the clear button.",
3725
3849
  "values": []
3726
3850
  },
3851
+ {
3852
+ "name": "clearButtonTestId",
3853
+ "description": "`data-testid` for the clear button.",
3854
+ "values": []
3855
+ },
3856
+ {
3857
+ "name": "timeButtonTestId",
3858
+ "description": "`data-testid` for the time indicator button that opens the grid.",
3859
+ "values": []
3860
+ },
3727
3861
  {
3728
3862
  "name": "floatingStrategy",
3729
3863
  "description": "The floating strategy of the timepicker.",
@@ -3978,6 +4112,17 @@
3978
4112
  }
3979
4113
  ]
3980
4114
  },
4115
+ {
4116
+ "name": "dap-ds-input-group",
4117
+ "description": "An input group is a container for inputs.\n---\n\n\n### **Slots:**\n - _default_ - The content of the input group items.\n- **feedback-icon** - The custom icon of the feedback.\n\n### **CSS Parts:**\n - **base** - The main input group container.\n- **label** - The label of the input group.\n- **description** - The description of the input group.\n- **tooltip** - The tooltip of the input group.\n- **container** - The container of the input group items.",
4118
+ "attributes": [],
4119
+ "references": [
4120
+ {
4121
+ "name": "Documentation",
4122
+ "url": "https://shoelace.style/components/input-group"
4123
+ }
4124
+ ]
4125
+ },
3981
4126
  {
3982
4127
  "name": "dap-ds-form-label",
3983
4128
  "description": "A form label is a container for labels in a form.\n---\n\n\n### **CSS Properties:**\n - **--dds-form-label-font-weight** - Font weight of the label. (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-form-label-line-height** - Line height of the label. (default: var(--dds-font-line-height-xlarge)) _(default: undefined)_\n- **--dds-form-label-color** - Text color of the label. (default: var(--dds-text-neutral-enabled)) _(default: undefined)_\n- **--dds-form-label-disabled-color** - Text color when the label is disabled. (default: var(--dds-text-neutral-disabled)) _(default: undefined)_\n- **--dds-form-label-required-color** - Color of the required indicator. (default: var(--dds-text-negative-subtle)) _(default: undefined)_\n- **--dds-form-label-optional-color** - Color of the optional indicator. (default: var(--dds-text-neutral-subtle)) _(default: undefined)_\n- **--dds-form-label-margin-bottom** - Bottom margin of the label. (default: var(--dds-spacing-200)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main form label container.\n- **required** - The required indicator of the form label.\n- **optional** - The optional indicator of the form label.",
@@ -4005,17 +4150,6 @@
4005
4150
  }
4006
4151
  ]
4007
4152
  },
4008
- {
4009
- "name": "dap-ds-input-group",
4010
- "description": "An input group is a container for inputs.\n---\n\n\n### **Slots:**\n - _default_ - The content of the input group items.\n- **feedback-icon** - The custom icon of the feedback.\n\n### **CSS Parts:**\n - **base** - The main input group container.\n- **label** - The label of the input group.\n- **description** - The description of the input group.\n- **tooltip** - The tooltip of the input group.\n- **container** - The container of the input group items.",
4011
- "attributes": [],
4012
- "references": [
4013
- {
4014
- "name": "Documentation",
4015
- "url": "https://shoelace.style/components/input-group"
4016
- }
4017
- ]
4018
- },
4019
4153
  {
4020
4154
  "name": "dap-ds-radio-group",
4021
4155
  "description": "A radio group is a form element that allows the user to select one option from a set.\n---\n\n\n### **Events:**\n - **dds-change** - Fired when the radio group is checked.\n- **dds-blur** - Emitted when the radio group loses focus.\n- **dds-focus** - Emitted when the radio group gains focus.\n\n### **Slots:**\n - _default_ - The content of the radio group.\n- **feedback-icon** - The custom icon of the feedback.\n\n### **CSS Parts:**\n - **base** - The main radio group container.\n- **label** - The label of the radio group.\n- **tooltip** - The tooltip of the radio group.\n- **container** - The container of the radio group items.",
@@ -4172,135 +4306,7 @@
4172
4306
  ]
4173
4307
  },
4174
4308
  {
4175
- "name": "dap-ds-icon-arrow-left-l-line",
4176
- "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4177
- "attributes": [
4178
- {
4179
- "name": "size",
4180
- "description": "(optional) The width and height in pixels",
4181
- "values": []
4182
- },
4183
- {
4184
- "name": "selected",
4185
- "description": "(optional) Sets the icon color via the `fill` attribute",
4186
- "values": []
4187
- },
4188
- {
4189
- "name": "accessibilityTitle",
4190
- "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
4191
- "values": []
4192
- },
4193
- {
4194
- "name": "focusable",
4195
- "description": "(optional) If `true` the icon can receive focus",
4196
- "values": []
4197
- }
4198
- ],
4199
- "references": [
4200
- {
4201
- "name": "Documentation",
4202
- "url": "https://shoelace.style/components/icon-arrow-left-l-line"
4203
- }
4204
- ]
4205
- },
4206
- {
4207
- "name": "dap-ds-icon-arrow-left-line",
4208
- "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4209
- "attributes": [
4210
- {
4211
- "name": "size",
4212
- "description": "(optional) The width and height in pixels",
4213
- "values": []
4214
- },
4215
- {
4216
- "name": "selected",
4217
- "description": "(optional) Sets the icon color via the `fill` attribute",
4218
- "values": []
4219
- },
4220
- {
4221
- "name": "accessibilityTitle",
4222
- "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
4223
- "values": []
4224
- },
4225
- {
4226
- "name": "focusable",
4227
- "description": "(optional) If `true` the icon can receive focus",
4228
- "values": []
4229
- }
4230
- ],
4231
- "references": [
4232
- {
4233
- "name": "Documentation",
4234
- "url": "https://shoelace.style/components/icon-arrow-left-line"
4235
- }
4236
- ]
4237
- },
4238
- {
4239
- "name": "dap-ds-icon-arrow-left-s-fill",
4240
- "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4241
- "attributes": [
4242
- {
4243
- "name": "size",
4244
- "description": "(optional) The width and height in pixels",
4245
- "values": []
4246
- },
4247
- {
4248
- "name": "selected",
4249
- "description": "(optional) Sets the icon color via the `fill` attribute",
4250
- "values": []
4251
- },
4252
- {
4253
- "name": "accessibilityTitle",
4254
- "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
4255
- "values": []
4256
- },
4257
- {
4258
- "name": "focusable",
4259
- "description": "(optional) If `true` the icon can receive focus",
4260
- "values": []
4261
- }
4262
- ],
4263
- "references": [
4264
- {
4265
- "name": "Documentation",
4266
- "url": "https://shoelace.style/components/icon-arrow-left-s-fill"
4267
- }
4268
- ]
4269
- },
4270
- {
4271
- "name": "dap-ds-icon-arrow-left-s-line",
4272
- "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4273
- "attributes": [
4274
- {
4275
- "name": "size",
4276
- "description": "(optional) The width and height in pixels",
4277
- "values": []
4278
- },
4279
- {
4280
- "name": "selected",
4281
- "description": "(optional) Sets the icon color via the `fill` attribute",
4282
- "values": []
4283
- },
4284
- {
4285
- "name": "accessibilityTitle",
4286
- "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
4287
- "values": []
4288
- },
4289
- {
4290
- "name": "focusable",
4291
- "description": "(optional) If `true` the icon can receive focus",
4292
- "values": []
4293
- }
4294
- ],
4295
- "references": [
4296
- {
4297
- "name": "Documentation",
4298
- "url": "https://shoelace.style/components/icon-arrow-left-s-line"
4299
- }
4300
- ]
4301
- },
4302
- {
4303
- "name": "dap-ds-icon-arrow-right-down-line",
4309
+ "name": "dap-ds-icon-arrow-left-l-line",
4304
4310
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4305
4311
  "attributes": [
4306
4312
  {
@@ -4327,12 +4333,12 @@
4327
4333
  "references": [
4328
4334
  {
4329
4335
  "name": "Documentation",
4330
- "url": "https://shoelace.style/components/icon-arrow-right-down-line"
4336
+ "url": "https://shoelace.style/components/icon-arrow-left-l-line"
4331
4337
  }
4332
4338
  ]
4333
4339
  },
4334
4340
  {
4335
- "name": "dap-ds-icon-arrow-left-up-line",
4341
+ "name": "dap-ds-icon-arrow-left-line",
4336
4342
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4337
4343
  "attributes": [
4338
4344
  {
@@ -4359,12 +4365,12 @@
4359
4365
  "references": [
4360
4366
  {
4361
4367
  "name": "Documentation",
4362
- "url": "https://shoelace.style/components/icon-arrow-left-up-line"
4368
+ "url": "https://shoelace.style/components/icon-arrow-left-line"
4363
4369
  }
4364
4370
  ]
4365
4371
  },
4366
4372
  {
4367
- "name": "dap-ds-icon-arrow-right-line",
4373
+ "name": "dap-ds-icon-arrow-left-s-line",
4368
4374
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4369
4375
  "attributes": [
4370
4376
  {
@@ -4391,12 +4397,12 @@
4391
4397
  "references": [
4392
4398
  {
4393
4399
  "name": "Documentation",
4394
- "url": "https://shoelace.style/components/icon-arrow-right-line"
4400
+ "url": "https://shoelace.style/components/icon-arrow-left-s-line"
4395
4401
  }
4396
4402
  ]
4397
4403
  },
4398
4404
  {
4399
- "name": "dap-ds-icon-arrow-right-l-line",
4405
+ "name": "dap-ds-icon-arrow-left-s-fill",
4400
4406
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4401
4407
  "attributes": [
4402
4408
  {
@@ -4423,12 +4429,12 @@
4423
4429
  "references": [
4424
4430
  {
4425
4431
  "name": "Documentation",
4426
- "url": "https://shoelace.style/components/icon-arrow-right-l-line"
4432
+ "url": "https://shoelace.style/components/icon-arrow-left-s-fill"
4427
4433
  }
4428
4434
  ]
4429
4435
  },
4430
4436
  {
4431
- "name": "dap-ds-icon-arrow-right-s-fill",
4437
+ "name": "dap-ds-icon-arrow-left-up-line",
4432
4438
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4433
4439
  "attributes": [
4434
4440
  {
@@ -4455,12 +4461,12 @@
4455
4461
  "references": [
4456
4462
  {
4457
4463
  "name": "Documentation",
4458
- "url": "https://shoelace.style/components/icon-arrow-right-s-fill"
4464
+ "url": "https://shoelace.style/components/icon-arrow-left-up-line"
4459
4465
  }
4460
4466
  ]
4461
4467
  },
4462
4468
  {
4463
- "name": "dap-ds-icon-arrow-right-s-line",
4469
+ "name": "dap-ds-icon-arrow-right-down-line",
4464
4470
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4465
4471
  "attributes": [
4466
4472
  {
@@ -4487,12 +4493,12 @@
4487
4493
  "references": [
4488
4494
  {
4489
4495
  "name": "Documentation",
4490
- "url": "https://shoelace.style/components/icon-arrow-right-s-line"
4496
+ "url": "https://shoelace.style/components/icon-arrow-right-down-line"
4491
4497
  }
4492
4498
  ]
4493
4499
  },
4494
4500
  {
4495
- "name": "dap-ds-icon-arrow-right-up-line",
4501
+ "name": "dap-ds-icon-arrow-right-l-line",
4496
4502
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4497
4503
  "attributes": [
4498
4504
  {
@@ -4519,12 +4525,12 @@
4519
4525
  "references": [
4520
4526
  {
4521
4527
  "name": "Documentation",
4522
- "url": "https://shoelace.style/components/icon-arrow-right-up-line"
4528
+ "url": "https://shoelace.style/components/icon-arrow-right-l-line"
4523
4529
  }
4524
4530
  ]
4525
4531
  },
4526
4532
  {
4527
- "name": "dap-ds-icon-arrow-up-line",
4533
+ "name": "dap-ds-icon-arrow-right-line",
4528
4534
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4529
4535
  "attributes": [
4530
4536
  {
@@ -4551,12 +4557,12 @@
4551
4557
  "references": [
4552
4558
  {
4553
4559
  "name": "Documentation",
4554
- "url": "https://shoelace.style/components/icon-arrow-up-line"
4560
+ "url": "https://shoelace.style/components/icon-arrow-right-line"
4555
4561
  }
4556
4562
  ]
4557
4563
  },
4558
4564
  {
4559
- "name": "dap-ds-icon-arrow-up-s-fill",
4565
+ "name": "dap-ds-icon-arrow-right-s-fill",
4560
4566
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4561
4567
  "attributes": [
4562
4568
  {
@@ -4583,12 +4589,12 @@
4583
4589
  "references": [
4584
4590
  {
4585
4591
  "name": "Documentation",
4586
- "url": "https://shoelace.style/components/icon-arrow-up-s-fill"
4592
+ "url": "https://shoelace.style/components/icon-arrow-right-s-fill"
4587
4593
  }
4588
4594
  ]
4589
4595
  },
4590
4596
  {
4591
- "name": "dap-ds-icon-arrow-up-s-line",
4597
+ "name": "dap-ds-icon-arrow-right-s-line",
4592
4598
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4593
4599
  "attributes": [
4594
4600
  {
@@ -4615,12 +4621,12 @@
4615
4621
  "references": [
4616
4622
  {
4617
4623
  "name": "Documentation",
4618
- "url": "https://shoelace.style/components/icon-arrow-up-s-line"
4624
+ "url": "https://shoelace.style/components/icon-arrow-right-s-line"
4619
4625
  }
4620
4626
  ]
4621
4627
  },
4622
4628
  {
4623
- "name": "dap-ds-icon-expand-up-down-fill",
4629
+ "name": "dap-ds-icon-arrow-right-up-line",
4624
4630
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4625
4631
  "attributes": [
4626
4632
  {
@@ -4647,12 +4653,12 @@
4647
4653
  "references": [
4648
4654
  {
4649
4655
  "name": "Documentation",
4650
- "url": "https://shoelace.style/components/icon-expand-up-down-fill"
4656
+ "url": "https://shoelace.style/components/icon-arrow-right-up-line"
4651
4657
  }
4652
4658
  ]
4653
4659
  },
4654
4660
  {
4655
- "name": "dap-ds-icon-home-6-line",
4661
+ "name": "dap-ds-icon-arrow-up-line",
4656
4662
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4657
4663
  "attributes": [
4658
4664
  {
@@ -4679,12 +4685,12 @@
4679
4685
  "references": [
4680
4686
  {
4681
4687
  "name": "Documentation",
4682
- "url": "https://shoelace.style/components/icon-home-6-line"
4688
+ "url": "https://shoelace.style/components/icon-arrow-up-line"
4683
4689
  }
4684
4690
  ]
4685
4691
  },
4686
4692
  {
4687
- "name": "dap-ds-icon-calendar-line",
4693
+ "name": "dap-ds-icon-arrow-up-s-fill",
4688
4694
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4689
4695
  "attributes": [
4690
4696
  {
@@ -4711,12 +4717,12 @@
4711
4717
  "references": [
4712
4718
  {
4713
4719
  "name": "Documentation",
4714
- "url": "https://shoelace.style/components/icon-calendar-line"
4720
+ "url": "https://shoelace.style/components/icon-arrow-up-s-fill"
4715
4721
  }
4716
4722
  ]
4717
4723
  },
4718
4724
  {
4719
- "name": "dap-ds-icon-edit-line",
4725
+ "name": "dap-ds-icon-arrow-up-s-line",
4720
4726
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4721
4727
  "attributes": [
4722
4728
  {
@@ -4743,12 +4749,12 @@
4743
4749
  "references": [
4744
4750
  {
4745
4751
  "name": "Documentation",
4746
- "url": "https://shoelace.style/components/icon-edit-line"
4752
+ "url": "https://shoelace.style/components/icon-arrow-up-s-line"
4747
4753
  }
4748
4754
  ]
4749
4755
  },
4750
4756
  {
4751
- "name": "dap-ds-icon-tools-line",
4757
+ "name": "dap-ds-icon-expand-up-down-fill",
4752
4758
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4753
4759
  "attributes": [
4754
4760
  {
@@ -4775,12 +4781,12 @@
4775
4781
  "references": [
4776
4782
  {
4777
4783
  "name": "Documentation",
4778
- "url": "https://shoelace.style/components/icon-tools-line"
4784
+ "url": "https://shoelace.style/components/icon-expand-up-down-fill"
4779
4785
  }
4780
4786
  ]
4781
4787
  },
4782
4788
  {
4783
- "name": "dap-ds-icon-computer-line",
4789
+ "name": "dap-ds-icon-home-6-line",
4784
4790
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4785
4791
  "attributes": [
4786
4792
  {
@@ -4807,12 +4813,12 @@
4807
4813
  "references": [
4808
4814
  {
4809
4815
  "name": "Documentation",
4810
- "url": "https://shoelace.style/components/icon-computer-line"
4816
+ "url": "https://shoelace.style/components/icon-home-6-line"
4811
4817
  }
4812
4818
  ]
4813
4819
  },
4814
4820
  {
4815
- "name": "dap-ds-icon-separator",
4821
+ "name": "dap-ds-icon-calendar-line",
4816
4822
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4817
4823
  "attributes": [
4818
4824
  {
@@ -4839,12 +4845,12 @@
4839
4845
  "references": [
4840
4846
  {
4841
4847
  "name": "Documentation",
4842
- "url": "https://shoelace.style/components/icon-separator"
4848
+ "url": "https://shoelace.style/components/icon-calendar-line"
4843
4849
  }
4844
4850
  ]
4845
4851
  },
4846
4852
  {
4847
- "name": "dap-ds-icon-clipboard-line",
4853
+ "name": "dap-ds-icon-edit-line",
4848
4854
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4849
4855
  "attributes": [
4850
4856
  {
@@ -4871,12 +4877,12 @@
4871
4877
  "references": [
4872
4878
  {
4873
4879
  "name": "Documentation",
4874
- "url": "https://shoelace.style/components/icon-clipboard-line"
4880
+ "url": "https://shoelace.style/components/icon-edit-line"
4875
4881
  }
4876
4882
  ]
4877
4883
  },
4878
4884
  {
4879
- "name": "dap-ds-icon-file-copy-line",
4885
+ "name": "dap-ds-icon-tools-line",
4880
4886
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4881
4887
  "attributes": [
4882
4888
  {
@@ -4903,12 +4909,12 @@
4903
4909
  "references": [
4904
4910
  {
4905
4911
  "name": "Documentation",
4906
- "url": "https://shoelace.style/components/icon-file-copy-line"
4912
+ "url": "https://shoelace.style/components/icon-tools-line"
4907
4913
  }
4908
4914
  ]
4909
4915
  },
4910
4916
  {
4911
- "name": "dap-ds-icon-file-image-line",
4917
+ "name": "dap-ds-icon-computer-line",
4912
4918
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4913
4919
  "attributes": [
4914
4920
  {
@@ -4935,12 +4941,12 @@
4935
4941
  "references": [
4936
4942
  {
4937
4943
  "name": "Documentation",
4938
- "url": "https://shoelace.style/components/icon-file-image-line"
4944
+ "url": "https://shoelace.style/components/icon-computer-line"
4939
4945
  }
4940
4946
  ]
4941
4947
  },
4942
4948
  {
4943
- "name": "dap-ds-icon-file-music-line",
4949
+ "name": "dap-ds-icon-clipboard-line",
4944
4950
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4945
4951
  "attributes": [
4946
4952
  {
@@ -4967,12 +4973,12 @@
4967
4973
  "references": [
4968
4974
  {
4969
4975
  "name": "Documentation",
4970
- "url": "https://shoelace.style/components/icon-file-music-line"
4976
+ "url": "https://shoelace.style/components/icon-clipboard-line"
4971
4977
  }
4972
4978
  ]
4973
4979
  },
4974
4980
  {
4975
- "name": "dap-ds-icon-file-text-line",
4981
+ "name": "dap-ds-icon-file-copy-line",
4976
4982
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
4977
4983
  "attributes": [
4978
4984
  {
@@ -4999,12 +5005,12 @@
4999
5005
  "references": [
5000
5006
  {
5001
5007
  "name": "Documentation",
5002
- "url": "https://shoelace.style/components/icon-file-text-line"
5008
+ "url": "https://shoelace.style/components/icon-file-copy-line"
5003
5009
  }
5004
5010
  ]
5005
5011
  },
5006
5012
  {
5007
- "name": "dap-ds-icon-file-video-line",
5013
+ "name": "dap-ds-icon-file-music-line",
5008
5014
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5009
5015
  "attributes": [
5010
5016
  {
@@ -5031,12 +5037,12 @@
5031
5037
  "references": [
5032
5038
  {
5033
5039
  "name": "Documentation",
5034
- "url": "https://shoelace.style/components/icon-file-video-line"
5040
+ "url": "https://shoelace.style/components/icon-file-music-line"
5035
5041
  }
5036
5042
  ]
5037
5043
  },
5038
5044
  {
5039
- "name": "dap-ds-icon-folder-line",
5045
+ "name": "dap-ds-icon-file-image-line",
5040
5046
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5041
5047
  "attributes": [
5042
5048
  {
@@ -5063,12 +5069,12 @@
5063
5069
  "references": [
5064
5070
  {
5065
5071
  "name": "Documentation",
5066
- "url": "https://shoelace.style/components/icon-folder-line"
5072
+ "url": "https://shoelace.style/components/icon-file-image-line"
5067
5073
  }
5068
5074
  ]
5069
5075
  },
5070
5076
  {
5071
- "name": "dap-ds-icon-folder-open-line",
5077
+ "name": "dap-ds-icon-file-text-line",
5072
5078
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5073
5079
  "attributes": [
5074
5080
  {
@@ -5095,12 +5101,12 @@
5095
5101
  "references": [
5096
5102
  {
5097
5103
  "name": "Documentation",
5098
- "url": "https://shoelace.style/components/icon-folder-open-line"
5104
+ "url": "https://shoelace.style/components/icon-file-text-line"
5099
5105
  }
5100
5106
  ]
5101
5107
  },
5102
5108
  {
5103
- "name": "dap-ds-icon-heart-fill",
5109
+ "name": "dap-ds-icon-file-video-line",
5104
5110
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5105
5111
  "attributes": [
5106
5112
  {
@@ -5127,12 +5133,12 @@
5127
5133
  "references": [
5128
5134
  {
5129
5135
  "name": "Documentation",
5130
- "url": "https://shoelace.style/components/icon-heart-fill"
5136
+ "url": "https://shoelace.style/components/icon-file-video-line"
5131
5137
  }
5132
5138
  ]
5133
5139
  },
5134
5140
  {
5135
- "name": "dap-ds-icon-heart-line",
5141
+ "name": "dap-ds-icon-folder-line",
5136
5142
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5137
5143
  "attributes": [
5138
5144
  {
@@ -5159,12 +5165,12 @@
5159
5165
  "references": [
5160
5166
  {
5161
5167
  "name": "Documentation",
5162
- "url": "https://shoelace.style/components/icon-heart-line"
5168
+ "url": "https://shoelace.style/components/icon-folder-line"
5163
5169
  }
5164
5170
  ]
5165
5171
  },
5166
5172
  {
5167
- "name": "dap-ds-icon-cookie-line",
5173
+ "name": "dap-ds-icon-folder-open-line",
5168
5174
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5169
5175
  "attributes": [
5170
5176
  {
@@ -5191,12 +5197,12 @@
5191
5197
  "references": [
5192
5198
  {
5193
5199
  "name": "Documentation",
5194
- "url": "https://shoelace.style/components/icon-cookie-line"
5200
+ "url": "https://shoelace.style/components/icon-folder-open-line"
5195
5201
  }
5196
5202
  ]
5197
5203
  },
5198
5204
  {
5199
- "name": "dap-ds-icon-account-circle-fill",
5205
+ "name": "dap-ds-icon-separator",
5200
5206
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5201
5207
  "attributes": [
5202
5208
  {
@@ -5223,12 +5229,12 @@
5223
5229
  "references": [
5224
5230
  {
5225
5231
  "name": "Documentation",
5226
- "url": "https://shoelace.style/components/icon-account-circle-fill"
5232
+ "url": "https://shoelace.style/components/icon-separator"
5227
5233
  }
5228
5234
  ]
5229
5235
  },
5230
5236
  {
5231
- "name": "dap-ds-icon-account-circle-line",
5237
+ "name": "dap-ds-icon-heart-fill",
5232
5238
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5233
5239
  "attributes": [
5234
5240
  {
@@ -5255,12 +5261,12 @@
5255
5261
  "references": [
5256
5262
  {
5257
5263
  "name": "Documentation",
5258
- "url": "https://shoelace.style/components/icon-account-circle-line"
5264
+ "url": "https://shoelace.style/components/icon-heart-fill"
5259
5265
  }
5260
5266
  ]
5261
5267
  },
5262
5268
  {
5263
- "name": "dap-ds-icon-user-fill",
5269
+ "name": "dap-ds-icon-heart-line",
5264
5270
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5265
5271
  "attributes": [
5266
5272
  {
@@ -5287,12 +5293,12 @@
5287
5293
  "references": [
5288
5294
  {
5289
5295
  "name": "Documentation",
5290
- "url": "https://shoelace.style/components/icon-user-fill"
5296
+ "url": "https://shoelace.style/components/icon-heart-line"
5291
5297
  }
5292
5298
  ]
5293
5299
  },
5294
5300
  {
5295
- "name": "dap-ds-icon-user-line",
5301
+ "name": "dap-ds-icon-cookie-line",
5296
5302
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5297
5303
  "attributes": [
5298
5304
  {
@@ -5319,7 +5325,7 @@
5319
5325
  "references": [
5320
5326
  {
5321
5327
  "name": "Documentation",
5322
- "url": "https://shoelace.style/components/icon-user-line"
5328
+ "url": "https://shoelace.style/components/icon-cookie-line"
5323
5329
  }
5324
5330
  ]
5325
5331
  },
@@ -6858,6 +6864,134 @@
6858
6864
  "url": "https://shoelace.style/components/icon-zoom-out-line"
6859
6865
  }
6860
6866
  ]
6867
+ },
6868
+ {
6869
+ "name": "dap-ds-icon-account-circle-fill",
6870
+ "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6871
+ "attributes": [
6872
+ {
6873
+ "name": "size",
6874
+ "description": "(optional) The width and height in pixels",
6875
+ "values": []
6876
+ },
6877
+ {
6878
+ "name": "selected",
6879
+ "description": "(optional) Sets the icon color via the `fill` attribute",
6880
+ "values": []
6881
+ },
6882
+ {
6883
+ "name": "accessibilityTitle",
6884
+ "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
6885
+ "values": []
6886
+ },
6887
+ {
6888
+ "name": "focusable",
6889
+ "description": "(optional) If `true` the icon can receive focus",
6890
+ "values": []
6891
+ }
6892
+ ],
6893
+ "references": [
6894
+ {
6895
+ "name": "Documentation",
6896
+ "url": "https://shoelace.style/components/icon-account-circle-fill"
6897
+ }
6898
+ ]
6899
+ },
6900
+ {
6901
+ "name": "dap-ds-icon-account-circle-line",
6902
+ "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6903
+ "attributes": [
6904
+ {
6905
+ "name": "size",
6906
+ "description": "(optional) The width and height in pixels",
6907
+ "values": []
6908
+ },
6909
+ {
6910
+ "name": "selected",
6911
+ "description": "(optional) Sets the icon color via the `fill` attribute",
6912
+ "values": []
6913
+ },
6914
+ {
6915
+ "name": "accessibilityTitle",
6916
+ "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
6917
+ "values": []
6918
+ },
6919
+ {
6920
+ "name": "focusable",
6921
+ "description": "(optional) If `true` the icon can receive focus",
6922
+ "values": []
6923
+ }
6924
+ ],
6925
+ "references": [
6926
+ {
6927
+ "name": "Documentation",
6928
+ "url": "https://shoelace.style/components/icon-account-circle-line"
6929
+ }
6930
+ ]
6931
+ },
6932
+ {
6933
+ "name": "dap-ds-icon-user-fill",
6934
+ "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6935
+ "attributes": [
6936
+ {
6937
+ "name": "size",
6938
+ "description": "(optional) The width and height in pixels",
6939
+ "values": []
6940
+ },
6941
+ {
6942
+ "name": "selected",
6943
+ "description": "(optional) Sets the icon color via the `fill` attribute",
6944
+ "values": []
6945
+ },
6946
+ {
6947
+ "name": "accessibilityTitle",
6948
+ "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
6949
+ "values": []
6950
+ },
6951
+ {
6952
+ "name": "focusable",
6953
+ "description": "(optional) If `true` the icon can receive focus",
6954
+ "values": []
6955
+ }
6956
+ ],
6957
+ "references": [
6958
+ {
6959
+ "name": "Documentation",
6960
+ "url": "https://shoelace.style/components/icon-user-fill"
6961
+ }
6962
+ ]
6963
+ },
6964
+ {
6965
+ "name": "dap-ds-icon-user-line",
6966
+ "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6967
+ "attributes": [
6968
+ {
6969
+ "name": "size",
6970
+ "description": "(optional) The width and height in pixels",
6971
+ "values": []
6972
+ },
6973
+ {
6974
+ "name": "selected",
6975
+ "description": "(optional) Sets the icon color via the `fill` attribute",
6976
+ "values": []
6977
+ },
6978
+ {
6979
+ "name": "accessibilityTitle",
6980
+ "description": "(optional) When using the icon standalone, make it meaningful for accessibility",
6981
+ "values": []
6982
+ },
6983
+ {
6984
+ "name": "focusable",
6985
+ "description": "(optional) If `true` the icon can receive focus",
6986
+ "values": []
6987
+ }
6988
+ ],
6989
+ "references": [
6990
+ {
6991
+ "name": "Documentation",
6992
+ "url": "https://shoelace.style/components/icon-user-line"
6993
+ }
6994
+ ]
6861
6995
  }
6862
6996
  ]
6863
6997
  }