hasting-swatchcart-module 0.0.41 → 1.0.1

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 (444) hide show
  1. package/README.md +233 -73
  2. package/dist/assets/index.css +1 -0
  3. package/dist/cdn/lib/components/SwatchesModule.d.ts +10 -0
  4. package/dist/cdn/lib/main.d.ts +4 -0
  5. package/dist/cdn/lib/store/LibraryProvider.d.ts +4 -0
  6. package/dist/cdn/lib/store/rootReducer.d.ts +11 -0
  7. package/dist/cdn/lib/store/store.d.ts +25 -0
  8. package/dist/cdn/lib/store/withStore.d.ts +2 -0
  9. package/dist/cdn/lib/vite-env.d.ts +1 -0
  10. package/dist/cdn/main.css +1 -0
  11. package/dist/cdn/main.js +48652 -0
  12. package/dist/cdn/src/app/App.d.ts +2 -0
  13. package/dist/cdn/src/app/assets/svg/ArrowIconSVG.d.ts +3 -0
  14. package/dist/cdn/src/app/assets/svg/CheckMarkIconSVG.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 +1 -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 +13 -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/CartPrice/CartPrice.d.ts +5 -0
  34. package/dist/cdn/src/features/Cart/ui/CartWrapper/CartWrapper.d.ts +9 -0
  35. package/dist/cdn/src/features/Cart/ui/Counter/Counter.d.ts +9 -0
  36. package/dist/cdn/src/features/DataAdapter/lib/DataAdapterServices.d.ts +12 -0
  37. package/dist/cdn/src/features/DataAdapter/utils/types.d.ts +11 -0
  38. package/dist/cdn/src/features/MultiProduct/lib/MultiProductCartServices.d.ts +13 -0
  39. package/dist/cdn/src/features/MultiProduct/model/API/api.d.ts +3 -0
  40. package/dist/cdn/src/features/MultiProduct/model/API/routes.d.ts +4 -0
  41. package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +13 -0
  42. package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +35 -0
  43. package/dist/cdn/src/features/MultiProduct/model/types.d.ts +30 -0
  44. package/dist/cdn/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.d.ts +1 -0
  45. package/dist/cdn/src/features/MultiProduct/ui/CustomModal/CustomModal.d.ts +8 -0
  46. package/dist/cdn/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.d.ts +1 -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 +6 -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 +5 -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 +5 -0
  53. package/dist/cdn/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.d.ts +1 -0
  54. package/dist/cdn/src/features/MultiProduct/utils/constants.d.ts +8 -0
  55. package/dist/cdn/src/features/MultiProduct/utils/randomList.d.ts +2 -0
  56. package/dist/cdn/src/features/SwatchModule/SwatchModule/ui/SwatchModule.d.ts +11 -0
  57. package/dist/cdn/src/features/swatches/lib/AttributeHelper.d.ts +7 -0
  58. package/dist/cdn/src/features/swatches/lib/SwatchesServices.d.ts +11 -0
  59. package/dist/cdn/src/features/swatches/model/selectors.d.ts +12 -0
  60. package/dist/cdn/src/features/swatches/model/swatchesSlice.d.ts +26 -0
  61. package/dist/cdn/src/features/swatches/model/thunks.d.ts +12 -0
  62. package/dist/cdn/src/features/swatches/model/types.d.ts +137 -0
  63. package/dist/cdn/src/features/swatches/ui/Filters/ColorsFilter.d.ts +1 -0
  64. package/dist/cdn/src/features/swatches/ui/Filters/LooksFilter.d.ts +1 -0
  65. package/dist/cdn/src/features/swatches/ui/Filters/MaterialsFilter.d.ts +1 -0
  66. package/dist/cdn/src/features/swatches/ui/Filters/index.d.ts +5 -0
  67. package/dist/cdn/src/features/swatches/ui/HexGridZoom/HexGridZoom.d.ts +3 -0
  68. package/dist/cdn/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.d.ts +3 -0
  69. package/dist/cdn/src/features/swatches/ui/MaterialList/index.d.ts +7 -0
  70. package/dist/cdn/src/features/swatches/ui/MaterialListItem/MaterialListItem.d.ts +4 -0
  71. package/dist/cdn/src/features/swatches/ui/ProductElement/index.d.ts +6 -0
  72. package/dist/cdn/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.d.ts +8 -0
  73. package/dist/cdn/src/features/swatches/ui/Swatches.d.ts +11 -0
  74. package/dist/cdn/src/features/swatches/ui/SwatchesList/SwatchesList.d.ts +5 -0
  75. package/dist/cdn/src/features/swatches/utils/constants.d.ts +3 -0
  76. package/dist/cdn/src/features/swatches/utils/types.d.ts +22 -0
  77. package/dist/cdn/src/shared/constants/props.d.ts +1058 -0
  78. package/dist/cdn/src/shared/constants/select.d.ts +4 -0
  79. package/dist/cdn/src/shared/constants/selectedMaterials.d.ts +1 -0
  80. package/dist/cdn/src/shared/types/activeTab.d.ts +5 -0
  81. package/dist/cdn/src/shared/types/svg.d.ts +3 -0
  82. package/dist/cdn/src/shared/ui/Checkbox/Checkbox.d.ts +4 -0
  83. package/dist/cdn/src/shared/ui/CustomButton/CustomButton.d.ts +6 -0
  84. package/dist/cdn/src/shared/ui/CustomSidebar/CustomSidebar.d.ts +8 -0
  85. package/dist/cdn/src/shared/ui/Dialog/Dialog.d.ts +19 -0
  86. package/dist/cdn/src/shared/ui/Label/Label.d.ts +7 -0
  87. package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
  88. package/dist/cdn/src/shared/ui/MaterialItem/MaterialItem.d.ts +8 -0
  89. package/dist/cdn/src/shared/ui/MultiSelect/MultiSelect.d.ts +20 -0
  90. package/dist/cdn/src/shared/ui/PopoverTooltip/InfoIcon.d.ts +1 -0
  91. package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
  92. package/dist/cdn/src/shared/ui/Slider/Slider.d.ts +11 -0
  93. package/dist/cdn/src/shared/ui/popover.d.ts +9 -0
  94. package/dist/cdn/src/shared/utils/cn.d.ts +2 -0
  95. package/dist/cdn/src/shared/utils/uniqueList.d.ts +1 -0
  96. package/dist/cdn/vite.svg +1 -0
  97. package/dist/components/SwatchesModule.d.ts +1 -2
  98. package/dist/main.cjs +407 -0
  99. package/dist/main.cjs.map +1 -0
  100. package/dist/main.d.ts +4 -1
  101. package/dist/main.js +63812 -2
  102. package/dist/main.js.map +1 -0
  103. package/dist/store/LibraryProvider.d.ts +4 -0
  104. package/dist/store/rootReducer.d.ts +11 -0
  105. package/dist/store/store.d.ts +25 -0
  106. package/dist/store/withStore.d.ts +2 -0
  107. package/package.json +24 -14
  108. package/dist/_virtual/_commonjsHelpers.js +0 -6
  109. package/dist/_virtual/index.js +0 -7
  110. package/dist/_virtual/index2.js +0 -7
  111. package/dist/_virtual/index3.js +0 -4
  112. package/dist/_virtual/use-sync-external-store-with-selector.development.js +0 -4
  113. package/dist/_virtual/use-sync-external-store-with-selector.production.js +0 -4
  114. package/dist/_virtual/utilities.js +0 -4
  115. package/dist/_virtual/with-selector.js +0 -5
  116. package/dist/_virtual/with-selector2.js +0 -4
  117. package/dist/assets/src/shared/ui/CustomSidebar/CustomSidebar.module.css +0 -1
  118. package/dist/assets/src/shared/ui/Markdown/MDWithAccordion.module.css +0 -1
  119. package/dist/assets/src/shared/ui/PopoverTooltip/PopoverTooltip.module.css +0 -0
  120. package/dist/components/SwatchesModule.js +0 -32
  121. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +0 -527
  122. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +0 -402
  123. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +0 -208
  124. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +0 -136
  125. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +0 -130
  126. package/dist/node_modules/@radix-ui/primitive/dist/index.js +0 -9
  127. package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +0 -24
  128. package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +0 -251
  129. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +0 -29
  130. package/dist/node_modules/@radix-ui/react-context/dist/index.js +0 -68
  131. package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +0 -256
  132. package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -127
  133. package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -17
  134. package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -136
  135. package/dist/node_modules/@radix-ui/react-id/dist/index.js +0 -13
  136. package/dist/node_modules/@radix-ui/react-popover/dist/index.js +0 -231
  137. package/dist/node_modules/@radix-ui/react-popper/dist/index.js +0 -219
  138. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +0 -15
  139. package/dist/node_modules/@radix-ui/react-presence/dist/index.js +0 -70
  140. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +0 -36
  141. package/dist/node_modules/@radix-ui/react-slot/dist/index.js +0 -49
  142. package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +0 -10
  143. package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +0 -52
  144. package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +0 -14
  145. package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +0 -6
  146. package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +0 -8
  147. package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +0 -27
  148. package/dist/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.js +0 -877
  149. package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +0 -35
  150. package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +0 -497
  151. package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +0 -52
  152. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -62
  153. package/dist/node_modules/@ungap/structured-clone/esm/index.js +0 -11
  154. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +0 -106
  155. package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -13
  156. package/dist/node_modules/aria-hidden/dist/es2015/index.js +0 -52
  157. package/dist/node_modules/bail/index.js +0 -7
  158. package/dist/node_modules/clsx/dist/clsx.js +0 -17
  159. package/dist/node_modules/comma-separated-tokens/index.js +0 -20
  160. package/dist/node_modules/decode-named-character-reference/index.dom.js +0 -14
  161. package/dist/node_modules/devlop/lib/default.js +0 -8
  162. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +0 -7
  163. package/dist/node_modules/extend/index.js +0 -43
  164. package/dist/node_modules/get-nonce/dist/es2015/index.js +0 -7
  165. package/dist/node_modules/hast-util-from-parse5/lib/index.js +0 -145
  166. package/dist/node_modules/hast-util-parse-selector/lib/index.js +0 -20
  167. package/dist/node_modules/hast-util-raw/lib/index.js +0 -217
  168. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +0 -302
  169. package/dist/node_modules/hast-util-to-parse5/lib/index.js +0 -118
  170. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/index.js +0 -12
  171. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/aria.js +0 -61
  172. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/find.js +0 -33
  173. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/html.js +0 -368
  174. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/normalize.js +0 -6
  175. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/svg.js +0 -566
  176. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
  177. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
  178. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/create.js +0 -22
  179. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/defined-info.js +0 -27
  180. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/info.js +0 -23
  181. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/merge.js +0 -11
  182. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/schema.js +0 -17
  183. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/types.js +0 -14
  184. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xlink.js +0 -19
  185. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xml.js +0 -11
  186. package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xmlns.js +0 -11
  187. package/dist/node_modules/hast-util-whitespace/lib/index.js +0 -10
  188. package/dist/node_modules/hastscript/lib/create-h.js +0 -112
  189. package/dist/node_modules/hastscript/lib/index.js +0 -8
  190. package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +0 -44
  191. package/dist/node_modules/html-url-attributes/lib/index.js +0 -26
  192. package/dist/node_modules/html-void-elements/index.js +0 -25
  193. package/dist/node_modules/immer/dist/immer.js +0 -467
  194. package/dist/node_modules/inline-style-parser/index.js +0 -93
  195. package/dist/node_modules/is-plain-obj/index.js +0 -9
  196. package/dist/node_modules/lucide-react/dist/esm/Icon.js +0 -40
  197. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +0 -27
  198. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +0 -20
  199. package/dist/node_modules/lucide-react/dist/esm/icons/check.js +0 -12
  200. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +0 -12
  201. package/dist/node_modules/lucide-react/dist/esm/icons/x.js +0 -15
  202. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -19
  203. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +0 -581
  204. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +0 -90
  205. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +0 -12
  206. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +0 -8
  207. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +0 -15
  208. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +0 -12
  209. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +0 -12
  210. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +0 -28
  211. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +0 -12
  212. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +0 -9
  213. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +0 -14
  214. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +0 -10
  215. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +0 -58
  216. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +0 -14
  217. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +0 -19
  218. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +0 -15
  219. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +0 -42
  220. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +0 -21
  221. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +0 -12
  222. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +0 -7
  223. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +0 -12
  224. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +0 -13
  225. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +0 -21
  226. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +0 -32
  227. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +0 -8
  228. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +0 -12
  229. package/dist/node_modules/mdast-util-to-hast/lib/index.js +0 -10
  230. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +0 -13
  231. package/dist/node_modules/mdast-util-to-hast/lib/state.js +0 -104
  232. package/dist/node_modules/mdast-util-to-string/lib/index.js +0 -29
  233. package/dist/node_modules/micromark/lib/constructs.js +0 -85
  234. package/dist/node_modules/micromark/lib/create-tokenizer.js +0 -223
  235. package/dist/node_modules/micromark/lib/initialize/content.js +0 -37
  236. package/dist/node_modules/micromark/lib/initialize/document.js +0 -126
  237. package/dist/node_modules/micromark/lib/initialize/flow.js +0 -33
  238. package/dist/node_modules/micromark/lib/initialize/text.js +0 -95
  239. package/dist/node_modules/micromark/lib/parse.js +0 -32
  240. package/dist/node_modules/micromark/lib/postprocess.js +0 -9
  241. package/dist/node_modules/micromark/lib/preprocess.js +0 -39
  242. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +0 -83
  243. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +0 -43
  244. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +0 -18
  245. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +0 -42
  246. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +0 -17
  247. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +0 -30
  248. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +0 -94
  249. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +0 -43
  250. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +0 -45
  251. package/dist/node_modules/micromark-core-commonmark/lib/content.js +0 -50
  252. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +0 -80
  253. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +0 -17
  254. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +0 -46
  255. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +0 -144
  256. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +0 -102
  257. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +0 -152
  258. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +0 -22
  259. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +0 -19
  260. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +0 -14
  261. package/dist/node_modules/micromark-core-commonmark/lib/list.js +0 -90
  262. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +0 -57
  263. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +0 -25
  264. package/dist/node_modules/micromark-factory-destination/index.js +0 -31
  265. package/dist/node_modules/micromark-factory-label/index.js +0 -28
  266. package/dist/node_modules/micromark-factory-space/index.js +0 -15
  267. package/dist/node_modules/micromark-factory-title/index.js +0 -26
  268. package/dist/node_modules/micromark-factory-whitespace/index.js +0 -12
  269. package/dist/node_modules/micromark-util-character/index.js +0 -39
  270. package/dist/node_modules/micromark-util-chunked/index.js +0 -16
  271. package/dist/node_modules/micromark-util-classify-character/index.js +0 -10
  272. package/dist/node_modules/micromark-util-combine-extensions/index.js +0 -36
  273. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +0 -16
  274. package/dist/node_modules/micromark-util-decode-string/index.js +0 -18
  275. package/dist/node_modules/micromark-util-html-tag-name/index.js +0 -68
  276. package/dist/node_modules/micromark-util-normalize-identifier/index.js +0 -6
  277. package/dist/node_modules/micromark-util-resolve-all/index.js +0 -12
  278. package/dist/node_modules/micromark-util-sanitize-uri/index.js +0 -23
  279. package/dist/node_modules/micromark-util-subtokenize/index.js +0 -55
  280. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +0 -175
  281. package/dist/node_modules/parse5/dist/common/doctype.js +0 -98
  282. package/dist/node_modules/parse5/dist/common/error-codes.js +0 -7
  283. package/dist/node_modules/parse5/dist/common/foreign-content.js +0 -210
  284. package/dist/node_modules/parse5/dist/common/html.js +0 -250
  285. package/dist/node_modules/parse5/dist/common/token.js +0 -14
  286. package/dist/node_modules/parse5/dist/common/unicode.js +0 -73
  287. package/dist/node_modules/parse5/dist/parser/formatting-element-list.js +0 -84
  288. package/dist/node_modules/parse5/dist/parser/index.js +0 -2271
  289. package/dist/node_modules/parse5/dist/parser/open-element-stack.js +0 -240
  290. package/dist/node_modules/parse5/dist/serializer/index.js +0 -2
  291. package/dist/node_modules/parse5/dist/tokenizer/index.js +0 -1940
  292. package/dist/node_modules/parse5/dist/tokenizer/preprocessor.js +0 -88
  293. package/dist/node_modules/parse5/dist/tree-adapters/default.js +0 -162
  294. package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js +0 -38
  295. package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode.js +0 -245
  296. package/dist/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js +0 -7
  297. package/dist/node_modules/property-information/index.js +0 -12
  298. package/dist/node_modules/property-information/lib/aria.js +0 -61
  299. package/dist/node_modules/property-information/lib/find.js +0 -33
  300. package/dist/node_modules/property-information/lib/hast-to-react.js +0 -22
  301. package/dist/node_modules/property-information/lib/html.js +0 -368
  302. package/dist/node_modules/property-information/lib/normalize.js +0 -6
  303. package/dist/node_modules/property-information/lib/svg.js +0 -566
  304. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
  305. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
  306. package/dist/node_modules/property-information/lib/util/create.js +0 -19
  307. package/dist/node_modules/property-information/lib/util/defined-info.js +0 -36
  308. package/dist/node_modules/property-information/lib/util/info.js +0 -28
  309. package/dist/node_modules/property-information/lib/util/merge.js +0 -10
  310. package/dist/node_modules/property-information/lib/util/schema.js +0 -21
  311. package/dist/node_modules/property-information/lib/util/types.js +0 -14
  312. package/dist/node_modules/property-information/lib/xlink.js +0 -19
  313. package/dist/node_modules/property-information/lib/xml.js +0 -11
  314. package/dist/node_modules/property-information/lib/xmlns.js +0 -11
  315. package/dist/node_modules/react-markdown/lib/index.js +0 -102
  316. package/dist/node_modules/react-redux/dist/react-redux.js +0 -246
  317. package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +0 -11
  318. package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +0 -112
  319. package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +0 -31
  320. package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +0 -16
  321. package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +0 -68
  322. package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +0 -5
  323. package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +0 -7
  324. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +0 -71
  325. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +0 -7
  326. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +0 -25
  327. package/dist/node_modules/react-style-singleton/dist/es2015/component.js +0 -11
  328. package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +0 -15
  329. package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +0 -30
  330. package/dist/node_modules/redux/dist/redux.js +0 -258
  331. package/dist/node_modules/redux-thunk/dist/redux-thunk.js +0 -8
  332. package/dist/node_modules/rehype-raw/lib/index.js +0 -12
  333. package/dist/node_modules/remark-parse/lib/index.js +0 -19
  334. package/dist/node_modules/remark-rehype/lib/index.js +0 -18
  335. package/dist/node_modules/reselect/dist/reselect.js +0 -244
  336. package/dist/node_modules/space-separated-tokens/index.js +0 -11
  337. package/dist/node_modules/style-to-js/cjs/index.js +0 -20
  338. package/dist/node_modules/style-to-js/cjs/utilities.js +0 -19
  339. package/dist/node_modules/style-to-object/cjs/index.js +0 -28
  340. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +0 -2731
  341. package/dist/node_modules/trim-lines/index.js +0 -28
  342. package/dist/node_modules/trough/lib/index.js +0 -60
  343. package/dist/node_modules/tslib/tslib.es6.js +0 -27
  344. package/dist/node_modules/unified/lib/callable-instance.js +0 -25
  345. package/dist/node_modules/unified/lib/index.js +0 -529
  346. package/dist/node_modules/unist-util-is/lib/index.js +0 -84
  347. package/dist/node_modules/unist-util-position/lib/index.js +0 -23
  348. package/dist/node_modules/unist-util-stringify-position/lib/index.js +0 -15
  349. package/dist/node_modules/unist-util-visit/lib/index.js +0 -16
  350. package/dist/node_modules/unist-util-visit-parents/lib/color.js +0 -6
  351. package/dist/node_modules/unist-util-visit-parents/lib/index.js +0 -56
  352. package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +0 -6
  353. package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +0 -26
  354. package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +0 -25
  355. package/dist/node_modules/use-sidecar/dist/es2015/exports.js +0 -18
  356. package/dist/node_modules/use-sidecar/dist/es2015/medium.js +0 -67
  357. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js +0 -66
  358. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js +0 -65
  359. package/dist/node_modules/use-sync-external-store/with-selector.js +0 -10
  360. package/dist/node_modules/vfile/lib/index.js +0 -406
  361. package/dist/node_modules/vfile/lib/minpath.browser.js +0 -112
  362. package/dist/node_modules/vfile/lib/minproc.browser.js +0 -7
  363. package/dist/node_modules/vfile/lib/minurl.browser.js +0 -41
  364. package/dist/node_modules/vfile/lib/minurl.shared.js +0 -7
  365. package/dist/node_modules/vfile-location/lib/index.js +0 -42
  366. package/dist/node_modules/vfile-message/lib/index.js +0 -91
  367. package/dist/node_modules/web-namespaces/index.js +0 -11
  368. package/dist/node_modules/zwitch/index.js +0 -18
  369. package/dist/src/app/assets/images/product_thumb.png.js +0 -4
  370. package/dist/src/app/assets/svg/ArrowIconSVG.js +0 -25
  371. package/dist/src/app/assets/svg/CheckMarkIconSVG.js +0 -25
  372. package/dist/src/app/assets/svg/CloseIconSVG.js +0 -25
  373. package/dist/src/app/assets/svg/MinusIconSVG.js +0 -24
  374. package/dist/src/app/assets/svg/PlusIconSVG.js +0 -24
  375. package/dist/src/app/assets/svg/SearchIconSVG.js +0 -37
  376. package/dist/src/app/assets/svg/TrashIconSVG.js +0 -24
  377. package/dist/src/app/providers/StoreProvider.js +0 -7
  378. package/dist/src/app/store/rootReducer.js +0 -12
  379. package/dist/src/app/store/store.js +0 -14
  380. package/dist/src/features/Cart/lib/CartCervices.js +0 -8
  381. package/dist/src/features/Cart/model/cartSlice.js +0 -58
  382. package/dist/src/features/Cart/model/selectors.js +0 -18
  383. package/dist/src/features/Cart/ui/CartHeader/CartHeader.js +0 -53
  384. package/dist/src/features/Cart/ui/CartList/CartList.js +0 -29
  385. package/dist/src/features/Cart/ui/CartListItem/CartListItem.js +0 -41
  386. package/dist/src/features/Cart/ui/CartPrice/CartPrice.js +0 -23
  387. package/dist/src/features/Cart/ui/CartWrapper/CartWrapper.js +0 -38
  388. package/dist/src/features/Cart/ui/Counter/Counter.js +0 -46
  389. package/dist/src/features/DataAdapter/lib/DataAdapterServices.js +0 -102
  390. package/dist/src/features/DataAdapter/utils/types.js +0 -8
  391. package/dist/src/features/MultiProduct/lib/MultiProductCartServices.js +0 -34
  392. package/dist/src/features/MultiProduct/model/API/api.js +0 -18
  393. package/dist/src/features/MultiProduct/model/multiProductCartSlice.js +0 -83
  394. package/dist/src/features/MultiProduct/model/selectors.js +0 -7
  395. package/dist/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.js +0 -21
  396. package/dist/src/features/MultiProduct/ui/CustomModal/CustomModal.js +0 -28
  397. package/dist/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.js +0 -27
  398. package/dist/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.js +0 -60
  399. package/dist/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.js +0 -71
  400. package/dist/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.js +0 -19
  401. package/dist/src/features/MultiProduct/ui/ProductList/ProductList.js +0 -138
  402. package/dist/src/features/MultiProduct/ui/ProductListItem/ProductListItem.js +0 -51
  403. package/dist/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.js +0 -55
  404. package/dist/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.js +0 -46
  405. package/dist/src/features/MultiProduct/utils/constants.js +0 -16
  406. package/dist/src/features/MultiProduct/utils/randomList.js +0 -41
  407. package/dist/src/features/swatches/lib/AttributeHelper.js +0 -21
  408. package/dist/src/features/swatches/lib/SwatchesServices.js +0 -54
  409. package/dist/src/features/swatches/model/selectors.js +0 -12
  410. package/dist/src/features/swatches/model/swatchesSlice.js +0 -108
  411. package/dist/src/features/swatches/model/thunks.js +0 -22
  412. package/dist/src/features/swatches/model/types.js +0 -6
  413. package/dist/src/features/swatches/ui/Filters/ColorsFilter.js +0 -45
  414. package/dist/src/features/swatches/ui/Filters/LooksFilter.js +0 -45
  415. package/dist/src/features/swatches/ui/Filters/MaterialsFilter.js +0 -47
  416. package/dist/src/features/swatches/ui/Filters/index.js +0 -12
  417. package/dist/src/features/swatches/ui/HexGridZoom/HexGridZoom.js +0 -50
  418. package/dist/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.js +0 -45
  419. package/dist/src/features/swatches/ui/MaterialList/index.js +0 -39
  420. package/dist/src/features/swatches/ui/MaterialListItem/MaterialListItem.js +0 -51
  421. package/dist/src/features/swatches/ui/ProductElement/index.js +0 -65
  422. package/dist/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.js +0 -62
  423. package/dist/src/features/swatches/ui/Swatches.js +0 -51
  424. package/dist/src/features/swatches/ui/SwatchesList/SwatchesList.js +0 -67
  425. package/dist/src/features/swatches/utils/constants.js +0 -8
  426. package/dist/src/shared/constants/props.js +0 -13337
  427. package/dist/src/shared/constants/selectedMaterials.js +0 -4
  428. package/dist/src/shared/types/activeTab.js +0 -7
  429. package/dist/src/shared/ui/Checkbox/Checkbox.js +0 -31
  430. package/dist/src/shared/ui/CustomButton/CustomButton.js +0 -16
  431. package/dist/src/shared/ui/CustomSidebar/CustomSidebar.js +0 -59
  432. package/dist/src/shared/ui/CustomSidebar/CustomSidebar.module.scss.js +0 -13
  433. package/dist/src/shared/ui/Dialog/Dialog.js +0 -81
  434. package/dist/src/shared/ui/Label/Label.js +0 -27
  435. package/dist/src/shared/ui/Markdown/MDWithAccordion.js +0 -36
  436. package/dist/src/shared/ui/Markdown/MDWithAccordion.module.scss.js +0 -9
  437. package/dist/src/shared/ui/MaterialItem/MaterialItem.js +0 -36
  438. package/dist/src/shared/ui/MultiSelect/MultiSelect.js +0 -150
  439. package/dist/src/shared/ui/PopoverTooltip/InfoIcon.js +0 -35
  440. package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.js +0 -37
  441. package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.module.scss.js +0 -4
  442. package/dist/src/shared/ui/Slider/Slider.js +0 -117
  443. package/dist/src/shared/utils/cn.js +0 -8
  444. package/dist/src/shared/utils/uniqueList.js +0 -4
@@ -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
+ })[];