dap-design-system 0.57.3 → 0.57.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,114 +14,66 @@
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-anchor-heading",
18
+ "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.",
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": []
21
+ "name": "variant",
22
+ "description": "The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`.",
23
+ "values": [{ "name": "HeadingVariant" }]
39
24
  },
40
25
  {
41
26
  "name": "label",
42
- "description": "Accessible label for the avatar group",
43
- "values": []
44
- },
45
- {
46
- "name": "overflow-label",
47
- "description": "Accessible label for the overflow indicator",
27
+ "description": "The label of the heading.",
48
28
  "values": []
49
29
  }
50
30
  ],
51
31
  "references": [
52
32
  {
53
33
  "name": "Documentation",
54
- "url": "https://shoelace.style/components/avatar-group"
34
+ "url": "https://shoelace.style/components/anchor-heading"
55
35
  }
56
36
  ]
57
37
  },
58
38
  {
59
- "name": "dap-ds-avatar",
60
- "description": "Avatar component can be used to display user profile images, initials, or icons.\n---\n\n\n### **Events:**\n - **dds-load** - Fired when the image loads successfully.\n- **dds-error** - Fired when the image fails to load.\n\n### **Slots:**\n - **icon** - The icon to display when variant is 'icon'.\n- **fallback** - Custom fallback content when image fails to load.\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar (default: 50%) _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar (default: var(--dds-neutral-200)) _(default: undefined)_\n- **--dds-avatar-border-width** - The border width of the avatar (default: 0) _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border (default: transparent) _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border (default: solid) _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-avatar-text-color** - The text color for initials (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-avatar-font-weight** - The font weight for initials (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-avatar-lg-size** - Size for large avatars (default: var(--dds-avatar-size-lg)) _(default: undefined)_\n- **--dds-avatar-md-size** - Size for medium avatars (default: var(--dds-avatar-size-md)) _(default: undefined)_\n- **--dds-avatar-sm-size** - Size for small avatars (default: var(--dds-avatar-size-sm)) _(default: undefined)_\n- **--dds-avatar-xs-size** - Size for extra small avatars (default: var(--dds-avatar-size-xs)) _(default: undefined)_\n- **--dds-avatar-xxs-size** - Size for extra extra small avatars (default: var(--dds-avatar-size-xxs)) _(default: undefined)_\n- **--dds-avatar-font-size-lg** - Font size for large avatars (default: var(--dds-font-2xl)) _(default: undefined)_\n- **--dds-avatar-font-size-md** - Font size for medium avatars (default: var(--dds-font-lg)) _(default: undefined)_\n- **--dds-avatar-font-size-sm** - Font size for small avatars (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-avatar-font-size-xs** - Font size for extra small avatars (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-avatar-font-size-xxs** - Font size for extra extra small avatars (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-avatar-hover-transform** - Transform applied on hover for interactive avatars (default: scale(1.05)) _(default: undefined)_\n- **--dds-avatar-active-transform** - Transform applied when active for interactive avatars (default: scale(0.95)) _(default: undefined)_\n- **--dds-avatar-focus-ring** - Focus ring style for interactive avatars (default: 0 0 0 2px var(--dds-focus-outer-ring)) _(default: undefined)_\n- **--dds-avatar-loading-background** - Background color when loading (default: var(--dds-neutral-100)) _(default: undefined)_\n- **--dds-avatar-error-background** - Background color when image fails to load (default: var(--dds-negative-100)) _(default: undefined)_\n- **--dds-avatar-error-color** - Text color when image fails to load (default: var(--dds-negative-600)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar container.\n- **img** - The avatar image.\n- **initials** - The initials container.\n- **icon** - The icon container.\n- **fallback** - The fallback content container.\n- **loading** - The loading indicator.",
39
+ "name": "dap-ds-avatar-group",
40
+ "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.",
61
41
  "attributes": [
62
42
  {
63
- "name": "shape",
64
- "description": "The shape of the avatar",
65
- "values": [
66
- { "name": "circle" },
67
- { "name": "rounded" },
68
- { "name": "square" }
69
- ]
70
- },
71
- {
72
- "name": "variant",
73
- "description": "The variant type of the avatar",
74
- "values": [
75
- { "name": "image" },
76
- { "name": "initials" },
77
- { "name": "icon" }
78
- ]
43
+ "name": "layout",
44
+ "description": "Layout type for the avatar group",
45
+ "values": [{ "name": "stack" }, { "name": "grid" }]
79
46
  },
80
47
  {
81
- "name": "src",
82
- "description": "The source of the avatar image",
48
+ "name": "max",
49
+ "description": "Maximum number of avatars to show before showing overflow",
83
50
  "values": []
84
51
  },
85
52
  {
86
- "name": "alt",
87
- "description": "The alt text of the avatar",
53
+ "name": "show-total",
54
+ "description": "Whether to show the total count in overflow indicator",
88
55
  "values": []
89
56
  },
90
57
  {
91
- "name": "initials",
92
- "description": "The initials to display when variant is 'initials'",
58
+ "name": "interactive-overflow",
59
+ "description": "Interactive overflow indicator",
93
60
  "values": []
94
61
  },
95
62
  {
96
63
  "name": "label",
97
- "description": "Accessible label for the avatar",
98
- "values": []
99
- },
100
- {
101
- "name": "loading",
102
- "description": "Loading state indicator",
103
- "values": []
104
- },
105
- {
106
- "name": "interactive",
107
- "description": "Whether the avatar is interactive (clickable)",
108
- "values": []
109
- },
110
- {
111
- "name": "width",
112
- "description": "The width of the avatar. This will override the size",
64
+ "description": "Accessible label for the avatar group",
113
65
  "values": []
114
66
  },
115
67
  {
116
- "name": "height",
117
- "description": "The height of the avatar. This will override the size",
68
+ "name": "overflow-label",
69
+ "description": "Accessible label for the overflow indicator",
118
70
  "values": []
119
71
  }
120
72
  ],
121
73
  "references": [
122
74
  {
123
75
  "name": "Documentation",
124
- "url": "https://shoelace.style/components/avatar"
76
+ "url": "https://shoelace.style/components/avatar-group"
125
77
  }
126
78
  ]
127
79
  },
@@ -159,6 +111,33 @@
159
111
  }
160
112
  ]
161
113
  },
114
+ {
115
+ "name": "dap-ds-accordion-group",
116
+ "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.",
117
+ "attributes": [
118
+ {
119
+ "name": "autoClose",
120
+ "description": "Whether to close other accordions when one is opened.",
121
+ "values": []
122
+ },
123
+ {
124
+ "name": "variant",
125
+ "description": "The variant of the accordion",
126
+ "values": [
127
+ { "name": "default" },
128
+ { "name": "collapsed" },
129
+ { "name": "clean" },
130
+ { "name": "clean-collapsed" }
131
+ ]
132
+ }
133
+ ],
134
+ "references": [
135
+ {
136
+ "name": "Documentation",
137
+ "url": "https://shoelace.style/components/accordion-group"
138
+ }
139
+ ]
140
+ },
162
141
  {
163
142
  "name": "dap-ds-banner",
164
143
  "description": "A banner is a message displayed at the top of the page to provide important information to the user.\n---\n\n\n### **Events:**\n - **dds-close** - Event fired when the banner is closed.\n\n### **Slots:**\n - _default_ - The content of the banner.\n- **actions** - Actions of banner\n- **icon** - The icon of the banner.\n\n### **CSS Properties:**\n - **--dds-banner-gap** - The gap between banner elements (default: var(--dds-spacing-200)) _(default: undefined)_\n- **--dds-banner-line-height** - The line height of the banner text (default: var(--dds-font-line-height-xlarge)) _(default: undefined)_\n- **--dds-banner-transition** - The transition property for the banner (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-banner-brand-background** - The background color of the brand banner (default: var(--dds-banner-background-brand)) _(default: undefined)_\n- **--dds-banner-brand-icon-color** - The color of the brand banner icon (default: var(--dds-banner-icon-brand)) _(default: undefined)_\n- **--dds-banner-brand-text-color** - The text color of the brand banner (default: var(--dds-banner-text-brand)) _(default: undefined)_\n- **--dds-banner-brand-action-color** - The color of the brand banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-info-background** - The background color of the info banner (default: var(--dds-banner-background-informative)) _(default: undefined)_\n- **--dds-banner-info-icon-color** - The color of the info banner icon (default: var(--dds-banner-icon-informative)) _(default: undefined)_\n- **--dds-banner-info-text-color** - The text color of the info banner (default: var(--dds-banner-text-informative)) _(default: undefined)_\n- **--dds-banner-info-action-color** - The color of the info banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-positive-background** - The background color of the positive banner (default: var(--dds-banner-background-positive)) _(default: undefined)_\n- **--dds-banner-positive-icon-color** - The color of the positive banner icon (default: var(--dds-banner-icon-positive)) _(default: undefined)_\n- **--dds-banner-positive-text-color** - The text color of the positive banner (default: var(--dds-banner-text-positive)) _(default: undefined)_\n- **--dds-banner-positive-action-color** - The color of the positive banner actions (default: var(--dds-banner-action-enabled)) _(default: undefined)_\n- **--dds-banner-warning-background** - The background color of the warning banner (default: var(--dds-banner-background-warning)) _(default: undefined)_\n- **--dds-banner-warning-icon-color** - The color of the warning banner icon (default: var(--dds-banner-icon-warning)) _(default: undefined)_\n- **--dds-banner-warning-text-color** - The text color of the warning banner (default: var(--dds-banner-text-warning)) _(default: undefined)_\n- **--dds-banner-warning-action-color** - The color of the warning banner actions (default: var(--dds-banner-action-inverted-enabled)) _(default: undefined)_\n- **--dds-banner-negative-background** - The background color of the negative banner (default: var(--dds-banner-background-negative)) _(default: undefined)_\n- **--dds-banner-negative-icon-color** - The color of the negative banner icon (default: var(--dds-banner-icon-negative)) _(default: undefined)_\n- **--dds-banner-negative-text-color** - The text color of the negative banner (default: var(--dds-banner-text-negative)) _(default: undefined)_\n- **--dds-banner-negative-action-color** - The color of the negative banner actions (default: var(--dds-banner-action-inverted-enabled)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main banner container.\n- **card-base** - The wrapper card container.\n- **icon** - The icon of the banner.\n- **icon-element** - The icon element of the banner.\n- **icon-base** - The base of the icon.\n- **closebutton** - The close button of the banner.\n- **close-icon-element** - The icon element of the close button.\n- **close-icon-base** - The base of the close button icon.\n- **actions** - The actions of the banner.\n- **title** - The title of the banner.",
@@ -203,29 +182,72 @@
203
182
  ]
204
183
  },
205
184
  {
206
- "name": "dap-ds-accordion-group",
207
- "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.",
185
+ "name": "dap-ds-avatar",
186
+ "description": "Avatar component can be used to display user profile images, initials, or icons.\n---\n\n\n### **Events:**\n - **dds-load** - Fired when the image loads successfully.\n- **dds-error** - Fired when the image fails to load.\n\n### **Slots:**\n - **icon** - The icon to display when variant is 'icon'.\n- **fallback** - Custom fallback content when image fails to load.\n\n### **CSS Properties:**\n - **--dds-avatar-border-radius** - The border radius of the avatar (default: 50%) _(default: undefined)_\n- **--dds-avatar-background-color** - The background color of the avatar (default: var(--dds-neutral-200)) _(default: undefined)_\n- **--dds-avatar-border-width** - The border width of the avatar (default: 0) _(default: undefined)_\n- **--dds-avatar-border-color** - The color of the avatar's border (default: transparent) _(default: undefined)_\n- **--dds-avatar-border-style** - The style of the avatar's border (default: solid) _(default: undefined)_\n- **--dds-avatar-transition** - The transition property for the avatar (default: all 0.2s ease-in-out) _(default: undefined)_\n- **--dds-avatar-text-color** - The text color for initials (default: var(--dds-text-neutral-strong)) _(default: undefined)_\n- **--dds-avatar-font-weight** - The font weight for initials (default: var(--dds-font-weight-bold)) _(default: undefined)_\n- **--dds-avatar-lg-size** - Size for large avatars (default: var(--dds-avatar-size-lg)) _(default: undefined)_\n- **--dds-avatar-md-size** - Size for medium avatars (default: var(--dds-avatar-size-md)) _(default: undefined)_\n- **--dds-avatar-sm-size** - Size for small avatars (default: var(--dds-avatar-size-sm)) _(default: undefined)_\n- **--dds-avatar-xs-size** - Size for extra small avatars (default: var(--dds-avatar-size-xs)) _(default: undefined)_\n- **--dds-avatar-xxs-size** - Size for extra extra small avatars (default: var(--dds-avatar-size-xxs)) _(default: undefined)_\n- **--dds-avatar-font-size-lg** - Font size for large avatars (default: var(--dds-font-2xl)) _(default: undefined)_\n- **--dds-avatar-font-size-md** - Font size for medium avatars (default: var(--dds-font-lg)) _(default: undefined)_\n- **--dds-avatar-font-size-sm** - Font size for small avatars (default: var(--dds-font-base)) _(default: undefined)_\n- **--dds-avatar-font-size-xs** - Font size for extra small avatars (default: var(--dds-font-sm)) _(default: undefined)_\n- **--dds-avatar-font-size-xxs** - Font size for extra extra small avatars (default: var(--dds-font-xs)) _(default: undefined)_\n- **--dds-avatar-hover-transform** - Transform applied on hover for interactive avatars (default: scale(1.05)) _(default: undefined)_\n- **--dds-avatar-active-transform** - Transform applied when active for interactive avatars (default: scale(0.95)) _(default: undefined)_\n- **--dds-avatar-focus-ring** - Focus ring style for interactive avatars (default: 0 0 0 2px var(--dds-focus-outer-ring)) _(default: undefined)_\n- **--dds-avatar-loading-background** - Background color when loading (default: var(--dds-neutral-100)) _(default: undefined)_\n- **--dds-avatar-error-background** - Background color when image fails to load (default: var(--dds-negative-100)) _(default: undefined)_\n- **--dds-avatar-error-color** - Text color when image fails to load (default: var(--dds-negative-600)) _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The main avatar container.\n- **img** - The avatar image.\n- **initials** - The initials container.\n- **icon** - The icon container.\n- **fallback** - The fallback content container.\n- **loading** - The loading indicator.",
208
187
  "attributes": [
209
188
  {
210
- "name": "autoClose",
211
- "description": "Whether to close other accordions when one is opened.",
212
- "values": []
189
+ "name": "shape",
190
+ "description": "The shape of the avatar",
191
+ "values": [
192
+ { "name": "circle" },
193
+ { "name": "rounded" },
194
+ { "name": "square" }
195
+ ]
213
196
  },
214
197
  {
215
198
  "name": "variant",
216
- "description": "The variant of the accordion",
199
+ "description": "The variant type of the avatar",
217
200
  "values": [
218
- { "name": "default" },
219
- { "name": "collapsed" },
220
- { "name": "clean" },
221
- { "name": "clean-collapsed" }
201
+ { "name": "image" },
202
+ { "name": "initials" },
203
+ { "name": "icon" }
222
204
  ]
205
+ },
206
+ {
207
+ "name": "src",
208
+ "description": "The source of the avatar image",
209
+ "values": []
210
+ },
211
+ {
212
+ "name": "alt",
213
+ "description": "The alt text of the avatar",
214
+ "values": []
215
+ },
216
+ {
217
+ "name": "initials",
218
+ "description": "The initials to display when variant is 'initials'",
219
+ "values": []
220
+ },
221
+ {
222
+ "name": "label",
223
+ "description": "Accessible label for the avatar",
224
+ "values": []
225
+ },
226
+ {
227
+ "name": "loading",
228
+ "description": "Loading state indicator",
229
+ "values": []
230
+ },
231
+ {
232
+ "name": "interactive",
233
+ "description": "Whether the avatar is interactive (clickable)",
234
+ "values": []
235
+ },
236
+ {
237
+ "name": "width",
238
+ "description": "The width of the avatar. This will override the size",
239
+ "values": []
240
+ },
241
+ {
242
+ "name": "height",
243
+ "description": "The height of the avatar. This will override the size",
244
+ "values": []
223
245
  }
224
246
  ],
225
247
  "references": [
226
248
  {
227
249
  "name": "Documentation",
228
- "url": "https://shoelace.style/components/accordion-group"
250
+ "url": "https://shoelace.style/components/avatar"
229
251
  }
230
252
  ]
231
253
  },
@@ -252,28 +274,6 @@
252
274
  }
253
275
  ]
254
276
  },
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": [
259
- {
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" }]
263
- },
264
- {
265
- "name": "label",
266
- "description": "The label of the heading.",
267
- "values": []
268
- }
269
- ],
270
- "references": [
271
- {
272
- "name": "Documentation",
273
- "url": "https://shoelace.style/components/anchor-heading"
274
- }
275
- ]
276
- },
277
277
  {
278
278
  "name": "dap-ds-breadcrumb-item",
279
279
  "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.",
@@ -5184,7 +5184,7 @@
5184
5184
  ]
5185
5185
  },
5186
5186
  {
5187
- "name": "dap-ds-icon-account-circle-fill",
5187
+ "name": "dap-ds-icon-add-line",
5188
5188
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5189
5189
  "attributes": [
5190
5190
  {
@@ -5211,12 +5211,12 @@
5211
5211
  "references": [
5212
5212
  {
5213
5213
  "name": "Documentation",
5214
- "url": "https://shoelace.style/components/icon-account-circle-fill"
5214
+ "url": "https://shoelace.style/components/icon-add-line"
5215
5215
  }
5216
5216
  ]
5217
5217
  },
5218
5218
  {
5219
- "name": "dap-ds-icon-account-circle-line",
5219
+ "name": "dap-ds-icon-alert-fill",
5220
5220
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5221
5221
  "attributes": [
5222
5222
  {
@@ -5243,12 +5243,12 @@
5243
5243
  "references": [
5244
5244
  {
5245
5245
  "name": "Documentation",
5246
- "url": "https://shoelace.style/components/icon-account-circle-line"
5246
+ "url": "https://shoelace.style/components/icon-alert-fill"
5247
5247
  }
5248
5248
  ]
5249
5249
  },
5250
5250
  {
5251
- "name": "dap-ds-icon-user-fill",
5251
+ "name": "dap-ds-icon-alert-line",
5252
5252
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5253
5253
  "attributes": [
5254
5254
  {
@@ -5275,12 +5275,12 @@
5275
5275
  "references": [
5276
5276
  {
5277
5277
  "name": "Documentation",
5278
- "url": "https://shoelace.style/components/icon-user-fill"
5278
+ "url": "https://shoelace.style/components/icon-alert-line"
5279
5279
  }
5280
5280
  ]
5281
5281
  },
5282
5282
  {
5283
- "name": "dap-ds-icon-user-line",
5283
+ "name": "dap-ds-icon-check-line",
5284
5284
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5285
5285
  "attributes": [
5286
5286
  {
@@ -5307,12 +5307,12 @@
5307
5307
  "references": [
5308
5308
  {
5309
5309
  "name": "Documentation",
5310
- "url": "https://shoelace.style/components/icon-user-line"
5310
+ "url": "https://shoelace.style/components/icon-check-line"
5311
5311
  }
5312
5312
  ]
5313
5313
  },
5314
5314
  {
5315
- "name": "dap-ds-icon-add-line",
5315
+ "name": "dap-ds-icon-check-line2",
5316
5316
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5317
5317
  "attributes": [
5318
5318
  {
@@ -5339,12 +5339,12 @@
5339
5339
  "references": [
5340
5340
  {
5341
5341
  "name": "Documentation",
5342
- "url": "https://shoelace.style/components/icon-add-line"
5342
+ "url": "https://shoelace.style/components/icon-check-line2"
5343
5343
  }
5344
5344
  ]
5345
5345
  },
5346
5346
  {
5347
- "name": "dap-ds-icon-alert-fill",
5347
+ "name": "dap-ds-icon-checkbox-blank-circle-fill",
5348
5348
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5349
5349
  "attributes": [
5350
5350
  {
@@ -5371,12 +5371,12 @@
5371
5371
  "references": [
5372
5372
  {
5373
5373
  "name": "Documentation",
5374
- "url": "https://shoelace.style/components/icon-alert-fill"
5374
+ "url": "https://shoelace.style/components/icon-checkbox-blank-circle-fill"
5375
5375
  }
5376
5376
  ]
5377
5377
  },
5378
5378
  {
5379
- "name": "dap-ds-icon-alert-line",
5379
+ "name": "dap-ds-icon-checkbox-blank-circle-fill-check",
5380
5380
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5381
5381
  "attributes": [
5382
5382
  {
@@ -5403,12 +5403,12 @@
5403
5403
  "references": [
5404
5404
  {
5405
5405
  "name": "Documentation",
5406
- "url": "https://shoelace.style/components/icon-alert-line"
5406
+ "url": "https://shoelace.style/components/icon-checkbox-blank-circle-fill-check"
5407
5407
  }
5408
5408
  ]
5409
5409
  },
5410
5410
  {
5411
- "name": "dap-ds-icon-check-line",
5411
+ "name": "dap-ds-icon-checkbox-blank-circle-line",
5412
5412
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5413
5413
  "attributes": [
5414
5414
  {
@@ -5435,12 +5435,12 @@
5435
5435
  "references": [
5436
5436
  {
5437
5437
  "name": "Documentation",
5438
- "url": "https://shoelace.style/components/icon-check-line"
5438
+ "url": "https://shoelace.style/components/icon-checkbox-blank-circle-line"
5439
5439
  }
5440
5440
  ]
5441
5441
  },
5442
5442
  {
5443
- "name": "dap-ds-icon-check-line2",
5443
+ "name": "dap-ds-icon-checkbox-circle-fill",
5444
5444
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5445
5445
  "attributes": [
5446
5446
  {
@@ -5467,12 +5467,12 @@
5467
5467
  "references": [
5468
5468
  {
5469
5469
  "name": "Documentation",
5470
- "url": "https://shoelace.style/components/icon-check-line2"
5470
+ "url": "https://shoelace.style/components/icon-checkbox-circle-fill"
5471
5471
  }
5472
5472
  ]
5473
5473
  },
5474
5474
  {
5475
- "name": "dap-ds-icon-checkbox-blank-circle-fill",
5475
+ "name": "dap-ds-icon-checkbox-circle-line",
5476
5476
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5477
5477
  "attributes": [
5478
5478
  {
@@ -5499,12 +5499,12 @@
5499
5499
  "references": [
5500
5500
  {
5501
5501
  "name": "Documentation",
5502
- "url": "https://shoelace.style/components/icon-checkbox-blank-circle-fill"
5502
+ "url": "https://shoelace.style/components/icon-checkbox-circle-line"
5503
5503
  }
5504
5504
  ]
5505
5505
  },
5506
5506
  {
5507
- "name": "dap-ds-icon-checkbox-blank-circle-fill-check",
5507
+ "name": "dap-ds-icon-close-circle-fill",
5508
5508
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5509
5509
  "attributes": [
5510
5510
  {
@@ -5531,12 +5531,12 @@
5531
5531
  "references": [
5532
5532
  {
5533
5533
  "name": "Documentation",
5534
- "url": "https://shoelace.style/components/icon-checkbox-blank-circle-fill-check"
5534
+ "url": "https://shoelace.style/components/icon-close-circle-fill"
5535
5535
  }
5536
5536
  ]
5537
5537
  },
5538
5538
  {
5539
- "name": "dap-ds-icon-checkbox-blank-circle-line",
5539
+ "name": "dap-ds-icon-close-circle-line",
5540
5540
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5541
5541
  "attributes": [
5542
5542
  {
@@ -5563,12 +5563,12 @@
5563
5563
  "references": [
5564
5564
  {
5565
5565
  "name": "Documentation",
5566
- "url": "https://shoelace.style/components/icon-checkbox-blank-circle-line"
5566
+ "url": "https://shoelace.style/components/icon-close-circle-line"
5567
5567
  }
5568
5568
  ]
5569
5569
  },
5570
5570
  {
5571
- "name": "dap-ds-icon-checkbox-circle-fill",
5571
+ "name": "dap-ds-icon-close-fill",
5572
5572
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5573
5573
  "attributes": [
5574
5574
  {
@@ -5595,12 +5595,12 @@
5595
5595
  "references": [
5596
5596
  {
5597
5597
  "name": "Documentation",
5598
- "url": "https://shoelace.style/components/icon-checkbox-circle-fill"
5598
+ "url": "https://shoelace.style/components/icon-close-fill"
5599
5599
  }
5600
5600
  ]
5601
5601
  },
5602
5602
  {
5603
- "name": "dap-ds-icon-checkbox-circle-line",
5603
+ "name": "dap-ds-icon-close-line",
5604
5604
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5605
5605
  "attributes": [
5606
5606
  {
@@ -5627,12 +5627,12 @@
5627
5627
  "references": [
5628
5628
  {
5629
5629
  "name": "Documentation",
5630
- "url": "https://shoelace.style/components/icon-checkbox-circle-line"
5630
+ "url": "https://shoelace.style/components/icon-close-line"
5631
5631
  }
5632
5632
  ]
5633
5633
  },
5634
5634
  {
5635
- "name": "dap-ds-icon-close-circle-fill",
5635
+ "name": "dap-ds-icon-delete-bin-fill",
5636
5636
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5637
5637
  "attributes": [
5638
5638
  {
@@ -5659,12 +5659,12 @@
5659
5659
  "references": [
5660
5660
  {
5661
5661
  "name": "Documentation",
5662
- "url": "https://shoelace.style/components/icon-close-circle-fill"
5662
+ "url": "https://shoelace.style/components/icon-delete-bin-fill"
5663
5663
  }
5664
5664
  ]
5665
5665
  },
5666
5666
  {
5667
- "name": "dap-ds-icon-close-circle-line",
5667
+ "name": "dap-ds-icon-delete-bin-line",
5668
5668
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5669
5669
  "attributes": [
5670
5670
  {
@@ -5691,12 +5691,12 @@
5691
5691
  "references": [
5692
5692
  {
5693
5693
  "name": "Documentation",
5694
- "url": "https://shoelace.style/components/icon-close-circle-line"
5694
+ "url": "https://shoelace.style/components/icon-delete-bin-line"
5695
5695
  }
5696
5696
  ]
5697
5697
  },
5698
5698
  {
5699
- "name": "dap-ds-icon-close-fill",
5699
+ "name": "dap-ds-icon-download-line",
5700
5700
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5701
5701
  "attributes": [
5702
5702
  {
@@ -5723,12 +5723,12 @@
5723
5723
  "references": [
5724
5724
  {
5725
5725
  "name": "Documentation",
5726
- "url": "https://shoelace.style/components/icon-close-fill"
5726
+ "url": "https://shoelace.style/components/icon-download-line"
5727
5727
  }
5728
5728
  ]
5729
5729
  },
5730
5730
  {
5731
- "name": "dap-ds-icon-close-line",
5731
+ "name": "dap-ds-icon-error-warning-fill",
5732
5732
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5733
5733
  "attributes": [
5734
5734
  {
@@ -5755,12 +5755,12 @@
5755
5755
  "references": [
5756
5756
  {
5757
5757
  "name": "Documentation",
5758
- "url": "https://shoelace.style/components/icon-close-line"
5758
+ "url": "https://shoelace.style/components/icon-error-warning-fill"
5759
5759
  }
5760
5760
  ]
5761
5761
  },
5762
5762
  {
5763
- "name": "dap-ds-icon-delete-bin-fill",
5763
+ "name": "dap-ds-icon-error-warning-line",
5764
5764
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5765
5765
  "attributes": [
5766
5766
  {
@@ -5787,12 +5787,12 @@
5787
5787
  "references": [
5788
5788
  {
5789
5789
  "name": "Documentation",
5790
- "url": "https://shoelace.style/components/icon-delete-bin-fill"
5790
+ "url": "https://shoelace.style/components/icon-error-warning-line"
5791
5791
  }
5792
5792
  ]
5793
5793
  },
5794
5794
  {
5795
- "name": "dap-ds-icon-delete-bin-line",
5795
+ "name": "dap-ds-icon-external-link-line",
5796
5796
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5797
5797
  "attributes": [
5798
5798
  {
@@ -5819,12 +5819,12 @@
5819
5819
  "references": [
5820
5820
  {
5821
5821
  "name": "Documentation",
5822
- "url": "https://shoelace.style/components/icon-delete-bin-line"
5822
+ "url": "https://shoelace.style/components/icon-external-link-line"
5823
5823
  }
5824
5824
  ]
5825
5825
  },
5826
5826
  {
5827
- "name": "dap-ds-icon-download-line",
5827
+ "name": "dap-ds-icon-eye-line",
5828
5828
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5829
5829
  "attributes": [
5830
5830
  {
@@ -5851,12 +5851,12 @@
5851
5851
  "references": [
5852
5852
  {
5853
5853
  "name": "Documentation",
5854
- "url": "https://shoelace.style/components/icon-download-line"
5854
+ "url": "https://shoelace.style/components/icon-eye-line"
5855
5855
  }
5856
5856
  ]
5857
5857
  },
5858
5858
  {
5859
- "name": "dap-ds-icon-error-warning-fill",
5859
+ "name": "dap-ds-icon-eye-off-line",
5860
5860
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5861
5861
  "attributes": [
5862
5862
  {
@@ -5883,12 +5883,12 @@
5883
5883
  "references": [
5884
5884
  {
5885
5885
  "name": "Documentation",
5886
- "url": "https://shoelace.style/components/icon-error-warning-fill"
5886
+ "url": "https://shoelace.style/components/icon-eye-off-line"
5887
5887
  }
5888
5888
  ]
5889
5889
  },
5890
5890
  {
5891
- "name": "dap-ds-icon-error-warning-line",
5891
+ "name": "dap-ds-icon-forbid-fill",
5892
5892
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5893
5893
  "attributes": [
5894
5894
  {
@@ -5915,12 +5915,12 @@
5915
5915
  "references": [
5916
5916
  {
5917
5917
  "name": "Documentation",
5918
- "url": "https://shoelace.style/components/icon-error-warning-line"
5918
+ "url": "https://shoelace.style/components/icon-forbid-fill"
5919
5919
  }
5920
5920
  ]
5921
5921
  },
5922
5922
  {
5923
- "name": "dap-ds-icon-external-link-line",
5923
+ "name": "dap-ds-icon-information-2-fill",
5924
5924
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5925
5925
  "attributes": [
5926
5926
  {
@@ -5947,12 +5947,12 @@
5947
5947
  "references": [
5948
5948
  {
5949
5949
  "name": "Documentation",
5950
- "url": "https://shoelace.style/components/icon-external-link-line"
5950
+ "url": "https://shoelace.style/components/icon-information-2-fill"
5951
5951
  }
5952
5952
  ]
5953
5953
  },
5954
5954
  {
5955
- "name": "dap-ds-icon-eye-line",
5955
+ "name": "dap-ds-icon-information-fill",
5956
5956
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5957
5957
  "attributes": [
5958
5958
  {
@@ -5979,12 +5979,12 @@
5979
5979
  "references": [
5980
5980
  {
5981
5981
  "name": "Documentation",
5982
- "url": "https://shoelace.style/components/icon-eye-line"
5982
+ "url": "https://shoelace.style/components/icon-information-fill"
5983
5983
  }
5984
5984
  ]
5985
5985
  },
5986
5986
  {
5987
- "name": "dap-ds-icon-eye-off-line",
5987
+ "name": "dap-ds-icon-information-line",
5988
5988
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
5989
5989
  "attributes": [
5990
5990
  {
@@ -6011,12 +6011,12 @@
6011
6011
  "references": [
6012
6012
  {
6013
6013
  "name": "Documentation",
6014
- "url": "https://shoelace.style/components/icon-eye-off-line"
6014
+ "url": "https://shoelace.style/components/icon-information-line"
6015
6015
  }
6016
6016
  ]
6017
6017
  },
6018
6018
  {
6019
- "name": "dap-ds-icon-forbid-fill",
6019
+ "name": "dap-ds-icon-lightbulb-fill",
6020
6020
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6021
6021
  "attributes": [
6022
6022
  {
@@ -6043,12 +6043,12 @@
6043
6043
  "references": [
6044
6044
  {
6045
6045
  "name": "Documentation",
6046
- "url": "https://shoelace.style/components/icon-forbid-fill"
6046
+ "url": "https://shoelace.style/components/icon-lightbulb-fill"
6047
6047
  }
6048
6048
  ]
6049
6049
  },
6050
6050
  {
6051
- "name": "dap-ds-icon-information-2-fill",
6051
+ "name": "dap-ds-icon-loading-spinner",
6052
6052
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6053
6053
  "attributes": [
6054
6054
  {
@@ -6075,12 +6075,12 @@
6075
6075
  "references": [
6076
6076
  {
6077
6077
  "name": "Documentation",
6078
- "url": "https://shoelace.style/components/icon-information-2-fill"
6078
+ "url": "https://shoelace.style/components/icon-loading-spinner"
6079
6079
  }
6080
6080
  ]
6081
6081
  },
6082
6082
  {
6083
- "name": "dap-ds-icon-information-fill",
6083
+ "name": "dap-ds-icon-lock-fill",
6084
6084
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6085
6085
  "attributes": [
6086
6086
  {
@@ -6107,12 +6107,12 @@
6107
6107
  "references": [
6108
6108
  {
6109
6109
  "name": "Documentation",
6110
- "url": "https://shoelace.style/components/icon-information-fill"
6110
+ "url": "https://shoelace.style/components/icon-lock-fill"
6111
6111
  }
6112
6112
  ]
6113
6113
  },
6114
6114
  {
6115
- "name": "dap-ds-icon-information-line",
6115
+ "name": "dap-ds-icon-lock-line",
6116
6116
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6117
6117
  "attributes": [
6118
6118
  {
@@ -6139,12 +6139,12 @@
6139
6139
  "references": [
6140
6140
  {
6141
6141
  "name": "Documentation",
6142
- "url": "https://shoelace.style/components/icon-information-line"
6142
+ "url": "https://shoelace.style/components/icon-lock-line"
6143
6143
  }
6144
6144
  ]
6145
6145
  },
6146
6146
  {
6147
- "name": "dap-ds-icon-lightbulb-fill",
6147
+ "name": "dap-ds-icon-menu-line",
6148
6148
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6149
6149
  "attributes": [
6150
6150
  {
@@ -6171,12 +6171,12 @@
6171
6171
  "references": [
6172
6172
  {
6173
6173
  "name": "Documentation",
6174
- "url": "https://shoelace.style/components/icon-lightbulb-fill"
6174
+ "url": "https://shoelace.style/components/icon-menu-line"
6175
6175
  }
6176
6176
  ]
6177
6177
  },
6178
6178
  {
6179
- "name": "dap-ds-icon-loading-spinner",
6179
+ "name": "dap-ds-icon-menu-line-s",
6180
6180
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6181
6181
  "attributes": [
6182
6182
  {
@@ -6203,12 +6203,12 @@
6203
6203
  "references": [
6204
6204
  {
6205
6205
  "name": "Documentation",
6206
- "url": "https://shoelace.style/components/icon-loading-spinner"
6206
+ "url": "https://shoelace.style/components/icon-menu-line-s"
6207
6207
  }
6208
6208
  ]
6209
6209
  },
6210
6210
  {
6211
- "name": "dap-ds-icon-lock-fill",
6211
+ "name": "dap-ds-icon-more-2-line",
6212
6212
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6213
6213
  "attributes": [
6214
6214
  {
@@ -6235,12 +6235,12 @@
6235
6235
  "references": [
6236
6236
  {
6237
6237
  "name": "Documentation",
6238
- "url": "https://shoelace.style/components/icon-lock-fill"
6238
+ "url": "https://shoelace.style/components/icon-more-2-line"
6239
6239
  }
6240
6240
  ]
6241
6241
  },
6242
6242
  {
6243
- "name": "dap-ds-icon-lock-line",
6243
+ "name": "dap-ds-icon-more-line",
6244
6244
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6245
6245
  "attributes": [
6246
6246
  {
@@ -6267,12 +6267,12 @@
6267
6267
  "references": [
6268
6268
  {
6269
6269
  "name": "Documentation",
6270
- "url": "https://shoelace.style/components/icon-lock-line"
6270
+ "url": "https://shoelace.style/components/icon-more-line"
6271
6271
  }
6272
6272
  ]
6273
6273
  },
6274
6274
  {
6275
- "name": "dap-ds-icon-menu-line",
6275
+ "name": "dap-ds-icon-search-line",
6276
6276
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6277
6277
  "attributes": [
6278
6278
  {
@@ -6299,12 +6299,12 @@
6299
6299
  "references": [
6300
6300
  {
6301
6301
  "name": "Documentation",
6302
- "url": "https://shoelace.style/components/icon-menu-line"
6302
+ "url": "https://shoelace.style/components/icon-search-line"
6303
6303
  }
6304
6304
  ]
6305
6305
  },
6306
6306
  {
6307
- "name": "dap-ds-icon-menu-line-s",
6307
+ "name": "dap-ds-icon-share-line",
6308
6308
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6309
6309
  "attributes": [
6310
6310
  {
@@ -6331,12 +6331,12 @@
6331
6331
  "references": [
6332
6332
  {
6333
6333
  "name": "Documentation",
6334
- "url": "https://shoelace.style/components/icon-menu-line-s"
6334
+ "url": "https://shoelace.style/components/icon-share-line"
6335
6335
  }
6336
6336
  ]
6337
6337
  },
6338
6338
  {
6339
- "name": "dap-ds-icon-more-2-line",
6339
+ "name": "dap-ds-icon-shield-check-fill",
6340
6340
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6341
6341
  "attributes": [
6342
6342
  {
@@ -6363,12 +6363,12 @@
6363
6363
  "references": [
6364
6364
  {
6365
6365
  "name": "Documentation",
6366
- "url": "https://shoelace.style/components/icon-more-2-line"
6366
+ "url": "https://shoelace.style/components/icon-shield-check-fill"
6367
6367
  }
6368
6368
  ]
6369
6369
  },
6370
6370
  {
6371
- "name": "dap-ds-icon-more-line",
6371
+ "name": "dap-ds-icon-shield-check-line",
6372
6372
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6373
6373
  "attributes": [
6374
6374
  {
@@ -6395,12 +6395,12 @@
6395
6395
  "references": [
6396
6396
  {
6397
6397
  "name": "Documentation",
6398
- "url": "https://shoelace.style/components/icon-more-line"
6398
+ "url": "https://shoelace.style/components/icon-shield-check-line"
6399
6399
  }
6400
6400
  ]
6401
6401
  },
6402
6402
  {
6403
- "name": "dap-ds-icon-search-line",
6403
+ "name": "dap-ds-icon-star-fill",
6404
6404
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6405
6405
  "attributes": [
6406
6406
  {
@@ -6427,12 +6427,12 @@
6427
6427
  "references": [
6428
6428
  {
6429
6429
  "name": "Documentation",
6430
- "url": "https://shoelace.style/components/icon-search-line"
6430
+ "url": "https://shoelace.style/components/icon-star-fill"
6431
6431
  }
6432
6432
  ]
6433
6433
  },
6434
6434
  {
6435
- "name": "dap-ds-icon-share-line",
6435
+ "name": "dap-ds-icon-subtract-line",
6436
6436
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6437
6437
  "attributes": [
6438
6438
  {
@@ -6459,12 +6459,12 @@
6459
6459
  "references": [
6460
6460
  {
6461
6461
  "name": "Documentation",
6462
- "url": "https://shoelace.style/components/icon-share-line"
6462
+ "url": "https://shoelace.style/components/icon-subtract-line"
6463
6463
  }
6464
6464
  ]
6465
6465
  },
6466
6466
  {
6467
- "name": "dap-ds-icon-shield-check-fill",
6467
+ "name": "dap-ds-icon-subtract-line2",
6468
6468
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6469
6469
  "attributes": [
6470
6470
  {
@@ -6491,12 +6491,12 @@
6491
6491
  "references": [
6492
6492
  {
6493
6493
  "name": "Documentation",
6494
- "url": "https://shoelace.style/components/icon-shield-check-fill"
6494
+ "url": "https://shoelace.style/components/icon-subtract-line2"
6495
6495
  }
6496
6496
  ]
6497
6497
  },
6498
6498
  {
6499
- "name": "dap-ds-icon-shield-check-line",
6499
+ "name": "dap-ds-icon-time-fill",
6500
6500
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6501
6501
  "attributes": [
6502
6502
  {
@@ -6523,12 +6523,12 @@
6523
6523
  "references": [
6524
6524
  {
6525
6525
  "name": "Documentation",
6526
- "url": "https://shoelace.style/components/icon-shield-check-line"
6526
+ "url": "https://shoelace.style/components/icon-time-fill"
6527
6527
  }
6528
6528
  ]
6529
6529
  },
6530
6530
  {
6531
- "name": "dap-ds-icon-star-fill",
6531
+ "name": "dap-ds-icon-time-line",
6532
6532
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6533
6533
  "attributes": [
6534
6534
  {
@@ -6555,12 +6555,12 @@
6555
6555
  "references": [
6556
6556
  {
6557
6557
  "name": "Documentation",
6558
- "url": "https://shoelace.style/components/icon-star-fill"
6558
+ "url": "https://shoelace.style/components/icon-time-line"
6559
6559
  }
6560
6560
  ]
6561
6561
  },
6562
6562
  {
6563
- "name": "dap-ds-icon-subtract-line",
6563
+ "name": "dap-ds-icon-upload-2-fill",
6564
6564
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6565
6565
  "attributes": [
6566
6566
  {
@@ -6587,12 +6587,12 @@
6587
6587
  "references": [
6588
6588
  {
6589
6589
  "name": "Documentation",
6590
- "url": "https://shoelace.style/components/icon-subtract-line"
6590
+ "url": "https://shoelace.style/components/icon-upload-2-fill"
6591
6591
  }
6592
6592
  ]
6593
6593
  },
6594
6594
  {
6595
- "name": "dap-ds-icon-subtract-line2",
6595
+ "name": "dap-ds-icon-upload-2-line",
6596
6596
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6597
6597
  "attributes": [
6598
6598
  {
@@ -6619,12 +6619,12 @@
6619
6619
  "references": [
6620
6620
  {
6621
6621
  "name": "Documentation",
6622
- "url": "https://shoelace.style/components/icon-subtract-line2"
6622
+ "url": "https://shoelace.style/components/icon-upload-2-line"
6623
6623
  }
6624
6624
  ]
6625
6625
  },
6626
6626
  {
6627
- "name": "dap-ds-icon-time-fill",
6627
+ "name": "dap-ds-icon-upload-line",
6628
6628
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6629
6629
  "attributes": [
6630
6630
  {
@@ -6651,12 +6651,12 @@
6651
6651
  "references": [
6652
6652
  {
6653
6653
  "name": "Documentation",
6654
- "url": "https://shoelace.style/components/icon-time-fill"
6654
+ "url": "https://shoelace.style/components/icon-upload-line"
6655
6655
  }
6656
6656
  ]
6657
6657
  },
6658
6658
  {
6659
- "name": "dap-ds-icon-time-line",
6659
+ "name": "dap-ds-icon-zoom-in-line",
6660
6660
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6661
6661
  "attributes": [
6662
6662
  {
@@ -6683,12 +6683,12 @@
6683
6683
  "references": [
6684
6684
  {
6685
6685
  "name": "Documentation",
6686
- "url": "https://shoelace.style/components/icon-time-line"
6686
+ "url": "https://shoelace.style/components/icon-zoom-in-line"
6687
6687
  }
6688
6688
  ]
6689
6689
  },
6690
6690
  {
6691
- "name": "dap-ds-icon-upload-2-fill",
6691
+ "name": "dap-ds-icon-zoom-out-line",
6692
6692
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6693
6693
  "attributes": [
6694
6694
  {
@@ -6715,12 +6715,12 @@
6715
6715
  "references": [
6716
6716
  {
6717
6717
  "name": "Documentation",
6718
- "url": "https://shoelace.style/components/icon-upload-2-fill"
6718
+ "url": "https://shoelace.style/components/icon-zoom-out-line"
6719
6719
  }
6720
6720
  ]
6721
6721
  },
6722
6722
  {
6723
- "name": "dap-ds-icon-upload-2-line",
6723
+ "name": "dap-ds-icon-account-circle-fill",
6724
6724
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6725
6725
  "attributes": [
6726
6726
  {
@@ -6747,12 +6747,12 @@
6747
6747
  "references": [
6748
6748
  {
6749
6749
  "name": "Documentation",
6750
- "url": "https://shoelace.style/components/icon-upload-2-line"
6750
+ "url": "https://shoelace.style/components/icon-account-circle-fill"
6751
6751
  }
6752
6752
  ]
6753
6753
  },
6754
6754
  {
6755
- "name": "dap-ds-icon-upload-line",
6755
+ "name": "dap-ds-icon-account-circle-line",
6756
6756
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6757
6757
  "attributes": [
6758
6758
  {
@@ -6779,12 +6779,12 @@
6779
6779
  "references": [
6780
6780
  {
6781
6781
  "name": "Documentation",
6782
- "url": "https://shoelace.style/components/icon-upload-line"
6782
+ "url": "https://shoelace.style/components/icon-account-circle-line"
6783
6783
  }
6784
6784
  ]
6785
6785
  },
6786
6786
  {
6787
- "name": "dap-ds-icon-zoom-in-line",
6787
+ "name": "dap-ds-icon-user-fill",
6788
6788
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6789
6789
  "attributes": [
6790
6790
  {
@@ -6811,12 +6811,12 @@
6811
6811
  "references": [
6812
6812
  {
6813
6813
  "name": "Documentation",
6814
- "url": "https://shoelace.style/components/icon-zoom-in-line"
6814
+ "url": "https://shoelace.style/components/icon-user-fill"
6815
6815
  }
6816
6816
  ]
6817
6817
  },
6818
6818
  {
6819
- "name": "dap-ds-icon-zoom-out-line",
6819
+ "name": "dap-ds-icon-user-line",
6820
6820
  "description": "An icon\n---\n\n\n### **CSS Parts:**\n - **base** - The main icon container.",
6821
6821
  "attributes": [
6822
6822
  {
@@ -6843,7 +6843,7 @@
6843
6843
  "references": [
6844
6844
  {
6845
6845
  "name": "Documentation",
6846
- "url": "https://shoelace.style/components/icon-zoom-out-line"
6846
+ "url": "https://shoelace.style/components/icon-user-line"
6847
6847
  }
6848
6848
  ]
6849
6849
  }