@sc-360-v2/storefront-cms-library 0.3.85 → 0.3.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.
@@ -91,4 +91,5 @@ import * as megaMenuSchema from "./elements/mega-menu";
91
91
  import * as megaMenuContainerSchema from "./elements/mega-menu-container";
92
92
  import * as simpleListSchema from "./elements/simple-list";
93
93
  import * as cartWrapperSchema from "./elements/cart-wrapper";
94
- export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, bundleDetailsSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, cartSummarySchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, orderStatusSchema, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, loaderSchema, addProductsTabSchema, shippingPaymentsSchema, couponSchema, megaMenuSchema, megaMenuContainerSchema, simpleListSchema, cartWrapperSchema, };
94
+ import * as embroiderySchema from "./elements/embroidery";
95
+ export { ElementEditSchema, amountEstimatorSchema, bulkVariantPickerSchema, buttonSchema, cmsTypes, codeSchema, commonFunctions, containerSchema, countdownSchema, embedSchema, enums, faqSchema, gallerySliderSchema, gridSchema, imageHotspotSchema, imageSchema, interfaces, mapSchema, paymentMethodsSchema, pickupLocationsSchema, priceSchema, productActionsSchema, productHighlightsSchema, productImageSchema, productInventorySchema, productPromotionsSchema, quantitySelectorSchema, scrollSchema, sectionSchema, shippingEstimatorSchema, socialIconsSchema, stackSchema, storeLocationsSchema, tabSchema, tableSchema, textSchema, uomSelectorSchema, variantPickerSchema, videoSChema, volumePricingSchema, lightboxSchema, cartSchema, profileSchema, productSchema, repeaterSchema, brandSchema, bundleSchema, bundleDetailsSchema, brandImageSchema, lightBoxV2Schema, searchSchema, layouterSchema, layouterItemSchema, categoryDetailsSchema, contactUsSchema, loginSchema, createFormSchema, resetPasswordSchema, searchResultsHeadingSchema, itemStockSchema, lineItemSchema, tabsV2Schema, tabsContainerSchema, marchandiserSetsSchema, formBuilder, quickLinksSchema, addOrderSchema, buyForTabsSchema, buyForTabsContainerSchema, checkoutSchema, cartSummarySchema, toasterSchema, spotlightSchema, productCustomizationsSchema, iconListSchema, orderStatusSchema, menuV2Schema, menuItemSchema, layouterProSchema, layouterProItemSchema, userElementsSchema, filterResultsSchema, productSizeChartSchema, badgeSchema, cartAttributesSchema, loaderSchema, addProductsTabSchema, shippingPaymentsSchema, couponSchema, megaMenuSchema, megaMenuContainerSchema, simpleListSchema, cartWrapperSchema, embroiderySchema, };
@@ -1,7 +1,302 @@
1
+ import { CMSElementEditTypes } from "../../enums";
1
2
  import { CMSIBCommonInterface } from "../../interfaces/global";
2
3
  import { CMSElementEditPopupDesignInterface, CMSElementEditPopupInterface, CMSElementEditPopupLayoutInterface } from "./common";
3
4
  export interface SectionEditPopupInterface extends CMSElementEditPopupInterface {
4
5
  }
6
+ export declare const TableControls: {
7
+ layout: {
8
+ header: {
9
+ value: boolean;
10
+ property: string;
11
+ propertyType: CMSElementEditTypes;
12
+ };
13
+ headerHeight: {
14
+ value: string;
15
+ unit: number;
16
+ property: string;
17
+ propertyType: CMSElementEditTypes;
18
+ };
19
+ rowHeight: {
20
+ value: string;
21
+ unit: number;
22
+ property: string;
23
+ propertyType: CMSElementEditTypes;
24
+ };
25
+ showMoreRows: {
26
+ value: string;
27
+ propertyType: CMSElementEditTypes;
28
+ property: string;
29
+ };
30
+ rowsPerPage: {
31
+ value: number;
32
+ propertyType: CMSElementEditTypes;
33
+ property: string;
34
+ };
35
+ paginationAlignment: {
36
+ value: string;
37
+ propertyType: CMSElementEditTypes;
38
+ property: string;
39
+ };
40
+ paginationType: {
41
+ value: string;
42
+ propertyType: CMSElementEditTypes;
43
+ property: string;
44
+ };
45
+ noOfItemsToLoad: {
46
+ value: string;
47
+ propertyType: CMSElementEditTypes;
48
+ property: string;
49
+ };
50
+ itemsCount: {
51
+ value: number;
52
+ propertyType: CMSElementEditTypes;
53
+ };
54
+ headerDivider: {
55
+ value: boolean;
56
+ property: string;
57
+ propertyType: CMSElementEditTypes;
58
+ };
59
+ rowDivider: {
60
+ value: boolean;
61
+ property: string;
62
+ propertyType: CMSElementEditTypes;
63
+ };
64
+ columnDivider: {
65
+ value: boolean;
66
+ property: string;
67
+ propertyType: CMSElementEditTypes;
68
+ };
69
+ alternativeRowColors: {
70
+ value: boolean;
71
+ property: string;
72
+ propertyType: CMSElementEditTypes;
73
+ };
74
+ headerCellPadding: {
75
+ value: string;
76
+ unit: number;
77
+ property: string;
78
+ propertyType: CMSElementEditTypes;
79
+ };
80
+ rowCellPadding: {
81
+ value: string;
82
+ unit: number;
83
+ property: string;
84
+ propertyType: CMSElementEditTypes;
85
+ };
86
+ contentAlignment: {
87
+ value: string;
88
+ property: string;
89
+ propertyType: CMSElementEditTypes;
90
+ };
91
+ };
92
+ design: {
93
+ pagination: {
94
+ pagination: {
95
+ value: string;
96
+ propertyType: CMSElementEditTypes;
97
+ };
98
+ paginationStyle: {
99
+ value: string;
100
+ propertyType: CMSElementEditTypes;
101
+ };
102
+ arrowIconStyle: {
103
+ value: string;
104
+ propertyType: CMSElementEditTypes;
105
+ };
106
+ arrowSize: {
107
+ value: string;
108
+ propertyType: CMSElementEditTypes;
109
+ unit: number;
110
+ };
111
+ arrowColor: {
112
+ value: string;
113
+ propertyType: CMSElementEditTypes;
114
+ };
115
+ backgroundShape: {
116
+ value: string;
117
+ propertyType: CMSElementEditTypes;
118
+ };
119
+ backgroundColor: {
120
+ value: string;
121
+ propertyType: CMSElementEditTypes;
122
+ };
123
+ font: {
124
+ value: string;
125
+ propertyType: CMSElementEditTypes;
126
+ };
127
+ fontSize: {
128
+ value: string;
129
+ propertyType: CMSElementEditTypes;
130
+ unit: number;
131
+ };
132
+ textColor: {
133
+ value: string;
134
+ propertyType: CMSElementEditTypes;
135
+ property: string;
136
+ };
137
+ textHighlight: {
138
+ value: string;
139
+ propertyType: CMSElementEditTypes;
140
+ };
141
+ hoverBackgroundShape: {
142
+ value: string;
143
+ propertyType: CMSElementEditTypes;
144
+ };
145
+ hoverBackgroundColor: {
146
+ value: string;
147
+ propertyType: CMSElementEditTypes;
148
+ };
149
+ hoverFont: {
150
+ value: string;
151
+ propertyType: CMSElementEditTypes;
152
+ };
153
+ hoverFontSize: {
154
+ value: string;
155
+ propertyType: CMSElementEditTypes;
156
+ unit: number;
157
+ };
158
+ hoverTextColor: {
159
+ value: string;
160
+ propertyType: CMSElementEditTypes;
161
+ };
162
+ hoverTextHighlight: {
163
+ value: string;
164
+ propertyType: CMSElementEditTypes;
165
+ };
166
+ previousIcon: {
167
+ value: string;
168
+ propertyType: CMSElementEditTypes;
169
+ };
170
+ nextIcon: {
171
+ value: string;
172
+ propertyType: CMSElementEditTypes;
173
+ };
174
+ iconSize: {
175
+ value: string;
176
+ propertyType: CMSElementEditTypes;
177
+ unit: number;
178
+ property: string;
179
+ };
180
+ iconColor: {
181
+ value: {
182
+ hex: string;
183
+ rgb: {
184
+ r: string;
185
+ g: string;
186
+ b: string;
187
+ a: number;
188
+ };
189
+ };
190
+ property: string;
191
+ propertyType: CMSElementEditTypes;
192
+ parentRef: string;
193
+ };
194
+ };
195
+ };
196
+ };
197
+ export declare const tableProperties: {
198
+ header: {
199
+ value: boolean;
200
+ property: string;
201
+ propertyType: CMSElementEditTypes;
202
+ };
203
+ headerHeight: {
204
+ value: string;
205
+ unit: number;
206
+ property: string;
207
+ propertyType: CMSElementEditTypes;
208
+ };
209
+ rowHeight: {
210
+ value: string;
211
+ unit: number;
212
+ property: string;
213
+ propertyType: CMSElementEditTypes;
214
+ };
215
+ headerDivider: {
216
+ value: boolean;
217
+ property: string;
218
+ propertyType: CMSElementEditTypes;
219
+ };
220
+ rowDivider: {
221
+ value: boolean;
222
+ property: string;
223
+ propertyType: CMSElementEditTypes;
224
+ };
225
+ columnDivider: {
226
+ value: boolean;
227
+ property: string;
228
+ propertyType: CMSElementEditTypes;
229
+ };
230
+ alternativeRowColors: {
231
+ value: boolean;
232
+ property: string;
233
+ propertyType: CMSElementEditTypes;
234
+ };
235
+ headerCellPadding: {
236
+ value: string;
237
+ unit: number;
238
+ property: string;
239
+ propertyType: CMSElementEditTypes;
240
+ };
241
+ rowCellPadding: {
242
+ value: string;
243
+ unit: number;
244
+ property: string;
245
+ propertyType: CMSElementEditTypes;
246
+ };
247
+ contentAlignment: {
248
+ value: string;
249
+ property: string;
250
+ propertyType: CMSElementEditTypes;
251
+ };
252
+ showMoreRows: {
253
+ value: string;
254
+ propertyType: CMSElementEditTypes;
255
+ property: string;
256
+ };
257
+ rowsPerPage: {
258
+ value: number;
259
+ propertyType: CMSElementEditTypes;
260
+ property: string;
261
+ };
262
+ paginationType: {
263
+ value: string;
264
+ propertyType: CMSElementEditTypes;
265
+ property: string;
266
+ };
267
+ paginationAlignment: {
268
+ value: string;
269
+ propertyType: CMSElementEditTypes;
270
+ property: string;
271
+ };
272
+ noOfItemsToLoad: {
273
+ value: string;
274
+ propertyType: CMSElementEditTypes;
275
+ property: string;
276
+ };
277
+ itemsCount: {
278
+ value: number;
279
+ propertyType: CMSElementEditTypes;
280
+ };
281
+ tableHeight: {
282
+ value: string;
283
+ unit: number;
284
+ property: string;
285
+ propertyType?: any;
286
+ isReadOnly?: boolean | undefined;
287
+ parentRef?: string | undefined;
288
+ };
289
+ rowsToDisplay: {
290
+ value: number;
291
+ property: string;
292
+ propertyType: CMSElementEditTypes;
293
+ };
294
+ numOfItemsToLoad: {
295
+ value: string;
296
+ property: string;
297
+ propertyType: CMSElementEditTypes;
298
+ };
299
+ };
5
300
  interface selfLayoutInterface {
6
301
  selectorKey: string;
7
302
  displayStyle: CMSIBCommonInterface;