hasting-swatchcart-module 0.0.41 → 1.0.0

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 +237 -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
@@ -1,877 +0,0 @@
1
- import { isPlainObject as P, combineReducers as Z, applyMiddleware as ee, compose as A, createStore as te, isAction as q } from "../../../redux/dist/redux.js";
2
- import { __DO_NOT_USE__ActionTypes as Ue } from "../../../redux/dist/redux.js";
3
- import { produce as B, isDraftable as W, isDraft as re } from "../../../immer/dist/immer.js";
4
- import { current as Ge, freeze as Xe } from "../../../immer/dist/immer.js";
5
- import { thunk as ne, withExtraArgument as oe } from "../../../redux-thunk/dist/redux-thunk.js";
6
- var ie = typeof window < "u" && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ : function() {
7
- if (arguments.length !== 0)
8
- return typeof arguments[0] == "object" ? A : A.apply(null, arguments);
9
- }, F = (e) => e && typeof e.match == "function";
10
- function k(e, t) {
11
- function n(...r) {
12
- if (t) {
13
- let s = t(...r);
14
- if (!s)
15
- throw new Error(process.env.NODE_ENV === "production" ? w(0) : "prepareAction did not return an object");
16
- return {
17
- type: e,
18
- payload: s.payload,
19
- ..."meta" in s && {
20
- meta: s.meta
21
- },
22
- ..."error" in s && {
23
- error: s.error
24
- }
25
- };
26
- }
27
- return {
28
- type: e,
29
- payload: r[0]
30
- };
31
- }
32
- return n.toString = () => `${e}`, n.type = e, n.match = (r) => q(r) && r.type === e, n;
33
- }
34
- function ae(e) {
35
- return typeof e == "function" && "type" in e && // hasMatchFunction only wants Matchers but I don't see the point in rewriting it
36
- F(e);
37
- }
38
- function se(e) {
39
- const t = e ? `${e}`.split("/") : [], n = t[t.length - 1] || "actionCreator";
40
- return `Detected an action creator with type "${e || "unknown"}" being dispatched.
41
- Make sure you're calling the action creator before dispatching, i.e. \`dispatch(${n}())\` instead of \`dispatch(${n})\`. This is necessary even if the action has no payload.`;
42
- }
43
- function ce(e = {}) {
44
- if (process.env.NODE_ENV === "production")
45
- return () => (n) => (r) => n(r);
46
- const {
47
- isActionCreator: t = ae
48
- } = e;
49
- return () => (n) => (r) => (t(r) && console.warn(se(r.type)), n(r));
50
- }
51
- function U(e, t) {
52
- let n = 0;
53
- return {
54
- measureTime(r) {
55
- const s = Date.now();
56
- try {
57
- return r();
58
- } finally {
59
- const c = Date.now();
60
- n += c - s;
61
- }
62
- },
63
- warnIfExceeded() {
64
- n > e && console.warn(`${t} took ${n}ms, which is more than the warning threshold of ${e}ms.
65
- If your state or actions are very large, you may want to disable the middleware as it might cause too much of a slowdown in development mode. See https://redux-toolkit.js.org/api/getDefaultMiddleware for instructions.
66
- It is disabled in production builds, so you don't need to worry about that.`);
67
- }
68
- };
69
- }
70
- var L = class C extends Array {
71
- constructor(...t) {
72
- super(...t), Object.setPrototypeOf(this, C.prototype);
73
- }
74
- static get [Symbol.species]() {
75
- return C;
76
- }
77
- concat(...t) {
78
- return super.concat.apply(this, t);
79
- }
80
- prepend(...t) {
81
- return t.length === 1 && Array.isArray(t[0]) ? new C(...t[0].concat(this)) : new C(...t.concat(this));
82
- }
83
- };
84
- function x(e) {
85
- return W(e) ? B(e, () => {
86
- }) : e;
87
- }
88
- function V(e, t, n) {
89
- return e.has(t) ? e.get(t) : e.set(t, n(t)).get(t);
90
- }
91
- function ue(e) {
92
- return typeof e != "object" || e == null || Object.isFrozen(e);
93
- }
94
- function de(e, t, n) {
95
- const r = G(e, t, n);
96
- return {
97
- detectMutations() {
98
- return X(e, t, r, n);
99
- }
100
- };
101
- }
102
- function G(e, t = [], n, r = "", s = /* @__PURE__ */ new Set()) {
103
- const c = {
104
- value: n
105
- };
106
- if (!e(n) && !s.has(n)) {
107
- s.add(n), c.children = {};
108
- for (const i in n) {
109
- const u = r ? r + "." + i : i;
110
- t.length && t.indexOf(u) !== -1 || (c.children[i] = G(e, t, n[i], u));
111
- }
112
- }
113
- return c;
114
- }
115
- function X(e, t = [], n, r, s = !1, c = "") {
116
- const i = n ? n.value : void 0, u = i === r;
117
- if (s && !u && !Number.isNaN(r))
118
- return {
119
- wasMutated: !0,
120
- path: c
121
- };
122
- if (e(i) || e(r))
123
- return {
124
- wasMutated: !1
125
- };
126
- const a = {};
127
- for (let o in n.children)
128
- a[o] = !0;
129
- for (let o in r)
130
- a[o] = !0;
131
- const d = t.length > 0;
132
- for (let o in a) {
133
- const l = c ? c + "." + o : o;
134
- if (d && t.some((m) => m instanceof RegExp ? m.test(l) : l === m))
135
- continue;
136
- const p = X(e, t, n.children[o], r[o], u, l);
137
- if (p.wasMutated)
138
- return p;
139
- }
140
- return {
141
- wasMutated: !1
142
- };
143
- }
144
- function le(e = {}) {
145
- if (process.env.NODE_ENV === "production")
146
- return () => (t) => (n) => t(n);
147
- {
148
- let t = function(u, a, d, o) {
149
- return JSON.stringify(u, n(a, o), d);
150
- }, n = function(u, a) {
151
- let d = [], o = [];
152
- return a || (a = function(l, p) {
153
- return d[0] === p ? "[Circular ~]" : "[Circular ~." + o.slice(0, d.indexOf(p)).join(".") + "]";
154
- }), function(l, p) {
155
- if (d.length > 0) {
156
- var f = d.indexOf(this);
157
- ~f ? d.splice(f + 1) : d.push(this), ~f ? o.splice(f, 1 / 0, l) : o.push(l), ~d.indexOf(p) && (p = a.call(this, l, p));
158
- } else d.push(p);
159
- return u == null ? p : u.call(this, l, p);
160
- };
161
- }, {
162
- isImmutable: r = ue,
163
- ignoredPaths: s,
164
- warnAfter: c = 32
165
- } = e;
166
- const i = de.bind(null, r, s);
167
- return ({
168
- getState: u
169
- }) => {
170
- let a = u(), d = i(a), o;
171
- return (l) => (p) => {
172
- const f = U(c, "ImmutableStateInvariantMiddleware");
173
- f.measureTime(() => {
174
- if (a = u(), o = d.detectMutations(), d = i(a), o.wasMutated)
175
- throw new Error(process.env.NODE_ENV === "production" ? w(19) : `A state mutation was detected between dispatches, in the path '${o.path || ""}'. This may cause incorrect behavior. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
176
- });
177
- const m = l(p);
178
- return f.measureTime(() => {
179
- if (a = u(), o = d.detectMutations(), d = i(a), o.wasMutated)
180
- throw new Error(process.env.NODE_ENV === "production" ? w(20) : `A state mutation was detected inside a dispatch, in the path: ${o.path || ""}. Take a look at the reducer(s) handling the action ${t(p)}. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
181
- }), f.warnIfExceeded(), m;
182
- };
183
- };
184
- }
185
- }
186
- function H(e) {
187
- const t = typeof e;
188
- return e == null || t === "string" || t === "boolean" || t === "number" || Array.isArray(e) || P(e);
189
- }
190
- function j(e, t = "", n = H, r, s = [], c) {
191
- let i;
192
- if (!n(e))
193
- return {
194
- keyPath: t || "<root>",
195
- value: e
196
- };
197
- if (typeof e != "object" || e === null || c?.has(e)) return !1;
198
- const u = r != null ? r(e) : Object.entries(e), a = s.length > 0;
199
- for (const [d, o] of u) {
200
- const l = t ? t + "." + d : d;
201
- if (!(a && s.some((f) => f instanceof RegExp ? f.test(l) : l === f))) {
202
- if (!n(o))
203
- return {
204
- keyPath: l,
205
- value: o
206
- };
207
- if (typeof o == "object" && (i = j(o, l, n, r, s, c), i))
208
- return i;
209
- }
210
- }
211
- return c && Q(e) && c.add(e), !1;
212
- }
213
- function Q(e) {
214
- if (!Object.isFrozen(e)) return !1;
215
- for (const t of Object.values(e))
216
- if (!(typeof t != "object" || t === null) && !Q(t))
217
- return !1;
218
- return !0;
219
- }
220
- function fe(e = {}) {
221
- if (process.env.NODE_ENV === "production")
222
- return () => (t) => (n) => t(n);
223
- {
224
- const {
225
- isSerializable: t = H,
226
- getEntries: n,
227
- ignoredActions: r = [],
228
- ignoredActionPaths: s = ["meta.arg", "meta.baseQueryMeta"],
229
- ignoredPaths: c = [],
230
- warnAfter: i = 32,
231
- ignoreState: u = !1,
232
- ignoreActions: a = !1,
233
- disableCache: d = !1
234
- } = e, o = !d && WeakSet ? /* @__PURE__ */ new WeakSet() : void 0;
235
- return (l) => (p) => (f) => {
236
- if (!q(f))
237
- return p(f);
238
- const m = p(f), g = U(i, "SerializableStateInvariantMiddleware");
239
- return !a && !(r.length && r.indexOf(f.type) !== -1) && g.measureTime(() => {
240
- const D = j(f, "", t, n, s, o);
241
- if (D) {
242
- const {
243
- keyPath: v,
244
- value: _
245
- } = D;
246
- console.error(`A non-serializable value was detected in an action, in the path: \`${v}\`. Value:`, _, `
247
- Take a look at the logic that dispatched this action: `, f, `
248
- (See https://redux.js.org/faq/actions#why-should-type-be-a-string-or-at-least-serializable-why-should-my-action-types-be-constants)`, `
249
- (To allow non-serializable values see: https://redux-toolkit.js.org/usage/usage-guide#working-with-non-serializable-data)`);
250
- }
251
- }), u || (g.measureTime(() => {
252
- const D = l.getState(), v = j(D, "", t, n, c, o);
253
- if (v) {
254
- const {
255
- keyPath: _,
256
- value: h
257
- } = v;
258
- console.error(`A non-serializable value was detected in the state, in the path: \`${_}\`. Value:`, h, `
259
- Take a look at the reducer(s) handling this action type: ${f.type}.
260
- (See https://redux.js.org/faq/organizing-state#can-i-put-functions-promises-or-other-non-serializable-items-in-my-store-state)`);
261
- }
262
- }), g.warnIfExceeded()), m;
263
- };
264
- }
265
- }
266
- function M(e) {
267
- return typeof e == "boolean";
268
- }
269
- var pe = () => function(t) {
270
- const {
271
- thunk: n = !0,
272
- immutableCheck: r = !0,
273
- serializableCheck: s = !0,
274
- actionCreatorCheck: c = !0
275
- } = t ?? {};
276
- let i = new L();
277
- if (n && (M(n) ? i.push(ne) : i.push(oe(n.extraArgument))), process.env.NODE_ENV !== "production") {
278
- if (r) {
279
- let u = {};
280
- M(r) || (u = r), i.unshift(le(u));
281
- }
282
- if (s) {
283
- let u = {};
284
- M(s) || (u = s), i.push(fe(u));
285
- }
286
- if (c) {
287
- let u = {};
288
- M(c) || (u = c), i.unshift(ce(u));
289
- }
290
- }
291
- return i;
292
- }, he = "RTK_autoBatch", I = (e) => (t) => {
293
- setTimeout(t, e);
294
- }, we = (e = {
295
- type: "raf"
296
- }) => (t) => (...n) => {
297
- const r = t(...n);
298
- let s = !0, c = !1, i = !1;
299
- const u = /* @__PURE__ */ new Set(), a = e.type === "tick" ? queueMicrotask : e.type === "raf" ? (
300
- // requestAnimationFrame won't exist in SSR environments. Fall back to a vague approximation just to keep from erroring.
301
- typeof window < "u" && window.requestAnimationFrame ? window.requestAnimationFrame : I(10)
302
- ) : e.type === "callback" ? e.queueNotification : I(e.timeout), d = () => {
303
- i = !1, c && (c = !1, u.forEach((o) => o()));
304
- };
305
- return Object.assign({}, r, {
306
- // Override the base `store.subscribe` method to keep original listeners
307
- // from running if we're delaying notifications
308
- subscribe(o) {
309
- const l = () => s && o(), p = r.subscribe(l);
310
- return u.add(o), () => {
311
- p(), u.delete(o);
312
- };
313
- },
314
- // Override the base `store.dispatch` method so that we can check actions
315
- // for the `shouldAutoBatch` flag and determine if batching is active
316
- dispatch(o) {
317
- try {
318
- return s = !o?.meta?.[he], c = !s, c && (i || (i = !0, a(d))), r.dispatch(o);
319
- } finally {
320
- s = !0;
321
- }
322
- }
323
- });
324
- }, Ee = (e) => function(n) {
325
- const {
326
- autoBatch: r = !0
327
- } = n ?? {};
328
- let s = new L(e);
329
- return r && s.push(we(typeof r == "object" ? r : void 0)), s;
330
- };
331
- function Pe(e) {
332
- const t = pe(), {
333
- reducer: n = void 0,
334
- middleware: r,
335
- devTools: s = !0,
336
- duplicateMiddlewareCheck: c = !0,
337
- preloadedState: i = void 0,
338
- enhancers: u = void 0
339
- } = e || {};
340
- let a;
341
- if (typeof n == "function")
342
- a = n;
343
- else if (P(n))
344
- a = Z(n);
345
- else
346
- throw new Error(process.env.NODE_ENV === "production" ? w(1) : "`reducer` is a required argument, and must be a function or an object of functions that can be passed to combineReducers");
347
- if (process.env.NODE_ENV !== "production" && r && typeof r != "function")
348
- throw new Error(process.env.NODE_ENV === "production" ? w(2) : "`middleware` field must be a callback");
349
- let d;
350
- if (typeof r == "function") {
351
- if (d = r(t), process.env.NODE_ENV !== "production" && !Array.isArray(d))
352
- throw new Error(process.env.NODE_ENV === "production" ? w(3) : "when using a middleware builder function, an array of middleware must be returned");
353
- } else
354
- d = t();
355
- if (process.env.NODE_ENV !== "production" && d.some((g) => typeof g != "function"))
356
- throw new Error(process.env.NODE_ENV === "production" ? w(4) : "each middleware provided to configureStore must be a function");
357
- if (process.env.NODE_ENV !== "production" && c) {
358
- let g = /* @__PURE__ */ new Set();
359
- d.forEach((D) => {
360
- if (g.has(D))
361
- throw new Error(process.env.NODE_ENV === "production" ? w(42) : "Duplicate middleware references found when creating the store. Ensure that each middleware is only included once.");
362
- g.add(D);
363
- });
364
- }
365
- let o = A;
366
- s && (o = ie({
367
- // Enable capture of stack traces for dispatched Redux actions
368
- trace: process.env.NODE_ENV !== "production",
369
- ...typeof s == "object" && s
370
- }));
371
- const l = ee(...d), p = Ee(l);
372
- if (process.env.NODE_ENV !== "production" && u && typeof u != "function")
373
- throw new Error(process.env.NODE_ENV === "production" ? w(5) : "`enhancers` field must be a callback");
374
- let f = typeof u == "function" ? u(p) : p();
375
- if (process.env.NODE_ENV !== "production" && !Array.isArray(f))
376
- throw new Error(process.env.NODE_ENV === "production" ? w(6) : "`enhancers` callback must return an array");
377
- if (process.env.NODE_ENV !== "production" && f.some((g) => typeof g != "function"))
378
- throw new Error(process.env.NODE_ENV === "production" ? w(7) : "each enhancer provided to configureStore must be a function");
379
- process.env.NODE_ENV !== "production" && d.length && !f.includes(l) && console.error("middlewares were provided, but middleware enhancer was not included in final enhancers - make sure to call `getDefaultEnhancers`");
380
- const m = o(...f);
381
- return te(a, i, m);
382
- }
383
- function Y(e) {
384
- const t = {}, n = [];
385
- let r;
386
- const s = {
387
- addCase(c, i) {
388
- if (process.env.NODE_ENV !== "production") {
389
- if (n.length > 0)
390
- throw new Error(process.env.NODE_ENV === "production" ? w(26) : "`builder.addCase` should only be called before calling `builder.addMatcher`");
391
- if (r)
392
- throw new Error(process.env.NODE_ENV === "production" ? w(27) : "`builder.addCase` should only be called before calling `builder.addDefaultCase`");
393
- }
394
- const u = typeof c == "string" ? c : c.type;
395
- if (!u)
396
- throw new Error(process.env.NODE_ENV === "production" ? w(28) : "`builder.addCase` cannot be called with an empty action type");
397
- if (u in t)
398
- throw new Error(process.env.NODE_ENV === "production" ? w(29) : `\`builder.addCase\` cannot be called with two reducers for the same action type '${u}'`);
399
- return t[u] = i, s;
400
- },
401
- addAsyncThunk(c, i) {
402
- if (process.env.NODE_ENV !== "production" && r)
403
- throw new Error(process.env.NODE_ENV === "production" ? w(43) : "`builder.addAsyncThunk` should only be called before calling `builder.addDefaultCase`");
404
- return i.pending && (t[c.pending.type] = i.pending), i.rejected && (t[c.rejected.type] = i.rejected), i.fulfilled && (t[c.fulfilled.type] = i.fulfilled), i.settled && n.push({
405
- matcher: c.settled,
406
- reducer: i.settled
407
- }), s;
408
- },
409
- addMatcher(c, i) {
410
- if (process.env.NODE_ENV !== "production" && r)
411
- throw new Error(process.env.NODE_ENV === "production" ? w(30) : "`builder.addMatcher` should only be called before calling `builder.addDefaultCase`");
412
- return n.push({
413
- matcher: c,
414
- reducer: i
415
- }), s;
416
- },
417
- addDefaultCase(c) {
418
- if (process.env.NODE_ENV !== "production" && r)
419
- throw new Error(process.env.NODE_ENV === "production" ? w(31) : "`builder.addDefaultCase` can only be called once");
420
- return r = c, s;
421
- }
422
- };
423
- return e(s), [t, n, r];
424
- }
425
- function me(e) {
426
- return typeof e == "function";
427
- }
428
- function ye(e, t) {
429
- if (process.env.NODE_ENV !== "production" && typeof t == "object")
430
- throw new Error(process.env.NODE_ENV === "production" ? w(8) : "The object notation for `createReducer` has been removed. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createReducer");
431
- let [n, r, s] = Y(t), c;
432
- if (me(e))
433
- c = () => x(e());
434
- else {
435
- const u = x(e);
436
- c = () => u;
437
- }
438
- function i(u = c(), a) {
439
- let d = [n[a.type], ...r.filter(({
440
- matcher: o
441
- }) => o(a)).map(({
442
- reducer: o
443
- }) => o)];
444
- return d.filter((o) => !!o).length === 0 && (d = [s]), d.reduce((o, l) => {
445
- if (l)
446
- if (re(o)) {
447
- const f = l(o, a);
448
- return f === void 0 ? o : f;
449
- } else {
450
- if (W(o))
451
- return B(o, (p) => l(p, a));
452
- {
453
- const p = l(o, a);
454
- if (p === void 0) {
455
- if (o === null)
456
- return o;
457
- throw Error("A case reducer on a non-draftable value must not return undefined");
458
- }
459
- return p;
460
- }
461
- }
462
- return o;
463
- }, u);
464
- }
465
- return i.getInitialState = c, i;
466
- }
467
- var be = (e, t) => F(e) ? e.match(t) : e(t);
468
- function Ne(...e) {
469
- return (t) => e.some((n) => be(n, t));
470
- }
471
- var ge = "ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW", De = (e = 21) => {
472
- let t = "", n = e;
473
- for (; n--; )
474
- t += ge[Math.random() * 64 | 0];
475
- return t;
476
- }, ve = ["name", "message", "stack", "code"], T = class {
477
- constructor(e, t) {
478
- this.payload = e, this.meta = t;
479
- }
480
- /*
481
- type-only property to distinguish between RejectWithValue and FulfillWithMeta
482
- does not exist at runtime
483
- */
484
- _type;
485
- }, z = class {
486
- constructor(e, t) {
487
- this.payload = e, this.meta = t;
488
- }
489
- /*
490
- type-only property to distinguish between RejectWithValue and FulfillWithMeta
491
- does not exist at runtime
492
- */
493
- _type;
494
- }, Oe = (e) => {
495
- if (typeof e == "object" && e !== null) {
496
- const t = {};
497
- for (const n of ve)
498
- typeof e[n] == "string" && (t[n] = e[n]);
499
- return t;
500
- }
501
- return {
502
- message: String(e)
503
- };
504
- }, $ = "External signal was aborted", qe = /* @__PURE__ */ (() => {
505
- function e(t, n, r) {
506
- const s = k(t + "/fulfilled", (a, d, o, l) => ({
507
- payload: a,
508
- meta: {
509
- ...l || {},
510
- arg: o,
511
- requestId: d,
512
- requestStatus: "fulfilled"
513
- }
514
- })), c = k(t + "/pending", (a, d, o) => ({
515
- payload: void 0,
516
- meta: {
517
- ...o || {},
518
- arg: d,
519
- requestId: a,
520
- requestStatus: "pending"
521
- }
522
- })), i = k(t + "/rejected", (a, d, o, l, p) => ({
523
- payload: l,
524
- error: (r && r.serializeError || Oe)(a || "Rejected"),
525
- meta: {
526
- ...p || {},
527
- arg: o,
528
- requestId: d,
529
- rejectedWithValue: !!l,
530
- requestStatus: "rejected",
531
- aborted: a?.name === "AbortError",
532
- condition: a?.name === "ConditionError"
533
- }
534
- }));
535
- function u(a, {
536
- signal: d
537
- } = {}) {
538
- return (o, l, p) => {
539
- const f = r?.idGenerator ? r.idGenerator(a) : De(), m = new AbortController();
540
- let g, D;
541
- function v(h) {
542
- D = h, m.abort();
543
- }
544
- d && (d.aborted ? v($) : d.addEventListener("abort", () => v($), {
545
- once: !0
546
- }));
547
- const _ = (async function() {
548
- let h;
549
- try {
550
- let E = r?.condition?.(a, {
551
- getState: l,
552
- extra: p
553
- });
554
- if (Ce(E) && (E = await E), E === !1 || m.signal.aborted)
555
- throw {
556
- name: "ConditionError",
557
- message: "Aborted due to condition callback returning false."
558
- };
559
- const O = new Promise((b, N) => {
560
- g = () => {
561
- N({
562
- name: "AbortError",
563
- message: D || "Aborted"
564
- });
565
- }, m.signal.addEventListener("abort", g);
566
- });
567
- o(c(f, a, r?.getPendingMeta?.({
568
- requestId: f,
569
- arg: a
570
- }, {
571
- getState: l,
572
- extra: p
573
- }))), h = await Promise.race([O, Promise.resolve(n(a, {
574
- dispatch: o,
575
- getState: l,
576
- extra: p,
577
- requestId: f,
578
- signal: m.signal,
579
- abort: v,
580
- rejectWithValue: (b, N) => new T(b, N),
581
- fulfillWithValue: (b, N) => new z(b, N)
582
- })).then((b) => {
583
- if (b instanceof T)
584
- throw b;
585
- return b instanceof z ? s(b.payload, f, a, b.meta) : s(b, f, a);
586
- })]);
587
- } catch (E) {
588
- h = E instanceof T ? i(null, f, a, E.payload, E.meta) : i(E, f, a);
589
- } finally {
590
- g && m.signal.removeEventListener("abort", g);
591
- }
592
- return r && !r.dispatchConditionRejection && i.match(h) && h.meta.condition || o(h), h;
593
- })();
594
- return Object.assign(_, {
595
- abort: v,
596
- requestId: f,
597
- arg: a,
598
- unwrap() {
599
- return _.then(_e);
600
- }
601
- });
602
- };
603
- }
604
- return Object.assign(u, {
605
- pending: c,
606
- rejected: i,
607
- fulfilled: s,
608
- settled: Ne(i, s),
609
- typePrefix: t
610
- });
611
- }
612
- return e.withTypes = () => e, e;
613
- })();
614
- function _e(e) {
615
- if (e.meta && e.meta.rejectedWithValue)
616
- throw e.payload;
617
- if (e.error)
618
- throw e.error;
619
- return e.payload;
620
- }
621
- function Ce(e) {
622
- return e !== null && typeof e == "object" && typeof e.then == "function";
623
- }
624
- var ke = /* @__PURE__ */ Symbol.for("rtk-slice-createasyncthunk");
625
- function Ve(e, t) {
626
- return `${e}/${t}`;
627
- }
628
- function Me({
629
- creators: e
630
- } = {}) {
631
- const t = e?.asyncThunk?.[ke];
632
- return function(r) {
633
- const {
634
- name: s,
635
- reducerPath: c = s
636
- } = r;
637
- if (!s)
638
- throw new Error(process.env.NODE_ENV === "production" ? w(11) : "`name` is a required option for createSlice");
639
- typeof process < "u" && process.env.NODE_ENV === "development" && r.initialState === void 0 && console.error("You must provide an `initialState` value that is not `undefined`. You may have misspelled `initialState`");
640
- const i = (typeof r.reducers == "function" ? r.reducers(Te()) : r.reducers) || {}, u = Object.keys(i), a = {
641
- sliceCaseReducersByName: {},
642
- sliceCaseReducersByType: {},
643
- actionCreators: {},
644
- sliceMatchers: []
645
- }, d = {
646
- addCase(h, y) {
647
- const E = typeof h == "string" ? h : h.type;
648
- if (!E)
649
- throw new Error(process.env.NODE_ENV === "production" ? w(12) : "`context.addCase` cannot be called with an empty action type");
650
- if (E in a.sliceCaseReducersByType)
651
- throw new Error(process.env.NODE_ENV === "production" ? w(13) : "`context.addCase` cannot be called with two reducers for the same action type: " + E);
652
- return a.sliceCaseReducersByType[E] = y, d;
653
- },
654
- addMatcher(h, y) {
655
- return a.sliceMatchers.push({
656
- matcher: h,
657
- reducer: y
658
- }), d;
659
- },
660
- exposeAction(h, y) {
661
- return a.actionCreators[h] = y, d;
662
- },
663
- exposeCaseReducer(h, y) {
664
- return a.sliceCaseReducersByName[h] = y, d;
665
- }
666
- };
667
- u.forEach((h) => {
668
- const y = i[h], E = {
669
- reducerName: h,
670
- type: Ve(s, h),
671
- createNotation: typeof r.reducers == "function"
672
- };
673
- je(y) ? xe(E, y, d, t) : Ae(E, y, d);
674
- });
675
- function o() {
676
- if (process.env.NODE_ENV !== "production" && typeof r.extraReducers == "object")
677
- throw new Error(process.env.NODE_ENV === "production" ? w(14) : "The object notation for `createSlice.extraReducers` has been removed. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createSlice");
678
- const [h = {}, y = [], E = void 0] = typeof r.extraReducers == "function" ? Y(r.extraReducers) : [r.extraReducers], O = {
679
- ...h,
680
- ...a.sliceCaseReducersByType
681
- };
682
- return ye(r.initialState, (b) => {
683
- for (let N in O)
684
- b.addCase(N, O[N]);
685
- for (let N of a.sliceMatchers)
686
- b.addMatcher(N.matcher, N.reducer);
687
- for (let N of y)
688
- b.addMatcher(N.matcher, N.reducer);
689
- E && b.addDefaultCase(E);
690
- });
691
- }
692
- const l = (h) => h, p = /* @__PURE__ */ new Map(), f = /* @__PURE__ */ new WeakMap();
693
- let m;
694
- function g(h, y) {
695
- return m || (m = o()), m(h, y);
696
- }
697
- function D() {
698
- return m || (m = o()), m.getInitialState();
699
- }
700
- function v(h, y = !1) {
701
- function E(b) {
702
- let N = b[h];
703
- if (typeof N > "u") {
704
- if (y)
705
- N = V(f, E, D);
706
- else if (process.env.NODE_ENV !== "production")
707
- throw new Error(process.env.NODE_ENV === "production" ? w(15) : "selectSlice returned undefined for an uninjected slice reducer");
708
- }
709
- return N;
710
- }
711
- function O(b = l) {
712
- const N = V(p, y, () => /* @__PURE__ */ new WeakMap());
713
- return V(N, b, () => {
714
- const R = {};
715
- for (const [J, K] of Object.entries(r.selectors ?? {}))
716
- R[J] = Se(K, b, () => V(f, b, D), y);
717
- return R;
718
- });
719
- }
720
- return {
721
- reducerPath: h,
722
- getSelectors: O,
723
- get selectors() {
724
- return O(E);
725
- },
726
- selectSlice: E
727
- };
728
- }
729
- const _ = {
730
- name: s,
731
- reducer: g,
732
- actions: a.actionCreators,
733
- caseReducers: a.sliceCaseReducersByName,
734
- getInitialState: D,
735
- ...v(c),
736
- injectInto(h, {
737
- reducerPath: y,
738
- ...E
739
- } = {}) {
740
- const O = y ?? c;
741
- return h.inject({
742
- reducerPath: O,
743
- reducer: g
744
- }, E), {
745
- ..._,
746
- ...v(O, !0)
747
- };
748
- }
749
- };
750
- return _;
751
- };
752
- }
753
- function Se(e, t, n, r) {
754
- function s(c, ...i) {
755
- let u = t(c);
756
- if (typeof u > "u") {
757
- if (r)
758
- u = n();
759
- else if (process.env.NODE_ENV !== "production")
760
- throw new Error(process.env.NODE_ENV === "production" ? w(16) : "selectState returned undefined for an uninjected slice reducer");
761
- }
762
- return e(u, ...i);
763
- }
764
- return s.unwrapped = e, s;
765
- }
766
- var Be = /* @__PURE__ */ Me();
767
- function Te() {
768
- function e(t, n) {
769
- return {
770
- _reducerDefinitionType: "asyncThunk",
771
- payloadCreator: t,
772
- ...n
773
- };
774
- }
775
- return e.withTypes = () => e, {
776
- reducer(t) {
777
- return Object.assign({
778
- // hack so the wrapping function has the same name as the original
779
- // we need to create a wrapper so the `reducerDefinitionType` is not assigned to the original
780
- [t.name](...n) {
781
- return t(...n);
782
- }
783
- }[t.name], {
784
- _reducerDefinitionType: "reducer"
785
- /* reducer */
786
- });
787
- },
788
- preparedReducer(t, n) {
789
- return {
790
- _reducerDefinitionType: "reducerWithPrepare",
791
- prepare: t,
792
- reducer: n
793
- };
794
- },
795
- asyncThunk: e
796
- };
797
- }
798
- function Ae({
799
- type: e,
800
- reducerName: t,
801
- createNotation: n
802
- }, r, s) {
803
- let c, i;
804
- if ("reducer" in r) {
805
- if (n && !Re(r))
806
- throw new Error(process.env.NODE_ENV === "production" ? w(17) : "Please use the `create.preparedReducer` notation for prepared action creators with the `create` notation.");
807
- c = r.reducer, i = r.prepare;
808
- } else
809
- c = r;
810
- s.addCase(e, c).exposeCaseReducer(t, c).exposeAction(t, i ? k(e, i) : k(e));
811
- }
812
- function je(e) {
813
- return e._reducerDefinitionType === "asyncThunk";
814
- }
815
- function Re(e) {
816
- return e._reducerDefinitionType === "reducerWithPrepare";
817
- }
818
- function xe({
819
- type: e,
820
- reducerName: t
821
- }, n, r, s) {
822
- if (!s)
823
- throw new Error(process.env.NODE_ENV === "production" ? w(18) : "Cannot use `create.asyncThunk` in the built-in `createSlice`. Use `buildCreateSlice({ creators: { asyncThunk: asyncThunkCreator } })` to create a customised version of `createSlice`.");
824
- const {
825
- payloadCreator: c,
826
- fulfilled: i,
827
- pending: u,
828
- rejected: a,
829
- settled: d,
830
- options: o
831
- } = n, l = s(e, c, o);
832
- r.exposeAction(t, l), i && r.addCase(l.fulfilled, i), u && r.addCase(l.pending, u), a && r.addCase(l.rejected, a), d && r.addMatcher(l.settled, d), r.exposeCaseReducer(t, {
833
- fulfilled: i || S,
834
- pending: u || S,
835
- rejected: a || S,
836
- settled: d || S
837
- });
838
- }
839
- function S() {
840
- }
841
- function w(e) {
842
- return `Minified Redux Toolkit error #${e}; visit https://redux-toolkit.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `;
843
- }
844
- export {
845
- he as SHOULD_AUTOBATCH,
846
- L as Tuple,
847
- Ue as __DO_NOT_USE__ActionTypes,
848
- ee as applyMiddleware,
849
- we as autoBatchEnhancer,
850
- Me as buildCreateSlice,
851
- Z as combineReducers,
852
- A as compose,
853
- Pe as configureStore,
854
- k as createAction,
855
- ce as createActionCreatorInvariantMiddleware,
856
- qe as createAsyncThunk,
857
- le as createImmutableStateInvariantMiddleware,
858
- B as createNextState,
859
- ye as createReducer,
860
- fe as createSerializableStateInvariantMiddleware,
861
- Be as createSlice,
862
- te as createStore,
863
- Ge as current,
864
- j as findNonSerializableValue,
865
- w as formatProdErrorMessage,
866
- Xe as freeze,
867
- q as isAction,
868
- ae as isActionCreator,
869
- Ne as isAnyOf,
870
- re as isDraft,
871
- ue as isImmutableDefault,
872
- H as isPlain,
873
- P as isPlainObject,
874
- Oe as miniSerializeError,
875
- De as nanoid,
876
- _e as unwrapResult
877
- };