@elench/shell 0.1.10 → 0.1.11

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 (2) hide show
  1. package/dist/styles.css +689 -1
  2. package/package.json +2 -2
package/dist/styles.css CHANGED
@@ -1,5 +1,693 @@
1
- @import "flexlayout-react/style/light.css";
1
+ /* flexlayout-react/style/light.css */
2
+ .flexlayout__layout {
3
+ --color-text: black;
4
+ --color-background: white;
5
+ --color-base: white;
6
+ --color-1: rgb(247.35, 247.35, 247.35);
7
+ --color-2: rgb(239.7, 239.7, 239.7);
8
+ --color-3: rgb(232.05, 232.05, 232.05);
9
+ --color-4: rgb(224.4, 224.4, 224.4);
10
+ --color-5: rgb(216.75, 216.75, 216.75);
11
+ --color-6: rgb(209.1, 209.1, 209.1);
12
+ --color-drag1: rgb(95, 134, 196);
13
+ --color-drag2: rgb(119, 166, 119);
14
+ --color-drag1-background: rgba(95, 134, 196, 0.1);
15
+ --color-drag2-background: rgba(119, 166, 119, 0.075);
16
+ --font-size: medium;
17
+ --font-family: Roboto, Arial, sans-serif;
18
+ --color-overflow: gray;
19
+ --color-icon: gray;
20
+ --color-tabset-background: var(--color-background);
21
+ --color-tabset-background-selected: var(--color-1);
22
+ --color-tabset-background-maximized: var(--color-2);
23
+ --color-tabset-divider-line: var(--color-4);
24
+ --color-tabset-header-background: var(--color-background);
25
+ --color-tabset-header: var(--color-text);
26
+ --color-border-tab-content: var(--color-background);
27
+ --color-border-background: var(--color-background);
28
+ --color-border-divider-line: var(--color-4);
29
+ --color-tab-content: var(--color-background);
30
+ --color-tab-selected: var(--color-text);
31
+ --color-tab-selected-background: var(--color-4);
32
+ --color-tab-unselected: gray;
33
+ --color-tab-unselected-background: transparent;
34
+ --color-tab-textbox: var(--color-text);
35
+ --color-tab-textbox-background: var(--color-3);
36
+ --color-border-tab-selected: var(--color-text);
37
+ --color-border-tab-selected-background: var(--color-4);
38
+ --color-border-tab-unselected: gray;
39
+ --color-border-tab-unselected-background: var(--color-2);
40
+ --color-splitter: var(--color-1);
41
+ --color-splitter-hover: var(--color-4);
42
+ --color-splitter-drag: var(--color-4);
43
+ --color-drag-rect-border: #ccc;
44
+ --color-drag-rect-background: var(--color-5);
45
+ --color-drag-rect: var(--color-text);
46
+ --color-popup-border: var(--color-6);
47
+ --color-popup-unselected: var(--color-text);
48
+ --color-popup-unselected-background: white;
49
+ --color-popup-selected: var(--color-text);
50
+ --color-popup-selected-background: var(--color-3);
51
+ --color-edge-marker: #aaa;
52
+ --color-edge-icon: #555;
53
+ --color-mini-scroll-indicator: rgba(128, 128, 128, 0.5);
54
+ --color-mini-scroll-indicator-hovered: rgba(128, 128, 128, 0.7);
55
+ --size-mini-scroll-indicator: 3px;
56
+ --color-toolbar-button-hover: var(--color-3);
57
+ }
58
+
59
+ /*
60
+ base classes
61
+ */
62
+ .flexlayout__layout {
63
+ left: 0;
64
+ top: 0;
65
+ right: 0;
66
+ bottom: 0;
67
+ position: absolute;
68
+ display: flex;
69
+ overflow: hidden;
70
+ background-color: var(--color-background);
71
+ }
72
+ .flexlayout__layout_overlay {
73
+ left: 0;
74
+ top: 0;
75
+ right: 0;
76
+ bottom: 0;
77
+ position: absolute;
78
+ z-index: 1000;
79
+ }
80
+ .flexlayout__layout_tab_stamps {
81
+ position: absolute;
82
+ top: -10000px;
83
+ z-index: 100;
84
+ display: flex;
85
+ flex-direction: column;
86
+ align-items: start;
87
+ }
88
+ .flexlayout__layout_moveables {
89
+ visibility: hidden;
90
+ position: absolute;
91
+ width: 100px;
92
+ height: 100px;
93
+ top: -20000px;
94
+ }
95
+ .flexlayout__layout_main {
96
+ display: flex;
97
+ flex-basis: 0px;
98
+ min-width: 0;
99
+ min-height: 0;
100
+ flex-grow: 1;
101
+ position: relative;
102
+ }
103
+ .flexlayout__layout_border_container {
104
+ display: flex;
105
+ flex-basis: 0px;
106
+ min-width: 0;
107
+ min-height: 0;
108
+ flex-grow: 1;
109
+ }
110
+ .flexlayout__layout_border_container_inner {
111
+ display: flex;
112
+ flex-basis: 0px;
113
+ min-width: 0;
114
+ min-height: 0;
115
+ flex-grow: 1;
116
+ }
117
+ .flexlayout__splitter {
118
+ display: flex;
119
+ align-items: center;
120
+ justify-content: center;
121
+ background-color: var(--color-splitter);
122
+ touch-action: none;
123
+ z-index: 10;
124
+ }
125
+ @media (hover: hover) {
126
+ .flexlayout__splitter:hover {
127
+ background-color: var(--color-splitter-hover);
128
+ transition: background-color ease-in 0.1s;
129
+ transition-delay: 0.05s;
130
+ border-radius: 5px;
131
+ }
132
+ }
133
+ .flexlayout__splitter_drag {
134
+ position: absolute;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ z-index: 1000;
139
+ border-radius: 5px;
140
+ background-color: var(--color-splitter-drag);
141
+ }
142
+ .flexlayout__splitter_handle {
143
+ background-color: #ccc;
144
+ border-radius: 3px;
145
+ }
146
+ .flexlayout__splitter_handle_horz {
147
+ width: 3px;
148
+ height: 30px;
149
+ }
150
+ .flexlayout__splitter_handle_vert {
151
+ width: 30px;
152
+ height: 3px;
153
+ }
154
+ .flexlayout__splitter_extra {
155
+ touch-action: none;
156
+ background-color: transparent;
157
+ }
158
+ .flexlayout__outline_rect {
159
+ position: absolute;
160
+ pointer-events: none;
161
+ box-sizing: border-box;
162
+ border: 2px solid var(--color-drag1);
163
+ background: var(--color-drag1-background);
164
+ border-radius: 5px;
165
+ z-index: 1000;
166
+ }
167
+ .flexlayout__outline_rect_edge {
168
+ pointer-events: none;
169
+ border: 2px solid var(--color-drag2);
170
+ background: var(--color-drag2-background);
171
+ border-radius: 5px;
172
+ z-index: 1000;
173
+ box-sizing: border-box;
174
+ }
175
+ .flexlayout__edge_rect {
176
+ position: absolute;
177
+ z-index: 1000;
178
+ background-color: var(--color-edge-marker);
179
+ pointer-events: none;
180
+ display: flex;
181
+ align-items: center;
182
+ justify-content: center;
183
+ }
184
+ .flexlayout__drag_rect {
185
+ color: var(--color-drag-rect);
186
+ background-color: var(--color-drag-rect-background);
187
+ border: 2px solid var(--color-drag-rect-border);
188
+ border-radius: 5px;
189
+ box-sizing: border-box;
190
+ display: flex;
191
+ justify-content: center;
192
+ flex-direction: column;
193
+ overflow: hidden;
194
+ padding: 0.3em 0.8em;
195
+ word-wrap: break-word;
196
+ font-size: var(--font-size);
197
+ font-family: var(--font-family);
198
+ }
199
+ .flexlayout__row {
200
+ display: flex;
201
+ flex-basis: 0px;
202
+ min-width: 0;
203
+ min-height: 0;
204
+ position: relative;
205
+ box-sizing: border-box;
206
+ overflow: hidden;
207
+ }
208
+ .flexlayout__tabset {
209
+ display: flex;
210
+ flex-direction: column;
211
+ position: relative;
212
+ background-color: var(--color-tabset-background);
213
+ box-sizing: border-box;
214
+ font-family: var(--font-family);
215
+ overflow: hidden;
216
+ flex-grow: 1;
217
+ }
218
+ .flexlayout__tabset_container {
219
+ display: flex;
220
+ flex-basis: 0px;
221
+ min-width: 0;
222
+ min-height: 0;
223
+ flex-direction: column;
224
+ overflow: hidden;
225
+ flex-grow: 1;
226
+ }
227
+ .flexlayout__tabset_tab_divider {
228
+ width: 4px;
229
+ }
230
+ .flexlayout__tabset_content {
231
+ display: flex;
232
+ flex-basis: 0px;
233
+ min-width: 0;
234
+ min-height: 0;
235
+ flex-grow: 1;
236
+ box-sizing: border-box;
237
+ position: relative;
238
+ }
239
+ .flexlayout__tabset_leading {
240
+ display: flex;
241
+ }
242
+ .flexlayout__tabset_header {
243
+ display: flex;
244
+ align-items: center;
245
+ padding: 3px 3px 3px 5px;
246
+ box-sizing: border-box;
247
+ border-bottom: 1px solid var(--color-tabset-divider-line);
248
+ color: var(--color-tabset-header);
249
+ background-color: var(--color-tabset-header-background);
250
+ font-size: var(--font-size);
251
+ }
252
+ .flexlayout__tabset_header_content {
253
+ flex-grow: 1;
254
+ }
255
+ .flexlayout__tabset_tabbar_outer {
256
+ box-sizing: border-box;
257
+ background-color: var(--color-tabset-background);
258
+ overflow: hidden;
259
+ display: flex;
260
+ font-size: var(--font-size);
261
+ }
262
+ .flexlayout__tabset_tabbar_outer_top {
263
+ padding: 0px 2px 0px 2px;
264
+ border-bottom: 1px solid var(--color-tabset-divider-line);
265
+ }
266
+ .flexlayout__tabset_tabbar_outer_bottom {
267
+ padding: 0px 2px 0px 2px;
268
+ border-top: 1px solid var(--color-tabset-divider-line);
269
+ }
270
+ .flexlayout__tabset_tabbar_inner {
271
+ position: relative;
272
+ box-sizing: border-box;
273
+ display: flex;
274
+ flex-grow: 1;
275
+ scrollbar-width: none;
276
+ }
277
+ .flexlayout__tabset_tabbar_inner::-webkit-scrollbar {
278
+ display: none;
279
+ }
280
+ .flexlayout__tabset_tabbar_inner_tab_container {
281
+ position: relative;
282
+ display: flex;
283
+ padding-left: 4px;
284
+ padding-right: 4px;
285
+ box-sizing: border-box;
286
+ white-space: nowrap;
287
+ }
288
+ .flexlayout__tabset_tabbar_inner_tab_container_top {
289
+ border-top: 2px solid transparent;
290
+ }
291
+ .flexlayout__tabset_tabbar_inner_tab_container_bottom {
292
+ border-bottom: 2px solid transparent;
293
+ }
294
+ .flexlayout__tabset-selected {
295
+ background-color: var(--color-tabset-background-selected);
296
+ }
297
+ .flexlayout__tabset-maximized {
298
+ background-color: var(--color-tabset-background-maximized);
299
+ }
300
+ .flexlayout__tab_button_stamp {
301
+ display: inline-flex;
302
+ align-items: center;
303
+ gap: 0.3em;
304
+ white-space: nowrap;
305
+ box-sizing: border-box;
306
+ }
307
+ .flexlayout__tab {
308
+ overflow: hidden;
309
+ box-sizing: border-box;
310
+ background-color: var(--color-tab-content);
311
+ color: var(--color-text);
312
+ position: relative;
313
+ }
314
+ .flexlayout__tab_moveable {
315
+ position: relative;
316
+ height: 100%;
317
+ min-width: 1px;
318
+ min-height: 1px;
319
+ overflow: auto;
320
+ box-sizing: border-box;
321
+ }
322
+ .flexlayout__tab_overlay {
323
+ z-index: 20;
324
+ position: absolute;
325
+ top: 0;
326
+ left: 0;
327
+ right: 0;
328
+ bottom: 0;
329
+ background-color: rgba(0, 0, 0, 0.2392156863);
330
+ }
331
+ .flexlayout__tab_button {
332
+ display: flex;
333
+ gap: 0.3em;
334
+ align-items: center;
335
+ box-sizing: border-box;
336
+ padding: 3px 0.5em;
337
+ cursor: pointer;
338
+ }
339
+ .flexlayout__tab_button_stretch {
340
+ background-color: transparent;
341
+ color: var(--color-tab-selected);
342
+ width: 100%;
343
+ padding: 3px 0em;
344
+ text-wrap: nowrap;
345
+ display: flex;
346
+ gap: 0.3em;
347
+ align-items: center;
348
+ box-sizing: border-box;
349
+ cursor: pointer;
350
+ }
351
+ @media (hover: hover) {
352
+ .flexlayout__tab_button_stretch:hover {
353
+ color: var(--color-tab-selected);
354
+ }
355
+ }
356
+ .flexlayout__tab_button--selected {
357
+ background-color: var(--color-tab-selected-background);
358
+ color: var(--color-tab-selected);
359
+ }
360
+ @media (hover: hover) {
361
+ .flexlayout__tab_button:hover {
362
+ color: var(--color-tab-selected);
363
+ }
364
+ }
365
+ .flexlayout__tab_button--unselected {
366
+ background-color: var(--color-tab-unselected-background);
367
+ color: var(--color-tab-unselected);
368
+ }
369
+ .flexlayout__tab_button_leading {
370
+ display: flex;
371
+ }
372
+ .flexlayout__tab_button_content {
373
+ display: flex;
374
+ text-wrap: nowrap;
375
+ }
376
+ .flexlayout__tab_button_textbox {
377
+ border: none;
378
+ font-family: var(--font-family);
379
+ font-size: var(--font-size);
380
+ color: var(--color-tab-textbox);
381
+ background-color: var(--color-tab-textbox-background);
382
+ border: 1px inset var(--color-1);
383
+ border-radius: 3px;
384
+ width: 10em;
385
+ }
386
+ .flexlayout__tab_button_textbox:focus {
387
+ outline: none;
388
+ }
389
+ .flexlayout__tab_button_trailing {
390
+ display: flex;
391
+ visibility: hidden;
392
+ border-radius: 4px;
393
+ }
394
+ .flexlayout__tab_button_trailing:hover {
395
+ background-color: var(--color-toolbar-button-hover);
396
+ }
397
+ @media (hover: hover) {
398
+ .flexlayout__tab_button:hover .flexlayout__tab_button_trailing {
399
+ visibility: visible;
400
+ }
401
+ }
402
+ .flexlayout__tab_button--selected .flexlayout__tab_button_trailing {
403
+ visibility: visible;
404
+ }
405
+ .flexlayout__tab_button_overflow {
406
+ display: flex;
407
+ align-items: center;
408
+ border: none;
409
+ color: var(--color-overflow);
410
+ font-size: inherit;
411
+ background-color: transparent;
412
+ width: 2em;
413
+ overflow: hidden;
414
+ }
415
+ .flexlayout__tab_toolbar {
416
+ display: flex;
417
+ align-items: center;
418
+ gap: 0.3em;
419
+ padding-left: 0.5em;
420
+ padding-right: 0.3em;
421
+ }
422
+ .flexlayout__tab_toolbar_icon {
423
+ border: none;
424
+ outline: none;
425
+ font-size: inherit;
426
+ margin: 0px;
427
+ background-color: transparent;
428
+ padding: 1px;
429
+ }
430
+ .flexlayout__tab_toolbar_button {
431
+ border: none;
432
+ outline: none;
433
+ font-size: inherit;
434
+ margin: 0px;
435
+ background-color: transparent;
436
+ border-radius: 4px;
437
+ padding: 1px;
438
+ }
439
+ @media (hover: hover) {
440
+ .flexlayout__tab_toolbar_button:hover {
441
+ background-color: var(--color-toolbar-button-hover);
442
+ }
443
+ }
444
+ .flexlayout__tab_toolbar_sticky_buttons_container {
445
+ display: flex;
446
+ gap: 0.3em;
447
+ padding-left: 5px;
448
+ align-items: center;
449
+ }
450
+ .flexlayout__border {
451
+ box-sizing: border-box;
452
+ overflow: hidden;
453
+ display: flex;
454
+ font-size: var(--font-size);
455
+ font-family: var(--font-family);
456
+ color: var(--color-border);
457
+ background-color: var(--color-border-background);
458
+ }
459
+ .flexlayout__border_tab_contents {
460
+ box-sizing: border-box;
461
+ overflow: hidden;
462
+ background-color: var(--color-border-tab-content);
463
+ }
464
+ .flexlayout__border_leading {
465
+ display: flex;
466
+ }
467
+ .flexlayout__border_top {
468
+ border-bottom: 1px solid var(--color-border-divider-line);
469
+ align-items: center;
470
+ }
471
+ .flexlayout__border_bottom {
472
+ border-top: 1px solid var(--color-border-divider-line);
473
+ align-items: center;
474
+ }
475
+ .flexlayout__border_left {
476
+ border-right: 1px solid var(--color-border-divider-line);
477
+ align-content: center;
478
+ flex-direction: column;
479
+ }
480
+ .flexlayout__border_right {
481
+ border-left: 1px solid var(--color-border-divider-line);
482
+ align-content: center;
483
+ flex-direction: column;
484
+ }
485
+ .flexlayout__border_inner {
486
+ position: relative;
487
+ box-sizing: border-box;
488
+ align-items: center;
489
+ display: flex;
490
+ flex-grow: 1;
491
+ scrollbar-width: none;
492
+ }
493
+ .flexlayout__border_inner::-webkit-scrollbar {
494
+ display: none;
495
+ }
496
+ .flexlayout__border_inner_tab_container {
497
+ white-space: nowrap;
498
+ display: flex;
499
+ padding-left: 2px;
500
+ padding-right: 2px;
501
+ box-sizing: border-box;
502
+ position: absolute;
503
+ }
504
+ .flexlayout__border_inner_tab_container_right {
505
+ transform-origin: top left;
506
+ transform: rotate(90deg);
507
+ }
508
+ .flexlayout__border_inner_tab_container_left {
509
+ flex-direction: row-reverse;
510
+ transform-origin: top right;
511
+ transform: rotate(-90deg);
512
+ }
513
+ .flexlayout__border_tab_divider {
514
+ width: 4px;
515
+ }
516
+ .flexlayout__border_button {
517
+ display: flex;
518
+ gap: 0.3em;
519
+ align-items: center;
520
+ cursor: pointer;
521
+ padding: 3px 0.5em;
522
+ margin: 2px 0px;
523
+ box-sizing: border-box;
524
+ white-space: nowrap;
525
+ }
526
+ .flexlayout__border_button--selected {
527
+ background-color: var(--color-border-tab-selected-background);
528
+ color: var(--color-border-tab-selected);
529
+ }
530
+ @media (hover: hover) {
531
+ .flexlayout__border_button:hover {
532
+ color: var(--color-border-tab-selected);
533
+ }
534
+ }
535
+ .flexlayout__border_button--unselected {
536
+ background-color: var(--color-border-tab-unselected-background);
537
+ color: var(--color-border-tab-unselected);
538
+ }
539
+ .flexlayout__border_button_leading {
540
+ display: flex;
541
+ }
542
+ .flexlayout__border_button_content {
543
+ display: flex;
544
+ }
545
+ .flexlayout__border_button_trailing {
546
+ display: flex;
547
+ border-radius: 4px;
548
+ visibility: hidden;
549
+ }
550
+ @media (hover: hover) {
551
+ .flexlayout__border_button:hover .flexlayout__border_button_trailing {
552
+ visibility: visible;
553
+ }
554
+ }
555
+ .flexlayout__border_button--selected .flexlayout__border_button_trailing {
556
+ visibility: visible;
557
+ }
558
+ .flexlayout__border_toolbar {
559
+ display: flex;
560
+ gap: 0.3em;
561
+ align-items: center;
562
+ }
563
+ .flexlayout__border_toolbar_left, .flexlayout__border_toolbar_right {
564
+ flex-direction: column;
565
+ padding-top: 0.5em;
566
+ padding-bottom: 0.3em;
567
+ }
568
+ .flexlayout__border_toolbar_top, .flexlayout__border_toolbar_bottom {
569
+ padding-left: 0.5em;
570
+ padding-right: 0.3em;
571
+ }
572
+ .flexlayout__border_toolbar_button {
573
+ border: none;
574
+ outline: none;
575
+ font-size: inherit;
576
+ background-color: transparent;
577
+ border-radius: 4px;
578
+ padding: 1px;
579
+ }
580
+ @media (hover: hover) {
581
+ .flexlayout__border_toolbar_button:hover {
582
+ background-color: var(--color-toolbar-button-hover);
583
+ }
584
+ }
585
+ .flexlayout__border_toolbar_button_overflow {
586
+ display: flex;
587
+ align-items: center;
588
+ border: none;
589
+ color: var(--color-overflow);
590
+ font-size: inherit;
591
+ background-color: transparent;
592
+ width: 1.5em;
593
+ }
594
+ .flexlayout__popup_menu {
595
+ font-size: var(--font-size);
596
+ font-family: var(--font-family);
597
+ }
598
+ .flexlayout__popup_menu_item {
599
+ padding: 2px 0.5em;
600
+ white-space: nowrap;
601
+ cursor: pointer;
602
+ border-radius: 2px;
603
+ }
604
+ .flexlayout__popup_menu_item--selected {
605
+ font-weight: 500;
606
+ background-color: var(--color-tab-selected-background);
607
+ color: var(--color-tab-selected);
608
+ }
609
+ @media (hover: hover) {
610
+ .flexlayout__popup_menu_item:hover {
611
+ background-color: var(--color-6);
612
+ }
613
+ }
614
+ .flexlayout__popup_menu_container {
615
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
616
+ border: 1px solid var(--color-popup-border);
617
+ color: var(--color-popup-unselected);
618
+ background: var(--color-popup-unselected-background);
619
+ border-radius: 3px;
620
+ position: absolute;
621
+ z-index: 1000;
622
+ max-height: 50%;
623
+ min-width: 100px;
624
+ overflow: auto;
625
+ padding: 2px;
626
+ }
627
+ .flexlayout__floating_window _body {
628
+ height: 100%;
629
+ }
630
+ .flexlayout__floating_window_content {
631
+ left: 0;
632
+ top: 0;
633
+ right: 0;
634
+ bottom: 0;
635
+ position: absolute;
636
+ }
637
+ .flexlayout__error_boundary_container {
638
+ left: 0;
639
+ top: 0;
640
+ right: 0;
641
+ bottom: 0;
642
+ position: absolute;
643
+ display: flex;
644
+ justify-content: center;
645
+ }
646
+ .flexlayout__error_boundary_content {
647
+ display: flex;
648
+ align-items: center;
649
+ }
650
+ .flexlayout__border_sizer {
651
+ position: absolute;
652
+ top: -30000px;
653
+ padding-top: 6px;
654
+ padding-bottom: 5px;
655
+ font-size: var(--font-size);
656
+ font-family: var(--font-family);
657
+ }
658
+ .flexlayout__mini_scrollbar {
659
+ position: absolute;
660
+ background-color: var(--color-mini-scroll-indicator);
661
+ border-radius: 5px;
662
+ width: var(--size-mini-scroll-indicator);
663
+ height: var(--size-mini-scroll-indicator);
664
+ visibility: hidden;
665
+ opacity: 0;
666
+ transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
667
+ }
668
+ .flexlayout__mini_scrollbar:hover {
669
+ background-color: var(--color-mini-scroll-indicator-hovered);
670
+ transition: background-color 0.3s ease-in-out;
671
+ }
672
+ .flexlayout__mini_scrollbar_container {
673
+ position: relative;
674
+ display: flex;
675
+ flex-grow: 1;
676
+ overflow: hidden;
677
+ }
678
+ @media (hover: hover) {
679
+ .flexlayout__mini_scrollbar_container:hover .flexlayout__mini_scrollbar {
680
+ opacity: 1;
681
+ visibility: visible;
682
+ }
683
+ }
684
+
685
+ /* ======================== End of Base Classes =========================== */
686
+ /*
687
+ light theme overrides
688
+ */
2
689
 
690
+ /* @elench/shell/styles.css */
3
691
  /* ═══════ FlexLayout Shell Theme ═══════ */
4
692
 
5
693
  .flexlayout__layout {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elench/shell",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Reusable Elench desktop shell packaged behind a public domain API.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -19,7 +19,7 @@
19
19
  "./styles.css": "./dist/styles.css"
20
20
  },
21
21
  "scripts": {
22
- "build": "rm -rf dist && tsc -p tsconfig.json && cp src/styles.css dist/styles.css && node scripts/rewrite-dist-imports.mjs",
22
+ "build": "rm -rf dist && tsc -p tsconfig.json && node scripts/build-styles.mjs && node scripts/rewrite-dist-imports.mjs",
23
23
  "prepack": "npm run build",
24
24
  "typecheck": "tsc -p tsconfig.json --noEmit",
25
25
  "test": "vitest run --config vitest.config.ts"