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.
- package/README.md +237 -73
- package/dist/assets/index.css +1 -0
- package/dist/cdn/lib/components/SwatchesModule.d.ts +10 -0
- package/dist/cdn/lib/main.d.ts +4 -0
- package/dist/cdn/lib/store/LibraryProvider.d.ts +4 -0
- package/dist/cdn/lib/store/rootReducer.d.ts +11 -0
- package/dist/cdn/lib/store/store.d.ts +25 -0
- package/dist/cdn/lib/store/withStore.d.ts +2 -0
- package/dist/cdn/lib/vite-env.d.ts +1 -0
- package/dist/cdn/main.css +1 -0
- package/dist/cdn/main.js +48652 -0
- package/dist/cdn/src/app/App.d.ts +2 -0
- package/dist/cdn/src/app/assets/svg/ArrowIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/CheckMarkIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/CloseIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/DarkWhiteIconSVG.d.ts +1 -0
- package/dist/cdn/src/app/assets/svg/MinusIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/PlusIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/SearchIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/TrashIconSVG.d.ts +3 -0
- package/dist/cdn/src/app/assets/svg/WhiteWhiteIconSVG.d.ts +1 -0
- package/dist/cdn/src/app/main.d.ts +1 -0
- package/dist/cdn/src/app/providers/StoreProvider.d.ts +6 -0
- package/dist/cdn/src/app/store/rootReducer.d.ts +11 -0
- package/dist/cdn/src/app/store/store.d.ts +24 -0
- package/dist/cdn/src/features/Cart/lib/CartCervices.d.ts +5 -0
- package/dist/cdn/src/features/Cart/model/cartSlice.d.ts +13 -0
- package/dist/cdn/src/features/Cart/model/selectors.d.ts +223 -0
- package/dist/cdn/src/features/Cart/model/types.d.ts +7 -0
- package/dist/cdn/src/features/Cart/ui/CartHeader/CartHeader.d.ts +7 -0
- package/dist/cdn/src/features/Cart/ui/CartList/CartList.d.ts +1 -0
- package/dist/cdn/src/features/Cart/ui/CartListItem/CartListItem.d.ts +10 -0
- package/dist/cdn/src/features/Cart/ui/CartPrice/CartPrice.d.ts +5 -0
- package/dist/cdn/src/features/Cart/ui/CartWrapper/CartWrapper.d.ts +9 -0
- package/dist/cdn/src/features/Cart/ui/Counter/Counter.d.ts +9 -0
- package/dist/cdn/src/features/DataAdapter/lib/DataAdapterServices.d.ts +12 -0
- package/dist/cdn/src/features/DataAdapter/utils/types.d.ts +11 -0
- package/dist/cdn/src/features/MultiProduct/lib/MultiProductCartServices.d.ts +13 -0
- package/dist/cdn/src/features/MultiProduct/model/API/api.d.ts +3 -0
- package/dist/cdn/src/features/MultiProduct/model/API/routes.d.ts +4 -0
- package/dist/cdn/src/features/MultiProduct/model/multiProductCartSlice.d.ts +13 -0
- package/dist/cdn/src/features/MultiProduct/model/selectors.d.ts +35 -0
- package/dist/cdn/src/features/MultiProduct/model/types.d.ts +30 -0
- package/dist/cdn/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.d.ts +1 -0
- package/dist/cdn/src/features/MultiProduct/ui/CustomModal/CustomModal.d.ts +8 -0
- package/dist/cdn/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.d.ts +1 -0
- package/dist/cdn/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.d.ts +5 -0
- package/dist/cdn/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.d.ts +6 -0
- package/dist/cdn/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.d.ts +6 -0
- package/dist/cdn/src/features/MultiProduct/ui/ProductList/ProductList.d.ts +5 -0
- package/dist/cdn/src/features/MultiProduct/ui/ProductListItem/ProductListItem.d.ts +6 -0
- package/dist/cdn/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.d.ts +5 -0
- package/dist/cdn/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.d.ts +1 -0
- package/dist/cdn/src/features/MultiProduct/utils/constants.d.ts +8 -0
- package/dist/cdn/src/features/MultiProduct/utils/randomList.d.ts +2 -0
- package/dist/cdn/src/features/SwatchModule/SwatchModule/ui/SwatchModule.d.ts +11 -0
- package/dist/cdn/src/features/swatches/lib/AttributeHelper.d.ts +7 -0
- package/dist/cdn/src/features/swatches/lib/SwatchesServices.d.ts +11 -0
- package/dist/cdn/src/features/swatches/model/selectors.d.ts +12 -0
- package/dist/cdn/src/features/swatches/model/swatchesSlice.d.ts +26 -0
- package/dist/cdn/src/features/swatches/model/thunks.d.ts +12 -0
- package/dist/cdn/src/features/swatches/model/types.d.ts +137 -0
- package/dist/cdn/src/features/swatches/ui/Filters/ColorsFilter.d.ts +1 -0
- package/dist/cdn/src/features/swatches/ui/Filters/LooksFilter.d.ts +1 -0
- package/dist/cdn/src/features/swatches/ui/Filters/MaterialsFilter.d.ts +1 -0
- package/dist/cdn/src/features/swatches/ui/Filters/index.d.ts +5 -0
- package/dist/cdn/src/features/swatches/ui/HexGridZoom/HexGridZoom.d.ts +3 -0
- package/dist/cdn/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.d.ts +3 -0
- package/dist/cdn/src/features/swatches/ui/MaterialList/index.d.ts +7 -0
- package/dist/cdn/src/features/swatches/ui/MaterialListItem/MaterialListItem.d.ts +4 -0
- package/dist/cdn/src/features/swatches/ui/ProductElement/index.d.ts +6 -0
- package/dist/cdn/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.d.ts +8 -0
- package/dist/cdn/src/features/swatches/ui/Swatches.d.ts +11 -0
- package/dist/cdn/src/features/swatches/ui/SwatchesList/SwatchesList.d.ts +5 -0
- package/dist/cdn/src/features/swatches/utils/constants.d.ts +3 -0
- package/dist/cdn/src/features/swatches/utils/types.d.ts +22 -0
- package/dist/cdn/src/shared/constants/props.d.ts +1058 -0
- package/dist/cdn/src/shared/constants/select.d.ts +4 -0
- package/dist/cdn/src/shared/constants/selectedMaterials.d.ts +1 -0
- package/dist/cdn/src/shared/types/activeTab.d.ts +5 -0
- package/dist/cdn/src/shared/types/svg.d.ts +3 -0
- package/dist/cdn/src/shared/ui/Checkbox/Checkbox.d.ts +4 -0
- package/dist/cdn/src/shared/ui/CustomButton/CustomButton.d.ts +6 -0
- package/dist/cdn/src/shared/ui/CustomSidebar/CustomSidebar.d.ts +8 -0
- package/dist/cdn/src/shared/ui/Dialog/Dialog.d.ts +19 -0
- package/dist/cdn/src/shared/ui/Label/Label.d.ts +7 -0
- package/dist/cdn/src/shared/ui/Markdown/MDWithAccordion.d.ts +10 -0
- package/dist/cdn/src/shared/ui/MaterialItem/MaterialItem.d.ts +8 -0
- package/dist/cdn/src/shared/ui/MultiSelect/MultiSelect.d.ts +20 -0
- package/dist/cdn/src/shared/ui/PopoverTooltip/InfoIcon.d.ts +1 -0
- package/dist/cdn/src/shared/ui/PopoverTooltip/PopoverTooltip.d.ts +11 -0
- package/dist/cdn/src/shared/ui/Slider/Slider.d.ts +11 -0
- package/dist/cdn/src/shared/ui/popover.d.ts +9 -0
- package/dist/cdn/src/shared/utils/cn.d.ts +2 -0
- package/dist/cdn/src/shared/utils/uniqueList.d.ts +1 -0
- package/dist/cdn/vite.svg +1 -0
- package/dist/components/SwatchesModule.d.ts +1 -2
- package/dist/main.cjs +407 -0
- package/dist/main.cjs.map +1 -0
- package/dist/main.d.ts +4 -1
- package/dist/main.js +63812 -2
- package/dist/main.js.map +1 -0
- package/dist/store/LibraryProvider.d.ts +4 -0
- package/dist/store/rootReducer.d.ts +11 -0
- package/dist/store/store.d.ts +25 -0
- package/dist/store/withStore.d.ts +2 -0
- package/package.json +24 -14
- package/dist/_virtual/_commonjsHelpers.js +0 -6
- package/dist/_virtual/index.js +0 -7
- package/dist/_virtual/index2.js +0 -7
- package/dist/_virtual/index3.js +0 -4
- package/dist/_virtual/use-sync-external-store-with-selector.development.js +0 -4
- package/dist/_virtual/use-sync-external-store-with-selector.production.js +0 -4
- package/dist/_virtual/utilities.js +0 -4
- package/dist/_virtual/with-selector.js +0 -5
- package/dist/_virtual/with-selector2.js +0 -4
- package/dist/assets/src/shared/ui/CustomSidebar/CustomSidebar.module.css +0 -1
- package/dist/assets/src/shared/ui/Markdown/MDWithAccordion.module.css +0 -1
- package/dist/assets/src/shared/ui/PopoverTooltip/PopoverTooltip.module.css +0 -0
- package/dist/components/SwatchesModule.js +0 -32
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +0 -527
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +0 -402
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +0 -208
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +0 -136
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +0 -130
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +0 -9
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +0 -24
- package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +0 -251
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +0 -29
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +0 -68
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +0 -256
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +0 -127
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +0 -17
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +0 -136
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +0 -13
- package/dist/node_modules/@radix-ui/react-popover/dist/index.js +0 -231
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js +0 -219
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +0 -15
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js +0 -70
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +0 -36
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +0 -49
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +0 -10
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +0 -52
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +0 -14
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +0 -6
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +0 -8
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +0 -27
- package/dist/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.js +0 -877
- package/dist/node_modules/@tanstack/react-virtual/dist/esm/index.js +0 -35
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/index.js +0 -497
- package/dist/node_modules/@tanstack/virtual-core/dist/esm/utils.js +0 -52
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -62
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +0 -11
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +0 -106
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -13
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +0 -52
- package/dist/node_modules/bail/index.js +0 -7
- package/dist/node_modules/clsx/dist/clsx.js +0 -17
- package/dist/node_modules/comma-separated-tokens/index.js +0 -20
- package/dist/node_modules/decode-named-character-reference/index.dom.js +0 -14
- package/dist/node_modules/devlop/lib/default.js +0 -8
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +0 -7
- package/dist/node_modules/extend/index.js +0 -43
- package/dist/node_modules/get-nonce/dist/es2015/index.js +0 -7
- package/dist/node_modules/hast-util-from-parse5/lib/index.js +0 -145
- package/dist/node_modules/hast-util-parse-selector/lib/index.js +0 -20
- package/dist/node_modules/hast-util-raw/lib/index.js +0 -217
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +0 -302
- package/dist/node_modules/hast-util-to-parse5/lib/index.js +0 -118
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/index.js +0 -12
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/aria.js +0 -61
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/find.js +0 -33
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/html.js +0 -368
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/normalize.js +0 -6
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/svg.js +0 -566
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/create.js +0 -22
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/defined-info.js +0 -27
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/info.js +0 -23
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/merge.js +0 -11
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/schema.js +0 -17
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/types.js +0 -14
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xlink.js +0 -19
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xml.js +0 -11
- package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/xmlns.js +0 -11
- package/dist/node_modules/hast-util-whitespace/lib/index.js +0 -10
- package/dist/node_modules/hastscript/lib/create-h.js +0 -112
- package/dist/node_modules/hastscript/lib/index.js +0 -8
- package/dist/node_modules/hastscript/lib/svg-case-sensitive-tag-names.js +0 -44
- package/dist/node_modules/html-url-attributes/lib/index.js +0 -26
- package/dist/node_modules/html-void-elements/index.js +0 -25
- package/dist/node_modules/immer/dist/immer.js +0 -467
- package/dist/node_modules/inline-style-parser/index.js +0 -93
- package/dist/node_modules/is-plain-obj/index.js +0 -9
- package/dist/node_modules/lucide-react/dist/esm/Icon.js +0 -40
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +0 -27
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +0 -20
- package/dist/node_modules/lucide-react/dist/esm/icons/check.js +0 -12
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +0 -12
- package/dist/node_modules/lucide-react/dist/esm/icons/x.js +0 -15
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +0 -19
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +0 -581
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +0 -90
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +0 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +0 -15
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +0 -28
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +0 -9
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +0 -14
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +0 -10
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +0 -58
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +0 -14
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +0 -19
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +0 -15
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +0 -42
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +0 -21
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +0 -7
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +0 -21
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +0 -32
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +0 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +0 -10
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +0 -104
- package/dist/node_modules/mdast-util-to-string/lib/index.js +0 -29
- package/dist/node_modules/micromark/lib/constructs.js +0 -85
- package/dist/node_modules/micromark/lib/create-tokenizer.js +0 -223
- package/dist/node_modules/micromark/lib/initialize/content.js +0 -37
- package/dist/node_modules/micromark/lib/initialize/document.js +0 -126
- package/dist/node_modules/micromark/lib/initialize/flow.js +0 -33
- package/dist/node_modules/micromark/lib/initialize/text.js +0 -95
- package/dist/node_modules/micromark/lib/parse.js +0 -32
- package/dist/node_modules/micromark/lib/postprocess.js +0 -9
- package/dist/node_modules/micromark/lib/preprocess.js +0 -39
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +0 -83
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +0 -43
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +0 -18
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +0 -42
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +0 -17
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +0 -30
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +0 -94
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +0 -43
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +0 -45
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +0 -50
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +0 -80
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +0 -17
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +0 -46
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +0 -144
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +0 -102
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +0 -152
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +0 -22
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +0 -19
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +0 -14
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +0 -90
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +0 -57
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +0 -25
- package/dist/node_modules/micromark-factory-destination/index.js +0 -31
- package/dist/node_modules/micromark-factory-label/index.js +0 -28
- package/dist/node_modules/micromark-factory-space/index.js +0 -15
- package/dist/node_modules/micromark-factory-title/index.js +0 -26
- package/dist/node_modules/micromark-factory-whitespace/index.js +0 -12
- package/dist/node_modules/micromark-util-character/index.js +0 -39
- package/dist/node_modules/micromark-util-chunked/index.js +0 -16
- package/dist/node_modules/micromark-util-classify-character/index.js +0 -10
- package/dist/node_modules/micromark-util-combine-extensions/index.js +0 -36
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +0 -16
- package/dist/node_modules/micromark-util-decode-string/index.js +0 -18
- package/dist/node_modules/micromark-util-html-tag-name/index.js +0 -68
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +0 -6
- package/dist/node_modules/micromark-util-resolve-all/index.js +0 -12
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +0 -23
- package/dist/node_modules/micromark-util-subtokenize/index.js +0 -55
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +0 -175
- package/dist/node_modules/parse5/dist/common/doctype.js +0 -98
- package/dist/node_modules/parse5/dist/common/error-codes.js +0 -7
- package/dist/node_modules/parse5/dist/common/foreign-content.js +0 -210
- package/dist/node_modules/parse5/dist/common/html.js +0 -250
- package/dist/node_modules/parse5/dist/common/token.js +0 -14
- package/dist/node_modules/parse5/dist/common/unicode.js +0 -73
- package/dist/node_modules/parse5/dist/parser/formatting-element-list.js +0 -84
- package/dist/node_modules/parse5/dist/parser/index.js +0 -2271
- package/dist/node_modules/parse5/dist/parser/open-element-stack.js +0 -240
- package/dist/node_modules/parse5/dist/serializer/index.js +0 -2
- package/dist/node_modules/parse5/dist/tokenizer/index.js +0 -1940
- package/dist/node_modules/parse5/dist/tokenizer/preprocessor.js +0 -88
- package/dist/node_modules/parse5/dist/tree-adapters/default.js +0 -162
- package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode-codepoint.js +0 -38
- package/dist/node_modules/parse5/node_modules/entities/dist/esm/decode.js +0 -245
- package/dist/node_modules/parse5/node_modules/entities/dist/esm/generated/decode-data-html.js +0 -7
- package/dist/node_modules/property-information/index.js +0 -12
- package/dist/node_modules/property-information/lib/aria.js +0 -61
- package/dist/node_modules/property-information/lib/find.js +0 -33
- package/dist/node_modules/property-information/lib/hast-to-react.js +0 -22
- package/dist/node_modules/property-information/lib/html.js +0 -368
- package/dist/node_modules/property-information/lib/normalize.js +0 -6
- package/dist/node_modules/property-information/lib/svg.js +0 -566
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
- package/dist/node_modules/property-information/lib/util/create.js +0 -19
- package/dist/node_modules/property-information/lib/util/defined-info.js +0 -36
- package/dist/node_modules/property-information/lib/util/info.js +0 -28
- package/dist/node_modules/property-information/lib/util/merge.js +0 -10
- package/dist/node_modules/property-information/lib/util/schema.js +0 -21
- package/dist/node_modules/property-information/lib/util/types.js +0 -14
- package/dist/node_modules/property-information/lib/xlink.js +0 -19
- package/dist/node_modules/property-information/lib/xml.js +0 -11
- package/dist/node_modules/property-information/lib/xmlns.js +0 -11
- package/dist/node_modules/react-markdown/lib/index.js +0 -102
- package/dist/node_modules/react-redux/dist/react-redux.js +0 -246
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +0 -11
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +0 -112
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +0 -31
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +0 -16
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +0 -68
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +0 -5
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +0 -7
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +0 -71
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +0 -7
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +0 -25
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +0 -11
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +0 -15
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +0 -30
- package/dist/node_modules/redux/dist/redux.js +0 -258
- package/dist/node_modules/redux-thunk/dist/redux-thunk.js +0 -8
- package/dist/node_modules/rehype-raw/lib/index.js +0 -12
- package/dist/node_modules/remark-parse/lib/index.js +0 -19
- package/dist/node_modules/remark-rehype/lib/index.js +0 -18
- package/dist/node_modules/reselect/dist/reselect.js +0 -244
- package/dist/node_modules/space-separated-tokens/index.js +0 -11
- package/dist/node_modules/style-to-js/cjs/index.js +0 -20
- package/dist/node_modules/style-to-js/cjs/utilities.js +0 -19
- package/dist/node_modules/style-to-object/cjs/index.js +0 -28
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +0 -2731
- package/dist/node_modules/trim-lines/index.js +0 -28
- package/dist/node_modules/trough/lib/index.js +0 -60
- package/dist/node_modules/tslib/tslib.es6.js +0 -27
- package/dist/node_modules/unified/lib/callable-instance.js +0 -25
- package/dist/node_modules/unified/lib/index.js +0 -529
- package/dist/node_modules/unist-util-is/lib/index.js +0 -84
- package/dist/node_modules/unist-util-position/lib/index.js +0 -23
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +0 -15
- package/dist/node_modules/unist-util-visit/lib/index.js +0 -16
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +0 -6
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +0 -56
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +0 -6
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +0 -26
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +0 -25
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +0 -18
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +0 -67
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js +0 -66
- package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js +0 -65
- package/dist/node_modules/use-sync-external-store/with-selector.js +0 -10
- package/dist/node_modules/vfile/lib/index.js +0 -406
- package/dist/node_modules/vfile/lib/minpath.browser.js +0 -112
- package/dist/node_modules/vfile/lib/minproc.browser.js +0 -7
- package/dist/node_modules/vfile/lib/minurl.browser.js +0 -41
- package/dist/node_modules/vfile/lib/minurl.shared.js +0 -7
- package/dist/node_modules/vfile-location/lib/index.js +0 -42
- package/dist/node_modules/vfile-message/lib/index.js +0 -91
- package/dist/node_modules/web-namespaces/index.js +0 -11
- package/dist/node_modules/zwitch/index.js +0 -18
- package/dist/src/app/assets/images/product_thumb.png.js +0 -4
- package/dist/src/app/assets/svg/ArrowIconSVG.js +0 -25
- package/dist/src/app/assets/svg/CheckMarkIconSVG.js +0 -25
- package/dist/src/app/assets/svg/CloseIconSVG.js +0 -25
- package/dist/src/app/assets/svg/MinusIconSVG.js +0 -24
- package/dist/src/app/assets/svg/PlusIconSVG.js +0 -24
- package/dist/src/app/assets/svg/SearchIconSVG.js +0 -37
- package/dist/src/app/assets/svg/TrashIconSVG.js +0 -24
- package/dist/src/app/providers/StoreProvider.js +0 -7
- package/dist/src/app/store/rootReducer.js +0 -12
- package/dist/src/app/store/store.js +0 -14
- package/dist/src/features/Cart/lib/CartCervices.js +0 -8
- package/dist/src/features/Cart/model/cartSlice.js +0 -58
- package/dist/src/features/Cart/model/selectors.js +0 -18
- package/dist/src/features/Cart/ui/CartHeader/CartHeader.js +0 -53
- package/dist/src/features/Cart/ui/CartList/CartList.js +0 -29
- package/dist/src/features/Cart/ui/CartListItem/CartListItem.js +0 -41
- package/dist/src/features/Cart/ui/CartPrice/CartPrice.js +0 -23
- package/dist/src/features/Cart/ui/CartWrapper/CartWrapper.js +0 -38
- package/dist/src/features/Cart/ui/Counter/Counter.js +0 -46
- package/dist/src/features/DataAdapter/lib/DataAdapterServices.js +0 -102
- package/dist/src/features/DataAdapter/utils/types.js +0 -8
- package/dist/src/features/MultiProduct/lib/MultiProductCartServices.js +0 -34
- package/dist/src/features/MultiProduct/model/API/api.js +0 -18
- package/dist/src/features/MultiProduct/model/multiProductCartSlice.js +0 -83
- package/dist/src/features/MultiProduct/model/selectors.js +0 -7
- package/dist/src/features/MultiProduct/ui/CartSelectedProductList/CartSelectedProductList.js +0 -21
- package/dist/src/features/MultiProduct/ui/CustomModal/CustomModal.js +0 -28
- package/dist/src/features/MultiProduct/ui/FiltersSelectedProductItem/FiltersSelectedProductItem.js +0 -27
- package/dist/src/features/MultiProduct/ui/MultiProductCartHeader/MultiProductCartHeader.js +0 -60
- package/dist/src/features/MultiProduct/ui/MultiProductItemCart/MultiProductItemCart.js +0 -71
- package/dist/src/features/MultiProduct/ui/MultiProductWrapper/MultiProductWrapper.js +0 -19
- package/dist/src/features/MultiProduct/ui/ProductList/ProductList.js +0 -138
- package/dist/src/features/MultiProduct/ui/ProductListItem/ProductListItem.js +0 -51
- package/dist/src/features/MultiProduct/ui/SelectedProductItem/SelectedProductItem.js +0 -55
- package/dist/src/features/MultiProduct/ui/SwatchContentContainer/SwatchContentContainer.js +0 -46
- package/dist/src/features/MultiProduct/utils/constants.js +0 -16
- package/dist/src/features/MultiProduct/utils/randomList.js +0 -41
- package/dist/src/features/swatches/lib/AttributeHelper.js +0 -21
- package/dist/src/features/swatches/lib/SwatchesServices.js +0 -54
- package/dist/src/features/swatches/model/selectors.js +0 -12
- package/dist/src/features/swatches/model/swatchesSlice.js +0 -108
- package/dist/src/features/swatches/model/thunks.js +0 -22
- package/dist/src/features/swatches/model/types.js +0 -6
- package/dist/src/features/swatches/ui/Filters/ColorsFilter.js +0 -45
- package/dist/src/features/swatches/ui/Filters/LooksFilter.js +0 -45
- package/dist/src/features/swatches/ui/Filters/MaterialsFilter.js +0 -47
- package/dist/src/features/swatches/ui/Filters/index.js +0 -12
- package/dist/src/features/swatches/ui/HexGridZoom/HexGridZoom.js +0 -50
- package/dist/src/features/swatches/ui/ImageGridZoom/ImageGridZoom.js +0 -45
- package/dist/src/features/swatches/ui/MaterialList/index.js +0 -39
- package/dist/src/features/swatches/ui/MaterialListItem/MaterialListItem.js +0 -51
- package/dist/src/features/swatches/ui/ProductElement/index.js +0 -65
- package/dist/src/features/swatches/ui/SwatchWrapper/SwatchWrapper.js +0 -62
- package/dist/src/features/swatches/ui/Swatches.js +0 -51
- package/dist/src/features/swatches/ui/SwatchesList/SwatchesList.js +0 -67
- package/dist/src/features/swatches/utils/constants.js +0 -8
- package/dist/src/shared/constants/props.js +0 -13337
- package/dist/src/shared/constants/selectedMaterials.js +0 -4
- package/dist/src/shared/types/activeTab.js +0 -7
- package/dist/src/shared/ui/Checkbox/Checkbox.js +0 -31
- package/dist/src/shared/ui/CustomButton/CustomButton.js +0 -16
- package/dist/src/shared/ui/CustomSidebar/CustomSidebar.js +0 -59
- package/dist/src/shared/ui/CustomSidebar/CustomSidebar.module.scss.js +0 -13
- package/dist/src/shared/ui/Dialog/Dialog.js +0 -81
- package/dist/src/shared/ui/Label/Label.js +0 -27
- package/dist/src/shared/ui/Markdown/MDWithAccordion.js +0 -36
- package/dist/src/shared/ui/Markdown/MDWithAccordion.module.scss.js +0 -9
- package/dist/src/shared/ui/MaterialItem/MaterialItem.js +0 -36
- package/dist/src/shared/ui/MultiSelect/MultiSelect.js +0 -150
- package/dist/src/shared/ui/PopoverTooltip/InfoIcon.js +0 -35
- package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.js +0 -37
- package/dist/src/shared/ui/PopoverTooltip/PopoverTooltip.module.scss.js +0 -4
- package/dist/src/shared/ui/Slider/Slider.js +0 -117
- package/dist/src/shared/utils/cn.js +0 -8
- package/dist/src/shared/utils/uniqueList.js +0 -4
|
@@ -1,566 +0,0 @@
|
|
|
1
|
-
import { number as n, commaOrSpaceSeparated as l, spaceSeparated as o, commaSeparated as e, boolean as t } from "./util/types.js";
|
|
2
|
-
import { create as i } from "./util/create.js";
|
|
3
|
-
import { caseSensitiveTransform as r } from "./util/case-sensitive-transform.js";
|
|
4
|
-
const g = i({
|
|
5
|
-
space: "svg",
|
|
6
|
-
attributes: {
|
|
7
|
-
accentHeight: "accent-height",
|
|
8
|
-
alignmentBaseline: "alignment-baseline",
|
|
9
|
-
arabicForm: "arabic-form",
|
|
10
|
-
baselineShift: "baseline-shift",
|
|
11
|
-
capHeight: "cap-height",
|
|
12
|
-
className: "class",
|
|
13
|
-
clipPath: "clip-path",
|
|
14
|
-
clipRule: "clip-rule",
|
|
15
|
-
colorInterpolation: "color-interpolation",
|
|
16
|
-
colorInterpolationFilters: "color-interpolation-filters",
|
|
17
|
-
colorProfile: "color-profile",
|
|
18
|
-
colorRendering: "color-rendering",
|
|
19
|
-
crossOrigin: "crossorigin",
|
|
20
|
-
dataType: "datatype",
|
|
21
|
-
dominantBaseline: "dominant-baseline",
|
|
22
|
-
enableBackground: "enable-background",
|
|
23
|
-
fillOpacity: "fill-opacity",
|
|
24
|
-
fillRule: "fill-rule",
|
|
25
|
-
floodColor: "flood-color",
|
|
26
|
-
floodOpacity: "flood-opacity",
|
|
27
|
-
fontFamily: "font-family",
|
|
28
|
-
fontSize: "font-size",
|
|
29
|
-
fontSizeAdjust: "font-size-adjust",
|
|
30
|
-
fontStretch: "font-stretch",
|
|
31
|
-
fontStyle: "font-style",
|
|
32
|
-
fontVariant: "font-variant",
|
|
33
|
-
fontWeight: "font-weight",
|
|
34
|
-
glyphName: "glyph-name",
|
|
35
|
-
glyphOrientationHorizontal: "glyph-orientation-horizontal",
|
|
36
|
-
glyphOrientationVertical: "glyph-orientation-vertical",
|
|
37
|
-
hrefLang: "hreflang",
|
|
38
|
-
horizAdvX: "horiz-adv-x",
|
|
39
|
-
horizOriginX: "horiz-origin-x",
|
|
40
|
-
horizOriginY: "horiz-origin-y",
|
|
41
|
-
imageRendering: "image-rendering",
|
|
42
|
-
letterSpacing: "letter-spacing",
|
|
43
|
-
lightingColor: "lighting-color",
|
|
44
|
-
markerEnd: "marker-end",
|
|
45
|
-
markerMid: "marker-mid",
|
|
46
|
-
markerStart: "marker-start",
|
|
47
|
-
navDown: "nav-down",
|
|
48
|
-
navDownLeft: "nav-down-left",
|
|
49
|
-
navDownRight: "nav-down-right",
|
|
50
|
-
navLeft: "nav-left",
|
|
51
|
-
navNext: "nav-next",
|
|
52
|
-
navPrev: "nav-prev",
|
|
53
|
-
navRight: "nav-right",
|
|
54
|
-
navUp: "nav-up",
|
|
55
|
-
navUpLeft: "nav-up-left",
|
|
56
|
-
navUpRight: "nav-up-right",
|
|
57
|
-
onAbort: "onabort",
|
|
58
|
-
onActivate: "onactivate",
|
|
59
|
-
onAfterPrint: "onafterprint",
|
|
60
|
-
onBeforePrint: "onbeforeprint",
|
|
61
|
-
onBegin: "onbegin",
|
|
62
|
-
onCancel: "oncancel",
|
|
63
|
-
onCanPlay: "oncanplay",
|
|
64
|
-
onCanPlayThrough: "oncanplaythrough",
|
|
65
|
-
onChange: "onchange",
|
|
66
|
-
onClick: "onclick",
|
|
67
|
-
onClose: "onclose",
|
|
68
|
-
onCopy: "oncopy",
|
|
69
|
-
onCueChange: "oncuechange",
|
|
70
|
-
onCut: "oncut",
|
|
71
|
-
onDblClick: "ondblclick",
|
|
72
|
-
onDrag: "ondrag",
|
|
73
|
-
onDragEnd: "ondragend",
|
|
74
|
-
onDragEnter: "ondragenter",
|
|
75
|
-
onDragExit: "ondragexit",
|
|
76
|
-
onDragLeave: "ondragleave",
|
|
77
|
-
onDragOver: "ondragover",
|
|
78
|
-
onDragStart: "ondragstart",
|
|
79
|
-
onDrop: "ondrop",
|
|
80
|
-
onDurationChange: "ondurationchange",
|
|
81
|
-
onEmptied: "onemptied",
|
|
82
|
-
onEnd: "onend",
|
|
83
|
-
onEnded: "onended",
|
|
84
|
-
onError: "onerror",
|
|
85
|
-
onFocus: "onfocus",
|
|
86
|
-
onFocusIn: "onfocusin",
|
|
87
|
-
onFocusOut: "onfocusout",
|
|
88
|
-
onHashChange: "onhashchange",
|
|
89
|
-
onInput: "oninput",
|
|
90
|
-
onInvalid: "oninvalid",
|
|
91
|
-
onKeyDown: "onkeydown",
|
|
92
|
-
onKeyPress: "onkeypress",
|
|
93
|
-
onKeyUp: "onkeyup",
|
|
94
|
-
onLoad: "onload",
|
|
95
|
-
onLoadedData: "onloadeddata",
|
|
96
|
-
onLoadedMetadata: "onloadedmetadata",
|
|
97
|
-
onLoadStart: "onloadstart",
|
|
98
|
-
onMessage: "onmessage",
|
|
99
|
-
onMouseDown: "onmousedown",
|
|
100
|
-
onMouseEnter: "onmouseenter",
|
|
101
|
-
onMouseLeave: "onmouseleave",
|
|
102
|
-
onMouseMove: "onmousemove",
|
|
103
|
-
onMouseOut: "onmouseout",
|
|
104
|
-
onMouseOver: "onmouseover",
|
|
105
|
-
onMouseUp: "onmouseup",
|
|
106
|
-
onMouseWheel: "onmousewheel",
|
|
107
|
-
onOffline: "onoffline",
|
|
108
|
-
onOnline: "ononline",
|
|
109
|
-
onPageHide: "onpagehide",
|
|
110
|
-
onPageShow: "onpageshow",
|
|
111
|
-
onPaste: "onpaste",
|
|
112
|
-
onPause: "onpause",
|
|
113
|
-
onPlay: "onplay",
|
|
114
|
-
onPlaying: "onplaying",
|
|
115
|
-
onPopState: "onpopstate",
|
|
116
|
-
onProgress: "onprogress",
|
|
117
|
-
onRateChange: "onratechange",
|
|
118
|
-
onRepeat: "onrepeat",
|
|
119
|
-
onReset: "onreset",
|
|
120
|
-
onResize: "onresize",
|
|
121
|
-
onScroll: "onscroll",
|
|
122
|
-
onSeeked: "onseeked",
|
|
123
|
-
onSeeking: "onseeking",
|
|
124
|
-
onSelect: "onselect",
|
|
125
|
-
onShow: "onshow",
|
|
126
|
-
onStalled: "onstalled",
|
|
127
|
-
onStorage: "onstorage",
|
|
128
|
-
onSubmit: "onsubmit",
|
|
129
|
-
onSuspend: "onsuspend",
|
|
130
|
-
onTimeUpdate: "ontimeupdate",
|
|
131
|
-
onToggle: "ontoggle",
|
|
132
|
-
onUnload: "onunload",
|
|
133
|
-
onVolumeChange: "onvolumechange",
|
|
134
|
-
onWaiting: "onwaiting",
|
|
135
|
-
onZoom: "onzoom",
|
|
136
|
-
overlinePosition: "overline-position",
|
|
137
|
-
overlineThickness: "overline-thickness",
|
|
138
|
-
paintOrder: "paint-order",
|
|
139
|
-
panose1: "panose-1",
|
|
140
|
-
pointerEvents: "pointer-events",
|
|
141
|
-
referrerPolicy: "referrerpolicy",
|
|
142
|
-
renderingIntent: "rendering-intent",
|
|
143
|
-
shapeRendering: "shape-rendering",
|
|
144
|
-
stopColor: "stop-color",
|
|
145
|
-
stopOpacity: "stop-opacity",
|
|
146
|
-
strikethroughPosition: "strikethrough-position",
|
|
147
|
-
strikethroughThickness: "strikethrough-thickness",
|
|
148
|
-
strokeDashArray: "stroke-dasharray",
|
|
149
|
-
strokeDashOffset: "stroke-dashoffset",
|
|
150
|
-
strokeLineCap: "stroke-linecap",
|
|
151
|
-
strokeLineJoin: "stroke-linejoin",
|
|
152
|
-
strokeMiterLimit: "stroke-miterlimit",
|
|
153
|
-
strokeOpacity: "stroke-opacity",
|
|
154
|
-
strokeWidth: "stroke-width",
|
|
155
|
-
tabIndex: "tabindex",
|
|
156
|
-
textAnchor: "text-anchor",
|
|
157
|
-
textDecoration: "text-decoration",
|
|
158
|
-
textRendering: "text-rendering",
|
|
159
|
-
transformOrigin: "transform-origin",
|
|
160
|
-
typeOf: "typeof",
|
|
161
|
-
underlinePosition: "underline-position",
|
|
162
|
-
underlineThickness: "underline-thickness",
|
|
163
|
-
unicodeBidi: "unicode-bidi",
|
|
164
|
-
unicodeRange: "unicode-range",
|
|
165
|
-
unitsPerEm: "units-per-em",
|
|
166
|
-
vAlphabetic: "v-alphabetic",
|
|
167
|
-
vHanging: "v-hanging",
|
|
168
|
-
vIdeographic: "v-ideographic",
|
|
169
|
-
vMathematical: "v-mathematical",
|
|
170
|
-
vectorEffect: "vector-effect",
|
|
171
|
-
vertAdvY: "vert-adv-y",
|
|
172
|
-
vertOriginX: "vert-origin-x",
|
|
173
|
-
vertOriginY: "vert-origin-y",
|
|
174
|
-
wordSpacing: "word-spacing",
|
|
175
|
-
writingMode: "writing-mode",
|
|
176
|
-
xHeight: "x-height",
|
|
177
|
-
// These were camelcased in Tiny. Now lowercased in SVG 2
|
|
178
|
-
playbackOrder: "playbackorder",
|
|
179
|
-
timelineBegin: "timelinebegin"
|
|
180
|
-
},
|
|
181
|
-
transform: r,
|
|
182
|
-
properties: {
|
|
183
|
-
about: l,
|
|
184
|
-
accentHeight: n,
|
|
185
|
-
accumulate: null,
|
|
186
|
-
additive: null,
|
|
187
|
-
alignmentBaseline: null,
|
|
188
|
-
alphabetic: n,
|
|
189
|
-
amplitude: n,
|
|
190
|
-
arabicForm: null,
|
|
191
|
-
ascent: n,
|
|
192
|
-
attributeName: null,
|
|
193
|
-
attributeType: null,
|
|
194
|
-
azimuth: n,
|
|
195
|
-
bandwidth: null,
|
|
196
|
-
baselineShift: null,
|
|
197
|
-
baseFrequency: null,
|
|
198
|
-
baseProfile: null,
|
|
199
|
-
bbox: null,
|
|
200
|
-
begin: null,
|
|
201
|
-
bias: n,
|
|
202
|
-
by: null,
|
|
203
|
-
calcMode: null,
|
|
204
|
-
capHeight: n,
|
|
205
|
-
className: o,
|
|
206
|
-
clip: null,
|
|
207
|
-
clipPath: null,
|
|
208
|
-
clipPathUnits: null,
|
|
209
|
-
clipRule: null,
|
|
210
|
-
color: null,
|
|
211
|
-
colorInterpolation: null,
|
|
212
|
-
colorInterpolationFilters: null,
|
|
213
|
-
colorProfile: null,
|
|
214
|
-
colorRendering: null,
|
|
215
|
-
content: null,
|
|
216
|
-
contentScriptType: null,
|
|
217
|
-
contentStyleType: null,
|
|
218
|
-
crossOrigin: null,
|
|
219
|
-
cursor: null,
|
|
220
|
-
cx: null,
|
|
221
|
-
cy: null,
|
|
222
|
-
d: null,
|
|
223
|
-
dataType: null,
|
|
224
|
-
defaultAction: null,
|
|
225
|
-
descent: n,
|
|
226
|
-
diffuseConstant: n,
|
|
227
|
-
direction: null,
|
|
228
|
-
display: null,
|
|
229
|
-
dur: null,
|
|
230
|
-
divisor: n,
|
|
231
|
-
dominantBaseline: null,
|
|
232
|
-
download: t,
|
|
233
|
-
dx: null,
|
|
234
|
-
dy: null,
|
|
235
|
-
edgeMode: null,
|
|
236
|
-
editable: null,
|
|
237
|
-
elevation: n,
|
|
238
|
-
enableBackground: null,
|
|
239
|
-
end: null,
|
|
240
|
-
event: null,
|
|
241
|
-
exponent: n,
|
|
242
|
-
externalResourcesRequired: null,
|
|
243
|
-
fill: null,
|
|
244
|
-
fillOpacity: n,
|
|
245
|
-
fillRule: null,
|
|
246
|
-
filter: null,
|
|
247
|
-
filterRes: null,
|
|
248
|
-
filterUnits: null,
|
|
249
|
-
floodColor: null,
|
|
250
|
-
floodOpacity: null,
|
|
251
|
-
focusable: null,
|
|
252
|
-
focusHighlight: null,
|
|
253
|
-
fontFamily: null,
|
|
254
|
-
fontSize: null,
|
|
255
|
-
fontSizeAdjust: null,
|
|
256
|
-
fontStretch: null,
|
|
257
|
-
fontStyle: null,
|
|
258
|
-
fontVariant: null,
|
|
259
|
-
fontWeight: null,
|
|
260
|
-
format: null,
|
|
261
|
-
fr: null,
|
|
262
|
-
from: null,
|
|
263
|
-
fx: null,
|
|
264
|
-
fy: null,
|
|
265
|
-
g1: e,
|
|
266
|
-
g2: e,
|
|
267
|
-
glyphName: e,
|
|
268
|
-
glyphOrientationHorizontal: null,
|
|
269
|
-
glyphOrientationVertical: null,
|
|
270
|
-
glyphRef: null,
|
|
271
|
-
gradientTransform: null,
|
|
272
|
-
gradientUnits: null,
|
|
273
|
-
handler: null,
|
|
274
|
-
hanging: n,
|
|
275
|
-
hatchContentUnits: null,
|
|
276
|
-
hatchUnits: null,
|
|
277
|
-
height: null,
|
|
278
|
-
href: null,
|
|
279
|
-
hrefLang: null,
|
|
280
|
-
horizAdvX: n,
|
|
281
|
-
horizOriginX: n,
|
|
282
|
-
horizOriginY: n,
|
|
283
|
-
id: null,
|
|
284
|
-
ideographic: n,
|
|
285
|
-
imageRendering: null,
|
|
286
|
-
initialVisibility: null,
|
|
287
|
-
in: null,
|
|
288
|
-
in2: null,
|
|
289
|
-
intercept: n,
|
|
290
|
-
k: n,
|
|
291
|
-
k1: n,
|
|
292
|
-
k2: n,
|
|
293
|
-
k3: n,
|
|
294
|
-
k4: n,
|
|
295
|
-
kernelMatrix: l,
|
|
296
|
-
kernelUnitLength: null,
|
|
297
|
-
keyPoints: null,
|
|
298
|
-
// SEMI_COLON_SEPARATED
|
|
299
|
-
keySplines: null,
|
|
300
|
-
// SEMI_COLON_SEPARATED
|
|
301
|
-
keyTimes: null,
|
|
302
|
-
// SEMI_COLON_SEPARATED
|
|
303
|
-
kerning: null,
|
|
304
|
-
lang: null,
|
|
305
|
-
lengthAdjust: null,
|
|
306
|
-
letterSpacing: null,
|
|
307
|
-
lightingColor: null,
|
|
308
|
-
limitingConeAngle: n,
|
|
309
|
-
local: null,
|
|
310
|
-
markerEnd: null,
|
|
311
|
-
markerMid: null,
|
|
312
|
-
markerStart: null,
|
|
313
|
-
markerHeight: null,
|
|
314
|
-
markerUnits: null,
|
|
315
|
-
markerWidth: null,
|
|
316
|
-
mask: null,
|
|
317
|
-
maskContentUnits: null,
|
|
318
|
-
maskUnits: null,
|
|
319
|
-
mathematical: null,
|
|
320
|
-
max: null,
|
|
321
|
-
media: null,
|
|
322
|
-
mediaCharacterEncoding: null,
|
|
323
|
-
mediaContentEncodings: null,
|
|
324
|
-
mediaSize: n,
|
|
325
|
-
mediaTime: null,
|
|
326
|
-
method: null,
|
|
327
|
-
min: null,
|
|
328
|
-
mode: null,
|
|
329
|
-
name: null,
|
|
330
|
-
navDown: null,
|
|
331
|
-
navDownLeft: null,
|
|
332
|
-
navDownRight: null,
|
|
333
|
-
navLeft: null,
|
|
334
|
-
navNext: null,
|
|
335
|
-
navPrev: null,
|
|
336
|
-
navRight: null,
|
|
337
|
-
navUp: null,
|
|
338
|
-
navUpLeft: null,
|
|
339
|
-
navUpRight: null,
|
|
340
|
-
numOctaves: null,
|
|
341
|
-
observer: null,
|
|
342
|
-
offset: null,
|
|
343
|
-
onAbort: null,
|
|
344
|
-
onActivate: null,
|
|
345
|
-
onAfterPrint: null,
|
|
346
|
-
onBeforePrint: null,
|
|
347
|
-
onBegin: null,
|
|
348
|
-
onCancel: null,
|
|
349
|
-
onCanPlay: null,
|
|
350
|
-
onCanPlayThrough: null,
|
|
351
|
-
onChange: null,
|
|
352
|
-
onClick: null,
|
|
353
|
-
onClose: null,
|
|
354
|
-
onCopy: null,
|
|
355
|
-
onCueChange: null,
|
|
356
|
-
onCut: null,
|
|
357
|
-
onDblClick: null,
|
|
358
|
-
onDrag: null,
|
|
359
|
-
onDragEnd: null,
|
|
360
|
-
onDragEnter: null,
|
|
361
|
-
onDragExit: null,
|
|
362
|
-
onDragLeave: null,
|
|
363
|
-
onDragOver: null,
|
|
364
|
-
onDragStart: null,
|
|
365
|
-
onDrop: null,
|
|
366
|
-
onDurationChange: null,
|
|
367
|
-
onEmptied: null,
|
|
368
|
-
onEnd: null,
|
|
369
|
-
onEnded: null,
|
|
370
|
-
onError: null,
|
|
371
|
-
onFocus: null,
|
|
372
|
-
onFocusIn: null,
|
|
373
|
-
onFocusOut: null,
|
|
374
|
-
onHashChange: null,
|
|
375
|
-
onInput: null,
|
|
376
|
-
onInvalid: null,
|
|
377
|
-
onKeyDown: null,
|
|
378
|
-
onKeyPress: null,
|
|
379
|
-
onKeyUp: null,
|
|
380
|
-
onLoad: null,
|
|
381
|
-
onLoadedData: null,
|
|
382
|
-
onLoadedMetadata: null,
|
|
383
|
-
onLoadStart: null,
|
|
384
|
-
onMessage: null,
|
|
385
|
-
onMouseDown: null,
|
|
386
|
-
onMouseEnter: null,
|
|
387
|
-
onMouseLeave: null,
|
|
388
|
-
onMouseMove: null,
|
|
389
|
-
onMouseOut: null,
|
|
390
|
-
onMouseOver: null,
|
|
391
|
-
onMouseUp: null,
|
|
392
|
-
onMouseWheel: null,
|
|
393
|
-
onOffline: null,
|
|
394
|
-
onOnline: null,
|
|
395
|
-
onPageHide: null,
|
|
396
|
-
onPageShow: null,
|
|
397
|
-
onPaste: null,
|
|
398
|
-
onPause: null,
|
|
399
|
-
onPlay: null,
|
|
400
|
-
onPlaying: null,
|
|
401
|
-
onPopState: null,
|
|
402
|
-
onProgress: null,
|
|
403
|
-
onRateChange: null,
|
|
404
|
-
onRepeat: null,
|
|
405
|
-
onReset: null,
|
|
406
|
-
onResize: null,
|
|
407
|
-
onScroll: null,
|
|
408
|
-
onSeeked: null,
|
|
409
|
-
onSeeking: null,
|
|
410
|
-
onSelect: null,
|
|
411
|
-
onShow: null,
|
|
412
|
-
onStalled: null,
|
|
413
|
-
onStorage: null,
|
|
414
|
-
onSubmit: null,
|
|
415
|
-
onSuspend: null,
|
|
416
|
-
onTimeUpdate: null,
|
|
417
|
-
onToggle: null,
|
|
418
|
-
onUnload: null,
|
|
419
|
-
onVolumeChange: null,
|
|
420
|
-
onWaiting: null,
|
|
421
|
-
onZoom: null,
|
|
422
|
-
opacity: null,
|
|
423
|
-
operator: null,
|
|
424
|
-
order: null,
|
|
425
|
-
orient: null,
|
|
426
|
-
orientation: null,
|
|
427
|
-
origin: null,
|
|
428
|
-
overflow: null,
|
|
429
|
-
overlay: null,
|
|
430
|
-
overlinePosition: n,
|
|
431
|
-
overlineThickness: n,
|
|
432
|
-
paintOrder: null,
|
|
433
|
-
panose1: null,
|
|
434
|
-
path: null,
|
|
435
|
-
pathLength: n,
|
|
436
|
-
patternContentUnits: null,
|
|
437
|
-
patternTransform: null,
|
|
438
|
-
patternUnits: null,
|
|
439
|
-
phase: null,
|
|
440
|
-
ping: o,
|
|
441
|
-
pitch: null,
|
|
442
|
-
playbackOrder: null,
|
|
443
|
-
pointerEvents: null,
|
|
444
|
-
points: null,
|
|
445
|
-
pointsAtX: n,
|
|
446
|
-
pointsAtY: n,
|
|
447
|
-
pointsAtZ: n,
|
|
448
|
-
preserveAlpha: null,
|
|
449
|
-
preserveAspectRatio: null,
|
|
450
|
-
primitiveUnits: null,
|
|
451
|
-
propagate: null,
|
|
452
|
-
property: l,
|
|
453
|
-
r: null,
|
|
454
|
-
radius: null,
|
|
455
|
-
referrerPolicy: null,
|
|
456
|
-
refX: null,
|
|
457
|
-
refY: null,
|
|
458
|
-
rel: l,
|
|
459
|
-
rev: l,
|
|
460
|
-
renderingIntent: null,
|
|
461
|
-
repeatCount: null,
|
|
462
|
-
repeatDur: null,
|
|
463
|
-
requiredExtensions: l,
|
|
464
|
-
requiredFeatures: l,
|
|
465
|
-
requiredFonts: l,
|
|
466
|
-
requiredFormats: l,
|
|
467
|
-
resource: null,
|
|
468
|
-
restart: null,
|
|
469
|
-
result: null,
|
|
470
|
-
rotate: null,
|
|
471
|
-
rx: null,
|
|
472
|
-
ry: null,
|
|
473
|
-
scale: null,
|
|
474
|
-
seed: null,
|
|
475
|
-
shapeRendering: null,
|
|
476
|
-
side: null,
|
|
477
|
-
slope: null,
|
|
478
|
-
snapshotTime: null,
|
|
479
|
-
specularConstant: n,
|
|
480
|
-
specularExponent: n,
|
|
481
|
-
spreadMethod: null,
|
|
482
|
-
spacing: null,
|
|
483
|
-
startOffset: null,
|
|
484
|
-
stdDeviation: null,
|
|
485
|
-
stemh: null,
|
|
486
|
-
stemv: null,
|
|
487
|
-
stitchTiles: null,
|
|
488
|
-
stopColor: null,
|
|
489
|
-
stopOpacity: null,
|
|
490
|
-
strikethroughPosition: n,
|
|
491
|
-
strikethroughThickness: n,
|
|
492
|
-
string: null,
|
|
493
|
-
stroke: null,
|
|
494
|
-
strokeDashArray: l,
|
|
495
|
-
strokeDashOffset: null,
|
|
496
|
-
strokeLineCap: null,
|
|
497
|
-
strokeLineJoin: null,
|
|
498
|
-
strokeMiterLimit: n,
|
|
499
|
-
strokeOpacity: n,
|
|
500
|
-
strokeWidth: null,
|
|
501
|
-
style: null,
|
|
502
|
-
surfaceScale: n,
|
|
503
|
-
syncBehavior: null,
|
|
504
|
-
syncBehaviorDefault: null,
|
|
505
|
-
syncMaster: null,
|
|
506
|
-
syncTolerance: null,
|
|
507
|
-
syncToleranceDefault: null,
|
|
508
|
-
systemLanguage: l,
|
|
509
|
-
tabIndex: n,
|
|
510
|
-
tableValues: null,
|
|
511
|
-
target: null,
|
|
512
|
-
targetX: n,
|
|
513
|
-
targetY: n,
|
|
514
|
-
textAnchor: null,
|
|
515
|
-
textDecoration: null,
|
|
516
|
-
textRendering: null,
|
|
517
|
-
textLength: null,
|
|
518
|
-
timelineBegin: null,
|
|
519
|
-
title: null,
|
|
520
|
-
transformBehavior: null,
|
|
521
|
-
type: null,
|
|
522
|
-
typeOf: l,
|
|
523
|
-
to: null,
|
|
524
|
-
transform: null,
|
|
525
|
-
transformOrigin: null,
|
|
526
|
-
u1: null,
|
|
527
|
-
u2: null,
|
|
528
|
-
underlinePosition: n,
|
|
529
|
-
underlineThickness: n,
|
|
530
|
-
unicode: null,
|
|
531
|
-
unicodeBidi: null,
|
|
532
|
-
unicodeRange: null,
|
|
533
|
-
unitsPerEm: n,
|
|
534
|
-
values: null,
|
|
535
|
-
vAlphabetic: n,
|
|
536
|
-
vMathematical: n,
|
|
537
|
-
vectorEffect: null,
|
|
538
|
-
vHanging: n,
|
|
539
|
-
vIdeographic: n,
|
|
540
|
-
version: null,
|
|
541
|
-
vertAdvY: n,
|
|
542
|
-
vertOriginX: n,
|
|
543
|
-
vertOriginY: n,
|
|
544
|
-
viewBox: null,
|
|
545
|
-
viewTarget: null,
|
|
546
|
-
visibility: null,
|
|
547
|
-
width: null,
|
|
548
|
-
widths: null,
|
|
549
|
-
wordSpacing: null,
|
|
550
|
-
writingMode: null,
|
|
551
|
-
x: null,
|
|
552
|
-
x1: null,
|
|
553
|
-
x2: null,
|
|
554
|
-
xChannelSelector: null,
|
|
555
|
-
xHeight: n,
|
|
556
|
-
y: null,
|
|
557
|
-
y1: null,
|
|
558
|
-
y2: null,
|
|
559
|
-
yChannelSelector: null,
|
|
560
|
-
z: null,
|
|
561
|
-
zoomAndPan: null
|
|
562
|
-
}
|
|
563
|
-
});
|
|
564
|
-
export {
|
|
565
|
-
g as svg
|
|
566
|
-
};
|
package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/create.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { normalize as s } from "../normalize.js";
|
|
2
|
-
import { Schema as a } from "./schema.js";
|
|
3
|
-
import { DefinedInfo as c } from "./defined-info.js";
|
|
4
|
-
const u = {}.hasOwnProperty;
|
|
5
|
-
function w(e) {
|
|
6
|
-
const p = {}, t = {};
|
|
7
|
-
let r;
|
|
8
|
-
for (r in e.properties)
|
|
9
|
-
if (u.call(e.properties, r)) {
|
|
10
|
-
const m = e.properties[r], o = new c(
|
|
11
|
-
r,
|
|
12
|
-
e.transform(e.attributes || {}, r),
|
|
13
|
-
m,
|
|
14
|
-
e.space
|
|
15
|
-
);
|
|
16
|
-
e.mustUseProperty && e.mustUseProperty.includes(r) && (o.mustUseProperty = !0), p[r] = o, t[s(r)] = r, t[s(o.attribute)] = r;
|
|
17
|
-
}
|
|
18
|
-
return new a(p, t, e.space);
|
|
19
|
-
}
|
|
20
|
-
export {
|
|
21
|
-
w as create
|
|
22
|
-
};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Info as h } from "./info.js";
|
|
2
|
-
import * as s from "./types.js";
|
|
3
|
-
const n = Object.keys(s);
|
|
4
|
-
class d extends h {
|
|
5
|
-
/**
|
|
6
|
-
* @constructor
|
|
7
|
-
* @param {string} property
|
|
8
|
-
* @param {string} attribute
|
|
9
|
-
* @param {number|null} [mask]
|
|
10
|
-
* @param {string} [space]
|
|
11
|
-
*/
|
|
12
|
-
constructor(t, e, r, p) {
|
|
13
|
-
let o = -1;
|
|
14
|
-
if (super(t, e), f(this, "space", p), typeof r == "number")
|
|
15
|
-
for (; ++o < n.length; ) {
|
|
16
|
-
const i = n[o];
|
|
17
|
-
f(this, n[o], (r & s[i]) === s[i]);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
d.prototype.defined = !0;
|
|
22
|
-
function f(c, t, e) {
|
|
23
|
-
e && (c[t] = e);
|
|
24
|
-
}
|
|
25
|
-
export {
|
|
26
|
-
d as DefinedInfo
|
|
27
|
-
};
|
package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/info.js
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
class e {
|
|
2
|
-
/**
|
|
3
|
-
* @constructor
|
|
4
|
-
* @param {string} property
|
|
5
|
-
* @param {string} attribute
|
|
6
|
-
*/
|
|
7
|
-
constructor(o, t) {
|
|
8
|
-
this.property = o, this.attribute = t;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
e.prototype.space = null;
|
|
12
|
-
e.prototype.boolean = !1;
|
|
13
|
-
e.prototype.booleanish = !1;
|
|
14
|
-
e.prototype.overloadedBoolean = !1;
|
|
15
|
-
e.prototype.number = !1;
|
|
16
|
-
e.prototype.commaSeparated = !1;
|
|
17
|
-
e.prototype.spaceSeparated = !1;
|
|
18
|
-
e.prototype.commaOrSpaceSeparated = !1;
|
|
19
|
-
e.prototype.mustUseProperty = !1;
|
|
20
|
-
e.prototype.defined = !1;
|
|
21
|
-
export {
|
|
22
|
-
e as Info
|
|
23
|
-
};
|
package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/schema.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
class t {
|
|
2
|
-
/**
|
|
3
|
-
* @constructor
|
|
4
|
-
* @param {Properties} property
|
|
5
|
-
* @param {Normal} normal
|
|
6
|
-
* @param {string} [space]
|
|
7
|
-
*/
|
|
8
|
-
constructor(p, r, o) {
|
|
9
|
-
this.property = p, this.normal = r, o && (this.space = o);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
t.prototype.property = {};
|
|
13
|
-
t.prototype.normal = {};
|
|
14
|
-
t.prototype.space = null;
|
|
15
|
-
export {
|
|
16
|
-
t as Schema
|
|
17
|
-
};
|
package/dist/node_modules/hast-util-to-parse5/node_modules/property-information/lib/util/types.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
let o = 0;
|
|
2
|
-
const n = e(), t = e(), a = e(), c = e(), r = e(), s = e(), p = e();
|
|
3
|
-
function e() {
|
|
4
|
-
return 2 ** ++o;
|
|
5
|
-
}
|
|
6
|
-
export {
|
|
7
|
-
n as boolean,
|
|
8
|
-
t as booleanish,
|
|
9
|
-
p as commaOrSpaceSeparated,
|
|
10
|
-
s as commaSeparated,
|
|
11
|
-
c as number,
|
|
12
|
-
a as overloadedBoolean,
|
|
13
|
-
r as spaceSeparated
|
|
14
|
-
};
|