@layerfi/components 0.1.108 → 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 +5079 -4542
- package/dist/esm/index.mjs +4800 -4263
- package/dist/index.css +91 -222
- package/dist/index.d.ts +1150 -418
- 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
|
}
|
|
@@ -4690,6 +4654,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4690
4654
|
overflow-y: auto;
|
|
4691
4655
|
}
|
|
4692
4656
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption {
|
|
4657
|
+
display: grid;
|
|
4693
4658
|
cursor: pointer;
|
|
4694
4659
|
}
|
|
4695
4660
|
.Layer__ComboBoxMenuList .Layer__ComboBoxOption--disabled {
|
|
@@ -4709,6 +4674,8 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
4709
4674
|
padding-inline: var(--spacing-sm);
|
|
4710
4675
|
}
|
|
4711
4676
|
.Layer__ComboBoxOption {
|
|
4677
|
+
grid-template-columns: 16px auto;
|
|
4678
|
+
gap: var(--spacing-2xs);
|
|
4712
4679
|
padding-block: var(--spacing-xs);
|
|
4713
4680
|
padding-inline: var(--spacing-3xs);
|
|
4714
4681
|
border: 2px solid transparent;
|
|
@@ -6840,7 +6807,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6840
6807
|
width: 11rem;
|
|
6841
6808
|
}
|
|
6842
6809
|
.Layer__InvoiceDetail {
|
|
6843
|
-
width: clamp(
|
|
6810
|
+
width: clamp(62rem, 100%, 1406px);
|
|
6844
6811
|
}
|
|
6845
6812
|
.Layer__InvoiceDetail__SubHeader {
|
|
6846
6813
|
align-items: center;
|
|
@@ -6869,7 +6836,7 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
6869
6836
|
}
|
|
6870
6837
|
.Layer__InvoiceForm .Layer__InvoiceForm__LineItem {
|
|
6871
6838
|
display: grid;
|
|
6872
|
-
--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);
|
|
6873
6840
|
grid-template-columns: var(--grid-cols-base) auto;
|
|
6874
6841
|
width: 100%;
|
|
6875
6842
|
}
|
|
@@ -9983,6 +9950,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
9983
9950
|
.Layer__chart-of-accounts__table {
|
|
9984
9951
|
table-layout: fixed;
|
|
9985
9952
|
}
|
|
9953
|
+
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--accountnumber {
|
|
9954
|
+
width: 13rem;
|
|
9955
|
+
}
|
|
9986
9956
|
.Layer__chart-of-accounts__table .Layer__chart-of-accounts--name {
|
|
9987
9957
|
width: auto;
|
|
9988
9958
|
min-width: 16rem;
|
|
@@ -10355,6 +10325,9 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10355
10325
|
width: 64px;
|
|
10356
10326
|
}
|
|
10357
10327
|
}
|
|
10328
|
+
.Layer__JournalTable__account-number-cell {
|
|
10329
|
+
max-width: 8rem;
|
|
10330
|
+
}
|
|
10358
10331
|
@container (max-width: 760px) {
|
|
10359
10332
|
.Layer__table-cell.Layer__journal__actions {
|
|
10360
10333
|
width: 64px;
|
|
@@ -10948,18 +10921,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
10948
10921
|
.Layer__linked-accounts__options .Layer__linked-accounts__options-overlay--transparent {
|
|
10949
10922
|
background: none;
|
|
10950
10923
|
}
|
|
10951
|
-
.Layer__linked-accounts-pill__options-overlay {
|
|
10952
|
-
position: absolute;
|
|
10953
|
-
top: 0;
|
|
10954
|
-
left: 0;
|
|
10955
|
-
bottom: 0;
|
|
10956
|
-
right: 0;
|
|
10957
|
-
cursor: pointer;
|
|
10958
|
-
}
|
|
10959
|
-
.Layer__linked-accounts-pill__invisible-spacer {
|
|
10960
|
-
width: 100%;
|
|
10961
|
-
height: 24px;
|
|
10962
|
-
}
|
|
10963
10924
|
.Layer__loader {
|
|
10964
10925
|
box-sizing: border-box;
|
|
10965
10926
|
display: flex;
|
|
@@ -11204,98 +11165,6 @@ tbody .Layer__table__empty-row:first-child {
|
|
|
11204
11165
|
width: 100%;
|
|
11205
11166
|
}
|
|
11206
11167
|
}
|
|
11207
|
-
.Layer__date-picker {
|
|
11208
|
-
position: relative;
|
|
11209
|
-
display: inline-block;
|
|
11210
|
-
}
|
|
11211
|
-
.Layer__date-picker .Layer__dropdown-toggle {
|
|
11212
|
-
display: flex;
|
|
11213
|
-
gap: 20px;
|
|
11214
|
-
align-items: center;
|
|
11215
|
-
justify-content: space-between;
|
|
11216
|
-
min-width: 180px;
|
|
11217
|
-
min-height: var(--spacing-2xl);
|
|
11218
|
-
padding: var(--spacing-3xs) var(--spacing-xs) var(--spacing-3xs);
|
|
11219
|
-
padding-left: var(--spacing-lm);
|
|
11220
|
-
border-radius: var(--spacing-2xs);
|
|
11221
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11222
|
-
background-color: var(--color-white);
|
|
11223
|
-
cursor: pointer;
|
|
11224
|
-
font-size: 14px;
|
|
11225
|
-
text-align: left;
|
|
11226
|
-
border: 1px solid transparent;
|
|
11227
|
-
}
|
|
11228
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron {
|
|
11229
|
-
display: flex;
|
|
11230
|
-
transition: transform 0.3s ease;
|
|
11231
|
-
}
|
|
11232
|
-
.Layer__date-picker .Layer__dropdown-toggle .Layer__chevron.open {
|
|
11233
|
-
transform: rotate(180deg);
|
|
11234
|
-
}
|
|
11235
|
-
.Layer__date-picker .Layer__dropdown-menu {
|
|
11236
|
-
position: absolute;
|
|
11237
|
-
z-index: 1000;
|
|
11238
|
-
top: 100%;
|
|
11239
|
-
left: 0;
|
|
11240
|
-
width: 256px;
|
|
11241
|
-
border-radius: var(--spacing-2xs);
|
|
11242
|
-
box-shadow: 0 1px 2px 0 var(--base-transparent-6), 0 0 0 1px var(--color-base-300);
|
|
11243
|
-
margin-top: 5px;
|
|
11244
|
-
background-color: var(--color-white);
|
|
11245
|
-
opacity: 0;
|
|
11246
|
-
animation: fadeIn 0.3s forwards;
|
|
11247
|
-
}
|
|
11248
|
-
@keyframes fadeIn {
|
|
11249
|
-
to {
|
|
11250
|
-
opacity: 1;
|
|
11251
|
-
}
|
|
11252
|
-
}
|
|
11253
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__view-options {
|
|
11254
|
-
padding: var(--spacing-xs);
|
|
11255
|
-
margin-bottom: var(--spacing-4xs);
|
|
11256
|
-
}
|
|
11257
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper {
|
|
11258
|
-
padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
|
|
11259
|
-
border-top: 1px solid var(--color-base-200);
|
|
11260
|
-
}
|
|
11261
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options-wrapper:first-child {
|
|
11262
|
-
border-top: transparent;
|
|
11263
|
-
}
|
|
11264
|
-
.Layer__date-picker .Layer__dropdown-menu .Layer__compare-options {
|
|
11265
|
-
display: grid;
|
|
11266
|
-
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
11267
|
-
}
|
|
11268
|
-
.Layer__date-picker .Layer__option {
|
|
11269
|
-
display: flex;
|
|
11270
|
-
align-items: center;
|
|
11271
|
-
justify-content: space-between;
|
|
11272
|
-
min-height: 28px;
|
|
11273
|
-
max-height: 28px;
|
|
11274
|
-
padding: 0 var(--spacing-xs);
|
|
11275
|
-
cursor: pointer;
|
|
11276
|
-
font-size: 14px;
|
|
11277
|
-
}
|
|
11278
|
-
.Layer__date-picker .Layer__option:hover {
|
|
11279
|
-
max-width: max-content;
|
|
11280
|
-
border-radius: var(--spacing-3xs);
|
|
11281
|
-
background: var(--color-base-100);
|
|
11282
|
-
}
|
|
11283
|
-
.Layer__date-picker .Layer__option.Layer__selected {
|
|
11284
|
-
max-width: max-content;
|
|
11285
|
-
border-radius: var(--spacing-3xs);
|
|
11286
|
-
background: var(--color-base-100);
|
|
11287
|
-
}
|
|
11288
|
-
.Layer__date-picker .Layer__option .Layer__tick {
|
|
11289
|
-
padding-top: 2px;
|
|
11290
|
-
margin-left: 10px;
|
|
11291
|
-
color: var(--color-base-900);
|
|
11292
|
-
}
|
|
11293
|
-
.Layer__date-picker .Layer__compare-header {
|
|
11294
|
-
position: relative;
|
|
11295
|
-
padding: 0 0 var(--spacing-sm) var(--spacing-xs);
|
|
11296
|
-
font-size: 11px;
|
|
11297
|
-
color: var(--color-base-500);
|
|
11298
|
-
}
|
|
11299
11168
|
.Layer__ProfitAndLossSummariesListItem {
|
|
11300
11169
|
all: unset;
|
|
11301
11170
|
display: grid;
|