@elench/shell 0.1.10 → 0.1.12

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