@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,10 @@
|
|
|
1
|
+
import { default as default2 } from "./lib/decode.js";
|
|
2
|
+
import { default as default3 } from "./lib/encode.js";
|
|
3
|
+
import { default as default4 } from "./lib/format.js";
|
|
4
|
+
import { default as default5 } from "./lib/parse.js";
|
|
5
|
+
export {
|
|
6
|
+
default2 as decode,
|
|
7
|
+
default3 as encode,
|
|
8
|
+
default4 as format,
|
|
9
|
+
default5 as parse
|
|
10
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
const decodeCache = {};
|
|
4
|
+
function getDecodeCache(exclude) {
|
|
5
|
+
let cache = decodeCache[exclude];
|
|
6
|
+
if (cache) {
|
|
7
|
+
return cache;
|
|
8
|
+
}
|
|
9
|
+
cache = decodeCache[exclude] = [];
|
|
10
|
+
for (let i = 0; i < 128; i++) {
|
|
11
|
+
const ch = String.fromCharCode(i);
|
|
12
|
+
cache.push(ch);
|
|
13
|
+
}
|
|
14
|
+
for (let i = 0; i < exclude.length; i++) {
|
|
15
|
+
const ch = exclude.charCodeAt(i);
|
|
16
|
+
cache[ch] = "%" + ("0" + ch.toString(16).toUpperCase()).slice(-2);
|
|
17
|
+
}
|
|
18
|
+
return cache;
|
|
19
|
+
}
|
|
20
|
+
__name(getDecodeCache, "getDecodeCache");
|
|
21
|
+
function decode(string, exclude) {
|
|
22
|
+
if (typeof exclude !== "string") {
|
|
23
|
+
exclude = decode.defaultChars;
|
|
24
|
+
}
|
|
25
|
+
const cache = getDecodeCache(exclude);
|
|
26
|
+
return string.replace(/(%[a-f0-9]{2})+/gi, function(seq) {
|
|
27
|
+
let result = "";
|
|
28
|
+
for (let i = 0, l = seq.length; i < l; i += 3) {
|
|
29
|
+
const b1 = parseInt(seq.slice(i + 1, i + 3), 16);
|
|
30
|
+
if (b1 < 128) {
|
|
31
|
+
result += cache[b1];
|
|
32
|
+
continue;
|
|
33
|
+
}
|
|
34
|
+
if ((b1 & 224) === 192 && i + 3 < l) {
|
|
35
|
+
const b2 = parseInt(seq.slice(i + 4, i + 6), 16);
|
|
36
|
+
if ((b2 & 192) === 128) {
|
|
37
|
+
const chr = b1 << 6 & 1984 | b2 & 63;
|
|
38
|
+
if (chr < 128) {
|
|
39
|
+
result += "��";
|
|
40
|
+
} else {
|
|
41
|
+
result += String.fromCharCode(chr);
|
|
42
|
+
}
|
|
43
|
+
i += 3;
|
|
44
|
+
continue;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
if ((b1 & 240) === 224 && i + 6 < l) {
|
|
48
|
+
const b2 = parseInt(seq.slice(i + 4, i + 6), 16);
|
|
49
|
+
const b3 = parseInt(seq.slice(i + 7, i + 9), 16);
|
|
50
|
+
if ((b2 & 192) === 128 && (b3 & 192) === 128) {
|
|
51
|
+
const chr = b1 << 12 & 61440 | b2 << 6 & 4032 | b3 & 63;
|
|
52
|
+
if (chr < 2048 || chr >= 55296 && chr <= 57343) {
|
|
53
|
+
result += "���";
|
|
54
|
+
} else {
|
|
55
|
+
result += String.fromCharCode(chr);
|
|
56
|
+
}
|
|
57
|
+
i += 6;
|
|
58
|
+
continue;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
if ((b1 & 248) === 240 && i + 9 < l) {
|
|
62
|
+
const b2 = parseInt(seq.slice(i + 4, i + 6), 16);
|
|
63
|
+
const b3 = parseInt(seq.slice(i + 7, i + 9), 16);
|
|
64
|
+
const b4 = parseInt(seq.slice(i + 10, i + 12), 16);
|
|
65
|
+
if ((b2 & 192) === 128 && (b3 & 192) === 128 && (b4 & 192) === 128) {
|
|
66
|
+
let chr = b1 << 18 & 1835008 | b2 << 12 & 258048 | b3 << 6 & 4032 | b4 & 63;
|
|
67
|
+
if (chr < 65536 || chr > 1114111) {
|
|
68
|
+
result += "����";
|
|
69
|
+
} else {
|
|
70
|
+
chr -= 65536;
|
|
71
|
+
result += String.fromCharCode(55296 + (chr >> 10), 56320 + (chr & 1023));
|
|
72
|
+
}
|
|
73
|
+
i += 9;
|
|
74
|
+
continue;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
result += "�";
|
|
78
|
+
}
|
|
79
|
+
return result;
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
__name(decode, "decode");
|
|
83
|
+
decode.defaultChars = ";/?:@&=+$,#";
|
|
84
|
+
decode.componentChars = "";
|
|
85
|
+
export {
|
|
86
|
+
decode as default
|
|
87
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
const encodeCache = {};
|
|
4
|
+
function getEncodeCache(exclude) {
|
|
5
|
+
let cache = encodeCache[exclude];
|
|
6
|
+
if (cache) {
|
|
7
|
+
return cache;
|
|
8
|
+
}
|
|
9
|
+
cache = encodeCache[exclude] = [];
|
|
10
|
+
for (let i = 0; i < 128; i++) {
|
|
11
|
+
const ch = String.fromCharCode(i);
|
|
12
|
+
if (/^[0-9a-z]$/i.test(ch)) {
|
|
13
|
+
cache.push(ch);
|
|
14
|
+
} else {
|
|
15
|
+
cache.push("%" + ("0" + i.toString(16).toUpperCase()).slice(-2));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
for (let i = 0; i < exclude.length; i++) {
|
|
19
|
+
cache[exclude.charCodeAt(i)] = exclude[i];
|
|
20
|
+
}
|
|
21
|
+
return cache;
|
|
22
|
+
}
|
|
23
|
+
__name(getEncodeCache, "getEncodeCache");
|
|
24
|
+
function encode(string, exclude, keepEscaped) {
|
|
25
|
+
if (typeof exclude !== "string") {
|
|
26
|
+
keepEscaped = exclude;
|
|
27
|
+
exclude = encode.defaultChars;
|
|
28
|
+
}
|
|
29
|
+
if (typeof keepEscaped === "undefined") {
|
|
30
|
+
keepEscaped = true;
|
|
31
|
+
}
|
|
32
|
+
const cache = getEncodeCache(exclude);
|
|
33
|
+
let result = "";
|
|
34
|
+
for (let i = 0, l = string.length; i < l; i++) {
|
|
35
|
+
const code = string.charCodeAt(i);
|
|
36
|
+
if (keepEscaped && code === 37 && i + 2 < l) {
|
|
37
|
+
if (/^[0-9a-f]{2}$/i.test(string.slice(i + 1, i + 3))) {
|
|
38
|
+
result += string.slice(i, i + 3);
|
|
39
|
+
i += 2;
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
if (code < 128) {
|
|
44
|
+
result += cache[code];
|
|
45
|
+
continue;
|
|
46
|
+
}
|
|
47
|
+
if (code >= 55296 && code <= 57343) {
|
|
48
|
+
if (code >= 55296 && code <= 56319 && i + 1 < l) {
|
|
49
|
+
const nextCode = string.charCodeAt(i + 1);
|
|
50
|
+
if (nextCode >= 56320 && nextCode <= 57343) {
|
|
51
|
+
result += encodeURIComponent(string[i] + string[i + 1]);
|
|
52
|
+
i++;
|
|
53
|
+
continue;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
result += "%EF%BF%BD";
|
|
57
|
+
continue;
|
|
58
|
+
}
|
|
59
|
+
result += encodeURIComponent(string[i]);
|
|
60
|
+
}
|
|
61
|
+
return result;
|
|
62
|
+
}
|
|
63
|
+
__name(encode, "encode");
|
|
64
|
+
encode.defaultChars = ";/?:@&=+$,-_.!~*'()#";
|
|
65
|
+
encode.componentChars = "-_.!~*'()";
|
|
66
|
+
export {
|
|
67
|
+
encode as default
|
|
68
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
function format(url) {
|
|
4
|
+
let result = "";
|
|
5
|
+
result += url.protocol || "";
|
|
6
|
+
result += url.slashes ? "//" : "";
|
|
7
|
+
result += url.auth ? url.auth + "@" : "";
|
|
8
|
+
if (url.hostname && url.hostname.indexOf(":") !== -1) {
|
|
9
|
+
result += "[" + url.hostname + "]";
|
|
10
|
+
} else {
|
|
11
|
+
result += url.hostname || "";
|
|
12
|
+
}
|
|
13
|
+
result += url.port ? ":" + url.port : "";
|
|
14
|
+
result += url.pathname || "";
|
|
15
|
+
result += url.search || "";
|
|
16
|
+
result += url.hash || "";
|
|
17
|
+
return result;
|
|
18
|
+
}
|
|
19
|
+
__name(format, "format");
|
|
20
|
+
export {
|
|
21
|
+
format as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
function Url() {
|
|
4
|
+
this.protocol = null;
|
|
5
|
+
this.slashes = null;
|
|
6
|
+
this.auth = null;
|
|
7
|
+
this.port = null;
|
|
8
|
+
this.hostname = null;
|
|
9
|
+
this.hash = null;
|
|
10
|
+
this.search = null;
|
|
11
|
+
this.pathname = null;
|
|
12
|
+
}
|
|
13
|
+
__name(Url, "Url");
|
|
14
|
+
const protocolPattern = /^([a-z0-9.+-]+:)/i;
|
|
15
|
+
const portPattern = /:[0-9]*$/;
|
|
16
|
+
const simplePathPattern = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/;
|
|
17
|
+
const delims = ["<", ">", '"', "`", " ", "\r", "\n", " "];
|
|
18
|
+
const unwise = ["{", "}", "|", "\\", "^", "`"].concat(delims);
|
|
19
|
+
const autoEscape = ["'"].concat(unwise);
|
|
20
|
+
const nonHostChars = ["%", "/", "?", ";", "#"].concat(autoEscape);
|
|
21
|
+
const hostEndingChars = ["/", "?", "#"];
|
|
22
|
+
const hostnameMaxLen = 255;
|
|
23
|
+
const hostnamePartPattern = /^[+a-z0-9A-Z_-]{0,63}$/;
|
|
24
|
+
const hostnamePartStart = /^([+a-z0-9A-Z_-]{0,63})(.*)$/;
|
|
25
|
+
const hostlessProtocol = {
|
|
26
|
+
javascript: true,
|
|
27
|
+
"javascript:": true
|
|
28
|
+
};
|
|
29
|
+
const slashedProtocol = {
|
|
30
|
+
http: true,
|
|
31
|
+
https: true,
|
|
32
|
+
ftp: true,
|
|
33
|
+
gopher: true,
|
|
34
|
+
file: true,
|
|
35
|
+
"http:": true,
|
|
36
|
+
"https:": true,
|
|
37
|
+
"ftp:": true,
|
|
38
|
+
"gopher:": true,
|
|
39
|
+
"file:": true
|
|
40
|
+
};
|
|
41
|
+
function urlParse(url, slashesDenoteHost) {
|
|
42
|
+
if (url && url instanceof Url) return url;
|
|
43
|
+
const u = new Url();
|
|
44
|
+
u.parse(url, slashesDenoteHost);
|
|
45
|
+
return u;
|
|
46
|
+
}
|
|
47
|
+
__name(urlParse, "urlParse");
|
|
48
|
+
Url.prototype.parse = function(url, slashesDenoteHost) {
|
|
49
|
+
let lowerProto, hec, slashes;
|
|
50
|
+
let rest = url;
|
|
51
|
+
rest = rest.trim();
|
|
52
|
+
if (!slashesDenoteHost && url.split("#").length === 1) {
|
|
53
|
+
const simplePath = simplePathPattern.exec(rest);
|
|
54
|
+
if (simplePath) {
|
|
55
|
+
this.pathname = simplePath[1];
|
|
56
|
+
if (simplePath[2]) {
|
|
57
|
+
this.search = simplePath[2];
|
|
58
|
+
}
|
|
59
|
+
return this;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
let proto = protocolPattern.exec(rest);
|
|
63
|
+
if (proto) {
|
|
64
|
+
proto = proto[0];
|
|
65
|
+
lowerProto = proto.toLowerCase();
|
|
66
|
+
this.protocol = proto;
|
|
67
|
+
rest = rest.substr(proto.length);
|
|
68
|
+
}
|
|
69
|
+
if (slashesDenoteHost || proto || rest.match(/^\/\/[^@\/]+@[^@\/]+/)) {
|
|
70
|
+
slashes = rest.substr(0, 2) === "//";
|
|
71
|
+
if (slashes && !(proto && hostlessProtocol[proto])) {
|
|
72
|
+
rest = rest.substr(2);
|
|
73
|
+
this.slashes = true;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
if (!hostlessProtocol[proto] && (slashes || proto && !slashedProtocol[proto])) {
|
|
77
|
+
let hostEnd = -1;
|
|
78
|
+
for (let i = 0; i < hostEndingChars.length; i++) {
|
|
79
|
+
hec = rest.indexOf(hostEndingChars[i]);
|
|
80
|
+
if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) {
|
|
81
|
+
hostEnd = hec;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
let auth, atSign;
|
|
85
|
+
if (hostEnd === -1) {
|
|
86
|
+
atSign = rest.lastIndexOf("@");
|
|
87
|
+
} else {
|
|
88
|
+
atSign = rest.lastIndexOf("@", hostEnd);
|
|
89
|
+
}
|
|
90
|
+
if (atSign !== -1) {
|
|
91
|
+
auth = rest.slice(0, atSign);
|
|
92
|
+
rest = rest.slice(atSign + 1);
|
|
93
|
+
this.auth = auth;
|
|
94
|
+
}
|
|
95
|
+
hostEnd = -1;
|
|
96
|
+
for (let i = 0; i < nonHostChars.length; i++) {
|
|
97
|
+
hec = rest.indexOf(nonHostChars[i]);
|
|
98
|
+
if (hec !== -1 && (hostEnd === -1 || hec < hostEnd)) {
|
|
99
|
+
hostEnd = hec;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (hostEnd === -1) {
|
|
103
|
+
hostEnd = rest.length;
|
|
104
|
+
}
|
|
105
|
+
if (rest[hostEnd - 1] === ":") {
|
|
106
|
+
hostEnd--;
|
|
107
|
+
}
|
|
108
|
+
const host = rest.slice(0, hostEnd);
|
|
109
|
+
rest = rest.slice(hostEnd);
|
|
110
|
+
this.parseHost(host);
|
|
111
|
+
this.hostname = this.hostname || "";
|
|
112
|
+
const ipv6Hostname = this.hostname[0] === "[" && this.hostname[this.hostname.length - 1] === "]";
|
|
113
|
+
if (!ipv6Hostname) {
|
|
114
|
+
const hostparts = this.hostname.split(/\./);
|
|
115
|
+
for (let i = 0, l = hostparts.length; i < l; i++) {
|
|
116
|
+
const part = hostparts[i];
|
|
117
|
+
if (!part) {
|
|
118
|
+
continue;
|
|
119
|
+
}
|
|
120
|
+
if (!part.match(hostnamePartPattern)) {
|
|
121
|
+
let newpart = "";
|
|
122
|
+
for (let j = 0, k = part.length; j < k; j++) {
|
|
123
|
+
if (part.charCodeAt(j) > 127) {
|
|
124
|
+
newpart += "x";
|
|
125
|
+
} else {
|
|
126
|
+
newpart += part[j];
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
if (!newpart.match(hostnamePartPattern)) {
|
|
130
|
+
const validParts = hostparts.slice(0, i);
|
|
131
|
+
const notHost = hostparts.slice(i + 1);
|
|
132
|
+
const bit = part.match(hostnamePartStart);
|
|
133
|
+
if (bit) {
|
|
134
|
+
validParts.push(bit[1]);
|
|
135
|
+
notHost.unshift(bit[2]);
|
|
136
|
+
}
|
|
137
|
+
if (notHost.length) {
|
|
138
|
+
rest = notHost.join(".") + rest;
|
|
139
|
+
}
|
|
140
|
+
this.hostname = validParts.join(".");
|
|
141
|
+
break;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
if (this.hostname.length > hostnameMaxLen) {
|
|
147
|
+
this.hostname = "";
|
|
148
|
+
}
|
|
149
|
+
if (ipv6Hostname) {
|
|
150
|
+
this.hostname = this.hostname.substr(1, this.hostname.length - 2);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
const hash = rest.indexOf("#");
|
|
154
|
+
if (hash !== -1) {
|
|
155
|
+
this.hash = rest.substr(hash);
|
|
156
|
+
rest = rest.slice(0, hash);
|
|
157
|
+
}
|
|
158
|
+
const qm = rest.indexOf("?");
|
|
159
|
+
if (qm !== -1) {
|
|
160
|
+
this.search = rest.substr(qm);
|
|
161
|
+
rest = rest.slice(0, qm);
|
|
162
|
+
}
|
|
163
|
+
if (rest) {
|
|
164
|
+
this.pathname = rest;
|
|
165
|
+
}
|
|
166
|
+
if (slashedProtocol[lowerProto] && this.hostname && !this.pathname) {
|
|
167
|
+
this.pathname = "";
|
|
168
|
+
}
|
|
169
|
+
return this;
|
|
170
|
+
};
|
|
171
|
+
Url.prototype.parseHost = function(host) {
|
|
172
|
+
let port = portPattern.exec(host);
|
|
173
|
+
if (port) {
|
|
174
|
+
port = port[0];
|
|
175
|
+
if (port !== ":") {
|
|
176
|
+
this.port = port.substr(1);
|
|
177
|
+
}
|
|
178
|
+
host = host.substr(0, host.length - port.length);
|
|
179
|
+
}
|
|
180
|
+
if (host) {
|
|
181
|
+
this.hostname = host;
|
|
182
|
+
}
|
|
183
|
+
};
|
|
184
|
+
export {
|
|
185
|
+
urlParse as default
|
|
186
|
+
};
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
const maxInt = 2147483647;
|
|
4
|
+
const base = 36;
|
|
5
|
+
const tMin = 1;
|
|
6
|
+
const tMax = 26;
|
|
7
|
+
const skew = 38;
|
|
8
|
+
const damp = 700;
|
|
9
|
+
const initialBias = 72;
|
|
10
|
+
const initialN = 128;
|
|
11
|
+
const delimiter = "-";
|
|
12
|
+
const regexPunycode = /^xn--/;
|
|
13
|
+
const regexNonASCII = /[^\0-\x7F]/;
|
|
14
|
+
const regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g;
|
|
15
|
+
const errors = {
|
|
16
|
+
"overflow": "Overflow: input needs wider integers to process",
|
|
17
|
+
"not-basic": "Illegal input >= 0x80 (not a basic code point)",
|
|
18
|
+
"invalid-input": "Invalid input"
|
|
19
|
+
};
|
|
20
|
+
const baseMinusTMin = base - tMin;
|
|
21
|
+
const floor = Math.floor;
|
|
22
|
+
const stringFromCharCode = String.fromCharCode;
|
|
23
|
+
function error(type) {
|
|
24
|
+
throw new RangeError(errors[type]);
|
|
25
|
+
}
|
|
26
|
+
__name(error, "error");
|
|
27
|
+
function map(array, callback) {
|
|
28
|
+
const result = [];
|
|
29
|
+
let length = array.length;
|
|
30
|
+
while (length--) {
|
|
31
|
+
result[length] = callback(array[length]);
|
|
32
|
+
}
|
|
33
|
+
return result;
|
|
34
|
+
}
|
|
35
|
+
__name(map, "map");
|
|
36
|
+
function mapDomain(domain, callback) {
|
|
37
|
+
const parts = domain.split("@");
|
|
38
|
+
let result = "";
|
|
39
|
+
if (parts.length > 1) {
|
|
40
|
+
result = parts[0] + "@";
|
|
41
|
+
domain = parts[1];
|
|
42
|
+
}
|
|
43
|
+
domain = domain.replace(regexSeparators, ".");
|
|
44
|
+
const labels = domain.split(".");
|
|
45
|
+
const encoded = map(labels, callback).join(".");
|
|
46
|
+
return result + encoded;
|
|
47
|
+
}
|
|
48
|
+
__name(mapDomain, "mapDomain");
|
|
49
|
+
function ucs2decode(string) {
|
|
50
|
+
const output = [];
|
|
51
|
+
let counter = 0;
|
|
52
|
+
const length = string.length;
|
|
53
|
+
while (counter < length) {
|
|
54
|
+
const value = string.charCodeAt(counter++);
|
|
55
|
+
if (value >= 55296 && value <= 56319 && counter < length) {
|
|
56
|
+
const extra = string.charCodeAt(counter++);
|
|
57
|
+
if ((extra & 64512) == 56320) {
|
|
58
|
+
output.push(((value & 1023) << 10) + (extra & 1023) + 65536);
|
|
59
|
+
} else {
|
|
60
|
+
output.push(value);
|
|
61
|
+
counter--;
|
|
62
|
+
}
|
|
63
|
+
} else {
|
|
64
|
+
output.push(value);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
return output;
|
|
68
|
+
}
|
|
69
|
+
__name(ucs2decode, "ucs2decode");
|
|
70
|
+
const ucs2encode = /* @__PURE__ */ __name((codePoints) => String.fromCodePoint(...codePoints), "ucs2encode");
|
|
71
|
+
const basicToDigit = /* @__PURE__ */ __name(function(codePoint) {
|
|
72
|
+
if (codePoint >= 48 && codePoint < 58) {
|
|
73
|
+
return 26 + (codePoint - 48);
|
|
74
|
+
}
|
|
75
|
+
if (codePoint >= 65 && codePoint < 91) {
|
|
76
|
+
return codePoint - 65;
|
|
77
|
+
}
|
|
78
|
+
if (codePoint >= 97 && codePoint < 123) {
|
|
79
|
+
return codePoint - 97;
|
|
80
|
+
}
|
|
81
|
+
return base;
|
|
82
|
+
}, "basicToDigit");
|
|
83
|
+
const digitToBasic = /* @__PURE__ */ __name(function(digit, flag) {
|
|
84
|
+
return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);
|
|
85
|
+
}, "digitToBasic");
|
|
86
|
+
const adapt = /* @__PURE__ */ __name(function(delta, numPoints, firstTime) {
|
|
87
|
+
let k = 0;
|
|
88
|
+
delta = firstTime ? floor(delta / damp) : delta >> 1;
|
|
89
|
+
delta += floor(delta / numPoints);
|
|
90
|
+
for (; delta > baseMinusTMin * tMax >> 1; k += base) {
|
|
91
|
+
delta = floor(delta / baseMinusTMin);
|
|
92
|
+
}
|
|
93
|
+
return floor(k + (baseMinusTMin + 1) * delta / (delta + skew));
|
|
94
|
+
}, "adapt");
|
|
95
|
+
const decode = /* @__PURE__ */ __name(function(input) {
|
|
96
|
+
const output = [];
|
|
97
|
+
const inputLength = input.length;
|
|
98
|
+
let i = 0;
|
|
99
|
+
let n = initialN;
|
|
100
|
+
let bias = initialBias;
|
|
101
|
+
let basic = input.lastIndexOf(delimiter);
|
|
102
|
+
if (basic < 0) {
|
|
103
|
+
basic = 0;
|
|
104
|
+
}
|
|
105
|
+
for (let j = 0; j < basic; ++j) {
|
|
106
|
+
if (input.charCodeAt(j) >= 128) {
|
|
107
|
+
error("not-basic");
|
|
108
|
+
}
|
|
109
|
+
output.push(input.charCodeAt(j));
|
|
110
|
+
}
|
|
111
|
+
for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; ) {
|
|
112
|
+
const oldi = i;
|
|
113
|
+
for (let w = 1, k = base; ; k += base) {
|
|
114
|
+
if (index >= inputLength) {
|
|
115
|
+
error("invalid-input");
|
|
116
|
+
}
|
|
117
|
+
const digit = basicToDigit(input.charCodeAt(index++));
|
|
118
|
+
if (digit >= base) {
|
|
119
|
+
error("invalid-input");
|
|
120
|
+
}
|
|
121
|
+
if (digit > floor((maxInt - i) / w)) {
|
|
122
|
+
error("overflow");
|
|
123
|
+
}
|
|
124
|
+
i += digit * w;
|
|
125
|
+
const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;
|
|
126
|
+
if (digit < t) {
|
|
127
|
+
break;
|
|
128
|
+
}
|
|
129
|
+
const baseMinusT = base - t;
|
|
130
|
+
if (w > floor(maxInt / baseMinusT)) {
|
|
131
|
+
error("overflow");
|
|
132
|
+
}
|
|
133
|
+
w *= baseMinusT;
|
|
134
|
+
}
|
|
135
|
+
const out = output.length + 1;
|
|
136
|
+
bias = adapt(i - oldi, out, oldi == 0);
|
|
137
|
+
if (floor(i / out) > maxInt - n) {
|
|
138
|
+
error("overflow");
|
|
139
|
+
}
|
|
140
|
+
n += floor(i / out);
|
|
141
|
+
i %= out;
|
|
142
|
+
output.splice(i++, 0, n);
|
|
143
|
+
}
|
|
144
|
+
return String.fromCodePoint(...output);
|
|
145
|
+
}, "decode");
|
|
146
|
+
const encode = /* @__PURE__ */ __name(function(input) {
|
|
147
|
+
const output = [];
|
|
148
|
+
input = ucs2decode(input);
|
|
149
|
+
const inputLength = input.length;
|
|
150
|
+
let n = initialN;
|
|
151
|
+
let delta = 0;
|
|
152
|
+
let bias = initialBias;
|
|
153
|
+
for (const currentValue of input) {
|
|
154
|
+
if (currentValue < 128) {
|
|
155
|
+
output.push(stringFromCharCode(currentValue));
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
const basicLength = output.length;
|
|
159
|
+
let handledCPCount = basicLength;
|
|
160
|
+
if (basicLength) {
|
|
161
|
+
output.push(delimiter);
|
|
162
|
+
}
|
|
163
|
+
while (handledCPCount < inputLength) {
|
|
164
|
+
let m = maxInt;
|
|
165
|
+
for (const currentValue of input) {
|
|
166
|
+
if (currentValue >= n && currentValue < m) {
|
|
167
|
+
m = currentValue;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
const handledCPCountPlusOne = handledCPCount + 1;
|
|
171
|
+
if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {
|
|
172
|
+
error("overflow");
|
|
173
|
+
}
|
|
174
|
+
delta += (m - n) * handledCPCountPlusOne;
|
|
175
|
+
n = m;
|
|
176
|
+
for (const currentValue of input) {
|
|
177
|
+
if (currentValue < n && ++delta > maxInt) {
|
|
178
|
+
error("overflow");
|
|
179
|
+
}
|
|
180
|
+
if (currentValue === n) {
|
|
181
|
+
let q = delta;
|
|
182
|
+
for (let k = base; ; k += base) {
|
|
183
|
+
const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;
|
|
184
|
+
if (q < t) {
|
|
185
|
+
break;
|
|
186
|
+
}
|
|
187
|
+
const qMinusT = q - t;
|
|
188
|
+
const baseMinusT = base - t;
|
|
189
|
+
output.push(
|
|
190
|
+
stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))
|
|
191
|
+
);
|
|
192
|
+
q = floor(qMinusT / baseMinusT);
|
|
193
|
+
}
|
|
194
|
+
output.push(stringFromCharCode(digitToBasic(q, 0)));
|
|
195
|
+
bias = adapt(delta, handledCPCountPlusOne, handledCPCount === basicLength);
|
|
196
|
+
delta = 0;
|
|
197
|
+
++handledCPCount;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
++delta;
|
|
201
|
+
++n;
|
|
202
|
+
}
|
|
203
|
+
return output.join("");
|
|
204
|
+
}, "encode");
|
|
205
|
+
const toUnicode = /* @__PURE__ */ __name(function(input) {
|
|
206
|
+
return mapDomain(input, function(string) {
|
|
207
|
+
return regexPunycode.test(string) ? decode(string.slice(4).toLowerCase()) : string;
|
|
208
|
+
});
|
|
209
|
+
}, "toUnicode");
|
|
210
|
+
const toASCII = /* @__PURE__ */ __name(function(input) {
|
|
211
|
+
return mapDomain(input, function(string) {
|
|
212
|
+
return regexNonASCII.test(string) ? "xn--" + encode(string) : string;
|
|
213
|
+
});
|
|
214
|
+
}, "toASCII");
|
|
215
|
+
const punycode = {
|
|
216
|
+
/**
|
|
217
|
+
* A string representing the current Punycode.js version number.
|
|
218
|
+
* @memberOf punycode
|
|
219
|
+
* @type String
|
|
220
|
+
*/
|
|
221
|
+
"version": "2.3.1",
|
|
222
|
+
/**
|
|
223
|
+
* An object of methods to convert from JavaScript's internal character
|
|
224
|
+
* representation (UCS-2) to Unicode code points, and back.
|
|
225
|
+
* @see <https://mathiasbynens.be/notes/javascript-encoding>
|
|
226
|
+
* @memberOf punycode
|
|
227
|
+
* @type Object
|
|
228
|
+
*/
|
|
229
|
+
"ucs2": {
|
|
230
|
+
"decode": ucs2decode,
|
|
231
|
+
"encode": ucs2encode
|
|
232
|
+
},
|
|
233
|
+
"decode": decode,
|
|
234
|
+
"encode": encode,
|
|
235
|
+
"toASCII": toASCII,
|
|
236
|
+
"toUnicode": toUnicode
|
|
237
|
+
};
|
|
238
|
+
export {
|
|
239
|
+
decode,
|
|
240
|
+
punycode as default,
|
|
241
|
+
encode,
|
|
242
|
+
toASCII,
|
|
243
|
+
toUnicode,
|
|
244
|
+
ucs2decode,
|
|
245
|
+
ucs2encode
|
|
246
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const regex = /[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/;
|
|
2
|
+
export {
|
|
3
|
+
regex as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const P = /[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1B7D\u1B7E\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\uDF55-\uDF59\uDF86-\uDF89]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDEB9\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2\uDF00-\uDF09]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDF43-\uDF4F\uDFFF]|\uD809[\uDC70-\uDC74]|\uD80B[\uDFF1\uDFF2]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/;
|
|
2
|
+
export {
|
|
3
|
+
P as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const regex = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u0888\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20C0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u31EF\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC2\uFD40-\uFD4F\uFDCF\uFDFC-\uFDFF\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD833[\uDF50-\uDFC3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDEA\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEDC-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF76\uDF7B-\uDFD9\uDFE0-\uDFEB\uDFF0]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDE53\uDE60-\uDE6D\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC5\uDECE-\uDEDB\uDEE0-\uDEE8\uDEF0-\uDEF8\uDF00-\uDF92\uDF94-\uDFCA]/;
|
|
2
|
+
export {
|
|
3
|
+
regex as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as default2 } from "./properties/Any/regex.js";
|
|
2
|
+
import { default as default3 } from "./categories/Cc/regex.js";
|
|
3
|
+
import { default as default4 } from "./categories/Cf/regex.js";
|
|
4
|
+
import { default as default5 } from "./categories/P/regex.js";
|
|
5
|
+
import { default as default6 } from "./categories/S/regex.js";
|
|
6
|
+
import { default as default7 } from "./categories/Z/regex.js";
|
|
7
|
+
export {
|
|
8
|
+
default2 as Any,
|
|
9
|
+
default3 as Cc,
|
|
10
|
+
default4 as Cf,
|
|
11
|
+
default5 as P,
|
|
12
|
+
default6 as S,
|
|
13
|
+
default7 as Z
|
|
14
|
+
};
|