graphen 1.10.20 → 2.0.1

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,709 @@
1
+ /* stylelint-disable */
2
+
3
+ /* Docs-only styles for the Graphen example page.
4
+ Visual design tokens, layout, demo blocks, token tables.
5
+ Library consumers do NOT load this file. */
6
+
7
+ :root {
8
+ --font-sans: "Geist", -apple-system, blinkmacsystemfont, "Segoe UI", sans-serif;
9
+ --font-mono: "Geist Mono", ui-monospace, sfmono-regular, menlo, monospace;
10
+ --gb-primary: #337ab7;
11
+ --gb-text: #585858;
12
+ --gb-link: #337ab7;
13
+ --gb-component: #f5f5f5;
14
+ --gb-component-dark: #e5e5e5;
15
+ --gb-success: #0ea348;
16
+ --gb-info: #337ab7;
17
+ --gb-danger: #db5551;
18
+ --bg: oklch(0.992 0.003 90);
19
+ --bg-elev: #fff;
20
+ --surface: oklch(0.975 0.004 90);
21
+ --surface-2: oklch(0.955 0.005 90);
22
+ --text: oklch(0.22 0.01 250);
23
+ --text-muted: oklch(0.5 0.01 250);
24
+ --text-subtle: oklch(0.62 0.01 250);
25
+ --border: oklch(0.91 0.005 90);
26
+ --border-strong: oklch(0.85 0.006 90);
27
+ --accent: var(--gb-primary);
28
+ --accent-fg: #fff;
29
+ --accent-soft: color-mix(in oklab, var(--accent) 10%, var(--bg));
30
+ --radius-sm: 4px;
31
+ --radius: 6px;
32
+ --radius-lg: 10px;
33
+ --shadow-sm: 0 1px 0 rgb(20 20 28 / 4%), 0 1px 2px rgb(20 20 28 / 4%);
34
+ --shadow: 0 1px 0 rgb(20 20 28 / 4%), 0 4px 14px rgb(20 20 28 / 6%);
35
+ --row-pad-y: 14px;
36
+ --section-pad: 56px;
37
+ }
38
+
39
+ [data-density="compact"] { --row-pad-y: 10px; --section-pad: 40px; }
40
+ [data-density="spacious"] { --row-pad-y: 18px; --section-pad: 80px; }
41
+
42
+ [data-theme="dark"] {
43
+ --bg: oklch(0.16 0.008 250);
44
+ --bg-elev: oklch(0.19 0.008 250);
45
+ --surface: oklch(0.21 0.008 250);
46
+ --surface-2: oklch(0.24 0.009 250);
47
+ --text: oklch(0.96 0.005 90);
48
+ --text-muted: oklch(0.7 0.008 250);
49
+ --text-subtle: oklch(0.55 0.008 250);
50
+ --border: oklch(0.28 0.008 250);
51
+ --border-strong: oklch(0.35 0.009 250);
52
+ --accent-soft: color-mix(in oklab, var(--accent) 18%, var(--bg));
53
+ --shadow-sm: 0 1px 0 rgb(0 0 0 / 40%), 0 1px 2px rgb(0 0 0 / 50%);
54
+ --shadow: 0 1px 0 rgb(0 0 0 / 40%), 0 6px 20px rgb(0 0 0 / 40%);
55
+ }
56
+
57
+ body.docs-body {
58
+ margin: 0;
59
+ padding: 0;
60
+ font-family: var(--font-sans);
61
+ font-size: 15px;
62
+ line-height: 1.55;
63
+ color: var(--text);
64
+ background: var(--bg);
65
+ font-feature-settings: "ss01", "cv11";
66
+ -webkit-font-smoothing: antialiased;
67
+ text-rendering: optimizelegibility;
68
+ }
69
+
70
+ .docs * { box-sizing: border-box; }
71
+ .docs a { color: inherit; text-decoration: none; }
72
+ .docs button:not([class*="gc-"]) { font: inherit; color: inherit; cursor: pointer; }
73
+
74
+ .docs code,
75
+ .docs kbd,
76
+ .docs pre { font-family: var(--font-mono); font-size: 13px; }
77
+ .docs ::selection { background: color-mix(in oklab, var(--accent) 30%, transparent); }
78
+
79
+ .docs-topbar {
80
+ position: sticky;
81
+ top: 0;
82
+ z-index: 30;
83
+ display: grid;
84
+ grid-template-columns: 1fr auto;
85
+ align-items: center;
86
+ height: 56px;
87
+ padding: 0 24px;
88
+ background: color-mix(in oklab, var(--bg) 80%, transparent);
89
+ backdrop-filter: saturate(140%) blur(8px);
90
+ border-bottom: 1px solid var(--border);
91
+ }
92
+
93
+ .docs-brand {
94
+ display: flex;
95
+ align-items: center;
96
+ gap: 10px;
97
+ font-weight: 600;
98
+ font-size: 15px;
99
+ letter-spacing: -0.01em;
100
+
101
+ .docs-hex { width: 22px; height: 22px; color: var(--accent); flex: none; }
102
+
103
+ .ver {
104
+ margin-left: 4px;
105
+ padding: 2px 6px;
106
+ background: var(--surface);
107
+ border: 1px solid var(--border);
108
+ border-radius: 999px;
109
+ font-family: var(--font-mono);
110
+ font-size: 11px;
111
+ color: var(--text-subtle);
112
+ }
113
+ }
114
+
115
+ .docs-tools {
116
+ display: flex;
117
+ align-items: center;
118
+ justify-self: end;
119
+ gap: 6px;
120
+ }
121
+
122
+ .docs-icon-btn {
123
+ display: inline-grid;
124
+ place-items: center;
125
+ width: 34px;
126
+ height: 34px;
127
+ background: transparent;
128
+ border: 1px solid transparent;
129
+ border-radius: 8px;
130
+ color: var(--text-muted);
131
+ transition: background 0.15s, color 0.15s, border-color 0.15s;
132
+
133
+ &:hover { background: var(--surface); color: var(--text); }
134
+ }
135
+
136
+ .docs-app {
137
+ display: grid;
138
+ grid-template-columns: 280px minmax(0, 1fr) 240px;
139
+ align-items: start;
140
+ max-width: 1480px;
141
+ margin: 0 auto;
142
+ }
143
+
144
+ .docs-sidebar {
145
+ position: sticky;
146
+ top: 56px;
147
+ height: calc(100vh - 56px);
148
+ padding: 28px 16px 60px 24px;
149
+ border-right: 1px solid var(--border);
150
+ overflow-y: auto;
151
+
152
+ .group { margin-bottom: 22px; }
153
+
154
+ .group-title {
155
+ padding: 0 10px 6px;
156
+ font-size: 11px;
157
+ font-weight: 600;
158
+ text-transform: uppercase;
159
+ letter-spacing: 0.08em;
160
+ color: var(--text-subtle);
161
+ }
162
+
163
+ a {
164
+ display: flex;
165
+ align-items: center;
166
+ position: relative;
167
+ padding: 6px 10px;
168
+ border-radius: 6px;
169
+ font-size: 13.5px;
170
+ color: var(--text-muted);
171
+ transition: background 0.12s, color 0.12s;
172
+
173
+ &:hover { background: var(--surface); color: var(--text); }
174
+
175
+ &.active {
176
+ background: var(--surface);
177
+ color: var(--text);
178
+ font-weight: 500;
179
+ }
180
+
181
+ &.active::before {
182
+ content: "";
183
+ position: absolute;
184
+ top: 7px;
185
+ bottom: 7px;
186
+ left: -1px;
187
+ width: 2px;
188
+ background: var(--accent);
189
+ border-radius: 2px;
190
+ }
191
+
192
+ .count {
193
+ margin-left: auto;
194
+ font-family: var(--font-mono);
195
+ font-size: 11px;
196
+ color: var(--text-subtle);
197
+ }
198
+ }
199
+ }
200
+
201
+ .docs-content {
202
+ min-width: 0;
203
+ max-width: 920px;
204
+ padding: 48px 64px 120px;
205
+ }
206
+
207
+ .docs-toc {
208
+ position: sticky;
209
+ top: 56px;
210
+ max-height: calc(100vh - 56px);
211
+ padding: 60px 24px 40px 12px;
212
+ overflow-y: auto;
213
+ font-size: 12.5px;
214
+
215
+ .toc-title {
216
+ margin-bottom: 12px;
217
+ font-size: 11px;
218
+ font-weight: 600;
219
+ text-transform: uppercase;
220
+ letter-spacing: 0.08em;
221
+ color: var(--text-subtle);
222
+ }
223
+
224
+ a {
225
+ display: block;
226
+ margin-left: -1px;
227
+ padding: 4px 0 4px 12px;
228
+ border-left: 1px solid var(--border);
229
+ color: var(--text-muted);
230
+ transition: color 0.12s, border-color 0.12s;
231
+
232
+ &:hover { color: var(--text); }
233
+
234
+ &.active {
235
+ border-left-color: var(--accent);
236
+ color: var(--text);
237
+ }
238
+ }
239
+ }
240
+
241
+ .docs-eyebrow {
242
+ display: inline-flex;
243
+ align-items: center;
244
+ gap: 8px;
245
+ margin-bottom: 16px;
246
+ font-family: var(--font-mono);
247
+ font-size: 12px;
248
+ color: var(--text-muted);
249
+
250
+ .dot {
251
+ width: 6px;
252
+ height: 6px;
253
+ background: var(--accent);
254
+ border-radius: 50%;
255
+ }
256
+ }
257
+
258
+ .docs-title {
259
+ margin: 0 0 16px;
260
+ font-size: 44px;
261
+ font-weight: 500;
262
+ line-height: 1.05;
263
+ letter-spacing: -0.025em;
264
+ }
265
+
266
+ .docs-lede {
267
+ max-width: 60ch;
268
+ margin: 0 0 28px;
269
+ font-size: 17px;
270
+ line-height: 1.6;
271
+ color: var(--text-muted);
272
+ text-wrap: pretty;
273
+ }
274
+
275
+ .docs-meta-row {
276
+ display: flex;
277
+ flex-wrap: wrap;
278
+ gap: 8px 18px;
279
+ margin-bottom: 36px;
280
+ font-family: var(--font-mono);
281
+ font-size: 13px;
282
+ color: var(--text-muted);
283
+
284
+ > span { display: inline-flex; align-items: center; gap: 6px; }
285
+
286
+ .sep { width: 1px; height: 12px; background: var(--border-strong); }
287
+ strong { color: var(--text); font-weight: 500; }
288
+ }
289
+
290
+ .docs-install {
291
+ display: flex;
292
+ align-items: stretch;
293
+ max-width: 540px;
294
+ background: var(--surface);
295
+ border: 1px solid var(--border);
296
+ border-radius: var(--radius-lg);
297
+ font-family: var(--font-mono);
298
+ font-size: 13px;
299
+ overflow: hidden;
300
+
301
+ .tabs { display: flex; border-right: 1px solid var(--border); }
302
+
303
+ .tab {
304
+ display: inline-flex;
305
+ align-items: center;
306
+ padding: 0 14px;
307
+ background: transparent;
308
+ border: none;
309
+ border-right: 1px solid var(--border);
310
+ font-family: var(--font-mono);
311
+ font-size: 12px;
312
+ color: var(--text-subtle);
313
+ transition: background 0.12s, color 0.12s;
314
+ }
315
+
316
+ .tab:last-child { border-right: none; }
317
+ .tab[aria-selected="true"] { background: var(--bg-elev); color: var(--text); }
318
+
319
+ .cmd {
320
+ display: flex;
321
+ align-items: center;
322
+ flex: 1;
323
+ gap: 12px;
324
+ padding: 12px 16px;
325
+ color: var(--text);
326
+
327
+ .prompt { color: var(--text-subtle); user-select: none; }
328
+
329
+ button {
330
+ display: inline-grid;
331
+ place-items: center;
332
+ margin-left: auto;
333
+ padding: 4px;
334
+ background: transparent;
335
+ border: none;
336
+ border-radius: 4px;
337
+ color: var(--text-muted);
338
+ transition: background 0.12s, color 0.12s;
339
+
340
+ &:hover { background: var(--surface-2); color: var(--text); }
341
+ }
342
+ }
343
+ }
344
+
345
+ .docs-section {
346
+ scroll-margin-top: 72px;
347
+ margin-top: var(--section-pad);
348
+ padding-top: var(--section-pad);
349
+ border-top: 1px solid var(--border);
350
+
351
+ &:first-of-type {
352
+ margin-top: var(--section-pad);
353
+ padding-top: 0;
354
+ border-top: none;
355
+ }
356
+ }
357
+
358
+ .docs-section-eyebrow {
359
+ margin-bottom: 8px;
360
+ font-family: var(--font-mono);
361
+ font-size: 11px;
362
+ text-transform: uppercase;
363
+ letter-spacing: 0.08em;
364
+ color: var(--text-subtle);
365
+ }
366
+
367
+ .docs-section-title {
368
+ margin: 0 0 8px;
369
+ font-size: 28px;
370
+ font-weight: 500;
371
+ letter-spacing: -0.02em;
372
+ }
373
+
374
+ .docs-section-desc {
375
+ max-width: 65ch;
376
+ margin: 0 0 32px;
377
+ font-size: 15px;
378
+ color: var(--text-muted);
379
+ text-wrap: pretty;
380
+ }
381
+
382
+ .docs-subsection-title {
383
+ margin: 40px 0 12px;
384
+ font-size: 17px;
385
+ font-weight: 500;
386
+ letter-spacing: -0.01em;
387
+ scroll-margin-top: 72px;
388
+
389
+ &:first-child { margin-top: 0; }
390
+ }
391
+
392
+ .docs-tokens {
393
+ background: var(--bg-elev);
394
+ border: 1px solid var(--border);
395
+ border-radius: var(--radius-lg);
396
+ overflow: hidden;
397
+ }
398
+
399
+ .docs-token-row {
400
+ display: grid;
401
+ grid-template-columns: 56px minmax(180px, 1.4fr) minmax(180px, 1.4fr) auto;
402
+ align-items: center;
403
+ gap: 16px;
404
+ padding: var(--row-pad-y) 18px;
405
+ border-top: 1px solid var(--border);
406
+ transition: background 0.12s;
407
+
408
+ &:first-child { border-top: none; }
409
+ &:hover { background: var(--surface); }
410
+
411
+ .swatch {
412
+ width: 28px;
413
+ height: 28px;
414
+ border: 1px solid var(--border-strong);
415
+ border-radius: 8px;
416
+ box-shadow: inset 0 0 0 1px rgb(255 255 255 / 4%);
417
+ }
418
+
419
+ .name {
420
+ font-size: 13.5px;
421
+ font-weight: 500;
422
+
423
+ .desc {
424
+ display: block;
425
+ margin-top: 2px;
426
+ font-size: 12.5px;
427
+ font-weight: 400;
428
+ color: var(--text-muted);
429
+ }
430
+ }
431
+
432
+ .var,
433
+ .hex-val {
434
+ font-family: var(--font-mono);
435
+ font-size: 12.5px;
436
+ }
437
+
438
+ .var { color: var(--text-muted); }
439
+ .hex-val { color: var(--text); }
440
+
441
+ &:hover .copy-btn {
442
+ background: var(--bg-elev);
443
+ border-color: var(--border);
444
+ color: var(--text-muted);
445
+ }
446
+ }
447
+
448
+ .docs-copy-btn {
449
+ display: inline-flex;
450
+ align-items: center;
451
+ gap: 6px;
452
+ padding: 4px 8px;
453
+ background: transparent;
454
+ border: 1px solid transparent;
455
+ border-radius: 6px;
456
+ font-family: var(--font-mono);
457
+ font-size: 11px;
458
+ color: var(--text-subtle);
459
+ transition: background 0.12s, color 0.12s, border-color 0.12s;
460
+
461
+ &:hover { color: var(--text); }
462
+ &.copied { color: var(--gb-success); border-color: color-mix(in oklab, var(--gb-success) 30%, var(--border)); }
463
+ }
464
+
465
+ .docs-demo {
466
+ background: var(--bg-elev);
467
+ border: 1px solid var(--border);
468
+ border-radius: var(--radius-lg);
469
+ overflow: hidden;
470
+
471
+ .tabs {
472
+ display: flex;
473
+ align-items: center;
474
+ gap: 2px;
475
+ height: 38px;
476
+ padding: 0 8px;
477
+ background: var(--surface);
478
+ border-bottom: 1px solid var(--border);
479
+ }
480
+
481
+ .tab {
482
+ display: inline-flex;
483
+ align-items: center;
484
+ gap: 6px;
485
+ height: 26px;
486
+ padding: 0 12px;
487
+ background: transparent;
488
+ border: none;
489
+ border-radius: 5px;
490
+ font-size: 12.5px;
491
+ color: var(--text-muted);
492
+ transition: background 0.12s, color 0.12s;
493
+
494
+ &:hover { color: var(--text); }
495
+ &[aria-selected="true"] { background: var(--bg-elev); color: var(--text); box-shadow: var(--shadow-sm); }
496
+
497
+ .ico { width: 13px; height: 13px; opacity: 0.7; }
498
+ }
499
+
500
+ .stage {
501
+ display: flex;
502
+ flex-wrap: wrap;
503
+ align-items: center;
504
+ gap: 16px;
505
+ min-height: 120px;
506
+ padding: 36px;
507
+ background:
508
+ linear-gradient(var(--bg-elev), var(--bg-elev)),
509
+ repeating-linear-gradient(0deg, transparent 0 23px, var(--surface-2) 23px 24px),
510
+ repeating-linear-gradient(90deg, transparent 0 23px, var(--surface-2) 23px 24px);
511
+ background-blend-mode: normal, multiply, multiply;
512
+
513
+ &.center { justify-content: center; }
514
+ &.column { flex-direction: column; align-items: flex-start; gap: 12px; }
515
+ }
516
+
517
+ .code {
518
+ margin: 0;
519
+ padding: 18px 20px;
520
+ background: var(--bg-elev);
521
+ color: var(--text);
522
+ font-family: var(--font-mono);
523
+ font-size: 12.5px;
524
+ line-height: 1.65;
525
+ overflow-x: auto;
526
+ white-space: pre;
527
+ }
528
+
529
+ &[data-active="code"] .stage { display: none; }
530
+ &[data-active="preview"] .code { display: none; }
531
+ }
532
+
533
+ .tok-tag { color: oklch(0.55 0.13 28); }
534
+ .tok-attr { color: oklch(0.5 0.13 280); }
535
+ .tok-str { color: oklch(0.5 0.13 150); }
536
+ .tok-com { color: var(--text-subtle); font-style: italic; }
537
+
538
+ [data-theme="dark"] .tok-tag { color: oklch(0.7 0.13 25); }
539
+ [data-theme="dark"] .tok-attr { color: oklch(0.7 0.13 280); }
540
+ [data-theme="dark"] .tok-str { color: oklch(0.7 0.13 150); }
541
+
542
+ #input .gc-input {
543
+ width: 100%;
544
+ max-width: 280px;
545
+ }
546
+
547
+ .docs-icon-grid {
548
+ display: grid;
549
+ grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
550
+ gap: 1px;
551
+ background: var(--border);
552
+ border: 1px solid var(--border);
553
+ border-radius: var(--radius-lg);
554
+ overflow: hidden;
555
+ }
556
+
557
+ .docs-icon-cell {
558
+ display: flex;
559
+ flex-direction: column;
560
+ align-items: center;
561
+ justify-content: center;
562
+ gap: 8px;
563
+ aspect-ratio: 1.4 / 1;
564
+ background: var(--bg-elev);
565
+ font-family: var(--font-mono);
566
+ font-size: 11px;
567
+ color: var(--text-subtle);
568
+ cursor: pointer;
569
+ transition: background 0.12s, color 0.12s;
570
+
571
+ &:hover { background: var(--surface); color: var(--text); }
572
+
573
+ svg { width: 18px; height: 18px; color: var(--text); }
574
+ }
575
+
576
+ .docs-type-row {
577
+ display: grid;
578
+ grid-template-columns: 80px 80px 1fr;
579
+ gap: 24px;
580
+ align-items: baseline;
581
+ padding: 14px 0;
582
+ border-top: 1px solid var(--border);
583
+
584
+ &:first-child { border-top: none; }
585
+
586
+ .meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-subtle); }
587
+ .sample { color: var(--text); }
588
+ }
589
+
590
+ .docs-space-grid {
591
+ background: var(--bg-elev);
592
+ border: 1px solid var(--border);
593
+ border-radius: var(--radius-lg);
594
+ overflow: hidden;
595
+ }
596
+
597
+ .docs-space-row {
598
+ display: grid;
599
+ grid-template-columns: 60px 80px 80px 1fr;
600
+ gap: 16px;
601
+ align-items: center;
602
+ padding: 10px 18px;
603
+ border-top: 1px solid var(--border);
604
+
605
+ &:first-child { border-top: none; }
606
+
607
+ .token,
608
+ .px { font-family: var(--font-mono); font-size: 12.5px; }
609
+ .px { color: var(--text-muted); }
610
+
611
+ .vis { height: 12px; background: color-mix(in oklab, var(--accent) 18%, transparent); border-radius: 2px; }
612
+
613
+ .swatch-radius { width: 36px; height: 24px; background: var(--surface-2); border: 1px solid var(--border-strong); }
614
+ }
615
+
616
+ .docs-comp-index {
617
+ display: grid;
618
+ grid-template-columns: repeat(4, 1fr);
619
+ gap: 1px;
620
+ margin-top: 28px;
621
+ background: var(--border);
622
+ border: 1px solid var(--border);
623
+ border-radius: var(--radius-lg);
624
+ overflow: hidden;
625
+
626
+ a {
627
+ display: flex;
628
+ flex-direction: column;
629
+ gap: 4px;
630
+ padding: 14px 16px;
631
+ background: var(--bg-elev);
632
+ font-size: 13px;
633
+ transition: background 0.12s;
634
+
635
+ &:hover { background: var(--surface); }
636
+
637
+ .nm { color: var(--text); font-weight: 500; }
638
+ .st { font-family: var(--font-mono); font-size: 11px; color: var(--text-subtle); }
639
+ }
640
+ }
641
+
642
+ .docs-footer {
643
+ display: flex;
644
+ flex-wrap: wrap;
645
+ justify-content: space-between;
646
+ gap: 16px;
647
+ margin-top: 80px;
648
+ padding-top: 24px;
649
+ border-top: 1px solid var(--border);
650
+ font-family: var(--font-mono);
651
+ font-size: 12.5px;
652
+ color: var(--text-subtle);
653
+ }
654
+
655
+ .docs-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
656
+ .docs-col { display: flex; flex-direction: column; gap: 12px; }
657
+ .docs-spacer-y { height: 16px; }
658
+
659
+ .docs-dialog-content {
660
+ max-width: 320px;
661
+
662
+ h4 {
663
+ margin: 0 0 8px;
664
+ font-size: 17px;
665
+ font-weight: 500;
666
+ }
667
+
668
+ p {
669
+ margin: 0 0 18px;
670
+ color: var(--text-muted);
671
+ font-size: 13.5px;
672
+ }
673
+ }
674
+
675
+ .docs-card-eyebrow {
676
+ font-family: var(--font-mono);
677
+ font-size: 11px;
678
+ letter-spacing: 0.06em;
679
+ text-transform: uppercase;
680
+ color: var(--text-subtle);
681
+ margin-bottom: 8px;
682
+ }
683
+
684
+ .docs-card-title {
685
+ margin: 0 0 6px;
686
+ font-size: 16px;
687
+ font-weight: 500;
688
+ }
689
+
690
+ .docs-card-text {
691
+ margin: 0 0 14px;
692
+ font-size: 13.5px;
693
+ line-height: 1.55;
694
+ color: var(--text-muted);
695
+ }
696
+
697
+ @media (max-width: 1180px) {
698
+ .docs-app { grid-template-columns: 240px minmax(0, 1fr); }
699
+ .docs-toc { display: none; }
700
+ .docs-content { padding: 40px 40px 80px; }
701
+ }
702
+
703
+ @media (max-width: 760px) {
704
+ .docs-app { grid-template-columns: 1fr; }
705
+ .docs-sidebar { display: none; }
706
+ .docs-content { padding: 28px 20px 60px; }
707
+ .docs-comp-index { grid-template-columns: repeat(2, 1fr); }
708
+ .docs-title { font-size: 34px; }
709
+ }
package/src/example.scss CHANGED
@@ -35,6 +35,7 @@
35
35
  @import "components/PanelTitle/styles/styles";
36
36
  @import "components/Sample/styles/mixins";
37
37
  @import "components/Sample/styles/styles";
38
+ @import "components/SectionHeader/styles/styles";
38
39
  @import "components/Separator/styles/styles";
39
40
  @import "components/Scroller/styles/styles";
40
41
  @import "components/Switch/styles/mixins";
@@ -43,7 +44,9 @@
43
44
  @import "components/Tooltip/styles/styles";
44
45
  @import "components/Validation/styles/styles";
45
46
  @import "components/Accordion/styles/styles";
47
+ @import "components/Badge/styles/styles";
46
48
  @import "components/Dropdown/styles/styles";
47
49
  @import "components/Skeleton/styles/styles";
48
50
  @import "example/styles/splash";
49
51
  @import "example/styles/styles";
52
+ @import "example/styles/docs";