@layerfi/components 0.1.108-alpha.1 → 0.1.109
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.
- package/dist/cjs/index.cjs +5112 -4574
- package/dist/esm/index.mjs +5021 -4483
- package/dist/index.css +130 -250
- package/dist/index.d.ts +1163 -422
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -427,9 +427,19 @@
|
|
|
427
427
|
}
|
|
428
428
|
}
|
|
429
429
|
.Layer__btn {
|
|
430
|
+
box-sizing: border-box;
|
|
430
431
|
position: relative;
|
|
432
|
+
min-height: 36px;
|
|
433
|
+
padding: 0 var(--spacing-md);
|
|
431
434
|
border-radius: var(--btn-border-radius);
|
|
432
435
|
border-width: 0;
|
|
436
|
+
box-shadow:
|
|
437
|
+
0 0 0 1px var(--color-base-300),
|
|
438
|
+
0 1px 1px 0 rgba(0, 0, 0, 0.04),
|
|
439
|
+
0 2px 3px 0 rgba(0, 0, 0, 0.04),
|
|
440
|
+
0 3px 4px 0 rgba(0, 0, 0, 0.02),
|
|
441
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.01);
|
|
442
|
+
cursor: pointer;
|
|
433
443
|
font-family: var(--font-family);
|
|
434
444
|
font-weight: var(--font-weight-normal);
|
|
435
445
|
font-variant-numeric: lining-nums proportional-nums;
|
|
@@ -438,17 +448,7 @@
|
|
|
438
448
|
"cv05" on,
|
|
439
449
|
"cv08" on,
|
|
440
450
|
"ss03" on;
|
|
441
|
-
cursor: pointer;
|
|
442
|
-
min-height: 36px;
|
|
443
|
-
box-sizing: border-box;
|
|
444
|
-
box-shadow:
|
|
445
|
-
0 0 0 1px var(--color-base-300),
|
|
446
|
-
0 1px 1px 0 rgba(0, 0, 0, 0.04),
|
|
447
|
-
0 2px 3px 0 rgba(0, 0, 0, 0.04),
|
|
448
|
-
0 3px 4px 0 rgba(0, 0, 0, 0.02),
|
|
449
|
-
0 4px 5px 0 rgba(0, 0, 0, 0.01);
|
|
450
451
|
transition: all 100ms ease-out;
|
|
451
|
-
padding: 0 var(--spacing-md);
|
|
452
452
|
text-decoration: none;
|
|
453
453
|
white-space: nowrap;
|
|
454
454
|
}
|
|
@@ -457,38 +457,18 @@
|
|
|
457
457
|
align-items: center;
|
|
458
458
|
}
|
|
459
459
|
.Layer__btn.Layer__back-btn {
|
|
460
|
-
|
|
461
|
-
background: var(--btn-secondary-bg-color);
|
|
460
|
+
box-sizing: border-box;
|
|
462
461
|
display: flex;
|
|
463
|
-
justify-content: center;
|
|
464
462
|
align-items: center;
|
|
465
|
-
|
|
466
|
-
box-sizing: border-box;
|
|
467
|
-
transition: all 150ms ease-out;
|
|
468
|
-
padding: 0;
|
|
469
|
-
width: 36px;
|
|
463
|
+
justify-content: center;
|
|
470
464
|
height: 36px;
|
|
465
|
+
width: 36px;
|
|
471
466
|
min-width: 36px;
|
|
472
|
-
|
|
473
|
-
.Layer__btn.Layer__expand-btn {
|
|
474
|
-
color: var(--btn-secondary-color);
|
|
475
|
-
background: var(--btn-secondary-bg-color);
|
|
476
|
-
display: flex;
|
|
477
|
-
justify-content: center;
|
|
478
|
-
align-items: center;
|
|
467
|
+
padding: 0;
|
|
479
468
|
border-radius: 4px;
|
|
480
|
-
|
|
469
|
+
background: var(--btn-secondary-bg-color);
|
|
470
|
+
color: var(--btn-secondary-color);
|
|
481
471
|
transition: all 150ms ease-out;
|
|
482
|
-
padding: 0;
|
|
483
|
-
width: 36px;
|
|
484
|
-
height: 36px;
|
|
485
|
-
}
|
|
486
|
-
.Layer__btn.Layer__expand-btn svg {
|
|
487
|
-
transform: rotate(90deg);
|
|
488
|
-
transition: transform 120ms ease-in-out;
|
|
489
|
-
}
|
|
490
|
-
.Layer__btn.Layer__expand-btn.Layer__expand-btn--collapsed svg {
|
|
491
|
-
transform: rotate(-90deg);
|
|
492
472
|
}
|
|
493
473
|
.Layer__btn.Layer__btn--full-width {
|
|
494
474
|
width: 100%;
|
|
@@ -504,30 +484,30 @@
|
|
|
504
484
|
}
|
|
505
485
|
.Layer__btn .Layer__btn-content {
|
|
506
486
|
display: flex;
|
|
507
|
-
justify-content: center;
|
|
508
|
-
align-items: center;
|
|
509
487
|
column-gap: var(--spacing-xs);
|
|
488
|
+
align-items: center;
|
|
489
|
+
justify-content: center;
|
|
510
490
|
}
|
|
511
491
|
.Layer__btn .Layer__btn-content.Layer__justify--space-between {
|
|
512
492
|
justify-content: space-between;
|
|
513
493
|
}
|
|
514
494
|
.Layer__btn .Layer__btn-icon {
|
|
515
|
-
|
|
516
|
-
background: transparent;
|
|
495
|
+
box-sizing: border-box;
|
|
517
496
|
display: flex;
|
|
518
|
-
justify-content: center;
|
|
519
497
|
align-items: center;
|
|
498
|
+
justify-content: center;
|
|
520
499
|
border-radius: 4px;
|
|
521
|
-
|
|
500
|
+
background: transparent;
|
|
501
|
+
color: var(--btn-color-icon);
|
|
522
502
|
transition: all 150ms ease-out;
|
|
523
503
|
}
|
|
524
504
|
.Layer__btn .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
525
505
|
display: none;
|
|
526
506
|
}
|
|
527
507
|
.Layer__btn .Layer__btn-icon.Layer__btn-icon--primary {
|
|
528
|
-
background: var(--btn-bg-color-icon);
|
|
529
|
-
width: 32px;
|
|
530
508
|
height: 32px;
|
|
509
|
+
width: 32px;
|
|
510
|
+
background: var(--btn-bg-color-icon);
|
|
531
511
|
}
|
|
532
512
|
.Layer__btn:hover {
|
|
533
513
|
box-shadow: 0 0 0 1px var(--color-base-300), 0 1px 2px 0 var(--base-transparent-6);
|
|
@@ -549,16 +529,16 @@
|
|
|
549
529
|
color: var(--color-base-500);
|
|
550
530
|
}
|
|
551
531
|
.Layer__btn--secondary {
|
|
552
|
-
color: var(--btn-secondary-color);
|
|
553
|
-
background: var(--btn-secondary-bg-color);
|
|
554
532
|
border: 1px solid var(--border-color);
|
|
555
533
|
box-shadow: none;
|
|
534
|
+
background: var(--btn-secondary-bg-color);
|
|
535
|
+
color: var(--btn-secondary-color);
|
|
556
536
|
}
|
|
557
537
|
.Layer__btn--tertiary {
|
|
558
|
-
|
|
538
|
+
box-shadow: none;
|
|
559
539
|
background: var(--btn-tertiary-bg-color);
|
|
540
|
+
color: var(--btn-tertiary-color);
|
|
560
541
|
border-color: transparent;
|
|
561
|
-
box-shadow: none;
|
|
562
542
|
}
|
|
563
543
|
.Layer__download-retry-btn {
|
|
564
544
|
width: 122px;
|
|
@@ -567,17 +547,17 @@
|
|
|
567
547
|
width: 36px;
|
|
568
548
|
}
|
|
569
549
|
.Layer__btn--primary {
|
|
570
|
-
color: var(--btn-color-primary);
|
|
571
550
|
background: var(--btn-bg-color-primary);
|
|
551
|
+
color: var(--btn-color-primary);
|
|
572
552
|
}
|
|
573
553
|
.Layer__btn--primary:hover .Layer__btn-icon {
|
|
574
|
-
color: var(--btn-color-primary);
|
|
575
554
|
background: transparent;
|
|
555
|
+
color: var(--btn-color-primary);
|
|
576
556
|
}
|
|
577
557
|
.Layer__btn--primary:hover:not([disabled]) .Layer__btn-icon,
|
|
578
558
|
.Layer__btn--primary.Layer__btn--active:not([disabled]) .Layer__btn-icon {
|
|
579
|
-
color: var(--btn-color-icon-hover);
|
|
580
559
|
background: var(--btn-bg-color-icon-hover);
|
|
560
|
+
color: var(--btn-color-icon-hover);
|
|
581
561
|
}
|
|
582
562
|
.Layer__btn--primary:hover:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active,
|
|
583
563
|
.Layer__btn--primary.Layer__btn--active:not([disabled]) .Layer__btn-icon .Layer__btn-icon--on-active {
|
|
@@ -595,27 +575,27 @@
|
|
|
595
575
|
}
|
|
596
576
|
.Layer__btn--primary:not(.Layer__btn--with-primary-icon):hover:not([disabled]) .Layer__btn-icon,
|
|
597
577
|
.Layer__btn--primary:not(.Layer__btn--with-primary-icon).Layer__btn--active:not([disabled]) .Layer__btn-icon {
|
|
598
|
-
color: var(--btn-color-primary);
|
|
599
578
|
background: transparent;
|
|
579
|
+
color: var(--btn-color-primary);
|
|
600
580
|
}
|
|
601
581
|
.Layer__btn-content {
|
|
602
|
-
padding: 2px;
|
|
603
582
|
display: flex;
|
|
604
583
|
align-items: center;
|
|
584
|
+
padding: 2px;
|
|
605
585
|
font-size: var(--btn-font-size);
|
|
606
586
|
line-height: 100%;
|
|
607
587
|
}
|
|
608
588
|
.Layer__btn-text {
|
|
609
589
|
flex: 1;
|
|
610
|
-
font-family: var(--font-family);
|
|
611
590
|
font-size: var(--btn-font-size);
|
|
591
|
+
font-family: var(--font-family);
|
|
612
592
|
}
|
|
613
593
|
.Layer__btn--with-primary-icon .Layer__btn-text {
|
|
614
594
|
padding-right: calc(var(--spacing-md) - 4px);
|
|
615
595
|
}
|
|
616
596
|
.Layer__btn--icon-only {
|
|
617
|
-
width: 36px;
|
|
618
597
|
height: 36px;
|
|
598
|
+
width: 36px;
|
|
619
599
|
}
|
|
620
600
|
.Layer__btn--icon-only.Layer__btn--secondary .Layer__btn-icon {
|
|
621
601
|
background-color: transparent;
|
|
@@ -627,26 +607,26 @@
|
|
|
627
607
|
margin-right: 0;
|
|
628
608
|
}
|
|
629
609
|
.Layer__icon-btn {
|
|
630
|
-
|
|
631
|
-
height: 36px;
|
|
610
|
+
box-sizing: border-box;
|
|
632
611
|
display: flex;
|
|
633
612
|
align-items: center;
|
|
634
613
|
justify-content: center;
|
|
635
|
-
|
|
636
|
-
|
|
614
|
+
height: 36px;
|
|
615
|
+
width: 36px;
|
|
616
|
+
padding: 0;
|
|
637
617
|
border-radius: var(--btn-border-radius);
|
|
638
618
|
border-width: 0;
|
|
619
|
+
background: transparent;
|
|
620
|
+
cursor: pointer;
|
|
639
621
|
font-family: var(--font-family);
|
|
640
622
|
font-weight: var(--font-weight-normal);
|
|
623
|
+
color: var(--color-base-500);
|
|
641
624
|
font-variant-numeric: lining-nums proportional-nums;
|
|
642
625
|
font-feature-settings:
|
|
643
626
|
"cv10" on,
|
|
644
627
|
"cv05" on,
|
|
645
628
|
"cv08" on,
|
|
646
629
|
"ss03" on;
|
|
647
|
-
padding: 0;
|
|
648
|
-
cursor: pointer;
|
|
649
|
-
box-sizing: border-box;
|
|
650
630
|
transition: all 100ms ease-out;
|
|
651
631
|
}
|
|
652
632
|
.Layer__icon-btn:hover {
|
|
@@ -654,17 +634,17 @@
|
|
|
654
634
|
color: var(--color-base-1000);
|
|
655
635
|
}
|
|
656
636
|
.Layer__icon-btn.Layer__icon-btn--border {
|
|
657
|
-
color: var(--color-base-800);
|
|
658
637
|
box-shadow:
|
|
659
638
|
0 0 0 1px var(--color-base-300),
|
|
660
639
|
0 1px 1px 0 var(--base-transparent-4),
|
|
661
640
|
0 2px 3px 0 var(--base-transparent-4),
|
|
662
641
|
0 3px 4px 0 var(--base-transparent-2),
|
|
663
642
|
0 4px 5px 0 var(--base-transparent-1);
|
|
643
|
+
color: var(--color-base-800);
|
|
664
644
|
}
|
|
665
645
|
.Layer__icon-btn.Layer__icon-btn--border:hover {
|
|
666
|
-
background-color: var(--color-base-0);
|
|
667
646
|
box-shadow: 0 0 0 1px var(--color-base-300), 0 1px 2px 0 var(--base-transparent-6);
|
|
647
|
+
background-color: var(--color-base-0);
|
|
668
648
|
}
|
|
669
649
|
.Layer__icon-btn.Layer__icon-btn--active {
|
|
670
650
|
background-color: var(--color-base-200);
|
|
@@ -674,14 +654,14 @@
|
|
|
674
654
|
background-color: var(--color-base-300);
|
|
675
655
|
}
|
|
676
656
|
.Layer__text-btn {
|
|
677
|
-
|
|
678
|
-
box-shadow: none;
|
|
657
|
+
padding: 0;
|
|
679
658
|
border-width: 0;
|
|
680
|
-
|
|
681
|
-
|
|
659
|
+
box-shadow: none;
|
|
660
|
+
outline: none;
|
|
682
661
|
background: transparent;
|
|
683
|
-
padding: 0;
|
|
684
662
|
cursor: pointer;
|
|
663
|
+
color: var(--color-base-700);
|
|
664
|
+
text-decoration: underline;
|
|
685
665
|
}
|
|
686
666
|
.Layer__text-btn:hover {
|
|
687
667
|
color: var(--color-base-1000);
|
|
@@ -700,10 +680,10 @@
|
|
|
700
680
|
animation: rotating-ccw 2s linear infinite;
|
|
701
681
|
}
|
|
702
682
|
.Layer__unsaved-info {
|
|
703
|
-
color: var(--color-danger);
|
|
704
683
|
display: flex;
|
|
705
|
-
align-items: center;
|
|
706
684
|
gap: var(--spacing-4xs);
|
|
685
|
+
align-items: center;
|
|
686
|
+
color: var(--color-danger);
|
|
707
687
|
}
|
|
708
688
|
.Layer__expand-collpase-all-rows-btn {
|
|
709
689
|
min-width: 152px;
|
|
@@ -713,19 +693,19 @@
|
|
|
713
693
|
align-items: center;
|
|
714
694
|
}
|
|
715
695
|
.Layer__switch__container .Layer__switch__button {
|
|
716
|
-
|
|
696
|
+
box-sizing: border-box;
|
|
697
|
+
position: relative;
|
|
717
698
|
display: flex;
|
|
718
699
|
align-items: center;
|
|
719
700
|
justify-content: center;
|
|
720
|
-
|
|
721
|
-
|
|
701
|
+
min-height: 36px;
|
|
702
|
+
padding: 0 2px;
|
|
722
703
|
border-radius: var(--btn-border-radius);
|
|
723
|
-
|
|
704
|
+
border-width: 0;
|
|
705
|
+
background: transparent;
|
|
724
706
|
cursor: pointer;
|
|
725
|
-
|
|
726
|
-
box-sizing: border-box;
|
|
707
|
+
font-family: var(--font-family);
|
|
727
708
|
transition: all 100ms ease-out;
|
|
728
|
-
padding: 0 2px;
|
|
729
709
|
text-decoration: none;
|
|
730
710
|
}
|
|
731
711
|
.Layer__switch__container .Layer__switch__button:focus,
|
|
@@ -743,10 +723,10 @@
|
|
|
743
723
|
border-color: var(--color-white);
|
|
744
724
|
}
|
|
745
725
|
.Layer__switch__container .Layer__switch__button--disabled .Layer__switch__knob__wrapper {
|
|
746
|
-
color: var(--btn-color-icon-hover);
|
|
747
726
|
background: var(--color-white);
|
|
748
|
-
border-color: var(--btn-bg-color-icon-hover);
|
|
749
727
|
cursor: not-allowed;
|
|
728
|
+
color: var(--btn-color-icon-hover);
|
|
729
|
+
border-color: var(--btn-bg-color-icon-hover);
|
|
750
730
|
}
|
|
751
731
|
.Layer__switch__container .Layer__switch__button--disabled .Layer__switch__knob__wrapper .Layer__switch__knob {
|
|
752
732
|
background: var(--color-white);
|
|
@@ -759,33 +739,33 @@
|
|
|
759
739
|
display: flex;
|
|
760
740
|
align-items: center;
|
|
761
741
|
justify-content: flex-start;
|
|
762
|
-
background: var(--color-white);
|
|
763
|
-
border: 2px solid var(--color-base-300);
|
|
764
|
-
width: 18px;
|
|
765
742
|
height: 12px;
|
|
743
|
+
width: 18px;
|
|
766
744
|
padding: 0 2px;
|
|
767
745
|
border-radius: 10px;
|
|
746
|
+
border: 2px solid var(--color-base-300);
|
|
747
|
+
background: var(--color-white);
|
|
768
748
|
transition: all 0.2s ease;
|
|
769
749
|
}
|
|
770
750
|
.Layer__switch__container .Layer__switch__knob__wrapper .Layer__switch__knob {
|
|
771
|
-
width: 6px;
|
|
772
751
|
height: 6px;
|
|
773
|
-
|
|
752
|
+
width: 6px;
|
|
774
753
|
border-radius: 50%;
|
|
775
754
|
border: 2px solid var(--color-base-300);
|
|
755
|
+
background-color: var(--color-white);
|
|
776
756
|
transition: all 0.2s ease;
|
|
777
757
|
}
|
|
778
758
|
.Layer__switch__container .Layer__switch__label {
|
|
779
|
-
color: var(--btn-color-icon-hover);
|
|
780
759
|
margin-right: 10px;
|
|
760
|
+
color: var(--btn-color-icon-hover);
|
|
781
761
|
}
|
|
782
762
|
.Layer__btn.Layer__btn--with-tooltip {
|
|
783
763
|
padding: 0;
|
|
784
764
|
}
|
|
785
765
|
.Layer__btn.Layer__btn--with-tooltip .Layer__tooltip-trigger {
|
|
786
|
-
padding: 0 var(--spacing-md);
|
|
787
766
|
justify-content: center;
|
|
788
767
|
height: 100%;
|
|
768
|
+
padding: 0 var(--spacing-md);
|
|
789
769
|
}
|
|
790
770
|
.Layer__card {
|
|
791
771
|
display: flex;
|
|
@@ -3533,6 +3513,19 @@
|
|
|
3533
3513
|
.Layer__select__menu-portal .Layer__select__option--hidden {
|
|
3534
3514
|
display: none;
|
|
3535
3515
|
}
|
|
3516
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading {
|
|
3517
|
+
cursor: default;
|
|
3518
|
+
}
|
|
3519
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading.Layer__select__option--is-focused,
|
|
3520
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading.Layer__select__option--is-selected,
|
|
3521
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:hover,
|
|
3522
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus,
|
|
3523
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:active,
|
|
3524
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus-visible,
|
|
3525
|
+
.Layer__select__menu-portal .Layer__select__option-content__loading:focus-within {
|
|
3526
|
+
background: transparent;
|
|
3527
|
+
color: inherit;
|
|
3528
|
+
}
|
|
3536
3529
|
.Layer__select__menu-portal .Layer__select__option-content__match {
|
|
3537
3530
|
display: flex;
|
|
3538
3531
|
flex-direction: column;
|
|
@@ -4207,12 +4200,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4207
4200
|
white-space: nowrap;
|
|
4208
4201
|
overflow: hidden;
|
|
4209
4202
|
}
|
|
4210
|
-
.Layer__flex-1 {
|
|
4211
|
-
flex: 1;
|
|
4212
|
-
}
|
|
4213
|
-
.Layer__flex-col {
|
|
4214
|
-
flex-direction: column;
|
|
4215
|
-
}
|
|
4216
4203
|
.Layer__justify--center {
|
|
4217
4204
|
justify-content: center;
|
|
4218
4205
|
}
|
|
@@ -4228,9 +4215,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4228
4215
|
.Layer__nowrap {
|
|
4229
4216
|
white-space: nowrap;
|
|
4230
4217
|
}
|
|
4231
|
-
.Layer__pt-2 {
|
|
4232
|
-
padding-top: 2px;
|
|
4233
|
-
}
|
|
4234
4218
|
.Layer__border-top {
|
|
4235
4219
|
border-top: 1px solid var(--border-color);
|
|
4236
4220
|
}
|
|
@@ -4253,26 +4237,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4253
4237
|
transform: rotate(-360deg);
|
|
4254
4238
|
}
|
|
4255
4239
|
}
|
|
4256
|
-
@keyframes fadeIn {
|
|
4257
|
-
from {
|
|
4258
|
-
opacity: 0;
|
|
4259
|
-
transform: translateY(20px);
|
|
4260
|
-
}
|
|
4261
|
-
to {
|
|
4262
|
-
opacity: 1;
|
|
4263
|
-
transform: translateY(0);
|
|
4264
|
-
}
|
|
4265
|
-
}
|
|
4266
|
-
@keyframes fadeOut {
|
|
4267
|
-
from {
|
|
4268
|
-
opacity: 1;
|
|
4269
|
-
transform: translateY(0);
|
|
4270
|
-
}
|
|
4271
|
-
to {
|
|
4272
|
-
opacity: 0;
|
|
4273
|
-
transform: translateY(20px);
|
|
4274
|
-
}
|
|
4275
|
-
}
|
|
4276
4240
|
.Layer__anim--rotating {
|
|
4277
4241
|
animation: rotating 2s linear infinite;
|
|
4278
4242
|
}
|
|
@@ -4513,6 +4477,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4513
4477
|
}
|
|
4514
4478
|
.Layer__UI__Button[data-variant=text] {
|
|
4515
4479
|
--size: inherit;
|
|
4480
|
+
display: inline-block;
|
|
4481
|
+
overflow: hidden;
|
|
4482
|
+
text-overflow: ellipsis;
|
|
4516
4483
|
padding-inline: 0;
|
|
4517
4484
|
border: none;
|
|
4518
4485
|
background-color: transparent;
|
|
@@ -4687,6 +4654,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4687
4654
|
overflow-y: auto;
|
|
4688
4655
|
}
|
|
4689
4656
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption {
|
|
4657
|
+
display: grid;
|
|
4690
4658
|
cursor: pointer;
|
|
4691
4659
|
}
|
|
4692
4660
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption--disabled {
|
|
@@ -4706,6 +4674,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4706
4674
|
padding-inline: var(--spacing-sm);
|
|
4707
4675
|
}
|
|
4708
4676
|
.Layer__ComboBoxOption {
|
|
4677
|
+
grid-template-columns: 16px auto;
|
|
4678
|
+
gap: var(--spacing-2xs);
|
|
4709
4679
|
padding-block: var(--spacing-xs);
|
|
4710
4680
|
padding-inline: var(--spacing-3xs);
|
|
4711
4681
|
border: 2px solid transparent;
|
|
@@ -5475,6 +5445,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5475
5445
|
.Layer__UI__Table-TableHeader:not(:last-child) .Layer__UI__Table-Column {
|
|
5476
5446
|
border-bottom: 1px solid var(--color-base-300);
|
|
5477
5447
|
}
|
|
5448
|
+
.Layer__UI__Table-TableHeader > tr {
|
|
5449
|
+
height: inherit;
|
|
5450
|
+
}
|
|
5478
5451
|
.Layer__UI__Table-Row {
|
|
5479
5452
|
height: 3.25rem;
|
|
5480
5453
|
}
|
|
@@ -5483,6 +5456,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5483
5456
|
}
|
|
5484
5457
|
.Layer__UI__Table-Column {
|
|
5485
5458
|
box-sizing: border-box;
|
|
5459
|
+
display: flex;
|
|
5460
|
+
align-items: center;
|
|
5461
|
+
height: inherit;
|
|
5486
5462
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
5487
5463
|
font-size: var(--text-sm);
|
|
5488
5464
|
font-weight: var(--font-weight-normal);
|
|
@@ -5504,6 +5480,10 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5504
5480
|
text-align: right;
|
|
5505
5481
|
}
|
|
5506
5482
|
.Layer__UI__Table-Cell {
|
|
5483
|
+
box-sizing: border-box;
|
|
5484
|
+
display: flex;
|
|
5485
|
+
align-items: center;
|
|
5486
|
+
height: inherit;
|
|
5507
5487
|
padding: var(--spacing-xs) var(--spacing-sm);
|
|
5508
5488
|
font-size: var(--text-md);
|
|
5509
5489
|
font-weight: var(--font-weight-normal);
|
|
@@ -5567,6 +5547,11 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
5567
5547
|
.Layer__UI__Heading[data-variant=subtle] {
|
|
5568
5548
|
color: var(--fg-subtle);
|
|
5569
5549
|
}
|
|
5550
|
+
.Layer__UI__Heading[data-ellipsis] {
|
|
5551
|
+
white-space: nowrap;
|
|
5552
|
+
overflow: hidden;
|
|
5553
|
+
text-overflow: ellipsis;
|
|
5554
|
+
}
|
|
5570
5555
|
.Layer__UI__Heading[data-pbe="3xs"] {
|
|
5571
5556
|
padding-block-end: var(--spacing-3xs);
|
|
5572
5557
|
}
|
|
@@ -6806,41 +6791,33 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6806
6791
|
}
|
|
6807
6792
|
.Layer__UI__Table__InvoiceTable {
|
|
6808
6793
|
table-layout: fixed;
|
|
6794
|
+
width: 100%;
|
|
6809
6795
|
}
|
|
6810
|
-
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--InvoiceNo {
|
|
6815
|
-
width: 10%;
|
|
6816
|
-
min-width: 6.75rem;
|
|
6817
|
-
}
|
|
6818
|
-
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Customer {
|
|
6819
|
-
width: 35%;
|
|
6820
|
-
min-width: 11.75rem;
|
|
6821
|
-
}
|
|
6822
|
-
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total {
|
|
6823
|
-
width: 15%;
|
|
6824
|
-
min-width: 7.75rem;
|
|
6825
|
-
border-right: 1px solid var(--color-base-300);
|
|
6826
|
-
text-align: end;
|
|
6827
|
-
}
|
|
6828
|
-
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Status {
|
|
6829
|
-
width: 25%;
|
|
6830
|
-
min-width: 10rem;
|
|
6796
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Row,
|
|
6797
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-TableHeader > tr {
|
|
6798
|
+
display: grid;
|
|
6799
|
+
grid-template-columns: minmax(8rem, 10%) minmax(6.75rem, 15%) minmax(11.75rem, 35%) minmax(7.75rem, 15%) minmax(10rem, 25%) 3.75rem;
|
|
6831
6800
|
}
|
|
6801
|
+
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Column__InvoiceTable--Total,
|
|
6832
6802
|
.Layer__UI__Table__InvoiceTable .Layer__UI__Table-Cell__InvoiceTable--Total {
|
|
6803
|
+
justify-content: flex-end;
|
|
6833
6804
|
border-right: 1px solid var(--color-base-300);
|
|
6834
6805
|
}
|
|
6835
6806
|
.Layer__InvoiceTable__StatusFilter {
|
|
6836
6807
|
width: 11rem;
|
|
6837
6808
|
}
|
|
6809
|
+
.Layer__InvoiceDetail {
|
|
6810
|
+
width: clamp(62rem, 100%, 1406px);
|
|
6811
|
+
}
|
|
6838
6812
|
.Layer__InvoiceDetail__SubHeader {
|
|
6839
6813
|
align-items: center;
|
|
6840
6814
|
height: 5.5rem;
|
|
6841
6815
|
padding-left: 2.25rem;
|
|
6842
6816
|
border-bottom: 1px solid var(--border-color);
|
|
6843
6817
|
}
|
|
6818
|
+
.Layer__InvoiceDetail__Heading {
|
|
6819
|
+
max-inline-size: 30rem;
|
|
6820
|
+
}
|
|
6844
6821
|
.Layer__InvoiceForm {
|
|
6845
6822
|
min-width: 54rem;
|
|
6846
6823
|
}
|
|
@@ -6859,7 +6836,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6859
6836
|
}
|
|
6860
6837
|
.Layer__InvoiceForm .Layer__InvoiceForm__LineItem {
|
|
6861
6838
|
display: grid;
|
|
6862
|
-
--grid-cols-base: minmax(10rem,
|
|
6839
|
+
--grid-cols-base: minmax(10rem, 3fr) minmax(10rem, 3fr) minmax(12rem, 4fr) minmax(4rem, 1fr) minmax(6rem, 2fr) minmax(6rem, 2fr) minmax(3rem, 0fr);
|
|
6863
6840
|
grid-template-columns: var(--grid-cols-base) auto;
|
|
6864
6841
|
width: 100%;
|
|
6865
6842
|
}
|
|
@@ -6996,6 +6973,13 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6996
6973
|
.Layer__PaginatedDataTable__Pagination {
|
|
6997
6974
|
border-top: 1px solid var(--border-color);
|
|
6998
6975
|
}
|
|
6976
|
+
.Layer__DataTable__EmptyState__Row {
|
|
6977
|
+
height: fit-content;
|
|
6978
|
+
}
|
|
6979
|
+
.Layer__DataTable__EmptyState__Cell {
|
|
6980
|
+
grid-column: 1/-1;
|
|
6981
|
+
justify-content: center;
|
|
6982
|
+
}
|
|
6999
6983
|
.Layer__UI__VirtualizedTable__container {
|
|
7000
6984
|
position: relative;
|
|
7001
6985
|
overflow: auto;
|
|
@@ -7014,12 +6998,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7014
6998
|
top: 0;
|
|
7015
6999
|
display: grid;
|
|
7016
7000
|
}
|
|
7017
|
-
.Layer__UI__VirtualizedTable__cell,
|
|
7018
|
-
.Layer__UI__VirtualizedTable__header-cell {
|
|
7019
|
-
display: flex;
|
|
7020
|
-
flex-wrap: wrap;
|
|
7021
|
-
align-content: center;
|
|
7022
|
-
}
|
|
7023
7001
|
.Layer__UI__VirtualizedTable__header-cell {
|
|
7024
7002
|
background-color: var(--color-base-0);
|
|
7025
7003
|
}
|
|
@@ -7850,7 +7828,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7850
7828
|
margin-block-start: var(--spacing-5xl);
|
|
7851
7829
|
}
|
|
7852
7830
|
.Layer__ProfitAndLossDetailReport {
|
|
7853
|
-
--pnl-detail-table-cols: minmax(
|
|
7831
|
+
--pnl-detail-table-cols: minmax(7.5rem, 8%) minmax(7rem, 18%) minmax(10rem, 18%) minmax(12rem, 36%) minmax(7.5rem, 10%) minmax(7.5rem, 10%);
|
|
7854
7832
|
}
|
|
7855
7833
|
.Layer__ProfitAndLossDetailReport .Layer__UI__Table__ProfitAndLossDetailReport {
|
|
7856
7834
|
table-layout: fixed;
|
|
@@ -7885,7 +7863,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
7885
7863
|
grid-column: 5;
|
|
7886
7864
|
justify-content: flex-end;
|
|
7887
7865
|
}
|
|
7888
|
-
@
|
|
7866
|
+
@container (width <= 840px) {
|
|
7889
7867
|
.Layer__ProfitAndLossDetailReport {
|
|
7890
7868
|
--pnl-detail-table-cols: minmax(4rem, 25%) minmax(8rem, 55%) minmax(4rem, 20%);
|
|
7891
7869
|
}
|
|
@@ -9972,6 +9950,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9972
9950
|
.Layer__chart-of-accounts__table {
|
|
9973
9951
|
table-layout: fixed;
|
|
9974
9952
|
}
|
|
9953
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--accountnumber {
|
|
9954
|
+
width: 13rem;
|
|
9955
|
+
}
|
|
9975
9956
|
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--name {
|
|
9976
9957
|
width: auto;
|
|
9977
9958
|
min-width: 16rem;
|
|
@@ -10344,6 +10325,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10344
10325
|
width: 64px;
|
|
10345
10326
|
}
|
|
10346
10327
|
}
|
|
10328
|
+
.Layer__JournalTable__account-number-cell {
|
|
10329
|
+
max-width: 8rem;
|
|
10330
|
+
}
|
|
10347
10331
|
@container (max-width: 760px) {
|
|
10348
10332
|
.Layer__table-cell.Layer__journal__actions {
|
|
10349
10333
|
width: 64px;
|
|
@@ -10937,18 +10921,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10937
10921
|
.Layer__linked-accounts__options .Layer__linked-accounts__options-overlay--transparent {
|
|
10938
10922
|
background: none;
|
|
10939
10923
|
}
|
|
10940
|
-
.Layer__linked-accounts-pill__options-overlay {
|
|
10941
|
-
position: absolute;
|
|
10942
|
-
top: 0;
|
|
10943
|
-
left: 0;
|
|
10944
|
-
bottom: 0;
|
|
10945
|
-
right: 0;
|
|
10946
|
-
cursor: pointer;
|
|
10947
|
-
}
|
|
10948
|
-
.Layer__linked-accounts-pill__invisible-spacer {
|
|
10949
|
-
width: 100%;
|
|
10950
|
-
height: 24px;
|
|
10951
|
-
}
|
|
10952
10924
|
.Layer__loader {
|
|
10953
10925
|
box-sizing: border-box;
|
|
10954
10926
|
display: flex;
|
|
@@ -11193,98 +11165,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11193
11165
|
width: 100%;
|
|
11194
11166
|
}
|
|
11195
11167
|
}
|
|
11196
|
-
.Layer__date-picker {
|
|
11197
|
-
position: relative;
|
|
11198
|
-
display: inline-block;
|
|
11199
|
-
}
|
|
11200
|
-
.Layer__date-picker .Layer__dropdown-toggle {
|
|
11201
|
-
display: flex;
|
|
11202
|
-
gap: 20px;
|
|
11203
|
-
align-items: center;
|
|
11204
|
-
justify-content: space-between;
|
|
11205
|
-
min-width: 180px;
|
|
11206
|
-
min-height: var(--spacing-2xl);
|
|
11207
|
-
padding: var(--spacing-3xs) var(--spacing-xs) var(--spacing-3xs);
|
|
11208
|
-
padding-left: var(--spacing-lm);
|
|
11209
|
-
border-radius: var(--spacing-2xs);
|
|
11210
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11211
|
-
background-color: var(--color-white);
|
|
11212
|
-
cursor: pointer;
|
|
11213
|
-
font-size: 14px;
|
|
11214
|
-
text-align: left;
|
|
11215
|
-
border: 1px solid transparent;
|
|
11216
|
-
}
|
|
11217
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron {
|
|
11218
|
-
display: flex;
|
|
11219
|
-
transition: transform 0.3s ease;
|
|
11220
|
-
}
|
|
11221
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron.open {
|
|
11222
|
-
transform: rotate(180deg);
|
|
11223
|
-
}
|
|
11224
|
-
.Layer__date-picker .Layer__dropdown-menu {
|
|
11225
|
-
position: absolute;
|
|
11226
|
-
z-index: 1000;
|
|
11227
|
-
top: 100%;
|
|
11228
|
-
left: 0;
|
|
11229
|
-
width: 256px;
|
|
11230
|
-
border-radius: var(--spacing-2xs);
|
|
11231
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11232
|
-
margin-top: 5px;
|
|
11233
|
-
background-color: var(--color-white);
|
|
11234
|
-
opacity: 0;
|
|
11235
|
-
animation: fadeIn 0.3s forwards;
|
|
11236
|
-
}
|
|
11237
|
-
@keyframes fadeIn {
|
|
11238
|
-
to {
|
|
11239
|
-
opacity: 1;
|
|
11240
|
-
}
|
|
11241
|
-
}
|
|
11242
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__view-options {
|
|
11243
|
-
padding: var(--spacing-xs);
|
|
11244
|
-
margin-bottom: var(--spacing-4xs);
|
|
11245
|
-
}
|
|
11246
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper {
|
|
11247
|
-
padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
|
|
11248
|
-
border-top: 1px solid var(--color-base-200);
|
|
11249
|
-
}
|
|
11250
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper:first-child {
|
|
11251
|
-
border-top: transparent;
|
|
11252
|
-
}
|
|
11253
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options {
|
|
11254
|
-
display: grid;
|
|
11255
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
11256
|
-
}
|
|
11257
|
-
.Layer__date-picker .Layer__option {
|
|
11258
|
-
display: flex;
|
|
11259
|
-
align-items: center;
|
|
11260
|
-
justify-content: space-between;
|
|
11261
|
-
min-height: 28px;
|
|
11262
|
-
max-height: 28px;
|
|
11263
|
-
padding: 0 var(--spacing-xs);
|
|
11264
|
-
cursor: pointer;
|
|
11265
|
-
font-size: 14px;
|
|
11266
|
-
}
|
|
11267
|
-
.Layer__date-picker .Layer__option:hover {
|
|
11268
|
-
max-width: max-content;
|
|
11269
|
-
border-radius: var(--spacing-3xs);
|
|
11270
|
-
background: var(--color-base-100);
|
|
11271
|
-
}
|
|
11272
|
-
.Layer__date-picker .Layer__option.Layer__selected {
|
|
11273
|
-
max-width: max-content;
|
|
11274
|
-
border-radius: var(--spacing-3xs);
|
|
11275
|
-
background: var(--color-base-100);
|
|
11276
|
-
}
|
|
11277
|
-
.Layer__date-picker .Layer__option .Layer__tick {
|
|
11278
|
-
padding-top: 2px;
|
|
11279
|
-
margin-left: 10px;
|
|
11280
|
-
color: var(--color-base-900);
|
|
11281
|
-
}
|
|
11282
|
-
.Layer__date-picker .Layer__compare-header {
|
|
11283
|
-
position: relative;
|
|
11284
|
-
padding: 0 0 var(--spacing-sm) var(--spacing-xs);
|
|
11285
|
-
font-size: 11px;
|
|
11286
|
-
color: var(--color-base-500);
|
|
11287
|
-
}
|
|
11288
11168
|
.Layer__ProfitAndLossSummariesListItem {
|
|
11289
11169
|
all: unset;
|
|
11290
11170
|
display: grid;
|