@sc-360-v2/storefront-cms-library 0.4.47 → 0.4.49
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/add-products-tab.scss +847 -0
- package/dist/allocations.scss +217 -218
- package/dist/builder.js +1 -1
- package/dist/bulk-variant-picker.scss +511 -309
- package/dist/cart-details.scss +877 -56
- package/dist/cart-summary.scss +38 -38
- package/dist/cartAttributes.scss +37 -5
- package/dist/cartDropdownOverlay.scss +7 -0
- package/dist/dropdownTemplate.scss +41 -3
- package/dist/language-selector.scss +0 -30
- package/dist/profile.scss +2 -2
- package/dist/static-global.scss +31 -0
- package/dist/types/builder/tools/element-edit/addProductsTab.d.ts +215 -0
- package/dist/types/builder/tools/element-edit/bulkVariantPicker.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/cartAttributes.d.ts +66 -0
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ export declare enum cartAttributesSelectorKeysEnum {
|
|
|
11
11
|
ATTRIBUTES_HEADER = "attributesHeader",
|
|
12
12
|
ATTRIBUTES_CONTAINER = "attributesContainer",
|
|
13
13
|
ATTRIBUTE_ITEMS_WRAPPER = "attributeItemsWrapper",
|
|
14
|
+
ATTRIBUTES_TITLE = "attributesTitle",
|
|
15
|
+
ATTRIBUTES_INFORMATION = "attributesInformation",
|
|
14
16
|
ATTRIBUTES_FIELDS = "attributesFields",
|
|
15
17
|
ATTRIBUTES_LABELS = "attributesLabels",
|
|
16
18
|
ATTRIBUTES_INPUTS = "attributesInputs",
|
|
@@ -152,6 +154,70 @@ export declare const getDefaultData: () => {
|
|
|
152
154
|
shadows: CMSIBSizeInterface;
|
|
153
155
|
selectorKey: cartAttributesSelectorKeysEnum;
|
|
154
156
|
};
|
|
157
|
+
attributesTitle: {
|
|
158
|
+
padding: any;
|
|
159
|
+
theme: CMSIBCommonInterface;
|
|
160
|
+
font: CMSIBCommonInterface;
|
|
161
|
+
fontSize: CMSIBSizeInterface;
|
|
162
|
+
textColor: CMSIBCommonInterface;
|
|
163
|
+
bold: CMSIBCommonInterface;
|
|
164
|
+
italic: CMSIBCommonInterface;
|
|
165
|
+
linethrough: CMSIBCommonInterface;
|
|
166
|
+
underline: CMSIBCommonInterface;
|
|
167
|
+
textAlign: CMSIBCommonInterface;
|
|
168
|
+
characterSpacing: CMSIBSizeInterface;
|
|
169
|
+
lineHeight: CMSIBSizeInterface;
|
|
170
|
+
backgroundColor: CMSIBCommonInterface;
|
|
171
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
172
|
+
borderColor: CMSIBCommonInterface;
|
|
173
|
+
borderStyle: CMSIBCommonInterface;
|
|
174
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
175
|
+
showBorder: CMSIBCommonInterface;
|
|
176
|
+
showShadow: CMSIBCommonInterface;
|
|
177
|
+
shadowColor: CMSIBCommonInterface;
|
|
178
|
+
blur: CMSIBSizeInterface;
|
|
179
|
+
spread: CMSIBSizeInterface;
|
|
180
|
+
angle: CMSIBSizeInterface;
|
|
181
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
182
|
+
exposure: CMSIBSizeInterface;
|
|
183
|
+
contrast: CMSIBSizeInterface;
|
|
184
|
+
saturation: CMSIBSizeInterface;
|
|
185
|
+
highlights: CMSIBSizeInterface;
|
|
186
|
+
shadows: CMSIBSizeInterface;
|
|
187
|
+
selectorKey: cartAttributesSelectorKeysEnum;
|
|
188
|
+
};
|
|
189
|
+
attributesInformation: {
|
|
190
|
+
padding: any;
|
|
191
|
+
theme: CMSIBCommonInterface;
|
|
192
|
+
font: CMSIBCommonInterface;
|
|
193
|
+
fontSize: CMSIBSizeInterface;
|
|
194
|
+
textColor: CMSIBCommonInterface;
|
|
195
|
+
bold: CMSIBCommonInterface;
|
|
196
|
+
italic: CMSIBCommonInterface;
|
|
197
|
+
linethrough: CMSIBCommonInterface;
|
|
198
|
+
underline: CMSIBCommonInterface;
|
|
199
|
+
textAlign: CMSIBCommonInterface;
|
|
200
|
+
characterSpacing: CMSIBSizeInterface;
|
|
201
|
+
lineHeight: CMSIBSizeInterface;
|
|
202
|
+
backgroundColor: CMSIBCommonInterface;
|
|
203
|
+
margin: import("../../interfaces/global").CSSPaddingValues | undefined;
|
|
204
|
+
borderColor: CMSIBCommonInterface;
|
|
205
|
+
borderStyle: CMSIBCommonInterface;
|
|
206
|
+
borderPerSlide: import("../../interfaces/global").CSSPaddingValues;
|
|
207
|
+
showBorder: CMSIBCommonInterface;
|
|
208
|
+
showShadow: CMSIBCommonInterface;
|
|
209
|
+
shadowColor: CMSIBCommonInterface;
|
|
210
|
+
blur: CMSIBSizeInterface;
|
|
211
|
+
spread: CMSIBSizeInterface;
|
|
212
|
+
angle: CMSIBSizeInterface;
|
|
213
|
+
borderRadius: import("../../interfaces/global").CSSPaddingValues;
|
|
214
|
+
exposure: CMSIBSizeInterface;
|
|
215
|
+
contrast: CMSIBSizeInterface;
|
|
216
|
+
saturation: CMSIBSizeInterface;
|
|
217
|
+
highlights: CMSIBSizeInterface;
|
|
218
|
+
shadows: CMSIBSizeInterface;
|
|
219
|
+
selectorKey: cartAttributesSelectorKeysEnum;
|
|
220
|
+
};
|
|
155
221
|
attributesFields: {
|
|
156
222
|
padding: any;
|
|
157
223
|
itemGap: {
|