@cmgfi/clear-ds 1.0.0 → 1.1.0

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.
@@ -0,0 +1,553 @@
1
+ /* ==========================================================================
2
+ Clear Design System — Tokens
3
+ Extracted from ClearDsMigration design file
4
+ ========================================================================== */
5
+
6
+ /* --- Base & Color Tokens --- */
7
+
8
+ :root {
9
+ /* ═══════════════════════════════════════════════════════
10
+ GRID SYSTEM — Mobile 4-col / Tablet 6-col / Desktop 12-col
11
+ ═══════════════════════════════════════════════════════ */
12
+ --grid-columns-mobile: 4;
13
+ --grid-gutter-mobile: 16px;
14
+ --grid-margin-mobile: 24px;
15
+ --grid-container-mobile: 576px;
16
+
17
+ --grid-columns-tablet: 6;
18
+ --grid-gutter-tablet: 16px;
19
+ --grid-margin-tablet: 48px;
20
+ --grid-container-tablet: 768px;
21
+
22
+ --grid-columns-desktop: 12;
23
+ --grid-gutter-desktop: 18px;
24
+ --grid-margin-desktop: 128px;
25
+ --grid-container-desktop: 1200px;
26
+
27
+ /* Breakpoint references */
28
+ --breakpoint-sm: 576px;
29
+ --breakpoint-md: 768px;
30
+ --breakpoint-lg: 1200px;
31
+
32
+ --font-family: 'Open Sans', sans-serif;
33
+ --color-text: #202020;
34
+ --color-text-secondary: #70777d;
35
+
36
+ /* --- Teal ---
37
+ Core brand color for key interactive elements */
38
+ --teal-50: #EAF6F7;
39
+ --teal-100: #D1EDEF;
40
+ --teal-200: #ADDDE0;
41
+ --teal-300: #8BD2D7;
42
+ --teal-400: #6BC2C8;
43
+ --teal-500: #32A4AC;
44
+ --teal-600: #138890;
45
+ --teal-700: #047880;
46
+ --teal-800: #186368;
47
+ --teal-900: #18474A;
48
+
49
+ /* --- Surface ---
50
+ Backgrounds and containers for visual structure and hierarchy */
51
+ --surface-50: #FFFFFF;
52
+ --surface-100: #FCFCFC;
53
+ --surface-200: #F7F7F7;
54
+ --surface-300: #F4F4F5;
55
+ --surface-400: #EDEDED;
56
+ --surface-500: #E4E4E4;
57
+ --surface-600: #CFCFCF;
58
+ --surface-700: #A2A2A2;
59
+ --surface-800: #7D7D7D;
60
+ --surface-900: #606060;
61
+
62
+ /* --- Navy ---
63
+ Text, borders, and idle states */
64
+ --navy-50: #EAEBEC;
65
+ --navy-100: #CBCED1;
66
+ --navy-200: #9DA2A6;
67
+ --navy-300: #70777D;
68
+ --navy-400: #555D64;
69
+ --navy-500: #2A343D;
70
+ --navy-600: #262F38;
71
+ --navy-700: #1E252B;
72
+ --navy-800: #171D22;
73
+ --navy-900: #12161A;
74
+
75
+ /* --- Yellow ---
76
+ Warning: potential issues, caution, user intervention */
77
+ --yellow-50: #FFFCE7;
78
+ --yellow-100: #FEF5B3;
79
+ --yellow-200: #FDF08F;
80
+ --yellow-300: #FCE95C;
81
+ --yellow-400: #FCE53C;
82
+ --yellow-500: #FBDE0B;
83
+ --yellow-600: #AB9400;
84
+ --yellow-700: #867704;
85
+ --yellow-800: #695D05;
86
+ --yellow-900: #514908;
87
+
88
+ /* --- Blue ---
89
+ Information: neutral feedback and informational states */
90
+ --blue-50: #F5F9FF;
91
+ --blue-100: #D0E1FD;
92
+ --blue-200: #ABC9FB;
93
+ --blue-300: #85B2F9;
94
+ --blue-400: #609AF8;
95
+ --blue-500: #3B82F6;
96
+ --blue-600: #326FD1;
97
+ --blue-700: #295BAC;
98
+ --blue-800: #204887;
99
+ --blue-900: #183462;
100
+
101
+ /* --- Green ---
102
+ Success: positive actions and task completion */
103
+ --green-50: #EDF8EA;
104
+ --green-100: #C8E8C3;
105
+ --green-200: #9BD491;
106
+ --green-300: #6FB864;
107
+ --green-400: #4B9C3E;
108
+ --green-500: #1E830E;
109
+ --green-600: #1A760B;
110
+ --green-700: #155D0A;
111
+ --green-800: #174510;
112
+ --green-900: #11340B;
113
+
114
+ /* --- Red ---
115
+ Error/Danger: issues, required intervention, caution */
116
+ --red-50: #FFF5F5;
117
+ --red-100: #FFE0DF;
118
+ --red-200: #FFB8B3;
119
+ --red-300: #FF867F;
120
+ --red-400: #FF5A4E;
121
+ --red-500: #EB1000;
122
+ --red-600: #D60F00;
123
+ --red-700: #C00B14;
124
+ --red-800: #990D03;
125
+ --red-900: #630700;
126
+
127
+ /* ==========================================================================
128
+ Spacing Tokens
129
+ Root font-size: 12px (1rem = 12px)
130
+ ========================================================================== */
131
+
132
+ /* --- Numeric scale (raw rem values) --- */
133
+ --spacing-02: 0.167rem; /* 2px */
134
+ --spacing-04: 0.333rem; /* 4px */
135
+ --spacing-08: 0.667rem; /* 8px */
136
+ --spacing-12: 1rem; /* 12px */
137
+ --spacing-16: 1.333rem; /* 16px */
138
+ --spacing-20: 1.667rem; /* 20px */
139
+ --spacing-24: 2rem; /* 24px */
140
+ --spacing-28: 2.333rem; /* 28px */
141
+ --spacing-32: 2.667rem; /* 32px */
142
+ --spacing-36: 3rem; /* 36px */
143
+ --spacing-40: 3.333rem; /* 40px */
144
+
145
+ /* --- Named aliases (t-shirt sizes) --- */
146
+ --spacing-xxxs: var(--spacing-02); /* 2px — not in grid table but present on spacer component */
147
+ --spacing-base: var(--spacing-04); /* 4px */
148
+ --spacing-xxs: var(--spacing-08); /* 8px */
149
+ --spacing-xs: var(--spacing-12); /* 12px */
150
+ --spacing-sm: var(--spacing-16); /* 16px */
151
+ --spacing-md: var(--spacing-24); /* 24px */
152
+ --spacing-lg: var(--spacing-32); /* 32px */
153
+ --spacing-xl: 3.667rem; /* 44px */
154
+ --spacing-xxl: 4.667rem; /* 56px */
155
+
156
+ /* ==========================================================================
157
+ Elevation Tokens
158
+ Drop shadows to convey depth and visual hierarchy
159
+ ========================================================================== */
160
+
161
+ --shadow-depth-1: 0px 3px 8.75px 2px #EAEBEC;
162
+ --shadow-depth-2: 0px 3px 8.75px 2px #EAEBEC;
163
+ --shadow-depth-3: 0px 6px 10.5px 2px #EAEBEC;
164
+ --shadow-depth-4: 0px 8px 14px 2px #EAEBEC;
165
+
166
+ /* ==========================================================================
167
+ Scrim Token
168
+ Darkened overlay behind modals and expanded navigation menus
169
+ ========================================================================== */
170
+
171
+ --scrim-color: #2A343D;
172
+ --scrim-opacity: 0.25;
173
+ --scrim: color-mix(in srgb, var(--scrim-color) calc(var(--scrim-opacity) * 100%), transparent);
174
+
175
+ /* ==========================================================================
176
+ SEMANTIC TOKENS
177
+ Purpose-named aliases over the primitive scale above.
178
+ Always prefer these in component styles and consumer code over raw
179
+ primitives — semantic names survive theme changes and communicate intent.
180
+ ========================================================================== */
181
+
182
+ /* ── Text Colors ─────────────────────────────────────────────────────────
183
+ Named by role in the UI. heading/body/label share the same value today
184
+ but are kept separate so a future theme can differentiate them. */
185
+ --color-text-heading: var(--navy-800); /* Page headings, section titles, panel headers */
186
+ --color-text-body: var(--navy-800); /* Body copy, descriptions, content paragraphs */
187
+ --color-text-label: var(--navy-800); /* Form field labels, data column headers */
188
+ --color-text-helper: var(--navy-400); /* Helper text, subtitles, field descriptions */
189
+ --color-text-placeholder: var(--navy-300); /* Input placeholder text */
190
+ --color-text-disabled: var(--navy-300); /* Disabled input and control text */
191
+ --color-text-error: var(--red-600); /* Validation error messages */
192
+ --color-text-link: var(--teal-700); /* Hyperlinks, inline interactive text */
193
+ --color-text-link-hover: var(--teal-900); /* Hovered hyperlinks */
194
+ --color-text-inverse: var(--surface-50); /* Text on dark or brand-colored surfaces */
195
+
196
+ /* ── Text Sizes ──────────────────────────────────────────────────────────
197
+ Named by purpose in the UI. Base: 1rem = 12px. */
198
+ --font-size-hero: 48px; /* Hero banners, display text */
199
+ --font-size-title: 38px; /* Major page titles */
200
+ --font-size-section: 32px; /* Section headings */
201
+ --font-size-panel: 20px; /* Panel and card headings */
202
+ --font-size-subheading: 18px; /* Subheadings, intro paragraphs */
203
+ --font-size-label: 14px; /* Form labels, prominent body text */
204
+ --font-size-body: 12px; /* Standard body text (= 1rem) */
205
+ --font-size-caption: 10px; /* Captions, helper text, badge labels */
206
+
207
+ --font-weight-bold: 700; /* Headings, strong emphasis */
208
+ --font-weight-semibold: 600; /* Labels, medium emphasis */
209
+ --font-weight-regular: 400; /* Body copy, field values */
210
+
211
+ --line-height-heading: 1.2; /* Headings and titles — tight */
212
+ --line-height-body: 1.4; /* Body copy and labels — comfortable */
213
+
214
+ /* ── Surfaces / Backgrounds ──────────────────────────────────────────── */
215
+ --color-surface-default: var(--surface-50); /* White — base page/card/input background */
216
+ --color-surface-secondary: var(--surface-200); /* Secondary panels, alternate rows */
217
+ --color-surface-elevated: var(--surface-100); /* Popovers, dropdowns, cards that float */
218
+ --color-surface-hover: var(--surface-200); /* Hover background on list/menu items */
219
+ --color-surface-disabled: var(--surface-300); /* Disabled input/field background */
220
+ --color-surface-selected: var(--teal-50); /* Selected row or active item background */
221
+ --color-surface-overlay: var(--scrim); /* Modal and drawer backdrop */
222
+
223
+ /* ── Borders ─────────────────────────────────────────────────────────── */
224
+ --color-border-primary: var(--navy-100); /* Default input, card, and container borders */
225
+ --color-border-secondary: var(--navy-200); /* Stronger dividers, tab borders */
226
+ --color-border-tertiary: var(--surface-500); /* Very light internal dividers */
227
+ --color-border-brand: var(--teal-100); /* Soft brand-colored border */
228
+ --color-border-brand-strong: var(--teal-200); /* Stronger brand border — hover of soft elements */
229
+ --color-border-focus: var(--teal-500); /* Focused input border ring */
230
+ --color-border-error: var(--red-600); /* Error/invalid state border */
231
+
232
+ /* ── Brand ───────────────────────────────────────────────────────────── */
233
+ --color-brand-primary: var(--teal-700); /* Primary brand color — buttons, links, toggles */
234
+ --color-brand-primary-hover: var(--teal-800); /* Hover over primary brand elements */
235
+ --color-brand-primary-active: var(--teal-900); /* Pressed/active primary brand elements */
236
+ --color-brand-primary-bg: var(--teal-50); /* Tinted background for brand-highlighted areas */
237
+ --color-brand-secondary: var(--teal-500); /* Secondary brand — focus indicators, data markers */
238
+ --color-brand-secondary-hover: var(--teal-600); /* Hover over secondary brand elements */
239
+
240
+ /* ── Status ──────────────────────────────────────────────────────────── */
241
+ --color-status-error: var(--red-600); /* Error text, icons */
242
+ --color-status-error-hover: var(--red-700); /* Hovered error elements */
243
+ --color-status-error-bg: var(--red-50); /* Error background tint */
244
+ --color-status-error-border: var(--red-600); /* Error borders */
245
+ --color-status-warning: var(--yellow-600); /* Warning text, icons */
246
+ --color-status-warning-bg: var(--yellow-50); /* Warning background tint */
247
+ --color-status-warning-border: var(--yellow-200); /* Warning borders */
248
+ --color-status-success: var(--green-500); /* Success text, icons */
249
+ --color-status-success-bg: var(--green-50); /* Success background tint */
250
+ --color-status-success-border: var(--green-200); /* Success borders */
251
+ --color-status-info: var(--blue-500); /* Info text, icons */
252
+ --color-status-info-bg: var(--blue-50); /* Info background tint */
253
+ --color-status-info-border: var(--blue-200); /* Info borders */
254
+
255
+ /* ── Focus Rings ─────────────────────────────────────────────────────── */
256
+ --focus-ring: 0 0 0 2px var(--surface-50), 0 0 0 6px var(--teal-700); /* Standard keyboard focus */
257
+ --focus-ring-inset: inset 0 0 0 2px var(--teal-700); /* Inset variant — menus, popovers */
258
+
259
+ /* ── Border Radius ───────────────────────────────────────────────────── */
260
+ --radius-sm: 4px; /* Small chips, tags, badges */
261
+ --radius-md: 6px; /* Standard — inputs, cards, buttons */
262
+ --radius-lg: 8px; /* Modals, drawers, larger containers */
263
+ --radius-full: 9999px; /* Pill buttons, circular avatars */
264
+
265
+ /* ── Motion ──────────────────────────────────────────────────────────── */
266
+ --transition-fast: 80ms ease; /* Hover color changes */
267
+ --transition-normal: 120ms ease; /* Standard state changes */
268
+ --transition-slow: 200ms ease; /* Expand/collapse, panel slides */
269
+
270
+ /* ── Z-Index Scale ───────────────────────────────────────────────────── */
271
+ --z-sticky: 100; /* Sticky headers, persistent bars */
272
+ --z-dropdown: 200; /* Dropdowns, menus, date pickers */
273
+ --z-overlay: 300; /* Modals, drawers */
274
+ --z-notification: 400; /* Toast notifications */
275
+ --z-tooltip: 500; /* Tooltips */
276
+ }
277
+
278
+ /* --- Headings --- */
279
+
280
+ .text-h1 {
281
+ font-family: var(--font-family);
282
+ font-size: 48px;
283
+ font-weight: 700;
284
+ color: var(--color-text);
285
+ }
286
+
287
+ .text-h2 {
288
+ font-family: var(--font-family);
289
+ font-size: 38px;
290
+ font-weight: 700;
291
+ color: var(--color-text);
292
+ }
293
+
294
+ .text-h3 {
295
+ font-family: var(--font-family);
296
+ font-size: 32px;
297
+ font-weight: 700;
298
+ color: var(--color-text);
299
+ }
300
+
301
+ .text-h4 {
302
+ font-family: var(--font-family);
303
+ font-size: 20px;
304
+ font-weight: 700;
305
+ color: var(--color-text);
306
+ }
307
+
308
+ .text-h5 {
309
+ font-family: var(--font-family);
310
+ font-size: 12px;
311
+ font-weight: 700;
312
+ color: var(--color-text);
313
+ }
314
+
315
+ .text-h6 {
316
+ font-family: var(--font-family);
317
+ font-size: 10px;
318
+ font-weight: 700;
319
+ color: var(--color-text);
320
+ }
321
+
322
+ /* --- XL (18px) --- */
323
+
324
+ .text-xl-bold {
325
+ font-family: var(--font-family);
326
+ font-size: 18px;
327
+ font-weight: 700;
328
+ color: var(--color-text);
329
+ }
330
+
331
+ .text-xl-semibold {
332
+ font-family: var(--font-family);
333
+ font-size: 18px;
334
+ font-weight: 600;
335
+ color: var(--color-text);
336
+ }
337
+
338
+ .text-xl-regular {
339
+ font-family: var(--font-family);
340
+ font-size: 18px;
341
+ font-weight: 400;
342
+ color: var(--color-text);
343
+ }
344
+
345
+ /* --- Large (14px) --- */
346
+
347
+ .text-large-bold {
348
+ font-family: var(--font-family);
349
+ font-size: 14px;
350
+ font-weight: 700;
351
+ color: var(--color-text);
352
+ }
353
+
354
+ .text-large-semibold {
355
+ font-family: var(--font-family);
356
+ font-size: 14px;
357
+ font-weight: 600;
358
+ color: var(--color-text);
359
+ }
360
+
361
+ .text-large-regular {
362
+ font-family: var(--font-family);
363
+ font-size: 14px;
364
+ font-weight: 400;
365
+ color: var(--color-text);
366
+ }
367
+
368
+ /* --- Normal (12px) --- */
369
+
370
+ .text-normal-bold {
371
+ font-family: var(--font-family);
372
+ font-size: 12px;
373
+ font-weight: 700;
374
+ color: var(--color-text);
375
+ }
376
+
377
+ .text-normal-semibold {
378
+ font-family: var(--font-family);
379
+ font-size: 12px;
380
+ font-weight: 600;
381
+ color: var(--color-text);
382
+ }
383
+
384
+ .text-normal-regular {
385
+ font-family: var(--font-family);
386
+ font-size: 12px;
387
+ font-weight: 400;
388
+ color: var(--color-text);
389
+ }
390
+
391
+ /* --- Small (10px) --- */
392
+
393
+ .text-small-bold {
394
+ font-family: var(--font-family);
395
+ font-size: 10px;
396
+ font-weight: 700;
397
+ color: var(--color-text);
398
+ }
399
+
400
+ .text-small-semibold {
401
+ font-family: var(--font-family);
402
+ font-size: 10px;
403
+ font-weight: 600;
404
+ color: var(--color-text);
405
+ }
406
+
407
+ .text-small-regular {
408
+ font-family: var(--font-family);
409
+ font-size: 10px;
410
+ font-weight: 400;
411
+ color: var(--color-text);
412
+ }
413
+
414
+ /* ==========================================================================
415
+ Icon Tokens — PrimeIcons (PrimeNG icon font)
416
+ Usage: <i class="pi pi-{icon-name}"></i>
417
+ Requires: PrimeIcons CSS from the primeicons npm package
418
+ @import 'primeicons/primeicons.css';
419
+ Default size: 14px (matches design). Override with --icon-size-* tokens.
420
+ ========================================================================== */
421
+
422
+ :root {
423
+ --icon-size-sm: 12px;
424
+ --icon-size-md: 14px; /* default in design */
425
+ --icon-size-lg: 18px;
426
+ --icon-size-xl: 24px;
427
+ }
428
+
429
+ /* --- Arrows --- */
430
+ /* pi-angle-double-down, pi-angle-double-left, pi-angle-double-right,
431
+ pi-angle-double-up, pi-angle-down, pi-angle-left, pi-angle-right,
432
+ pi-angle-up, pi-arrow-circle-down, pi-arrow-circle-left,
433
+ pi-arrow-circle-right, pi-arrow-circle-up, pi-arrow-down,
434
+ pi-arrow-down-left, pi-arrow-down-right, pi-arrow-left,
435
+ pi-arrow-right, pi-arrow-right-arrow-left, pi-arrow-up,
436
+ pi-arrow-up-left, pi-arrow-up-right, pi-arrows-alt, pi-arrows-h,
437
+ pi-arrows-v, pi-chevron-circle-down, pi-chevron-circle-left,
438
+ pi-chevron-circle-right, pi-chevron-circle-up, pi-chevron-down,
439
+ pi-chevron-left, pi-chevron-right, pi-chevron-up, pi-refresh,
440
+ pi-replay, pi-reply, pi-sync, pi-undo */
441
+
442
+ /* --- Brands --- */
443
+ /* pi-amazon, pi-android, pi-apple, pi-bitcoin, pi-discord,
444
+ pi-facebook, pi-github, pi-google, pi-instagram, pi-linkedin,
445
+ pi-microsoft, pi-paypal, pi-prime, pi-reddit, pi-slack,
446
+ pi-telegram, pi-tiktok, pi-twitch, pi-twitter, pi-whatsapp,
447
+ pi-youtube */
448
+
449
+ /* --- Communication --- */
450
+ /* pi-comment, pi-comments, pi-inbox, pi-language, pi-megaphone,
451
+ pi-microphone, pi-phone, pi-send */
452
+
453
+ /* --- Design --- */
454
+ /* pi-palette, pi-pencil */
455
+
456
+ /* --- Devices --- */
457
+ /* pi-desktop, pi-mobile, pi-tablet */
458
+
459
+ /* --- Documents --- */
460
+ /* pi-book, pi-clipboard, pi-copy, pi-envelope, pi-file,
461
+ pi-file-arrow-up, pi-file-check, pi-file-edit, pi-file-excel,
462
+ pi-file-export, pi-file-import, pi-file-o, pi-file-pdf,
463
+ pi-file-plus, pi-file-word, pi-folder, pi-folder-open,
464
+ pi-folder-plus */
465
+
466
+ /* --- E-Commerce --- */
467
+ /* pi-box, pi-cart-arrow-down, pi-cart-minus, pi-cart-plus,
468
+ pi-credit-card, pi-money-bill, pi-receipt, pi-shop,
469
+ pi-shopping-bag, pi-shopping-cart, pi-tag, pi-tags, pi-ticket,
470
+ pi-wallet */
471
+
472
+ /* --- Graphs --- */
473
+ /* pi-chart-bar, pi-chart-line, pi-chart-pie, pi-chart-scatter */
474
+
475
+ /* --- Map --- */
476
+ /* pi-car, pi-compass, pi-directions, pi-directions-alt, pi-map,
477
+ pi-map-marker, pi-truck */
478
+
479
+ /* --- Math --- */
480
+ /* pi-dollar, pi-euro, pi-minus, pi-minus-circle, pi-percentage,
481
+ pi-plus, pi-plus-circle, pi-pound, pi-times */
482
+
483
+ /* --- Media --- */
484
+ /* pi-backward, pi-camera, pi-caret-down, pi-caret-left,
485
+ pi-caret-right, pi-caret-up, pi-eject, pi-fast-backward,
486
+ pi-fast-forward, pi-forward, pi-image, pi-images, pi-pause,
487
+ pi-play, pi-sliders-h, pi-sliders-v, pi-step-backward,
488
+ pi-step-backward-alt, pi-step-forward, pi-step-forward-alt,
489
+ pi-stop, pi-stop-circle, pi-video, pi-volume-down,
490
+ pi-volume-off, pi-volume-up */
491
+
492
+ /* --- Editor --- */
493
+ /* pi-align-center, pi-align-justify, pi-align-left, pi-align-right,
494
+ pi-bars, pi-eraser, pi-list */
495
+
496
+ /* --- Sort --- */
497
+ /* pi-sort, pi-sort-alpha-down, pi-sort-alpha-down-alt,
498
+ pi-sort-alpha-up, pi-sort-alpha-up-alt, pi-sort-alt,
499
+ pi-sort-alt-slash, pi-sort-amount-down, pi-sort-amount-down-alt,
500
+ pi-sort-amount-up, pi-sort-amount-up-alt, pi-sort-down,
501
+ pi-sort-down-fill, pi-sort-numeric-down, pi-sort-numeric-down-alt,
502
+ pi-sort-numeric-up, pi-sort-numeric-up-alt, pi-sort-up,
503
+ pi-sort-up-fill */
504
+
505
+ /* --- Misc --- */
506
+ /* pi-ban, pi-bell, pi-bell-slash, pi-bolt, pi-briefcase,
507
+ pi-building, pi-building-columns, pi-calculator, pi-check,
508
+ pi-check-circle, pi-check-square, pi-code, pi-database,
509
+ pi-ellipsis-h, pi-ellipsis-v, pi-gift, pi-lock, pi-lock-open,
510
+ pi-paperclip, pi-qrcode, pi-server, pi-shield, pi-sitemap,
511
+ pi-unlock, pi-verified */
512
+
513
+ /* --- Symbols --- */
514
+ /* pi-asterisk, pi-at, pi-bullseye, pi-equals, pi-exclamation-triangle,
515
+ pi-exclamation-circle, pi-flag, pi-hashtag, pi-info,
516
+ pi-info-circle, pi-question, pi-question-circle */
517
+
518
+ /* --- System --- */
519
+ /* pi-clone, pi-cloud, pi-cloud-download, pi-cloud-upload, pi-cog,
520
+ pi-delete-left, pi-download, pi-external-link, pi-eye,
521
+ pi-eye-slash, pi-filter-slash, pi-globe, pi-history, pi-home,
522
+ pi-key, pi-link, pi-moon, pi-power-off, pi-print, pi-save,
523
+ pi-search, pi-search-minus, pi-search-plus, pi-share-alt,
524
+ pi-sign-in, pi-sign-out, pi-spinner, pi-spinner-dotted, pi-sun,
525
+ pi-table, pi-th-large, pi-times-circle, pi-trash, pi-upload,
526
+ pi-wifi, pi-window-maximize, pi-window-minimize, pi-wrench */
527
+
528
+ /* --- Users --- */
529
+ /* pi-id-card, pi-user, pi-user-edit, pi-user-minus, pi-user-plus,
530
+ pi-users */
531
+
532
+ /* --- Time --- */
533
+ /* pi-calendar, pi-calendar-clock, pi-calendar-minus,
534
+ pi-calendar-plus, pi-calendar-times, pi-clock, pi-hourglass,
535
+ pi-stopwatch */
536
+
537
+ /* --- With Fills (filled variants) --- */
538
+ /* pi-bookmark, pi-bookmark-fill, pi-circle, pi-circle-fill,
539
+ pi-filter, pi-filter-fill, pi-flag-fill, pi-heart, pi-heart-fill,
540
+ pi-star, pi-star-fill, pi-star-half, pi-star-half-fill,
541
+ pi-thumbs-down, pi-thumbs-down-fill, pi-thumbs-up,
542
+ pi-thumbs-up-fill */
543
+
544
+ /* --- New / Extended Icons --- */
545
+ /* pi-address-book, pi-arrow-down-left-and-arrow-up-right-to-center,
546
+ pi-arrow-up-right-and-arrow-down-left-from-center, pi-barcode,
547
+ pi-crown, pi-ethereum, pi-expand, pi-face-smile, pi-gauge,
548
+ pi-graduation-cap, pi-hammer, pi-headphones, pi-indian-rupee,
549
+ pi-lightbulb, pi-list-check, pi-mars, pi-microchip,
550
+ pi-microchip-ai, pi-objects-column, pi-pause-circle,
551
+ pi-pen-to-square, pi-pinterest, pi-play-circle, pi-sparkles,
552
+ pi-thumbtack, pi-trophy, pi-turkish-lira, pi-venus,
553
+ pi-warehouse, pi-wave-pulse */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmgfi/clear-ds",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "CMG Financial — Clear Design System React component library",
5
5
  "keywords": ["cmg", "clear-ds", "design-system", "react", "components"],
6
6
  "license": "UNLICENSED",
@@ -29,6 +29,7 @@
29
29
  ],
30
30
  "scripts": {
31
31
  "build": "vite build",
32
+ "postbuild": "mkdir -p dist/tokens && cp src/tokens/tokens.css dist/tokens/tokens.css",
32
33
  "build:watch": "vite build --watch",
33
34
  "storybook": "storybook dev -p 6006",
34
35
  "build-storybook": "storybook build",