@rakeyshgidwani/roger-ui-bank-theme-stan-design 0.1.6 → 0.1.8

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 (70) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/dist/index.d.ts +2 -0
  3. package/dist/index.esm.js +11 -2
  4. package/dist/index.js +11 -2
  5. package/dist/styles.css +1 -1
  6. package/package.json +1 -1
  7. package/src/index.css +1046 -0
  8. package/src/index.ts +9 -1
  9. package/src/plugins/theme-css-generator.ts +354 -0
  10. package/src/styles/base/fonts.css +30 -0
  11. package/src/styles/base/generated-theme-variables.css +573 -0
  12. package/src/styles/base/index.css +7 -0
  13. package/src/styles/base/reset.css +48 -0
  14. package/src/styles/base/theme.css +1068 -0
  15. package/src/styles/base/typography.css +68 -0
  16. package/src/styles/base/variables.css +5 -0
  17. package/src/styles/components/CLAUDE.md +62 -0
  18. package/src/styles/components/base/badge.css +428 -0
  19. package/src/styles/components/base/button.css +774 -0
  20. package/src/styles/components/base/card.css +601 -0
  21. package/src/styles/components/base/checkbox.css +442 -0
  22. package/src/styles/components/base/index.css +9 -0
  23. package/src/styles/components/base/input.css +887 -0
  24. package/src/styles/components/base/label.css +296 -0
  25. package/src/styles/components/data-display/chart.css +353 -0
  26. package/src/styles/components/data-display/data-grid.css +619 -0
  27. package/src/styles/components/data-display/index.css +9 -0
  28. package/src/styles/components/data-display/list.css +560 -0
  29. package/src/styles/components/data-display/table.css +498 -0
  30. package/src/styles/components/data-display/timeline.css +764 -0
  31. package/src/styles/components/data-display/tree.css +881 -0
  32. package/src/styles/components/feedback/alert.css +358 -0
  33. package/src/styles/components/feedback/index.css +7 -0
  34. package/src/styles/components/feedback/progress.css +435 -0
  35. package/src/styles/components/feedback/skeleton.css +337 -0
  36. package/src/styles/components/feedback/toast.css +564 -0
  37. package/src/styles/components/index.css +17 -0
  38. package/src/styles/components/navigation/breadcrumb.css +465 -0
  39. package/src/styles/components/navigation/index.css +9 -0
  40. package/src/styles/components/navigation/menu.css +572 -0
  41. package/src/styles/components/navigation/pagination.css +635 -0
  42. package/src/styles/components/navigation/sidebar.css +807 -0
  43. package/src/styles/components/navigation/stepper.css +519 -0
  44. package/src/styles/components/navigation/tabs.css +404 -0
  45. package/src/styles/components/overlay/backdrop.css +243 -0
  46. package/src/styles/components/overlay/index.css +8 -0
  47. package/src/styles/components/overlay/modal.css +482 -0
  48. package/src/styles/components/overlay/popover.css +607 -0
  49. package/src/styles/components/overlay/portal.css +213 -0
  50. package/src/styles/components/overlay/tooltip.css +488 -0
  51. package/src/styles/generated-theme-variables.css +573 -0
  52. package/src/styles/index.css +5 -0
  53. package/src/styles/layers/index.css +54 -0
  54. package/src/styles/layers/overrides.css +108 -0
  55. package/src/styles/layers/validation.css +159 -0
  56. package/src/styles/layers/validation.js +310 -0
  57. package/src/styles/themes/default.css +450 -0
  58. package/src/styles/themes/enterprise.css +370 -0
  59. package/src/styles/themes/harvey.css +436 -0
  60. package/src/styles/themes/index.css +4 -0
  61. package/src/styles/themes/stan-design.css +572 -0
  62. package/src/styles/utilities/advanced-transition-system.css +467 -0
  63. package/src/styles/utilities/battery-conscious-animations.css +289 -0
  64. package/src/styles/utilities/enterprise-mobile-experience.css +817 -0
  65. package/src/styles/utilities/hardware-acceleration.css +121 -0
  66. package/src/styles/utilities/index.css +20 -0
  67. package/src/styles/utilities/mobile-skeleton-loading.css +596 -0
  68. package/src/styles/utilities/semantic-input-system.css +451 -0
  69. package/src/styles/utilities/touch-friendly-interface.css +247 -0
  70. package/src/styles/utilities/touch-optimization.css +165 -0
@@ -0,0 +1,564 @@
1
+ /* Toast Component Styles */
2
+ /* Semantic CSS architecture following BEM methodology */
3
+
4
+ /* ============================================================================ */
5
+ /* TOAST CONTAINER */
6
+ /* ============================================================================ */
7
+
8
+ .toast {
9
+ --toast-border-radius: var(--cs-border-radius-lg);
10
+ --toast-shadow: var(--cs-shadows-lg);
11
+ --toast-transition: var(--cs-transitions-properties-all);
12
+ --toast-icon-size: var(--cs-spacing-scale-lg);
13
+ --toast-spacing: var(--cs-spacing-scale-md);
14
+ }
15
+
16
+ .toast__container {
17
+ position: relative;
18
+ display: flex;
19
+ align-items: flex-start;
20
+ gap: var(--cs-spacing-scale-md);
21
+ border-radius: var(--toast-border-radius);
22
+ box-shadow: var(--toast-shadow);
23
+ transition: var(--toast-transition);
24
+ transform: translateX(0);
25
+ overflow: hidden;
26
+ }
27
+
28
+ /* Toast container sizes */
29
+ .toast__container--sm {
30
+ padding: var(--cs-spacing-scale-2) var(--cs-spacing-scale-md);
31
+ font-size: var(--cs-fonts-primary-sizes-sm);
32
+ --toast-icon-size: var(--cs-spacing-scale-4);
33
+ }
34
+
35
+ .toast__container--md {
36
+ padding: var(--cs-spacing-scale-md) var(--cs-spacing-scale-4);
37
+ font-size: var(--cs-fonts-primary-sizes-sm);
38
+ --toast-icon-size: var(--cs-spacing-scale-5);
39
+ }
40
+
41
+ .toast__container--lg {
42
+ padding: var(--cs-spacing-scale-4);
43
+ font-size: var(--cs-fonts-primary-sizes-base);
44
+ --toast-icon-size: var(--cs-spacing-scale-6);
45
+ }
46
+
47
+ /* Toast variants */
48
+ .toast__container--default {
49
+ background-color: var(--cs-colors-surface-background);
50
+ border: var(--cs-border-width-normal) solid var(--cs-colors-surface-border);
51
+ color: var(--cs-colors-text-primary);
52
+ }
53
+
54
+ .toast__container--success {
55
+ background-color: var(--cs-colors-semantic-success-50);
56
+ border: var(--cs-border-width-normal) solid var(--cs-colors-semantic-success-200);
57
+ color: var(--cs-colors-semantic-success-800);
58
+ }
59
+
60
+ .toast__container--warning {
61
+ background-color: var(--cs-colors-semantic-warning-50);
62
+ border: var(--cs-border-width-normal) solid var(--cs-colors-semantic-warning-200);
63
+ color: var(--cs-colors-semantic-warning-800);
64
+ }
65
+
66
+ .toast__container--error {
67
+ background-color: var(--cs-colors-semantic-error-50);
68
+ border: var(--cs-border-width-normal) solid var(--cs-colors-semantic-error-200);
69
+ color: var(--cs-colors-semantic-error-800);
70
+ }
71
+
72
+ .toast__container--info {
73
+ background-color: var(--cs-colors-primary-50);
74
+ border: var(--cs-border-width-normal) solid var(--cs-colors-primary-200);
75
+ color: var(--cs-colors-primary-800);
76
+ }
77
+
78
+ /* Toast variant modifiers */
79
+ .toast__container--bordered.toast__container--success {
80
+ border-left: var(--cs-spacing-scale-xs) solid var(--cs-colors-semantic-success-600);
81
+ background-color: var(--cs-colors-surface-background);
82
+ color: var(--cs-colors-text-primary);
83
+ }
84
+
85
+ .toast__container--bordered.toast__container--warning {
86
+ border-left: var(--cs-spacing-scale-xs) solid var(--cs-colors-semantic-warning-600);
87
+ background-color: var(--cs-colors-surface-background);
88
+ color: var(--cs-colors-text-primary);
89
+ }
90
+
91
+ .toast__container--bordered.toast__container--error {
92
+ border-left: var(--cs-spacing-scale-xs) solid var(--cs-colors-semantic-error-600);
93
+ background-color: var(--cs-colors-surface-background);
94
+ color: var(--cs-colors-text-primary);
95
+ }
96
+
97
+ .toast__container--bordered.toast__container--info {
98
+ border-left: var(--cs-spacing-scale-xs) solid var(--cs-colors-primary-600);
99
+ background-color: var(--cs-colors-surface-background);
100
+ color: var(--cs-colors-text-primary);
101
+ }
102
+
103
+ .toast__container--filled.toast__container--success {
104
+ background-color: var(--cs-colors-semantic-success-600);
105
+ border-color: var(--cs-colors-semantic-success-600);
106
+ color: var(--cs-colors-surface-background);
107
+ }
108
+
109
+ .toast__container--filled.toast__container--warning {
110
+ background-color: var(--cs-colors-semantic-warning-600);
111
+ border-color: var(--cs-colors-semantic-warning-600);
112
+ color: var(--cs-colors-surface-background);
113
+ }
114
+
115
+ .toast__container--filled.toast__container--error {
116
+ background-color: var(--cs-colors-semantic-error-600);
117
+ border-color: var(--cs-colors-semantic-error-600);
118
+ color: var(--cs-colors-surface-background);
119
+ }
120
+
121
+ .toast__container--filled.toast__container--info {
122
+ background-color: var(--cs-colors-primary-600);
123
+ border-color: var(--cs-colors-primary-600);
124
+ color: var(--cs-colors-surface-background);
125
+ }
126
+
127
+ /* ============================================================================ */
128
+ /* TOAST PROGRESS BAR */
129
+ /* ============================================================================ */
130
+
131
+ .toast__progress {
132
+ position: absolute;
133
+ top: 0;
134
+ left: 0;
135
+ right: 0;
136
+ height: var(--cs-spacing-scale-1);
137
+ background-color: var(--cs-colors-surface-divider);
138
+ border-radius: var(--toast-border-radius) var(--toast-border-radius) 0 0;
139
+ overflow: hidden;
140
+ }
141
+
142
+ .toast__progress-bar {
143
+ height: 100%;
144
+ background-color: var(--cs-colors-primary-500);
145
+ transition: width var(--cs-transitions-durations-fast) linear;
146
+ border-radius: inherit;
147
+ }
148
+
149
+ .toast__progress-bar--success {
150
+ background-color: var(--cs-colors-semantic-success-500);
151
+ }
152
+
153
+ .toast__progress-bar--warning {
154
+ background-color: var(--cs-colors-semantic-warning-500);
155
+ }
156
+
157
+ .toast__progress-bar--error {
158
+ background-color: var(--cs-colors-semantic-error-500);
159
+ }
160
+
161
+ .toast__progress-bar--info {
162
+ background-color: var(--cs-colors-primary-500);
163
+ }
164
+
165
+ /* ============================================================================ */
166
+ /* TOAST ICON */
167
+ /* ============================================================================ */
168
+
169
+ .toast__icon {
170
+ flex-shrink: 0;
171
+ width: var(--toast-icon-size);
172
+ height: var(--toast-icon-size);
173
+ margin-top: var(--cs-spacing-scale-0-5);
174
+ }
175
+
176
+ .toast__icon--success {
177
+ color: var(--cs-colors-semantic-success-600);
178
+ }
179
+
180
+ .toast__icon--warning {
181
+ color: var(--cs-colors-semantic-warning-600);
182
+ }
183
+
184
+ .toast__icon--error {
185
+ color: var(--cs-colors-semantic-error-600);
186
+ }
187
+
188
+ .toast__icon--info {
189
+ color: var(--cs-colors-primary-600);
190
+ }
191
+
192
+ .toast__icon--default {
193
+ color: var(--cs-colors-text-secondary);
194
+ }
195
+
196
+ /* Icon colors for filled variant */
197
+ .toast__container--filled .toast__icon {
198
+ color: currentColor;
199
+ }
200
+
201
+ /* ============================================================================ */
202
+ /* TOAST CONTENT */
203
+ /* ============================================================================ */
204
+
205
+ .toast__content {
206
+ flex: 1;
207
+ min-width: 0;
208
+ }
209
+
210
+ .toast__title {
211
+ font-weight: var(--cs-fonts-primary-weights-semibold);
212
+ line-height: var(--cs-fonts-primary-line-heights-tight);
213
+ margin: 0 0 var(--cs-spacing-scale-1) 0;
214
+ }
215
+
216
+ .toast__message {
217
+ line-height: var(--cs-fonts-primary-line-heights-normal);
218
+ margin: 0;
219
+ }
220
+
221
+ .toast__message--only {
222
+ margin: 0;
223
+ }
224
+
225
+ /* ============================================================================ */
226
+ /* TOAST ACTIONS */
227
+ /* ============================================================================ */
228
+
229
+ .toast__actions {
230
+ display: flex;
231
+ align-items: center;
232
+ gap: var(--cs-spacing-scale-1);
233
+ margin-top: var(--cs-spacing-scale-2);
234
+ flex-wrap: wrap;
235
+ }
236
+
237
+ .toast__action-button {
238
+ display: inline-flex;
239
+ align-items: center;
240
+ padding: var(--cs-spacing-scale-1) var(--cs-spacing-scale-2);
241
+ font-size: var(--cs-fonts-primary-sizes-xs);
242
+ font-weight: var(--cs-fonts-primary-weights-medium);
243
+ border-radius: var(--cs-border-radius-sm);
244
+ border: none;
245
+ cursor: pointer;
246
+ transition: var(--toast-transition);
247
+ text-decoration: none;
248
+ }
249
+
250
+ .toast__action-button:focus {
251
+ outline: var(--cs-border-width-focus) solid var(--cs-colors-interactive-focus);
252
+ outline-offset: var(--cs-spacing-scale-0-5);
253
+ }
254
+
255
+ /* Action button variants */
256
+ .toast__action-button--primary {
257
+ background-color: var(--cs-colors-primary-600);
258
+ color: var(--cs-colors-surface-background);
259
+ }
260
+
261
+ .toast__action-button--primary:hover {
262
+ background-color: var(--cs-colors-primary-700);
263
+ }
264
+
265
+ .toast__action-button--secondary {
266
+ background-color: var(--cs-colors-gray-600);
267
+ color: var(--cs-colors-surface-background);
268
+ }
269
+
270
+ .toast__action-button--secondary:hover {
271
+ background-color: var(--cs-colors-gray-700);
272
+ }
273
+
274
+ .toast__action-button--ghost {
275
+ background-color: transparent;
276
+ color: var(--cs-colors-text-secondary);
277
+ border: var(--cs-border-width-normal) solid var(--cs-colors-surface-border);
278
+ }
279
+
280
+ .toast__action-button--ghost:hover {
281
+ background-color: var(--cs-colors-interactive-hover);
282
+ }
283
+
284
+ /* ============================================================================ */
285
+ /* TOAST CLOSE BUTTON */
286
+ /* ============================================================================ */
287
+
288
+ .toast__close-button {
289
+ flex-shrink: 0;
290
+ display: flex;
291
+ align-items: center;
292
+ justify-content: center;
293
+ width: var(--cs-spacing-scale-6);
294
+ height: var(--cs-spacing-scale-6);
295
+ padding: 0;
296
+ background: none;
297
+ border: none;
298
+ border-radius: var(--cs-border-radius-sm);
299
+ cursor: pointer;
300
+ transition: var(--toast-transition);
301
+ color: var(--cs-colors-text-secondary);
302
+ opacity: 0.7;
303
+ margin: calc(-1 * var(--cs-spacing-scale-1)) calc(-1 * var(--cs-spacing-scale-1)) 0 var(--cs-spacing-scale-md);
304
+ }
305
+
306
+ .toast__close-button:hover {
307
+ opacity: 1;
308
+ background-color: var(--cs-colors-interactive-hover);
309
+ }
310
+
311
+ .toast__close-button:focus {
312
+ outline: var(--cs-border-width-focus) solid var(--cs-colors-interactive-focus);
313
+ outline-offset: var(--cs-spacing-scale-0-5);
314
+ opacity: 1;
315
+ }
316
+
317
+ .toast__close-icon {
318
+ width: var(--cs-spacing-scale-4);
319
+ height: var(--cs-spacing-scale-4);
320
+ }
321
+
322
+ /* ============================================================================ */
323
+ /* TOAST CONTAINER POSITIONING */
324
+ /* ============================================================================ */
325
+
326
+ .toast-container {
327
+ position: fixed;
328
+ z-index: var(--cs-z-index-modal);
329
+ max-width: var(--cs-spacing-scale-100);
330
+ width: 100%;
331
+ }
332
+
333
+ .toast-container--top-left {
334
+ top: var(--cs-spacing-scale-4);
335
+ left: var(--cs-spacing-scale-4);
336
+ }
337
+
338
+ .toast-container--top-center {
339
+ top: var(--cs-spacing-scale-4);
340
+ left: 50%;
341
+ transform: translateX(-50%);
342
+ }
343
+
344
+ .toast-container--top-right {
345
+ top: var(--cs-spacing-scale-4);
346
+ right: var(--cs-spacing-scale-4);
347
+ }
348
+
349
+ .toast-container--bottom-left {
350
+ bottom: var(--cs-spacing-scale-4);
351
+ left: var(--cs-spacing-scale-4);
352
+ }
353
+
354
+ .toast-container--bottom-center {
355
+ bottom: var(--cs-spacing-scale-4);
356
+ left: 50%;
357
+ transform: translateX(-50%);
358
+ }
359
+
360
+ .toast-container--bottom-right {
361
+ bottom: var(--cs-spacing-scale-4);
362
+ right: var(--cs-spacing-scale-4);
363
+ }
364
+
365
+ .toast-container__list {
366
+ display: flex;
367
+ flex-direction: column;
368
+ gap: var(--cs-spacing-scale-2);
369
+ }
370
+
371
+ /* ============================================================================ */
372
+ /* ANIMATIONS */
373
+ /* ============================================================================ */
374
+
375
+ .toast__container--enter {
376
+ animation: toast-slide-in var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-out);
377
+ }
378
+
379
+ .toast__container--exit {
380
+ animation: toast-slide-out var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-in);
381
+ }
382
+
383
+ @keyframes toast-slide-in {
384
+ from {
385
+ transform: translateX(100%);
386
+ opacity: 0;
387
+ }
388
+ to {
389
+ transform: translateX(0);
390
+ opacity: 1;
391
+ }
392
+ }
393
+
394
+ @keyframes toast-slide-out {
395
+ from {
396
+ transform: translateX(0);
397
+ opacity: 1;
398
+ }
399
+ to {
400
+ transform: translateX(100%);
401
+ opacity: 0;
402
+ }
403
+ }
404
+
405
+ /* Slide in from left for left-positioned toasts */
406
+ .toast-container--top-left .toast__container--enter,
407
+ .toast-container--bottom-left .toast__container--enter {
408
+ animation: toast-slide-in-left var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-out);
409
+ }
410
+
411
+ .toast-container--top-left .toast__container--exit,
412
+ .toast-container--bottom-left .toast__container--exit {
413
+ animation: toast-slide-out-left var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-in);
414
+ }
415
+
416
+ @keyframes toast-slide-in-left {
417
+ from {
418
+ transform: translateX(-100%);
419
+ opacity: 0;
420
+ }
421
+ to {
422
+ transform: translateX(0);
423
+ opacity: 1;
424
+ }
425
+ }
426
+
427
+ @keyframes toast-slide-out-left {
428
+ from {
429
+ transform: translateX(0);
430
+ opacity: 1;
431
+ }
432
+ to {
433
+ transform: translateX(-100%);
434
+ opacity: 0;
435
+ }
436
+ }
437
+
438
+ /* Slide in from top for center-positioned toasts */
439
+ .toast-container--top-center .toast__container--enter {
440
+ animation: toast-slide-in-top var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-out);
441
+ }
442
+
443
+ .toast-container--top-center .toast__container--exit {
444
+ animation: toast-slide-out-top var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-in);
445
+ }
446
+
447
+ .toast-container--bottom-center .toast__container--enter {
448
+ animation: toast-slide-in-bottom var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-out);
449
+ }
450
+
451
+ .toast-container--bottom-center .toast__container--exit {
452
+ animation: toast-slide-out-bottom var(--cs-transitions-durations-normal) var(--cs-transitions-easings-ease-in);
453
+ }
454
+
455
+ @keyframes toast-slide-in-top {
456
+ from {
457
+ transform: translateX(-50%) translateY(-100%);
458
+ opacity: 0;
459
+ }
460
+ to {
461
+ transform: translateX(-50%) translateY(0);
462
+ opacity: 1;
463
+ }
464
+ }
465
+
466
+ @keyframes toast-slide-out-top {
467
+ from {
468
+ transform: translateX(-50%) translateY(0);
469
+ opacity: 1;
470
+ }
471
+ to {
472
+ transform: translateX(-50%) translateY(-100%);
473
+ opacity: 0;
474
+ }
475
+ }
476
+
477
+ @keyframes toast-slide-in-bottom {
478
+ from {
479
+ transform: translateX(-50%) translateY(100%);
480
+ opacity: 0;
481
+ }
482
+ to {
483
+ transform: translateX(-50%) translateY(0);
484
+ opacity: 1;
485
+ }
486
+ }
487
+
488
+ @keyframes toast-slide-out-bottom {
489
+ from {
490
+ transform: translateX(-50%) translateY(0);
491
+ opacity: 1;
492
+ }
493
+ to {
494
+ transform: translateX(-50%) translateY(100%);
495
+ opacity: 0;
496
+ }
497
+ }
498
+
499
+ /* ============================================================================ */
500
+ /* RESPONSIVE DESIGN */
501
+ /* ============================================================================ */
502
+
503
+ @media (max-width: var(--cs-breakpoints-mobile)) {
504
+ .toast-container {
505
+ max-width: none;
506
+ left: var(--cs-spacing-scale-2) !important;
507
+ right: var(--cs-spacing-scale-2) !important;
508
+ transform: none !important;
509
+ }
510
+
511
+ .toast__container {
512
+ font-size: var(--cs-fonts-primary-sizes-sm);
513
+ }
514
+
515
+ .toast__actions {
516
+ flex-direction: column;
517
+ align-items: stretch;
518
+ }
519
+
520
+ .toast__action-button {
521
+ justify-content: center;
522
+ }
523
+ }
524
+
525
+ /* ============================================================================ */
526
+ /* ACCESSIBILITY */
527
+ /* ============================================================================ */
528
+
529
+ .toast__container[role="alert"] {
530
+ /* Ensure toast is announced to screen readers */
531
+ }
532
+
533
+ .toast__container:focus {
534
+ outline: var(--cs-border-width-focus) solid var(--cs-colors-interactive-focus);
535
+ outline-offset: var(--cs-spacing-scale-0-5);
536
+ }
537
+
538
+ /* High contrast mode support */
539
+ @media (prefers-contrast: high) {
540
+ .toast__container {
541
+ border-width: var(--cs-border-width-thick);
542
+ }
543
+
544
+ .toast__icon,
545
+ .toast__close-button,
546
+ .toast__action-button {
547
+ outline: var(--cs-border-width-normal) solid;
548
+ }
549
+ }
550
+
551
+ /* Reduced motion support */
552
+ @media (prefers-reduced-motion: reduce) {
553
+ .toast__container,
554
+ .toast__action-button,
555
+ .toast__close-button,
556
+ .toast__progress-bar {
557
+ transition: none;
558
+ }
559
+
560
+ .toast__container--enter,
561
+ .toast__container--exit {
562
+ animation: none;
563
+ }
564
+ }
@@ -0,0 +1,17 @@
1
+ /* Components Layer - All UI Component Styles */
2
+ /* This layer contains all component styles organized by category */
3
+
4
+ /* Base components */
5
+ @import './base/index.css';
6
+
7
+ /* Navigation components */
8
+ @import './navigation/index.css';
9
+
10
+ /* Data display components */
11
+ @import './data-display/index.css';
12
+
13
+ /* Feedback components */
14
+ @import './feedback/index.css';
15
+
16
+ /* Overlay components */
17
+ @import './overlay/index.css';