@prokodo/ui 0.0.37 → 0.0.39
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 +152 -57
- package/dist/_virtual/default.js +4 -0
- package/dist/_virtual/default2.js +4 -0
- package/dist/_virtual/index.js +3 -5
- package/dist/_virtual/index2.js +2 -2
- package/dist/_virtual/index3.js +2 -2
- package/dist/_virtual/parser.js +4 -0
- package/dist/components/accordion/Accordion.client.js +30 -0
- package/dist/components/accordion/Accordion.js +8 -118
- package/dist/components/accordion/Accordion.lazy.js +15 -0
- package/dist/components/accordion/Accordion.server.js +18 -0
- package/dist/components/accordion/Accordion.view.js +102 -0
- package/dist/components/animated/Animated.client.js +49 -0
- package/dist/components/animated/Animated.js +8 -69
- package/dist/components/animated/Animated.lazy.js +17 -0
- package/dist/components/animated/Animated.server.js +12 -0
- package/dist/components/animated/Animated.view.js +35 -0
- package/dist/components/animatedText/AnimatedText.client.js +41 -0
- package/dist/components/animatedText/AnimatedText.js +8 -35
- package/dist/components/animatedText/AnimatedText.lazy.js +17 -0
- package/dist/components/animatedText/AnimatedText.server.js +12 -0
- package/dist/components/animatedText/AnimatedText.view.js +8 -0
- package/dist/components/avatar/Avatar.client.js +12 -0
- package/dist/components/avatar/Avatar.js +7 -81
- package/dist/components/avatar/Avatar.lazy.js +12 -0
- package/dist/components/avatar/Avatar.server.js +11 -0
- package/dist/components/avatar/Avatar.view.js +55 -0
- package/dist/components/base-link/BaseLink.client.js +43 -0
- package/dist/components/base-link/BaseLink.js +9 -37
- package/dist/components/base-link/BaseLink.lazy.js +15 -0
- package/dist/components/base-link/BaseLink.server.js +11 -0
- package/dist/components/base-link/BaseLink.view.js +69 -0
- package/dist/components/button/Button.client.js +5 -2
- package/dist/components/button/Button.module.scss.js +1 -0
- package/dist/components/button/Button.view.js +10 -7
- package/dist/components/calendly/Calendly.client.js +106 -0
- package/dist/components/calendly/Calendly.js +8 -116
- package/dist/components/calendly/Calendly.lazy.js +16 -0
- package/dist/components/calendly/Calendly.server.js +11 -0
- package/dist/components/calendly/Calendly.view.js +25 -0
- package/dist/components/card/Card.client.js +49 -0
- package/dist/components/card/Card.js +11 -201
- package/dist/components/card/Card.lazy.js +18 -0
- package/dist/components/card/Card.module.scss.js +0 -7
- package/dist/components/card/Card.server.js +11 -0
- package/dist/components/card/Card.view.js +111 -0
- package/dist/components/carousel/Carousel.client.js +217 -0
- package/dist/components/carousel/Carousel.js +8 -291
- package/dist/components/carousel/Carousel.lazy.js +16 -0
- package/dist/components/carousel/Carousel.server.js +11 -0
- package/dist/components/carousel/Carousel.view.js +58 -0
- package/dist/components/chip/Chip.client.js +45 -0
- package/dist/components/chip/Chip.js +7 -64
- package/dist/components/chip/Chip.lazy.js +12 -0
- package/dist/components/chip/Chip.module.scss.js +11 -1
- package/dist/components/chip/Chip.server.js +11 -0
- package/dist/components/chip/Chip.view.js +57 -0
- package/dist/components/datePicker/DatePicker.client.js +99 -0
- package/dist/components/datePicker/DatePicker.js +7 -124
- package/dist/components/datePicker/DatePicker.lazy.js +12 -0
- package/dist/components/datePicker/DatePicker.server.js +8 -0
- package/dist/components/datePicker/DatePicker.view.js +42 -0
- package/dist/components/dialog/Dialog.client.js +91 -0
- package/dist/components/dialog/Dialog.js +9 -164
- package/dist/components/dialog/Dialog.lazy.js +15 -0
- package/dist/components/dialog/Dialog.module.scss.js +3 -2
- package/dist/components/dialog/Dialog.server.js +11 -0
- package/dist/components/dialog/Dialog.view.js +118 -0
- package/dist/components/drawer/Drawer.client.js +75 -0
- package/dist/components/drawer/Drawer.js +8 -103
- package/dist/components/drawer/Drawer.lazy.js +15 -0
- package/dist/components/drawer/Drawer.module.scss.js +20 -13
- package/dist/components/drawer/Drawer.server.js +12 -0
- package/dist/components/drawer/Drawer.view.js +75 -0
- package/dist/components/drawer/index.js +2 -4
- package/dist/components/form/Form.client.js +176 -0
- package/dist/components/form/Form.js +9 -288
- package/dist/components/form/Form.lazy.js +12 -0
- package/dist/components/form/Form.module.scss.js +2 -0
- package/dist/components/form/Form.server.js +30 -0
- package/dist/components/form/Form.view.js +106 -0
- package/dist/components/form/FormField.client.js +98 -0
- package/dist/components/form/FormField.js +7 -93
- package/dist/components/form/FormField.lazy.js +12 -0
- package/dist/components/form/FormField.server.js +81 -0
- package/dist/components/headline/{Headline.server.js → Headline.js} +25 -23
- package/dist/components/headline/index.js +2 -4
- package/dist/components/icon/Icon.js +30 -27
- package/dist/components/icon/Icon.module.scss.js +1 -0
- package/dist/components/image-text/ImageText.js +17 -33
- package/dist/components/image-text/ImageText.module.scss.js +0 -4
- package/dist/components/input/Input.client.js +105 -0
- package/dist/components/input/Input.js +7 -200
- package/dist/components/input/Input.lazy.js +12 -0
- package/dist/components/input/Input.module.scss.js +3 -6
- package/dist/components/input/Input.server.js +11 -0
- package/dist/components/input/Input.view.js +128 -0
- package/dist/components/input/InputValidation.js +2 -2
- package/dist/components/inputOTP/InputOTP.js +1 -14
- package/dist/components/link/Link.client.js +2 -0
- package/dist/components/link/Link.js +1 -1
- package/dist/components/link/Link.lazy.js +4 -1
- package/dist/components/link/Link.server.js +2 -0
- package/dist/components/link/Link.view.js +26 -13
- package/dist/components/list/List.js +126 -170
- package/dist/components/list/List.module.scss.js +3 -0
- package/dist/components/loading/Loading.js +4 -3
- package/dist/components/lottie/Lottie.js +3 -5
- package/dist/components/post-item/PostItem.js +2 -2
- package/dist/components/post-teaser/PostTeaser.js +1 -1
- package/dist/components/post-widget/PostWidget.js +1 -1
- package/dist/components/post-widget-carousel/PostWidgetCarousel.js +1 -1
- package/dist/components/quote/Quote.js +83 -77
- package/dist/components/rich-text/RichText.client.js +194 -0
- package/dist/components/rich-text/RichText.js +8 -152
- package/dist/components/rich-text/RichText.lazy.js +18 -0
- package/dist/components/rich-text/RichText.server.js +37 -0
- package/dist/components/select/Select.client.js +97 -0
- package/dist/components/select/Select.js +8 -215
- package/dist/components/select/Select.lazy.js +15 -0
- package/dist/components/select/Select.module.scss.js +14 -17
- package/dist/components/select/Select.server.js +11 -0
- package/dist/components/select/Select.view.js +159 -0
- package/dist/components/sidenav/SideNav.client.js +34 -0
- package/dist/components/sidenav/SideNav.js +14 -0
- package/dist/components/sidenav/SideNav.lazy.js +15 -0
- package/dist/components/sidenav/SideNav.module.scss.js +23 -0
- package/dist/components/sidenav/SideNav.server.js +11 -0
- package/dist/components/sidenav/SideNav.view.js +62 -0
- package/dist/components/sidenav/index.js +4 -0
- package/dist/components/slider/Slider.client.js +65 -0
- package/dist/components/slider/Slider.js +7 -108
- package/dist/components/slider/Slider.lazy.js +12 -0
- package/dist/components/slider/Slider.module.scss.js +4 -2
- package/dist/components/slider/Slider.server.js +23 -0
- package/dist/components/slider/Slider.view.js +130 -0
- package/dist/components/stepper/Stepper.client.js +132 -0
- package/dist/components/stepper/Stepper.js +7 -130
- package/dist/components/stepper/Stepper.lazy.js +12 -0
- package/dist/components/stepper/Stepper.module.scss.js +1 -0
- package/dist/components/stepper/Stepper.server.js +33 -0
- package/dist/components/stepper/Stepper.view.js +132 -0
- package/dist/components/switch/Switch.client.js +62 -0
- package/dist/components/switch/Switch.js +7 -103
- package/dist/components/switch/Switch.lazy.js +12 -0
- package/dist/components/switch/Switch.module.scss.js +3 -4
- package/dist/components/switch/Switch.server.js +26 -0
- package/dist/components/switch/Switch.view.js +101 -0
- package/dist/components/table/Table.js +62 -68
- package/dist/components/table/Table.module.scss.js +7 -14
- package/dist/components/table/TableCell.js +44 -0
- package/dist/components/table/TableCell.module.scss.js +14 -0
- package/dist/components/teaser/Teaser.js +78 -81
- package/dist/constants/project.js +1 -1
- package/dist/helpers/createIsland.js +28 -7
- package/dist/helpers/createLazyWrapper.js +34 -6
- package/dist/helpers/validations.js +1 -3
- package/dist/hooks/useHydrationReady.js +3 -3
- package/dist/index.js +3 -1
- package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/css.js +80 -0
- package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/default.js +370 -0
- package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/index.js +30 -0
- package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/parser.js +64 -0
- package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/util.js +48 -0
- package/dist/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/decode.js +390 -0
- package/dist/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/decode_codepoint.js +59 -0
- package/dist/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/dist/node_modules/.pnpm/entities@4.5.0/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/dist/node_modules/.pnpm/linkify-it@5.0.0/node_modules/linkify-it/index.js +373 -0
- package/dist/node_modules/.pnpm/linkify-it@5.0.0/node_modules/linkify-it/lib/re.js +50 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/common/html_blocks.js +67 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/common/html_re.js +18 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/common/utils.js +246 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/helpers/index.js +8 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/helpers/parse_link_destination.js +80 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/helpers/parse_link_label.js +39 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/helpers/parse_link_title.js +58 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/index.js +179 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/parser_block.js +90 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/parser_core.js +39 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/parser_inline.js +126 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/presets/commonmark.js +78 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/presets/default.js +40 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/presets/zero.js +59 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/renderer.js +168 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/ruler.js +146 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/blockquote.js +130 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/code.js +30 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/fence.js +73 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/heading.js +46 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/hr.js +39 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/html_block.js +65 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/lheading.js +66 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/list.js +232 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/paragraph.js +41 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/reference.js +181 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/state_block.js +162 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_block/table.js +197 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/block.js +18 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/inline.js +15 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/linkify.js +104 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/normalize.js +14 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/replacements.js +69 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/smartquotes.js +157 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/state_core.js +15 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/text_join.js +34 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/autolink.js +62 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/backticks.js +49 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/balance_pairs.js +69 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/emphasis.js +93 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/entity.js +47 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/escape.js +56 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/fragments_join.js +28 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/html_inline.js +46 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/image.js +118 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/link.js +113 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/linkify.js +41 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/newline.js +36 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/state_inline.js +77 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/strikethrough.js +102 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/text.js +51 -0
- package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/token.js +65 -0
- package/dist/node_modules/.pnpm/marked@15.0.12/node_modules/marked/lib/marked.esm.js +2169 -0
- package/dist/node_modules/.pnpm/mdurl@2.0.0/node_modules/mdurl/index.js +10 -0
- package/dist/node_modules/.pnpm/mdurl@2.0.0/node_modules/mdurl/lib/decode.js +87 -0
- package/dist/node_modules/.pnpm/mdurl@2.0.0/node_modules/mdurl/lib/encode.js +68 -0
- package/dist/node_modules/.pnpm/mdurl@2.0.0/node_modules/mdurl/lib/format.js +22 -0
- package/dist/node_modules/.pnpm/mdurl@2.0.0/node_modules/mdurl/lib/parse.js +186 -0
- package/dist/node_modules/.pnpm/punycode.js@2.3.1/node_modules/punycode.js/punycode.es6.js +246 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/categories/Cc/regex.js +4 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/categories/Cf/regex.js +4 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/categories/P/regex.js +4 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/categories/S/regex.js +4 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/categories/Z/regex.js +4 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/index.js +14 -0
- package/dist/node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro/properties/Any/regex.js +4 -0
- package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/default.js +319 -0
- package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/index.js +47 -0
- package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/parser.js +220 -0
- package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/util.js +47 -0
- package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/xss.js +179 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/components/accordion/Accordion.client.d.ts +3 -0
- package/dist/types/components/accordion/Accordion.d.ts +13 -3
- package/dist/types/components/accordion/Accordion.lazy.d.ts +14 -0
- package/dist/types/components/accordion/Accordion.model.d.ts +6 -2
- package/dist/types/components/accordion/Accordion.server.d.ts +3 -0
- package/dist/types/components/accordion/Accordion.view.d.ts +3 -0
- package/dist/types/components/animated/Animated.client.d.ts +3 -0
- package/dist/types/components/animated/Animated.d.ts +3 -2
- package/dist/types/components/animated/Animated.lazy.d.ts +5 -0
- package/dist/types/components/animated/Animated.model.d.ts +3 -0
- package/dist/types/components/animated/Animated.server.d.ts +3 -0
- package/dist/types/components/animated/Animated.view.d.ts +3 -0
- package/dist/types/components/animatedText/AnimatedText.client.d.ts +3 -0
- package/dist/types/components/animatedText/AnimatedText.d.ts +8 -3
- package/dist/types/components/animatedText/AnimatedText.lazy.d.ts +9 -0
- package/dist/types/components/animatedText/AnimatedText.model.d.ts +3 -0
- package/dist/types/components/animatedText/AnimatedText.server.d.ts +3 -0
- package/dist/types/components/animatedText/AnimatedText.view.d.ts +3 -0
- package/dist/types/components/avatar/Avatar.client.d.ts +3 -0
- package/dist/types/components/avatar/Avatar.d.ts +10 -3
- package/dist/types/components/avatar/Avatar.lazy.d.ts +11 -0
- package/dist/types/components/avatar/Avatar.model.d.ts +1 -0
- package/dist/types/components/avatar/Avatar.server.d.ts +3 -0
- package/dist/types/components/avatar/Avatar.view.d.ts +3 -0
- package/dist/types/components/base-link/BaseLink.client.d.ts +3 -0
- package/dist/types/components/base-link/BaseLink.d.ts +3 -2
- package/dist/types/components/base-link/BaseLink.lazy.d.ts +5 -0
- package/dist/types/components/base-link/BaseLink.server.d.ts +3 -0
- package/dist/types/components/base-link/BaseLink.view.d.ts +3 -0
- package/dist/types/components/button/Button.client.d.ts +9 -3
- package/dist/types/components/button/Button.model.d.ts +6 -3
- package/dist/types/components/button/Button.view.d.ts +2 -2
- package/dist/types/components/calendly/Calendly.client.d.ts +3 -0
- package/dist/types/components/calendly/Calendly.d.ts +13 -22
- package/dist/types/components/calendly/Calendly.lazy.d.ts +14 -0
- package/dist/types/components/calendly/Calendly.model.d.ts +4 -2
- package/dist/types/components/calendly/Calendly.server.d.ts +3 -0
- package/dist/types/components/calendly/Calendly.view.d.ts +3 -0
- package/dist/types/components/card/Card.client.d.ts +3 -0
- package/dist/types/components/card/Card.d.ts +3 -2
- package/dist/types/components/card/Card.lazy.d.ts +5 -0
- package/dist/types/components/card/Card.model.d.ts +6 -4
- package/dist/types/components/card/Card.server.d.ts +3 -0
- package/dist/types/components/card/Card.view.d.ts +11 -0
- package/dist/types/components/card/index.d.ts +1 -1
- package/dist/types/components/carousel/Carousel.client.d.ts +3 -0
- package/dist/types/components/carousel/Carousel.d.ts +18 -3
- package/dist/types/components/carousel/Carousel.lazy.d.ts +19 -0
- package/dist/types/components/carousel/Carousel.server.d.ts +3 -0
- package/dist/types/components/carousel/Carousel.view.d.ts +3 -0
- package/dist/types/components/chip/Chip.client.d.ts +3 -0
- package/dist/types/components/chip/Chip.d.ts +3 -2
- package/dist/types/components/chip/Chip.lazy.d.ts +5 -0
- package/dist/types/components/chip/Chip.model.d.ts +7 -4
- package/dist/types/components/chip/Chip.server.d.ts +3 -0
- package/dist/types/components/chip/Chip.view.d.ts +5 -0
- package/dist/types/components/datePicker/DatePicker.client.d.ts +4 -0
- package/dist/types/components/datePicker/DatePicker.d.ts +3 -2
- package/dist/types/components/datePicker/DatePicker.lazy.d.ts +5 -0
- package/dist/types/components/datePicker/DatePicker.model.d.ts +8 -3
- package/dist/types/components/datePicker/DatePicker.server.d.ts +4 -0
- package/dist/types/components/datePicker/DatePicker.view.d.ts +7 -0
- package/dist/types/components/dialog/Dialog.client.d.ts +3 -0
- package/dist/types/components/dialog/Dialog.d.ts +7 -3
- package/dist/types/components/dialog/Dialog.lazy.d.ts +8 -0
- package/dist/types/components/dialog/Dialog.model.d.ts +25 -15
- package/dist/types/components/dialog/Dialog.server.d.ts +4 -0
- package/dist/types/components/dialog/Dialog.view.d.ts +3 -0
- package/dist/types/components/drawer/Drawer.client.d.ts +3 -0
- package/dist/types/components/drawer/Drawer.d.ts +5 -5
- package/dist/types/components/drawer/Drawer.lazy.d.ts +5 -0
- package/dist/types/components/drawer/Drawer.model.d.ts +29 -8
- package/dist/types/components/drawer/Drawer.server.d.ts +3 -0
- package/dist/types/components/drawer/Drawer.view.d.ts +3 -0
- package/dist/types/components/drawer/index.d.ts +1 -1
- package/dist/types/components/form/Form.client.d.ts +2 -0
- package/dist/types/components/form/Form.d.ts +17 -3
- package/dist/types/components/form/Form.lazy.d.ts +18 -0
- package/dist/types/components/form/Form.model.d.ts +22 -5
- package/dist/types/components/form/Form.server.d.ts +4 -0
- package/dist/types/components/form/Form.view.d.ts +3 -0
- package/dist/types/components/form/FormField.client.d.ts +9 -0
- package/dist/types/components/form/FormField.d.ts +8 -9
- package/dist/types/components/form/FormField.lazy.d.ts +9 -0
- package/dist/types/components/form/FormField.server.d.ts +9 -0
- package/dist/types/components/form/index.d.ts +1 -1
- package/dist/types/components/headline/{Headline.server.d.ts → Headline.d.ts} +1 -1
- package/dist/types/components/headline/Headline.model.d.ts +7 -6
- package/dist/types/components/headline/index.d.ts +1 -2
- package/dist/types/components/image/Image.model.d.ts +5 -3
- package/dist/types/components/image/index.d.ts +1 -1
- package/dist/types/components/image-text/ImageText.d.ts +1 -1
- package/dist/types/components/image-text/ImageText.model.d.ts +5 -5
- package/dist/types/components/image-text/index.d.ts +1 -1
- package/dist/types/components/input/Input.client.d.ts +5 -0
- package/dist/types/components/input/Input.d.ts +3 -2
- package/dist/types/components/input/Input.lazy.d.ts +5 -0
- package/dist/types/components/input/Input.model.d.ts +21 -15
- package/dist/types/components/input/Input.server.d.ts +3 -0
- package/dist/types/components/input/Input.view.d.ts +3 -0
- package/dist/types/components/input/index.d.ts +1 -1
- package/dist/types/components/link/Link.client.d.ts +1 -1
- package/dist/types/components/link/Link.lazy.d.ts +1 -1
- package/dist/types/components/link/Link.model.d.ts +2 -1
- package/dist/types/components/link/Link.view.d.ts +2 -2
- package/dist/types/components/list/List.d.ts +5 -2
- package/dist/types/components/list/List.model.d.ts +3 -3
- package/dist/types/components/loading/Loading.d.ts +1 -1
- package/dist/types/components/lottie/Lottie.model.d.ts +1 -3
- package/dist/types/components/lottie/index.d.ts +1 -1
- package/dist/types/components/quote/Quote.d.ts +1 -1
- package/dist/types/components/rich-text/RichText.client.d.ts +6 -0
- package/dist/types/components/rich-text/RichText.d.ts +13 -3
- package/dist/types/components/rich-text/RichText.lazy.d.ts +14 -0
- package/dist/types/components/rich-text/RichText.model.d.ts +9 -4
- package/dist/types/components/rich-text/RichText.server.d.ts +3 -0
- package/dist/types/components/select/Select.client.d.ts +5 -0
- package/dist/types/components/select/Select.d.ts +3 -2
- package/dist/types/components/select/Select.lazy.d.ts +5 -0
- package/dist/types/components/select/Select.model.d.ts +35 -23
- package/dist/types/components/select/Select.server.d.ts +3 -0
- package/dist/types/components/select/Select.view.d.ts +3 -0
- package/dist/types/components/select/index.d.ts +1 -1
- package/dist/types/components/sidenav/SideNav.client.d.ts +3 -0
- package/dist/types/components/sidenav/SideNav.d.ts +3 -0
- package/dist/types/components/sidenav/SideNav.lazy.d.ts +5 -0
- package/dist/types/components/sidenav/SideNav.model.d.ts +24 -0
- package/dist/types/components/sidenav/SideNav.server.d.ts +3 -0
- package/dist/types/components/sidenav/SideNav.view.d.ts +3 -0
- package/dist/types/components/sidenav/index.d.ts +2 -0
- package/dist/types/components/slider/Slider.client.d.ts +4 -0
- package/dist/types/components/slider/Slider.d.ts +3 -2
- package/dist/types/components/slider/Slider.lazy.d.ts +5 -0
- package/dist/types/components/slider/Slider.model.d.ts +29 -6
- package/dist/types/components/slider/Slider.server.d.ts +3 -0
- package/dist/types/components/slider/Slider.view.d.ts +3 -0
- package/dist/types/components/stepper/Stepper.client.d.ts +3 -0
- package/dist/types/components/stepper/Stepper.d.ts +11 -3
- package/dist/types/components/stepper/Stepper.lazy.d.ts +12 -0
- package/dist/types/components/stepper/Stepper.model.d.ts +18 -3
- package/dist/types/components/stepper/Stepper.server.d.ts +3 -0
- package/dist/types/components/stepper/Stepper.view.d.ts +3 -0
- package/dist/types/components/switch/Switch.client.d.ts +4 -0
- package/dist/types/components/switch/Switch.d.ts +18 -3
- package/dist/types/components/switch/Switch.lazy.d.ts +19 -0
- package/dist/types/components/switch/Switch.model.d.ts +19 -10
- package/dist/types/components/switch/Switch.server.d.ts +3 -0
- package/dist/types/components/switch/Switch.view.d.ts +3 -0
- package/dist/types/components/table/Table.d.ts +1 -1
- package/dist/types/components/table/Table.model.d.ts +16 -14
- package/dist/types/components/table/TableCell.d.ts +10 -0
- package/dist/types/components/teaser/Teaser.d.ts +1 -1
- package/dist/types/components/teaser/Teaser.model.d.ts +1 -3
- package/dist/types/components/teaser/index.d.ts +1 -1
- package/dist/types/helpers/createLazyWrapper.d.ts +4 -1
- package/dist/types/hooks/useHydrationReady.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/types/colors.d.ts +1 -1
- package/dist/ui.css +2726 -2031
- package/package.json +20 -6
- package/dist/_virtual/_commonjsHelpers.js +0 -9
- package/dist/_virtual/react-is.development.js +0 -4
- package/dist/_virtual/react-is.production.min.js +0 -4
- package/dist/assets/images/card_background_primary_1.webp.js +0 -4
- package/dist/assets/images/card_background_primary_2.webp.js +0 -4
- package/dist/assets/images/card_background_primary_3.webp.js +0 -4
- package/dist/assets/images/card_background_primary_4.webp.js +0 -4
- package/dist/assets/images/card_background_secondary_1.webp.js +0 -4
- package/dist/assets/images/card_background_secondary_2.webp.js +0 -4
- package/dist/assets/images/card_background_secondary_3.webp.js +0 -4
- package/dist/assets/images/card_background_secondary_4.webp.js +0 -4
- package/dist/components/headline/Headline.client.js +0 -85
- package/dist/components/lottie/LottieAnimations.js +0 -35
- package/dist/node_modules/.pnpm/@floating-ui_core@1.7.0/node_modules/@floating-ui/core/dist/floating-ui.core.js +0 -456
- package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.0/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +0 -641
- package/dist/node_modules/.pnpm/@floating-ui_react-dom@2.1.2_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +0 -250
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +0 -189
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.9/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +0 -170
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/Option.js +0 -133
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Option/optionClasses.js +0 -13
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Portal/Portal.js +0 -85
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/Select.js +0 -315
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Select/selectClasses.js +0 -13
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/Slider.js +0 -459
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Slider/sliderClasses.js +0 -13
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/Switch.js +0 -173
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Switch/switchClasses.js +0 -13
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/Popup.js +0 -225
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/PopupContext.js +0 -8
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/Unstable_Popup/popupClasses.js +0 -13
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClass/index.js +0 -20
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/generateUtilityClasses/index.js +0 -14
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useButton/useButton.js +0 -166
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundItem.js +0 -32
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useCompound/useCompoundParent.js +0 -74
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/ListContext.js +0 -8
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listActions.types.js +0 -14
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/listReducer.js +0 -318
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useList.js +0 -211
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useList/useListItem.js +0 -81
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOption.js +0 -82
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useOption/useOptionContextStabilizer.js +0 -40
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/SelectProvider.js +0 -40
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/defaultOptionStringifier.js +0 -18
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/selectReducer.js +0 -74
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.js +0 -361
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSelect/useSelect.types.js +0 -7
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSlider/useSlider.js +0 -620
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useSwitch/useSwitch.js +0 -87
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/TransitionContext.js +0 -8
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/useTransition/useTransitionTrigger.js +0 -55
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/ClassNameConfigurator.js +0 -25
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/areArraysEqual.js +0 -9
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/combineHooksSlotProps.js +0 -19
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/isHostComponent.js +0 -9
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/resolveComponentProps.js +0 -12
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useControllableReducer.js +0 -101
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useRootElementName.js +0 -25
- package/dist/node_modules/.pnpm/@mui_base@5.0.0-beta.58_@types_react@19.1.0_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/@mui/base/utils/useTextNavigation.js +0 -28
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/HTMLElementType/HTMLElementType.js +0 -20
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/appendOwnerState/appendOwnerState.js +0 -19
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/chainPropTypes/chainPropTypes.js +0 -14
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/clamp/clamp.js +0 -9
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/composeClasses/composeClasses.js +0 -24
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/exactProp/exactProp.js +0 -22
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/extractEventHandlers/extractEventHandlers.js +0 -16
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/generateUtilityClass/generateUtilityClass.js +0 -17
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/getReactNodeRef/getReactNodeRef.js +0 -18
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isFocusVisible/isFocusVisible.js +0 -16
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/isHostComponent/isHostComponent.js +0 -9
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/mergeSlotProps/mergeSlotProps.js +0 -71
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/omitEventHandlers/omitEventHandlers.js +0 -16
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/ownerDocument/ownerDocument.js +0 -9
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/resolveComponentProps/resolveComponentProps.js +0 -12
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/setRef/setRef.js +0 -13
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useControlled/useControlled.js +0 -40
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEnhancedEffect/useEnhancedEffect.js +0 -5
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useEventCallback/useEventCallback.js +0 -18
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useForkRef/useForkRef.js +0 -20
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useId/useId.js +0 -28
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/useSlotProps/useSlotProps.js +0 -34
- package/dist/node_modules/.pnpm/@mui_utils@6.0.0-rc.0_@types_react@19.1.0_react@19.1.0/node_modules/@mui/utils/esm/visuallyHidden/visuallyHidden.js +0 -14
- package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +0 -21
- package/dist/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js +0 -83
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js +0 -72
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js +0 -65
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js +0 -490
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js +0 -23
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -15
- package/dist/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js +0 -14
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js +0 -183
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js +0 -111
- package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js +0 -20
- package/dist/types/components/headline/Headline.client.d.ts +0 -3
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { __require as require_default } from "./default.js";
|
|
4
|
+
import { __require as requireParser } from "./parser.js";
|
|
5
|
+
var css;
|
|
6
|
+
var hasRequiredCss;
|
|
7
|
+
function requireCss() {
|
|
8
|
+
if (hasRequiredCss) return css;
|
|
9
|
+
hasRequiredCss = 1;
|
|
10
|
+
var DEFAULT = /* @__PURE__ */ require_default();
|
|
11
|
+
var parseStyle = /* @__PURE__ */ requireParser();
|
|
12
|
+
function isNull(obj) {
|
|
13
|
+
return obj === void 0 || obj === null;
|
|
14
|
+
}
|
|
15
|
+
__name(isNull, "isNull");
|
|
16
|
+
function shallowCopyObject(obj) {
|
|
17
|
+
var ret = {};
|
|
18
|
+
for (var i in obj) {
|
|
19
|
+
ret[i] = obj[i];
|
|
20
|
+
}
|
|
21
|
+
return ret;
|
|
22
|
+
}
|
|
23
|
+
__name(shallowCopyObject, "shallowCopyObject");
|
|
24
|
+
function FilterCSS(options) {
|
|
25
|
+
options = shallowCopyObject(options || {});
|
|
26
|
+
options.whiteList = options.whiteList || DEFAULT.whiteList;
|
|
27
|
+
options.onAttr = options.onAttr || DEFAULT.onAttr;
|
|
28
|
+
options.onIgnoreAttr = options.onIgnoreAttr || DEFAULT.onIgnoreAttr;
|
|
29
|
+
options.safeAttrValue = options.safeAttrValue || DEFAULT.safeAttrValue;
|
|
30
|
+
this.options = options;
|
|
31
|
+
}
|
|
32
|
+
__name(FilterCSS, "FilterCSS");
|
|
33
|
+
FilterCSS.prototype.process = function(css2) {
|
|
34
|
+
css2 = css2 || "";
|
|
35
|
+
css2 = css2.toString();
|
|
36
|
+
if (!css2) return "";
|
|
37
|
+
var me = this;
|
|
38
|
+
var options = me.options;
|
|
39
|
+
var whiteList = options.whiteList;
|
|
40
|
+
var onAttr = options.onAttr;
|
|
41
|
+
var onIgnoreAttr = options.onIgnoreAttr;
|
|
42
|
+
var safeAttrValue = options.safeAttrValue;
|
|
43
|
+
var retCSS = parseStyle(css2, function(sourcePosition, position, name, value, source) {
|
|
44
|
+
var check = whiteList[name];
|
|
45
|
+
var isWhite = false;
|
|
46
|
+
if (check === true) isWhite = check;
|
|
47
|
+
else if (typeof check === "function") isWhite = check(value);
|
|
48
|
+
else if (check instanceof RegExp) isWhite = check.test(value);
|
|
49
|
+
if (isWhite !== true) isWhite = false;
|
|
50
|
+
value = safeAttrValue(name, value);
|
|
51
|
+
if (!value) return;
|
|
52
|
+
var opts = {
|
|
53
|
+
position,
|
|
54
|
+
sourcePosition,
|
|
55
|
+
source,
|
|
56
|
+
isWhite
|
|
57
|
+
};
|
|
58
|
+
if (isWhite) {
|
|
59
|
+
var ret = onAttr(name, value, opts);
|
|
60
|
+
if (isNull(ret)) {
|
|
61
|
+
return name + ":" + value;
|
|
62
|
+
} else {
|
|
63
|
+
return ret;
|
|
64
|
+
}
|
|
65
|
+
} else {
|
|
66
|
+
var ret = onIgnoreAttr(name, value, opts);
|
|
67
|
+
if (!isNull(ret)) {
|
|
68
|
+
return ret;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
return retCSS;
|
|
73
|
+
};
|
|
74
|
+
css = FilterCSS;
|
|
75
|
+
return css;
|
|
76
|
+
}
|
|
77
|
+
__name(requireCss, "requireCss");
|
|
78
|
+
export {
|
|
79
|
+
requireCss as __require
|
|
80
|
+
};
|
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { __exports as _default } from "../../../../../../_virtual/default2.js";
|
|
4
|
+
var hasRequired_default;
|
|
5
|
+
function require_default() {
|
|
6
|
+
if (hasRequired_default) return _default;
|
|
7
|
+
hasRequired_default = 1;
|
|
8
|
+
function getDefaultWhiteList() {
|
|
9
|
+
var whiteList = {};
|
|
10
|
+
whiteList["align-content"] = false;
|
|
11
|
+
whiteList["align-items"] = false;
|
|
12
|
+
whiteList["align-self"] = false;
|
|
13
|
+
whiteList["alignment-adjust"] = false;
|
|
14
|
+
whiteList["alignment-baseline"] = false;
|
|
15
|
+
whiteList["all"] = false;
|
|
16
|
+
whiteList["anchor-point"] = false;
|
|
17
|
+
whiteList["animation"] = false;
|
|
18
|
+
whiteList["animation-delay"] = false;
|
|
19
|
+
whiteList["animation-direction"] = false;
|
|
20
|
+
whiteList["animation-duration"] = false;
|
|
21
|
+
whiteList["animation-fill-mode"] = false;
|
|
22
|
+
whiteList["animation-iteration-count"] = false;
|
|
23
|
+
whiteList["animation-name"] = false;
|
|
24
|
+
whiteList["animation-play-state"] = false;
|
|
25
|
+
whiteList["animation-timing-function"] = false;
|
|
26
|
+
whiteList["azimuth"] = false;
|
|
27
|
+
whiteList["backface-visibility"] = false;
|
|
28
|
+
whiteList["background"] = true;
|
|
29
|
+
whiteList["background-attachment"] = true;
|
|
30
|
+
whiteList["background-clip"] = true;
|
|
31
|
+
whiteList["background-color"] = true;
|
|
32
|
+
whiteList["background-image"] = true;
|
|
33
|
+
whiteList["background-origin"] = true;
|
|
34
|
+
whiteList["background-position"] = true;
|
|
35
|
+
whiteList["background-repeat"] = true;
|
|
36
|
+
whiteList["background-size"] = true;
|
|
37
|
+
whiteList["baseline-shift"] = false;
|
|
38
|
+
whiteList["binding"] = false;
|
|
39
|
+
whiteList["bleed"] = false;
|
|
40
|
+
whiteList["bookmark-label"] = false;
|
|
41
|
+
whiteList["bookmark-level"] = false;
|
|
42
|
+
whiteList["bookmark-state"] = false;
|
|
43
|
+
whiteList["border"] = true;
|
|
44
|
+
whiteList["border-bottom"] = true;
|
|
45
|
+
whiteList["border-bottom-color"] = true;
|
|
46
|
+
whiteList["border-bottom-left-radius"] = true;
|
|
47
|
+
whiteList["border-bottom-right-radius"] = true;
|
|
48
|
+
whiteList["border-bottom-style"] = true;
|
|
49
|
+
whiteList["border-bottom-width"] = true;
|
|
50
|
+
whiteList["border-collapse"] = true;
|
|
51
|
+
whiteList["border-color"] = true;
|
|
52
|
+
whiteList["border-image"] = true;
|
|
53
|
+
whiteList["border-image-outset"] = true;
|
|
54
|
+
whiteList["border-image-repeat"] = true;
|
|
55
|
+
whiteList["border-image-slice"] = true;
|
|
56
|
+
whiteList["border-image-source"] = true;
|
|
57
|
+
whiteList["border-image-width"] = true;
|
|
58
|
+
whiteList["border-left"] = true;
|
|
59
|
+
whiteList["border-left-color"] = true;
|
|
60
|
+
whiteList["border-left-style"] = true;
|
|
61
|
+
whiteList["border-left-width"] = true;
|
|
62
|
+
whiteList["border-radius"] = true;
|
|
63
|
+
whiteList["border-right"] = true;
|
|
64
|
+
whiteList["border-right-color"] = true;
|
|
65
|
+
whiteList["border-right-style"] = true;
|
|
66
|
+
whiteList["border-right-width"] = true;
|
|
67
|
+
whiteList["border-spacing"] = true;
|
|
68
|
+
whiteList["border-style"] = true;
|
|
69
|
+
whiteList["border-top"] = true;
|
|
70
|
+
whiteList["border-top-color"] = true;
|
|
71
|
+
whiteList["border-top-left-radius"] = true;
|
|
72
|
+
whiteList["border-top-right-radius"] = true;
|
|
73
|
+
whiteList["border-top-style"] = true;
|
|
74
|
+
whiteList["border-top-width"] = true;
|
|
75
|
+
whiteList["border-width"] = true;
|
|
76
|
+
whiteList["bottom"] = false;
|
|
77
|
+
whiteList["box-decoration-break"] = true;
|
|
78
|
+
whiteList["box-shadow"] = true;
|
|
79
|
+
whiteList["box-sizing"] = true;
|
|
80
|
+
whiteList["box-snap"] = true;
|
|
81
|
+
whiteList["box-suppress"] = true;
|
|
82
|
+
whiteList["break-after"] = true;
|
|
83
|
+
whiteList["break-before"] = true;
|
|
84
|
+
whiteList["break-inside"] = true;
|
|
85
|
+
whiteList["caption-side"] = false;
|
|
86
|
+
whiteList["chains"] = false;
|
|
87
|
+
whiteList["clear"] = true;
|
|
88
|
+
whiteList["clip"] = false;
|
|
89
|
+
whiteList["clip-path"] = false;
|
|
90
|
+
whiteList["clip-rule"] = false;
|
|
91
|
+
whiteList["color"] = true;
|
|
92
|
+
whiteList["color-interpolation-filters"] = true;
|
|
93
|
+
whiteList["column-count"] = false;
|
|
94
|
+
whiteList["column-fill"] = false;
|
|
95
|
+
whiteList["column-gap"] = false;
|
|
96
|
+
whiteList["column-rule"] = false;
|
|
97
|
+
whiteList["column-rule-color"] = false;
|
|
98
|
+
whiteList["column-rule-style"] = false;
|
|
99
|
+
whiteList["column-rule-width"] = false;
|
|
100
|
+
whiteList["column-span"] = false;
|
|
101
|
+
whiteList["column-width"] = false;
|
|
102
|
+
whiteList["columns"] = false;
|
|
103
|
+
whiteList["contain"] = false;
|
|
104
|
+
whiteList["content"] = false;
|
|
105
|
+
whiteList["counter-increment"] = false;
|
|
106
|
+
whiteList["counter-reset"] = false;
|
|
107
|
+
whiteList["counter-set"] = false;
|
|
108
|
+
whiteList["crop"] = false;
|
|
109
|
+
whiteList["cue"] = false;
|
|
110
|
+
whiteList["cue-after"] = false;
|
|
111
|
+
whiteList["cue-before"] = false;
|
|
112
|
+
whiteList["cursor"] = false;
|
|
113
|
+
whiteList["direction"] = false;
|
|
114
|
+
whiteList["display"] = true;
|
|
115
|
+
whiteList["display-inside"] = true;
|
|
116
|
+
whiteList["display-list"] = true;
|
|
117
|
+
whiteList["display-outside"] = true;
|
|
118
|
+
whiteList["dominant-baseline"] = false;
|
|
119
|
+
whiteList["elevation"] = false;
|
|
120
|
+
whiteList["empty-cells"] = false;
|
|
121
|
+
whiteList["filter"] = false;
|
|
122
|
+
whiteList["flex"] = false;
|
|
123
|
+
whiteList["flex-basis"] = false;
|
|
124
|
+
whiteList["flex-direction"] = false;
|
|
125
|
+
whiteList["flex-flow"] = false;
|
|
126
|
+
whiteList["flex-grow"] = false;
|
|
127
|
+
whiteList["flex-shrink"] = false;
|
|
128
|
+
whiteList["flex-wrap"] = false;
|
|
129
|
+
whiteList["float"] = false;
|
|
130
|
+
whiteList["float-offset"] = false;
|
|
131
|
+
whiteList["flood-color"] = false;
|
|
132
|
+
whiteList["flood-opacity"] = false;
|
|
133
|
+
whiteList["flow-from"] = false;
|
|
134
|
+
whiteList["flow-into"] = false;
|
|
135
|
+
whiteList["font"] = true;
|
|
136
|
+
whiteList["font-family"] = true;
|
|
137
|
+
whiteList["font-feature-settings"] = true;
|
|
138
|
+
whiteList["font-kerning"] = true;
|
|
139
|
+
whiteList["font-language-override"] = true;
|
|
140
|
+
whiteList["font-size"] = true;
|
|
141
|
+
whiteList["font-size-adjust"] = true;
|
|
142
|
+
whiteList["font-stretch"] = true;
|
|
143
|
+
whiteList["font-style"] = true;
|
|
144
|
+
whiteList["font-synthesis"] = true;
|
|
145
|
+
whiteList["font-variant"] = true;
|
|
146
|
+
whiteList["font-variant-alternates"] = true;
|
|
147
|
+
whiteList["font-variant-caps"] = true;
|
|
148
|
+
whiteList["font-variant-east-asian"] = true;
|
|
149
|
+
whiteList["font-variant-ligatures"] = true;
|
|
150
|
+
whiteList["font-variant-numeric"] = true;
|
|
151
|
+
whiteList["font-variant-position"] = true;
|
|
152
|
+
whiteList["font-weight"] = true;
|
|
153
|
+
whiteList["grid"] = false;
|
|
154
|
+
whiteList["grid-area"] = false;
|
|
155
|
+
whiteList["grid-auto-columns"] = false;
|
|
156
|
+
whiteList["grid-auto-flow"] = false;
|
|
157
|
+
whiteList["grid-auto-rows"] = false;
|
|
158
|
+
whiteList["grid-column"] = false;
|
|
159
|
+
whiteList["grid-column-end"] = false;
|
|
160
|
+
whiteList["grid-column-start"] = false;
|
|
161
|
+
whiteList["grid-row"] = false;
|
|
162
|
+
whiteList["grid-row-end"] = false;
|
|
163
|
+
whiteList["grid-row-start"] = false;
|
|
164
|
+
whiteList["grid-template"] = false;
|
|
165
|
+
whiteList["grid-template-areas"] = false;
|
|
166
|
+
whiteList["grid-template-columns"] = false;
|
|
167
|
+
whiteList["grid-template-rows"] = false;
|
|
168
|
+
whiteList["hanging-punctuation"] = false;
|
|
169
|
+
whiteList["height"] = true;
|
|
170
|
+
whiteList["hyphens"] = false;
|
|
171
|
+
whiteList["icon"] = false;
|
|
172
|
+
whiteList["image-orientation"] = false;
|
|
173
|
+
whiteList["image-resolution"] = false;
|
|
174
|
+
whiteList["ime-mode"] = false;
|
|
175
|
+
whiteList["initial-letters"] = false;
|
|
176
|
+
whiteList["inline-box-align"] = false;
|
|
177
|
+
whiteList["justify-content"] = false;
|
|
178
|
+
whiteList["justify-items"] = false;
|
|
179
|
+
whiteList["justify-self"] = false;
|
|
180
|
+
whiteList["left"] = false;
|
|
181
|
+
whiteList["letter-spacing"] = true;
|
|
182
|
+
whiteList["lighting-color"] = true;
|
|
183
|
+
whiteList["line-box-contain"] = false;
|
|
184
|
+
whiteList["line-break"] = false;
|
|
185
|
+
whiteList["line-grid"] = false;
|
|
186
|
+
whiteList["line-height"] = false;
|
|
187
|
+
whiteList["line-snap"] = false;
|
|
188
|
+
whiteList["line-stacking"] = false;
|
|
189
|
+
whiteList["line-stacking-ruby"] = false;
|
|
190
|
+
whiteList["line-stacking-shift"] = false;
|
|
191
|
+
whiteList["line-stacking-strategy"] = false;
|
|
192
|
+
whiteList["list-style"] = true;
|
|
193
|
+
whiteList["list-style-image"] = true;
|
|
194
|
+
whiteList["list-style-position"] = true;
|
|
195
|
+
whiteList["list-style-type"] = true;
|
|
196
|
+
whiteList["margin"] = true;
|
|
197
|
+
whiteList["margin-bottom"] = true;
|
|
198
|
+
whiteList["margin-left"] = true;
|
|
199
|
+
whiteList["margin-right"] = true;
|
|
200
|
+
whiteList["margin-top"] = true;
|
|
201
|
+
whiteList["marker-offset"] = false;
|
|
202
|
+
whiteList["marker-side"] = false;
|
|
203
|
+
whiteList["marks"] = false;
|
|
204
|
+
whiteList["mask"] = false;
|
|
205
|
+
whiteList["mask-box"] = false;
|
|
206
|
+
whiteList["mask-box-outset"] = false;
|
|
207
|
+
whiteList["mask-box-repeat"] = false;
|
|
208
|
+
whiteList["mask-box-slice"] = false;
|
|
209
|
+
whiteList["mask-box-source"] = false;
|
|
210
|
+
whiteList["mask-box-width"] = false;
|
|
211
|
+
whiteList["mask-clip"] = false;
|
|
212
|
+
whiteList["mask-image"] = false;
|
|
213
|
+
whiteList["mask-origin"] = false;
|
|
214
|
+
whiteList["mask-position"] = false;
|
|
215
|
+
whiteList["mask-repeat"] = false;
|
|
216
|
+
whiteList["mask-size"] = false;
|
|
217
|
+
whiteList["mask-source-type"] = false;
|
|
218
|
+
whiteList["mask-type"] = false;
|
|
219
|
+
whiteList["max-height"] = true;
|
|
220
|
+
whiteList["max-lines"] = false;
|
|
221
|
+
whiteList["max-width"] = true;
|
|
222
|
+
whiteList["min-height"] = true;
|
|
223
|
+
whiteList["min-width"] = true;
|
|
224
|
+
whiteList["move-to"] = false;
|
|
225
|
+
whiteList["nav-down"] = false;
|
|
226
|
+
whiteList["nav-index"] = false;
|
|
227
|
+
whiteList["nav-left"] = false;
|
|
228
|
+
whiteList["nav-right"] = false;
|
|
229
|
+
whiteList["nav-up"] = false;
|
|
230
|
+
whiteList["object-fit"] = false;
|
|
231
|
+
whiteList["object-position"] = false;
|
|
232
|
+
whiteList["opacity"] = false;
|
|
233
|
+
whiteList["order"] = false;
|
|
234
|
+
whiteList["orphans"] = false;
|
|
235
|
+
whiteList["outline"] = false;
|
|
236
|
+
whiteList["outline-color"] = false;
|
|
237
|
+
whiteList["outline-offset"] = false;
|
|
238
|
+
whiteList["outline-style"] = false;
|
|
239
|
+
whiteList["outline-width"] = false;
|
|
240
|
+
whiteList["overflow"] = false;
|
|
241
|
+
whiteList["overflow-wrap"] = false;
|
|
242
|
+
whiteList["overflow-x"] = false;
|
|
243
|
+
whiteList["overflow-y"] = false;
|
|
244
|
+
whiteList["padding"] = true;
|
|
245
|
+
whiteList["padding-bottom"] = true;
|
|
246
|
+
whiteList["padding-left"] = true;
|
|
247
|
+
whiteList["padding-right"] = true;
|
|
248
|
+
whiteList["padding-top"] = true;
|
|
249
|
+
whiteList["page"] = false;
|
|
250
|
+
whiteList["page-break-after"] = false;
|
|
251
|
+
whiteList["page-break-before"] = false;
|
|
252
|
+
whiteList["page-break-inside"] = false;
|
|
253
|
+
whiteList["page-policy"] = false;
|
|
254
|
+
whiteList["pause"] = false;
|
|
255
|
+
whiteList["pause-after"] = false;
|
|
256
|
+
whiteList["pause-before"] = false;
|
|
257
|
+
whiteList["perspective"] = false;
|
|
258
|
+
whiteList["perspective-origin"] = false;
|
|
259
|
+
whiteList["pitch"] = false;
|
|
260
|
+
whiteList["pitch-range"] = false;
|
|
261
|
+
whiteList["play-during"] = false;
|
|
262
|
+
whiteList["position"] = false;
|
|
263
|
+
whiteList["presentation-level"] = false;
|
|
264
|
+
whiteList["quotes"] = false;
|
|
265
|
+
whiteList["region-fragment"] = false;
|
|
266
|
+
whiteList["resize"] = false;
|
|
267
|
+
whiteList["rest"] = false;
|
|
268
|
+
whiteList["rest-after"] = false;
|
|
269
|
+
whiteList["rest-before"] = false;
|
|
270
|
+
whiteList["richness"] = false;
|
|
271
|
+
whiteList["right"] = false;
|
|
272
|
+
whiteList["rotation"] = false;
|
|
273
|
+
whiteList["rotation-point"] = false;
|
|
274
|
+
whiteList["ruby-align"] = false;
|
|
275
|
+
whiteList["ruby-merge"] = false;
|
|
276
|
+
whiteList["ruby-position"] = false;
|
|
277
|
+
whiteList["shape-image-threshold"] = false;
|
|
278
|
+
whiteList["shape-outside"] = false;
|
|
279
|
+
whiteList["shape-margin"] = false;
|
|
280
|
+
whiteList["size"] = false;
|
|
281
|
+
whiteList["speak"] = false;
|
|
282
|
+
whiteList["speak-as"] = false;
|
|
283
|
+
whiteList["speak-header"] = false;
|
|
284
|
+
whiteList["speak-numeral"] = false;
|
|
285
|
+
whiteList["speak-punctuation"] = false;
|
|
286
|
+
whiteList["speech-rate"] = false;
|
|
287
|
+
whiteList["stress"] = false;
|
|
288
|
+
whiteList["string-set"] = false;
|
|
289
|
+
whiteList["tab-size"] = false;
|
|
290
|
+
whiteList["table-layout"] = false;
|
|
291
|
+
whiteList["text-align"] = true;
|
|
292
|
+
whiteList["text-align-last"] = true;
|
|
293
|
+
whiteList["text-combine-upright"] = true;
|
|
294
|
+
whiteList["text-decoration"] = true;
|
|
295
|
+
whiteList["text-decoration-color"] = true;
|
|
296
|
+
whiteList["text-decoration-line"] = true;
|
|
297
|
+
whiteList["text-decoration-skip"] = true;
|
|
298
|
+
whiteList["text-decoration-style"] = true;
|
|
299
|
+
whiteList["text-emphasis"] = true;
|
|
300
|
+
whiteList["text-emphasis-color"] = true;
|
|
301
|
+
whiteList["text-emphasis-position"] = true;
|
|
302
|
+
whiteList["text-emphasis-style"] = true;
|
|
303
|
+
whiteList["text-height"] = true;
|
|
304
|
+
whiteList["text-indent"] = true;
|
|
305
|
+
whiteList["text-justify"] = true;
|
|
306
|
+
whiteList["text-orientation"] = true;
|
|
307
|
+
whiteList["text-overflow"] = true;
|
|
308
|
+
whiteList["text-shadow"] = true;
|
|
309
|
+
whiteList["text-space-collapse"] = true;
|
|
310
|
+
whiteList["text-transform"] = true;
|
|
311
|
+
whiteList["text-underline-position"] = true;
|
|
312
|
+
whiteList["text-wrap"] = true;
|
|
313
|
+
whiteList["top"] = false;
|
|
314
|
+
whiteList["transform"] = false;
|
|
315
|
+
whiteList["transform-origin"] = false;
|
|
316
|
+
whiteList["transform-style"] = false;
|
|
317
|
+
whiteList["transition"] = false;
|
|
318
|
+
whiteList["transition-delay"] = false;
|
|
319
|
+
whiteList["transition-duration"] = false;
|
|
320
|
+
whiteList["transition-property"] = false;
|
|
321
|
+
whiteList["transition-timing-function"] = false;
|
|
322
|
+
whiteList["unicode-bidi"] = false;
|
|
323
|
+
whiteList["vertical-align"] = false;
|
|
324
|
+
whiteList["visibility"] = false;
|
|
325
|
+
whiteList["voice-balance"] = false;
|
|
326
|
+
whiteList["voice-duration"] = false;
|
|
327
|
+
whiteList["voice-family"] = false;
|
|
328
|
+
whiteList["voice-pitch"] = false;
|
|
329
|
+
whiteList["voice-range"] = false;
|
|
330
|
+
whiteList["voice-rate"] = false;
|
|
331
|
+
whiteList["voice-stress"] = false;
|
|
332
|
+
whiteList["voice-volume"] = false;
|
|
333
|
+
whiteList["volume"] = false;
|
|
334
|
+
whiteList["white-space"] = false;
|
|
335
|
+
whiteList["widows"] = false;
|
|
336
|
+
whiteList["width"] = true;
|
|
337
|
+
whiteList["will-change"] = false;
|
|
338
|
+
whiteList["word-break"] = true;
|
|
339
|
+
whiteList["word-spacing"] = true;
|
|
340
|
+
whiteList["word-wrap"] = true;
|
|
341
|
+
whiteList["wrap-flow"] = false;
|
|
342
|
+
whiteList["wrap-through"] = false;
|
|
343
|
+
whiteList["writing-mode"] = false;
|
|
344
|
+
whiteList["z-index"] = false;
|
|
345
|
+
return whiteList;
|
|
346
|
+
}
|
|
347
|
+
__name(getDefaultWhiteList, "getDefaultWhiteList");
|
|
348
|
+
function onAttr(name, value, options) {
|
|
349
|
+
}
|
|
350
|
+
__name(onAttr, "onAttr");
|
|
351
|
+
function onIgnoreAttr(name, value, options) {
|
|
352
|
+
}
|
|
353
|
+
__name(onIgnoreAttr, "onIgnoreAttr");
|
|
354
|
+
var REGEXP_URL_JAVASCRIPT = /javascript\s*\:/img;
|
|
355
|
+
function safeAttrValue(name, value) {
|
|
356
|
+
if (REGEXP_URL_JAVASCRIPT.test(value)) return "";
|
|
357
|
+
return value;
|
|
358
|
+
}
|
|
359
|
+
__name(safeAttrValue, "safeAttrValue");
|
|
360
|
+
_default.whiteList = getDefaultWhiteList();
|
|
361
|
+
_default.getDefaultWhiteList = getDefaultWhiteList;
|
|
362
|
+
_default.onAttr = onAttr;
|
|
363
|
+
_default.onIgnoreAttr = onIgnoreAttr;
|
|
364
|
+
_default.safeAttrValue = safeAttrValue;
|
|
365
|
+
return _default;
|
|
366
|
+
}
|
|
367
|
+
__name(require_default, "require_default");
|
|
368
|
+
export {
|
|
369
|
+
require_default as __require
|
|
370
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { __module as lib } from "../../../../../../_virtual/index3.js";
|
|
4
|
+
import { __require as require_default } from "./default.js";
|
|
5
|
+
import { __require as requireCss } from "./css.js";
|
|
6
|
+
var hasRequiredLib;
|
|
7
|
+
function requireLib() {
|
|
8
|
+
if (hasRequiredLib) return lib.exports;
|
|
9
|
+
hasRequiredLib = 1;
|
|
10
|
+
(function(module, exports) {
|
|
11
|
+
var DEFAULT = /* @__PURE__ */ require_default();
|
|
12
|
+
var FilterCSS = /* @__PURE__ */ requireCss();
|
|
13
|
+
function filterCSS(html, options) {
|
|
14
|
+
var xss = new FilterCSS(options);
|
|
15
|
+
return xss.process(html);
|
|
16
|
+
}
|
|
17
|
+
__name(filterCSS, "filterCSS");
|
|
18
|
+
exports = module.exports = filterCSS;
|
|
19
|
+
exports.FilterCSS = FilterCSS;
|
|
20
|
+
for (var i in DEFAULT) exports[i] = DEFAULT[i];
|
|
21
|
+
if (typeof window !== "undefined") {
|
|
22
|
+
window.filterCSS = module.exports;
|
|
23
|
+
}
|
|
24
|
+
})(lib, lib.exports);
|
|
25
|
+
return lib.exports;
|
|
26
|
+
}
|
|
27
|
+
__name(requireLib, "requireLib");
|
|
28
|
+
export {
|
|
29
|
+
requireLib as __require
|
|
30
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
import { __require as requireUtil } from "./util.js";
|
|
4
|
+
var parser;
|
|
5
|
+
var hasRequiredParser;
|
|
6
|
+
function requireParser() {
|
|
7
|
+
if (hasRequiredParser) return parser;
|
|
8
|
+
hasRequiredParser = 1;
|
|
9
|
+
var _ = /* @__PURE__ */ requireUtil();
|
|
10
|
+
function parseStyle(css, onAttr) {
|
|
11
|
+
css = _.trimRight(css);
|
|
12
|
+
if (css[css.length - 1] !== ";") css += ";";
|
|
13
|
+
var cssLength = css.length;
|
|
14
|
+
var isParenthesisOpen = false;
|
|
15
|
+
var lastPos = 0;
|
|
16
|
+
var i = 0;
|
|
17
|
+
var retCSS = "";
|
|
18
|
+
function addNewAttr() {
|
|
19
|
+
if (!isParenthesisOpen) {
|
|
20
|
+
var source = _.trim(css.slice(lastPos, i));
|
|
21
|
+
var j2 = source.indexOf(":");
|
|
22
|
+
if (j2 !== -1) {
|
|
23
|
+
var name = _.trim(source.slice(0, j2));
|
|
24
|
+
var value = _.trim(source.slice(j2 + 1));
|
|
25
|
+
if (name) {
|
|
26
|
+
var ret = onAttr(lastPos, retCSS.length, name, value, source);
|
|
27
|
+
if (ret) retCSS += ret + "; ";
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
lastPos = i + 1;
|
|
32
|
+
}
|
|
33
|
+
__name(addNewAttr, "addNewAttr");
|
|
34
|
+
for (; i < cssLength; i++) {
|
|
35
|
+
var c = css[i];
|
|
36
|
+
if (c === "/" && css[i + 1] === "*") {
|
|
37
|
+
var j = css.indexOf("*/", i + 2);
|
|
38
|
+
if (j === -1) break;
|
|
39
|
+
i = j + 1;
|
|
40
|
+
lastPos = i + 1;
|
|
41
|
+
isParenthesisOpen = false;
|
|
42
|
+
} else if (c === "(") {
|
|
43
|
+
isParenthesisOpen = true;
|
|
44
|
+
} else if (c === ")") {
|
|
45
|
+
isParenthesisOpen = false;
|
|
46
|
+
} else if (c === ";") {
|
|
47
|
+
if (isParenthesisOpen) ;
|
|
48
|
+
else {
|
|
49
|
+
addNewAttr();
|
|
50
|
+
}
|
|
51
|
+
} else if (c === "\n") {
|
|
52
|
+
addNewAttr();
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return _.trim(retCSS);
|
|
56
|
+
}
|
|
57
|
+
__name(parseStyle, "parseStyle");
|
|
58
|
+
parser = parseStyle;
|
|
59
|
+
return parser;
|
|
60
|
+
}
|
|
61
|
+
__name(requireParser, "requireParser");
|
|
62
|
+
export {
|
|
63
|
+
requireParser as __require
|
|
64
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
var util;
|
|
4
|
+
var hasRequiredUtil;
|
|
5
|
+
function requireUtil() {
|
|
6
|
+
if (hasRequiredUtil) return util;
|
|
7
|
+
hasRequiredUtil = 1;
|
|
8
|
+
util = {
|
|
9
|
+
indexOf: /* @__PURE__ */ __name(function(arr, item) {
|
|
10
|
+
var i, j;
|
|
11
|
+
if (Array.prototype.indexOf) {
|
|
12
|
+
return arr.indexOf(item);
|
|
13
|
+
}
|
|
14
|
+
for (i = 0, j = arr.length; i < j; i++) {
|
|
15
|
+
if (arr[i] === item) {
|
|
16
|
+
return i;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
return -1;
|
|
20
|
+
}, "indexOf"),
|
|
21
|
+
forEach: /* @__PURE__ */ __name(function(arr, fn, scope) {
|
|
22
|
+
var i, j;
|
|
23
|
+
if (Array.prototype.forEach) {
|
|
24
|
+
return arr.forEach(fn, scope);
|
|
25
|
+
}
|
|
26
|
+
for (i = 0, j = arr.length; i < j; i++) {
|
|
27
|
+
fn.call(scope, arr[i], i, arr);
|
|
28
|
+
}
|
|
29
|
+
}, "forEach"),
|
|
30
|
+
trim: /* @__PURE__ */ __name(function(str) {
|
|
31
|
+
if (String.prototype.trim) {
|
|
32
|
+
return str.trim();
|
|
33
|
+
}
|
|
34
|
+
return str.replace(/(^\s*)|(\s*$)/g, "");
|
|
35
|
+
}, "trim"),
|
|
36
|
+
trimRight: /* @__PURE__ */ __name(function(str) {
|
|
37
|
+
if (String.prototype.trimRight) {
|
|
38
|
+
return str.trimRight();
|
|
39
|
+
}
|
|
40
|
+
return str.replace(/(\s*$)/g, "");
|
|
41
|
+
}, "trimRight")
|
|
42
|
+
};
|
|
43
|
+
return util;
|
|
44
|
+
}
|
|
45
|
+
__name(requireUtil, "requireUtil");
|
|
46
|
+
export {
|
|
47
|
+
requireUtil as __require
|
|
48
|
+
};
|