@sc-360-v2/storefront-cms-library 0.3.72 → 0.3.74
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/builder.js +1 -1
- package/dist/cart-details.scss +0 -2
- package/dist/category-groups-element.scss +8 -0
- package/dist/flex-text-editor.scss +267 -0
- package/dist/mega-menu.scss +7 -0
- package/dist/my-wishlist.scss +17 -0
- package/dist/option-bar.scss +763 -375
- package/dist/order-status.scss +34 -6
- package/dist/product-basic-elements.scss +6 -4
- package/dist/repeater.scss +499 -319
- package/dist/request-for-quotes.scss +23 -9
- package/dist/simple-list.scss +8 -8
- package/dist/skeleton.scss +1 -1
- package/dist/types/builder/enums/index.d.ts +6 -2
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +2 -2
- package/dist/widget.scss +3 -0
- package/package.json +1 -1
|
@@ -97,7 +97,10 @@
|
|
|
97
97
|
.quote-item__header {
|
|
98
98
|
margin-bottom: 16px;
|
|
99
99
|
padding-bottom: 16px;
|
|
100
|
+
display: flex;
|
|
100
101
|
border-bottom: 1px dotted #d0d0d0;
|
|
102
|
+
flex-direction: column;
|
|
103
|
+
gap: 4px;
|
|
101
104
|
|
|
102
105
|
.quote-item__title {
|
|
103
106
|
font-size: 16px;
|
|
@@ -109,7 +112,8 @@
|
|
|
109
112
|
display: flex;
|
|
110
113
|
gap: 10px;
|
|
111
114
|
font-size: 14px;
|
|
112
|
-
|
|
115
|
+
font-weight: 400;
|
|
116
|
+
// color: var(--_gray-500);
|
|
113
117
|
}
|
|
114
118
|
}
|
|
115
119
|
|
|
@@ -129,19 +133,26 @@
|
|
|
129
133
|
label {
|
|
130
134
|
margin-bottom: 6px;
|
|
131
135
|
font-weight: 500;
|
|
132
|
-
|
|
136
|
+
font-size: 14px;
|
|
137
|
+
// color: #333;
|
|
133
138
|
}
|
|
134
139
|
|
|
135
140
|
.value {
|
|
141
|
+
// font-weight: 600;
|
|
142
|
+
// font-size: 16px;
|
|
143
|
+
// // color: #111;
|
|
144
|
+
|
|
136
145
|
font-weight: 600;
|
|
137
146
|
font-size: 16px;
|
|
138
|
-
|
|
147
|
+
height: 39px;
|
|
148
|
+
display: flex;
|
|
149
|
+
align-items: center;
|
|
139
150
|
}
|
|
140
151
|
|
|
141
152
|
input {
|
|
142
153
|
height: 40px;
|
|
143
154
|
padding: 8px 12px;
|
|
144
|
-
font-size:
|
|
155
|
+
font-size: 14px;
|
|
145
156
|
border: 1px solid #ccc;
|
|
146
157
|
border-radius: 4px;
|
|
147
158
|
outline: none;
|
|
@@ -207,29 +218,32 @@
|
|
|
207
218
|
|
|
208
219
|
.label {
|
|
209
220
|
font-size: 14px;
|
|
210
|
-
color: #444;
|
|
221
|
+
// color: #444;
|
|
211
222
|
}
|
|
212
223
|
|
|
213
224
|
.amount {
|
|
214
225
|
font-size: 18px;
|
|
215
226
|
font-weight: 700;
|
|
216
|
-
color: #111;
|
|
227
|
+
// color: #111;
|
|
217
228
|
}
|
|
218
229
|
}
|
|
219
230
|
|
|
220
231
|
small {
|
|
221
232
|
font-size: 13px;
|
|
222
|
-
color: #888;
|
|
233
|
+
// color: #888;
|
|
223
234
|
margin-top: 4px;
|
|
235
|
+
text-align: end;
|
|
236
|
+
display: flex;
|
|
237
|
+
justify-content: end;
|
|
224
238
|
}
|
|
225
239
|
|
|
226
240
|
&.discounted {
|
|
227
241
|
.label {
|
|
228
|
-
color: #
|
|
242
|
+
color: #039855;
|
|
229
243
|
}
|
|
230
244
|
|
|
231
245
|
.amount {
|
|
232
|
-
color: #
|
|
246
|
+
color: #039855;
|
|
233
247
|
}
|
|
234
248
|
}
|
|
235
249
|
}
|
package/dist/simple-list.scss
CHANGED
|
@@ -38,17 +38,17 @@ $subMenuItemText: ".flex__sub__menu__item__text";
|
|
|
38
38
|
|
|
39
39
|
// max-height: 0px;
|
|
40
40
|
// overflow: clip;
|
|
41
|
-
max-height: 500px;
|
|
42
|
-
overflow-y: auto;
|
|
41
|
+
// max-height: 500px;
|
|
42
|
+
// overflow-y: auto;
|
|
43
43
|
// animation: animTwo var(--_transition-duration)
|
|
44
44
|
// var(--_transition-timing-function) 1 forwards alternate;
|
|
45
45
|
|
|
46
|
-
@keyframes animTwo {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
46
|
+
// @keyframes animTwo {
|
|
47
|
+
// 100% {
|
|
48
|
+
// max-height: 500px;
|
|
49
|
+
// overflow-y: auto;
|
|
50
|
+
// }
|
|
51
|
+
// }
|
|
52
52
|
|
|
53
53
|
&[data-show-border="true"] {
|
|
54
54
|
border-width: prepareMediaVariable(--_ctm-dn-sb-mu-cr-br-wh);
|
package/dist/skeleton.scss
CHANGED
|
@@ -412,7 +412,8 @@ export declare enum CMSCustomEventsListEnums {
|
|
|
412
412
|
IMAGE_CROP_TEMP_DATA = "imageCropTempData",
|
|
413
413
|
FORM_BUILDER_STATE = "formBuilderState",
|
|
414
414
|
EMBROIDERY_PLAYGROUND_STATE = "embroideryPlaygroundState",
|
|
415
|
-
FLEX_BUILDER_ANIMATION_TEMP_STATE = "flexBuilderAnimationTempState"
|
|
415
|
+
FLEX_BUILDER_ANIMATION_TEMP_STATE = "flexBuilderAnimationTempState",
|
|
416
|
+
FLEX_EDITOR_SCROLL_TRIGGER = "flexEditorScrollTrigger"
|
|
416
417
|
}
|
|
417
418
|
export declare enum FlexAppVersionEnums {
|
|
418
419
|
NESTEDJSON = 1,
|
|
@@ -420,7 +421,10 @@ export declare enum FlexAppVersionEnums {
|
|
|
420
421
|
}
|
|
421
422
|
export declare enum FlexDefaultValues {
|
|
422
423
|
FLEXLIGHTBOXCLOSEBTN = "isLightboxCloseIconKey",
|
|
423
|
-
FLEX_ELEMENET_ANIMATION_KEY = "animationData"
|
|
424
|
+
FLEX_ELEMENET_ANIMATION_KEY = "animationData",
|
|
425
|
+
FLEX_MACRO_CHIP_CLASS = "macro__chip__v2",
|
|
426
|
+
FLEX_MACRO_CHIP_MACRO_KEY = "data-macro-key",
|
|
427
|
+
FLEX_MACRO_TEMPLATE_KEY = "data-template"
|
|
424
428
|
}
|
|
425
429
|
export declare enum SkeletonItems {
|
|
426
430
|
PLACEHOLDER_IMAGE = "/00000000-0000-0000-0000-000000000000/development/img-placeholder.jpg"
|
|
@@ -129,12 +129,12 @@ export declare const getDefaultData: () => {
|
|
|
129
129
|
property: string;
|
|
130
130
|
propertyType: CMSElementEditTypes;
|
|
131
131
|
};
|
|
132
|
-
|
|
132
|
+
showAddFromTemplate: {
|
|
133
133
|
value: boolean;
|
|
134
134
|
property: string;
|
|
135
135
|
propertyType: CMSElementEditTypes;
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
addFromTemplateLinkTo: {
|
|
138
138
|
value: boolean;
|
|
139
139
|
propertyType: CMSElementEditTypes;
|
|
140
140
|
};
|
package/dist/widget.scss
CHANGED