hasting-swatchcart-module 1.0.30 → 1.0.32

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.
Files changed (121) hide show
  1. package/dist/assets/index.css +1 -0
  2. package/dist/cdn/lib/components/SwatchesModule.d.ts +11 -0
  3. package/dist/cdn/lib/main.d.ts +9 -0
  4. package/dist/cdn/lib/store/LibraryProvider.d.ts +4 -0
  5. package/dist/cdn/lib/store/rootReducer.d.ts +11 -0
  6. package/dist/cdn/lib/store/store.d.ts +25 -0
  7. package/dist/cdn/lib/store/withStore.d.ts +2 -0
  8. package/dist/cdn/lib/vite-env.d.ts +1 -0
  9. package/dist/cdn/main.css +1 -0
  10. package/dist/cdn/main.js +31596 -0
  11. package/dist/cdn/src/app/App.d.ts +2 -0
  12. package/dist/cdn/src/app/assets/svg/ArrowIconSVG.d.ts +3 -0
  13. package/dist/cdn/src/app/assets/svg/CheckMarkIconSVG.d.ts +3 -0
  14. package/dist/cdn/src/app/assets/svg/ChevronSVGIcon.d.ts +3 -0
  15. package/dist/cdn/src/app/assets/svg/CloseIconSVG.d.ts +3 -0
  16. package/dist/cdn/src/app/assets/svg/DarkWhiteIconSVG.d.ts +1 -0
  17. package/dist/cdn/src/app/assets/svg/MinusIconSVG.d.ts +3 -0
  18. package/dist/cdn/src/app/assets/svg/PlusIconSVG.d.ts +3 -0
  19. package/dist/cdn/src/app/assets/svg/SearchIconSVG.d.ts +3 -0
  20. package/dist/cdn/src/app/assets/svg/TrashIconSVG.d.ts +3 -0
  21. package/dist/cdn/src/app/assets/svg/WhiteWhiteIconSVG.d.ts +1 -0
  22. package/dist/cdn/src/app/main.d.ts +0 -0
  23. package/dist/cdn/src/app/providers/StoreProvider.d.ts +6 -0
  24. package/dist/cdn/src/app/store/rootReducer.d.ts +11 -0
  25. package/dist/cdn/src/app/store/store.d.ts +24 -0
  26. package/dist/cdn/src/features/Cart/lib/CartCervices.d.ts +5 -0
  27. package/dist/cdn/src/features/Cart/model/cartSlice.d.ts +3 -0
  28. package/dist/cdn/src/features/Cart/model/selectors.d.ts +223 -0
  29. package/dist/cdn/src/features/Cart/model/types.d.ts +7 -0
  30. package/dist/cdn/src/features/Cart/ui/CartHeader/CartHeader.d.ts +7 -0
  31. package/dist/cdn/src/features/Cart/ui/CartList/CartList.d.ts +1 -0
  32. package/dist/cdn/src/features/Cart/ui/CartListItem/CartListItem.d.ts +10 -0
  33. package/dist/cdn/src/features/Cart/ui/CartWrapper/CartWrapper.d.ts +9 -0
  34. package/dist/cdn/src/features/Cart/ui/Counter/Counter.d.ts +9 -0
  35. package/dist/cdn/src/features/DataAdapter/lib/DataAdapterServices.d.ts +14 -0
  36. package/dist/cdn/src/features/DataAdapter/utils/types.d.ts +11 -0
  37. package/dist/cdn/src/features/MultiProduct/lib/MultiProductCartServices.d.ts +13 -0
  38. package/dist/cdn/src/features/MultiProduct/model/API/api.d.ts +4 -0
  39. package/dist/cdn/src/features/MultiProduct/model/API/routes.d.ts +4 -0
  40. package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +9 -0
  41. package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +38 -0
  42. package/dist/cdn/src/features/MultiProduct/model/thunk.d.ts +11 -0
  43. package/dist/cdn/src/features/MultiProduct/model/types.d.ts +63 -0
  44. package/dist/cdn/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.d.ts +1 -0
  45. package/dist/cdn/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.d.ts +1 -0
  46. package/dist/cdn/src/features/MultiProduct/ui/MaterialMultiProductList/MaterialMultiProductList.d.ts +42 -0
  47. package/dist/cdn/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.d.ts +5 -0
  48. package/dist/cdn/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.d.ts +5 -0
  49. package/dist/cdn/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.d.ts +6 -0
  50. package/dist/cdn/src/features/MultiProduct/ui/ProductList/ProductList.d.ts +1 -0
  51. package/dist/cdn/src/features/MultiProduct/ui/ProductListItem/ProductListItem.d.ts +6 -0
  52. package/dist/cdn/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.d.ts +1 -0
  53. package/dist/cdn/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.d.ts +15 -0
  54. package/dist/cdn/src/features/MultiProduct/ui/SwatchListItem/SwatchListItem.d.ts +41 -0
  55. package/dist/cdn/src/features/MultiProduct/ui/SwatchesMultiProductList/SwatchesMultiProductList.d.ts +29 -0
  56. package/dist/cdn/src/features/MultiProduct/utils/constants.d.ts +6 -0
  57. package/dist/cdn/src/features/MultiProduct/utils/randomList.d.ts +2 -0
  58. package/dist/cdn/src/features/SwatchModule/SwatchModule/ui/SwatchModule.d.ts +2 -0
  59. package/dist/cdn/src/features/swatches/lib/AttributeHelper.d.ts +7 -0
  60. package/dist/cdn/src/features/swatches/lib/SwatchesServices.d.ts +11 -0
  61. package/dist/cdn/src/features/swatches/model/selectors.d.ts +10 -0
  62. package/dist/cdn/src/features/swatches/model/swatchesSlice.d.ts +54 -0
  63. package/dist/cdn/src/features/swatches/model/thunks.d.ts +12 -0
  64. package/dist/cdn/src/features/swatches/model/types.d.ts +148 -0
  65. package/dist/cdn/src/features/swatches/ui/Filters/ColorsFilter.d.ts +1 -0
  66. package/dist/cdn/src/features/swatches/ui/Filters/LooksFilter.d.ts +1 -0
  67. package/dist/cdn/src/features/swatches/ui/Filters/MaterialsFilter.d.ts +1 -0
  68. package/dist/cdn/src/features/swatches/ui/Filters/index.d.ts +1 -0
  69. package/dist/cdn/src/features/swatches/ui/HexGridZoom/HexGridZoom.d.ts +3 -0
  70. package/dist/cdn/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.d.ts +3 -0
  71. package/dist/cdn/src/features/swatches/ui/MaterialSingleProductList/MaterialSingleProductList.d.ts +7 -0
  72. package/dist/cdn/src/features/swatches/ui/ProductElement/index.d.ts +6 -0
  73. package/dist/cdn/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.d.ts +8 -0
  74. package/dist/cdn/src/features/swatches/ui/Swatches.d.ts +2 -0
  75. package/dist/cdn/src/features/swatches/ui/SwatchesList/SwatchesList.d.ts +7 -0
  76. package/dist/cdn/src/features/swatches/ui/SwatchesListWrapper/SwatchesListWrapper.d.ts +1 -0
  77. package/dist/cdn/src/features/swatches/utils/constants.d.ts +3 -0
  78. package/dist/cdn/src/features/swatches/utils/types.d.ts +22 -0
  79. package/dist/cdn/src/shared/constants/constants.d.ts +1 -0
  80. package/dist/cdn/src/shared/constants/props.d.ts +1058 -0
  81. package/dist/cdn/src/shared/constants/select.d.ts +4 -0
  82. package/dist/cdn/src/shared/constants/selectedMaterials.d.ts +1 -0
  83. package/dist/cdn/src/shared/types/activeTab.d.ts +5 -0
  84. package/dist/cdn/src/shared/types/fetchData.d.ts +41 -0
  85. package/dist/cdn/src/shared/types/svg.d.ts +3 -0
  86. package/dist/cdn/src/shared/ui/CartPrice/CartPrice.d.ts +7 -0
  87. package/dist/cdn/src/shared/ui/Checkbox/Checkbox.d.ts +4 -0
  88. package/dist/cdn/src/shared/ui/CustomButton/CustomButton.d.ts +6 -0
  89. package/dist/cdn/src/shared/ui/CustomModal/CustomModal.d.ts +11 -0
  90. package/dist/cdn/src/shared/ui/CustomSidebar/CustomSidebar.d.ts +8 -0
  91. package/dist/cdn/src/shared/ui/Dialog/Dialog.d.ts +19 -0
  92. package/dist/cdn/src/shared/ui/Hint/Hint.d.ts +60 -0
  93. package/dist/cdn/src/shared/ui/Label/Label.d.ts +7 -0
  94. package/dist/cdn/src/shared/ui/Loader/Loader.d.ts +10 -0
  95. package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
  96. package/dist/cdn/src/shared/ui/MaterialItem/MaterialItem.d.ts +8 -0
  97. package/dist/cdn/src/shared/ui/MaterialListItem/MaterialListItem.d.ts +7 -0
  98. package/dist/cdn/src/shared/ui/MultiSelect/MultiSelect.d.ts +20 -0
  99. package/dist/cdn/src/shared/ui/PopoverTooltip/InfoIcon.d.ts +1 -0
  100. package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
  101. package/dist/cdn/src/shared/ui/SingleSelect/SingleSelect.d.ts +18 -0
  102. package/dist/cdn/src/shared/ui/Slider/Slider.d.ts +11 -0
  103. package/dist/cdn/src/shared/ui/SwatchLimitModal/SwatchLimitModal.d.ts +6 -0
  104. package/dist/cdn/src/shared/ui/popover.d.ts +9 -0
  105. package/dist/cdn/src/shared/utils/cn.d.ts +2 -0
  106. package/dist/cdn/src/shared/utils/uniqueList.d.ts +1 -0
  107. package/dist/components/SwatchesModule.d.ts +11 -0
  108. package/dist/main.cjs +150 -0
  109. package/dist/main.cjs.map +1 -0
  110. package/dist/main.d.ts +9 -0
  111. package/dist/main.js +24420 -0
  112. package/dist/main.js.map +1 -0
  113. package/dist/store/LibraryProvider.d.ts +4 -0
  114. package/dist/store/rootReducer.d.ts +11 -0
  115. package/dist/store/store.d.ts +25 -0
  116. package/dist/store/withStore.d.ts +2 -0
  117. package/package.json +1 -1
  118. package/dist/assets/index-BxOF0-6c.js +0 -156
  119. package/dist/assets/index-WOZaSyBx.css +0 -1
  120. package/dist/index.html +0 -14
  121. /package/dist/{vite.svg → cdn/vite.svg} +0 -0
@@ -0,0 +1,1058 @@
1
+ export declare const MOCK_ROW_PROPS_ATTRIBUTES: ({
2
+ id: string;
3
+ type: string;
4
+ name: string;
5
+ metadata: {
6
+ Name: string;
7
+ Label: string;
8
+ hasRenderImagePreview?: undefined;
9
+ thumbnail?: undefined;
10
+ ''?: undefined;
11
+ };
12
+ blacklist: never[];
13
+ assetType: string;
14
+ values: {
15
+ assetId: string;
16
+ name: string;
17
+ tags: string[];
18
+ metadata: {
19
+ Label: string;
20
+ value: string;
21
+ };
22
+ fileSize: number;
23
+ tagids: string[];
24
+ type: string;
25
+ label: string;
26
+ visible: boolean;
27
+ enabled: boolean;
28
+ }[];
29
+ defaultValue: {
30
+ assetId: string;
31
+ type?: undefined;
32
+ };
33
+ global: {
34
+ id: string;
35
+ type: string;
36
+ name: string;
37
+ metadata: never[];
38
+ defaultValue?: undefined;
39
+ };
40
+ visible: boolean;
41
+ enabled: boolean;
42
+ hiddenValues: never[];
43
+ disabledValues: never[];
44
+ value: {
45
+ assetId: string;
46
+ type?: undefined;
47
+ };
48
+ step?: undefined;
49
+ min?: undefined;
50
+ max?: undefined;
51
+ lockToStep?: undefined;
52
+ } | {
53
+ id: string;
54
+ type: string;
55
+ name: string;
56
+ metadata: {
57
+ Name: string;
58
+ Label: string;
59
+ hasRenderImagePreview: string;
60
+ thumbnail?: undefined;
61
+ ''?: undefined;
62
+ };
63
+ blacklist: never[];
64
+ assetType: string;
65
+ values: ({
66
+ assetId: string;
67
+ name: string;
68
+ tags: string[];
69
+ metadata: {
70
+ Label: string;
71
+ value: string;
72
+ thumbnail: string;
73
+ heightImage: string;
74
+ filtration_Style?: undefined;
75
+ };
76
+ fileSize: number;
77
+ tagids: string[];
78
+ type: string;
79
+ label: string;
80
+ visible: boolean;
81
+ enabled: boolean;
82
+ } | {
83
+ assetId: string;
84
+ name: string;
85
+ tags: string[];
86
+ metadata: {
87
+ Label: string;
88
+ value: string;
89
+ thumbnail: string;
90
+ heightImage: string;
91
+ filtration_Style: string;
92
+ };
93
+ fileSize: number;
94
+ tagids: string[];
95
+ type: string;
96
+ label: string;
97
+ visible: boolean;
98
+ enabled: boolean;
99
+ })[];
100
+ defaultValue: {
101
+ assetId: string;
102
+ type: string;
103
+ };
104
+ global: {
105
+ id: string;
106
+ type: string;
107
+ name: string;
108
+ metadata: never[];
109
+ defaultValue: {
110
+ assetId: string;
111
+ type: string;
112
+ };
113
+ };
114
+ visible: boolean;
115
+ enabled: boolean;
116
+ hiddenValues: never[];
117
+ disabledValues: never[];
118
+ value: {
119
+ assetId: string;
120
+ type: string;
121
+ };
122
+ step?: undefined;
123
+ min?: undefined;
124
+ max?: undefined;
125
+ lockToStep?: undefined;
126
+ } | {
127
+ id: string;
128
+ type: string;
129
+ name: string;
130
+ metadata: {
131
+ Name: string;
132
+ Label: string;
133
+ thumbnail: string;
134
+ hasRenderImagePreview: string;
135
+ ''?: undefined;
136
+ };
137
+ blacklist: never[];
138
+ assetType: string;
139
+ values: ({
140
+ assetId: string;
141
+ name: string;
142
+ tags: string[];
143
+ metadata: {
144
+ hex: string;
145
+ soft: string;
146
+ Color: string;
147
+ label: string;
148
+ value: string;
149
+ Material: string;
150
+ zoomIconColor: string;
151
+ hasDefaultConfuguration?: undefined;
152
+ hasDefaultConfiguration?: undefined;
153
+ Look?: undefined;
154
+ image?: undefined;
155
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
156
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
157
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
158
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
159
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
160
+ filtelistMaterial?: undefined;
161
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
162
+ };
163
+ fileSize: number;
164
+ tagids: string[];
165
+ type: string;
166
+ label: string;
167
+ visible: boolean;
168
+ enabled: boolean;
169
+ } | {
170
+ assetId: string;
171
+ name: string;
172
+ tags: string[];
173
+ metadata: {
174
+ hex: string;
175
+ soft: string;
176
+ Color: string;
177
+ label: string;
178
+ value: string;
179
+ Material: string;
180
+ zoomIconColor: string;
181
+ hasDefaultConfuguration: string;
182
+ hasDefaultConfiguration?: undefined;
183
+ Look?: undefined;
184
+ image?: undefined;
185
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
186
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
187
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
188
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
189
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
190
+ filtelistMaterial?: undefined;
191
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
192
+ };
193
+ fileSize: number;
194
+ tagids: string[];
195
+ type: string;
196
+ label: string;
197
+ visible: boolean;
198
+ enabled: boolean;
199
+ } | {
200
+ assetId: string;
201
+ name: string;
202
+ tags: string[];
203
+ metadata: {
204
+ hex: string;
205
+ soft: string;
206
+ Color: string;
207
+ label: string;
208
+ value: string;
209
+ Material: string;
210
+ zoomIconColor: string;
211
+ hasDefaultConfiguration: string;
212
+ hasDefaultConfuguration?: undefined;
213
+ Look?: undefined;
214
+ image?: undefined;
215
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
216
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
217
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
218
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
219
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
220
+ filtelistMaterial?: undefined;
221
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
222
+ };
223
+ fileSize: number;
224
+ tagids: string[];
225
+ type: string;
226
+ label: string;
227
+ visible: boolean;
228
+ enabled: boolean;
229
+ } | {
230
+ assetId: string;
231
+ name: string;
232
+ tags: string[];
233
+ metadata: {
234
+ hex: string;
235
+ Color: string;
236
+ label: string;
237
+ value: string;
238
+ Material: string;
239
+ zoomIconColor: string;
240
+ soft?: undefined;
241
+ hasDefaultConfuguration?: undefined;
242
+ hasDefaultConfiguration?: undefined;
243
+ Look?: undefined;
244
+ image?: undefined;
245
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
246
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
247
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
248
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
249
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
250
+ filtelistMaterial?: undefined;
251
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
252
+ };
253
+ fileSize: number;
254
+ tagids: string[];
255
+ type: string;
256
+ label: string;
257
+ visible: boolean;
258
+ enabled: boolean;
259
+ } | {
260
+ assetId: string;
261
+ name: string;
262
+ tags: string[];
263
+ metadata: {
264
+ hex: string;
265
+ Color: string;
266
+ label: string;
267
+ value: string;
268
+ Material: string;
269
+ zoomIconColor: string;
270
+ hasDefaultConfiguration: string;
271
+ soft?: undefined;
272
+ hasDefaultConfuguration?: undefined;
273
+ Look?: undefined;
274
+ image?: undefined;
275
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
276
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
277
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
278
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
279
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
280
+ filtelistMaterial?: undefined;
281
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
282
+ };
283
+ fileSize: number;
284
+ tagids: string[];
285
+ type: string;
286
+ label: string;
287
+ visible: boolean;
288
+ enabled: boolean;
289
+ } | {
290
+ assetId: string;
291
+ name: string;
292
+ tags: string[];
293
+ metadata: {
294
+ Look: string;
295
+ Color: string;
296
+ image: string;
297
+ label: string;
298
+ value: string;
299
+ Material: string;
300
+ zoomIconColor: string;
301
+ hasDefaultConfiguration: string;
302
+ hex?: undefined;
303
+ soft?: undefined;
304
+ hasDefaultConfuguration?: undefined;
305
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
306
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
307
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
308
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
309
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
310
+ filtelistMaterial?: undefined;
311
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
312
+ };
313
+ fileSize: number;
314
+ tagids: string[];
315
+ type: string;
316
+ label: string;
317
+ visible: boolean;
318
+ enabled: boolean;
319
+ } | {
320
+ assetId: string;
321
+ name: string;
322
+ tags: string[];
323
+ metadata: {
324
+ Look: string;
325
+ Color: string;
326
+ image: string;
327
+ label: string;
328
+ value: string;
329
+ Material: string;
330
+ zoomIconColor: string;
331
+ hex?: undefined;
332
+ soft?: undefined;
333
+ hasDefaultConfuguration?: undefined;
334
+ hasDefaultConfiguration?: undefined;
335
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
336
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
337
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
338
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
339
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
340
+ filtelistMaterial?: undefined;
341
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
342
+ };
343
+ fileSize: number;
344
+ tagids: string[];
345
+ type: string;
346
+ label: string;
347
+ visible: boolean;
348
+ enabled: boolean;
349
+ } | {
350
+ assetId: string;
351
+ name: string;
352
+ tags: string[];
353
+ metadata: {
354
+ hex: string;
355
+ Color: string;
356
+ label: string;
357
+ value: string;
358
+ Material: string;
359
+ zoomIconColor: string;
360
+ 'hasDefaultConfiguration#UI_Color': string;
361
+ 'hasDefaultConfiguration#UI_Base Panel': string;
362
+ soft?: undefined;
363
+ hasDefaultConfuguration?: undefined;
364
+ hasDefaultConfiguration?: undefined;
365
+ Look?: undefined;
366
+ image?: undefined;
367
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
368
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
369
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
370
+ filtelistMaterial?: undefined;
371
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
372
+ };
373
+ fileSize: number;
374
+ tagids: string[];
375
+ type: string;
376
+ label: string;
377
+ visible: boolean;
378
+ enabled: boolean;
379
+ } | {
380
+ assetId: string;
381
+ name: string;
382
+ tags: string[];
383
+ metadata: {
384
+ Look: string;
385
+ Color: string;
386
+ image: string;
387
+ label: string;
388
+ value: string;
389
+ Material: string;
390
+ zoomIconColor: string;
391
+ 'hasDefaultConfiguration#UI_Color': string;
392
+ 'hasDefaultConfiguration#UI_Cabinet color': string;
393
+ 'hasDefaultConfiguration#UI_Lateral Panel': string;
394
+ 'hasDefaultConfiguration#UI_Fenix Countertop': string;
395
+ hex?: undefined;
396
+ soft?: undefined;
397
+ hasDefaultConfuguration?: undefined;
398
+ hasDefaultConfiguration?: undefined;
399
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
400
+ filtelistMaterial?: undefined;
401
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
402
+ };
403
+ fileSize: number;
404
+ tagids: string[];
405
+ type: string;
406
+ label: string;
407
+ visible: boolean;
408
+ enabled: boolean;
409
+ } | {
410
+ assetId: string;
411
+ name: string;
412
+ tags: string[];
413
+ metadata: {
414
+ Look: string;
415
+ Color: string;
416
+ image: string;
417
+ label: string;
418
+ value: string;
419
+ Material: string;
420
+ zoomIconColor: string;
421
+ filtelistMaterial: string;
422
+ hex?: undefined;
423
+ soft?: undefined;
424
+ hasDefaultConfuguration?: undefined;
425
+ hasDefaultConfiguration?: undefined;
426
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
427
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
428
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
429
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
430
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
431
+ 'hasDefaultConfiguration#UI_Backpanel Color'?: undefined;
432
+ };
433
+ fileSize: number;
434
+ tagids: string[];
435
+ type: string;
436
+ label: string;
437
+ visible: boolean;
438
+ enabled: boolean;
439
+ } | {
440
+ assetId: string;
441
+ name: string;
442
+ tags: string[];
443
+ metadata: {
444
+ Look: string;
445
+ Color: string;
446
+ image: string;
447
+ label: string;
448
+ value: string;
449
+ Material: string;
450
+ zoomIconColor: string;
451
+ 'hasDefaultConfiguration#UI_Backpanel Color': string;
452
+ hex?: undefined;
453
+ soft?: undefined;
454
+ hasDefaultConfuguration?: undefined;
455
+ hasDefaultConfiguration?: undefined;
456
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
457
+ 'hasDefaultConfiguration#UI_Base Panel'?: undefined;
458
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
459
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
460
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
461
+ filtelistMaterial?: undefined;
462
+ };
463
+ fileSize: number;
464
+ tagids: string[];
465
+ type: string;
466
+ label: string;
467
+ visible: boolean;
468
+ enabled: boolean;
469
+ })[];
470
+ defaultValue: {
471
+ assetId: string;
472
+ type?: undefined;
473
+ };
474
+ global: {
475
+ id: string;
476
+ type: string;
477
+ name: string;
478
+ metadata: never[];
479
+ defaultValue?: undefined;
480
+ };
481
+ visible: boolean;
482
+ enabled: boolean;
483
+ hiddenValues: never[];
484
+ disabledValues: never[];
485
+ value: {
486
+ assetId: string;
487
+ type: string;
488
+ };
489
+ step?: undefined;
490
+ min?: undefined;
491
+ max?: undefined;
492
+ lockToStep?: undefined;
493
+ } | {
494
+ id: string;
495
+ type: string;
496
+ name: string;
497
+ metadata: {
498
+ Name: string;
499
+ Label: string;
500
+ '': null;
501
+ hasRenderImagePreview?: undefined;
502
+ thumbnail?: undefined;
503
+ };
504
+ blacklist: never[];
505
+ assetType: string;
506
+ values: ({
507
+ assetId: string;
508
+ name: string;
509
+ tags: string[];
510
+ metadata: {
511
+ label: string;
512
+ value: string;
513
+ thumbnail: string;
514
+ heightImage: string;
515
+ hasDefaultConfiguration?: undefined;
516
+ };
517
+ fileSize: number;
518
+ tagids: string[];
519
+ type: string;
520
+ label: string;
521
+ visible: boolean;
522
+ enabled: boolean;
523
+ } | {
524
+ assetId: string;
525
+ name: string;
526
+ tags: string[];
527
+ metadata: {
528
+ label: string;
529
+ value: string;
530
+ thumbnail: string;
531
+ heightImage: string;
532
+ hasDefaultConfiguration: string;
533
+ };
534
+ fileSize: number;
535
+ tagids: string[];
536
+ type: string;
537
+ label: string;
538
+ visible: boolean;
539
+ enabled: boolean;
540
+ })[];
541
+ defaultValue: {
542
+ assetId: string;
543
+ type?: undefined;
544
+ };
545
+ global: {
546
+ id: string;
547
+ type: string;
548
+ name: string;
549
+ metadata: never[];
550
+ defaultValue?: undefined;
551
+ };
552
+ visible: boolean;
553
+ enabled: boolean;
554
+ hiddenValues: string[];
555
+ disabledValues: never[];
556
+ value: {
557
+ assetId: string;
558
+ type: string;
559
+ };
560
+ step?: undefined;
561
+ min?: undefined;
562
+ max?: undefined;
563
+ lockToStep?: undefined;
564
+ } | {
565
+ id: string;
566
+ type: string;
567
+ name: string;
568
+ metadata: {
569
+ Name: string;
570
+ Label: string;
571
+ hasRenderImagePreview: string;
572
+ thumbnail?: undefined;
573
+ ''?: undefined;
574
+ };
575
+ blacklist: never[];
576
+ assetType: string;
577
+ values: ({
578
+ assetId: string;
579
+ name: string;
580
+ tags: string[];
581
+ metadata: {
582
+ Look: string;
583
+ Color: string;
584
+ image: string;
585
+ label: string;
586
+ value: string;
587
+ Material: string;
588
+ zoomIconColor: string;
589
+ hex?: undefined;
590
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
591
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
592
+ hasDefaultConfiguration?: undefined;
593
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
594
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
595
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
596
+ filtelistMaterial?: undefined;
597
+ Label?: undefined;
598
+ };
599
+ fileSize: number;
600
+ tagids: string[];
601
+ type: string;
602
+ label: string;
603
+ visible: boolean;
604
+ enabled: boolean;
605
+ } | {
606
+ assetId: string;
607
+ name: string;
608
+ tags: string[];
609
+ metadata: {
610
+ hex: string;
611
+ Color: string;
612
+ label: string;
613
+ value: string;
614
+ Material: string;
615
+ zoomIconColor: string;
616
+ 'hasDefaultConfiguration#UI_Counertops materials': string;
617
+ Look?: undefined;
618
+ image?: undefined;
619
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
620
+ hasDefaultConfiguration?: undefined;
621
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
622
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
623
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
624
+ filtelistMaterial?: undefined;
625
+ Label?: undefined;
626
+ };
627
+ fileSize: number;
628
+ tagids: string[];
629
+ type: string;
630
+ label: string;
631
+ visible: boolean;
632
+ enabled: boolean;
633
+ } | {
634
+ assetId: string;
635
+ name: string;
636
+ tags: string[];
637
+ metadata: {
638
+ Look: string;
639
+ Color: string;
640
+ image: string;
641
+ label: string;
642
+ value: string;
643
+ Material: string;
644
+ zoomIconColor: string;
645
+ 'hasDefaultConfiguration#UI_Fenix Countertop': string;
646
+ hex?: undefined;
647
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
648
+ hasDefaultConfiguration?: undefined;
649
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
650
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
651
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
652
+ filtelistMaterial?: undefined;
653
+ Label?: undefined;
654
+ };
655
+ fileSize: number;
656
+ tagids: string[];
657
+ type: string;
658
+ label: string;
659
+ visible: boolean;
660
+ enabled: boolean;
661
+ } | {
662
+ assetId: string;
663
+ name: string;
664
+ tags: string[];
665
+ metadata: {
666
+ Look: string;
667
+ Color: string;
668
+ image: string;
669
+ label: string;
670
+ value: string;
671
+ Material: string;
672
+ zoomIconColor: string;
673
+ hasDefaultConfiguration: string;
674
+ hex?: undefined;
675
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
676
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
677
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
678
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
679
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
680
+ filtelistMaterial?: undefined;
681
+ Label?: undefined;
682
+ };
683
+ fileSize: number;
684
+ tagids: string[];
685
+ type: string;
686
+ label: string;
687
+ visible: boolean;
688
+ enabled: boolean;
689
+ } | {
690
+ assetId: string;
691
+ name: string;
692
+ tags: string[];
693
+ metadata: {
694
+ hex: string;
695
+ Color: string;
696
+ label: string;
697
+ value: string;
698
+ Material: string;
699
+ zoomIconColor: string;
700
+ Look?: undefined;
701
+ image?: undefined;
702
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
703
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
704
+ hasDefaultConfiguration?: undefined;
705
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
706
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
707
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
708
+ filtelistMaterial?: undefined;
709
+ Label?: undefined;
710
+ };
711
+ fileSize: number;
712
+ tagids: string[];
713
+ type: string;
714
+ label: string;
715
+ visible: boolean;
716
+ enabled: boolean;
717
+ } | {
718
+ assetId: string;
719
+ name: string;
720
+ tags: string[];
721
+ metadata: {
722
+ Look: string;
723
+ Color: string;
724
+ image: string;
725
+ label: string;
726
+ value: string;
727
+ Material: string;
728
+ zoomIconColor: string;
729
+ 'hasDefaultConfiguration#UI_Color': string;
730
+ 'hasDefaultConfiguration#UI_Cabinet color': string;
731
+ 'hasDefaultConfiguration#UI_Lateral Panel': string;
732
+ 'hasDefaultConfiguration#UI_Fenix Countertop': string;
733
+ hex?: undefined;
734
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
735
+ hasDefaultConfiguration?: undefined;
736
+ filtelistMaterial?: undefined;
737
+ Label?: undefined;
738
+ };
739
+ fileSize: number;
740
+ tagids: string[];
741
+ type: string;
742
+ label: string;
743
+ visible: boolean;
744
+ enabled: boolean;
745
+ } | {
746
+ assetId: string;
747
+ name: string;
748
+ tags: string[];
749
+ metadata: {
750
+ Look: string;
751
+ Color: string;
752
+ image: string;
753
+ label: string;
754
+ value: string;
755
+ Material: string;
756
+ zoomIconColor: string;
757
+ filtelistMaterial: string;
758
+ hex?: undefined;
759
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
760
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
761
+ hasDefaultConfiguration?: undefined;
762
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
763
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
764
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
765
+ Label?: undefined;
766
+ };
767
+ fileSize: number;
768
+ tagids: string[];
769
+ type: string;
770
+ label: string;
771
+ visible: boolean;
772
+ enabled: boolean;
773
+ } | {
774
+ assetId: string;
775
+ name: string;
776
+ tags: string[];
777
+ metadata: {
778
+ hex: string;
779
+ Color: string;
780
+ label: string;
781
+ value: string;
782
+ Material: string;
783
+ zoomIconColor: string;
784
+ hasDefaultConfiguration: string;
785
+ Look?: undefined;
786
+ image?: undefined;
787
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
788
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
789
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
790
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
791
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
792
+ filtelistMaterial?: undefined;
793
+ Label?: undefined;
794
+ };
795
+ fileSize: number;
796
+ tagids: string[];
797
+ type: string;
798
+ label: string;
799
+ visible: boolean;
800
+ enabled: boolean;
801
+ } | {
802
+ assetId: string;
803
+ name: string;
804
+ tags: string[];
805
+ metadata: {
806
+ hex: string;
807
+ Color: string;
808
+ label: string;
809
+ value: string;
810
+ Material: string;
811
+ zoomIconColor: string;
812
+ 'hasDefaultConfiguration#UI_Fenix Countertop': string;
813
+ Look?: undefined;
814
+ image?: undefined;
815
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
816
+ hasDefaultConfiguration?: undefined;
817
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
818
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
819
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
820
+ filtelistMaterial?: undefined;
821
+ Label?: undefined;
822
+ };
823
+ fileSize: number;
824
+ tagids: string[];
825
+ type: string;
826
+ label: string;
827
+ visible: boolean;
828
+ enabled: boolean;
829
+ } | {
830
+ assetId: string;
831
+ name: string;
832
+ tags: string[];
833
+ metadata: {
834
+ hex: string;
835
+ Color: string;
836
+ Label: string;
837
+ value: string;
838
+ Material: string;
839
+ hasDefaultConfiguration: string;
840
+ Look?: undefined;
841
+ image?: undefined;
842
+ label?: undefined;
843
+ zoomIconColor?: undefined;
844
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
845
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
846
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
847
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
848
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
849
+ filtelistMaterial?: undefined;
850
+ };
851
+ fileSize: number;
852
+ tagids: string[];
853
+ type: string;
854
+ label: string;
855
+ visible: boolean;
856
+ enabled: boolean;
857
+ } | {
858
+ assetId: string;
859
+ name: string;
860
+ tags: string[];
861
+ metadata: {
862
+ hex: string;
863
+ Color: string;
864
+ Label: string;
865
+ value: string;
866
+ Material: string;
867
+ Look?: undefined;
868
+ image?: undefined;
869
+ label?: undefined;
870
+ zoomIconColor?: undefined;
871
+ 'hasDefaultConfiguration#UI_Counertops materials'?: undefined;
872
+ 'hasDefaultConfiguration#UI_Fenix Countertop'?: undefined;
873
+ hasDefaultConfiguration?: undefined;
874
+ 'hasDefaultConfiguration#UI_Color'?: undefined;
875
+ 'hasDefaultConfiguration#UI_Cabinet color'?: undefined;
876
+ 'hasDefaultConfiguration#UI_Lateral Panel'?: undefined;
877
+ filtelistMaterial?: undefined;
878
+ };
879
+ fileSize: number;
880
+ tagids: string[];
881
+ type: string;
882
+ label: string;
883
+ visible: boolean;
884
+ enabled: boolean;
885
+ })[];
886
+ defaultValue: {
887
+ assetId: string;
888
+ type?: undefined;
889
+ };
890
+ global: {
891
+ id: string;
892
+ type: string;
893
+ name: string;
894
+ metadata: never[];
895
+ defaultValue?: undefined;
896
+ };
897
+ visible: boolean;
898
+ enabled: boolean;
899
+ hiddenValues: string[];
900
+ disabledValues: never[];
901
+ value: {
902
+ assetId: string;
903
+ type: string;
904
+ };
905
+ step?: undefined;
906
+ min?: undefined;
907
+ max?: undefined;
908
+ lockToStep?: undefined;
909
+ } | {
910
+ id: string;
911
+ type: string;
912
+ name: string;
913
+ metadata: {
914
+ Name?: undefined;
915
+ Label?: undefined;
916
+ hasRenderImagePreview?: undefined;
917
+ thumbnail?: undefined;
918
+ ''?: undefined;
919
+ };
920
+ defaultValue: boolean;
921
+ global: {
922
+ id: string;
923
+ type: string;
924
+ name: string;
925
+ metadata: never[];
926
+ defaultValue?: undefined;
927
+ };
928
+ visible: boolean;
929
+ enabled: boolean;
930
+ hiddenValues: never[];
931
+ disabledValues: never[];
932
+ values: never[];
933
+ value: boolean;
934
+ blacklist?: undefined;
935
+ assetType?: undefined;
936
+ step?: undefined;
937
+ min?: undefined;
938
+ max?: undefined;
939
+ lockToStep?: undefined;
940
+ } | {
941
+ id: string;
942
+ type: string;
943
+ name: string;
944
+ metadata: {
945
+ Name: string;
946
+ Label: string;
947
+ hasRenderImagePreview: string;
948
+ thumbnail?: undefined;
949
+ ''?: undefined;
950
+ };
951
+ blacklist: never[];
952
+ assetType: string;
953
+ values: {
954
+ assetId: string;
955
+ name: string;
956
+ tags: string[];
957
+ metadata: {
958
+ label: string;
959
+ value: string;
960
+ };
961
+ fileSize: number;
962
+ tagids: string[];
963
+ type: string;
964
+ label: string;
965
+ visible: boolean;
966
+ enabled: boolean;
967
+ }[];
968
+ defaultValue: {
969
+ assetId: string;
970
+ type?: undefined;
971
+ };
972
+ global: {
973
+ id: string;
974
+ type: string;
975
+ name: string;
976
+ metadata: never[];
977
+ defaultValue?: undefined;
978
+ };
979
+ visible: boolean;
980
+ enabled: boolean;
981
+ hiddenValues: string[];
982
+ disabledValues: never[];
983
+ value: {
984
+ assetId: string;
985
+ type?: undefined;
986
+ };
987
+ step?: undefined;
988
+ min?: undefined;
989
+ max?: undefined;
990
+ lockToStep?: undefined;
991
+ } | {
992
+ id: string;
993
+ type: string;
994
+ name: string;
995
+ metadata: {
996
+ Name?: undefined;
997
+ Label?: undefined;
998
+ hasRenderImagePreview?: undefined;
999
+ thumbnail?: undefined;
1000
+ ''?: undefined;
1001
+ };
1002
+ step: number;
1003
+ min: number;
1004
+ max: number;
1005
+ lockToStep: boolean;
1006
+ defaultValue: number;
1007
+ global: {
1008
+ id: string;
1009
+ type: string;
1010
+ name: string;
1011
+ metadata: never[];
1012
+ defaultValue?: undefined;
1013
+ };
1014
+ visible: boolean;
1015
+ enabled: boolean;
1016
+ hiddenValues: never[];
1017
+ disabledValues: never[];
1018
+ values: never[];
1019
+ value: number;
1020
+ blacklist?: undefined;
1021
+ assetType?: undefined;
1022
+ } | {
1023
+ id: string;
1024
+ type: string;
1025
+ name: string;
1026
+ metadata: {
1027
+ Name?: undefined;
1028
+ Label?: undefined;
1029
+ hasRenderImagePreview?: undefined;
1030
+ thumbnail?: undefined;
1031
+ ''?: undefined;
1032
+ };
1033
+ blacklist: never[];
1034
+ values: {
1035
+ value: string;
1036
+ enabled: boolean;
1037
+ visible: boolean;
1038
+ label: string;
1039
+ }[];
1040
+ defaultValue: string;
1041
+ global: {
1042
+ id: string;
1043
+ type: string;
1044
+ name: string;
1045
+ metadata: never[];
1046
+ defaultValue?: undefined;
1047
+ };
1048
+ visible: boolean;
1049
+ enabled: boolean;
1050
+ hiddenValues: never[];
1051
+ disabledValues: never[];
1052
+ value: string;
1053
+ assetType?: undefined;
1054
+ step?: undefined;
1055
+ min?: undefined;
1056
+ max?: undefined;
1057
+ lockToStep?: undefined;
1058
+ })[];