@sc-360-v2/storefront-cms-library 0.4.50 → 0.4.52
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 +2253 -2247
- package/dist/builder.js +1 -1
- package/dist/cart-details.scss +3207 -3207
- package/dist/cart.scss +271 -269
- package/dist/cartAttributes.scss +932 -935
- package/dist/checkout.scss +6496 -6460
- package/dist/dropdownTemplate.scss +4 -1
- package/dist/filters.scss +2450 -2418
- package/dist/functions.scss +91 -1
- package/dist/icon-list.scss +277 -268
- package/dist/language-selector.scss +702 -528
- package/dist/layouter.scss +307 -294
- package/dist/login.scss +1605 -1473
- package/dist/menu-v2.scss +752 -730
- package/dist/my-templates.scss +464 -463
- package/dist/myTemplates.scss +5 -5
- package/dist/order-status.scss +1877 -1856
- package/dist/product-image-allocation.scss +1365 -0
- package/dist/product-image.scss +2 -1
- package/dist/product-sizechart.scss +1826 -1826
- package/dist/profile.scss +23 -20
- package/dist/repeater-embla-controls.scss +6 -0
- package/dist/repeater.scss +920 -915
- package/dist/search.scss +361 -296
- package/dist/section.scss +210 -209
- package/dist/static-global.scss +5 -0
- package/dist/types/builder/tools/element-edit/bundle.d.ts +13 -2
- package/dist/types/builder/tools/element-edit/cart.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/common.d.ts +5 -0
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +17 -0
- package/dist/types/builder/tools/element-edit/language-menu.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/login.d.ts +1 -0
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +39 -0
- package/dist/types/builder/tools/element-edit/repeater.d.ts +2 -0
- package/dist/types/builder/tools/element-edit/resetPassword.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/search.d.ts +28 -0
- package/dist/types/builder/tools/element-edit/userElements.d.ts +48 -88
- package/dist/user-elements.scss +2555 -2471
- package/package.json +1 -1
package/dist/section.scss
CHANGED
|
@@ -1,209 +1,210 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "sass:list";
|
|
3
|
-
@use "./functions.scss" as *;
|
|
4
|
-
@use "./position-module.scss" as *;
|
|
5
|
-
@use "./animation-control.scss" as *;
|
|
6
|
-
@use "./responsive-behaviour.scss" as *;
|
|
7
|
-
@use "./overflow-module.scss" as *;
|
|
8
|
-
@use "./transform-properties-module.scss" as *;
|
|
9
|
-
|
|
10
|
-
$activeElementSelector: "[data-has-clicked='true']";
|
|
11
|
-
$isFlexboxElementChild: ".flx > .wrapper > *";
|
|
12
|
-
$repeterLElement: '[data-element-type="repeater"]';
|
|
13
|
-
$dp: "dp_d_none";
|
|
14
|
-
$tb: "tb_d_none";
|
|
15
|
-
$mb: "mb_d_none";
|
|
16
|
-
|
|
17
|
-
$rp: (
|
|
18
|
-
class: (
|
|
19
|
-
#{$tb}: (
|
|
20
|
-
laptop: (
|
|
21
|
-
display: "none !important",
|
|
22
|
-
),
|
|
23
|
-
),
|
|
24
|
-
#{$dp}: (
|
|
25
|
-
desktop: (
|
|
26
|
-
display: "none !important",
|
|
27
|
-
),
|
|
28
|
-
),
|
|
29
|
-
#{$mb}: (
|
|
30
|
-
mobile: (
|
|
31
|
-
display: "none !important",
|
|
32
|
-
),
|
|
33
|
-
),
|
|
34
|
-
),
|
|
35
|
-
);
|
|
36
|
-
|
|
37
|
-
body {
|
|
38
|
-
// color: var(--_thm-ty-p1-tt-cr);
|
|
39
|
-
// font-family: var(--_thm-ty-p1-ft-fy);
|
|
40
|
-
// font-size: var(--_thm-ty-p1-ft-se);
|
|
41
|
-
// font-weight: var(--_thm-ty-p1-bd);
|
|
42
|
-
// font-style: var(--_thm-ty-p1-ic);
|
|
43
|
-
// text-align: var(--_thm-ty-p1-tt-an);
|
|
44
|
-
// letter-spacing: var(--_thm-ty-p1-cr-sg);
|
|
45
|
-
// line-height: var(--_thm-ty-p1-le-ht);
|
|
46
|
-
// text-decoration: var(--_thm-ty-p1-ue);
|
|
47
|
-
|
|
48
|
-
// Responsive
|
|
49
|
-
@include prepareCustomClassCSSProps($rp);
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
0.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
0.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
background-
|
|
91
|
-
background-
|
|
92
|
-
background-
|
|
93
|
-
background-position
|
|
94
|
-
background-
|
|
95
|
-
background-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
//
|
|
116
|
-
//
|
|
117
|
-
// )
|
|
118
|
-
|
|
119
|
-
border-
|
|
120
|
-
border-
|
|
121
|
-
border-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
max-width: var(
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
// padding-
|
|
135
|
-
padding:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
// }
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
--_sf-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
//
|
|
187
|
-
//
|
|
188
|
-
//
|
|
189
|
-
//
|
|
190
|
-
//
|
|
191
|
-
//
|
|
192
|
-
//
|
|
193
|
-
//
|
|
194
|
-
//
|
|
195
|
-
//
|
|
196
|
-
//
|
|
197
|
-
//
|
|
198
|
-
//
|
|
199
|
-
//
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
//
|
|
203
|
-
//
|
|
204
|
-
//
|
|
205
|
-
//
|
|
206
|
-
//
|
|
207
|
-
//
|
|
208
|
-
//
|
|
209
|
-
}
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "sass:list";
|
|
3
|
+
@use "./functions.scss" as *;
|
|
4
|
+
@use "./position-module.scss" as *;
|
|
5
|
+
@use "./animation-control.scss" as *;
|
|
6
|
+
@use "./responsive-behaviour.scss" as *;
|
|
7
|
+
@use "./overflow-module.scss" as *;
|
|
8
|
+
@use "./transform-properties-module.scss" as *;
|
|
9
|
+
|
|
10
|
+
$activeElementSelector: "[data-has-clicked='true']";
|
|
11
|
+
$isFlexboxElementChild: ".flx > .wrapper > *";
|
|
12
|
+
$repeterLElement: '[data-element-type="repeater"]';
|
|
13
|
+
$dp: "dp_d_none";
|
|
14
|
+
$tb: "tb_d_none";
|
|
15
|
+
$mb: "mb_d_none";
|
|
16
|
+
|
|
17
|
+
$rp: (
|
|
18
|
+
class: (
|
|
19
|
+
#{$tb}: (
|
|
20
|
+
laptop: (
|
|
21
|
+
display: "none !important",
|
|
22
|
+
),
|
|
23
|
+
),
|
|
24
|
+
#{$dp}: (
|
|
25
|
+
desktop: (
|
|
26
|
+
display: "none !important",
|
|
27
|
+
),
|
|
28
|
+
),
|
|
29
|
+
#{$mb}: (
|
|
30
|
+
mobile: (
|
|
31
|
+
display: "none !important",
|
|
32
|
+
),
|
|
33
|
+
),
|
|
34
|
+
),
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
body {
|
|
38
|
+
// color: var(--_thm-ty-p1-tt-cr);
|
|
39
|
+
// font-family: var(--_thm-ty-p1-ft-fy);
|
|
40
|
+
// font-size: var(--_thm-ty-p1-ft-se);
|
|
41
|
+
// font-weight: var(--_thm-ty-p1-bd);
|
|
42
|
+
// font-style: var(--_thm-ty-p1-ic);
|
|
43
|
+
// text-align: var(--_thm-ty-p1-tt-an);
|
|
44
|
+
// letter-spacing: var(--_thm-ty-p1-cr-sg);
|
|
45
|
+
// line-height: var(--_thm-ty-p1-le-ht);
|
|
46
|
+
// text-decoration: var(--_thm-ty-p1-ue);
|
|
47
|
+
|
|
48
|
+
// Responsive
|
|
49
|
+
// @include prepareCustomClassCSSProps($rp);
|
|
50
|
+
@include prepareCustomClassCSSPropsV2($rp);
|
|
51
|
+
|
|
52
|
+
// Animation
|
|
53
|
+
@include FlexAnimationModuleStyles();
|
|
54
|
+
|
|
55
|
+
// Position
|
|
56
|
+
@include FlexPositionModuleStyles();
|
|
57
|
+
|
|
58
|
+
// Responsive
|
|
59
|
+
@include FlexElementResponsiveBehaviourStyles();
|
|
60
|
+
|
|
61
|
+
// Overflow
|
|
62
|
+
// @include FlexOverflowModuleStyles();
|
|
63
|
+
|
|
64
|
+
// Additional Tranform Properties
|
|
65
|
+
@include FlexElementTransformProps();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
section {
|
|
69
|
+
&[data-div-type="section"] {
|
|
70
|
+
position: var(--_p-relative);
|
|
71
|
+
width: 100%;
|
|
72
|
+
margin: prepareMediaVariable(--_ctm-sec-lt-mn);
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
justify-self: stretch;
|
|
75
|
+
align-self: stretch;
|
|
76
|
+
justify-content: center;
|
|
77
|
+
--_sf-element-vt-pd: max(
|
|
78
|
+
0.5px,
|
|
79
|
+
0.00625 * (var(--_cms-scaling-factor) - var(--_cms-scrollbar-width))
|
|
80
|
+
);
|
|
81
|
+
--_sf-element-hr-pd: max(
|
|
82
|
+
0.5px,
|
|
83
|
+
0.0117188 * (var(--_cms-scaling-factor) - var(--_cms-scrollbar-width))
|
|
84
|
+
);
|
|
85
|
+
box-shadow: var(
|
|
86
|
+
--_hide-section-shadow,
|
|
87
|
+
prepareMediaVariable(--_ctm-sec-dn-sw-ae) prepareMediaVariable(--_ctm-sec-dn-sw-b)
|
|
88
|
+
prepareMediaVariable(--_ctm-sec-dn-sw-sd) prepareMediaVariable(--_ctm-sec-dn-sw-cr)
|
|
89
|
+
);
|
|
90
|
+
background-color: prepareMediaVariable(--_ctm-sec-dn-bd-cr);
|
|
91
|
+
background-image: prepareMediaVariable(--_ctm-sec-dn-bd-ie);
|
|
92
|
+
background-attachment: prepareMediaVariable(--_ctm-sec-dn-bd-at);
|
|
93
|
+
background-position: prepareMediaVariable(--_ctm-sec-dn-bd-pn);
|
|
94
|
+
background-position-y: prepareMediaVariable(--_ctm-sec-dn-bd-pn-y);
|
|
95
|
+
background-repeat: prepareMediaVariable(--_ctm-sec-dn-bd-rt);
|
|
96
|
+
background-size: prepareMediaVariable(--_ctm-sec-dn-bd-se);
|
|
97
|
+
border-radius: prepareMediaVariable(--_ctm-sec-dn-br-rs) !important;
|
|
98
|
+
&[data-show-shadow="false"] {
|
|
99
|
+
--_hide-section-shadow: none;
|
|
100
|
+
}
|
|
101
|
+
&[data-show-border="false"] {
|
|
102
|
+
--_hide-section-border: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&:not(.#{$dp}, .#{$tb}, .#{$mb}) {
|
|
106
|
+
display: var(--_d-flex) !important;
|
|
107
|
+
}
|
|
108
|
+
& > div {
|
|
109
|
+
&[data-type="wrapper-layer"] {
|
|
110
|
+
display: var(--_d-flex) !important;
|
|
111
|
+
pointer-events: none;
|
|
112
|
+
position: var(--_p-absolute);
|
|
113
|
+
visibility: visible !important;
|
|
114
|
+
inset: 0 0 0 0;
|
|
115
|
+
// border-color: var(
|
|
116
|
+
// --_hide-section-border,
|
|
117
|
+
// var(--_ctm-mob-sec-dn-br-cr, var(--_ctm-tab-sec-dn-br-cr, var(--_ctm-sec-dn-br-cr)))
|
|
118
|
+
// );
|
|
119
|
+
border-color: var(--_hide-section-border, prepareMediaVariable(--_ctm-sec-dn-br-cr));
|
|
120
|
+
border-style: var(--_hide-section-border, prepareMediaVariable(--_ctm-sec-dn-br-se));
|
|
121
|
+
border-width: var(--_hide-section-border, prepareMediaVariable(--_ctm-sec-dn-br-wh));
|
|
122
|
+
border-radius: var(--_hide-section-border, prepareMediaVariable(--_ctm-sec-dn-br-rs));
|
|
123
|
+
}
|
|
124
|
+
&[data-div-type="cms-section-wrapper"] {
|
|
125
|
+
// max-width: var(--_sf-wp-mx-wt);
|
|
126
|
+
max-width: var(
|
|
127
|
+
--_sf-dt-sec-mw,
|
|
128
|
+
min(100%, prepareMediaVariable(--_ctm-sec-lt-wh))
|
|
129
|
+
) !important;
|
|
130
|
+
// min-height: prepareMediaVariable(--_ctm-sec-lt-mn-ht);
|
|
131
|
+
margin-inline: auto;
|
|
132
|
+
position: var(--_p-relative);
|
|
133
|
+
width: 100%;
|
|
134
|
+
// padding-inline: 10px;
|
|
135
|
+
// padding-block: 10px;
|
|
136
|
+
padding: prepareMediaVariable(--_ctm-sec-lt-pg);
|
|
137
|
+
column-gap: prepareMediaVariable(--_ctm-sec-lt-cn-gp);
|
|
138
|
+
row-gap: prepareMediaVariable(--_ctm-sec-lt-rw-gp);
|
|
139
|
+
|
|
140
|
+
&[data-vf="true"] {
|
|
141
|
+
--_sf-dt-sec-mw: 100%;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
div[data-div-type="element"] {
|
|
148
|
+
position: var(--_p-relative);
|
|
149
|
+
& > .wrapper {
|
|
150
|
+
grid-area: 1/1/2/2 !important;
|
|
151
|
+
|
|
152
|
+
a {
|
|
153
|
+
color: inherit;
|
|
154
|
+
text-decoration: none;
|
|
155
|
+
&.disabled {
|
|
156
|
+
opacity: 0.5;
|
|
157
|
+
pointer-events: none;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
&[data-view-state="full"] {
|
|
162
|
+
width: auto;
|
|
163
|
+
margin: 0;
|
|
164
|
+
cursor: auto;
|
|
165
|
+
justify-self: stretch !important;
|
|
166
|
+
align-self: stretch !important;
|
|
167
|
+
// &:not(#{$repeterLElement}) {
|
|
168
|
+
// }
|
|
169
|
+
&:is(#{$isFlexboxElementChild}) {
|
|
170
|
+
width: 100%;
|
|
171
|
+
}
|
|
172
|
+
&:is(#{$activeElementSelector}) {
|
|
173
|
+
& > div {
|
|
174
|
+
&[data-div-type="wrapper__layer"] {
|
|
175
|
+
--_sf-vt-zz: visible;
|
|
176
|
+
--_sf-op-zz: 1;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
& > .wrapper {
|
|
182
|
+
height: 100%;
|
|
183
|
+
width: 100%;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
// &:is([data-element-type="stack"].hrz > .wrapper > [data-div-type="element"]) {
|
|
187
|
+
// &:is([data-element-type="stack"]) {
|
|
188
|
+
// width: max(
|
|
189
|
+
// 0.5px,
|
|
190
|
+
// calc(#{prepareMediaVariable(--_ctm-sta-ele-nw-wh-vl)} / 100) *
|
|
191
|
+
// (var(--_cms-scaling-factor) - var(--_cms-scrollbar-width))
|
|
192
|
+
// );
|
|
193
|
+
// }
|
|
194
|
+
// &:is([data-element-type="container"]) {
|
|
195
|
+
// width: max(
|
|
196
|
+
// 0.5px,
|
|
197
|
+
// calc(#{prepareMediaVariable(--_ctm-con-ele-nw-wh-vl)} / 100) *
|
|
198
|
+
// (var(--_cms-scaling-factor) - var(--_cms-scrollbar-width))
|
|
199
|
+
// );
|
|
200
|
+
// }
|
|
201
|
+
|
|
202
|
+
// &:not([data-element-type="container"], [data-element-type="stack"]) {
|
|
203
|
+
// width: max(
|
|
204
|
+
// 0.5px,
|
|
205
|
+
// calc(#{prepareMediaVariable(--_ctm-ele-nw-wh-vl)} / 100) *
|
|
206
|
+
// (var(--_cms-scaling-factor) - var(--_cms-scrollbar-width))
|
|
207
|
+
// );
|
|
208
|
+
// }
|
|
209
|
+
// }
|
|
210
|
+
}
|
package/dist/static-global.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CMSElementEditTypes } from "../../enums";
|
|
1
|
+
import { CMSCSSUnitTypesEnums, CMSElementEditTypes } from "../../enums";
|
|
2
2
|
import { CMSIBCommonInterface } from "../../interfaces/global";
|
|
3
3
|
import { ButtonSelectorKeysEnum } from "./button";
|
|
4
4
|
import { CMSElementEditPopupInterface } from "./common";
|
|
@@ -240,6 +240,17 @@ export declare const getDefaultData: () => {
|
|
|
240
240
|
selectorKey: SelectorKeysEnum;
|
|
241
241
|
};
|
|
242
242
|
productNameDesign: {
|
|
243
|
+
textOverflow: {
|
|
244
|
+
value: boolean;
|
|
245
|
+
property: string;
|
|
246
|
+
propertyType: CMSElementEditTypes;
|
|
247
|
+
};
|
|
248
|
+
numberOfDisplayedLines: {
|
|
249
|
+
unit: CMSCSSUnitTypesEnums;
|
|
250
|
+
value: number;
|
|
251
|
+
property: string;
|
|
252
|
+
propertyType: CMSElementEditTypes;
|
|
253
|
+
};
|
|
243
254
|
borderColor: CMSIBCommonInterface;
|
|
244
255
|
borderStyle: CMSIBCommonInterface;
|
|
245
256
|
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
@@ -1278,7 +1289,7 @@ export declare const getDefaultData: () => {
|
|
|
1278
1289
|
dividerWeight: {
|
|
1279
1290
|
value: string;
|
|
1280
1291
|
property: string;
|
|
1281
|
-
unit:
|
|
1292
|
+
unit: CMSCSSUnitTypesEnums;
|
|
1282
1293
|
propertyType: CMSElementEditTypes;
|
|
1283
1294
|
};
|
|
1284
1295
|
dividerColor: {
|
|
@@ -25,6 +25,8 @@ export interface CMSElementEditPopupLayoutInterface {
|
|
|
25
25
|
dividerBetweenListItems?: CMSIBSizeInterface;
|
|
26
26
|
maxItemsToDisplay?: CMSIBSizeInterface;
|
|
27
27
|
dataConnector?: any;
|
|
28
|
+
fitOptions?: any;
|
|
29
|
+
objectPosition?: any;
|
|
28
30
|
}
|
|
29
31
|
export interface CMSElementEditPopupDesignInterface {
|
|
30
32
|
backgroundColor: CMSIBCommonInterface;
|
|
@@ -59,6 +61,9 @@ export interface CMSElementEditPopupDesignInterface {
|
|
|
59
61
|
characterSpacing: CMSIBSizeInterface;
|
|
60
62
|
paragraphSpacing: CMSIBSizeInterface;
|
|
61
63
|
lineHeight: CMSIBSizeInterface;
|
|
64
|
+
textTransform?: any;
|
|
65
|
+
textOverflow?: any;
|
|
66
|
+
numberOfDisplayedLines?: any;
|
|
62
67
|
fontDesc: CMSIBCommonInterface;
|
|
63
68
|
themeDesc: CMSIBCommonInterface;
|
|
64
69
|
fontSizeDesc: CMSIBSizeInterface;
|
|
@@ -37,6 +37,18 @@ export declare const getDefaultData: () => {
|
|
|
37
37
|
value: number;
|
|
38
38
|
unit: CMSCSSUnitTypesEnums;
|
|
39
39
|
};
|
|
40
|
+
rowGap: {
|
|
41
|
+
property: string;
|
|
42
|
+
propertyType: CMSElementEditTypes;
|
|
43
|
+
value: number;
|
|
44
|
+
unit: CMSCSSUnitTypesEnums;
|
|
45
|
+
};
|
|
46
|
+
columnGap: {
|
|
47
|
+
property: string;
|
|
48
|
+
propertyType: CMSElementEditTypes;
|
|
49
|
+
value: number;
|
|
50
|
+
unit: CMSCSSUnitTypesEnums;
|
|
51
|
+
};
|
|
40
52
|
justifyContent: {
|
|
41
53
|
property: string;
|
|
42
54
|
propertyType: CMSElementEditTypes;
|
|
@@ -47,6 +59,11 @@ export declare const getDefaultData: () => {
|
|
|
47
59
|
propertyType: CMSElementEditTypes;
|
|
48
60
|
value: string;
|
|
49
61
|
};
|
|
62
|
+
flexWrap: {
|
|
63
|
+
property: string;
|
|
64
|
+
propertyType: CMSElementEditTypes;
|
|
65
|
+
value: string;
|
|
66
|
+
};
|
|
50
67
|
};
|
|
51
68
|
design: {
|
|
52
69
|
selectorKey: SelectorKeysEnum;
|
|
@@ -98,6 +98,7 @@ export declare enum selfEnums {
|
|
|
98
98
|
MINI_CART_TEXT = "miniSearchText",
|
|
99
99
|
DROPDOWN_DISPLAY_STYLE = "dropdownDisplayStyle",
|
|
100
100
|
WIDGET_STYLE = "widgetStyle",
|
|
101
|
+
WIDGET_PLACEHOLDER_TEXT = "widgetPlaceholderText",
|
|
101
102
|
WIDGET_DROPDOWN = "widgetDropdown",
|
|
102
103
|
OPTION_STYLE = "optionStyle",
|
|
103
104
|
HOVER_STATE = "hover",
|
|
@@ -22,6 +22,7 @@ export declare enum orderSelectorKeysEnum {
|
|
|
22
22
|
ORDER_NAME = "orderName",
|
|
23
23
|
ORDER_ID = "orderId",
|
|
24
24
|
ORDER_DATE = "orderDate",
|
|
25
|
+
SHIPPING_METHOD = "shippingMethod",
|
|
25
26
|
QUICK_ACTIONS = "quickActions",
|
|
26
27
|
CONTAINER = "container",
|
|
27
28
|
QUICK_HEADER = "quickHeader",
|
|
@@ -471,6 +472,44 @@ export declare const getDefaultData: () => {
|
|
|
471
472
|
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
472
473
|
selectorKey: orderSelectorKeysEnum;
|
|
473
474
|
};
|
|
475
|
+
shippingMethod: {
|
|
476
|
+
padding: any;
|
|
477
|
+
itemGap: {
|
|
478
|
+
value: CMSCSSUnitTypesEnums;
|
|
479
|
+
unit: CMSCSSUnitTypesEnums;
|
|
480
|
+
property: string;
|
|
481
|
+
propertyType: CMSElementEditTypes;
|
|
482
|
+
};
|
|
483
|
+
theme: import("../../interfaces/global").CMSIBCommonInterface;
|
|
484
|
+
font: import("../../interfaces/global").CMSIBCommonInterface;
|
|
485
|
+
fontSize: import("../../interfaces/global").CMSIBSizeInterface;
|
|
486
|
+
textColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
487
|
+
bold: import("../../interfaces/global").CMSIBCommonInterface;
|
|
488
|
+
italic: import("../../interfaces/global").CMSIBCommonInterface;
|
|
489
|
+
linethrough: import("../../interfaces/global").CMSIBCommonInterface;
|
|
490
|
+
underline: import("../../interfaces/global").CMSIBCommonInterface;
|
|
491
|
+
textAlign: import("../../interfaces/global").CMSIBCommonInterface;
|
|
492
|
+
characterSpacing: import("../../interfaces/global").CMSIBSizeInterface;
|
|
493
|
+
lineHeight: import("../../interfaces/global").CMSIBSizeInterface;
|
|
494
|
+
backgroundColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
495
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
496
|
+
borderColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
497
|
+
borderStyle: import("../../interfaces/global").CMSIBCommonInterface;
|
|
498
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
499
|
+
showBorder: import("../../interfaces/global").CMSIBCommonInterface;
|
|
500
|
+
showShadow: import("../../interfaces/global").CMSIBCommonInterface;
|
|
501
|
+
shadowColor: import("../../interfaces/global").CMSIBCommonInterface;
|
|
502
|
+
blur: import("../../interfaces/global").CMSIBSizeInterface;
|
|
503
|
+
spread: import("../../interfaces/global").CMSIBSizeInterface;
|
|
504
|
+
angle: import("../../interfaces/global").CMSIBSizeInterface;
|
|
505
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
506
|
+
exposure: import("../../interfaces/global").CMSIBSizeInterface;
|
|
507
|
+
contrast: import("../../interfaces/global").CMSIBSizeInterface;
|
|
508
|
+
saturation: import("../../interfaces/global").CMSIBSizeInterface;
|
|
509
|
+
highlights: import("../../interfaces/global").CMSIBSizeInterface;
|
|
510
|
+
shadows: import("../../interfaces/global").CMSIBSizeInterface;
|
|
511
|
+
selectorKey: orderSelectorKeysEnum;
|
|
512
|
+
};
|
|
474
513
|
};
|
|
475
514
|
quickActions: {
|
|
476
515
|
selectorKey: orderSelectorKeysEnum;
|
|
@@ -8,6 +8,8 @@ interface selfLayoutInterface {
|
|
|
8
8
|
value: RepeaterDisplayStyleType;
|
|
9
9
|
};
|
|
10
10
|
itemGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
|
|
11
|
+
rowGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
|
|
12
|
+
columnGap: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
|
|
11
13
|
itemGapList: Pick<CMSIBCommonInterface, "property" | "propertyType"> & PaddingProps;
|
|
12
14
|
justifyContent: Pick<CMSIBCommonInterface, "property" | "propertyType"> & {
|
|
13
15
|
value: JustifyContentValue;
|
|
@@ -12,6 +12,7 @@ export declare enum resetPasswordSelectorKeysEnum {
|
|
|
12
12
|
LAYOUT = "layout",
|
|
13
13
|
DESIGN = "design",
|
|
14
14
|
WIDGET = "widget",
|
|
15
|
+
WIDGET_DETAILS = "widgetDetails",
|
|
15
16
|
FIELD_ITEMS = "fieldItems",
|
|
16
17
|
FORM = "form",
|
|
17
18
|
LABEL = "label",
|
|
@@ -24,7 +25,7 @@ export declare enum resetPasswordSelectorKeysEnum {
|
|
|
24
25
|
TITLE = "title",
|
|
25
26
|
DESCRIPTION = "description",
|
|
26
27
|
RESET_BUTTON = "resetButton",
|
|
27
|
-
|
|
28
|
+
GO_BACK_TO_LOGIN = "goBackToLogin",
|
|
28
29
|
ACTIONS = "actions",
|
|
29
30
|
PASSWORD_ICON = "passwordIcon",
|
|
30
31
|
FIELD_ICON = "fieldIcon"
|