le-kit 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LLM_CONTEXT.md +14 -2
- package/package.json +1 -1
package/LLM_CONTEXT.md
CHANGED
|
@@ -242,7 +242,13 @@ A flexible button component with multiple variants and states.
|
|
|
242
242
|
| `el` | `HTMLElement` | | |
|
|
243
243
|
| `mode` | `'default' \| 'admin'` | | Mode of the popover should be 'default' for internal use |
|
|
244
244
|
| `variant` | `'solid' \| 'outlined' \| 'clear' \| 'system'` | `'solid'` | Button variant style |
|
|
245
|
-
| `color` |
|
|
245
|
+
| `color` | `\| 'primary'
|
|
246
|
+
\| 'secondary'
|
|
247
|
+
\| 'success'
|
|
248
|
+
\| 'warning'
|
|
249
|
+
\| 'danger'
|
|
250
|
+
\| 'info'
|
|
251
|
+
\| 'transparent'` | `'primary'` | Button color theme (uses theme semantic colors) |
|
|
246
252
|
| `size` | `'small' \| 'medium' \| 'large'` | `'medium'` | Button size |
|
|
247
253
|
| `selected` | `boolean` | `false` | Whether the button is in a selected/active state |
|
|
248
254
|
| `fullWidth` | `boolean` | `false` | Whether the button takes full width of its container |
|
|
@@ -1424,7 +1430,13 @@ A tag/chip component for displaying labels with optional dismiss functionality.
|
|
|
1424
1430
|
| `dismissible` | `boolean` | `false` | Whether the tag can be dismissed (shows close button). |
|
|
1425
1431
|
| `disabled` | `boolean` | `false` | Whether the tag is disabled. |
|
|
1426
1432
|
| `size` | `'small' \| 'medium' \| 'large'` | `'medium'` | The size of the tag. |
|
|
1427
|
-
| `
|
|
1433
|
+
| `color` | `\| 'default'
|
|
1434
|
+
\| 'primary'
|
|
1435
|
+
\| 'success'
|
|
1436
|
+
\| 'warning'
|
|
1437
|
+
\| 'danger'
|
|
1438
|
+
\| 'secondary'
|
|
1439
|
+
\| 'info'` | `'default'` | The color of the tag. |
|
|
1428
1440
|
|
|
1429
1441
|
### Events
|
|
1430
1442
|
|