@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.
@@ -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
- color: var(--_gray-500);
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
- color: #333;
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
- color: #111;
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: 15px;
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: #198754;
242
+ color: #039855;
229
243
  }
230
244
 
231
245
  .amount {
232
- color: #198754;
246
+ color: #039855;
233
247
  }
234
248
  }
235
249
  }
@@ -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
- 100% {
48
- max-height: 500px;
49
- overflow-y: auto;
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);
@@ -1,6 +1,6 @@
1
1
  .skeleton__element {
2
2
  background-color: var(--_gray-300);
3
- border-radius: 4px;
3
+ border-radius: 6px;
4
4
  position: var(--_p-relative);
5
5
  overflow: hidden;
6
6
  &.rounded {
@@ -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
- showCreateTemplate: {
132
+ showAddFromTemplate: {
133
133
  value: boolean;
134
134
  property: string;
135
135
  propertyType: CMSElementEditTypes;
136
136
  };
137
- createTemplateLinkTo: {
137
+ addFromTemplateLinkTo: {
138
138
  value: boolean;
139
139
  propertyType: CMSElementEditTypes;
140
140
  };
package/dist/widget.scss CHANGED
@@ -132,3 +132,6 @@
132
132
  @use "./request-for-quotes.scss";
133
133
  @use "./checkbox-radio.scss";
134
134
  @use "./image-for-product.scss";
135
+ @use "./my-wishlist.scss";
136
+ @use "./flex-text-editor.scss";
137
+ @use "./skeleton.scss";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sc-360-v2/storefront-cms-library",
3
- "version": "0.3.72",
3
+ "version": "0.3.74",
4
4
  "main": "/dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "exports": {