@k8slens/lds-tokens 0.57.0 → 0.58.2

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 (69) hide show
  1. package/README.md +156 -4
  2. package/lib/docs/token-map.dark.d.ts +1 -1
  3. package/lib/docs/token-map.dark.js +48 -2
  4. package/lib/docs/token-map.light.d.ts +1 -1
  5. package/lib/docs/token-map.light.js +48 -2
  6. package/lib/electron/font-face.css +1 -1
  7. package/lib/electron/icons/action.js +1 -1
  8. package/lib/electron/icons/base.js +1 -1
  9. package/lib/electron/icons/commerce.js +1 -1
  10. package/lib/electron/icons/display.js +1 -1
  11. package/lib/electron/icons/idp.js +1 -1
  12. package/lib/electron/icons/misc.js +1 -1
  13. package/lib/electron/icons/navigation.js +1 -1
  14. package/lib/electron/icons/status.js +1 -1
  15. package/lib/electron/icons/user.js +1 -1
  16. package/lib/electron/images/index.js +1 -1
  17. package/lib/electron/tokens.base.css +1 -1
  18. package/lib/electron/tokens.base.js +1 -1
  19. package/lib/electron/tokens.base.ts +1 -1
  20. package/lib/electron/tokens.carousel.css +1 -1
  21. package/lib/electron/tokens.colors.css +1 -1
  22. package/lib/electron/tokens.colors.js +1 -1
  23. package/lib/electron/tokens.colors.ts +1 -1
  24. package/lib/electron/tokens.core.css +1 -1
  25. package/lib/electron/tokens.dark.css +1 -1
  26. package/lib/electron/tokens.dark.js +1 -1
  27. package/lib/electron/tokens.dark.scoped.css +1 -1
  28. package/lib/electron/tokens.dark.ts +1 -1
  29. package/lib/electron/tokens.form.css +1 -1
  30. package/lib/electron/tokens.light.css +1 -1
  31. package/lib/electron/tokens.light.js +1 -1
  32. package/lib/electron/tokens.light.scoped.css +1 -1
  33. package/lib/electron/tokens.light.ts +1 -1
  34. package/lib/electron/tokens.tips.css +1 -1
  35. package/lib/web/colors/dark.js +1 -1
  36. package/lib/web/colors/light.js +1 -1
  37. package/lib/web/font-imports.css +1 -1
  38. package/lib/web/icons/action.js +1 -1
  39. package/lib/web/icons/base.js +1 -1
  40. package/lib/web/icons/commerce.js +1 -1
  41. package/lib/web/icons/display.js +1 -1
  42. package/lib/web/icons/idp.js +1 -1
  43. package/lib/web/icons/misc.js +1 -1
  44. package/lib/web/icons/navigation.js +1 -1
  45. package/lib/web/icons/status.js +1 -1
  46. package/lib/web/icons/user.js +1 -1
  47. package/lib/web/images/index.js +1 -1
  48. package/lib/web/tailwind.config.cjs +1 -1
  49. package/lib/web/tailwind.config.js +1 -1
  50. package/lib/web/tokens.base.css +1 -1
  51. package/lib/web/tokens.base.js +1 -1
  52. package/lib/web/tokens.base.ts +1 -1
  53. package/lib/web/tokens.carousel.css +1 -1
  54. package/lib/web/tokens.colors.css +1 -1
  55. package/lib/web/tokens.colors.js +1 -1
  56. package/lib/web/tokens.colors.ts +1 -1
  57. package/lib/web/tokens.core.css +1 -1
  58. package/lib/web/tokens.dark.css +1 -1
  59. package/lib/web/tokens.dark.js +1 -1
  60. package/lib/web/tokens.dark.scoped.css +1 -1
  61. package/lib/web/tokens.dark.ts +1 -1
  62. package/lib/web/tokens.form.css +1 -1
  63. package/lib/web/tokens.light.css +1 -1
  64. package/lib/web/tokens.light.js +1 -1
  65. package/lib/web/tokens.light.scoped.css +1 -1
  66. package/lib/web/tokens.light.ts +1 -1
  67. package/lib/web/tokens.tips.css +1 -1
  68. package/llms.txt +178 -0
  69. package/package.json +7 -5
package/README.md CHANGED
@@ -1,7 +1,159 @@
1
- # Lens Design System – Design Tokens
1
+ # @k8slens/lds-tokens
2
+
3
+ Design tokens for the Lens Design System – colors, spacing, typography, shadows, and visual properties.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @k8slens/lds-tokens
9
+ ```
10
+
11
+ ## CSS Variables
12
+
13
+ Import CSS files to use design tokens as CSS custom properties:
14
+
15
+ ```css
16
+ /* Fonts (required) */
17
+ @import "@k8slens/lds-tokens/lib/electron/font-face.css";
18
+
19
+ /* Core tokens (spacing, radius, shadows, typography) */
20
+ @import "@k8slens/lds-tokens/lib/web/tokens.core.css";
21
+
22
+ /* Theme: Choose dark or light */
23
+ @import "@k8slens/lds-tokens/lib/web/tokens.dark.css";
24
+ /* or */
25
+ @import "@k8slens/lds-tokens/lib/web/tokens.light.css";
26
+
27
+ .my-component {
28
+ color: var(--alias-color-text-primary);
29
+ background: var(--alias-color-background-base);
30
+ padding: var(--spacing-4);
31
+ border-radius: var(--radius-default);
32
+ }
33
+ ```
34
+
35
+ ### Available CSS Files
36
+
37
+ | File | Description |
38
+ | ---------------------------- | -------------------------------------------------- |
39
+ | `lib/electron/font-face.css` | Font face definitions (required) |
40
+ | `tokens.core.css` | Core tokens (spacing, radius, shadows, typography) |
41
+ | `tokens.base.css` | Base design tokens |
42
+ | `tokens.colors.css` | Color palette definitions |
43
+ | `tokens.dark.css` | Dark theme semantic colors |
44
+ | `tokens.light.css` | Light theme semantic colors |
45
+ | `tokens.dark.scoped.css` | Scoped dark theme (for theme switching) |
46
+ | `tokens.light.scoped.css` | Scoped light theme (for theme switching) |
47
+
48
+ ## JavaScript/TypeScript
49
+
50
+ Import tokens as constants:
51
+
52
+ ```typescript
53
+ import { AliasColorTextPrimary, Spacing4 } from "@k8slens/lds-tokens/lib/web/tokens.dark";
54
+ ```
55
+
56
+ ## Tailwind CSS
57
+
58
+ ```javascript
59
+ // tailwind.config.js
60
+ import ldsConfig from "@k8slens/lds-tokens/lib/web/tailwind.config.js";
61
+
62
+ export default {
63
+ presets: [ldsConfig],
64
+ };
65
+ ```
66
+
67
+ ## Icons
68
+
69
+ SVG icons organized by category. Two formats available:
70
+
71
+ **As React components** (recommended for bundlers with SVG support):
72
+
73
+ ```tsx
74
+ import { CopyPaste, Delete, Edit } from "@k8slens/lds-tokens/lib/web/icons/action.js";
75
+ import { Logo } from "@k8slens/lds-tokens/lib/web/icons/base.js";
76
+ import { Success, Warning } from "@k8slens/lds-tokens/lib/web/icons/status.js";
77
+
78
+ <Delete className="icon" />;
79
+ ```
80
+
81
+ Categories: `action`, `base`, `commerce`, `display`, `idp`, `misc`, `navigation`, `status`, `user`
82
+
83
+ > **Note:** Prefer `@k8slens/lds-icons` for React projects - it provides themed components with "Icon" suffix naming (e.g., `DeleteIcon`). Use tokens icons for non-React or custom bundler setups.
84
+
85
+ **As inline base64 data** (for dynamic loading without bundler):
86
+
87
+ ```typescript
88
+ import actionIcons from "@k8slens/lds-tokens/lib/web/icons-inline/action.dark.json";
89
+
90
+ const svgData = actionIcons["asset-icon-action-delete"];
91
+ const imgSrc = `data:image/svg+xml;base64,${svgData}`;
92
+ ```
93
+
94
+ Theme variants: `{category}.dark.json`, `{category}.light.json`, `{category}.brand.json`
95
+
96
+ ## Images
97
+
98
+ SVG image assets as React components:
99
+
100
+ ```tsx
101
+ import { ThankYouHero } from "@k8slens/lds-tokens/lib/web/images/index.js";
102
+
103
+ <ThankYouHero className="hero-image" />;
104
+ ```
105
+
106
+ ## Favicons
107
+
108
+ Pre-generated favicon sets with all required sizes and formats:
109
+
110
+ - `lib/web/favicons/website/` - Standard website favicons
111
+ - `lib/web/favicons/lenscloud/` - Lens Cloud application favicons
112
+
113
+ **Usage:** Copy favicon files from `node_modules` to your public folder:
114
+
115
+ ```bash
116
+ cp -r node_modules/@k8slens/lds-tokens/lib/web/favicons/website/favicons/* public/
117
+ ```
118
+
119
+ Then add `<link>` tags to your HTML head using one of these options:
120
+
121
+ 1. **Copy from HTML snippet** (`index.html` contains all required tags):
122
+
123
+ ```bash
124
+ cat node_modules/@k8slens/lds-tokens/lib/web/favicons/website/index.html
125
+ ```
126
+
127
+ 2. **React component** (ensure paths match your public folder structure):
128
+ ```tsx
129
+ import FaviconImports from "@k8slens/lds-tokens/lib/web/favicons/website/index.js";
130
+ <FaviconImports />;
131
+ ```
132
+
133
+ **Next.js:** Favicon naming follows Next.js App Router conventions. Copy `favicon.ico` and `apple-icon*.png` directly to your `app/` directory - Next.js will serve them automatically without additional configuration.
2
134
 
3
135
  ## Documentation
4
- Browse documentation at [lens-design-system.k8slens.dev](https://lens-design-system.k8slens.dev/).
5
136
 
6
- ## Package contents
7
- [To be added later]
137
+ Browse the full documentation at [lens-design-system.k8slens.dev](https://lens-design-system.k8slens.dev/).
138
+
139
+ ## AI Assistance
140
+
141
+ This package includes an `llms.txt` file with API documentation optimized for LLMs. Add to your project's AI configuration (e.g., `CLAUDE.md`):
142
+
143
+ ```markdown
144
+ Read node_modules/@k8slens/lds-tokens/llms.txt for design tokens reference.
145
+
146
+ Always use LDS tokens instead of hardcoded values:
147
+
148
+ If using Tailwind (preferred):
149
+ - Colors: `text-primary`, `bg-base` (from LDS Tailwind config)
150
+ - Spacing: `p-4`, `gap-2` (uses LDS spacing scale)
151
+ - Radius: `rounded-DEFAULT`, `rounded-lg`
152
+
153
+ If using CSS:
154
+ - Colors: `var(--alias-color-text-primary)` not `#333`
155
+ - Spacing: `var(--spacing-4)` not `16px`
156
+ - Radius: `var(--radius-default)` not `4px`
157
+
158
+ Search llms.txt for available tokens before using custom values.
159
+ ```
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Thu, 15 Jan 2026 14:16:04 GMT
3
+ * Generated on Fri, 13 Feb 2026 12:17:28 GMT
4
4
  */
5
5
 
6
6
  export type PackageDetails = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Thu, 15 Jan 2026 14:16:04 GMT
3
+ * Generated on Fri, 13 Feb 2026 12:17:28 GMT
4
4
  */
5
5
 
6
6
  const tokenMap = {
@@ -262,6 +262,7 @@ const tokenMap = {
262
262
  "variable": "asset-icon-action-copy-paste",
263
263
  "value": "../../node_modules/@material-symbols/svg-400/outlined/content_copy-fill.svg",
264
264
  "attributes": {
265
+ "description": "Use for copy-to-clipboard actions or duplicate item functionality",
265
266
  "keywords": [
266
267
  "copy",
267
268
  "duplicate",
@@ -303,6 +304,7 @@ const tokenMap = {
303
304
  "variable": "asset-icon-action-delete",
304
305
  "value": "../../node_modules/@material-symbols/svg-400/outlined/delete-fill.svg",
305
306
  "attributes": {
307
+ "description": "Use for destructive actions that permanently remove items. Pair with confirmation dialog",
306
308
  "keywords": [
307
309
  "delete",
308
310
  "remove",
@@ -344,6 +346,7 @@ const tokenMap = {
344
346
  "variable": "asset-icon-action-download",
345
347
  "value": "../../node_modules/@material-symbols/svg-400/outlined/download.svg",
346
348
  "attributes": {
349
+ "description": "Use for downloading files or exporting data to the user's device",
347
350
  "keywords": [
348
351
  "download",
349
352
  "save",
@@ -384,6 +387,7 @@ const tokenMap = {
384
387
  "variable": "asset-icon-action-edit",
385
388
  "value": "../../node_modules/@material-symbols/svg-400/outlined/edit.svg",
386
389
  "attributes": {
390
+ "description": "Use for entering edit mode or modifying existing content",
387
391
  "keywords": [
388
392
  "edit",
389
393
  "modify",
@@ -426,6 +430,7 @@ const tokenMap = {
426
430
  "variable": "asset-icon-action-reactivate",
427
431
  "value": "../../node_modules/@material-symbols/svg-400/outlined/laps.svg",
428
432
  "attributes": {
433
+ "description": "Use for reactivating disabled/paused items or resuming interrupted processes",
429
434
  "keywords": [
430
435
  "reactivate",
431
436
  "resume",
@@ -468,6 +473,7 @@ const tokenMap = {
468
473
  "variable": "asset-icon-action-repeat",
469
474
  "value": "../../node_modules/@material-symbols/svg-400/outlined/repeat.svg",
470
475
  "attributes": {
476
+ "description": "Use for retry, refresh, or loop/repeat functionality",
471
477
  "keywords": [
472
478
  "repeat",
473
479
  "loop",
@@ -512,6 +518,7 @@ const tokenMap = {
512
518
  "variable": "asset-icon-action-thumb-up",
513
519
  "value": "../../node_modules/@material-symbols/svg-400/rounded/thumb_up-fill.svg",
514
520
  "attributes": {
521
+ "description": "Use for positive feedback, approval, or like actions",
515
522
  "keywords": [
516
523
  "thumb up",
517
524
  "like",
@@ -556,6 +563,7 @@ const tokenMap = {
556
563
  "variable": "asset-icon-action-thumb-down",
557
564
  "value": "../../node_modules/@material-symbols/svg-400/rounded/thumb_down-fill.svg",
558
565
  "attributes": {
566
+ "description": "Use for negative feedback, disapproval, or dislike actions",
559
567
  "keywords": [
560
568
  "thumb down",
561
569
  "dislike",
@@ -601,6 +609,7 @@ const tokenMap = {
601
609
  "variable": "asset-icon-base-logo",
602
610
  "value": "assets/icons/logo-icon.svg",
603
611
  "attributes": {
612
+ "description": "Lens logo icon. Use in headers, footers, or as brand identifier",
604
613
  "keywords": [
605
614
  "logo",
606
615
  "icon",
@@ -646,6 +655,7 @@ const tokenMap = {
646
655
  "variable": "asset-icon-base-loop-logo",
647
656
  "value": "assets/icons/looplogo-icon.svg",
648
657
  "attributes": {
658
+ "description": "Loop product logo. Use for Loop-specific branding",
649
659
  "keywords": [
650
660
  "logo",
651
661
  "icon",
@@ -686,6 +696,7 @@ const tokenMap = {
686
696
  "variable": "asset-icon-base-lens-ide-logo",
687
697
  "value": "assets/icons/lens-ide-logo-icon.svg",
688
698
  "attributes": {
699
+ "description": "Lens IDE logo. Use for IDE-specific branding",
689
700
  "keywords": [
690
701
  "logo",
691
702
  "icon",
@@ -913,6 +924,7 @@ const tokenMap = {
913
924
  "variable": "asset-icon-commerce-credit-card",
914
925
  "value": "../../node_modules/@material-symbols/svg-400/outlined/credit_card.svg",
915
926
  "attributes": {
927
+ "description": "Use for payment methods, billing settings, or add payment card actions",
916
928
  "keywords": [
917
929
  "credit card",
918
930
  "payment",
@@ -958,6 +970,7 @@ const tokenMap = {
958
970
  "variable": "asset-icon-commerce-credit-card-off",
959
971
  "value": "../../node_modules/@material-symbols/svg-400/outlined/credit_card_off.svg",
960
972
  "attributes": {
973
+ "description": "Use to indicate missing payment method, expired card, or payment disabled state",
961
974
  "keywords": [
962
975
  "credit card",
963
976
  "credit card off",
@@ -1005,6 +1018,7 @@ const tokenMap = {
1005
1018
  "variable": "asset-icon-commerce-receipt",
1006
1019
  "value": "../../node_modules/@material-symbols/svg-400/outlined/receipt.svg",
1007
1020
  "attributes": {
1021
+ "description": "Use for invoices, transaction history, or billing receipts",
1008
1022
  "keywords": [
1009
1023
  "receipt",
1010
1024
  "payment",
@@ -1053,6 +1067,7 @@ const tokenMap = {
1053
1067
  "variable": "asset-icon-display-dark-mode",
1054
1068
  "value": "../../node_modules/@material-symbols/svg-400/rounded/dark_mode.svg",
1055
1069
  "attributes": {
1070
+ "description": "Use in theme switcher to represent dark mode option",
1056
1071
  "keywords": [
1057
1072
  "dark mode",
1058
1073
  "night mode",
@@ -1099,6 +1114,7 @@ const tokenMap = {
1099
1114
  "variable": "asset-icon-display-light-mode",
1100
1115
  "value": "../../node_modules/@material-symbols/svg-400/rounded/light_mode.svg",
1101
1116
  "attributes": {
1117
+ "description": "Use in theme switcher to represent light mode option",
1102
1118
  "keywords": [
1103
1119
  "light mode",
1104
1120
  "day mode",
@@ -1145,6 +1161,7 @@ const tokenMap = {
1145
1161
  "variable": "asset-icon-display-night-sight-auto",
1146
1162
  "value": "../../node_modules/@material-symbols/svg-400/rounded/night_sight_auto.svg",
1147
1163
  "attributes": {
1164
+ "description": "Use in theme switcher to represent system/auto theme option",
1148
1165
  "keywords": [
1149
1166
  "theme auto",
1150
1167
  "auto",
@@ -1193,6 +1210,7 @@ const tokenMap = {
1193
1210
  "variable": "asset-icon-idp-apple",
1194
1211
  "value": "assets/icons/apple-icon.svg",
1195
1212
  "attributes": {
1213
+ "description": "Use for Sign in with Apple button or to indicate Apple account connection",
1196
1214
  "keywords": [
1197
1215
  "apple",
1198
1216
  "identity provider",
@@ -1236,6 +1254,7 @@ const tokenMap = {
1236
1254
  "variable": "asset-icon-idp-github",
1237
1255
  "value": "assets/icons/github-icon.svg",
1238
1256
  "attributes": {
1257
+ "description": "Use for Sign in with GitHub button or to indicate GitHub account connection",
1239
1258
  "keywords": [
1240
1259
  "github",
1241
1260
  "identity provider",
@@ -1279,6 +1298,7 @@ const tokenMap = {
1279
1298
  "variable": "asset-icon-idp-google",
1280
1299
  "value": "assets/icons/google-icon.svg",
1281
1300
  "attributes": {
1301
+ "description": "Use for Sign in with Google button or to indicate Google account connection",
1282
1302
  "keywords": [
1283
1303
  "google",
1284
1304
  "identity provider",
@@ -1324,6 +1344,7 @@ const tokenMap = {
1324
1344
  "variable": "asset-icon-misc-event",
1325
1345
  "value": "../../node_modules/@material-symbols/svg-400/outlined/event.svg",
1326
1346
  "attributes": {
1347
+ "description": "Use for calendar events, scheduling, or date-related features",
1327
1348
  "keywords": [
1328
1349
  "event",
1329
1350
  "calendar",
@@ -1364,6 +1385,7 @@ const tokenMap = {
1364
1385
  "variable": "asset-icon-misc-awesome",
1365
1386
  "value": "assets/icons/awesome.svg",
1366
1387
  "attributes": {
1388
+ "description": "Use for featured content, highlights, or special promotional items",
1367
1389
  "keywords": [
1368
1390
  "awesome",
1369
1391
  "star",
@@ -1885,7 +1907,9 @@ const tokenMap = {
1885
1907
  "code": "$asset-icon-misc-preview",
1886
1908
  "variable": "asset-icon-misc-preview",
1887
1909
  "value": "../../node_modules/@material-symbols/svg-400/outlined/preview.svg",
1888
- "attributes": {},
1910
+ "attributes": {
1911
+ "deprecated": "Use `navigation.preview` instead"
1912
+ },
1889
1913
  "asset": {
1890
1914
  "name": "preview",
1891
1915
  "fileName": "preview.svg",
@@ -1923,6 +1947,7 @@ const tokenMap = {
1923
1947
  "variable": "asset-icon-navigation-arrow-up",
1924
1948
  "value": "../../node_modules/@material-symbols/svg-400/outlined/arrow_drop_up.svg",
1925
1949
  "attributes": {
1950
+ "description": "Use for collapse actions, sort ascending, or scroll up indicators",
1926
1951
  "keywords": [
1927
1952
  "arrow up",
1928
1953
  "navigate",
@@ -1963,6 +1988,7 @@ const tokenMap = {
1963
1988
  "variable": "asset-icon-navigation-arrow-down",
1964
1989
  "value": "../../node_modules/@material-symbols/svg-400/outlined/arrow_drop_down.svg",
1965
1990
  "attributes": {
1991
+ "description": "Use for expand actions, dropdown triggers, sort descending, or scroll down indicators",
1966
1992
  "keywords": [
1967
1993
  "arrow down",
1968
1994
  "navigate",
@@ -2003,6 +2029,7 @@ const tokenMap = {
2003
2029
  "variable": "asset-icon-navigation-arrow-forward",
2004
2030
  "value": "../../node_modules/@material-symbols/svg-400/outlined/arrow_forward.svg",
2005
2031
  "attributes": {
2032
+ "description": "Use for next step, continue, or navigate forward actions",
2006
2033
  "keywords": [
2007
2034
  "arrow forward",
2008
2035
  "navigate",
@@ -2043,6 +2070,7 @@ const tokenMap = {
2043
2070
  "variable": "asset-icon-navigation-menu",
2044
2071
  "value": "../../node_modules/@material-symbols/svg-400/outlined/menu.svg",
2045
2072
  "attributes": {
2073
+ "description": "Use to toggle hamburger/side navigation menu",
2046
2074
  "keywords": [
2047
2075
  "menu",
2048
2076
  "hamburger",
@@ -2084,6 +2112,7 @@ const tokenMap = {
2084
2112
  "variable": "asset-icon-navigation-context-menu",
2085
2113
  "value": "../../node_modules/@material-symbols/svg-400/outlined/more_vert.svg",
2086
2114
  "attributes": {
2115
+ "description": "Use for overflow actions menu or additional options dropdown",
2087
2116
  "keywords": [
2088
2117
  "menu",
2089
2118
  "options",
@@ -2126,6 +2155,7 @@ const tokenMap = {
2126
2155
  "variable": "asset-icon-navigation-close",
2127
2156
  "value": "../../node_modules/@material-symbols/svg-400/outlined/close.svg",
2128
2157
  "attributes": {
2158
+ "description": "Use for dismissing modals, panels, notifications, or closing views",
2129
2159
  "keywords": [
2130
2160
  "close",
2131
2161
  "collapse",
@@ -2168,6 +2198,7 @@ const tokenMap = {
2168
2198
  "variable": "asset-icon-navigation-show",
2169
2199
  "value": "../../node_modules/@material-symbols/svg-400/outlined/visibility.svg",
2170
2200
  "attributes": {
2201
+ "description": "Use to reveal hidden content like passwords or toggle visibility on",
2171
2202
  "keywords": [
2172
2203
  "show",
2173
2204
  "view",
@@ -2212,6 +2243,7 @@ const tokenMap = {
2212
2243
  "variable": "asset-icon-navigation-hide",
2213
2244
  "value": "../../node_modules/@material-symbols/svg-400/outlined/visibility_off.svg",
2214
2245
  "attributes": {
2246
+ "description": "Use to hide sensitive content like passwords or toggle visibility off",
2215
2247
  "keywords": [
2216
2248
  "hide",
2217
2249
  "conceal",
@@ -2255,6 +2287,7 @@ const tokenMap = {
2255
2287
  "variable": "asset-icon-navigation-preview",
2256
2288
  "value": "../../node_modules/@material-symbols/svg-400/outlined/preview.svg",
2257
2289
  "attributes": {
2290
+ "description": "Use for preview mode or viewing content before finalizing",
2258
2291
  "keywords": [
2259
2292
  "preview"
2260
2293
  ]
@@ -2445,6 +2478,7 @@ const tokenMap = {
2445
2478
  "variable": "asset-icon-status-spinner",
2446
2479
  "value": "assets/icons/spinner.svg",
2447
2480
  "attributes": {
2481
+ "description": "Use for loading states. Animates automatically. Pair with aria-busy for accessibility",
2448
2482
  "keywords": [
2449
2483
  "spinner",
2450
2484
  "loading",
@@ -2490,6 +2524,7 @@ const tokenMap = {
2490
2524
  "variable": "asset-icon-status-info",
2491
2525
  "value": "../../node_modules/@material-symbols/svg-400/outlined/info.svg",
2492
2526
  "attributes": {
2527
+ "description": "Use for informational messages, tooltips, or help hints. Not for warnings or errors",
2493
2528
  "keywords": [
2494
2529
  "info",
2495
2530
  "information",
@@ -2535,6 +2570,7 @@ const tokenMap = {
2535
2570
  "variable": "asset-icon-status-warning",
2536
2571
  "value": "../../node_modules/@material-symbols/svg-400/rounded/warning.svg",
2537
2572
  "attributes": {
2573
+ "description": "Use for cautionary states that need attention but aren't blocking. Not for errors",
2538
2574
  "keywords": [
2539
2575
  "warning",
2540
2576
  "alert",
@@ -2580,6 +2616,7 @@ const tokenMap = {
2580
2616
  "variable": "asset-icon-status-success",
2581
2617
  "value": "../../node_modules/@material-symbols/svg-400/outlined/check_circle.svg",
2582
2618
  "attributes": {
2619
+ "description": "Use for success states, completed operations, or positive confirmations",
2583
2620
  "keywords": [
2584
2621
  "success",
2585
2622
  "check",
@@ -2625,6 +2662,7 @@ const tokenMap = {
2625
2662
  "variable": "asset-icon-status-check",
2626
2663
  "value": "../../node_modules/@material-symbols/svg-400/outlined/check.svg",
2627
2664
  "attributes": {
2665
+ "description": "Use for checkmarks in lists, selected states, or inline confirmations. Prefer `success` for status messages",
2628
2666
  "keywords": [
2629
2667
  "check",
2630
2668
  "tick",
@@ -2672,6 +2710,7 @@ const tokenMap = {
2672
2710
  "variable": "asset-icon-user-person",
2673
2711
  "value": "../../node_modules/@material-symbols/svg-400/outlined/person.svg",
2674
2712
  "attributes": {
2713
+ "description": "Use for user profile, account settings, or as avatar placeholder",
2675
2714
  "keywords": [
2676
2715
  "user",
2677
2716
  "profile",
@@ -2716,6 +2755,7 @@ const tokenMap = {
2716
2755
  "variable": "asset-icon-user-email",
2717
2756
  "value": "../../node_modules/@material-symbols/svg-400/outlined/mail.svg",
2718
2757
  "attributes": {
2758
+ "description": "Use for email fields, contact information, or message/inbox features",
2719
2759
  "keywords": [
2720
2760
  "email",
2721
2761
  "mail",
@@ -2761,6 +2801,7 @@ const tokenMap = {
2761
2801
  "variable": "asset-icon-user-license",
2762
2802
  "value": "assets/icons/license.svg",
2763
2803
  "attributes": {
2804
+ "description": "Use for license management, subscription status, or legal agreements",
2764
2805
  "keywords": [
2765
2806
  "license",
2766
2807
  "id card",
@@ -2808,6 +2849,7 @@ const tokenMap = {
2808
2849
  "variable": "asset-icon-user-lock",
2809
2850
  "value": "../../node_modules/@material-symbols/svg-400/outlined/lock.svg",
2810
2851
  "attributes": {
2852
+ "description": "Use for password fields, security settings, or locked/protected content",
2811
2853
  "keywords": [
2812
2854
  "lock",
2813
2855
  "secure",
@@ -2853,6 +2895,7 @@ const tokenMap = {
2853
2895
  "variable": "asset-icon-user-key",
2854
2896
  "value": "../../node_modules/@material-symbols/svg-400/outlined/key.svg",
2855
2897
  "attributes": {
2898
+ "description": "Use for API keys, access tokens, or authentication credentials",
2856
2899
  "keywords": [
2857
2900
  "key",
2858
2901
  "unlock",
@@ -2897,6 +2940,7 @@ const tokenMap = {
2897
2940
  "variable": "asset-icon-user-verified",
2898
2941
  "value": "../../node_modules/@material-symbols/svg-400/outlined/verified.svg",
2899
2942
  "attributes": {
2943
+ "description": "Use for verified accounts, trusted status, or identity confirmation badges",
2900
2944
  "keywords": [
2901
2945
  "verified",
2902
2946
  "check",
@@ -2942,6 +2986,7 @@ const tokenMap = {
2942
2986
  "variable": "asset-icon-user-stylus-note",
2943
2987
  "value": "../../node_modules/@material-symbols/svg-400/outlined/stylus_note.svg",
2944
2988
  "attributes": {
2989
+ "description": "Use for digital signatures, sign document actions, or handwritten input",
2945
2990
  "keywords": [
2946
2991
  "signature",
2947
2992
  "sign",
@@ -2985,6 +3030,7 @@ const tokenMap = {
2985
3030
  "variable": "asset-icon-user-dialpad",
2986
3031
  "value": "../../node_modules/@material-symbols/svg-400/outlined/dialpad.svg",
2987
3032
  "attributes": {
3033
+ "description": "Use for OTP/2FA code entry, PIN input, or numeric verification",
2988
3034
  "keywords": [
2989
3035
  "otp",
2990
3036
  "2fa",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly, this file was auto-generated.
3
- * Generated on Thu, 15 Jan 2026 14:16:05 GMT
3
+ * Generated on Fri, 13 Feb 2026 12:17:28 GMT
4
4
  */
5
5
 
6
6
  export type PackageDetails = {