@commercetools-frontend/experimental-components 1.0.0 → 2.0.0
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/commercetools-frontend-experimental-components.cjs.dev.js +2162 -2394
- package/dist/commercetools-frontend-experimental-components.cjs.prod.js +2161 -2393
- package/dist/commercetools-frontend-experimental-components.esm.js +2138 -2366
- package/dist/styles.css +59 -382
- package/package.json +17 -17
package/dist/styles.css
CHANGED
|
@@ -13,27 +13,57 @@
|
|
|
13
13
|
flex-grow: 1;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.search-input-module__input-container___mJnyZ {
|
|
16
|
+
:where(html[data-theme='default']) .search-input-module__input-container___mJnyZ {
|
|
17
17
|
height: var(--spacing-xl);
|
|
18
18
|
}
|
|
19
|
+
:where(html[data-theme='test']) .search-input-module__input-container___mJnyZ {
|
|
20
|
+
height: auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:where(html[data-theme='default']) .search-input-module__input-container___mJnyZ {
|
|
24
|
+
border-color: var(--color-neutral-60);
|
|
25
|
+
}
|
|
26
|
+
:where(html[data-theme='test']) .search-input-module__input-container___mJnyZ {
|
|
27
|
+
border-color: var(--border-color-for-input);
|
|
28
|
+
}
|
|
19
29
|
|
|
20
30
|
.search-input-module__input-container___mJnyZ > input {
|
|
21
31
|
padding-right: calc(var(--spacing-xl) * 2);
|
|
22
|
-
border-color: var(--color-neutral-60);
|
|
23
32
|
}
|
|
24
33
|
|
|
25
34
|
.search-input-module__input-container-disabled___23jR8 > input {
|
|
26
35
|
border-color: var(--color-neutral);
|
|
27
36
|
}
|
|
28
37
|
|
|
29
|
-
.search-input-module__input-container-hoverable___1xjqn > input:hover {
|
|
38
|
+
:where(html[data-theme='default']) .search-input-module__input-container-hoverable___1xjqn > input:hover {
|
|
30
39
|
border-color: var(--color-primary);
|
|
31
40
|
}
|
|
41
|
+
:where(html[data-theme='test']) .search-input-module__input-container-hoverable___1xjqn > input:hover {
|
|
42
|
+
border: var(--border-width-for-input) solid var(--border-color-for-input);
|
|
43
|
+
background-color: var(--background-color-for-input-when-hovered);
|
|
44
|
+
}
|
|
45
|
+
:where(html[data-theme='test']) .search-input-module__input-container-hoverable___1xjqn > input:focus {
|
|
46
|
+
box-shadow: var(--shadow-for-input-when-focused, inset 0 0 0 1px var(--color-primary));
|
|
47
|
+
border-color: var(--border-color-for-input-when-focused);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
:where(html[data-theme='default']) .search-input-module__input-container-granular___33Pm- {
|
|
51
|
+
right: 6px;
|
|
52
|
+
}
|
|
53
|
+
:where(html[data-theme='test']) .search-input-module__input-container-granular___33Pm- {
|
|
54
|
+
right: 3px;
|
|
55
|
+
}
|
|
32
56
|
|
|
33
57
|
.search-input-module__input-container-granular___33Pm- {
|
|
34
58
|
border-color: var(--color-primary);
|
|
35
59
|
position: relative;
|
|
36
|
-
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
:where(html[data-theme='default']) .search-input-module__search-icon-container___cbHQY {
|
|
63
|
+
top: 5px;
|
|
64
|
+
}
|
|
65
|
+
:where(html[data-theme='test']) .search-input-module__search-icon-container___cbHQY {
|
|
66
|
+
top: 8px;
|
|
37
67
|
}
|
|
38
68
|
|
|
39
69
|
.search-input-module__search-icon-container___cbHQY {
|
|
@@ -41,7 +71,6 @@
|
|
|
41
71
|
border-color: transparent;
|
|
42
72
|
position: absolute;
|
|
43
73
|
right: 9px;
|
|
44
|
-
top: 5px;
|
|
45
74
|
}
|
|
46
75
|
|
|
47
76
|
.search-input-module__clear-icon-container___3RQvu {
|
|
@@ -73,77 +102,6 @@
|
|
|
73
102
|
flex-shrink: 1;
|
|
74
103
|
margin-left: var(--spacing-s);
|
|
75
104
|
}
|
|
76
|
-
/* imported from modal-content-layout.module.css */
|
|
77
|
-
|
|
78
|
-
:root {
|
|
79
|
-
/* save toolbar */
|
|
80
|
-
--height-save-toolbar: 57px;
|
|
81
|
-
|
|
82
|
-
/* additional spacing at the bottom of view that has a save-toolbar */
|
|
83
|
-
--spacing-bottom-with-save-toolbar: calc(
|
|
84
|
-
var(--height-save-toolbar) + var(--spacing-m)
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
/* Modal */
|
|
89
|
-
|
|
90
|
-
.modal-content-layout-module__container___m-8MJ {
|
|
91
|
-
padding: var(--spacing-m) var(--spacing-m) 0;
|
|
92
|
-
display: flex;
|
|
93
|
-
flex-direction: column;
|
|
94
|
-
height: 100%;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.modal-content-layout-module__header___3s8J- {
|
|
98
|
-
position: relative;
|
|
99
|
-
border-bottom: 2px var(--color-neutral) solid;
|
|
100
|
-
padding-bottom: var(--spacing-m);
|
|
101
|
-
margin: 0;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.modal-content-layout-module__subtitle___W3B06 {
|
|
105
|
-
font-size: 1rem;
|
|
106
|
-
color: var(--color-solid);
|
|
107
|
-
margin-top: var(--spacing-s);
|
|
108
|
-
flex-grow: 1;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.modal-content-layout-module__content___UpG03 {
|
|
112
|
-
flex: 1;
|
|
113
|
-
overflow-y: auto;
|
|
114
|
-
padding: var(--spacing-m) 0;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
/*
|
|
118
|
-
* manually set the margin bottom of the last child in the container. We need
|
|
119
|
-
* to do this in order to add some more space to the bottom of the scroll
|
|
120
|
-
* container. Just using a padding-bottom in the .content-container does not
|
|
121
|
-
* work in firefox unfortunately. It is a reported bug in FF that is not fixed.
|
|
122
|
-
*/
|
|
123
|
-
.modal-content-layout-module__content___UpG03 > :last-child {
|
|
124
|
-
margin-bottom: var(--spacing-bottom-with-save-toolbar);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.modal-content-layout-module__footer___TCdQU {
|
|
128
|
-
padding: var(--spacing-m) 0;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.modal-content-layout-module__button-close___2ThEn {
|
|
132
|
-
float: right;
|
|
133
|
-
margin-top: calc(var(--spacing-xs) * -1);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.modal-content-layout-module__subheader___61dMZ {
|
|
137
|
-
display: flex;
|
|
138
|
-
justify-content: space-between;
|
|
139
|
-
align-items: center;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.modal-content-layout-module__controls___2AEk5 {
|
|
143
|
-
position: absolute;
|
|
144
|
-
right: 0;
|
|
145
|
-
bottom: var(--spacing-s);
|
|
146
|
-
}
|
|
147
105
|
/* imported from required-indicator.module.css */
|
|
148
106
|
|
|
149
107
|
.required-indicator-module__colored____YUFm {
|
|
@@ -181,11 +139,6 @@
|
|
|
181
139
|
.validated-input-module__container___3L2KB {
|
|
182
140
|
display: inline;
|
|
183
141
|
}
|
|
184
|
-
/* imported from autocomplete.module.css */
|
|
185
|
-
|
|
186
|
-
.autocomplete-module__container___sBqGo {
|
|
187
|
-
position: relative;
|
|
188
|
-
}
|
|
189
142
|
/* imported from label-range.module.css */
|
|
190
143
|
|
|
191
144
|
.label-range-module__label___3Tb0p {
|
|
@@ -539,12 +492,27 @@
|
|
|
539
492
|
border-radius: var(--border-radius-6);
|
|
540
493
|
}
|
|
541
494
|
|
|
495
|
+
:where(html[data-theme='test']) .file-input-module__button___2KypN {
|
|
496
|
+
border: var(--border-for-button-as-secondary);
|
|
497
|
+
box-shadow: none;
|
|
498
|
+
border-radius: var(--border-radius-4);
|
|
499
|
+
height: var(--height-for-button-as-big);
|
|
500
|
+
font-size: 14px;
|
|
501
|
+
font-weight: 500;
|
|
502
|
+
}
|
|
503
|
+
|
|
542
504
|
.file-input-module__button___2KypN:hover,
|
|
543
505
|
.file-input-module__button___2KypN:focus {
|
|
544
506
|
cursor: pointer;
|
|
545
507
|
box-shadow: var(--shadow-8);
|
|
546
508
|
}
|
|
547
509
|
|
|
510
|
+
:where(html[data-theme='test']) .file-input-module__button___2KypN:hover,
|
|
511
|
+
:where(html[data-theme='test']) .file-input-module__button___2KypN:focus {
|
|
512
|
+
background-color: var(--background-color-for-button-when-hovered);
|
|
513
|
+
box-shadow: none;
|
|
514
|
+
}
|
|
515
|
+
|
|
548
516
|
.file-input-module__button___2KypN:active {
|
|
549
517
|
box-shadow: var(--shadow-9);
|
|
550
518
|
background-color: var(--color-surface);
|
|
@@ -554,15 +522,7 @@
|
|
|
554
522
|
visibility: hidden;
|
|
555
523
|
width: 1px;
|
|
556
524
|
height: 1px;
|
|
557
|
-
}
|
|
558
|
-
/* imported from dropdown-indicator.module.css */
|
|
559
|
-
|
|
560
|
-
.dropdown-indicator-module__dropdownIndicator___3bkJT {
|
|
561
|
-
display: flex;
|
|
562
|
-
align-items: center;
|
|
563
|
-
margin-left: var(--spacing-s);
|
|
564
|
-
}
|
|
565
|
-
/* imported from centered-loading-spinner.module.css */
|
|
525
|
+
}/* imported from centered-loading-spinner.module.css */
|
|
566
526
|
|
|
567
527
|
.centered-loading-spinner-module__loading-container___3_9-h {
|
|
568
528
|
height: 100%;
|
|
@@ -625,313 +585,30 @@ html[data-theme='default'] {
|
|
|
625
585
|
.custom-money-input-module__container___1fdO2 {
|
|
626
586
|
width: 100%;
|
|
627
587
|
}
|
|
628
|
-
/* imported from tooltip.module.css */
|
|
629
|
-
|
|
630
|
-
/* STRUCTURE */
|
|
631
|
-
|
|
632
|
-
.tooltip-module__container___2R5k4 {
|
|
633
|
-
box-sizing: content-box;
|
|
634
|
-
max-height: 150px;
|
|
635
|
-
opacity: 1;
|
|
636
|
-
visibility: visible;
|
|
637
|
-
position: absolute;
|
|
638
|
-
margin-left: auto;
|
|
639
|
-
margin-right: auto;
|
|
640
|
-
cursor: default;
|
|
641
|
-
pointer-events: none;
|
|
642
|
-
z-index: 99;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.tooltip-module__box___1V72T {
|
|
646
|
-
position: relative;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
.tooltip-module__body___1hJvc {
|
|
650
|
-
padding: 6px;
|
|
651
|
-
border-radius: 5px;
|
|
652
|
-
min-width: 100px;
|
|
653
|
-
background-color: var(--color-surface);
|
|
654
|
-
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.12), 0 3px 3px 0 rgba(0, 0, 0, 0.24);
|
|
655
|
-
vertical-align: middle;
|
|
656
|
-
font-size: 0.857rem;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.tooltip-module__tooltip-body___2_NJI {
|
|
660
|
-
background: red;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
/* STATES */
|
|
664
|
-
|
|
665
|
-
.tooltip-module__container___2R5k4.tooltip-module__hide___21LcK {
|
|
666
|
-
opacity: 0.01;
|
|
667
|
-
visibility: hidden;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
/* ARROW */
|
|
671
|
-
|
|
672
|
-
.tooltip-module__arrow-top-border___3_L66 {
|
|
673
|
-
border-top: solid 6px transparent;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
.tooltip-module__arrow-top-right-border___2yFxP {
|
|
677
|
-
border-top: solid 6px transparent;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.tooltip-module__arrow-bottom-border___2Grv6 {
|
|
681
|
-
border-bottom: solid 6px transparent;
|
|
682
|
-
transform: translateY(-6px);
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.tooltip-module__arrow-left-border___27YP5 {
|
|
686
|
-
border-left: solid 6px transparent;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.tooltip-module__arrow-right-border___3TsGO {
|
|
690
|
-
border-right: solid 6px transparent;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
/* ARROW POSITIONING */
|
|
694
|
-
.tooltip-module__arrow-top___1TMUA,
|
|
695
|
-
.tooltip-module__arrow-top-border___3_L66,
|
|
696
|
-
.tooltip-module__arrow-shadow-top___3vxpn,
|
|
697
|
-
.tooltip-module__arrow-bottom___1BM7o,
|
|
698
|
-
.tooltip-module__arrow-bottom-border___2Grv6 {
|
|
699
|
-
box-sizing: border-box;
|
|
700
|
-
height: 6px;
|
|
701
|
-
width: 12px;
|
|
702
|
-
margin-left: 30px;
|
|
703
|
-
margin-right: auto;
|
|
704
|
-
border-left: solid 6px transparent;
|
|
705
|
-
border-right: solid 6px transparent;
|
|
706
|
-
position: absolute;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.tooltip-module__arrow-top-right___2P3cx,
|
|
710
|
-
.tooltip-module__arrow-top-right-border___2yFxP,
|
|
711
|
-
.tooltip-module__arrow-shadow-top-right___1Yj5N {
|
|
712
|
-
box-sizing: border-box;
|
|
713
|
-
height: 6px;
|
|
714
|
-
width: 12px;
|
|
715
|
-
right: 30px;
|
|
716
|
-
border-left: solid 6px transparent;
|
|
717
|
-
border-right: solid 6px transparent;
|
|
718
|
-
position: absolute;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.tooltip-module__arrow-left____OVQd,
|
|
722
|
-
.tooltip-module__arrow-left-border___27YP5 {
|
|
723
|
-
width: 0;
|
|
724
|
-
height: 0;
|
|
725
|
-
border-style: solid;
|
|
726
|
-
border-width: 6px 0 6px 6px;
|
|
727
|
-
border-color: transparent transparent transparent var(--color-info);
|
|
728
|
-
position: absolute;
|
|
729
|
-
right: -5px;
|
|
730
|
-
top: calc(50% - 6px);
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
.tooltip-module__arrow-right___3WQ2_,
|
|
734
|
-
.tooltip-module__arrow-right-border___3TsGO {
|
|
735
|
-
width: 0;
|
|
736
|
-
height: 0;
|
|
737
|
-
border-style: solid;
|
|
738
|
-
border-width: 6px 6px 6px 0;
|
|
739
|
-
border-color: transparent var(--color-info) transparent transparent;
|
|
740
|
-
position: absolute;
|
|
741
|
-
left: -6px;
|
|
742
|
-
top: calc(50% - 6px);
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.tooltip-module__arrow-top___1TMUA {
|
|
746
|
-
border-top: solid 6px var(--color-info);
|
|
747
|
-
transform: translateY(-1.5px);
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.tooltip-module__arrow-top-right___2P3cx {
|
|
751
|
-
border-top: solid 6px var(--color-info);
|
|
752
|
-
transform: translateY(-1.5px);
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
.tooltip-module__arrow-bottom___1BM7o {
|
|
756
|
-
border-bottom: solid 6px var(--color-primary);
|
|
757
|
-
transform: translateY(-6px);
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.tooltip-module__arrow-left____OVQd {
|
|
761
|
-
border-left: solid 6px var(--color-info);
|
|
762
|
-
transform: translateX(-2px);
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.tooltip-module__arrow-right___3WQ2_ {
|
|
766
|
-
border-right: solid 6px var(--color-info);
|
|
767
|
-
transform: translateX(2px);
|
|
768
|
-
}
|
|
769
|
-
|
|
770
|
-
/* ARROW SHADOW */
|
|
771
|
-
|
|
772
|
-
.tooltip-module__arrow-shadow-top___3vxpn {
|
|
773
|
-
border-top: solid 6px rgba(176, 176, 176, 0.25);
|
|
774
|
-
transform: translate(2px, 2px);
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
.tooltip-module__arrow-shadow-top-right___1Yj5N {
|
|
778
|
-
border-top: solid 6px rgba(176, 176, 176, 0.25);
|
|
779
|
-
transform: translate(2px, 2px);
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
/* TOOLTIP TYPES */
|
|
783
|
-
|
|
784
|
-
/* WARNING */
|
|
785
|
-
|
|
786
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__body___1hJvc {
|
|
787
|
-
border: solid 1px var(--color-warning);
|
|
788
|
-
color: var(--color-solid);
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-top-border___3_L66,
|
|
792
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-top-right-border___2yFxP {
|
|
793
|
-
border-top-color: var(--color-warning);
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-top___1TMUA,
|
|
797
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-top-right___2P3cx {
|
|
798
|
-
border-top-color: var(--color-surface);
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-bottom___1BM7o {
|
|
802
|
-
border-bottom-color: var(--color-surface);
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-bottom-border___2Grv6 {
|
|
806
|
-
border-bottom-color: var(--color-warning);
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-left____OVQd {
|
|
810
|
-
border-left-color: var(--color-surface);
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-left-border___27YP5 {
|
|
814
|
-
border-left-color: var(--color-warning);
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-right___3WQ2_ {
|
|
818
|
-
border-right-color: var(--color-surface);
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
.tooltip-module__container___2R5k4.tooltip-module__warning___1kbUk > .tooltip-module__arrow-right-border___3TsGO {
|
|
822
|
-
border-right-color: var(--color-warning);
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
/* INFO */
|
|
826
|
-
|
|
827
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc {
|
|
828
|
-
max-height: auto;
|
|
829
|
-
min-width: 100px;
|
|
830
|
-
white-space: nowrap;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__body___1hJvc {
|
|
834
|
-
background-color: var(--color-surface);
|
|
835
|
-
border: solid 1px var(--color-primary);
|
|
836
|
-
color: var(--color-accent);
|
|
837
|
-
padding: 12px;
|
|
838
|
-
min-width: 100px;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-left____OVQd {
|
|
842
|
-
border-left-color: var(--color-surface);
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-left-border___27YP5 {
|
|
846
|
-
border-left-color: var(--color-primary);
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-right___3WQ2_ {
|
|
850
|
-
border-right-color: var(--color-surface);
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-right-border___3TsGO {
|
|
854
|
-
border-right-color: var(--color-primary);
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-top___1TMUA,
|
|
858
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-top-right___2P3cx {
|
|
859
|
-
border-top-color: var(--color-surface);
|
|
860
|
-
}
|
|
861
|
-
|
|
862
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-top-border___3_L66,
|
|
863
|
-
.tooltip-module__container___2R5k4.tooltip-module__info___1uBMc > .tooltip-module__arrow-top-right-border___2yFxP {
|
|
864
|
-
border-top-color: var(--color-primary);
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
/* ERROR */
|
|
868
|
-
|
|
869
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__body___1hJvc {
|
|
870
|
-
background-color: var(--color-warning-95);
|
|
871
|
-
border: solid 1px var(--color-error);
|
|
872
|
-
color: var(--color-solid);
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-top-border___3_L66,
|
|
876
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-top-right-border___2yFxP {
|
|
877
|
-
border-top-color: var(--color-error);
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-top___1TMUA,
|
|
881
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-top-right___2P3cx {
|
|
882
|
-
border-top-color: var(--color-warning-95);
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-bottom___1BM7o {
|
|
886
|
-
border-bottom-color: var(--color-warning-95);
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.tooltip-module__container___2R5k4.tooltip-module__error___-Akny > .tooltip-module__arrow-bottom-border___2Grv6 {
|
|
890
|
-
border-bottom-color: var(--color-error);
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
/* POSITIONS */
|
|
894
|
-
|
|
895
|
-
.tooltip-module__container-top___2MQTV {
|
|
896
|
-
transform: translateY(-100%) translateY(-3px);
|
|
897
|
-
}
|
|
898
|
-
|
|
899
|
-
.tooltip-module__container-top-right___iR0io {
|
|
900
|
-
transform: translate(0, calc(-100% - 10px));
|
|
901
|
-
right: 0;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
.tooltip-module__container-bottom___1wDKk {
|
|
905
|
-
top: calc(100% + 10px);
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
.tooltip-module__container-left___YePF0 {
|
|
909
|
-
transform: translateX(-100%) translateX(-10px) translateY(-6px);
|
|
910
|
-
}
|
|
911
|
-
/* imported from button-close.module.css */
|
|
912
|
-
|
|
913
|
-
.button-close-module__button-close-container___1uz2S {
|
|
914
|
-
cursor: pointer;
|
|
915
|
-
}
|
|
916
588
|
/* imported from set-buttons.module.css */
|
|
917
589
|
|
|
918
590
|
.set-buttons-module__topAlign___3AZwc {
|
|
919
591
|
padding-top: var(--spacing-xs);
|
|
920
592
|
}
|
|
921
593
|
|
|
922
|
-
|
|
594
|
+
|
|
595
|
+
:where(html[data-theme='default']) .set-buttons-module__gap___38Qr0 {
|
|
923
596
|
padding: 12px;
|
|
924
597
|
}
|
|
925
|
-
/* imported from platform-limits-customers-status.module.css */
|
|
926
598
|
|
|
927
|
-
.
|
|
928
|
-
|
|
599
|
+
:where(html[data-theme='test']) .set-buttons-module__gap___38Qr0 {
|
|
600
|
+
padding: 20px;
|
|
929
601
|
}
|
|
930
602
|
/* imported from platform-limits-customers-combined.module.css */
|
|
931
603
|
|
|
932
604
|
.platform-limits-customers-combined-module__combined___OszDd {
|
|
933
605
|
margin-bottom: var(--spacing-s);
|
|
934
606
|
}
|
|
607
|
+
/* imported from platform-limits-customers-status.module.css */
|
|
608
|
+
|
|
609
|
+
.platform-limits-customers-status-module__status___3rXYM {
|
|
610
|
+
min-width: max-content;
|
|
611
|
+
}
|
|
935
612
|
/* imported from platform-limits-customer-groups-status.module.css */
|
|
936
613
|
|
|
937
614
|
.platform-limits-customer-groups-status-module__status___6099G {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/experimental-components",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@babel/runtime": "^7.19.0",
|
|
17
17
|
"@babel/runtime-corejs3": "^7.19.0",
|
|
18
|
-
"@commercetools-frontend/actions-global": "21.23.
|
|
19
|
-
"@commercetools-frontend/application-components": "21.23.
|
|
20
|
-
"@commercetools-frontend/application-shell": "21.23.
|
|
21
|
-
"@commercetools-frontend/application-shell-connectors": "21.23.
|
|
22
|
-
"@commercetools-frontend/constants": "21.23.
|
|
23
|
-
"@commercetools-frontend/l10n": "21.23.
|
|
24
|
-
"@commercetools-frontend/sdk": "21.23.
|
|
25
|
-
"@commercetools-frontend/sentry": "21.23.
|
|
26
|
-
"@commercetools-frontend/ui-kit": "15.
|
|
27
|
-
"@commercetools-uikit/design-system": "15.
|
|
28
|
-
"@commercetools-uikit/select-utils": "15.
|
|
29
|
-
"@commercetools-uikit/utils": "15.
|
|
18
|
+
"@commercetools-frontend/actions-global": "21.23.7",
|
|
19
|
+
"@commercetools-frontend/application-components": "21.23.7",
|
|
20
|
+
"@commercetools-frontend/application-shell": "21.23.7",
|
|
21
|
+
"@commercetools-frontend/application-shell-connectors": "21.23.7",
|
|
22
|
+
"@commercetools-frontend/constants": "21.23.7",
|
|
23
|
+
"@commercetools-frontend/l10n": "21.23.7",
|
|
24
|
+
"@commercetools-frontend/sdk": "21.23.7",
|
|
25
|
+
"@commercetools-frontend/sentry": "21.23.7",
|
|
26
|
+
"@commercetools-frontend/ui-kit": "15.12.0",
|
|
27
|
+
"@commercetools-uikit/design-system": "15.12.0",
|
|
28
|
+
"@commercetools-uikit/select-utils": "15.12.0",
|
|
29
|
+
"@commercetools-uikit/utils": "15.12.0",
|
|
30
30
|
"@emotion/react": "11.10.5",
|
|
31
31
|
"classnames": "2.3.2",
|
|
32
32
|
"cleave.js": "1.5.10",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"uuid": "8.3.2"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@apollo/client": "3.7.
|
|
75
|
+
"@apollo/client": "3.7.7",
|
|
76
76
|
"@commercetools-local/test-data": "workspace:*",
|
|
77
77
|
"@commercetools-local/test-utils": "workspace:*",
|
|
78
|
-
"@commercetools-test-data/channel": "4.
|
|
79
|
-
"@commercetools-test-data/commons": "4.
|
|
80
|
-
"@commercetools-test-data/core": "4.
|
|
78
|
+
"@commercetools-test-data/channel": "4.9.0",
|
|
79
|
+
"@commercetools-test-data/commons": "4.9.0",
|
|
80
|
+
"@commercetools-test-data/core": "4.9.0",
|
|
81
81
|
"@testing-library/react": "12.1.5",
|
|
82
82
|
"@testing-library/react-hooks": "8.0.1",
|
|
83
83
|
"enzyme": "3.11.0",
|