@sc-360-v2/storefront-cms-library 0.4.85 → 0.4.87
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/allocationDetails.scss +117 -33
- package/dist/allocations.scss +224 -20
- package/dist/builder.js +1 -1
- package/dist/container.scss +115 -114
- package/dist/filters.scss +6 -1
- package/dist/form-preview.scss +65 -12
- package/dist/order-status.scss +5 -0
- package/dist/phone-input.scss +40 -7
- package/dist/repeater-grid-toggle.scss +1 -1
- package/dist/types/builder/elements/form-builder/index.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/allocationDetails.d.ts +14 -1
- package/package.json +1 -1
package/dist/container.scss
CHANGED
|
@@ -1,114 +1,115 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "sass:list";
|
|
3
|
-
@use "./functions.scss" as *;
|
|
4
|
-
$activeElementSelector: "[data-has-clicked='true']";
|
|
5
|
-
[data-div-type="element"] {
|
|
6
|
-
&[data-element-type="container"] {
|
|
7
|
-
// width: var(--_sf-con-nw-wh);
|
|
8
|
-
// width: var(--_sf-el-wh-st-mx, calc(1% * var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh))));
|
|
9
|
-
// width: calc(
|
|
10
|
-
// 1% *
|
|
11
|
-
// var(
|
|
12
|
-
// --_ctm-mob-con-ele-nw-wh-vl,
|
|
13
|
-
// var(--_ctm-tab-con-ele-nw-wh-vl, var(--_ctm-con-ele-nw-wh-vl)),
|
|
14
|
-
// auto
|
|
15
|
-
// )
|
|
16
|
-
// );
|
|
17
|
-
// width: 100%;
|
|
18
|
-
// height: var(--_ctm-con-lt-ht);
|
|
19
|
-
|
|
20
|
-
width: calc(
|
|
21
|
-
1% *
|
|
22
|
-
var(
|
|
23
|
-
--_ctm-mob-con-ele-nw-wh-vl,
|
|
24
|
-
var(--_ctm-tab-con-ele-nw-wh-vl, var(--_ctm-con-ele-nw-wh-vl, auto))
|
|
25
|
-
)
|
|
26
|
-
);
|
|
27
|
-
margin: var(
|
|
28
|
-
--_ctm-mob-con-lt-mn,
|
|
29
|
-
var(--_ctm-tab-con-lt-mn, var(--_ctm-con-lt-mn, var(--_ctm-lt-mn)))
|
|
30
|
-
);
|
|
31
|
-
|
|
32
|
-
&[data-show-border="true"] {
|
|
33
|
-
border-color: var(
|
|
34
|
-
--_ctm-mob-con-dn-br-cr,
|
|
35
|
-
var(--_ctm-tab-con-dn-br-cr, var(--_ctm-con-dn-br-cr))
|
|
36
|
-
);
|
|
37
|
-
border-style: var(
|
|
38
|
-
--_ctm-mob-con-dn-br-se,
|
|
39
|
-
var(--_ctm-tab-con-dn-br-se, var(--_ctm-con-dn-br-se))
|
|
40
|
-
);
|
|
41
|
-
border-width: var(
|
|
42
|
-
--_ctm-mob-con-dn-br-wh,
|
|
43
|
-
var(--_ctm-tab-con-dn-br-wh, var(--_ctm-con-dn-br-wh))
|
|
44
|
-
);
|
|
45
|
-
}
|
|
46
|
-
&[data-show-shadow="true"] {
|
|
47
|
-
// box-shadow: var(--_ctm-mob-dn-sw-ae, var(--_ctm-tab-con-dn-sw-ae, var(--_ctm-dn-sw-ae)))
|
|
48
|
-
// var(--_ctm-mob-dn-sw-br, var(--_ctm-tab-con-dn-sw-br, var(--_ctm-dn-sw-br)))
|
|
49
|
-
// var(--_ctm-mob-dn-sw-sd, var(--_ctm-tab-con-dn-sw-sd, var(--_ctm-dn-sw-sd)))
|
|
50
|
-
// var(--_ctm-mob-dn-sw-cr, var(--_ctm-tab-con-dn-sw-cr, var(--_ctm-dn-sw-cr)));
|
|
51
|
-
box-shadow: prepareMediaVariable(--_ctm-con-dn-sw-ae, 0 0)
|
|
52
|
-
prepareMediaVariable(--_ctm-con-dn-sw-br, 0) prepareMediaVariable(--_ctm-con-dn-sw-sd, 0)
|
|
53
|
-
prepareMediaVariable(--_ctm-con-dn-sw-cr, transparent);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&[data-view-state="full"] {
|
|
57
|
-
& > .wrapper {
|
|
58
|
-
grid-template-rows: auto !important;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
& > div {
|
|
62
|
-
&.wrapper {
|
|
63
|
-
width: 100%;
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
//
|
|
100
|
-
//
|
|
101
|
-
//
|
|
102
|
-
//
|
|
103
|
-
//
|
|
104
|
-
//
|
|
105
|
-
//
|
|
106
|
-
//
|
|
107
|
-
//
|
|
108
|
-
// --_sf-
|
|
109
|
-
//
|
|
110
|
-
//
|
|
111
|
-
//
|
|
112
|
-
//
|
|
113
|
-
|
|
114
|
-
}
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
@use "./functions.scss" as *;
|
|
4
|
+
$activeElementSelector: "[data-has-clicked='true']";
|
|
5
|
+
[data-div-type="element"] {
|
|
6
|
+
&[data-element-type="container"] {
|
|
7
|
+
// width: var(--_sf-con-nw-wh);
|
|
8
|
+
// width: var(--_sf-el-wh-st-mx, calc(1% * var(--_ctm-ele-nw-wh-vl, var(--_sf-nw-wh))));
|
|
9
|
+
// width: calc(
|
|
10
|
+
// 1% *
|
|
11
|
+
// var(
|
|
12
|
+
// --_ctm-mob-con-ele-nw-wh-vl,
|
|
13
|
+
// var(--_ctm-tab-con-ele-nw-wh-vl, var(--_ctm-con-ele-nw-wh-vl)),
|
|
14
|
+
// auto
|
|
15
|
+
// )
|
|
16
|
+
// );
|
|
17
|
+
// width: 100%;
|
|
18
|
+
// height: var(--_ctm-con-lt-ht);
|
|
19
|
+
|
|
20
|
+
width: calc(
|
|
21
|
+
1% *
|
|
22
|
+
var(
|
|
23
|
+
--_ctm-mob-con-ele-nw-wh-vl,
|
|
24
|
+
var(--_ctm-tab-con-ele-nw-wh-vl, var(--_ctm-con-ele-nw-wh-vl, auto))
|
|
25
|
+
)
|
|
26
|
+
);
|
|
27
|
+
margin: var(
|
|
28
|
+
--_ctm-mob-con-lt-mn,
|
|
29
|
+
var(--_ctm-tab-con-lt-mn, var(--_ctm-con-lt-mn, var(--_ctm-lt-mn)))
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
&[data-show-border="true"] {
|
|
33
|
+
border-color: var(
|
|
34
|
+
--_ctm-mob-con-dn-br-cr,
|
|
35
|
+
var(--_ctm-tab-con-dn-br-cr, var(--_ctm-con-dn-br-cr))
|
|
36
|
+
);
|
|
37
|
+
border-style: var(
|
|
38
|
+
--_ctm-mob-con-dn-br-se,
|
|
39
|
+
var(--_ctm-tab-con-dn-br-se, var(--_ctm-con-dn-br-se))
|
|
40
|
+
);
|
|
41
|
+
border-width: var(
|
|
42
|
+
--_ctm-mob-con-dn-br-wh,
|
|
43
|
+
var(--_ctm-tab-con-dn-br-wh, var(--_ctm-con-dn-br-wh))
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
&[data-show-shadow="true"] {
|
|
47
|
+
// box-shadow: var(--_ctm-mob-dn-sw-ae, var(--_ctm-tab-con-dn-sw-ae, var(--_ctm-dn-sw-ae)))
|
|
48
|
+
// var(--_ctm-mob-dn-sw-br, var(--_ctm-tab-con-dn-sw-br, var(--_ctm-dn-sw-br)))
|
|
49
|
+
// var(--_ctm-mob-dn-sw-sd, var(--_ctm-tab-con-dn-sw-sd, var(--_ctm-dn-sw-sd)))
|
|
50
|
+
// var(--_ctm-mob-dn-sw-cr, var(--_ctm-tab-con-dn-sw-cr, var(--_ctm-dn-sw-cr)));
|
|
51
|
+
box-shadow: prepareMediaVariable(--_ctm-con-dn-sw-ae, 0 0)
|
|
52
|
+
prepareMediaVariable(--_ctm-con-dn-sw-br, 0) prepareMediaVariable(--_ctm-con-dn-sw-sd, 0)
|
|
53
|
+
prepareMediaVariable(--_ctm-con-dn-sw-cr, transparent);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&[data-view-state="full"] {
|
|
57
|
+
& > .wrapper {
|
|
58
|
+
grid-template-rows: auto !important;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
& > div {
|
|
62
|
+
&.wrapper {
|
|
63
|
+
width: 100%;
|
|
64
|
+
grid-template-columns: 100% !important;
|
|
65
|
+
min-height: prepareMediaVariable(--_ctm-con-lt-mn-ht);
|
|
66
|
+
padding: var(--_ctm-mob-con-lt-pg, var(--_ctm-tab-con-lt-pg, var(--_ctm-con-lt-pg)));
|
|
67
|
+
|
|
68
|
+
background-color: var(
|
|
69
|
+
--_ctm-mob-con-dn-bd-cr,
|
|
70
|
+
var(--_ctm-tab-con-dn-bd-cr, var(--_ctm-con-dn-bd-cr))
|
|
71
|
+
);
|
|
72
|
+
background-image: var(
|
|
73
|
+
--_ctm-mob-con-dn-bd-ie,
|
|
74
|
+
var(--_ctm-tab-con-dn-bd-ie, var(--_ctm-con-dn-bd-ie))
|
|
75
|
+
);
|
|
76
|
+
background-attachment: var(
|
|
77
|
+
--_ctm-mob-con-dn-bd-at,
|
|
78
|
+
var(--_ctm-tab-con-dn-bd-at, var(--_ctm-con-dn-bd-at))
|
|
79
|
+
);
|
|
80
|
+
background-position: var(
|
|
81
|
+
--_ctm-mob-con-dn-bd-pn,
|
|
82
|
+
var(--_ctm-tab-con-dn-bd-pn, var(--_ctm-con-dn-bd-pn))
|
|
83
|
+
);
|
|
84
|
+
background-repeat: var(
|
|
85
|
+
--_ctm-mob-con-dn-bd-rt,
|
|
86
|
+
var(--_ctm-tab-con-dn-bd-rt, var(--_ctm-con-dn-bd-rt))
|
|
87
|
+
);
|
|
88
|
+
background-size: var(
|
|
89
|
+
--_ctm-mob-con-dn-bd-se,
|
|
90
|
+
var(--_ctm-tab-con-dn-bd-se, var(--_ctm-con-dn-bd-se))
|
|
91
|
+
);
|
|
92
|
+
border-radius: var(
|
|
93
|
+
--_ctm-mob-con-dn-br-rs,
|
|
94
|
+
var(--_ctm-tab-con-dn-br-rs, var(--_ctm-con-dn-br-rs))
|
|
95
|
+
);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// &[data-view-state="full"] {
|
|
100
|
+
// width: auto;
|
|
101
|
+
// margin: 0;
|
|
102
|
+
// justify-self: stretch !important;
|
|
103
|
+
// align-self: stretch !important;
|
|
104
|
+
// cursor: auto;
|
|
105
|
+
// &:is(#{$activeElementSelector}) {
|
|
106
|
+
// & > div {
|
|
107
|
+
// &[data-div-type="wrapper__layer"] {
|
|
108
|
+
// --_sf-vt-zz: visible;
|
|
109
|
+
// --_sf-op-zz: 1;
|
|
110
|
+
// }
|
|
111
|
+
// }
|
|
112
|
+
// }
|
|
113
|
+
// }
|
|
114
|
+
}
|
|
115
|
+
}
|
package/dist/filters.scss
CHANGED
|
@@ -71,7 +71,7 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
71
71
|
.filter_container {
|
|
72
72
|
width: 100%;
|
|
73
73
|
//Filter Features Starts
|
|
74
|
-
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
74
|
+
// padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
75
75
|
background-color: var(
|
|
76
76
|
--_ctm-mob-dn-fs-wt-bd-cr,
|
|
77
77
|
var(--_ctm-tab-dn-fs-wt-bd-cr, var(--_ctm-dn-fs-wt-bd-cr))
|
|
@@ -87,6 +87,9 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
87
87
|
--_ctm-mob-dn-fs-wt-br-rs,
|
|
88
88
|
var(--_ctm-tab-dn-fs-wt-br-rs, var(--_ctm-dn-fs-wt-br-rs))
|
|
89
89
|
);
|
|
90
|
+
overflow: clip;
|
|
91
|
+
// max-height: prepareMediaVariable(--_ctm-lt-ht, auto);
|
|
92
|
+
// overflow-y: auto;
|
|
90
93
|
@mixin flex($justifyItems: flex-start, $alignItems: center) {
|
|
91
94
|
display: var(--_d-flex);
|
|
92
95
|
justify-content: $justifyItems;
|
|
@@ -98,6 +101,8 @@ $resizeActive: '[data-cms-element-resizer="true"]';
|
|
|
98
101
|
width: 100%;
|
|
99
102
|
// height: calc(100vh - 20px);
|
|
100
103
|
// padding: 10px;
|
|
104
|
+
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
105
|
+
max-height: prepareMediaVariable(--_ctm-lt-ht, auto);
|
|
101
106
|
overflow-y: auto;
|
|
102
107
|
|
|
103
108
|
.option__group {
|
package/dist/form-preview.scss
CHANGED
|
@@ -53,6 +53,10 @@
|
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
+
.react-datepicker__input-container:has(.datepicker-input) {
|
|
57
|
+
border: 0px;
|
|
58
|
+
}
|
|
59
|
+
|
|
56
60
|
.fb_field {
|
|
57
61
|
width: 100%;
|
|
58
62
|
.cnf_checkbox {
|
|
@@ -115,24 +119,70 @@
|
|
|
115
119
|
.react-datepicker-wrapper {
|
|
116
120
|
display: block;
|
|
117
121
|
|
|
118
|
-
.react-datepicker__input-container {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
122
|
+
// &:has(.react-datepicker__input-container) {
|
|
123
|
+
// input {
|
|
124
|
+
// border: 0;
|
|
125
|
+
// padding-inline: 24px 16px;
|
|
126
|
+
// }
|
|
127
|
+
// }
|
|
128
|
+
|
|
129
|
+
// .react-datepicker__input-container {
|
|
130
|
+
// input {
|
|
131
|
+
// padding-left: 32px !important;
|
|
132
|
+
// }
|
|
133
|
+
// }
|
|
123
134
|
}
|
|
124
135
|
}
|
|
125
136
|
|
|
126
137
|
.react-datepicker-wrapper {
|
|
127
138
|
display: block;
|
|
139
|
+
.react-datepicker__input-container {
|
|
140
|
+
.datepicker-input {
|
|
141
|
+
padding-inline: 32px 12px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.react-datepicker__header {
|
|
147
|
+
select {
|
|
148
|
+
appearance: none; /* remove default arrow */
|
|
149
|
+
-webkit-appearance: none;
|
|
150
|
+
-moz-appearance: none;
|
|
151
|
+
|
|
152
|
+
padding: 8px 35px 8px 10px !important; /* extra right space */
|
|
153
|
+
|
|
154
|
+
background: url("data:image/svg+xml;utf8,<svg fill='black' height='10' viewBox='0 0 20 20' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>")
|
|
155
|
+
no-repeat right 10px center;
|
|
156
|
+
|
|
157
|
+
background-color: var(--_base-white);
|
|
158
|
+
border: 1px solid var(--_gray-300);
|
|
159
|
+
outline: none;
|
|
160
|
+
}
|
|
161
|
+
/* Scrollbar width */
|
|
162
|
+
select::-webkit-scrollbar {
|
|
163
|
+
width: 6px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Scroll thumb (the draggable part) */
|
|
167
|
+
select::-webkit-scrollbar-thumb {
|
|
168
|
+
background-color: #888;
|
|
169
|
+
border-radius: 4px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/* Scroll track */
|
|
173
|
+
select::-webkit-scrollbar-track {
|
|
174
|
+
background: transparent;
|
|
175
|
+
}
|
|
128
176
|
}
|
|
129
|
-
|
|
130
|
-
|
|
177
|
+
|
|
178
|
+
input:not([type="checkbox"][type="radio"]) {
|
|
131
179
|
border: 1px solid var(--_gray-300);
|
|
132
180
|
border-radius: 6px;
|
|
133
181
|
padding-inline: 12px;
|
|
134
182
|
width: 100%;
|
|
135
183
|
height: 38px;
|
|
184
|
+
outline: none;
|
|
185
|
+
|
|
136
186
|
&:focus {
|
|
137
187
|
box-shadow: 0px 0px 0px 2px var(--_gray-100);
|
|
138
188
|
}
|
|
@@ -280,7 +330,7 @@
|
|
|
280
330
|
height: 38px;
|
|
281
331
|
text-align: center;
|
|
282
332
|
border-radius: 6px;
|
|
283
|
-
background-color: var(--
|
|
333
|
+
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
284
334
|
color: var(--_base-white);
|
|
285
335
|
width: 100%;
|
|
286
336
|
padding-inline: 16px;
|
|
@@ -289,11 +339,14 @@
|
|
|
289
339
|
|
|
290
340
|
&:disabled,
|
|
291
341
|
&[disabled] {
|
|
292
|
-
background-color: var(--
|
|
342
|
+
background-color: var(--_thm-py-bs-dt-se-bd-cr);
|
|
293
343
|
color: var(--_base-white);
|
|
294
344
|
cursor: not-allowed;
|
|
295
345
|
opacity: 0.6;
|
|
296
346
|
}
|
|
347
|
+
&:hover {
|
|
348
|
+
background-color: var(--_thm-py-bs-hr-se-bd-cr);
|
|
349
|
+
}
|
|
297
350
|
}
|
|
298
351
|
|
|
299
352
|
// react datepicker styles in preview mode
|
|
@@ -352,10 +405,10 @@
|
|
|
352
405
|
}
|
|
353
406
|
|
|
354
407
|
.react-datepicker__day--keyboard-selected {
|
|
355
|
-
background-color: var(--
|
|
408
|
+
background-color: var(--_thm-cs-at-py);
|
|
356
409
|
color: var(--_base-white);
|
|
357
410
|
&:hover {
|
|
358
|
-
background-color: var(--
|
|
411
|
+
background-color: var(--_thm-cs-at-py) !important;
|
|
359
412
|
}
|
|
360
413
|
}
|
|
361
414
|
.react-datepicker__day-names {
|
|
@@ -419,7 +472,7 @@
|
|
|
419
472
|
}
|
|
420
473
|
|
|
421
474
|
.react-datepicker__day--selected {
|
|
422
|
-
background-color: var(--
|
|
475
|
+
background-color: var(--_thm-py-bs-dt-se-bd-cr) !important;
|
|
423
476
|
}
|
|
424
477
|
|
|
425
478
|
.react-datepicker__day--selected:not([aria-disabled="true"]):hover {
|
package/dist/order-status.scss
CHANGED
|
@@ -1404,7 +1404,12 @@ $defaultValues: (
|
|
|
1404
1404
|
);
|
|
1405
1405
|
display: flex;
|
|
1406
1406
|
align-items: flex-start;
|
|
1407
|
+
flex-wrap: wrap;
|
|
1407
1408
|
|
|
1409
|
+
.cart_item_accordians {
|
|
1410
|
+
width: 100%;
|
|
1411
|
+
margin-top: 8px;
|
|
1412
|
+
}
|
|
1408
1413
|
// img {
|
|
1409
1414
|
// width: 69px;
|
|
1410
1415
|
// height: 80px;
|
package/dist/phone-input.scss
CHANGED
|
@@ -53,6 +53,23 @@
|
|
|
53
53
|
// border-right: 1px solid var(--_primary-300);
|
|
54
54
|
flex-shrink: 0;
|
|
55
55
|
|
|
56
|
+
position: relative;
|
|
57
|
+
|
|
58
|
+
&::after {
|
|
59
|
+
content: "";
|
|
60
|
+
display: inline-block;
|
|
61
|
+
width: 6px;
|
|
62
|
+
height: 6px;
|
|
63
|
+
border-right: 1.5px solid var(--_gray-500);
|
|
64
|
+
border-bottom: 1.5px solid var(--_gray-500);
|
|
65
|
+
transform: rotate(45deg);
|
|
66
|
+
margin-left: 4px;
|
|
67
|
+
vertical-align: middle;
|
|
68
|
+
top: 12px;
|
|
69
|
+
right: -33px;
|
|
70
|
+
position: absolute;
|
|
71
|
+
}
|
|
72
|
+
|
|
56
73
|
&:disabled {
|
|
57
74
|
cursor: not-allowed;
|
|
58
75
|
opacity: 0.6;
|
|
@@ -76,7 +93,7 @@
|
|
|
76
93
|
}
|
|
77
94
|
|
|
78
95
|
.sc-phone-dial-code {
|
|
79
|
-
padding: 0
|
|
96
|
+
padding: 0 30px 0 0px;
|
|
80
97
|
font-size: 14px;
|
|
81
98
|
color: var(--_gray-700, #344054);
|
|
82
99
|
white-space: nowrap;
|
|
@@ -85,7 +102,6 @@
|
|
|
85
102
|
|
|
86
103
|
input[type="tel"].sc-phone-input {
|
|
87
104
|
flex: 1;
|
|
88
|
-
border: none !important;
|
|
89
105
|
outline: none !important;
|
|
90
106
|
box-shadow: none !important;
|
|
91
107
|
border-radius: 0 !important;
|
|
@@ -94,6 +110,8 @@
|
|
|
94
110
|
padding: 16px !important;
|
|
95
111
|
background: transparent !important;
|
|
96
112
|
min-width: 0;
|
|
113
|
+
border-left: 1px solid var(--_gray-300) !important;
|
|
114
|
+
border-right: 0px !important;
|
|
97
115
|
|
|
98
116
|
&:focus {
|
|
99
117
|
outline: none !important;
|
|
@@ -107,7 +125,7 @@
|
|
|
107
125
|
left: 0;
|
|
108
126
|
width: 240px;
|
|
109
127
|
background: var(--_base-white, #fff);
|
|
110
|
-
border: 1px solid var(--
|
|
128
|
+
border: 1px solid var(--_gray-300);
|
|
111
129
|
border-radius: 8px;
|
|
112
130
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
|
|
113
131
|
z-index: 9999;
|
|
@@ -131,7 +149,7 @@
|
|
|
131
149
|
height: auto !important;
|
|
132
150
|
|
|
133
151
|
&:focus {
|
|
134
|
-
border-color: var(--
|
|
152
|
+
border-color: var(--_gray-300) !important;
|
|
135
153
|
outline: none !important;
|
|
136
154
|
}
|
|
137
155
|
}
|
|
@@ -164,7 +182,7 @@
|
|
|
164
182
|
}
|
|
165
183
|
|
|
166
184
|
&.selected {
|
|
167
|
-
background-color: var(--
|
|
185
|
+
background-color: var(--_gray-100, #f0f4ff);
|
|
168
186
|
}
|
|
169
187
|
}
|
|
170
188
|
|
|
@@ -176,9 +194,24 @@
|
|
|
176
194
|
}
|
|
177
195
|
|
|
178
196
|
.sc-phone-check {
|
|
179
|
-
|
|
180
|
-
|
|
197
|
+
position: relative;
|
|
198
|
+
width: 16px;
|
|
199
|
+
height: 16px;
|
|
181
200
|
flex-shrink: 0;
|
|
201
|
+
font-size: 0;
|
|
202
|
+
|
|
203
|
+
&::after {
|
|
204
|
+
content: "";
|
|
205
|
+
display: block;
|
|
206
|
+
position: absolute;
|
|
207
|
+
top: -1px;
|
|
208
|
+
left: 5px;
|
|
209
|
+
width: 4px;
|
|
210
|
+
height: 9px;
|
|
211
|
+
border-right: 1px solid var(--_gray-600, #475467);
|
|
212
|
+
border-bottom: 1px solid var(--_gray-600, #475467);
|
|
213
|
+
transform: rotate(45deg);
|
|
214
|
+
}
|
|
182
215
|
}
|
|
183
216
|
|
|
184
217
|
.sc-phone-no-results {
|
|
@@ -25,7 +25,7 @@ $wrapper: ".tgl__wrapper";
|
|
|
25
25
|
--_br-6: 6px;
|
|
26
26
|
--_width-40: 40px;
|
|
27
27
|
--_width-20: 20px;
|
|
28
|
-
border-radius:
|
|
28
|
+
border-radius: 4px;
|
|
29
29
|
// --_ctm-rep-dn-gd-vw-cl-se-bn-dt-se-bd-cr,
|
|
30
30
|
background-color: prepareMediaVariable(
|
|
31
31
|
--_ctm-rep-dn-gd-vw-cl-se-lt-se-bd-cr,
|
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
|
|
2
|
+
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
|
+
import { AlignItemsValue, JustifyContentValue } from "../../../../components/global/types";
|
|
2
4
|
export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
|
|
3
5
|
}
|
|
4
6
|
interface selfLayoutInterface {
|
|
5
7
|
selectorKey: string;
|
|
8
|
+
justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
|
|
9
|
+
value: JustifyContentValue;
|
|
10
|
+
};
|
|
11
|
+
alignItems: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
|
|
12
|
+
value: AlignItemsValue;
|
|
13
|
+
};
|
|
14
|
+
allocationItemGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & any;
|
|
6
15
|
}
|
|
7
16
|
interface selfDesignInterface {
|
|
8
17
|
selectorKey: string;
|
|
@@ -17,7 +26,11 @@ export declare enum SelectorKeysEnum {
|
|
|
17
26
|
ALLOCATION_CARD = "allocationCard",
|
|
18
27
|
DIVIDER = "divider",
|
|
19
28
|
QUOTA_DETAILS = "quotaDetails",
|
|
20
|
-
DEFAULT_STATE = "defaultState"
|
|
29
|
+
DEFAULT_STATE = "defaultState",
|
|
30
|
+
GRID_VIEW_CONTROL_STYLE = "gridViewControlStyle",
|
|
31
|
+
BUTTON = "button",
|
|
32
|
+
SELECTED_STATE = "selectedState",
|
|
33
|
+
LAYOUT_STYLE = "layoutStyle"
|
|
21
34
|
}
|
|
22
35
|
export declare const getDefaultData: () => CMSElementEditPopupInterface<selfLayoutInterface & CMSElementEditPopupLayoutInterface, selfDesignInterface & CMSElementEditPopupDesignInterface>;
|
|
23
36
|
export {};
|