@1money/component-ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/1money-component-dev/SKILL.md +224 -0
- package/.agents/skills/1money-component-dev/checklist.md +159 -0
- package/.agents/skills/1money-component-dev/references/ComponentPatterns.md +478 -0
- package/.agents/skills/1money-component-dev/references/FigmaExtractionChecklist.md +144 -0
- package/.agents/skills/1money-component-dev/references/HooksGuide.md +360 -0
- package/.agents/skills/1money-component-dev/references/SemanticColors.md +215 -0
- package/.agents/skills/1money-component-dev/references/StyleSystemAPI.md +389 -0
- package/.claude/settings.local.json +103 -0
- package/.claude/skills/1money-component-dev/SKILL.md +229 -0
- package/.claude/skills/1money-component-dev/checklist.md +159 -0
- package/.claude/skills/1money-component-dev/references/ComponentPatterns.md +478 -0
- package/.claude/skills/1money-component-dev/references/FigmaExtractionChecklist.md +144 -0
- package/.claude/skills/1money-component-dev/references/HooksGuide.md +360 -0
- package/.claude/skills/1money-component-dev/references/SemanticColors.md +215 -0
- package/.claude/skills/1money-component-dev/references/StyleSystemAPI.md +389 -0
- package/.claude/skills/1money-component-review/SKILL.md +316 -0
- package/.claude/skills/component-pipeline/SKILL.md +116 -0
- package/.claude/skills/component-pipeline/checklist.md +125 -0
- package/.hintrc +13 -0
- package/@types/global.d.ts +28 -0
- package/AGENTS.md +540 -0
- package/CLAUDE.md +1 -0
- package/LICENSE +21 -0
- package/README.md +169 -0
- package/es/components/Accordion/Accordion.d.ts +6 -0
- package/es/components/Accordion/Accordion.js +102 -0
- package/es/components/Accordion/index.d.ts +4 -0
- package/es/components/Accordion/index.js +5 -0
- package/es/components/Accordion/interface.d.ts +29 -0
- package/es/components/Accordion/interface.js +2 -0
- package/es/components/Accordion/style/Accordion.css +1 -0
- package/es/components/Accordion/style/Accordion.scss +127 -0
- package/es/components/Accordion/style/css.js +2 -0
- package/es/components/Accordion/style/index.d.ts +1 -0
- package/es/components/Accordion/style/index.js +2 -0
- package/es/components/Alert/Alert.d.ts +6 -0
- package/es/components/Alert/Alert.js +94 -0
- package/es/components/Alert/index.d.ts +4 -0
- package/es/components/Alert/index.js +5 -0
- package/es/components/Alert/interface.d.ts +40 -0
- package/es/components/Alert/interface.js +6 -0
- package/es/components/Alert/style/Alert.css +1 -0
- package/es/components/Alert/style/Alert.scss +89 -0
- package/es/components/Alert/style/css.js +3 -0
- package/es/components/Alert/style/index.d.ts +2 -0
- package/es/components/Alert/style/index.js +3 -0
- package/es/components/Button/Button.d.ts +4 -0
- package/es/components/Button/Button.js +121 -0
- package/es/components/Button/constants.d.ts +56 -0
- package/es/components/Button/constants.js +69 -0
- package/es/components/Button/index.d.ts +5 -0
- package/es/components/Button/index.js +6 -0
- package/es/components/Button/interface.d.ts +14 -0
- package/es/components/Button/interface.js +2 -0
- package/es/components/Button/style/Button.css +1 -0
- package/es/components/Button/style/Button.scss +190 -0
- package/es/components/Button/style/css.js +2 -0
- package/es/components/Button/style/index.d.ts +1 -0
- package/es/components/Button/style/index.js +2 -0
- package/es/components/Calendar/Calendar.d.ts +7 -0
- package/es/components/Calendar/Calendar.js +112 -0
- package/es/components/Calendar/index.d.ts +4 -0
- package/es/components/Calendar/index.js +5 -0
- package/es/components/Calendar/interface.d.ts +29 -0
- package/es/components/Calendar/interface.js +2 -0
- package/es/components/Calendar/style/Calendar.css +1 -0
- package/es/components/Calendar/style/Calendar.scss +377 -0
- package/es/components/Calendar/style/css.js +2 -0
- package/es/components/Calendar/style/index.d.ts +1 -0
- package/es/components/Calendar/style/index.js +2 -0
- package/es/components/Carousel/Carousel.d.ts +6 -0
- package/es/components/Carousel/Carousel.js +46 -0
- package/es/components/Carousel/index.d.ts +4 -0
- package/es/components/Carousel/index.js +5 -0
- package/es/components/Carousel/interface.d.ts +15 -0
- package/es/components/Carousel/interface.js +2 -0
- package/es/components/Carousel/style/Carousel.css +1 -0
- package/es/components/Carousel/style/Carousel.scss +63 -0
- package/es/components/Carousel/style/css.js +2 -0
- package/es/components/Carousel/style/index.d.ts +1 -0
- package/es/components/Carousel/style/index.js +2 -0
- package/es/components/Checkbox/BaseCheckbox.d.ts +6 -0
- package/es/components/Checkbox/BaseCheckbox.js +84 -0
- package/es/components/Checkbox/Checkbox.d.ts +6 -0
- package/es/components/Checkbox/Checkbox.js +120 -0
- package/es/components/Checkbox/CheckboxGroup.d.ts +5 -0
- package/es/components/Checkbox/CheckboxGroup.js +140 -0
- package/es/components/Checkbox/CheckboxGroupContext.d.ts +14 -0
- package/es/components/Checkbox/CheckboxGroupContext.js +3 -0
- package/es/components/Checkbox/constants.d.ts +7 -0
- package/es/components/Checkbox/constants.js +8 -0
- package/es/components/Checkbox/index.d.ts +10 -0
- package/es/components/Checkbox/index.js +10 -0
- package/es/components/Checkbox/interface.d.ts +77 -0
- package/es/components/Checkbox/interface.js +2 -0
- package/es/components/Checkbox/style/Checkbox.css +1 -0
- package/es/components/Checkbox/style/Checkbox.scss +235 -0
- package/es/components/Checkbox/style/css.js +2 -0
- package/es/components/Checkbox/style/index.d.ts +1 -0
- package/es/components/Checkbox/style/index.js +2 -0
- package/es/components/CoachMark/CoachMark.d.ts +4 -0
- package/es/components/CoachMark/CoachMark.js +142 -0
- package/es/components/CoachMark/index.d.ts +4 -0
- package/es/components/CoachMark/index.js +5 -0
- package/es/components/CoachMark/interface.d.ts +47 -0
- package/es/components/CoachMark/interface.js +2 -0
- package/es/components/CoachMark/style/CoachMark.css +1 -0
- package/es/components/CoachMark/style/CoachMark.scss +176 -0
- package/es/components/CoachMark/style/css.js +5 -0
- package/es/components/CoachMark/style/index.d.ts +4 -0
- package/es/components/CoachMark/style/index.js +5 -0
- package/es/components/Copy/Copy.d.ts +6 -0
- package/es/components/Copy/Copy.js +70 -0
- package/es/components/Copy/index.d.ts +4 -0
- package/es/components/Copy/index.js +5 -0
- package/es/components/Copy/interface.d.ts +20 -0
- package/es/components/Copy/interface.js +2 -0
- package/es/components/Copy/style/Copy.css +1 -0
- package/es/components/Copy/style/Copy.scss +35 -0
- package/es/components/Copy/style/css.js +2 -0
- package/es/components/Copy/style/index.d.ts +1 -0
- package/es/components/Copy/style/index.js +2 -0
- package/es/components/Divider/Divider.d.ts +4 -0
- package/es/components/Divider/Divider.js +53 -0
- package/es/components/Divider/index.d.ts +4 -0
- package/es/components/Divider/index.js +5 -0
- package/es/components/Divider/interface.d.ts +20 -0
- package/es/components/Divider/interface.js +2 -0
- package/es/components/Divider/style/Divider.css +1 -0
- package/es/components/Divider/style/Divider.scss +149 -0
- package/es/components/Divider/style/css.js +2 -0
- package/es/components/Divider/style/index.d.ts +1 -0
- package/es/components/Divider/style/index.js +2 -0
- package/es/components/Drawer/Drawer.d.ts +4 -0
- package/es/components/Drawer/Drawer.js +271 -0
- package/es/components/Drawer/constants.d.ts +15 -0
- package/es/components/Drawer/constants.js +16 -0
- package/es/components/Drawer/index.d.ts +3 -0
- package/es/components/Drawer/index.js +4 -0
- package/es/components/Drawer/interface.d.ts +79 -0
- package/es/components/Drawer/interface.js +2 -0
- package/es/components/Drawer/style/Drawer.css +1 -0
- package/es/components/Drawer/style/Drawer.scss +163 -0
- package/es/components/Drawer/style/css.js +2 -0
- package/es/components/Drawer/style/index.d.ts +1 -0
- package/es/components/Drawer/style/index.js +2 -0
- package/es/components/Dropdown/Dropdown.d.ts +5 -0
- package/es/components/Dropdown/Dropdown.js +24 -0
- package/es/components/Dropdown/index.d.ts +3 -0
- package/es/components/Dropdown/index.js +4 -0
- package/es/components/Dropdown/interface.d.ts +8 -0
- package/es/components/Dropdown/interface.js +2 -0
- package/es/components/Dropdown/style/Dropdown.css +0 -0
- package/es/components/Dropdown/style/Dropdown.scss +2 -0
- package/es/components/Dropdown/style/css.js +3 -0
- package/es/components/Dropdown/style/index.d.ts +2 -0
- package/es/components/Dropdown/style/index.js +3 -0
- package/es/components/Empty/Empty.d.ts +6 -0
- package/es/components/Empty/Empty.js +68 -0
- package/es/components/Empty/index.d.ts +4 -0
- package/es/components/Empty/index.js +5 -0
- package/es/components/Empty/interface.d.ts +11 -0
- package/es/components/Empty/interface.js +2 -0
- package/es/components/Empty/style/Empty.css +1 -0
- package/es/components/Empty/style/Empty.scss +53 -0
- package/es/components/Empty/style/css.js +3 -0
- package/es/components/Empty/style/index.d.ts +2 -0
- package/es/components/Empty/style/index.js +3 -0
- package/es/components/Flex/Flex.d.ts +5 -0
- package/es/components/Flex/Flex.js +50 -0
- package/es/components/Flex/constants.d.ts +41 -0
- package/es/components/Flex/constants.js +45 -0
- package/es/components/Flex/index.d.ts +5 -0
- package/es/components/Flex/index.js +6 -0
- package/es/components/Flex/interface.d.ts +13 -0
- package/es/components/Flex/interface.js +2 -0
- package/es/components/Flex/style/Flex.css +1 -0
- package/es/components/Flex/style/Flex.scss +70 -0
- package/es/components/Flex/style/css.js +2 -0
- package/es/components/Flex/style/index.d.ts +1 -0
- package/es/components/Flex/style/index.js +2 -0
- package/es/components/Form/Form.d.ts +4 -0
- package/es/components/Form/Form.js +73 -0
- package/es/components/Form/FormItem.d.ts +4 -0
- package/es/components/Form/FormItem.js +183 -0
- package/es/components/Form/constants.d.ts +19 -0
- package/es/components/Form/constants.js +19 -0
- package/es/components/Form/context.d.ts +5 -0
- package/es/components/Form/context.js +19 -0
- package/es/components/Form/hooks/useForm.d.ts +3 -0
- package/es/components/Form/hooks/useForm.js +541 -0
- package/es/components/Form/hooks/useFormCore.d.ts +3 -0
- package/es/components/Form/hooks/useFormCore.js +348 -0
- package/es/components/Form/index.d.ts +10 -0
- package/es/components/Form/index.js +17 -0
- package/es/components/Form/interface.d.ts +166 -0
- package/es/components/Form/interface.js +2 -0
- package/es/components/Form/style/Form.css +1 -0
- package/es/components/Form/style/Form.scss +57 -0
- package/es/components/Form/style/css.js +2 -0
- package/es/components/Form/style/index.d.ts +1 -0
- package/es/components/Form/style/index.js +2 -0
- package/es/components/Grid/Col.d.ts +4 -0
- package/es/components/Grid/Col.js +83 -0
- package/es/components/Grid/Grid.d.ts +10 -0
- package/es/components/Grid/Grid.js +15 -0
- package/es/components/Grid/Row.d.ts +4 -0
- package/es/components/Grid/Row.js +41 -0
- package/es/components/Grid/constants.d.ts +48 -0
- package/es/components/Grid/constants.js +71 -0
- package/es/components/Grid/helper.d.ts +15 -0
- package/es/components/Grid/helper.js +87 -0
- package/es/components/Grid/index.d.ts +7 -0
- package/es/components/Grid/index.js +8 -0
- package/es/components/Grid/interface.d.ts +38 -0
- package/es/components/Grid/interface.js +2 -0
- package/es/components/Grid/style/Grid.css +1 -0
- package/es/components/Grid/style/Grid.scss +184 -0
- package/es/components/Grid/style/css.js +2 -0
- package/es/components/Grid/style/index.d.ts +1 -0
- package/es/components/Grid/style/index.js +2 -0
- package/es/components/Icons/Icons.d.ts +192 -0
- package/es/components/Icons/Icons.js +192 -0
- package/es/components/Icons/Illustrations.d.ts +18 -0
- package/es/components/Icons/Illustrations.js +874 -0
- package/es/components/Icons/Logo.d.ts +36 -0
- package/es/components/Icons/Logo.js +209 -0
- package/es/components/Icons/SVGs.d.ts +265 -0
- package/es/components/Icons/SVGs.js +1918 -0
- package/es/components/Icons/Wrapper.d.ts +6 -0
- package/es/components/Icons/Wrapper.js +100 -0
- package/es/components/Icons/index.d.ts +4 -0
- package/es/components/Icons/index.js +4 -0
- package/es/components/Icons/interface.d.ts +27 -0
- package/es/components/Icons/interface.js +2 -0
- package/es/components/Icons/style/Icons.css +1 -0
- package/es/components/Icons/style/Icons.scss +85 -0
- package/es/components/Icons/style/css.js +2 -0
- package/es/components/Icons/style/index.d.ts +1 -0
- package/es/components/Icons/style/index.js +2 -0
- package/es/components/Input/Amount/Amount.d.ts +6 -0
- package/es/components/Input/Amount/Amount.js +192 -0
- package/es/components/Input/Amount/helper.d.ts +35 -0
- package/es/components/Input/Amount/helper.js +95 -0
- package/es/components/Input/Amount/index.d.ts +3 -0
- package/es/components/Input/Amount/index.js +4 -0
- package/es/components/Input/Amount/style/Amount.css +1 -0
- package/es/components/Input/Amount/style/Amount.scss +89 -0
- package/es/components/Input/Amount/style/css.js +2 -0
- package/es/components/Input/Amount/style/index.d.ts +1 -0
- package/es/components/Input/Amount/style/index.js +2 -0
- package/es/components/Input/FieldShell/FieldShell.css +1 -0
- package/es/components/Input/FieldShell/FieldShell.d.ts +19 -0
- package/es/components/Input/FieldShell/FieldShell.js +76 -0
- package/es/components/Input/FieldShell/FieldShell.scss +62 -0
- package/es/components/Input/FieldShell/index.d.ts +3 -0
- package/es/components/Input/FieldShell/index.js +3 -0
- package/es/components/Input/Input/Input.css +1 -0
- package/es/components/Input/Input/Input.d.ts +3 -0
- package/es/components/Input/Input/Input.js +158 -0
- package/es/components/Input/Input/Input.scss +131 -0
- package/es/components/Input/Input/index.d.ts +2 -0
- package/es/components/Input/Input/index.js +3 -0
- package/es/components/Input/Mask/Mask.d.ts +5 -0
- package/es/components/Input/Mask/Mask.js +337 -0
- package/es/components/Input/Mask/index.d.ts +2 -0
- package/es/components/Input/Mask/index.js +3 -0
- package/es/components/Input/OTP/OTP.css +1 -0
- package/es/components/Input/OTP/OTP.d.ts +5 -0
- package/es/components/Input/OTP/OTP.js +150 -0
- package/es/components/Input/OTP/OTP.scss +75 -0
- package/es/components/Input/OTP/index.d.ts +2 -0
- package/es/components/Input/OTP/index.js +3 -0
- package/es/components/Input/Password/Password.d.ts +5 -0
- package/es/components/Input/Password/Password.js +121 -0
- package/es/components/Input/Password/index.d.ts +2 -0
- package/es/components/Input/Password/index.js +3 -0
- package/es/components/Input/Search/Search.d.ts +5 -0
- package/es/components/Input/Search/Search.js +144 -0
- package/es/components/Input/Search/index.d.ts +2 -0
- package/es/components/Input/Search/index.js +3 -0
- package/es/components/Input/TextArea/TextArea.css +1 -0
- package/es/components/Input/TextArea/TextArea.d.ts +5 -0
- package/es/components/Input/TextArea/TextArea.js +93 -0
- package/es/components/Input/TextArea/TextArea.scss +87 -0
- package/es/components/Input/TextArea/index.d.ts +2 -0
- package/es/components/Input/TextArea/index.js +3 -0
- package/es/components/Input/Trade/Trade.css +1 -0
- package/es/components/Input/Trade/Trade.d.ts +5 -0
- package/es/components/Input/Trade/Trade.js +130 -0
- package/es/components/Input/Trade/Trade.scss +184 -0
- package/es/components/Input/Trade/index.d.ts +2 -0
- package/es/components/Input/Trade/index.js +3 -0
- package/es/components/Input/constants.d.ts +15 -0
- package/es/components/Input/constants.js +16 -0
- package/es/components/Input/index.d.ts +4 -0
- package/es/components/Input/index.js +5 -0
- package/es/components/Input/interface.d.ts +153 -0
- package/es/components/Input/interface.js +2 -0
- package/es/components/Input/style/css.js +7 -0
- package/es/components/Input/style/index.d.ts +6 -0
- package/es/components/Input/style/index.js +7 -0
- package/es/components/Input/useAmountInput.d.ts +35 -0
- package/es/components/Input/useAmountInput.js +207 -0
- package/es/components/Input/useSyncRef.d.ts +2 -0
- package/es/components/Input/useSyncRef.js +13 -0
- package/es/components/Modal/Modal.d.ts +4 -0
- package/es/components/Modal/Modal.js +383 -0
- package/es/components/Modal/constants.d.ts +58 -0
- package/es/components/Modal/constants.js +55 -0
- package/es/components/Modal/index.d.ts +4 -0
- package/es/components/Modal/index.js +5 -0
- package/es/components/Modal/interface.d.ts +37 -0
- package/es/components/Modal/interface.js +2 -0
- package/es/components/Modal/style/Modal.css +1 -0
- package/es/components/Modal/style/Modal.scss +254 -0
- package/es/components/Modal/style/css.js +2 -0
- package/es/components/Modal/style/index.d.ts +1 -0
- package/es/components/Modal/style/index.js +2 -0
- package/es/components/Navigation/Nav.d.ts +5 -0
- package/es/components/Navigation/Nav.js +198 -0
- package/es/components/Navigation/Navigation.d.ts +5 -0
- package/es/components/Navigation/Navigation.js +299 -0
- package/es/components/Navigation/NavigationLogo.d.ts +7 -0
- package/es/components/Navigation/NavigationLogo.js +36 -0
- package/es/components/Navigation/index.d.ts +5 -0
- package/es/components/Navigation/index.js +6 -0
- package/es/components/Navigation/interface.d.ts +95 -0
- package/es/components/Navigation/interface.js +2 -0
- package/es/components/Navigation/style/Nav.css +1 -0
- package/es/components/Navigation/style/Nav.scss +174 -0
- package/es/components/Navigation/style/Navigation.css +1 -0
- package/es/components/Navigation/style/Navigation.scss +443 -0
- package/es/components/Navigation/style/css.js +3 -0
- package/es/components/Navigation/style/index.d.ts +2 -0
- package/es/components/Navigation/style/index.js +3 -0
- package/es/components/Notification/Notification.d.ts +6 -0
- package/es/components/Notification/Notification.js +114 -0
- package/es/components/Notification/NotificationStatic.d.ts +4 -0
- package/es/components/Notification/NotificationStatic.js +501 -0
- package/es/components/Notification/constants.d.ts +5 -0
- package/es/components/Notification/constants.js +7 -0
- package/es/components/Notification/index.d.ts +5 -0
- package/es/components/Notification/index.js +5 -0
- package/es/components/Notification/interface.d.ts +70 -0
- package/es/components/Notification/interface.js +7 -0
- package/es/components/Notification/style/Notification.css +1 -0
- package/es/components/Notification/style/Notification.scss +200 -0
- package/es/components/Notification/style/css.js +2 -0
- package/es/components/Notification/style/index.d.ts +1 -0
- package/es/components/Notification/style/index.js +2 -0
- package/es/components/Pagination/Pagination.d.ts +5 -0
- package/es/components/Pagination/Pagination.js +137 -0
- package/es/components/Pagination/constants.d.ts +53 -0
- package/es/components/Pagination/constants.js +56 -0
- package/es/components/Pagination/index.d.ts +6 -0
- package/es/components/Pagination/index.js +7 -0
- package/es/components/Pagination/interface.d.ts +54 -0
- package/es/components/Pagination/interface.js +2 -0
- package/es/components/Pagination/style/Pagination.css +1 -0
- package/es/components/Pagination/style/Pagination.scss +95 -0
- package/es/components/Pagination/style/css.js +2 -0
- package/es/components/Pagination/style/index.d.ts +1 -0
- package/es/components/Pagination/style/index.js +2 -0
- package/es/components/Pagination/usePagination.d.ts +3 -0
- package/es/components/Pagination/usePagination.js +154 -0
- package/es/components/Popconfirm/Popconfirm.d.ts +6 -0
- package/es/components/Popconfirm/Popconfirm.js +131 -0
- package/es/components/Popconfirm/constants.d.ts +72 -0
- package/es/components/Popconfirm/constants.js +71 -0
- package/es/components/Popconfirm/index.d.ts +4 -0
- package/es/components/Popconfirm/index.js +5 -0
- package/es/components/Popconfirm/interface.d.ts +40 -0
- package/es/components/Popconfirm/interface.js +2 -0
- package/es/components/Popconfirm/style/Popconfirm.css +1 -0
- package/es/components/Popconfirm/style/Popconfirm.scss +264 -0
- package/es/components/Popconfirm/style/css.js +5 -0
- package/es/components/Popconfirm/style/index.d.ts +4 -0
- package/es/components/Popconfirm/style/index.js +5 -0
- package/es/components/Portal/Portal.d.ts +3 -0
- package/es/components/Portal/Portal.js +54 -0
- package/es/components/Portal/index.d.ts +4 -0
- package/es/components/Portal/index.js +5 -0
- package/es/components/Portal/interface.d.ts +7 -0
- package/es/components/Portal/interface.js +2 -0
- package/es/components/ProForm/ProForm.d.ts +3 -0
- package/es/components/ProForm/ProForm.js +254 -0
- package/es/components/ProForm/ProFormDependency.d.ts +3 -0
- package/es/components/ProForm/ProFormDependency.js +69 -0
- package/es/components/ProForm/ProFormGroup.d.ts +3 -0
- package/es/components/ProForm/ProFormGroup.js +78 -0
- package/es/components/ProForm/ProFormList.d.ts +3 -0
- package/es/components/ProForm/ProFormList.js +253 -0
- package/es/components/ProForm/Submitter.d.ts +6 -0
- package/es/components/ProForm/Submitter.js +67 -0
- package/es/components/ProForm/constants.d.ts +18 -0
- package/es/components/ProForm/constants.js +23 -0
- package/es/components/ProForm/context.d.ts +5 -0
- package/es/components/ProForm/context.js +26 -0
- package/es/components/ProForm/fields/ProFormCheckbox.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormCheckbox.js +11 -0
- package/es/components/ProForm/fields/ProFormCheckboxGroup.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormCheckboxGroup.js +12 -0
- package/es/components/ProForm/fields/ProFormDatePicker.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormDatePicker.js +23 -0
- package/es/components/ProForm/fields/ProFormFieldSet.d.ts +4 -0
- package/es/components/ProForm/fields/ProFormFieldSet.js +62 -0
- package/es/components/ProForm/fields/ProFormPassword.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormPassword.js +11 -0
- package/es/components/ProForm/fields/ProFormRadioGroup.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormRadioGroup.js +10 -0
- package/es/components/ProForm/fields/ProFormSelect.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormSelect.js +40 -0
- package/es/components/ProForm/fields/ProFormSlider.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormSlider.js +10 -0
- package/es/components/ProForm/fields/ProFormSwitch.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormSwitch.js +11 -0
- package/es/components/ProForm/fields/ProFormText.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormText.js +10 -0
- package/es/components/ProForm/fields/ProFormTextArea.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormTextArea.js +10 -0
- package/es/components/ProForm/fields/ProFormUpload.d.ts +3 -0
- package/es/components/ProForm/fields/ProFormUpload.js +25 -0
- package/es/components/ProForm/fields/createProFormField.d.ts +4 -0
- package/es/components/ProForm/fields/createProFormField.js +229 -0
- package/es/components/ProForm/fields/index.d.ts +13 -0
- package/es/components/ProForm/fields/index.js +14 -0
- package/es/components/ProForm/hooks/useFieldRequest.d.ts +7 -0
- package/es/components/ProForm/hooks/useFieldRequest.js +90 -0
- package/es/components/ProForm/index.d.ts +30 -0
- package/es/components/ProForm/index.js +37 -0
- package/es/components/ProForm/interface.d.ts +240 -0
- package/es/components/ProForm/interface.js +2 -0
- package/es/components/ProForm/layouts/DrawerForm.d.ts +3 -0
- package/es/components/ProForm/layouts/DrawerForm.js +73 -0
- package/es/components/ProForm/layouts/ModalForm.d.ts +3 -0
- package/es/components/ProForm/layouts/ModalForm.js +74 -0
- package/es/components/ProForm/layouts/QueryFilter.d.ts +4 -0
- package/es/components/ProForm/layouts/QueryFilter.js +158 -0
- package/es/components/ProForm/layouts/index.d.ts +4 -0
- package/es/components/ProForm/layouts/index.js +5 -0
- package/es/components/ProForm/layouts/useOverlayForm.d.ts +17 -0
- package/es/components/ProForm/layouts/useOverlayForm.js +107 -0
- package/es/components/ProForm/style/ProForm.css +1 -0
- package/es/components/ProForm/style/ProForm.scss +118 -0
- package/es/components/ProForm/style/css.js +2 -0
- package/es/components/ProForm/style/index.d.ts +1 -0
- package/es/components/ProForm/style/index.js +2 -0
- package/es/components/ProForm/utils.d.ts +22 -0
- package/es/components/ProForm/utils.js +211 -0
- package/es/components/Progress/Progress.d.ts +6 -0
- package/es/components/Progress/Progress.js +94 -0
- package/es/components/Progress/constants.d.ts +26 -0
- package/es/components/Progress/constants.js +32 -0
- package/es/components/Progress/index.d.ts +5 -0
- package/es/components/Progress/index.js +6 -0
- package/es/components/Progress/interface.d.ts +26 -0
- package/es/components/Progress/interface.js +2 -0
- package/es/components/Progress/style/Progress.css +1 -0
- package/es/components/Progress/style/Progress.scss +120 -0
- package/es/components/Progress/style/css.js +2 -0
- package/es/components/Progress/style/index.d.ts +1 -0
- package/es/components/Progress/style/index.js +2 -0
- package/es/components/Radio/BaseRadio.d.ts +16 -0
- package/es/components/Radio/BaseRadio.js +58 -0
- package/es/components/Radio/Radio.d.ts +6 -0
- package/es/components/Radio/Radio.js +179 -0
- package/es/components/Radio/RadioGroup.d.ts +5 -0
- package/es/components/Radio/RadioGroup.js +100 -0
- package/es/components/Radio/RadioGroupContext.d.ts +22 -0
- package/es/components/Radio/RadioGroupContext.js +7 -0
- package/es/components/Radio/constants.d.ts +36 -0
- package/es/components/Radio/constants.js +63 -0
- package/es/components/Radio/index.d.ts +5 -0
- package/es/components/Radio/index.js +6 -0
- package/es/components/Radio/interface.d.ts +115 -0
- package/es/components/Radio/interface.js +2 -0
- package/es/components/Radio/style/Radio.css +1 -0
- package/es/components/Radio/style/Radio.scss +431 -0
- package/es/components/Radio/style/css.js +3 -0
- package/es/components/Radio/style/index.d.ts +2 -0
- package/es/components/Radio/style/index.js +3 -0
- package/es/components/ResizeObserver/Collection.d.ts +19 -0
- package/es/components/ResizeObserver/Collection.js +41 -0
- package/es/components/ResizeObserver/ResizeObserver.d.ts +7 -0
- package/es/components/ResizeObserver/ResizeObserver.js +31 -0
- package/es/components/ResizeObserver/SingleObserver/index.d.ts +7 -0
- package/es/components/ResizeObserver/SingleObserver/index.js +38 -0
- package/es/components/ResizeObserver/index.d.ts +7 -0
- package/es/components/ResizeObserver/index.js +6 -0
- package/es/components/ResizeObserver/interface.d.ts +16 -0
- package/es/components/ResizeObserver/interface.js +2 -0
- package/es/components/ResizeObserver/useResizeObserver.d.ts +2 -0
- package/es/components/ResizeObserver/useResizeObserver.js +70 -0
- package/es/components/ResizeObserver/utils/observerUtil.d.ts +7 -0
- package/es/components/ResizeObserver/utils/observerUtil.js +39 -0
- package/es/components/ResizeObserver/utils/reactUtil.d.ts +19 -0
- package/es/components/ResizeObserver/utils/reactUtil.js +78 -0
- package/es/components/Segment/Segment.d.ts +6 -0
- package/es/components/Segment/Segment.js +100 -0
- package/es/components/Segment/index.d.ts +4 -0
- package/es/components/Segment/index.js +5 -0
- package/es/components/Segment/interface.d.ts +23 -0
- package/es/components/Segment/interface.js +2 -0
- package/es/components/Segment/style/Segment.css +1 -0
- package/es/components/Segment/style/Segment.scss +80 -0
- package/es/components/Segment/style/css.js +2 -0
- package/es/components/Segment/style/index.d.ts +1 -0
- package/es/components/Segment/style/index.js +2 -0
- package/es/components/Select/Select.d.ts +6 -0
- package/es/components/Select/Select.js +520 -0
- package/es/components/Select/SelectFieldShell.d.ts +22 -0
- package/es/components/Select/SelectFieldShell.js +73 -0
- package/es/components/Select/SelectOptionContent.d.ts +9 -0
- package/es/components/Select/SelectOptionContent.js +36 -0
- package/es/components/Select/SelectSearchControl.d.ts +12 -0
- package/es/components/Select/SelectSearchControl.js +38 -0
- package/es/components/Select/SelectValueContent.d.ts +18 -0
- package/es/components/Select/SelectValueContent.js +99 -0
- package/es/components/Select/constants.d.ts +14 -0
- package/es/components/Select/constants.js +20 -0
- package/es/components/Select/index.d.ts +4 -0
- package/es/components/Select/index.js +5 -0
- package/es/components/Select/interface.d.ts +83 -0
- package/es/components/Select/interface.js +4 -0
- package/es/components/Select/style/Select.css +1 -0
- package/es/components/Select/style/Select.scss +480 -0
- package/es/components/Select/style/css.js +4 -0
- package/es/components/Select/style/index.d.ts +3 -0
- package/es/components/Select/style/index.js +4 -0
- package/es/components/Select/utils.d.ts +21 -0
- package/es/components/Select/utils.js +140 -0
- package/es/components/Skeleton/Skeleton.d.ts +6 -0
- package/es/components/Skeleton/Skeleton.js +49 -0
- package/es/components/Skeleton/index.d.ts +4 -0
- package/es/components/Skeleton/index.js +5 -0
- package/es/components/Skeleton/interface.d.ts +19 -0
- package/es/components/Skeleton/interface.js +2 -0
- package/es/components/Skeleton/style/Skeleton.css +1 -0
- package/es/components/Skeleton/style/Skeleton.scss +47 -0
- package/es/components/Skeleton/style/css.js +2 -0
- package/es/components/Skeleton/style/index.d.ts +1 -0
- package/es/components/Skeleton/style/index.js +2 -0
- package/es/components/Slider/Slider.d.ts +6 -0
- package/es/components/Slider/Slider.js +116 -0
- package/es/components/Slider/index.d.ts +4 -0
- package/es/components/Slider/index.js +5 -0
- package/es/components/Slider/interface.d.ts +39 -0
- package/es/components/Slider/interface.js +2 -0
- package/es/components/Slider/style/Slider.css +1 -0
- package/es/components/Slider/style/Slider.scss +182 -0
- package/es/components/Slider/style/css.js +2 -0
- package/es/components/Slider/style/index.d.ts +1 -0
- package/es/components/Slider/style/index.js +2 -0
- package/es/components/Space/Space.d.ts +5 -0
- package/es/components/Space/Space.js +78 -0
- package/es/components/Space/constants.d.ts +33 -0
- package/es/components/Space/constants.js +37 -0
- package/es/components/Space/index.d.ts +5 -0
- package/es/components/Space/index.js +6 -0
- package/es/components/Space/interface.d.ts +12 -0
- package/es/components/Space/interface.js +2 -0
- package/es/components/Space/style/Space.css +1 -0
- package/es/components/Space/style/Space.scss +40 -0
- package/es/components/Space/style/css.js +2 -0
- package/es/components/Space/style/index.d.ts +1 -0
- package/es/components/Space/style/index.js +2 -0
- package/es/components/Spinner/Spinner.d.ts +6 -0
- package/es/components/Spinner/Spinner.js +83 -0
- package/es/components/Spinner/index.d.ts +4 -0
- package/es/components/Spinner/index.js +5 -0
- package/es/components/Spinner/interface.d.ts +14 -0
- package/es/components/Spinner/interface.js +2 -0
- package/es/components/Spinner/style/Spinner.css +1 -0
- package/es/components/Spinner/style/Spinner.scss +90 -0
- package/es/components/Spinner/style/css.js +2 -0
- package/es/components/Spinner/style/index.d.ts +1 -0
- package/es/components/Spinner/style/index.js +2 -0
- package/es/components/Step/Step.d.ts +5 -0
- package/es/components/Step/Step.js +116 -0
- package/es/components/Step/constants.d.ts +59 -0
- package/es/components/Step/constants.js +65 -0
- package/es/components/Step/index.d.ts +4 -0
- package/es/components/Step/index.js +5 -0
- package/es/components/Step/interface.d.ts +22 -0
- package/es/components/Step/interface.js +2 -0
- package/es/components/Step/style/Step.css +1 -0
- package/es/components/Step/style/Step.scss +91 -0
- package/es/components/Step/style/css.js +2 -0
- package/es/components/Step/style/index.d.ts +1 -0
- package/es/components/Step/style/index.js +2 -0
- package/es/components/Switch/Switch.d.ts +6 -0
- package/es/components/Switch/Switch.js +93 -0
- package/es/components/Switch/constants.d.ts +11 -0
- package/es/components/Switch/constants.js +12 -0
- package/es/components/Switch/index.d.ts +5 -0
- package/es/components/Switch/index.js +6 -0
- package/es/components/Switch/interface.d.ts +26 -0
- package/es/components/Switch/interface.js +2 -0
- package/es/components/Switch/style/Switch.css +1 -0
- package/es/components/Switch/style/Switch.scss +126 -0
- package/es/components/Switch/style/css.js +3 -0
- package/es/components/Switch/style/index.d.ts +2 -0
- package/es/components/Switch/style/index.js +3 -0
- package/es/components/Table/Table.d.ts +10 -0
- package/es/components/Table/Table.js +164 -0
- package/es/components/Table/VirtualTable.d.ts +9 -0
- package/es/components/Table/VirtualTable.js +166 -0
- package/es/components/Table/constants.d.ts +4 -0
- package/es/components/Table/constants.js +5 -0
- package/es/components/Table/core/useTableColumns.d.ts +34 -0
- package/es/components/Table/core/useTableColumns.js +191 -0
- package/es/components/Table/core/useTableDataPipeline.d.ts +50 -0
- package/es/components/Table/core/useTableDataPipeline.js +262 -0
- package/es/components/Table/core/useTableExpand.d.ts +9 -0
- package/es/components/Table/core/useTableExpand.js +38 -0
- package/es/components/Table/core/useTableSelection.d.ts +17 -0
- package/es/components/Table/core/useTableSelection.js +144 -0
- package/es/components/Table/features/ExpandTrigger.d.ts +4 -0
- package/es/components/Table/features/ExpandTrigger.js +24 -0
- package/es/components/Table/features/SelectionColumn.d.ts +11 -0
- package/es/components/Table/features/SelectionColumn.js +41 -0
- package/es/components/Table/features/SortTrigger.d.ts +7 -0
- package/es/components/Table/features/SortTrigger.js +26 -0
- package/es/components/Table/index.d.ts +6 -0
- package/es/components/Table/index.js +7 -0
- package/es/components/Table/interface.d.ts +179 -0
- package/es/components/Table/interface.js +2 -0
- package/es/components/Table/internal/index.d.ts +3 -0
- package/es/components/Table/internal/index.js +3 -0
- package/es/components/Table/internal/kernel/Body/BodyRow.d.ts +37 -0
- package/es/components/Table/internal/kernel/Body/BodyRow.js +174 -0
- package/es/components/Table/internal/kernel/Body/ExpandedRow.d.ts +15 -0
- package/es/components/Table/internal/kernel/Body/ExpandedRow.js +56 -0
- package/es/components/Table/internal/kernel/Body/MeasureCell.d.ts +8 -0
- package/es/components/Table/internal/kernel/Body/MeasureCell.js +39 -0
- package/es/components/Table/internal/kernel/Body/MeasureRow.d.ts +10 -0
- package/es/components/Table/internal/kernel/Body/MeasureRow.js +53 -0
- package/es/components/Table/internal/kernel/Body/index.d.ts +9 -0
- package/es/components/Table/internal/kernel/Body/index.js +124 -0
- package/es/components/Table/internal/kernel/Cell/index.d.ts +39 -0
- package/es/components/Table/internal/kernel/Cell/index.js +179 -0
- package/es/components/Table/internal/kernel/Cell/useCellRender.d.ts +3 -0
- package/es/components/Table/internal/kernel/Cell/useCellRender.js +63 -0
- package/es/components/Table/internal/kernel/Cell/useHoverState.d.ts +2 -0
- package/es/components/Table/internal/kernel/Cell/useHoverState.js +15 -0
- package/es/components/Table/internal/kernel/ColGroup.d.ts +8 -0
- package/es/components/Table/internal/kernel/ColGroup.js +56 -0
- package/es/components/Table/internal/kernel/FixedHolder/index.d.ts +27 -0
- package/es/components/Table/internal/kernel/FixedHolder/index.js +181 -0
- package/es/components/Table/internal/kernel/Footer/Cell.d.ts +11 -0
- package/es/components/Table/internal/kernel/Footer/Cell.js +50 -0
- package/es/components/Table/internal/kernel/Footer/Row.d.ts +8 -0
- package/es/components/Table/internal/kernel/Footer/Row.js +20 -0
- package/es/components/Table/internal/kernel/Footer/Summary.d.ts +14 -0
- package/es/components/Table/internal/kernel/Footer/Summary.js +13 -0
- package/es/components/Table/internal/kernel/Footer/SummaryContext.d.ts +11 -0
- package/es/components/Table/internal/kernel/Footer/SummaryContext.js +4 -0
- package/es/components/Table/internal/kernel/Footer/index.d.ts +16 -0
- package/es/components/Table/internal/kernel/Footer/index.js +36 -0
- package/es/components/Table/internal/kernel/Header/Header.d.ts +9 -0
- package/es/components/Table/internal/kernel/Header/Header.js +109 -0
- package/es/components/Table/internal/kernel/Header/HeaderRow.d.ts +18 -0
- package/es/components/Table/internal/kernel/Header/HeaderRow.js +60 -0
- package/es/components/Table/internal/kernel/Panel/index.d.ts +7 -0
- package/es/components/Table/internal/kernel/Panel/index.js +15 -0
- package/es/components/Table/internal/kernel/Table.d.ts +126 -0
- package/es/components/Table/internal/kernel/Table.js +692 -0
- package/es/components/Table/internal/kernel/VirtualTable/BodyGrid.d.ts +13 -0
- package/es/components/Table/internal/kernel/VirtualTable/BodyGrid.js +287 -0
- package/es/components/Table/internal/kernel/VirtualTable/BodyLine.d.ts +14 -0
- package/es/components/Table/internal/kernel/VirtualTable/BodyLine.js +113 -0
- package/es/components/Table/internal/kernel/VirtualTable/VirtualCell.d.ts +26 -0
- package/es/components/Table/internal/kernel/VirtualTable/VirtualCell.js +105 -0
- package/es/components/Table/internal/kernel/VirtualTable/context.d.ts +13 -0
- package/es/components/Table/internal/kernel/VirtualTable/context.js +5 -0
- package/es/components/Table/internal/kernel/VirtualTable/index.d.ts +17 -0
- package/es/components/Table/internal/kernel/VirtualTable/index.js +91 -0
- package/es/components/Table/internal/kernel/constant.d.ts +2 -0
- package/es/components/Table/internal/kernel/constant.js +4 -0
- package/es/components/Table/internal/kernel/context/PerfContext.d.ts +6 -0
- package/es/components/Table/internal/kernel/context/PerfContext.js +8 -0
- package/es/components/Table/internal/kernel/context/TableContext.d.ts +51 -0
- package/es/components/Table/internal/kernel/context/TableContext.js +10 -0
- package/es/components/Table/internal/kernel/hooks/useColumns/index.d.ts +31 -0
- package/es/components/Table/internal/kernel/hooks/useColumns/index.js +210 -0
- package/es/components/Table/internal/kernel/hooks/useColumns/useWidthColumns.d.ts +5 -0
- package/es/components/Table/internal/kernel/hooks/useColumns/useWidthColumns.js +69 -0
- package/es/components/Table/internal/kernel/hooks/useExpand.d.ts +10 -0
- package/es/components/Table/internal/kernel/hooks/useExpand.js +84 -0
- package/es/components/Table/internal/kernel/hooks/useFixedInfo.d.ts +2 -0
- package/es/components/Table/internal/kernel/hooks/useFixedInfo.js +18 -0
- package/es/components/Table/internal/kernel/hooks/useFlattenRecords.d.ts +19 -0
- package/es/components/Table/internal/kernel/hooks/useFlattenRecords.js +54 -0
- package/es/components/Table/internal/kernel/hooks/useFrame.d.ts +7 -0
- package/es/components/Table/internal/kernel/hooks/useFrame.js +63 -0
- package/es/components/Table/internal/kernel/hooks/useHover.d.ts +2 -0
- package/es/components/Table/internal/kernel/hooks/useHover.js +19 -0
- package/es/components/Table/internal/kernel/hooks/useRenderTimes.d.ts +5 -0
- package/es/components/Table/internal/kernel/hooks/useRenderTimes.js +41 -0
- package/es/components/Table/internal/kernel/hooks/useRowInfo.d.ts +11 -0
- package/es/components/Table/internal/kernel/hooks/useRowInfo.js +62 -0
- package/es/components/Table/internal/kernel/hooks/useSticky.d.ts +10 -0
- package/es/components/Table/internal/kernel/hooks/useSticky.js +33 -0
- package/es/components/Table/internal/kernel/hooks/useStickyOffsets.d.ts +6 -0
- package/es/components/Table/internal/kernel/hooks/useStickyOffsets.js +31 -0
- package/es/components/Table/internal/kernel/index.d.ts +12 -0
- package/es/components/Table/internal/kernel/index.js +11 -0
- package/es/components/Table/internal/kernel/interface.d.ts +202 -0
- package/es/components/Table/internal/kernel/interface.js +2 -0
- package/es/components/Table/internal/kernel/namePathType.d.ts +13 -0
- package/es/components/Table/internal/kernel/namePathType.js +3 -0
- package/es/components/Table/internal/kernel/selector-context/Immutable.d.ts +10 -0
- package/es/components/Table/internal/kernel/selector-context/Immutable.js +73 -0
- package/es/components/Table/internal/kernel/selector-context/context.d.ts +26 -0
- package/es/components/Table/internal/kernel/selector-context/context.js +83 -0
- package/es/components/Table/internal/kernel/selector-context/index.d.ts +7 -0
- package/es/components/Table/internal/kernel/selector-context/index.js +9 -0
- package/es/components/Table/internal/kernel/selector-context/isEqual.d.ts +5 -0
- package/es/components/Table/internal/kernel/selector-context/isEqual.js +48 -0
- package/es/components/Table/internal/kernel/stickyScrollBar.d.ts +12 -0
- package/es/components/Table/internal/kernel/stickyScrollBar.js +192 -0
- package/es/components/Table/internal/kernel/sugar/Column.d.ts +10 -0
- package/es/components/Table/internal/kernel/sugar/Column.js +11 -0
- package/es/components/Table/internal/kernel/sugar/ColumnGroup.d.ts +12 -0
- package/es/components/Table/internal/kernel/sugar/ColumnGroup.js +11 -0
- package/es/components/Table/internal/kernel/utils/dom/canUseDom.d.ts +1 -0
- package/es/components/Table/internal/kernel/utils/dom/canUseDom.js +4 -0
- package/es/components/Table/internal/kernel/utils/dom/isVisible.d.ts +2 -0
- package/es/components/Table/internal/kernel/utils/dom/isVisible.js +28 -0
- package/es/components/Table/internal/kernel/utils/expandUtil.d.ts +4 -0
- package/es/components/Table/internal/kernel/utils/expandUtil.js +47 -0
- package/es/components/Table/internal/kernel/utils/fixUtil.d.ts +21 -0
- package/es/components/Table/internal/kernel/utils/fixUtil.js +64 -0
- package/es/components/Table/internal/kernel/utils/get.d.ts +1 -0
- package/es/components/Table/internal/kernel/utils/get.js +11 -0
- package/es/components/Table/internal/kernel/utils/getScrollBarSize.d.ts +7 -0
- package/es/components/Table/internal/kernel/utils/getScrollBarSize.js +38 -0
- package/es/components/Table/internal/kernel/utils/legacyUtil.d.ts +5 -0
- package/es/components/Table/internal/kernel/utils/legacyUtil.js +31 -0
- package/es/components/Table/internal/kernel/utils/offsetUtil.d.ts +4 -0
- package/es/components/Table/internal/kernel/utils/offsetUtil.js +14 -0
- package/es/components/Table/internal/kernel/utils/pickAttrs.d.ts +6 -0
- package/es/components/Table/internal/kernel/utils/pickAttrs.js +33 -0
- package/es/components/Table/internal/kernel/utils/useMemo.d.ts +1 -0
- package/es/components/Table/internal/kernel/utils/useMemo.js +10 -0
- package/es/components/Table/internal/kernel/utils/valueUtil.d.ts +8 -0
- package/es/components/Table/internal/kernel/utils/valueUtil.js +30 -0
- package/es/components/Table/internal/kernel/utils/warning.d.ts +4 -0
- package/es/components/Table/internal/kernel/utils/warning.js +17 -0
- package/es/components/Table/renderers/BodyCell.d.ts +15 -0
- package/es/components/Table/renderers/BodyCell.js +40 -0
- package/es/components/Table/renderers/CellContent.d.ts +4 -0
- package/es/components/Table/renderers/CellContent.js +26 -0
- package/es/components/Table/renderers/EmptyState.d.ts +4 -0
- package/es/components/Table/renderers/EmptyState.js +15 -0
- package/es/components/Table/renderers/ExpandedRowContainer.d.ts +4 -0
- package/es/components/Table/renderers/ExpandedRowContainer.js +10 -0
- package/es/components/Table/renderers/HeaderCell.d.ts +7 -0
- package/es/components/Table/renderers/HeaderCell.js +22 -0
- package/es/components/Table/style/Table.css +1 -0
- package/es/components/Table/style/Table.scss +376 -0
- package/es/components/Table/style/css.js +10 -0
- package/es/components/Table/style/index.d.ts +9 -0
- package/es/components/Table/style/index.js +10 -0
- package/es/components/Tabs/Tabs.d.ts +6 -0
- package/es/components/Tabs/Tabs.js +111 -0
- package/es/components/Tabs/index.d.ts +4 -0
- package/es/components/Tabs/index.js +5 -0
- package/es/components/Tabs/interface.d.ts +27 -0
- package/es/components/Tabs/interface.js +2 -0
- package/es/components/Tabs/style/Tabs.css +1 -0
- package/es/components/Tabs/style/Tabs.scss +100 -0
- package/es/components/Tabs/style/css.js +2 -0
- package/es/components/Tabs/style/index.d.ts +1 -0
- package/es/components/Tabs/style/index.js +2 -0
- package/es/components/Tag/Tag.d.ts +6 -0
- package/es/components/Tag/Tag.js +80 -0
- package/es/components/Tag/constants.d.ts +18 -0
- package/es/components/Tag/constants.js +28 -0
- package/es/components/Tag/index.d.ts +5 -0
- package/es/components/Tag/index.js +6 -0
- package/es/components/Tag/interface.d.ts +15 -0
- package/es/components/Tag/interface.js +2 -0
- package/es/components/Tag/style/Tag.css +1 -0
- package/es/components/Tag/style/Tag.scss +103 -0
- package/es/components/Tag/style/css.js +2 -0
- package/es/components/Tag/style/index.d.ts +1 -0
- package/es/components/Tag/style/index.js +2 -0
- package/es/components/Tooltip/Tooltip.d.ts +6 -0
- package/es/components/Tooltip/Tooltip.js +62 -0
- package/es/components/Tooltip/index.d.ts +4 -0
- package/es/components/Tooltip/index.js +5 -0
- package/es/components/Tooltip/interface.d.ts +20 -0
- package/es/components/Tooltip/interface.js +2 -0
- package/es/components/Tooltip/style/Tooltip.css +1 -0
- package/es/components/Tooltip/style/Tooltip.scss +95 -0
- package/es/components/Tooltip/style/css.js +2 -0
- package/es/components/Tooltip/style/index.d.ts +1 -0
- package/es/components/Tooltip/style/index.js +2 -0
- package/es/components/Tour/Tour.d.ts +3 -0
- package/es/components/Tour/Tour.js +243 -0
- package/es/components/Tour/index.d.ts +4 -0
- package/es/components/Tour/index.js +5 -0
- package/es/components/Tour/interface.d.ts +46 -0
- package/es/components/Tour/interface.js +2 -0
- package/es/components/Trigger/Trigger.d.ts +5 -0
- package/es/components/Trigger/Trigger.js +151 -0
- package/es/components/Trigger/index.d.ts +3 -0
- package/es/components/Trigger/index.js +4 -0
- package/es/components/Trigger/interface.d.ts +52 -0
- package/es/components/Trigger/interface.js +2 -0
- package/es/components/Trigger/style/Trigger.css +1 -0
- package/es/components/Trigger/style/Trigger.scss +18 -0
- package/es/components/Trigger/style/css.js +2 -0
- package/es/components/Trigger/style/index.d.ts +1 -0
- package/es/components/Trigger/style/index.js +2 -0
- package/es/components/Typography/Typography.d.ts +17 -0
- package/es/components/Typography/Typography.js +201 -0
- package/es/components/Typography/constants.d.ts +33 -0
- package/es/components/Typography/constants.js +9 -0
- package/es/components/Typography/index.d.ts +4 -0
- package/es/components/Typography/index.js +5 -0
- package/es/components/Typography/interface.d.ts +72 -0
- package/es/components/Typography/interface.js +22 -0
- package/es/components/Typography/render.d.ts +328 -0
- package/es/components/Typography/render.js +106 -0
- package/es/components/Typography/style/Typography.css +1 -0
- package/es/components/Typography/style/Typography.scss +132 -0
- package/es/components/Typography/style/css.js +4 -0
- package/es/components/Typography/style/index.d.ts +3 -0
- package/es/components/Typography/style/index.js +4 -0
- package/es/components/Typography/useTypographyEnhancements.d.ts +43 -0
- package/es/components/Typography/useTypographyEnhancements.js +110 -0
- package/es/components/Typography/utils.d.ts +17 -0
- package/es/components/Typography/utils.js +88 -0
- package/es/components/Upload/Upload.d.ts +7 -0
- package/es/components/Upload/Upload.js +88 -0
- package/es/components/Upload/UploadFileBar.d.ts +6 -0
- package/es/components/Upload/UploadFileBar.js +63 -0
- package/es/components/Upload/index.d.ts +5 -0
- package/es/components/Upload/index.js +6 -0
- package/es/components/Upload/interface.d.ts +41 -0
- package/es/components/Upload/interface.js +2 -0
- package/es/components/Upload/style/Upload.css +1 -0
- package/es/components/Upload/style/Upload.scss +44 -0
- package/es/components/Upload/style/UploadFileBar.css +1 -0
- package/es/components/Upload/style/UploadFileBar.scss +94 -0
- package/es/components/Upload/style/css.js +3 -0
- package/es/components/Upload/style/index.d.ts +2 -0
- package/es/components/Upload/style/index.js +3 -0
- package/es/components/VirtualList/Filler.d.ts +21 -0
- package/es/components/VirtualList/Filler.js +56 -0
- package/es/components/VirtualList/Item.d.ts +6 -0
- package/es/components/VirtualList/Item.js +12 -0
- package/es/components/VirtualList/ScrollBar.d.ts +22 -0
- package/es/components/VirtualList/ScrollBar.js +237 -0
- package/es/components/VirtualList/VirtualList.d.ts +62 -0
- package/es/components/VirtualList/VirtualList.js +529 -0
- package/es/components/VirtualList/constants.d.ts +4 -0
- package/es/components/VirtualList/constants.js +5 -0
- package/es/components/VirtualList/hooks/useChildren.d.ts +2 -0
- package/es/components/VirtualList/hooks/useChildren.js +25 -0
- package/es/components/VirtualList/hooks/useDiffItem.d.ts +2 -0
- package/es/components/VirtualList/hooks/useDiffItem.js +16 -0
- package/es/components/VirtualList/hooks/useFrameWheel.d.ts +10 -0
- package/es/components/VirtualList/hooks/useFrameWheel.js +85 -0
- package/es/components/VirtualList/hooks/useGetSize.d.ts +7 -0
- package/es/components/VirtualList/hooks/useGetSize.js +47 -0
- package/es/components/VirtualList/hooks/useHeights.d.ts +8 -0
- package/es/components/VirtualList/hooks/useHeights.js +96 -0
- package/es/components/VirtualList/hooks/useMobileTouchMove.d.ts +2 -0
- package/es/components/VirtualList/hooks/useMobileTouchMove.js +85 -0
- package/es/components/VirtualList/hooks/useOriginScroll.d.ts +2 -0
- package/es/components/VirtualList/hooks/useOriginScroll.js +44 -0
- package/es/components/VirtualList/hooks/useScrollDrag.d.ts +3 -0
- package/es/components/VirtualList/hooks/useScrollDrag.js +76 -0
- package/es/components/VirtualList/hooks/useScrollTo.d.ts +18 -0
- package/es/components/VirtualList/hooks/useScrollTo.js +132 -0
- package/es/components/VirtualList/index.d.ts +9 -0
- package/es/components/VirtualList/index.js +5 -0
- package/es/components/VirtualList/interface.d.ts +26 -0
- package/es/components/VirtualList/interface.js +2 -0
- package/es/components/VirtualList/style/VirtualList.css +1 -0
- package/es/components/VirtualList/style/VirtualList.scss +5 -0
- package/es/components/VirtualList/style/css.js +2 -0
- package/es/components/VirtualList/style/index.d.ts +1 -0
- package/es/components/VirtualList/style/index.js +2 -0
- package/es/components/VirtualList/utils/CacheMap.d.ts +16 -0
- package/es/components/VirtualList/utils/CacheMap.js +43 -0
- package/es/components/VirtualList/utils/algorithmUtil.d.ts +23 -0
- package/es/components/VirtualList/utils/algorithmUtil.js +77 -0
- package/es/components/VirtualList/utils/isFirefox.d.ts +2 -0
- package/es/components/VirtualList/utils/isFirefox.js +4 -0
- package/es/components/VirtualList/utils/raf.d.ts +9 -0
- package/es/components/VirtualList/utils/raf.js +47 -0
- package/es/components/VirtualList/utils/scrollbarUtil.d.ts +1 -0
- package/es/components/VirtualList/utils/scrollbarUtil.js +12 -0
- package/es/index.css +1 -0
- package/es/index.d.ts +89 -0
- package/es/index.js +46 -0
- package/es/styles/_api.scss +5 -0
- package/es/styles/_settings.scss +5 -0
- package/es/styles/index.css +1 -0
- package/es/styles/index.scss +2 -0
- package/es/styles/public/_index.scss +2 -0
- package/es/styles/public/_system.scss +1 -0
- package/es/styles/public/_theme.scss +3 -0
- package/es/styles/recipes/_index.scss +1 -0
- package/es/styles/recipes/_variants.scss +110 -0
- package/es/styles/system/_index.scss +4 -0
- package/es/styles/system/_props.scss +95 -0
- package/es/styles/system/_public.scss +5 -0
- package/es/styles/system/_sx.scss +81 -0
- package/es/styles/theme/_breakpoints.scss +95 -0
- package/es/styles/theme/_functions.scss +271 -0
- package/es/styles/theme/_index.scss +6 -0
- package/es/styles/theme/_mixins.scss +37 -0
- package/es/styles/theme/_scales.scss +29 -0
- package/es/styles/theme/_values.scss +68 -0
- package/es/styles/tokens/_index.scss +11 -0
- package/es/styles/tokens/breakpoint/_index.scss +2 -0
- package/es/styles/tokens/breakpoint/_primitives.scss +8 -0
- package/es/styles/tokens/color/_index.scss +3 -0
- package/es/styles/tokens/color/_primitives.scss +42 -0
- package/es/styles/tokens/color/_semantic-color.scss +172 -0
- package/es/styles/tokens/opacity/_functions.scss +13 -0
- package/es/styles/tokens/opacity/_index.scss +3 -0
- package/es/styles/tokens/opacity/_primitives.scss +12 -0
- package/es/styles/tokens/radius/_index.scss +2 -0
- package/es/styles/tokens/radius/_primitives.scss +11 -0
- package/es/styles/tokens/shadow/_index.scss +2 -0
- package/es/styles/tokens/shadow/_primitives.scss +7 -0
- package/es/styles/tokens/sizing/_functions.scss +17 -0
- package/es/styles/tokens/sizing/_index.scss +4 -0
- package/es/styles/tokens/sizing/_primitives.scss +12 -0
- package/es/styles/tokens/sizing/_semantic-sizing.scss +11 -0
- package/es/styles/tokens/spacing/_functions.scss +51 -0
- package/es/styles/tokens/spacing/_index.scss +4 -0
- package/es/styles/tokens/spacing/_primitives.scss +22 -0
- package/es/styles/tokens/spacing/_semantic-spacing.scss +22 -0
- package/es/styles/tokens/typography/_functions.scss +31 -0
- package/es/styles/tokens/typography/_index.scss +4 -0
- package/es/styles/tokens/typography/_primitives.scss +27 -0
- package/es/styles/tokens/typography/_semantic-typography.scss +216 -0
- package/es/styles/utilities/_generator.scss +55 -0
- package/es/styles/utilities/_index.scss +14 -0
- package/es/utils/classnames.d.ts +5 -0
- package/es/utils/classnames.js +18 -0
- package/es/utils/clipboard.d.ts +2 -0
- package/es/utils/clipboard.js +50 -0
- package/es/utils/ref.d.ts +4 -0
- package/es/utils/ref.js +32 -0
- package/es/utils/uuid.d.ts +2 -0
- package/es/utils/uuid.js +16 -0
- package/jest.setup.d.ts +1 -0
- package/jest.setup.ts +1 -0
- package/lib/components/Accordion/Accordion.d.ts +6 -0
- package/lib/components/Accordion/Accordion.js +112 -0
- package/lib/components/Accordion/index.d.ts +4 -0
- package/lib/components/Accordion/index.js +33 -0
- package/lib/components/Accordion/interface.d.ts +29 -0
- package/lib/components/Accordion/interface.js +6 -0
- package/lib/components/Accordion/style/Accordion.css +1 -0
- package/lib/components/Accordion/style/Accordion.scss +127 -0
- package/lib/components/Accordion/style/css.js +4 -0
- package/lib/components/Accordion/style/index.d.ts +1 -0
- package/lib/components/Accordion/style/index.js +4 -0
- package/lib/components/Alert/Alert.d.ts +6 -0
- package/lib/components/Alert/Alert.js +103 -0
- package/lib/components/Alert/index.d.ts +4 -0
- package/lib/components/Alert/index.js +33 -0
- package/lib/components/Alert/interface.d.ts +40 -0
- package/lib/components/Alert/interface.js +12 -0
- package/lib/components/Alert/style/Alert.css +1 -0
- package/lib/components/Alert/style/Alert.scss +89 -0
- package/lib/components/Alert/style/css.js +5 -0
- package/lib/components/Alert/style/index.d.ts +2 -0
- package/lib/components/Alert/style/index.js +5 -0
- package/lib/components/Button/Button.d.ts +4 -0
- package/lib/components/Button/Button.js +131 -0
- package/lib/components/Button/constants.d.ts +56 -0
- package/lib/components/Button/constants.js +76 -0
- package/lib/components/Button/index.d.ts +5 -0
- package/lib/components/Button/index.js +45 -0
- package/lib/components/Button/interface.d.ts +14 -0
- package/lib/components/Button/interface.js +6 -0
- package/lib/components/Button/style/Button.css +1 -0
- package/lib/components/Button/style/Button.scss +190 -0
- package/lib/components/Button/style/css.js +4 -0
- package/lib/components/Button/style/index.d.ts +1 -0
- package/lib/components/Button/style/index.js +4 -0
- package/lib/components/Calendar/Calendar.d.ts +7 -0
- package/lib/components/Calendar/Calendar.js +122 -0
- package/lib/components/Calendar/index.d.ts +4 -0
- package/lib/components/Calendar/index.js +33 -0
- package/lib/components/Calendar/interface.d.ts +29 -0
- package/lib/components/Calendar/interface.js +6 -0
- package/lib/components/Calendar/style/Calendar.css +1 -0
- package/lib/components/Calendar/style/Calendar.scss +377 -0
- package/lib/components/Calendar/style/css.js +4 -0
- package/lib/components/Calendar/style/index.d.ts +1 -0
- package/lib/components/Calendar/style/index.js +4 -0
- package/lib/components/Carousel/Carousel.d.ts +6 -0
- package/lib/components/Carousel/Carousel.js +56 -0
- package/lib/components/Carousel/index.d.ts +4 -0
- package/lib/components/Carousel/index.js +33 -0
- package/lib/components/Carousel/interface.d.ts +15 -0
- package/lib/components/Carousel/interface.js +6 -0
- package/lib/components/Carousel/style/Carousel.css +1 -0
- package/lib/components/Carousel/style/Carousel.scss +63 -0
- package/lib/components/Carousel/style/css.js +4 -0
- package/lib/components/Carousel/style/index.d.ts +1 -0
- package/lib/components/Carousel/style/index.js +4 -0
- package/lib/components/Checkbox/BaseCheckbox.d.ts +6 -0
- package/lib/components/Checkbox/BaseCheckbox.js +94 -0
- package/lib/components/Checkbox/Checkbox.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.js +130 -0
- package/lib/components/Checkbox/CheckboxGroup.d.ts +5 -0
- package/lib/components/Checkbox/CheckboxGroup.js +150 -0
- package/lib/components/Checkbox/CheckboxGroupContext.d.ts +14 -0
- package/lib/components/Checkbox/CheckboxGroupContext.js +9 -0
- package/lib/components/Checkbox/constants.d.ts +7 -0
- package/lib/components/Checkbox/constants.js +14 -0
- package/lib/components/Checkbox/index.d.ts +10 -0
- package/lib/components/Checkbox/index.js +52 -0
- package/lib/components/Checkbox/interface.d.ts +77 -0
- package/lib/components/Checkbox/interface.js +6 -0
- package/lib/components/Checkbox/style/Checkbox.css +1 -0
- package/lib/components/Checkbox/style/Checkbox.scss +235 -0
- package/lib/components/Checkbox/style/css.js +4 -0
- package/lib/components/Checkbox/style/index.d.ts +1 -0
- package/lib/components/Checkbox/style/index.js +4 -0
- package/lib/components/CoachMark/CoachMark.d.ts +4 -0
- package/lib/components/CoachMark/CoachMark.js +152 -0
- package/lib/components/CoachMark/index.d.ts +4 -0
- package/lib/components/CoachMark/index.js +33 -0
- package/lib/components/CoachMark/interface.d.ts +47 -0
- package/lib/components/CoachMark/interface.js +8 -0
- package/lib/components/CoachMark/style/CoachMark.css +1 -0
- package/lib/components/CoachMark/style/CoachMark.scss +176 -0
- package/lib/components/CoachMark/style/css.js +7 -0
- package/lib/components/CoachMark/style/index.d.ts +4 -0
- package/lib/components/CoachMark/style/index.js +7 -0
- package/lib/components/Copy/Copy.d.ts +6 -0
- package/lib/components/Copy/Copy.js +80 -0
- package/lib/components/Copy/index.d.ts +4 -0
- package/lib/components/Copy/index.js +33 -0
- package/lib/components/Copy/interface.d.ts +20 -0
- package/lib/components/Copy/interface.js +6 -0
- package/lib/components/Copy/style/Copy.css +1 -0
- package/lib/components/Copy/style/Copy.scss +35 -0
- package/lib/components/Copy/style/css.js +4 -0
- package/lib/components/Copy/style/index.d.ts +1 -0
- package/lib/components/Copy/style/index.js +4 -0
- package/lib/components/Divider/Divider.d.ts +4 -0
- package/lib/components/Divider/Divider.js +62 -0
- package/lib/components/Divider/index.d.ts +4 -0
- package/lib/components/Divider/index.js +31 -0
- package/lib/components/Divider/interface.d.ts +20 -0
- package/lib/components/Divider/interface.js +6 -0
- package/lib/components/Divider/style/Divider.css +1 -0
- package/lib/components/Divider/style/Divider.scss +149 -0
- package/lib/components/Divider/style/css.js +4 -0
- package/lib/components/Divider/style/index.d.ts +1 -0
- package/lib/components/Divider/style/index.js +4 -0
- package/lib/components/Drawer/Drawer.d.ts +4 -0
- package/lib/components/Drawer/Drawer.js +281 -0
- package/lib/components/Drawer/constants.d.ts +15 -0
- package/lib/components/Drawer/constants.js +22 -0
- package/lib/components/Drawer/index.d.ts +3 -0
- package/lib/components/Drawer/index.js +46 -0
- package/lib/components/Drawer/interface.d.ts +79 -0
- package/lib/components/Drawer/interface.js +6 -0
- package/lib/components/Drawer/style/Drawer.css +1 -0
- package/lib/components/Drawer/style/Drawer.scss +163 -0
- package/lib/components/Drawer/style/css.js +4 -0
- package/lib/components/Drawer/style/index.d.ts +1 -0
- package/lib/components/Drawer/style/index.js +4 -0
- package/lib/components/Dropdown/Dropdown.d.ts +5 -0
- package/lib/components/Dropdown/Dropdown.js +31 -0
- package/lib/components/Dropdown/index.d.ts +3 -0
- package/lib/components/Dropdown/index.js +35 -0
- package/lib/components/Dropdown/interface.d.ts +8 -0
- package/lib/components/Dropdown/interface.js +6 -0
- package/lib/components/Dropdown/style/Dropdown.css +0 -0
- package/lib/components/Dropdown/style/Dropdown.scss +2 -0
- package/lib/components/Dropdown/style/css.js +5 -0
- package/lib/components/Dropdown/style/index.d.ts +2 -0
- package/lib/components/Dropdown/style/index.js +5 -0
- package/lib/components/Empty/Empty.d.ts +6 -0
- package/lib/components/Empty/Empty.js +77 -0
- package/lib/components/Empty/index.d.ts +4 -0
- package/lib/components/Empty/index.js +33 -0
- package/lib/components/Empty/interface.d.ts +11 -0
- package/lib/components/Empty/interface.js +6 -0
- package/lib/components/Empty/style/Empty.css +1 -0
- package/lib/components/Empty/style/Empty.scss +53 -0
- package/lib/components/Empty/style/css.js +5 -0
- package/lib/components/Empty/style/index.d.ts +2 -0
- package/lib/components/Empty/style/index.js +5 -0
- package/lib/components/Flex/Flex.d.ts +5 -0
- package/lib/components/Flex/Flex.js +60 -0
- package/lib/components/Flex/constants.d.ts +41 -0
- package/lib/components/Flex/constants.js +51 -0
- package/lib/components/Flex/index.d.ts +5 -0
- package/lib/components/Flex/index.js +60 -0
- package/lib/components/Flex/interface.d.ts +13 -0
- package/lib/components/Flex/interface.js +6 -0
- package/lib/components/Flex/style/Flex.css +1 -0
- package/lib/components/Flex/style/Flex.scss +70 -0
- package/lib/components/Flex/style/css.js +4 -0
- package/lib/components/Flex/style/index.d.ts +1 -0
- package/lib/components/Flex/style/index.js +4 -0
- package/lib/components/Form/Form.d.ts +4 -0
- package/lib/components/Form/Form.js +80 -0
- package/lib/components/Form/FormItem.d.ts +4 -0
- package/lib/components/Form/FormItem.js +193 -0
- package/lib/components/Form/constants.d.ts +19 -0
- package/lib/components/Form/constants.js +25 -0
- package/lib/components/Form/context.d.ts +5 -0
- package/lib/components/Form/context.js +25 -0
- package/lib/components/Form/hooks/useForm.d.ts +3 -0
- package/lib/components/Form/hooks/useForm.js +551 -0
- package/lib/components/Form/hooks/useFormCore.d.ts +3 -0
- package/lib/components/Form/hooks/useFormCore.js +355 -0
- package/lib/components/Form/index.d.ts +10 -0
- package/lib/components/Form/index.js +83 -0
- package/lib/components/Form/interface.d.ts +166 -0
- package/lib/components/Form/interface.js +6 -0
- package/lib/components/Form/style/Form.css +1 -0
- package/lib/components/Form/style/Form.scss +57 -0
- package/lib/components/Form/style/css.js +4 -0
- package/lib/components/Form/style/index.d.ts +1 -0
- package/lib/components/Form/style/index.js +4 -0
- package/lib/components/Grid/Col.d.ts +4 -0
- package/lib/components/Grid/Col.js +93 -0
- package/lib/components/Grid/Grid.d.ts +10 -0
- package/lib/components/Grid/Grid.js +21 -0
- package/lib/components/Grid/Row.d.ts +4 -0
- package/lib/components/Grid/Row.js +50 -0
- package/lib/components/Grid/constants.d.ts +48 -0
- package/lib/components/Grid/constants.js +77 -0
- package/lib/components/Grid/helper.d.ts +15 -0
- package/lib/components/Grid/helper.js +94 -0
- package/lib/components/Grid/index.d.ts +7 -0
- package/lib/components/Grid/index.js +62 -0
- package/lib/components/Grid/interface.d.ts +38 -0
- package/lib/components/Grid/interface.js +6 -0
- package/lib/components/Grid/style/Grid.css +1 -0
- package/lib/components/Grid/style/Grid.scss +184 -0
- package/lib/components/Grid/style/css.js +4 -0
- package/lib/components/Grid/style/index.d.ts +1 -0
- package/lib/components/Grid/style/index.js +4 -0
- package/lib/components/Icons/Icons.d.ts +192 -0
- package/lib/components/Icons/Icons.js +193 -0
- package/lib/components/Icons/Illustrations.d.ts +18 -0
- package/lib/components/Icons/Illustrations.js +881 -0
- package/lib/components/Icons/Logo.d.ts +36 -0
- package/lib/components/Icons/Logo.js +219 -0
- package/lib/components/Icons/SVGs.d.ts +265 -0
- package/lib/components/Icons/SVGs.js +1926 -0
- package/lib/components/Icons/Wrapper.d.ts +6 -0
- package/lib/components/Icons/Wrapper.js +109 -0
- package/lib/components/Icons/index.d.ts +4 -0
- package/lib/components/Icons/index.js +52 -0
- package/lib/components/Icons/interface.d.ts +27 -0
- package/lib/components/Icons/interface.js +6 -0
- package/lib/components/Icons/style/Icons.css +1 -0
- package/lib/components/Icons/style/Icons.scss +85 -0
- package/lib/components/Icons/style/css.js +4 -0
- package/lib/components/Icons/style/index.d.ts +1 -0
- package/lib/components/Icons/style/index.js +4 -0
- package/lib/components/Input/Amount/Amount.d.ts +6 -0
- package/lib/components/Input/Amount/Amount.js +201 -0
- package/lib/components/Input/Amount/helper.d.ts +35 -0
- package/lib/components/Input/Amount/helper.js +102 -0
- package/lib/components/Input/Amount/index.d.ts +3 -0
- package/lib/components/Input/Amount/index.js +18 -0
- package/lib/components/Input/Amount/style/Amount.css +1 -0
- package/lib/components/Input/Amount/style/Amount.scss +89 -0
- package/lib/components/Input/Amount/style/css.js +4 -0
- package/lib/components/Input/Amount/style/index.d.ts +1 -0
- package/lib/components/Input/Amount/style/index.js +4 -0
- package/lib/components/Input/FieldShell/FieldShell.css +1 -0
- package/lib/components/Input/FieldShell/FieldShell.d.ts +19 -0
- package/lib/components/Input/FieldShell/FieldShell.js +85 -0
- package/lib/components/Input/FieldShell/FieldShell.scss +62 -0
- package/lib/components/Input/FieldShell/index.d.ts +3 -0
- package/lib/components/Input/FieldShell/index.js +22 -0
- package/lib/components/Input/Input/Input.css +1 -0
- package/lib/components/Input/Input/Input.d.ts +3 -0
- package/lib/components/Input/Input/Input.js +168 -0
- package/lib/components/Input/Input/Input.scss +131 -0
- package/lib/components/Input/Input/index.d.ts +2 -0
- package/lib/components/Input/Input/index.js +22 -0
- package/lib/components/Input/Mask/Mask.d.ts +5 -0
- package/lib/components/Input/Mask/Mask.js +347 -0
- package/lib/components/Input/Mask/index.d.ts +2 -0
- package/lib/components/Input/Mask/index.js +22 -0
- package/lib/components/Input/OTP/OTP.css +1 -0
- package/lib/components/Input/OTP/OTP.d.ts +5 -0
- package/lib/components/Input/OTP/OTP.js +157 -0
- package/lib/components/Input/OTP/OTP.scss +75 -0
- package/lib/components/Input/OTP/index.d.ts +2 -0
- package/lib/components/Input/OTP/index.js +22 -0
- package/lib/components/Input/Password/Password.d.ts +5 -0
- package/lib/components/Input/Password/Password.js +131 -0
- package/lib/components/Input/Password/index.d.ts +2 -0
- package/lib/components/Input/Password/index.js +22 -0
- package/lib/components/Input/Search/Search.d.ts +5 -0
- package/lib/components/Input/Search/Search.js +154 -0
- package/lib/components/Input/Search/index.d.ts +2 -0
- package/lib/components/Input/Search/index.js +22 -0
- package/lib/components/Input/TextArea/TextArea.css +1 -0
- package/lib/components/Input/TextArea/TextArea.d.ts +5 -0
- package/lib/components/Input/TextArea/TextArea.js +103 -0
- package/lib/components/Input/TextArea/TextArea.scss +87 -0
- package/lib/components/Input/TextArea/index.d.ts +2 -0
- package/lib/components/Input/TextArea/index.js +22 -0
- package/lib/components/Input/Trade/Trade.css +1 -0
- package/lib/components/Input/Trade/Trade.d.ts +5 -0
- package/lib/components/Input/Trade/Trade.js +139 -0
- package/lib/components/Input/Trade/Trade.scss +184 -0
- package/lib/components/Input/Trade/index.d.ts +2 -0
- package/lib/components/Input/Trade/index.js +22 -0
- package/lib/components/Input/constants.d.ts +15 -0
- package/lib/components/Input/constants.js +22 -0
- package/lib/components/Input/index.d.ts +4 -0
- package/lib/components/Input/index.js +49 -0
- package/lib/components/Input/interface.d.ts +153 -0
- package/lib/components/Input/interface.js +6 -0
- package/lib/components/Input/style/css.js +9 -0
- package/lib/components/Input/style/index.d.ts +6 -0
- package/lib/components/Input/style/index.js +9 -0
- package/lib/components/Input/useAmountInput.d.ts +35 -0
- package/lib/components/Input/useAmountInput.js +214 -0
- package/lib/components/Input/useSyncRef.d.ts +2 -0
- package/lib/components/Input/useSyncRef.js +19 -0
- package/lib/components/Modal/Modal.d.ts +4 -0
- package/lib/components/Modal/Modal.js +390 -0
- package/lib/components/Modal/constants.d.ts +58 -0
- package/lib/components/Modal/constants.js +62 -0
- package/lib/components/Modal/index.d.ts +4 -0
- package/lib/components/Modal/index.js +33 -0
- package/lib/components/Modal/interface.d.ts +37 -0
- package/lib/components/Modal/interface.js +6 -0
- package/lib/components/Modal/style/Modal.css +1 -0
- package/lib/components/Modal/style/Modal.scss +254 -0
- package/lib/components/Modal/style/css.js +4 -0
- package/lib/components/Modal/style/index.d.ts +1 -0
- package/lib/components/Modal/style/index.js +4 -0
- package/lib/components/Navigation/Nav.d.ts +5 -0
- package/lib/components/Navigation/Nav.js +208 -0
- package/lib/components/Navigation/Navigation.d.ts +5 -0
- package/lib/components/Navigation/Navigation.js +309 -0
- package/lib/components/Navigation/NavigationLogo.d.ts +7 -0
- package/lib/components/Navigation/NavigationLogo.js +42 -0
- package/lib/components/Navigation/index.d.ts +5 -0
- package/lib/components/Navigation/index.js +41 -0
- package/lib/components/Navigation/interface.d.ts +95 -0
- package/lib/components/Navigation/interface.js +6 -0
- package/lib/components/Navigation/style/Nav.css +1 -0
- package/lib/components/Navigation/style/Nav.scss +174 -0
- package/lib/components/Navigation/style/Navigation.css +1 -0
- package/lib/components/Navigation/style/Navigation.scss +443 -0
- package/lib/components/Navigation/style/css.js +5 -0
- package/lib/components/Navigation/style/index.d.ts +2 -0
- package/lib/components/Navigation/style/index.js +5 -0
- package/lib/components/Notification/Notification.d.ts +6 -0
- package/lib/components/Notification/Notification.js +122 -0
- package/lib/components/Notification/NotificationStatic.d.ts +4 -0
- package/lib/components/Notification/NotificationStatic.js +515 -0
- package/lib/components/Notification/constants.d.ts +5 -0
- package/lib/components/Notification/constants.js +13 -0
- package/lib/components/Notification/index.d.ts +5 -0
- package/lib/components/Notification/index.js +52 -0
- package/lib/components/Notification/interface.d.ts +70 -0
- package/lib/components/Notification/interface.js +13 -0
- package/lib/components/Notification/style/Notification.css +1 -0
- package/lib/components/Notification/style/Notification.scss +200 -0
- package/lib/components/Notification/style/css.js +4 -0
- package/lib/components/Notification/style/index.d.ts +1 -0
- package/lib/components/Notification/style/index.js +4 -0
- package/lib/components/Pagination/Pagination.d.ts +5 -0
- package/lib/components/Pagination/Pagination.js +146 -0
- package/lib/components/Pagination/constants.d.ts +53 -0
- package/lib/components/Pagination/constants.js +63 -0
- package/lib/components/Pagination/index.d.ts +6 -0
- package/lib/components/Pagination/index.js +53 -0
- package/lib/components/Pagination/interface.d.ts +54 -0
- package/lib/components/Pagination/interface.js +6 -0
- package/lib/components/Pagination/style/Pagination.css +1 -0
- package/lib/components/Pagination/style/Pagination.scss +95 -0
- package/lib/components/Pagination/style/css.js +4 -0
- package/lib/components/Pagination/style/index.d.ts +1 -0
- package/lib/components/Pagination/style/index.js +4 -0
- package/lib/components/Pagination/usePagination.d.ts +3 -0
- package/lib/components/Pagination/usePagination.js +161 -0
- package/lib/components/Popconfirm/Popconfirm.d.ts +6 -0
- package/lib/components/Popconfirm/Popconfirm.js +141 -0
- package/lib/components/Popconfirm/constants.d.ts +72 -0
- package/lib/components/Popconfirm/constants.js +78 -0
- package/lib/components/Popconfirm/index.d.ts +4 -0
- package/lib/components/Popconfirm/index.js +33 -0
- package/lib/components/Popconfirm/interface.d.ts +40 -0
- package/lib/components/Popconfirm/interface.js +6 -0
- package/lib/components/Popconfirm/style/Popconfirm.css +1 -0
- package/lib/components/Popconfirm/style/Popconfirm.scss +264 -0
- package/lib/components/Popconfirm/style/css.js +7 -0
- package/lib/components/Popconfirm/style/index.d.ts +4 -0
- package/lib/components/Popconfirm/style/index.js +7 -0
- package/lib/components/Portal/Portal.d.ts +3 -0
- package/lib/components/Portal/Portal.js +61 -0
- package/lib/components/Portal/index.d.ts +4 -0
- package/lib/components/Portal/index.js +33 -0
- package/lib/components/Portal/interface.d.ts +7 -0
- package/lib/components/Portal/interface.js +6 -0
- package/lib/components/ProForm/ProForm.d.ts +3 -0
- package/lib/components/ProForm/ProForm.js +264 -0
- package/lib/components/ProForm/ProFormDependency.d.ts +3 -0
- package/lib/components/ProForm/ProFormDependency.js +75 -0
- package/lib/components/ProForm/ProFormGroup.d.ts +3 -0
- package/lib/components/ProForm/ProFormGroup.js +85 -0
- package/lib/components/ProForm/ProFormList.d.ts +3 -0
- package/lib/components/ProForm/ProFormList.js +260 -0
- package/lib/components/ProForm/Submitter.d.ts +6 -0
- package/lib/components/ProForm/Submitter.js +74 -0
- package/lib/components/ProForm/constants.d.ts +18 -0
- package/lib/components/ProForm/constants.js +29 -0
- package/lib/components/ProForm/context.d.ts +5 -0
- package/lib/components/ProForm/context.js +32 -0
- package/lib/components/ProForm/fields/ProFormCheckbox.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormCheckbox.js +17 -0
- package/lib/components/ProForm/fields/ProFormCheckboxGroup.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormCheckboxGroup.js +18 -0
- package/lib/components/ProForm/fields/ProFormDatePicker.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormDatePicker.js +29 -0
- package/lib/components/ProForm/fields/ProFormFieldSet.d.ts +4 -0
- package/lib/components/ProForm/fields/ProFormFieldSet.js +72 -0
- package/lib/components/ProForm/fields/ProFormPassword.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormPassword.js +17 -0
- package/lib/components/ProForm/fields/ProFormRadioGroup.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormRadioGroup.js +16 -0
- package/lib/components/ProForm/fields/ProFormSelect.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormSelect.js +46 -0
- package/lib/components/ProForm/fields/ProFormSlider.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormSlider.js +16 -0
- package/lib/components/ProForm/fields/ProFormSwitch.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormSwitch.js +17 -0
- package/lib/components/ProForm/fields/ProFormText.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormText.js +16 -0
- package/lib/components/ProForm/fields/ProFormTextArea.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormTextArea.js +16 -0
- package/lib/components/ProForm/fields/ProFormUpload.d.ts +3 -0
- package/lib/components/ProForm/fields/ProFormUpload.js +32 -0
- package/lib/components/ProForm/fields/createProFormField.d.ts +4 -0
- package/lib/components/ProForm/fields/createProFormField.js +237 -0
- package/lib/components/ProForm/fields/index.d.ts +13 -0
- package/lib/components/ProForm/fields/index.js +97 -0
- package/lib/components/ProForm/hooks/useFieldRequest.d.ts +7 -0
- package/lib/components/ProForm/hooks/useFieldRequest.js +98 -0
- package/lib/components/ProForm/index.d.ts +30 -0
- package/lib/components/ProForm/index.js +187 -0
- package/lib/components/ProForm/interface.d.ts +240 -0
- package/lib/components/ProForm/interface.js +6 -0
- package/lib/components/ProForm/layouts/DrawerForm.d.ts +3 -0
- package/lib/components/ProForm/layouts/DrawerForm.js +80 -0
- package/lib/components/ProForm/layouts/ModalForm.d.ts +3 -0
- package/lib/components/ProForm/layouts/ModalForm.js +81 -0
- package/lib/components/ProForm/layouts/QueryFilter.d.ts +4 -0
- package/lib/components/ProForm/layouts/QueryFilter.js +167 -0
- package/lib/components/ProForm/layouts/index.d.ts +4 -0
- package/lib/components/ProForm/layouts/index.js +34 -0
- package/lib/components/ProForm/layouts/useOverlayForm.d.ts +17 -0
- package/lib/components/ProForm/layouts/useOverlayForm.js +117 -0
- package/lib/components/ProForm/style/ProForm.css +1 -0
- package/lib/components/ProForm/style/ProForm.scss +118 -0
- package/lib/components/ProForm/style/css.js +4 -0
- package/lib/components/ProForm/style/index.d.ts +1 -0
- package/lib/components/ProForm/style/index.js +4 -0
- package/lib/components/ProForm/utils.d.ts +22 -0
- package/lib/components/ProForm/utils.js +228 -0
- package/lib/components/Progress/Progress.d.ts +6 -0
- package/lib/components/Progress/Progress.js +103 -0
- package/lib/components/Progress/constants.d.ts +26 -0
- package/lib/components/Progress/constants.js +38 -0
- package/lib/components/Progress/index.d.ts +5 -0
- package/lib/components/Progress/index.js +45 -0
- package/lib/components/Progress/interface.d.ts +26 -0
- package/lib/components/Progress/interface.js +6 -0
- package/lib/components/Progress/style/Progress.css +1 -0
- package/lib/components/Progress/style/Progress.scss +120 -0
- package/lib/components/Progress/style/css.js +4 -0
- package/lib/components/Progress/style/index.d.ts +1 -0
- package/lib/components/Progress/style/index.js +4 -0
- package/lib/components/Radio/BaseRadio.d.ts +16 -0
- package/lib/components/Radio/BaseRadio.js +65 -0
- package/lib/components/Radio/Radio.d.ts +6 -0
- package/lib/components/Radio/Radio.js +189 -0
- package/lib/components/Radio/RadioGroup.d.ts +5 -0
- package/lib/components/Radio/RadioGroup.js +110 -0
- package/lib/components/Radio/RadioGroupContext.d.ts +22 -0
- package/lib/components/Radio/RadioGroupContext.js +13 -0
- package/lib/components/Radio/constants.d.ts +36 -0
- package/lib/components/Radio/constants.js +69 -0
- package/lib/components/Radio/index.d.ts +5 -0
- package/lib/components/Radio/index.js +41 -0
- package/lib/components/Radio/interface.d.ts +115 -0
- package/lib/components/Radio/interface.js +6 -0
- package/lib/components/Radio/style/Radio.css +1 -0
- package/lib/components/Radio/style/Radio.scss +431 -0
- package/lib/components/Radio/style/css.js +5 -0
- package/lib/components/Radio/style/index.d.ts +2 -0
- package/lib/components/Radio/style/index.js +5 -0
- package/lib/components/ResizeObserver/Collection.d.ts +19 -0
- package/lib/components/ResizeObserver/Collection.js +51 -0
- package/lib/components/ResizeObserver/ResizeObserver.d.ts +7 -0
- package/lib/components/ResizeObserver/ResizeObserver.js +41 -0
- package/lib/components/ResizeObserver/SingleObserver/index.d.ts +7 -0
- package/lib/components/ResizeObserver/SingleObserver/index.js +48 -0
- package/lib/components/ResizeObserver/index.d.ts +7 -0
- package/lib/components/ResizeObserver/index.js +30 -0
- package/lib/components/ResizeObserver/interface.d.ts +16 -0
- package/lib/components/ResizeObserver/interface.js +6 -0
- package/lib/components/ResizeObserver/useResizeObserver.d.ts +2 -0
- package/lib/components/ResizeObserver/useResizeObserver.js +79 -0
- package/lib/components/ResizeObserver/utils/observerUtil.d.ts +7 -0
- package/lib/components/ResizeObserver/utils/observerUtil.js +47 -0
- package/lib/components/ResizeObserver/utils/reactUtil.d.ts +19 -0
- package/lib/components/ResizeObserver/utils/reactUtil.js +91 -0
- package/lib/components/Segment/Segment.d.ts +6 -0
- package/lib/components/Segment/Segment.js +110 -0
- package/lib/components/Segment/index.d.ts +4 -0
- package/lib/components/Segment/index.js +33 -0
- package/lib/components/Segment/interface.d.ts +23 -0
- package/lib/components/Segment/interface.js +6 -0
- package/lib/components/Segment/style/Segment.css +1 -0
- package/lib/components/Segment/style/Segment.scss +80 -0
- package/lib/components/Segment/style/css.js +4 -0
- package/lib/components/Segment/style/index.d.ts +1 -0
- package/lib/components/Segment/style/index.js +4 -0
- package/lib/components/Select/Select.d.ts +6 -0
- package/lib/components/Select/Select.js +530 -0
- package/lib/components/Select/SelectFieldShell.d.ts +22 -0
- package/lib/components/Select/SelectFieldShell.js +79 -0
- package/lib/components/Select/SelectOptionContent.d.ts +9 -0
- package/lib/components/Select/SelectOptionContent.js +42 -0
- package/lib/components/Select/SelectSearchControl.d.ts +12 -0
- package/lib/components/Select/SelectSearchControl.js +44 -0
- package/lib/components/Select/SelectValueContent.d.ts +18 -0
- package/lib/components/Select/SelectValueContent.js +105 -0
- package/lib/components/Select/constants.d.ts +14 -0
- package/lib/components/Select/constants.js +26 -0
- package/lib/components/Select/index.d.ts +4 -0
- package/lib/components/Select/index.js +49 -0
- package/lib/components/Select/interface.d.ts +83 -0
- package/lib/components/Select/interface.js +10 -0
- package/lib/components/Select/style/Select.css +1 -0
- package/lib/components/Select/style/Select.scss +480 -0
- package/lib/components/Select/style/css.js +6 -0
- package/lib/components/Select/style/index.d.ts +3 -0
- package/lib/components/Select/style/index.js +6 -0
- package/lib/components/Select/utils.d.ts +21 -0
- package/lib/components/Select/utils.js +161 -0
- package/lib/components/Skeleton/Skeleton.d.ts +6 -0
- package/lib/components/Skeleton/Skeleton.js +58 -0
- package/lib/components/Skeleton/index.d.ts +4 -0
- package/lib/components/Skeleton/index.js +33 -0
- package/lib/components/Skeleton/interface.d.ts +19 -0
- package/lib/components/Skeleton/interface.js +6 -0
- package/lib/components/Skeleton/style/Skeleton.css +1 -0
- package/lib/components/Skeleton/style/Skeleton.scss +47 -0
- package/lib/components/Skeleton/style/css.js +4 -0
- package/lib/components/Skeleton/style/index.d.ts +1 -0
- package/lib/components/Skeleton/style/index.js +4 -0
- package/lib/components/Slider/Slider.d.ts +6 -0
- package/lib/components/Slider/Slider.js +126 -0
- package/lib/components/Slider/index.d.ts +4 -0
- package/lib/components/Slider/index.js +33 -0
- package/lib/components/Slider/interface.d.ts +39 -0
- package/lib/components/Slider/interface.js +6 -0
- package/lib/components/Slider/style/Slider.css +1 -0
- package/lib/components/Slider/style/Slider.scss +182 -0
- package/lib/components/Slider/style/css.js +4 -0
- package/lib/components/Slider/style/index.d.ts +1 -0
- package/lib/components/Slider/style/index.js +4 -0
- package/lib/components/Space/Space.d.ts +5 -0
- package/lib/components/Space/Space.js +88 -0
- package/lib/components/Space/constants.d.ts +33 -0
- package/lib/components/Space/constants.js +43 -0
- package/lib/components/Space/index.d.ts +5 -0
- package/lib/components/Space/index.js +53 -0
- package/lib/components/Space/interface.d.ts +12 -0
- package/lib/components/Space/interface.js +6 -0
- package/lib/components/Space/style/Space.css +1 -0
- package/lib/components/Space/style/Space.scss +40 -0
- package/lib/components/Space/style/css.js +4 -0
- package/lib/components/Space/style/index.d.ts +1 -0
- package/lib/components/Space/style/index.js +4 -0
- package/lib/components/Spinner/Spinner.d.ts +6 -0
- package/lib/components/Spinner/Spinner.js +91 -0
- package/lib/components/Spinner/index.d.ts +4 -0
- package/lib/components/Spinner/index.js +33 -0
- package/lib/components/Spinner/interface.d.ts +14 -0
- package/lib/components/Spinner/interface.js +8 -0
- package/lib/components/Spinner/style/Spinner.css +1 -0
- package/lib/components/Spinner/style/Spinner.scss +90 -0
- package/lib/components/Spinner/style/css.js +4 -0
- package/lib/components/Spinner/style/index.d.ts +1 -0
- package/lib/components/Spinner/style/index.js +4 -0
- package/lib/components/Step/Step.d.ts +5 -0
- package/lib/components/Step/Step.js +126 -0
- package/lib/components/Step/constants.d.ts +59 -0
- package/lib/components/Step/constants.js +72 -0
- package/lib/components/Step/index.d.ts +4 -0
- package/lib/components/Step/index.js +33 -0
- package/lib/components/Step/interface.d.ts +22 -0
- package/lib/components/Step/interface.js +6 -0
- package/lib/components/Step/style/Step.css +1 -0
- package/lib/components/Step/style/Step.scss +91 -0
- package/lib/components/Step/style/css.js +4 -0
- package/lib/components/Step/style/index.d.ts +1 -0
- package/lib/components/Step/style/index.js +4 -0
- package/lib/components/Switch/Switch.d.ts +6 -0
- package/lib/components/Switch/Switch.js +103 -0
- package/lib/components/Switch/constants.d.ts +11 -0
- package/lib/components/Switch/constants.js +18 -0
- package/lib/components/Switch/index.d.ts +5 -0
- package/lib/components/Switch/index.js +45 -0
- package/lib/components/Switch/interface.d.ts +26 -0
- package/lib/components/Switch/interface.js +6 -0
- package/lib/components/Switch/style/Switch.css +1 -0
- package/lib/components/Switch/style/Switch.scss +126 -0
- package/lib/components/Switch/style/css.js +5 -0
- package/lib/components/Switch/style/index.d.ts +2 -0
- package/lib/components/Switch/style/index.js +5 -0
- package/lib/components/Table/Table.d.ts +10 -0
- package/lib/components/Table/Table.js +173 -0
- package/lib/components/Table/VirtualTable.d.ts +9 -0
- package/lib/components/Table/VirtualTable.js +175 -0
- package/lib/components/Table/constants.d.ts +4 -0
- package/lib/components/Table/constants.js +11 -0
- package/lib/components/Table/core/useTableColumns.d.ts +34 -0
- package/lib/components/Table/core/useTableColumns.js +198 -0
- package/lib/components/Table/core/useTableDataPipeline.d.ts +50 -0
- package/lib/components/Table/core/useTableDataPipeline.js +269 -0
- package/lib/components/Table/core/useTableExpand.d.ts +9 -0
- package/lib/components/Table/core/useTableExpand.js +45 -0
- package/lib/components/Table/core/useTableSelection.d.ts +17 -0
- package/lib/components/Table/core/useTableSelection.js +151 -0
- package/lib/components/Table/features/ExpandTrigger.d.ts +4 -0
- package/lib/components/Table/features/ExpandTrigger.js +30 -0
- package/lib/components/Table/features/SelectionColumn.d.ts +11 -0
- package/lib/components/Table/features/SelectionColumn.js +47 -0
- package/lib/components/Table/features/SortTrigger.d.ts +7 -0
- package/lib/components/Table/features/SortTrigger.js +32 -0
- package/lib/components/Table/index.d.ts +6 -0
- package/lib/components/Table/index.js +47 -0
- package/lib/components/Table/interface.d.ts +179 -0
- package/lib/components/Table/interface.js +6 -0
- package/lib/components/Table/internal/index.d.ts +3 -0
- package/lib/components/Table/internal/index.js +52 -0
- package/lib/components/Table/internal/kernel/Body/BodyRow.d.ts +37 -0
- package/lib/components/Table/internal/kernel/Body/BodyRow.js +186 -0
- package/lib/components/Table/internal/kernel/Body/ExpandedRow.d.ts +15 -0
- package/lib/components/Table/internal/kernel/Body/ExpandedRow.js +67 -0
- package/lib/components/Table/internal/kernel/Body/MeasureCell.d.ts +8 -0
- package/lib/components/Table/internal/kernel/Body/MeasureCell.js +50 -0
- package/lib/components/Table/internal/kernel/Body/MeasureRow.d.ts +10 -0
- package/lib/components/Table/internal/kernel/Body/MeasureRow.js +64 -0
- package/lib/components/Table/internal/kernel/Body/index.d.ts +9 -0
- package/lib/components/Table/internal/kernel/Body/index.js +135 -0
- package/lib/components/Table/internal/kernel/Cell/index.d.ts +39 -0
- package/lib/components/Table/internal/kernel/Cell/index.js +190 -0
- package/lib/components/Table/internal/kernel/Cell/useCellRender.d.ts +3 -0
- package/lib/components/Table/internal/kernel/Cell/useCellRender.js +74 -0
- package/lib/components/Table/internal/kernel/Cell/useHoverState.d.ts +2 -0
- package/lib/components/Table/internal/kernel/Cell/useHoverState.js +23 -0
- package/lib/components/Table/internal/kernel/ColGroup.d.ts +8 -0
- package/lib/components/Table/internal/kernel/ColGroup.js +68 -0
- package/lib/components/Table/internal/kernel/FixedHolder/index.d.ts +27 -0
- package/lib/components/Table/internal/kernel/FixedHolder/index.js +193 -0
- package/lib/components/Table/internal/kernel/Footer/Cell.d.ts +11 -0
- package/lib/components/Table/internal/kernel/Footer/Cell.js +60 -0
- package/lib/components/Table/internal/kernel/Footer/Row.d.ts +8 -0
- package/lib/components/Table/internal/kernel/Footer/Row.js +31 -0
- package/lib/components/Table/internal/kernel/Footer/Summary.d.ts +14 -0
- package/lib/components/Table/internal/kernel/Footer/Summary.js +20 -0
- package/lib/components/Table/internal/kernel/Footer/SummaryContext.d.ts +11 -0
- package/lib/components/Table/internal/kernel/Footer/SummaryContext.js +13 -0
- package/lib/components/Table/internal/kernel/Footer/index.d.ts +16 -0
- package/lib/components/Table/internal/kernel/Footer/index.js +47 -0
- package/lib/components/Table/internal/kernel/Header/Header.d.ts +9 -0
- package/lib/components/Table/internal/kernel/Header/Header.js +120 -0
- package/lib/components/Table/internal/kernel/Header/HeaderRow.d.ts +18 -0
- package/lib/components/Table/internal/kernel/Header/HeaderRow.js +71 -0
- package/lib/components/Table/internal/kernel/Panel/index.d.ts +7 -0
- package/lib/components/Table/internal/kernel/Panel/index.js +25 -0
- package/lib/components/Table/internal/kernel/Table.d.ts +126 -0
- package/lib/components/Table/internal/kernel/Table.js +701 -0
- package/lib/components/Table/internal/kernel/VirtualTable/BodyGrid.d.ts +13 -0
- package/lib/components/Table/internal/kernel/VirtualTable/BodyGrid.js +299 -0
- package/lib/components/Table/internal/kernel/VirtualTable/BodyLine.d.ts +14 -0
- package/lib/components/Table/internal/kernel/VirtualTable/BodyLine.js +125 -0
- package/lib/components/Table/internal/kernel/VirtualTable/VirtualCell.d.ts +26 -0
- package/lib/components/Table/internal/kernel/VirtualTable/VirtualCell.js +117 -0
- package/lib/components/Table/internal/kernel/VirtualTable/context.d.ts +13 -0
- package/lib/components/Table/internal/kernel/VirtualTable/context.js +12 -0
- package/lib/components/Table/internal/kernel/VirtualTable/index.d.ts +17 -0
- package/lib/components/Table/internal/kernel/VirtualTable/index.js +101 -0
- package/lib/components/Table/internal/kernel/constant.d.ts +2 -0
- package/lib/components/Table/internal/kernel/constant.js +10 -0
- package/lib/components/Table/internal/kernel/context/PerfContext.d.ts +6 -0
- package/lib/components/Table/internal/kernel/context/PerfContext.js +18 -0
- package/lib/components/Table/internal/kernel/context/TableContext.d.ts +51 -0
- package/lib/components/Table/internal/kernel/context/TableContext.js +16 -0
- package/lib/components/Table/internal/kernel/hooks/useColumns/index.d.ts +31 -0
- package/lib/components/Table/internal/kernel/hooks/useColumns/index.js +223 -0
- package/lib/components/Table/internal/kernel/hooks/useColumns/useWidthColumns.d.ts +5 -0
- package/lib/components/Table/internal/kernel/hooks/useColumns/useWidthColumns.js +79 -0
- package/lib/components/Table/internal/kernel/hooks/useExpand.d.ts +10 -0
- package/lib/components/Table/internal/kernel/hooks/useExpand.js +95 -0
- package/lib/components/Table/internal/kernel/hooks/useFixedInfo.d.ts +2 -0
- package/lib/components/Table/internal/kernel/hooks/useFixedInfo.js +29 -0
- package/lib/components/Table/internal/kernel/hooks/useFlattenRecords.d.ts +19 -0
- package/lib/components/Table/internal/kernel/hooks/useFlattenRecords.js +64 -0
- package/lib/components/Table/internal/kernel/hooks/useFrame.d.ts +7 -0
- package/lib/components/Table/internal/kernel/hooks/useFrame.js +72 -0
- package/lib/components/Table/internal/kernel/hooks/useHover.d.ts +2 -0
- package/lib/components/Table/internal/kernel/hooks/useHover.js +30 -0
- package/lib/components/Table/internal/kernel/hooks/useRenderTimes.d.ts +5 -0
- package/lib/components/Table/internal/kernel/hooks/useRenderTimes.js +51 -0
- package/lib/components/Table/internal/kernel/hooks/useRowInfo.d.ts +11 -0
- package/lib/components/Table/internal/kernel/hooks/useRowInfo.js +70 -0
- package/lib/components/Table/internal/kernel/hooks/useSticky.d.ts +10 -0
- package/lib/components/Table/internal/kernel/hooks/useSticky.js +44 -0
- package/lib/components/Table/internal/kernel/hooks/useStickyOffsets.d.ts +6 -0
- package/lib/components/Table/internal/kernel/hooks/useStickyOffsets.js +38 -0
- package/lib/components/Table/internal/kernel/index.d.ts +12 -0
- package/lib/components/Table/internal/kernel/index.js +74 -0
- package/lib/components/Table/internal/kernel/interface.d.ts +202 -0
- package/lib/components/Table/internal/kernel/interface.js +6 -0
- package/lib/components/Table/internal/kernel/namePathType.d.ts +13 -0
- package/lib/components/Table/internal/kernel/namePathType.js +6 -0
- package/lib/components/Table/internal/kernel/selector-context/Immutable.d.ts +10 -0
- package/lib/components/Table/internal/kernel/selector-context/Immutable.js +82 -0
- package/lib/components/Table/internal/kernel/selector-context/context.d.ts +26 -0
- package/lib/components/Table/internal/kernel/selector-context/context.js +93 -0
- package/lib/components/Table/internal/kernel/selector-context/index.d.ts +7 -0
- package/lib/components/Table/internal/kernel/selector-context/index.js +34 -0
- package/lib/components/Table/internal/kernel/selector-context/isEqual.d.ts +5 -0
- package/lib/components/Table/internal/kernel/selector-context/isEqual.js +55 -0
- package/lib/components/Table/internal/kernel/stickyScrollBar.d.ts +12 -0
- package/lib/components/Table/internal/kernel/stickyScrollBar.js +203 -0
- package/lib/components/Table/internal/kernel/sugar/Column.d.ts +10 -0
- package/lib/components/Table/internal/kernel/sugar/Column.js +17 -0
- package/lib/components/Table/internal/kernel/sugar/ColumnGroup.d.ts +12 -0
- package/lib/components/Table/internal/kernel/sugar/ColumnGroup.js +17 -0
- package/lib/components/Table/internal/kernel/utils/dom/canUseDom.d.ts +1 -0
- package/lib/components/Table/internal/kernel/utils/dom/canUseDom.js +10 -0
- package/lib/components/Table/internal/kernel/utils/dom/isVisible.d.ts +2 -0
- package/lib/components/Table/internal/kernel/utils/dom/isVisible.js +34 -0
- package/lib/components/Table/internal/kernel/utils/expandUtil.d.ts +4 -0
- package/lib/components/Table/internal/kernel/utils/expandUtil.js +60 -0
- package/lib/components/Table/internal/kernel/utils/fixUtil.d.ts +21 -0
- package/lib/components/Table/internal/kernel/utils/fixUtil.js +70 -0
- package/lib/components/Table/internal/kernel/utils/get.d.ts +1 -0
- package/lib/components/Table/internal/kernel/utils/get.js +17 -0
- package/lib/components/Table/internal/kernel/utils/getScrollBarSize.d.ts +7 -0
- package/lib/components/Table/internal/kernel/utils/getScrollBarSize.js +45 -0
- package/lib/components/Table/internal/kernel/utils/legacyUtil.d.ts +5 -0
- package/lib/components/Table/internal/kernel/utils/legacyUtil.js +40 -0
- package/lib/components/Table/internal/kernel/utils/offsetUtil.d.ts +4 -0
- package/lib/components/Table/internal/kernel/utils/offsetUtil.js +21 -0
- package/lib/components/Table/internal/kernel/utils/pickAttrs.d.ts +6 -0
- package/lib/components/Table/internal/kernel/utils/pickAttrs.js +39 -0
- package/lib/components/Table/internal/kernel/utils/useMemo.d.ts +1 -0
- package/lib/components/Table/internal/kernel/utils/useMemo.js +19 -0
- package/lib/components/Table/internal/kernel/utils/valueUtil.d.ts +8 -0
- package/lib/components/Table/internal/kernel/utils/valueUtil.js +38 -0
- package/lib/components/Table/internal/kernel/utils/warning.d.ts +4 -0
- package/lib/components/Table/internal/kernel/utils/warning.js +26 -0
- package/lib/components/Table/renderers/BodyCell.d.ts +15 -0
- package/lib/components/Table/renderers/BodyCell.js +47 -0
- package/lib/components/Table/renderers/CellContent.d.ts +4 -0
- package/lib/components/Table/renderers/CellContent.js +32 -0
- package/lib/components/Table/renderers/EmptyState.d.ts +4 -0
- package/lib/components/Table/renderers/EmptyState.js +21 -0
- package/lib/components/Table/renderers/ExpandedRowContainer.d.ts +4 -0
- package/lib/components/Table/renderers/ExpandedRowContainer.js +16 -0
- package/lib/components/Table/renderers/HeaderCell.d.ts +7 -0
- package/lib/components/Table/renderers/HeaderCell.js +28 -0
- package/lib/components/Table/style/Table.css +1 -0
- package/lib/components/Table/style/Table.scss +376 -0
- package/lib/components/Table/style/css.js +12 -0
- package/lib/components/Table/style/index.d.ts +9 -0
- package/lib/components/Table/style/index.js +12 -0
- package/lib/components/Tabs/Tabs.d.ts +6 -0
- package/lib/components/Tabs/Tabs.js +121 -0
- package/lib/components/Tabs/index.d.ts +4 -0
- package/lib/components/Tabs/index.js +33 -0
- package/lib/components/Tabs/interface.d.ts +27 -0
- package/lib/components/Tabs/interface.js +6 -0
- package/lib/components/Tabs/style/Tabs.css +1 -0
- package/lib/components/Tabs/style/Tabs.scss +100 -0
- package/lib/components/Tabs/style/css.js +4 -0
- package/lib/components/Tabs/style/index.d.ts +1 -0
- package/lib/components/Tabs/style/index.js +4 -0
- package/lib/components/Tag/Tag.d.ts +6 -0
- package/lib/components/Tag/Tag.js +89 -0
- package/lib/components/Tag/constants.d.ts +18 -0
- package/lib/components/Tag/constants.js +34 -0
- package/lib/components/Tag/index.d.ts +5 -0
- package/lib/components/Tag/index.js +45 -0
- package/lib/components/Tag/interface.d.ts +15 -0
- package/lib/components/Tag/interface.js +6 -0
- package/lib/components/Tag/style/Tag.css +1 -0
- package/lib/components/Tag/style/Tag.scss +103 -0
- package/lib/components/Tag/style/css.js +4 -0
- package/lib/components/Tag/style/index.d.ts +1 -0
- package/lib/components/Tag/style/index.js +4 -0
- package/lib/components/Tooltip/Tooltip.d.ts +6 -0
- package/lib/components/Tooltip/Tooltip.js +71 -0
- package/lib/components/Tooltip/index.d.ts +4 -0
- package/lib/components/Tooltip/index.js +33 -0
- package/lib/components/Tooltip/interface.d.ts +20 -0
- package/lib/components/Tooltip/interface.js +6 -0
- package/lib/components/Tooltip/style/Tooltip.css +1 -0
- package/lib/components/Tooltip/style/Tooltip.scss +95 -0
- package/lib/components/Tooltip/style/css.js +4 -0
- package/lib/components/Tooltip/style/index.d.ts +1 -0
- package/lib/components/Tooltip/style/index.js +4 -0
- package/lib/components/Tour/Tour.d.ts +3 -0
- package/lib/components/Tour/Tour.js +250 -0
- package/lib/components/Tour/index.d.ts +4 -0
- package/lib/components/Tour/index.js +33 -0
- package/lib/components/Tour/interface.d.ts +46 -0
- package/lib/components/Tour/interface.js +6 -0
- package/lib/components/Trigger/Trigger.d.ts +5 -0
- package/lib/components/Trigger/Trigger.js +161 -0
- package/lib/components/Trigger/index.d.ts +3 -0
- package/lib/components/Trigger/index.js +35 -0
- package/lib/components/Trigger/interface.d.ts +52 -0
- package/lib/components/Trigger/interface.js +6 -0
- package/lib/components/Trigger/style/Trigger.css +1 -0
- package/lib/components/Trigger/style/Trigger.scss +18 -0
- package/lib/components/Trigger/style/css.js +4 -0
- package/lib/components/Trigger/style/index.d.ts +1 -0
- package/lib/components/Trigger/style/index.js +4 -0
- package/lib/components/Typography/Typography.d.ts +17 -0
- package/lib/components/Typography/Typography.js +207 -0
- package/lib/components/Typography/constants.d.ts +33 -0
- package/lib/components/Typography/constants.js +15 -0
- package/lib/components/Typography/index.d.ts +4 -0
- package/lib/components/Typography/index.js +79 -0
- package/lib/components/Typography/interface.d.ts +72 -0
- package/lib/components/Typography/interface.js +28 -0
- package/lib/components/Typography/render.d.ts +328 -0
- package/lib/components/Typography/render.js +116 -0
- package/lib/components/Typography/style/Typography.css +1 -0
- package/lib/components/Typography/style/Typography.scss +132 -0
- package/lib/components/Typography/style/css.js +6 -0
- package/lib/components/Typography/style/index.d.ts +3 -0
- package/lib/components/Typography/style/index.js +6 -0
- package/lib/components/Typography/useTypographyEnhancements.d.ts +43 -0
- package/lib/components/Typography/useTypographyEnhancements.js +117 -0
- package/lib/components/Typography/utils.d.ts +17 -0
- package/lib/components/Typography/utils.js +105 -0
- package/lib/components/Upload/Upload.d.ts +7 -0
- package/lib/components/Upload/Upload.js +97 -0
- package/lib/components/Upload/UploadFileBar.d.ts +6 -0
- package/lib/components/Upload/UploadFileBar.js +72 -0
- package/lib/components/Upload/index.d.ts +5 -0
- package/lib/components/Upload/index.js +41 -0
- package/lib/components/Upload/interface.d.ts +41 -0
- package/lib/components/Upload/interface.js +6 -0
- package/lib/components/Upload/style/Upload.css +1 -0
- package/lib/components/Upload/style/Upload.scss +44 -0
- package/lib/components/Upload/style/UploadFileBar.css +1 -0
- package/lib/components/Upload/style/UploadFileBar.scss +94 -0
- package/lib/components/Upload/style/css.js +5 -0
- package/lib/components/Upload/style/index.d.ts +2 -0
- package/lib/components/Upload/style/index.js +5 -0
- package/lib/components/VirtualList/Filler.d.ts +21 -0
- package/lib/components/VirtualList/Filler.js +66 -0
- package/lib/components/VirtualList/Item.d.ts +6 -0
- package/lib/components/VirtualList/Item.js +21 -0
- package/lib/components/VirtualList/ScrollBar.d.ts +22 -0
- package/lib/components/VirtualList/ScrollBar.js +247 -0
- package/lib/components/VirtualList/VirtualList.d.ts +62 -0
- package/lib/components/VirtualList/VirtualList.js +540 -0
- package/lib/components/VirtualList/constants.d.ts +4 -0
- package/lib/components/VirtualList/constants.js +11 -0
- package/lib/components/VirtualList/hooks/useChildren.d.ts +2 -0
- package/lib/components/VirtualList/hooks/useChildren.js +34 -0
- package/lib/components/VirtualList/hooks/useDiffItem.d.ts +2 -0
- package/lib/components/VirtualList/hooks/useDiffItem.js +25 -0
- package/lib/components/VirtualList/hooks/useFrameWheel.d.ts +10 -0
- package/lib/components/VirtualList/hooks/useFrameWheel.js +92 -0
- package/lib/components/VirtualList/hooks/useGetSize.d.ts +7 -0
- package/lib/components/VirtualList/hooks/useGetSize.js +57 -0
- package/lib/components/VirtualList/hooks/useHeights.d.ts +8 -0
- package/lib/components/VirtualList/hooks/useHeights.js +106 -0
- package/lib/components/VirtualList/hooks/useMobileTouchMove.d.ts +2 -0
- package/lib/components/VirtualList/hooks/useMobileTouchMove.js +91 -0
- package/lib/components/VirtualList/hooks/useOriginScroll.d.ts +2 -0
- package/lib/components/VirtualList/hooks/useOriginScroll.js +50 -0
- package/lib/components/VirtualList/hooks/useScrollDrag.d.ts +3 -0
- package/lib/components/VirtualList/hooks/useScrollDrag.js +87 -0
- package/lib/components/VirtualList/hooks/useScrollTo.d.ts +18 -0
- package/lib/components/VirtualList/hooks/useScrollTo.js +142 -0
- package/lib/components/VirtualList/index.d.ts +9 -0
- package/lib/components/VirtualList/index.js +31 -0
- package/lib/components/VirtualList/interface.d.ts +26 -0
- package/lib/components/VirtualList/interface.js +6 -0
- package/lib/components/VirtualList/style/VirtualList.css +1 -0
- package/lib/components/VirtualList/style/VirtualList.scss +5 -0
- package/lib/components/VirtualList/style/css.js +4 -0
- package/lib/components/VirtualList/style/index.d.ts +1 -0
- package/lib/components/VirtualList/style/index.js +4 -0
- package/lib/components/VirtualList/utils/CacheMap.d.ts +16 -0
- package/lib/components/VirtualList/utils/CacheMap.js +50 -0
- package/lib/components/VirtualList/utils/algorithmUtil.d.ts +23 -0
- package/lib/components/VirtualList/utils/algorithmUtil.js +84 -0
- package/lib/components/VirtualList/utils/isFirefox.d.ts +2 -0
- package/lib/components/VirtualList/utils/isFirefox.js +11 -0
- package/lib/components/VirtualList/utils/raf.d.ts +9 -0
- package/lib/components/VirtualList/utils/raf.js +53 -0
- package/lib/components/VirtualList/utils/scrollbarUtil.d.ts +1 -0
- package/lib/components/VirtualList/utils/scrollbarUtil.js +18 -0
- package/lib/index.css +1 -0
- package/lib/index.d.ts +89 -0
- package/lib/index.js +494 -0
- package/lib/styles/_api.scss +5 -0
- package/lib/styles/_settings.scss +5 -0
- package/lib/styles/index.css +1 -0
- package/lib/styles/index.scss +2 -0
- package/lib/styles/public/_index.scss +2 -0
- package/lib/styles/public/_system.scss +1 -0
- package/lib/styles/public/_theme.scss +3 -0
- package/lib/styles/recipes/_index.scss +1 -0
- package/lib/styles/recipes/_variants.scss +110 -0
- package/lib/styles/system/_index.scss +4 -0
- package/lib/styles/system/_props.scss +95 -0
- package/lib/styles/system/_public.scss +5 -0
- package/lib/styles/system/_sx.scss +81 -0
- package/lib/styles/theme/_breakpoints.scss +95 -0
- package/lib/styles/theme/_functions.scss +271 -0
- package/lib/styles/theme/_index.scss +6 -0
- package/lib/styles/theme/_mixins.scss +37 -0
- package/lib/styles/theme/_scales.scss +29 -0
- package/lib/styles/theme/_values.scss +68 -0
- package/lib/styles/tokens/_index.scss +11 -0
- package/lib/styles/tokens/breakpoint/_index.scss +2 -0
- package/lib/styles/tokens/breakpoint/_primitives.scss +8 -0
- package/lib/styles/tokens/color/_index.scss +3 -0
- package/lib/styles/tokens/color/_primitives.scss +42 -0
- package/lib/styles/tokens/color/_semantic-color.scss +172 -0
- package/lib/styles/tokens/opacity/_functions.scss +13 -0
- package/lib/styles/tokens/opacity/_index.scss +3 -0
- package/lib/styles/tokens/opacity/_primitives.scss +12 -0
- package/lib/styles/tokens/radius/_index.scss +2 -0
- package/lib/styles/tokens/radius/_primitives.scss +11 -0
- package/lib/styles/tokens/shadow/_index.scss +2 -0
- package/lib/styles/tokens/shadow/_primitives.scss +7 -0
- package/lib/styles/tokens/sizing/_functions.scss +17 -0
- package/lib/styles/tokens/sizing/_index.scss +4 -0
- package/lib/styles/tokens/sizing/_primitives.scss +12 -0
- package/lib/styles/tokens/sizing/_semantic-sizing.scss +11 -0
- package/lib/styles/tokens/spacing/_functions.scss +51 -0
- package/lib/styles/tokens/spacing/_index.scss +4 -0
- package/lib/styles/tokens/spacing/_primitives.scss +22 -0
- package/lib/styles/tokens/spacing/_semantic-spacing.scss +22 -0
- package/lib/styles/tokens/typography/_functions.scss +31 -0
- package/lib/styles/tokens/typography/_index.scss +4 -0
- package/lib/styles/tokens/typography/_primitives.scss +27 -0
- package/lib/styles/tokens/typography/_semantic-typography.scss +216 -0
- package/lib/styles/utilities/_generator.scss +55 -0
- package/lib/styles/utilities/_index.scss +14 -0
- package/lib/utils/classnames.d.ts +5 -0
- package/lib/utils/classnames.js +25 -0
- package/lib/utils/clipboard.d.ts +2 -0
- package/lib/utils/clipboard.js +56 -0
- package/lib/utils/ref.d.ts +4 -0
- package/lib/utils/ref.js +41 -0
- package/lib/utils/uuid.d.ts +2 -0
- package/lib/utils/uuid.js +23 -0
- package/package.json +442 -0
- package/patches/primereact.patch +323 -0
- package/patches/react-pro-sidebar.patch +6421 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/Aeonik/Aeonik-Air.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-AirItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Black.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-BlackItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Bold.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-BoldItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Light.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-LightItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Medium.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-MediumItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Regular.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-RegularItalic.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-Thin.ttf +0 -0
- package/public/fonts/Aeonik/Aeonik-ThinItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Black.ttf +0 -0
- package/public/fonts/Inter/Inter-BlackItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Bold.ttf +0 -0
- package/public/fonts/Inter/Inter-BoldItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-ExtraBold.ttf +0 -0
- package/public/fonts/Inter/Inter-ExtraBoldItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-ExtraLight.ttf +0 -0
- package/public/fonts/Inter/Inter-ExtraLightItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Italic.ttf +0 -0
- package/public/fonts/Inter/Inter-Light.ttf +0 -0
- package/public/fonts/Inter/Inter-LightItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Medium.ttf +0 -0
- package/public/fonts/Inter/Inter-MediumItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Regular.ttf +0 -0
- package/public/fonts/Inter/Inter-SemiBold.ttf +0 -0
- package/public/fonts/Inter/Inter-SemiBoldItalic.ttf +0 -0
- package/public/fonts/Inter/Inter-Thin.ttf +0 -0
- package/public/fonts/Inter/Inter-ThinItalic.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Black.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Bold.ttf +0 -0
- package/public/fonts/Outfit/Outfit-ExtraBold.ttf +0 -0
- package/public/fonts/Outfit/Outfit-ExtraLight.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Light.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Medium.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Regular.ttf +0 -0
- package/public/fonts/Outfit/Outfit-SemiBold.ttf +0 -0
- package/public/fonts/Outfit/Outfit-Thin.ttf +0 -0
- package/public/github-mark.svg +3 -0
- package/public/tokens/GYEN.svg +9 -0
- package/public/tokens/PYUSD.svg +9 -0
- package/public/tokens/USDT.svg +6 -0
- package/scripts/mcp-server/index.d.mts +1 -0
- package/scripts/mcp-server/index.mjs +45 -0
- package/scripts/mcp-server/resources.d.mts +1 -0
- package/scripts/mcp-server/resources.mjs +102 -0
- package/test/jsdom-global-register.d.ts +1 -0
- package/test/jsdom-global-register.js +1 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
@use '@/styles/api' as theme;
|
|
2
|
+
|
|
3
|
+
$component: 'tooltip';
|
|
4
|
+
$cls: #{theme.$prefix}-#{$component};
|
|
5
|
+
|
|
6
|
+
// ── Override react-tooltip defaults ──
|
|
7
|
+
.#{$cls}[role='tooltip'] {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
gap: theme.spacing(scale, 0);
|
|
11
|
+
align-items: center;
|
|
12
|
+
min-width: 48px;
|
|
13
|
+
max-width: 400px;
|
|
14
|
+
padding: theme.spacing(scale, 200) theme.spacing(scale, 300);
|
|
15
|
+
color: theme.palette(text, 'on-neutral');
|
|
16
|
+
background-color: theme.palette(bg, 'neutral');
|
|
17
|
+
border-radius: theme.shape('200');
|
|
18
|
+
box-shadow: theme.shadows('200');
|
|
19
|
+
opacity: 1;
|
|
20
|
+
|
|
21
|
+
// ── Title ──
|
|
22
|
+
.#{$cls}-title {
|
|
23
|
+
@include theme.typography(title, sm, $strong: true);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// ── Body ──
|
|
27
|
+
.#{$cls}-body {
|
|
28
|
+
@include theme.typography(body, sm, $strong: true);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// ── Title variant layout ──
|
|
32
|
+
&.#{$cls}-with-title {
|
|
33
|
+
align-items: flex-start;
|
|
34
|
+
text-align: left;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// ── Arrow ──
|
|
38
|
+
.#{$cls}-arrow {
|
|
39
|
+
background-color: theme.palette(bg, 'neutral');
|
|
40
|
+
border-radius: 0;
|
|
41
|
+
-webkit-mask-position: center;
|
|
42
|
+
mask-position: center;
|
|
43
|
+
-webkit-mask-repeat: no-repeat;
|
|
44
|
+
mask-repeat: no-repeat;
|
|
45
|
+
-webkit-mask-size: 100% 100%;
|
|
46
|
+
mask-size: 100% 100%;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// SVG beak paths shared by both orientations
|
|
50
|
+
$beak-paths: '%3Cpath d=%22M17.3146 7.35495L10.3664 0.8154C9.80987 0.291642 9.07447 0 8.31027 0H27.6897C26.9255 0 26.1901 0.291642 25.6336 0.815401L18.6854 7.35495C18.3003 7.71735 17.6997 7.71735 17.3146 7.35495Z%22 fill=%22%23000000%22/%3E%3Cpath d=%22M8 0.5H8.34315C9.40401 0.5 10.4214 0.921427 11.1716 1.67157L17.2929 7.79289C17.6834 8.18342 18.3166 8.18342 18.7071 7.79289L24.8284 1.67157C25.5786 0.921426 26.596 0.5 27.6569 0.5H28%22 stroke=%22%23000000%22 stroke-linecap=%22round%22/%3E';
|
|
51
|
+
$h-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E#{$beak-paths}%3C/svg%3E");
|
|
52
|
+
$v-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 9 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(0 36) rotate(-90)'%3E#{$beak-paths}%3C/g%3E%3C/svg%3E");
|
|
53
|
+
|
|
54
|
+
&[class*='react-tooltip__place-top'] > .#{$cls}-arrow,
|
|
55
|
+
&[class*='react-tooltip__place-bottom'] > .#{$cls}-arrow {
|
|
56
|
+
width: 36px;
|
|
57
|
+
height: 9px;
|
|
58
|
+
-webkit-mask-image: $h-mask;
|
|
59
|
+
mask-image: $h-mask;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
&[class*='react-tooltip__place-left'] > .#{$cls}-arrow,
|
|
63
|
+
&[class*='react-tooltip__place-right'] > .#{$cls}-arrow {
|
|
64
|
+
width: 9px;
|
|
65
|
+
height: 36px;
|
|
66
|
+
-webkit-mask-image: $v-mask;
|
|
67
|
+
mask-image: $v-mask;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&[class*='react-tooltip__place-top'] > .#{$cls}-arrow {
|
|
71
|
+
bottom: -8px !important;
|
|
72
|
+
transform: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&[class*='react-tooltip__place-bottom'] > .#{$cls}-arrow {
|
|
76
|
+
top: -8px !important;
|
|
77
|
+
transform: rotate(180deg);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&[class*='react-tooltip__place-left'] > .#{$cls}-arrow {
|
|
81
|
+
right: -8px !important;
|
|
82
|
+
transform: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&[class*='react-tooltip__place-right'] > .#{$cls}-arrow {
|
|
86
|
+
left: -8px !important;
|
|
87
|
+
transform: rotate(180deg);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@include theme.down(sm) {
|
|
92
|
+
.#{$cls}[role='tooltip'] {
|
|
93
|
+
max-width: 300px;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import './Tooltip.css';
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvVG9vbHRpcC9zcmMvY29tcG9uZW50cy9Ub29sdGlwL3N0eWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sZ0JBQWdCIiwiZmlsZSI6ImNvbXBvbmVudHMvVG9vbHRpcC9zdHlsZS9jc3MuanMiLCJzb3VyY2VzQ29udGVudCI6W251bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './Tooltip.scss';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import './Tooltip.scss';
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvVG9vbHRpcC9zcmMvY29tcG9uZW50cy9Ub29sdGlwL3N0eWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sZ0JBQWdCIiwiZmlsZSI6ImNvbXBvbmVudHMvVG9vbHRpcC9zdHlsZS9pbmRleC5qcyIsInNvdXJjZXNDb250ZW50IjpbbnVsbF0sInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMifQ==
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
3
|
+
import { memo, useLayoutEffect, useState, useEffect } from 'react';
|
|
4
|
+
import { createPortal } from 'react-dom';
|
|
5
|
+
import { useControlledState, useEventCallback } from '@1money/hooks';
|
|
6
|
+
import { CoachMark } from '../CoachMark';
|
|
7
|
+
var DEFAULT_SPOTLIGHT_PADDING = 8;
|
|
8
|
+
var DEFAULT_GAP = 14;
|
|
9
|
+
var DEFAULT_SPOTLIGHT_RADIUS = 12;
|
|
10
|
+
var DEFAULT_Z_INDEX = 1000;
|
|
11
|
+
var COACH_MARK_WIDTH = 450;
|
|
12
|
+
var VIEWPORT_MARGIN = 12;
|
|
13
|
+
var resolveTarget = function resolveTarget(step) {
|
|
14
|
+
var _a, _b;
|
|
15
|
+
if (typeof step.target === 'string') {
|
|
16
|
+
return document.querySelector(step.target);
|
|
17
|
+
}
|
|
18
|
+
return (_b = (_a = step.target) === null || _a === void 0 ? void 0 : _a.current) !== null && _b !== void 0 ? _b : null;
|
|
19
|
+
};
|
|
20
|
+
var clampHorizontal = function clampHorizontal(targetCenterX, cardWidth) {
|
|
21
|
+
var vw = window.innerWidth;
|
|
22
|
+
var left = targetCenterX - cardWidth / 2;
|
|
23
|
+
if (left < VIEWPORT_MARGIN) {
|
|
24
|
+
left = VIEWPORT_MARGIN;
|
|
25
|
+
} else if (left + cardWidth > vw - VIEWPORT_MARGIN) {
|
|
26
|
+
left = vw - VIEWPORT_MARGIN - cardWidth;
|
|
27
|
+
}
|
|
28
|
+
var arrowX = targetCenterX - left;
|
|
29
|
+
var arrowPercent = arrowX / cardWidth * 100;
|
|
30
|
+
var needsOffset = Math.abs(arrowPercent - 50) > 2;
|
|
31
|
+
return {
|
|
32
|
+
left: left,
|
|
33
|
+
arrowOffset: needsOffset ? "".concat(arrowPercent.toFixed(1), "%") : undefined
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
var clampVertical = function clampVertical(targetCenterY, cardHeight) {
|
|
37
|
+
var vh = window.innerHeight;
|
|
38
|
+
var top = targetCenterY - cardHeight / 2;
|
|
39
|
+
if (top < VIEWPORT_MARGIN) {
|
|
40
|
+
top = VIEWPORT_MARGIN;
|
|
41
|
+
} else if (top + cardHeight > vh - VIEWPORT_MARGIN) {
|
|
42
|
+
top = vh - VIEWPORT_MARGIN - cardHeight;
|
|
43
|
+
}
|
|
44
|
+
var arrowY = targetCenterY - top;
|
|
45
|
+
var arrowPercent = arrowY / cardHeight * 100;
|
|
46
|
+
var needsOffset = Math.abs(arrowPercent - 50) > 2;
|
|
47
|
+
return {
|
|
48
|
+
top: top,
|
|
49
|
+
arrowOffset: needsOffset ? "".concat(arrowPercent.toFixed(1), "%") : undefined
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
var computePosition = function computePosition(el, placement, spotlightPadding, gap, spotlightRadius, zIndex) {
|
|
53
|
+
var rect = el.getBoundingClientRect();
|
|
54
|
+
var spotlight = {
|
|
55
|
+
position: 'absolute',
|
|
56
|
+
top: rect.top - spotlightPadding,
|
|
57
|
+
left: rect.left - spotlightPadding,
|
|
58
|
+
width: rect.width + spotlightPadding * 2,
|
|
59
|
+
height: rect.height + spotlightPadding * 2,
|
|
60
|
+
borderRadius: spotlightRadius,
|
|
61
|
+
boxShadow: '0 0 0 9999px rgba(0, 0, 0, 0.45)',
|
|
62
|
+
pointerEvents: 'none',
|
|
63
|
+
transition: 'all 250ms ease',
|
|
64
|
+
zIndex: zIndex + 1
|
|
65
|
+
};
|
|
66
|
+
var coachMark = {
|
|
67
|
+
position: 'absolute',
|
|
68
|
+
zIndex: zIndex + 2,
|
|
69
|
+
transition: 'all 250ms ease'
|
|
70
|
+
};
|
|
71
|
+
var arrowOffset;
|
|
72
|
+
var targetCenterX = rect.left + rect.width / 2;
|
|
73
|
+
var targetCenterY = rect.top + rect.height / 2;
|
|
74
|
+
switch (placement) {
|
|
75
|
+
case 'bottom':
|
|
76
|
+
{
|
|
77
|
+
var h = clampHorizontal(targetCenterX, COACH_MARK_WIDTH);
|
|
78
|
+
coachMark.top = rect.bottom + gap;
|
|
79
|
+
coachMark.left = h.left;
|
|
80
|
+
arrowOffset = h.arrowOffset;
|
|
81
|
+
break;
|
|
82
|
+
}
|
|
83
|
+
case 'top':
|
|
84
|
+
{
|
|
85
|
+
var _h = clampHorizontal(targetCenterX, COACH_MARK_WIDTH);
|
|
86
|
+
coachMark.bottom = window.innerHeight - rect.top + gap;
|
|
87
|
+
coachMark.left = _h.left;
|
|
88
|
+
arrowOffset = _h.arrowOffset;
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
case 'right':
|
|
92
|
+
{
|
|
93
|
+
var v = clampVertical(targetCenterY, COACH_MARK_WIDTH);
|
|
94
|
+
coachMark.top = v.top;
|
|
95
|
+
coachMark.left = rect.right + gap;
|
|
96
|
+
arrowOffset = v.arrowOffset;
|
|
97
|
+
break;
|
|
98
|
+
}
|
|
99
|
+
case 'left':
|
|
100
|
+
{
|
|
101
|
+
var _v = clampVertical(targetCenterY, COACH_MARK_WIDTH);
|
|
102
|
+
coachMark.top = _v.top;
|
|
103
|
+
coachMark.right = window.innerWidth - rect.left + gap;
|
|
104
|
+
arrowOffset = _v.arrowOffset;
|
|
105
|
+
break;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
return {
|
|
109
|
+
spotlight: spotlight,
|
|
110
|
+
coachMark: coachMark,
|
|
111
|
+
arrowOffset: arrowOffset
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
var TourInner = function TourInner(props) {
|
|
115
|
+
var _a, _b;
|
|
116
|
+
var open = props.open,
|
|
117
|
+
steps = props.steps,
|
|
118
|
+
activeStep = props.activeStep,
|
|
119
|
+
_props$defaultActiveS = props.defaultActiveStep,
|
|
120
|
+
defaultActiveStep = _props$defaultActiveS === void 0 ? 0 : _props$defaultActiveS,
|
|
121
|
+
onChange = props.onChange,
|
|
122
|
+
onClose = props.onClose,
|
|
123
|
+
_props$dismissible = props.dismissible,
|
|
124
|
+
dismissible = _props$dismissible === void 0 ? true : _props$dismissible,
|
|
125
|
+
labels = props.labels,
|
|
126
|
+
_props$spotlightPaddi = props.spotlightPadding,
|
|
127
|
+
spotlightPadding = _props$spotlightPaddi === void 0 ? DEFAULT_SPOTLIGHT_PADDING : _props$spotlightPaddi,
|
|
128
|
+
_props$gap = props.gap,
|
|
129
|
+
gap = _props$gap === void 0 ? DEFAULT_GAP : _props$gap,
|
|
130
|
+
_props$scrollIntoView = props.scrollIntoView,
|
|
131
|
+
shouldScroll = _props$scrollIntoView === void 0 ? true : _props$scrollIntoView,
|
|
132
|
+
_props$spotlightRadiu = props.spotlightRadius,
|
|
133
|
+
spotlightRadius = _props$spotlightRadiu === void 0 ? DEFAULT_SPOTLIGHT_RADIUS : _props$spotlightRadiu,
|
|
134
|
+
_props$closeOnBackdro = props.closeOnBackdropClick,
|
|
135
|
+
closeOnBackdropClick = _props$closeOnBackdro === void 0 ? false : _props$closeOnBackdro,
|
|
136
|
+
_props$zIndex = props.zIndex,
|
|
137
|
+
zIndex = _props$zIndex === void 0 ? DEFAULT_Z_INDEX : _props$zIndex;
|
|
138
|
+
var _useControlledState = useControlledState(defaultActiveStep, activeStep),
|
|
139
|
+
_useControlledState2 = _slicedToArray(_useControlledState, 2),
|
|
140
|
+
currentStep = _useControlledState2[0],
|
|
141
|
+
setCurrentStep = _useControlledState2[1];
|
|
142
|
+
var _useState = useState(null),
|
|
143
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
144
|
+
pos = _useState2[0],
|
|
145
|
+
setPos = _useState2[1];
|
|
146
|
+
var currentConfig = steps[currentStep];
|
|
147
|
+
var placement = (_a = currentConfig === null || currentConfig === void 0 ? void 0 : currentConfig.placement) !== null && _a !== void 0 ? _a : 'bottom';
|
|
148
|
+
// Compute position on step change, open change, and resize/scroll
|
|
149
|
+
useLayoutEffect(function () {
|
|
150
|
+
if (!open || !currentConfig) {
|
|
151
|
+
setPos(null);
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
var el = resolveTarget(currentConfig);
|
|
155
|
+
if (!el) return;
|
|
156
|
+
if (shouldScroll) {
|
|
157
|
+
el.scrollIntoView({
|
|
158
|
+
behavior: 'smooth',
|
|
159
|
+
block: 'nearest'
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
var update = function update() {
|
|
163
|
+
var target = resolveTarget(currentConfig);
|
|
164
|
+
if (!target) return;
|
|
165
|
+
setPos(computePosition(target, placement, spotlightPadding, gap, spotlightRadius, zIndex));
|
|
166
|
+
};
|
|
167
|
+
// Initial position after possible scroll
|
|
168
|
+
var timer = setTimeout(update, shouldScroll ? 300 : 0);
|
|
169
|
+
window.addEventListener('resize', update);
|
|
170
|
+
window.addEventListener('scroll', update, true);
|
|
171
|
+
return function () {
|
|
172
|
+
clearTimeout(timer);
|
|
173
|
+
window.removeEventListener('resize', update);
|
|
174
|
+
window.removeEventListener('scroll', update, true);
|
|
175
|
+
};
|
|
176
|
+
}, [open, currentStep, currentConfig, placement, spotlightPadding, gap, shouldScroll, spotlightRadius, zIndex]);
|
|
177
|
+
// Reset step when tour opens
|
|
178
|
+
useEffect(function () {
|
|
179
|
+
if (open && activeStep === undefined) {
|
|
180
|
+
setCurrentStep(defaultActiveStep);
|
|
181
|
+
}
|
|
182
|
+
}, [open]);
|
|
183
|
+
var handleChange = useEventCallback(function (step) {
|
|
184
|
+
setCurrentStep(step);
|
|
185
|
+
onChange === null || onChange === void 0 ? void 0 : onChange(step);
|
|
186
|
+
});
|
|
187
|
+
var handleFinish = useEventCallback(function () {
|
|
188
|
+
onClose();
|
|
189
|
+
});
|
|
190
|
+
var handleDismiss = useEventCallback(function () {
|
|
191
|
+
onClose();
|
|
192
|
+
});
|
|
193
|
+
if (!open || !pos) return null;
|
|
194
|
+
var coachMarkSteps = steps.map(function (s) {
|
|
195
|
+
return {
|
|
196
|
+
icon: s.icon,
|
|
197
|
+
heading: s.heading,
|
|
198
|
+
body: s.body
|
|
199
|
+
};
|
|
200
|
+
});
|
|
201
|
+
var overlay = {
|
|
202
|
+
position: 'fixed',
|
|
203
|
+
inset: 0,
|
|
204
|
+
zIndex: zIndex,
|
|
205
|
+
pointerEvents: 'none'
|
|
206
|
+
};
|
|
207
|
+
var backdropClick = {
|
|
208
|
+
position: 'fixed',
|
|
209
|
+
inset: 0,
|
|
210
|
+
zIndex: zIndex,
|
|
211
|
+
pointerEvents: 'auto',
|
|
212
|
+
background: 'transparent'
|
|
213
|
+
};
|
|
214
|
+
return /*#__PURE__*/createPortal(_jsxs(_Fragment, {
|
|
215
|
+
children: [_jsx("div", {
|
|
216
|
+
style: backdropClick,
|
|
217
|
+
onClick: closeOnBackdropClick ? handleDismiss : undefined
|
|
218
|
+
}), _jsxs("div", {
|
|
219
|
+
style: overlay,
|
|
220
|
+
children: [_jsx("div", {
|
|
221
|
+
style: pos.spotlight
|
|
222
|
+
}), _jsx("div", {
|
|
223
|
+
style: Object.assign(Object.assign({}, pos.coachMark), {
|
|
224
|
+
pointerEvents: 'auto'
|
|
225
|
+
}),
|
|
226
|
+
children: _jsx(CoachMark, {
|
|
227
|
+
steps: coachMarkSteps,
|
|
228
|
+
activeStep: currentStep,
|
|
229
|
+
onChange: handleChange,
|
|
230
|
+
onFinish: handleFinish,
|
|
231
|
+
onDismiss: handleDismiss,
|
|
232
|
+
dismissible: dismissible,
|
|
233
|
+
placement: placement,
|
|
234
|
+
arrowOffset: (_b = currentConfig === null || currentConfig === void 0 ? void 0 : currentConfig.arrowOffset) !== null && _b !== void 0 ? _b : pos.arrowOffset,
|
|
235
|
+
labels: labels
|
|
236
|
+
})
|
|
237
|
+
})]
|
|
238
|
+
})]
|
|
239
|
+
}), document.body);
|
|
240
|
+
};
|
|
241
|
+
export var Tour = /*#__PURE__*/memo(TourInner);
|
|
242
|
+
export default Tour;
|
|
243
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvVG91ci9Ub3VyLmpzIiwiY29tcG9uZW50cy9zcmMvY29tcG9uZW50cy9Ub3VyL1RvdXIudHN4Il0sIm5hbWVzIjpbImpzeCIsIl9qc3giLCJqc3hzIiwiX2pzeHMiLCJGcmFnbWVudCIsIl9GcmFnbWVudCIsIm1lbW8iLCJ1c2VMYXlvdXRFZmZlY3QiLCJ1c2VTdGF0ZSIsInVzZUVmZmVjdCIsImNyZWF0ZVBvcnRhbCIsInVzZUNvbnRyb2xsZWRTdGF0ZSIsInVzZUV2ZW50Q2FsbGJhY2siLCJDb2FjaE1hcmsiLCJERUZBVUxUX1NQT1RMSUdIVF9QQURESU5HIiwiREVGQVVMVF9HQVAiLCJERUZBVUxUX1NQT1RMSUdIVF9SQURJVVMiLCJERUZBVUxUX1pfSU5ERVgiLCJDT0FDSF9NQVJLX1dJRFRIIiwiVklFV1BPUlRfTUFSR0lOIiwicmVzb2x2ZVRhcmdldCIsInN0ZXAiLCJfYSIsIl9iIiwidGFyZ2V0IiwiZG9jdW1lbnQiLCJxdWVyeVNlbGVjdG9yIiwiY3VycmVudCIsImNsYW1wSG9yaXpvbnRhbCIsInRhcmdldENlbnRlclgiLCJjYXJkV2lkdGgiLCJ2dyIsIndpbmRvdyIsImlubmVyV2lkdGgiLCJsZWZ0IiwiYXJyb3dYIiwiYXJyb3dQZXJjZW50IiwibmVlZHNPZmZzZXQiLCJNYXRoIiwiYWJzIiwiYXJyb3dPZmZzZXQiLCJjb25jYXQiLCJ0b0ZpeGVkIiwidW5kZWZpbmVkIiwiY2xhbXBWZXJ0aWNhbCIsInRhcmdldENlbnRlclkiLCJjYXJkSGVpZ2h0IiwidmgiLCJpbm5lckhlaWdodCIsInRvcCIsImFycm93WSIsImNvbXB1dGVQb3NpdGlvbiIsImVsIiwicGxhY2VtZW50Iiwic3BvdGxpZ2h0UGFkZGluZyIsImdhcCIsInNwb3RsaWdodFJhZGl1cyIsInpJbmRleCIsInJlY3QiLCJnZXRCb3VuZGluZ0NsaWVudFJlY3QiLCJzcG90bGlnaHQiLCJwb3NpdGlvbiIsIndpZHRoIiwiaGVpZ2h0IiwiYm9yZGVyUmFkaXVzIiwiYm94U2hhZG93IiwicG9pbnRlckV2ZW50cyIsInRyYW5zaXRpb24iLCJjb2FjaE1hcmsiLCJoIiwiYm90dG9tIiwidiIsInJpZ2h0IiwiVG91cklubmVyIiwicHJvcHMiLCJvcGVuIiwic3RlcHMiLCJhY3RpdmVTdGVwIiwiX3Byb3BzJGRlZmF1bHRBY3RpdmVTIiwiZGVmYXVsdEFjdGl2ZVN0ZXAiLCJvbkNoYW5nZSIsIm9uQ2xvc2UiLCJfcHJvcHMkZGlzbWlzc2libGUiLCJkaXNtaXNzaWJsZSIsImxhYmVscyIsIl9wcm9wcyRzcG90bGlnaHRQYWRkaSIsIl9wcm9wcyRnYXAiLCJfcHJvcHMkc2Nyb2xsSW50b1ZpZXciLCJzY3JvbGxJbnRvVmlldyIsInNob3VsZFNjcm9sbCIsIl9wcm9wcyRzcG90bGlnaHRSYWRpdSIsIl9wcm9wcyRjbG9zZU9uQmFja2RybyIsImNsb3NlT25CYWNrZHJvcENsaWNrIiwiX3Byb3BzJHpJbmRleCIsIl91c2VDb250cm9sbGVkU3RhdGUiLCJfdXNlQ29udHJvbGxlZFN0YXRlMiIsIl9zbGljZWRUb0FycmF5IiwiY3VycmVudFN0ZXAiLCJzZXRDdXJyZW50U3RlcCIsIl91c2VTdGF0ZSIsIl91c2VTdGF0ZTIiLCJwb3MiLCJzZXRQb3MiLCJjdXJyZW50Q29uZmlnIiwiYmVoYXZpb3IiLCJibG9jayIsInVwZGF0ZSIsInRpbWVyIiwic2V0VGltZW91dCIsImFkZEV2ZW50TGlzdGVuZXIiLCJjbGVhclRpbWVvdXQiLCJyZW1vdmVFdmVudExpc3RlbmVyIiwiaGFuZGxlQ2hhbmdlIiwiaGFuZGxlRmluaXNoIiwiaGFuZGxlRGlzbWlzcyIsImNvYWNoTWFya1N0ZXBzIiwibWFwIiwicyIsImljb24iLCJoZWFkaW5nIiwiYm9keSIsIm92ZXJsYXkiLCJpbnNldCIsImJhY2tkcm9wQ2xpY2siLCJiYWNrZ3JvdW5kIiwiY2hpbGRyZW4iLCJzdHlsZSIsIm9uQ2xpY2siLCJPYmplY3QiLCJhc3NpZ24iLCJvbkZpbmlzaCIsIm9uRGlzbWlzcyIsIlRvdXIiXSwibWFwcGluZ3Mi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VyxFQUFFQSxXQUFXO1VBQ3hCOUIsU0FBUyxFQUFFQSxTQUFTO1VBQ3BCYixXQUFXLEVBQUUsQ0FBQWpCLEVBQUEsR0FBQWdGLGFBQWEsS0FBQSxJQUFBLElBQWJBLGFBQWEsS0FBQSxLQUFBLENBQUEsR0FBQSxLQUFBLENBQUEsR0FBYkEsYUFBYSxDQUFFL0QsV0FBVyxNQUFBLElBQUEsSUFBQWpCLEVBQUEsS0FBQSxLQUFBLENBQUEsR0FBQUEsRUFBQSxHQUFJOEUsR0FBRyxDQUFDN0QsV0FBVztVQUMxRDRDLE1BQU0sRUFBRUE7UUFBTSxDQUFBO01BQ2QsQ0FBQSxDQUNFO0lBQUEsQ0FBQSxDQUNGO0VBQUEsQ0FBQSxDQUNMLEVBQ0gzRCxRQUFRLENBQUMrRixJQUFJLENBQ2Q7QUFDSCxDQUFDO0FBRUQsT0FBTyxJQUFNWSxJQUFJLGdCQUFHOUgsSUFBSSxDQUFDbUUsU0FBUyxDQUFDO0FBQ25DLGVBQWUyRCxJQUFJIiwiZmlsZSI6ImNvbXBvbmVudHMvVG91ci9Ub3VyLmpzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsganN4IGFzIF9qc3gsIGpzeHMgYXMgX2pzeHMsIEZyYWdtZW50IGFzIF9GcmFnbWVudCB9IGZyb20gXCJyZWFjdC9qc3gtcnVudGltZVwiO1xuaW1wb3J0IHsgbWVtbywgdXNlTGF5b3V0RWZmZWN0LCB1c2VTdGF0ZSwgdXNlRWZmZWN0IH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgY3JlYXRlUG9ydGFsIH0gZnJvbSAncmVhY3QtZG9tJztcbmltcG9ydCB7IHVzZUNvbnRyb2xsZWRTdGF0ZSwgdXNlRXZlbnRDYWxsYmFjayB9IGZyb20gJ0AxbW9uZXkvaG9va3MnO1xuaW1wb3J0IHsgQ29hY2hNYXJrIH0gZnJvbSAnLi4vQ29hY2hNYXJrJztcbmNvbnN0IERFRkFVTFRfU1BPVExJR0hUX1BBRERJTkcgPSA4O1xuY29uc3QgREVGQVVMVF9HQVAgPSAxNDtcbmNvbnN0IERFRkFVTFRfU1BPVExJR0hUX1JBRElVUyA9IDEyO1xuY29uc3QgREVGQVVMVF9aX0lOREVYID0gMTAwMDtcbmNvbnN0IENPQUNIX01BUktfV0lEVEggPSA0NTA7XG5jb25zdCBWSUVXUE9SVF9NQVJHSU4gPSAxMjtcbmNvbnN0IHJlc29sdmVUYXJnZXQgPSAoc3RlcCkgPT4ge1xuICAgIHZhciBfYSwgX2I7XG4gICAgaWYgKHR5cGVvZiBzdGVwLnRhcmdldCA9PT0gJ3N0cmluZycpIHtcbiAgICAgICAgcmV0dXJuIGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3Ioc3RlcC50YXJnZXQpO1xuICAgIH1cbiAgICByZXR1cm4gKF9iID0gKF9hID0gc3RlcC50YXJnZXQpID09PSBudWxsIHx8IF9hID09PSB2b2lkIDAgPyB2b2lkIDAgOiBfYS5jdXJyZW50KSAhPT0gbnVsbCAmJiBfYiAhPT0gdm9pZCAwID8gX2IgOiBudWxsO1xufTtcbmNvbnN0IGNsYW1wSG9yaXpvbnRhbCA9ICh0YXJnZXRDZW50ZXJYLCBjYXJkV2lkdGgpID0+IHtcbiAgICBjb25zdCB2dyA9IHdpbmRvdy5pbm5lcldpZHRoO1xuICAgIGxldCBsZWZ0ID0gdGFyZ2V0Q2VudGVyWCAtIGNhcmRXaWR0aCAvIDI7XG4gICAgaWYgKGxlZnQgPCBWSUVXUE9SVF9NQVJHSU4pIHtcbiAgICAgICAgbGVmdCA9IFZJRVdQT1JUX01BUkdJTjtcbiAgICB9XG4gICAgZWxzZSBpZiAobGVmdCArIGNhcmRXaWR0aCA+IHZ3IC0gVklFV1BPUlRfTUFSR0lOKSB7XG4gICAgICAgIGxlZnQgPSB2dyAtIFZJRVdQT1JUX01BUkdJTiAtIGNhcmRXaWR0aDtcbiAgICB9XG4gICAgY29uc3QgYXJyb3dYID0gdGFyZ2V0Q2VudGVyWCAtIGxlZnQ7XG4gICAgY29uc3QgYXJyb3dQZXJjZW50ID0gKGFycm93WCAvIGNhcmRXaWR0aCkgKiAxMDA7XG4gICAgY29uc3QgbmVlZHNPZmZzZXQgPSBNYXRoLmFicyhhcnJvd1BlcmNlbnQgLSA1MCkgPiAyO1xuICAgIHJldHVybiB7XG4gICAgICAgIGxlZnQsXG4gICAgICAgIGFycm93T2Zmc2V0OiBuZWVkc09mZnNldCA/IGAke2Fycm93UGVyY2VudC50b0ZpeGVkKDEpfSVgIDogdW5kZWZpbmVkLFxuICAgIH07XG59O1xuY29uc3QgY2xhbXBWZXJ0aWNhbCA9ICh0YXJnZXRDZW50ZXJZLCBjYXJkSGVpZ2h0KSA9PiB7XG4gICAgY29uc3QgdmggPSB3aW5kb3cuaW5uZXJIZWlnaHQ7XG4gICAgbGV0IHRvcCA9IHRhcmdldENlbnRlclkgLSBjYXJkSGVpZ2h0IC8gMjtcbiAgICBpZiAodG9wIDwgVklFV1BPUlRfTUFSR0lOKSB7XG4gICAgICAgIHRvcCA9IFZJRVdQT1JUX01BUkdJTjtcbiAgICB9XG4gICAgZWxzZSBpZiAodG9wICsgY2FyZEhlaWdodCA+IHZoIC0gVklFV1BPUlRfTUFSR0lOKSB7XG4gICAgICAgIHRvcCA9IHZoIC0gVklFV1BPUlRfTUFSR0lOIC0gY2FyZEhlaWdodDtcbiAgICB9XG4gICAgY29uc3QgYXJyb3dZID0gdGFyZ2V0Q2VudGVyWSAtIHRvcDtcbiAgICBjb25zdCBhcnJvd1BlcmNlbnQgPSAoYXJyb3dZIC8gY2FyZEhlaWdodCkgKiAxMDA7XG4gICAgY29uc3QgbmVlZHNPZmZzZXQgPSBNYXRoLmFicyhhcnJvd1BlcmNlbnQgLSA1MCkgPiAyO1xuICAgIHJldHVybiB7XG4gICAgICAgIHRvcCxcbiAgICAgICAgYXJyb3dPZmZzZXQ6IG5lZWRzT2Zmc2V0ID8gYCR7YXJyb3dQZXJjZW50LnRvRml4ZWQoMSl9JWAgOiB1bmRlZmluZWQsXG4gICAgfTtcbn07XG5jb25zdCBjb21wdXRlUG9zaXRpb24gPSAoZWwsIHBsYWNlbWVudCwgc3BvdGxpZ2h0UGFkZGluZywgZ2FwLCBzcG90bGlnaHRSYWRpdXMsIHpJbmRleCkgPT4ge1xuICAgIGNvbnN0IHJlY3QgPSBlbC5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcbiAgICBjb25zdCBzcG90bGlnaHQgPSB7XG4gICAgICAgIHBvc2l0aW9uOiAnYWJzb2x1dGUnLFxuICAgICAgICB0b3A6IHJlY3QudG9wIC0gc3BvdGxpZ2h0UGFkZGluZyxcbiAgICAgICAgbGVmdDogcmVjdC5sZWZ0IC0gc3BvdGxpZ2h0UGFkZGluZyxcbiAgICAgICAgd2lkdGg6IHJlY3Qud2lkdGggKyBzcG90bGlnaHRQYWRkaW5nICogMixcbiAgICAgICAgaGVpZ2h0OiByZWN0LmhlaWdodCArIHNwb3RsaWdodFBhZGRpbmcgKiAyLFxuICAgICAgICBib3JkZXJSYWRpdXM6IHNwb3RsaWdodFJhZGl1cyxcbiAgICAgICAgYm94U2hhZG93OiAnMCAwIDAgOTk5OXB4IHJnYmEoMCwgMCwgMCwgMC40NSknLFxuICAgICAgICBwb2ludGVyRXZlbnRzOiAnbm9uZScsXG4gICAgICAgIHRyYW5zaXRpb246ICdhbGwgMjUwbXMgZWFzZScsXG4gICAgICAgIHpJbmRleDogekluZGV4ICsgMSxcbiAgICB9O1xuICAgIGNvbnN0IGNvYWNoTWFyayA9IHtcbiAgICAgICAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gICAgICAgIHpJbmRleDogekluZGV4ICsgMixcbiAgICAgICAgdHJhbnNpdGlvbjogJ2FsbCAyNTBtcyBlYXNlJyxcbiAgICB9O1xuICAgIGxldCBhcnJvd09mZnNldDtcbiAgICBjb25zdCB0YXJnZXRDZW50ZXJYID0gcmVjdC5sZWZ0ICsgcmVjdC53aWR0aCAvIDI7XG4gICAgY29uc3QgdGFyZ2V0Q2VudGVyWSA9IHJlY3QudG9wICsgcmVjdC5oZWlnaHQgLyAyO1xuICAgIHN3aXRjaCAocGxhY2VtZW50KSB7XG4gICAgICAgIGNhc2UgJ2JvdHRvbSc6IHtcbiAgICAgICAgICAgIGNvbnN0IGggPSBjbGFtcEhvcml6b250YWwodGFyZ2V0Q2VudGVyWCwgQ09BQ0hfTUFSS19XSURUSCk7XG4gICAgICAgICAgICBjb2FjaE1hcmsudG9wID0gcmVjdC5ib3R0b20gKyBnYXA7XG4gICAgICAgICAgICBjb2FjaE1hcmsubGVmdCA9IGgubGVmdDtcbiAgICAgICAgICAgIGFycm93T2Zmc2V0ID0gaC5hcnJvd09mZnNldDtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgICAgIGNhc2UgJ3RvcCc6IHtcbiAgICAgICAgICAgIGNvbnN0IGggPSBjbGFtcEhvcml6b250YWwodGFyZ2V0Q2VudGVyWCwgQ09BQ0hfTUFSS19XSURUSCk7XG4gICAgICAgICAgICBjb2FjaE1hcmsuYm90dG9tID0gd2luZG93LmlubmVySGVpZ2h0IC0gcmVjdC50b3AgKyBnYXA7XG4gICAgICAgICAgICBjb2FjaE1hcmsubGVmdCA9IGgubGVmdDtcbiAgICAgICAgICAgIGFycm93T2Zmc2V0ID0gaC5hcnJvd09mZnNldDtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgICAgIGNhc2UgJ3JpZ2h0Jzoge1xuICAgICAgICAgICAgY29uc3QgdiA9IGNsYW1wVmVydGljYWwodGFyZ2V0Q2VudGVyWSwgQ09BQ0hfTUFSS19XSURUSCk7XG4gICAgICAgICAgICBjb2FjaE1hcmsudG9wID0gdi50b3A7XG4gICAgICAgICAgICBjb2FjaE1hcmsubGVmdCA9IHJlY3QucmlnaHQgKyBnYXA7XG4gICAgICAgICAgICBhcnJvd09mZnNldCA9IHYuYXJyb3dPZmZzZXQ7XG4gICAgICAgICAgICBicmVhaztcbiAgICAgICAgfVxuICAgICAgICBjYXNlICdsZWZ0Jzoge1xuICAgICAgICAgICAgY29uc3QgdiA9IGNsYW1wVmVydGljYWwodGFyZ2V0Q2VudGVyWSwgQ09BQ0hfTUFSS19XSURUSCk7XG4gICAgICAgICAgICBjb2FjaE1hcmsudG9wID0gdi50b3A7XG4gICAgICAgICAgICBjb2FjaE1hcmsucmlnaHQgPSB3aW5kb3cuaW5uZXJXaWR0aCAtIHJlY3QubGVmdCArIGdhcDtcbiAgICAgICAgICAgIGFycm93T2Zmc2V0ID0gdi5hcnJvd09mZnNldDtcbiAgICAgICAgICAgIGJyZWFrO1xuICAgICAgICB9XG4gICAgfVxuICAgIHJldHVybiB7IHNwb3RsaWdodCwgY29hY2hNYXJrLCBhcnJvd09mZnNldCB9O1xufTtcbmNvbnN0IFRvdXJJbm5lciA9IHByb3BzID0+IHtcbiAgICB2YXIgX2EsIF9iO1xuICAgIGNvbnN0IHsgb3Blbiwgc3RlcHMsIGFjdGl2ZVN0ZXAsIGRlZmF1bHRBY3RpdmVTdGVwID0gMCwgb25DaGFuZ2UsIG9uQ2xvc2UsIGRpc21pc3NpYmxlID0gdHJ1ZSwgbGFiZWxzLCBzcG90bGlnaHRQYWRkaW5nID0gREVGQVVMVF9TUE9UTElHSFRfUEFERElORywgZ2FwID0gREVGQVVMVF9HQVAsIHNjcm9sbEludG9WaWV3OiBzaG91bGRTY3JvbGwgPSB0cnVlLCBzcG90bGlnaHRSYWRpdXMgPSBERUZBVUxUX1NQT1RMSUdIVF9SQURJVVMsIGNsb3NlT25CYWNrZHJvcENsaWNrID0gZmFsc2UsIHpJbmRleCA9IERFRkFVTFRfWl9JTkRFWCwgfSA9IHByb3BzO1xuICAgIGNvbnN0IFtjdXJyZW50U3RlcCwgc2V0Q3VycmVudFN0ZXBdID0gdXNlQ29udHJvbGxlZFN0YXRlKGRlZmF1bHRBY3RpdmVTdGVwLCBhY3RpdmVTdGVwKTtcbiAgICBjb25zdCBbcG9zLCBzZXRQb3NdID0gdXNlU3RhdGUobnVsbCk7XG4gICAgY29uc3QgY3VycmVudENvbmZpZyA9IHN0ZXBzW2N1cnJlbnRTdGVwXTtcbiAgICBjb25zdCBwbGFjZW1lbnQgPSAoX2EgPSBjdXJyZW50Q29uZmlnID09PSBudWxsIHx8IGN1cnJlbnRDb25maWcgPT09IHZvaWQgMCA/IHZvaWQgMCA6IGN1cnJlbnRDb25maWcucGxhY2VtZW50KSAhPT0gbnVsbCAmJiBfYSAhPT0gdm9pZCAwID8gX2EgOiAnYm90dG9tJztcbiAgICAvLyBDb21wdXRlIHBvc2l0aW9uIG9uIHN0ZXAgY2hhbmdlLCBvcGVuIGNoYW5nZSwgYW5kIHJlc2l6ZS9zY3JvbGxcbiAgICB1c2VMYXlvdXRFZmZlY3QoKCkgPT4ge1xuICAgICAgICBpZiAoIW9wZW4gfHwgIWN1cnJlbnRDb25maWcpIHtcbiAgICAgICAgICAgIHNldFBvcyhudWxsKTtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICBjb25zdCBlbCA9IHJlc29sdmVUYXJnZXQoY3VycmVudENvbmZpZyk7XG4gICAgICAgIGlmICghZWwpXG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIGlmIChzaG91bGRTY3JvbGwpIHtcbiAgICAgICAgICAgIGVsLnNjcm9sbEludG9WaWV3KHsgYmVoYXZpb3I6ICdzbW9vdGgnLCBibG9jazogJ25lYXJlc3QnIH0pO1xuICAgICAgICB9XG4gICAgICAgIGNvbnN0IHVwZGF0ZSA9ICgpID0+IHtcbiAgICAgICAgICAgIGNvbnN0IHRhcmdldCA9IHJlc29sdmVUYXJnZXQoY3VycmVudENvbmZpZyk7XG4gICAgICAgICAgICBpZiAoIXRhcmdldClcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICBzZXRQb3MoY29tcHV0ZVBvc2l0aW9uKHRhcmdldCwgcGxhY2VtZW50LCBzcG90bGlnaHRQYWRkaW5nLCBnYXAsIHNwb3RsaWdodFJhZGl1cywgekluZGV4KSk7XG4gICAgICAgIH07XG4gICAgICAgIC8vIEluaXRpYWwgcG9zaXRpb24gYWZ0ZXIgcG9zc2libGUgc2Nyb2xsXG4gICAgICAgIGNvbnN0IHRpbWVyID0gc2V0VGltZW91dCh1cGRhdGUsIHNob3VsZFNjcm9sbCA/IDMwMCA6IDApO1xuICAgICAgICB3aW5kb3cuYWRkRXZlbnRMaXN0ZW5lcigncmVzaXplJywgdXBkYXRlKTtcbiAgICAgICAgd2luZG93LmFkZEV2ZW50TGlzdGVuZXIoJ3Njcm9sbCcsIHVwZGF0ZSwgdHJ1ZSk7XG4gICAgICAgIHJldHVybiAoKSA9PiB7XG4gICAgICAgICAgICBjbGVhclRpbWVvdXQodGltZXIpO1xuICAgICAgICAgICAgd2luZG93LnJlbW92ZUV2ZW50TGlzdGVuZXIoJ3Jlc2l6ZScsIHVwZGF0ZSk7XG4gICAgICAgICAgICB3aW5kb3cucmVtb3ZlRXZlbnRMaXN0ZW5lcignc2Nyb2xsJywgdXBkYXRlLCB0cnVlKTtcbiAgICAgICAgfTtcbiAgICB9LCBbb3BlbiwgY3VycmVudFN0ZXAsIGN1cnJlbnRDb25maWcsIHBsYWNlbWVudCwgc3BvdGxpZ2h0UGFkZGluZywgZ2FwLCBzaG91bGRTY3JvbGwsIHNwb3RsaWdodFJhZGl1cywgekluZGV4XSk7XG4gICAgLy8gUmVzZXQgc3RlcCB3aGVuIHRvdXIgb3BlbnNcbiAgICB1c2VFZmZlY3QoKCkgPT4ge1xuICAgICAgICBpZiAob3BlbiAmJiBhY3RpdmVTdGVwID09PSB1bmRlZmluZWQpIHtcbiAgICAgICAgICAgIHNldEN1cnJlbnRTdGVwKGRlZmF1bHRBY3RpdmVTdGVwKTtcbiAgICAgICAgfVxuICAgIH0sIFtvcGVuXSk7XG4gICAgY29uc3QgaGFuZGxlQ2hhbmdlID0gdXNlRXZlbnRDYWxsYmFjaygoc3RlcCkgPT4ge1xuICAgICAgICBzZXRDdXJyZW50U3RlcChzdGVwKTtcbiAgICAgICAgb25DaGFuZ2UgPT09IG51bGwgfHwgb25DaGFuZ2UgPT09IHZvaWQgMCA/IHZvaWQgMCA6IG9uQ2hhbmdlKHN0ZXApO1xuICAgIH0pO1xuICAgIGNvbnN0IGhhbmRsZUZpbmlzaCA9IHVzZUV2ZW50Q2FsbGJhY2soKCkgPT4ge1xuICAgICAgICBvbkNsb3NlKCk7XG4gICAgfSk7XG4gICAgY29uc3QgaGFuZGxlRGlzbWlzcyA9IHVzZUV2ZW50Q2FsbGJhY2soKCkgPT4ge1xuICAgICAgICBvbkNsb3NlKCk7XG4gICAgfSk7XG4gICAgaWYgKCFvcGVuIHx8ICFwb3MpXG4gICAgICAgIHJldHVybiBudWxsO1xuICAgIGNvbnN0IGNvYWNoTWFya1N0ZXBzID0gc3RlcHMubWFwKHMgPT4gKHtcbiAgICAgICAgaWNvbjogcy5pY29uLFxuICAgICAgICBoZWFkaW5nOiBzLmhlYWRpbmcsXG4gICAgICAgIGJvZHk6IHMuYm9keSxcbiAgICB9KSk7XG4gICAgY29uc3Qgb3ZlcmxheSA9IHtcbiAgICAgICAgcG9zaXRpb246ICdmaXhlZCcsXG4gICAgICAgIGluc2V0OiAwLFxuICAgICAgICB6SW5kZXgsXG4gICAgICAgIHBvaW50ZXJFdmVudHM6ICdub25lJyxcbiAgICB9O1xuICAgIGNvbnN0IGJhY2tkcm9wQ2xpY2sgPSB7XG4gICAgICAgIHBvc2l0aW9uOiAnZml4ZWQnLFxuICAgICAgICBpbnNldDogMCxcbiAgICAgICAgekluZGV4LFxuICAgICAgICBwb2ludGVyRXZlbnRzOiAnYXV0bycsXG4gICAgICAgIGJhY2tncm91bmQ6ICd0cmFuc3BhcmVudCcsXG4gICAgfTtcbiAgICByZXR1cm4gY3JlYXRlUG9ydGFsKF9qc3hzKF9GcmFnbWVudCwgeyBjaGlsZHJlbjogW19qc3goXCJkaXZcIiwgeyBzdHlsZTogYmFja2Ryb3BDbGljaywgb25DbGljazogY2xvc2VPbkJhY2tkcm9wQ2xpY2sgPyBoYW5kbGVEaXNtaXNzIDogdW5kZWZpbmVkIH0pLCBfanN4cyhcImRpdlwiLCB7IHN0eWxlOiBvdmVybGF5LCBjaGlsZHJlbjogW19qc3goXCJkaXZcIiwgeyBzdHlsZTogcG9zLnNwb3RsaWdodCB9KSwgX2pzeChcImRpdlwiLCB7IHN0eWxlOiBPYmplY3QuYXNzaWduKE9iamVjdC5hc3NpZ24oe30sIHBvcy5jb2FjaE1hcmspLCB7IHBvaW50ZXJFdmVudHM6ICdhdXRvJyB9KSwgY2hpbGRyZW46IF9qc3goQ29hY2hNYXJrLCB7IHN0ZXBzOiBjb2FjaE1hcmtTdGVwcywgYWN0aXZlU3RlcDogY3VycmVudFN0ZXAsIG9uQ2hhbmdlOiBoYW5kbGVDaGFuZ2UsIG9uRmluaXNoOiBoYW5kbGVGaW5pc2gsIG9uRGlzbWlzczogaGFuZGxlRGlzbWlzcywgZGlzbWlzc2libGU6IGRpc21pc3NpYmxlLCBwbGFjZW1lbnQ6IHBsYWNlbWVudCwgYXJyb3dPZmZzZXQ6IChfYiA9IGN1cnJlbnRDb25maWcgPT09IG51bGwgfHwgY3VycmVudENvbmZpZyA9PT0gdm9pZCAwID8gdm9pZCAwIDogY3VycmVudENvbmZpZy5hcnJvd09mZnNldCkgIT09IG51bGwgJiYgX2IgIT09IHZvaWQgMCA/IF9iIDogcG9zLmFycm93T2Zmc2V0LCBsYWJlbHM6IGxhYmVscyB9KSB9KV0gfSldIH0pLCBkb2N1bWVudC5ib2R5KTtcbn07XG5leHBvcnQgY29uc3QgVG91ciA9IG1lbW8oVG91cklubmVyKTtcbmV4cG9ydCBkZWZhdWx0IFRvdXI7IixudWxsXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyJ9
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import Tour from './Tour';
|
|
2
|
+
export { Tour } from './Tour';
|
|
3
|
+
export default Tour;
|
|
4
|
+
export * from './interface';
|
|
5
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvVG91ci9pbmRleC50cyJdLCJuYW1lcyI6WyJUb3VyIl0sIm1hcHBpbmdzIjoiQUFBQSxPQUFPQSxJQUFJLE1BQU0sUUFBUTtBQUV6QixTQUFTQSxJQUFJLFFBQVEsUUFBUTtBQUU3QixlQUFlQSxJQUFJO0FBRW5CLGNBQWMsYUFBYSIsImZpbGUiOiJjb21wb25lbnRzL1RvdXIvaW5kZXguanMiLCJzb3VyY2VzQ29udGVudCI6W251bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { ReactNode, RefObject } from 'react';
|
|
2
|
+
import type { CoachMarkPlacement, CoachMarkLabels } from "../CoachMark";
|
|
3
|
+
export interface TourStep {
|
|
4
|
+
/** Target element — CSS selector string or React ref */
|
|
5
|
+
target: string | RefObject<HTMLElement | null>;
|
|
6
|
+
/** Placement of the CoachMark relative to the target */
|
|
7
|
+
placement?: CoachMarkPlacement;
|
|
8
|
+
/** Offset of the arrow from center */
|
|
9
|
+
arrowOffset?: string;
|
|
10
|
+
/** Icon or illustration for this step */
|
|
11
|
+
icon?: ReactNode;
|
|
12
|
+
/** Heading text for this step */
|
|
13
|
+
heading?: ReactNode;
|
|
14
|
+
/** Body text for this step */
|
|
15
|
+
body?: ReactNode;
|
|
16
|
+
}
|
|
17
|
+
export interface TourProps {
|
|
18
|
+
/** Whether the tour is visible */
|
|
19
|
+
open: boolean;
|
|
20
|
+
/** Tour step configurations */
|
|
21
|
+
steps: TourStep[];
|
|
22
|
+
/** Current active step index (controlled) */
|
|
23
|
+
activeStep?: number;
|
|
24
|
+
/** Default active step index (uncontrolled) */
|
|
25
|
+
defaultActiveStep?: number;
|
|
26
|
+
/** Callback when step changes */
|
|
27
|
+
onChange?: (step: number) => void;
|
|
28
|
+
/** Callback when tour is closed (dismiss or finish) */
|
|
29
|
+
onClose: () => void;
|
|
30
|
+
/** Whether to show the dismiss button on CoachMark */
|
|
31
|
+
dismissible?: boolean;
|
|
32
|
+
/** Custom labels for CoachMark buttons */
|
|
33
|
+
labels?: CoachMarkLabels;
|
|
34
|
+
/** Padding around the spotlight highlight (px) */
|
|
35
|
+
spotlightPadding?: number;
|
|
36
|
+
/** Gap between the target and the CoachMark (px) */
|
|
37
|
+
gap?: number;
|
|
38
|
+
/** Whether to scroll the target element into view */
|
|
39
|
+
scrollIntoView?: boolean;
|
|
40
|
+
/** Border radius of the spotlight (px) */
|
|
41
|
+
spotlightRadius?: number;
|
|
42
|
+
/** Whether clicking the backdrop closes the tour */
|
|
43
|
+
closeOnBackdropClick?: boolean;
|
|
44
|
+
/** Z-index for the overlay */
|
|
45
|
+
zIndex?: number;
|
|
46
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcG9uZW50cy9Ub3VyL2ludGVyZmFjZS5qcyIsIm5hbWVzIjpbXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy9Ub3VyL2ludGVyZmFjZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQge307Il0sIm1hcHBpbmdzIjoiQUFBQSIsImlnbm9yZUxpc3QiOltdfQ==
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
2
|
+
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
3
|
+
import _typeof from "@babel/runtime/helpers/esm/typeof";
|
|
4
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
5
|
+
import { arrow, autoUpdate, flip, FloatingArrow, FloatingPortal, offset as floatingOffset, shift, useClick, useDismiss, useFloating, useFocus, useHover, useInteractions, useRole } from '@floating-ui/react';
|
|
6
|
+
import React, { cloneElement, useCallback, useMemo, useRef } from 'react';
|
|
7
|
+
import { useControlledState, useEventCallback } from '@1money/hooks';
|
|
8
|
+
import { joinCls } from '../../utils/classnames';
|
|
9
|
+
import './style';
|
|
10
|
+
var PREFIX = 'om-trigger';
|
|
11
|
+
function normalizeTrigger(trigger) {
|
|
12
|
+
return Array.isArray(trigger) ? trigger : [trigger];
|
|
13
|
+
}
|
|
14
|
+
function setRef(ref, node) {
|
|
15
|
+
if (typeof ref === 'function') {
|
|
16
|
+
ref(node);
|
|
17
|
+
} else if (ref && _typeof(ref) === 'object' && 'current' in ref) {
|
|
18
|
+
ref.current = node;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
var Trigger = function Trigger(_ref) {
|
|
22
|
+
var content = _ref.content,
|
|
23
|
+
_ref$trigger = _ref.trigger,
|
|
24
|
+
trigger = _ref$trigger === void 0 ? 'click' : _ref$trigger,
|
|
25
|
+
_ref$placement = _ref.placement,
|
|
26
|
+
placement = _ref$placement === void 0 ? 'bottom-start' : _ref$placement,
|
|
27
|
+
open = _ref.open,
|
|
28
|
+
onOpenChange = _ref.onOpenChange,
|
|
29
|
+
_ref$defaultOpen = _ref.defaultOpen,
|
|
30
|
+
defaultOpen = _ref$defaultOpen === void 0 ? false : _ref$defaultOpen,
|
|
31
|
+
_ref$showArrow = _ref.showArrow,
|
|
32
|
+
showArrow = _ref$showArrow === void 0 ? false : _ref$showArrow,
|
|
33
|
+
_ref$offset = _ref.offset,
|
|
34
|
+
offset = _ref$offset === void 0 ? 4 : _ref$offset,
|
|
35
|
+
_ref$portal = _ref.portal,
|
|
36
|
+
portal = _ref$portal === void 0 ? true : _ref$portal,
|
|
37
|
+
_ref$dismissible = _ref.dismissible,
|
|
38
|
+
dismissible = _ref$dismissible === void 0 ? true : _ref$dismissible,
|
|
39
|
+
hoverDelay = _ref.hoverDelay,
|
|
40
|
+
overlayClassName = _ref.overlayClassName,
|
|
41
|
+
overlayStyle = _ref.overlayStyle,
|
|
42
|
+
children = _ref.children,
|
|
43
|
+
_ref$disabled = _ref.disabled,
|
|
44
|
+
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
45
|
+
onOpen = _ref.onOpen,
|
|
46
|
+
onClose = _ref.onClose,
|
|
47
|
+
_ref$role = _ref.role,
|
|
48
|
+
role = _ref$role === void 0 ? 'dialog' : _ref$role,
|
|
49
|
+
ref = _ref.ref;
|
|
50
|
+
var arrowRef = useRef(null);
|
|
51
|
+
var triggers = useMemo(function () {
|
|
52
|
+
return normalizeTrigger(trigger);
|
|
53
|
+
}, [trigger]);
|
|
54
|
+
var _useControlledState = useControlledState(defaultOpen, open),
|
|
55
|
+
_useControlledState2 = _slicedToArray(_useControlledState, 2),
|
|
56
|
+
innerOpen = _useControlledState2[0],
|
|
57
|
+
setInnerOpen = _useControlledState2[1];
|
|
58
|
+
var handleOpenChange = useEventCallback(function (nextOpen) {
|
|
59
|
+
if (disabled) return;
|
|
60
|
+
setInnerOpen(nextOpen);
|
|
61
|
+
onOpenChange === null || onOpenChange === void 0 ? void 0 : onOpenChange(nextOpen);
|
|
62
|
+
if (nextOpen) {
|
|
63
|
+
onOpen === null || onOpen === void 0 ? void 0 : onOpen();
|
|
64
|
+
} else {
|
|
65
|
+
onClose === null || onClose === void 0 ? void 0 : onClose();
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
var middleware = useMemo(function () {
|
|
69
|
+
return [floatingOffset(offset), flip({
|
|
70
|
+
padding: 8
|
|
71
|
+
}), shift({
|
|
72
|
+
padding: 8
|
|
73
|
+
})].concat(_toConsumableArray(showArrow ? [arrow({
|
|
74
|
+
element: arrowRef
|
|
75
|
+
})] : []));
|
|
76
|
+
}, [offset, showArrow]);
|
|
77
|
+
var _useFloating = useFloating({
|
|
78
|
+
open: innerOpen,
|
|
79
|
+
onOpenChange: handleOpenChange,
|
|
80
|
+
placement: placement,
|
|
81
|
+
whileElementsMounted: autoUpdate,
|
|
82
|
+
middleware: middleware
|
|
83
|
+
}),
|
|
84
|
+
refs = _useFloating.refs,
|
|
85
|
+
floatingStyles = _useFloating.floatingStyles,
|
|
86
|
+
context = _useFloating.context,
|
|
87
|
+
resolvedPlacement = _useFloating.placement;
|
|
88
|
+
var clickInteraction = useClick(context, {
|
|
89
|
+
enabled: triggers.includes('click') && !disabled
|
|
90
|
+
});
|
|
91
|
+
var hoverInteraction = useHover(context, {
|
|
92
|
+
enabled: triggers.includes('hover') && !disabled,
|
|
93
|
+
delay: hoverDelay
|
|
94
|
+
});
|
|
95
|
+
var focusInteraction = useFocus(context, {
|
|
96
|
+
enabled: triggers.includes('focus') && !disabled
|
|
97
|
+
});
|
|
98
|
+
var dismissInteraction = useDismiss(context, {
|
|
99
|
+
enabled: dismissible
|
|
100
|
+
});
|
|
101
|
+
var roleInteraction = useRole(context, {
|
|
102
|
+
role: role
|
|
103
|
+
});
|
|
104
|
+
var _useInteractions = useInteractions([clickInteraction, hoverInteraction, focusInteraction, dismissInteraction, roleInteraction]),
|
|
105
|
+
getReferenceProps = _useInteractions.getReferenceProps,
|
|
106
|
+
getFloatingProps = _useInteractions.getFloatingProps;
|
|
107
|
+
var composedRef = useCallback(function (node) {
|
|
108
|
+
refs.setReference(node);
|
|
109
|
+
setRef(ref, node);
|
|
110
|
+
}, [refs.setReference, ref]);
|
|
111
|
+
var referenceProps = getReferenceProps({
|
|
112
|
+
ref: composedRef
|
|
113
|
+
});
|
|
114
|
+
var placementMeta = useMemo(function () {
|
|
115
|
+
var _split = (resolvedPlacement !== null && resolvedPlacement !== void 0 ? resolvedPlacement : 'bottom-start').split('-'),
|
|
116
|
+
_split2 = _slicedToArray(_split, 2),
|
|
117
|
+
side = _split2[0],
|
|
118
|
+
align = _split2[1];
|
|
119
|
+
return {
|
|
120
|
+
side: side,
|
|
121
|
+
align: align
|
|
122
|
+
};
|
|
123
|
+
}, [resolvedPlacement]);
|
|
124
|
+
var closePanel = useCallback(function () {
|
|
125
|
+
return handleOpenChange(false);
|
|
126
|
+
}, [handleOpenChange]);
|
|
127
|
+
var panel = _jsxs("div", Object.assign({
|
|
128
|
+
ref: refs.setFloating,
|
|
129
|
+
style: Object.assign(Object.assign({}, floatingStyles), overlayStyle),
|
|
130
|
+
className: joinCls("".concat(PREFIX, "-panel"), overlayClassName),
|
|
131
|
+
"data-placement": resolvedPlacement,
|
|
132
|
+
"data-side": placementMeta.side,
|
|
133
|
+
"data-align": placementMeta.align
|
|
134
|
+
}, getFloatingProps(), {
|
|
135
|
+
children: [showArrow && _jsx(FloatingArrow, {
|
|
136
|
+
ref: arrowRef,
|
|
137
|
+
context: context,
|
|
138
|
+
className: "".concat(PREFIX, "-arrow")
|
|
139
|
+
}), typeof content === 'function' ? content({
|
|
140
|
+
close: closePanel,
|
|
141
|
+
open: innerOpen
|
|
142
|
+
}) : content]
|
|
143
|
+
}));
|
|
144
|
+
return _jsxs(_Fragment, {
|
|
145
|
+
children: [/*#__PURE__*/cloneElement(children, referenceProps), innerOpen && (portal ? _jsx(FloatingPortal, {
|
|
146
|
+
children: panel
|
|
147
|
+
}) : panel)]
|
|
148
|
+
});
|
|
149
|
+
};
|
|
150
|
+
export default Trigger;
|
|
151
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvVHJpZ2dlci9UcmlnZ2VyLmpzIiwiY29tcG9uZW50cy9zcmMvY29tcG9uZW50cy9UcmlnZ2VyL1RyaWdnZXIudHN4Il0sIm5hbWVzIjpbImpzeCIsIl9qc3giLCJqc3hzIiwiX2pzeHMiLCJGcmFnbWVudCIsIl9GcmFnbWVudCIsImFycm93IiwiYXV0b1VwZGF0ZSIsImZsaXAiLCJGbG9hdGluZ0Fycm93IiwiRmxvYXRpbmdQb3J0YWwiLCJvZmZzZXQiLCJmbG9hdGluZ09mZnNldCIsInNoaWZ0IiwidXNlQ2xpY2siLCJ1c2VEaXNtaXNzIiwidXNlRmxvYXRpbmciLCJ1c2VGb2N1cyIsInVzZUhvdmVyIiwidXNlSW50ZXJhY3Rpb25zIiwidXNlUm9sZSIsIlJlYWN0IiwiY2xvbmVFbGVtZW50IiwidXNlQ2FsbGJhY2siLCJ1c2VNZW1vIiwidXNlUmVmIiwidXNlQ29udHJvbGxlZFN0YXRlIiwidXNlRXZlbnRDYWxsYmFjayIsImpvaW5DbHMiLCJQUkVGSVgiLCJub3JtYWxpemVUcmlnZ2VyIiwidHJpZ2dlciIsIkFycmF5IiwiaXNBcnJheSIsInNldFJlZiIsInJlZiIsIm5vZGUiLCJfdHlwZW9mIiwiY3VycmVudCIsIlRyaWdnZXIiLCJfcmVmIiwiY29udGVudCIsIl9yZWYkdHJpZ2dlciIsIl9yZWYkcGxhY2VtZW50IiwicGxhY2VtZW50Iiwib3BlbiIsIm9uT3BlbkNoYW5nZSIsIl9yZWYkZGVmYXVsdE9wZW4iLCJkZWZhdWx0T3BlbiIsIl9yZWYkc2hvd0Fycm93Iiwic2hvd0Fycm93IiwiX3JlZiRvZmZzZXQiLCJfcmVmJHBvcnRhbCIsInBvcnRhbCIsIl9yZWYkZGlzbWlzc2libGUiLCJkaXNtaXNzaWJsZSIsImhvdmVyRGVsYXkiLCJvdmVybGF5Q2xhc3NOYW1lIiwib3ZlcmxheVN0eWxlIiwiY2hpbGRyZW4iLCJfcmVmJGRpc2FibGVkIiwiZGlzYWJsZWQiLCJvbk9wZW4iLCJvbkNsb3NlIiwiX3JlZiRyb2xlIiwicm9sZSIsImFycm93UmVmIiwidHJpZ2dlcnMiLCJfdXNlQ29udHJvbGxlZFN0YXRlIiwiX3VzZUNvbnRyb2xsZWRTdGF0ZTIiLCJfc2xpY2VkVG9BcnJheSIsImlubmVyT3BlbiIsInNldElubmVyT3BlbiIsImhhbmRsZU9wZW5DaGFuZ2UiLCJuZXh0T3BlbiIsIm1pZGRsZXdhcmUiLCJwYWRkaW5nIiwiY29uY2F0IiwiX3RvQ29uc3VtYWJsZUFycmF5IiwiZWxlbWVudCIsIl91c2VGbG9hdGluZyIsIndoaWxlRWxlbWVudHNNb3VudGVkIiwicmVmcyIsImZsb2F0aW5nU3R5bGVzIiwiY29udGV4dCIsInJlc29sdmVkUGxhY2VtZW50IiwiY2xpY2tJbnRlcmFjdGlvbiIsImVuYWJsZWQiLCJpbmNsdWRlcyIsImhvdmVySW50ZXJhY3Rpb24iLCJkZWxheSIsImZvY3VzSW50ZXJhY3Rpb24iLCJkaXNtaXNzSW50ZXJhY3Rpb24iLCJyb2xlSW50ZXJhY3Rpb24iLCJfdXNlSW50ZXJhY3Rpb25zIiwiZ2V0UmVmZXJlbmNlUHJvcHMiLCJnZXRGbG9hdGluZ1Byb3BzIiwiY29tcG9zZWRSZWYiLCJzZXRSZWZlcmVuY2UiLCJyZWZlcmVuY2VQcm9wcyIsInBsYWNlbWVudE1ldGEiLCJfc3BsaXQiLCJzcGxpdCIsIl9zcGxpdDIiLCJzaWRlIiwiYWxpZ24iLCJjbG9zZVBhbmVsIiwicGFuZWwiLCJPYmplY3QiLCJhc3NpZ24iLCJzZXRGbG9hdGluZyIsInN0eWxlIiwiY2xhc3NOYW1lIiwiY2xvc2UiXSwibWFwcGluZ3MiOiI7OztBQUFBLFNBQVNBLEdBQUcsSUFBSUMsSUFBSSxFQUFFQyxJQUFJLElBQUlDLEtBQUssRUFBRUMsUUFBUSxJQUFJQyxTQUFTLFFBQVEsbUJBQW1CO0FDQXJGLFNBQ0VDLEtBQUssRUFDTEMsVUFBVSxFQUNWQyxJQUFJLEVBQ0pDLGFBQWEsRUFDYkMsY0FBYyxFQUNkQyxNQUFNLElBQUlDLGNBQWMsRUFDeEJDLEtBQUssRUFDTEMsUUFBUSxFQUNSQyxVQUFVLEVBQ1ZDLFdBQVcsRUFDWEMsUUFB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QSxLQUFLLENBQUM7RUFBQSxDQUFBLENBQ3hFO0FBRVAsQ0FBQztBQUVELGVBQWVwRSxPQUFPIiwiZmlsZSI6ImNvbXBvbmVudHMvVHJpZ2dlci9UcmlnZ2VyLmpzIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsganN4IGFzIF9qc3gsIGpzeHMgYXMgX2pzeHMsIEZyYWdtZW50IGFzIF9GcmFnbWVudCB9IGZyb20gXCJyZWFjdC9qc3gtcnVudGltZVwiO1xuaW1wb3J0IHsgYXJyb3csIGF1dG9VcGRhdGUsIGZsaXAsIEZsb2F0aW5nQXJyb3csIEZsb2F0aW5nUG9ydGFsLCBvZmZzZXQgYXMgZmxvYXRpbmdPZmZzZXQsIHNoaWZ0LCB1c2VDbGljaywgdXNlRGlzbWlzcywgdXNlRmxvYXRpbmcsIHVzZUZvY3VzLCB1c2VIb3ZlciwgdXNlSW50ZXJhY3Rpb25zLCB1c2VSb2xlLCB9IGZyb20gJ0BmbG9hdGluZy11aS9yZWFjdCc7XG5pbXBvcnQgUmVhY3QsIHsgY2xvbmVFbGVtZW50LCB1c2VDYWxsYmFjaywgdXNlTWVtbywgdXNlUmVmIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgdXNlQ29udHJvbGxlZFN0YXRlLCB1c2VFdmVudENhbGxiYWNrIH0gZnJvbSAnQDFtb25leS9ob29rcyc7XG5pbXBvcnQgeyBqb2luQ2xzIH0gZnJvbSAnLi4vLi4vdXRpbHMvY2xhc3NuYW1lcyc7XG5pbXBvcnQgJy4vc3R5bGUnO1xuY29uc3QgUFJFRklYID0gJ29tLXRyaWdnZXInO1xuZnVuY3Rpb24gbm9ybWFsaXplVHJpZ2dlcih0cmlnZ2VyKSB7XG4gICAgcmV0dXJuIEFycmF5LmlzQXJyYXkodHJpZ2dlcikgPyB0cmlnZ2VyIDogW3RyaWdnZXJdO1xufVxuZnVuY3Rpb24gc2V0UmVmKHJlZiwgbm9kZSkge1xuICAgIGlmICh0eXBlb2YgcmVmID09PSAnZnVuY3Rpb24nKSB7XG4gICAgICAgIHJlZihub2RlKTtcbiAgICB9XG4gICAgZWxzZSBpZiAocmVmICYmIHR5cGVvZiByZWYgPT09ICdvYmplY3QnICYmICdjdXJyZW50JyBpbiByZWYpIHtcbiAgICAgICAgcmVmLmN1cnJlbnQgPSBub2RlO1xuICAgIH1cbn1cbmNvbnN0IFRyaWdnZXIgPSAoeyBjb250ZW50LCB0cmlnZ2VyID0gJ2NsaWNrJywgcGxhY2VtZW50ID0gJ2JvdHRvbS1zdGFydCcsIG9wZW4sIG9uT3BlbkNoYW5nZSwgZGVmYXVsdE9wZW4gPSBmYWxzZSwgc2hvd0Fycm93ID0gZmFsc2UsIG9mZnNldCA9IDQsIHBvcnRhbCA9IHRydWUsIGRpc21pc3NpYmxlID0gdHJ1ZSwgaG92ZXJEZWxheSwgb3ZlcmxheUNsYXNzTmFtZSwgb3ZlcmxheVN0eWxlLCBjaGlsZHJlbiwgZGlzYWJsZWQgPSBmYWxzZSwgb25PcGVuLCBvbkNsb3NlLCByb2xlID0gJ2RpYWxvZycsIHJlZiwgfSkgPT4ge1xuICAgIGNvbnN0IGFycm93UmVmID0gdXNlUmVmKG51bGwpO1xuICAgIGNvbnN0IHRyaWdnZXJzID0gdXNlTWVtbygoKSA9PiBub3JtYWxpemVUcmlnZ2VyKHRyaWdnZXIpLCBbdHJpZ2dlcl0pO1xuICAgIGNvbnN0IFtpbm5lck9wZW4sIHNldElubmVyT3Blbl0gPSB1c2VDb250cm9sbGVkU3RhdGUoZGVmYXVsdE9wZW4sIG9wZW4pO1xuICAgIGNvbnN0IGhhbmRsZU9wZW5DaGFuZ2UgPSB1c2VFdmVudENhbGxiYWNrKChuZXh0T3BlbikgPT4ge1xuICAgICAgICBpZiAoZGlzYWJsZWQpXG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIHNldElubmVyT3BlbihuZXh0T3Blbik7XG4gICAgICAgIG9uT3BlbkNoYW5nZSA9PT0gbnVsbCB8fCBvbk9wZW5DaGFuZ2UgPT09IHZvaWQgMCA/IHZvaWQgMCA6IG9uT3BlbkNoYW5nZShuZXh0T3Blbik7XG4gICAgICAgIGlmIChuZXh0T3Blbikge1xuICAgICAgICAgICAgb25PcGVuID09PSBudWxsIHx8IG9uT3BlbiA9PT0gdm9pZCAwID8gdm9pZCAwIDogb25PcGVuKCk7XG4gICAgICAgIH1cbiAgICAgICAgZWxzZSB7XG4gICAgICAgICAgICBvbkNsb3NlID09PSBudWxsIHx8IG9uQ2xvc2UgPT09IHZvaWQgMCA/IHZvaWQgMCA6IG9uQ2xvc2UoKTtcbiAgICAgICAgfVxuICAgIH0pO1xuICAgIGNvbnN0IG1pZGRsZXdhcmUgPSB1c2VNZW1vKCgpID0+IFtcbiAgICAgICAgZmxvYXRpbmdPZmZzZXQob2Zmc2V0KSxcbiAgICAgICAgZmxpcCh7IHBhZGRpbmc6IDggfSksXG4gICAgICAgIHNoaWZ0KHsgcGFkZGluZzogOCB9KSxcbiAgICAgICAgLi4uKHNob3dBcnJvdyA/IFthcnJvdyh7IGVsZW1lbnQ6IGFycm93UmVmIH0pXSA6IFtdKSxcbiAgICBdLCBbb2Zmc2V0LCBzaG93QXJyb3ddKTtcbiAgICBjb25zdCB7IHJlZnMsIGZsb2F0aW5nU3R5bGVzLCBjb250ZXh0LCBwbGFjZW1lbnQ6IHJlc29sdmVkUGxhY2VtZW50IH0gPSB1c2VGbG9hdGluZyh7XG4gICAgICAgIG9wZW46IGlubmVyT3BlbixcbiAgICAgICAgb25PcGVuQ2hhbmdlOiBoYW5kbGVPcGVuQ2hhbmdlLFxuICAgICAgICBwbGFjZW1lbnQsXG4gICAgICAgIHdoaWxlRWxlbWVudHNNb3VudGVkOiBhdXRvVXBkYXRlLFxuICAgICAgICBtaWRkbGV3YXJlLFxuICAgIH0pO1xuICAgIGNvbnN0IGNsaWNrSW50ZXJhY3Rpb24gPSB1c2VDbGljayhjb250ZXh0LCB7XG4gICAgICAgIGVuYWJsZWQ6IHRyaWdnZXJzLmluY2x1ZGVzKCdjbGljaycpICYmICFkaXNhYmxlZCxcbiAgICB9KTtcbiAgICBjb25zdCBob3ZlckludGVyYWN0aW9uID0gdXNlSG92ZXIoY29udGV4dCwge1xuICAgICAgICBlbmFibGVkOiB0cmlnZ2Vycy5pbmNsdWRlcygnaG92ZXInKSAmJiAhZGlzYWJsZWQsXG4gICAgICAgIGRlbGF5OiBob3ZlckRlbGF5LFxuICAgIH0pO1xuICAgIGNvbnN0IGZvY3VzSW50ZXJhY3Rpb24gPSB1c2VGb2N1cyhjb250ZXh0LCB7XG4gICAgICAgIGVuYWJsZWQ6IHRyaWdnZXJzLmluY2x1ZGVzKCdmb2N1cycpICYmICFkaXNhYmxlZCxcbiAgICB9KTtcbiAgICBjb25zdCBkaXNtaXNzSW50ZXJhY3Rpb24gPSB1c2VEaXNtaXNzKGNvbnRleHQsIHtcbiAgICAgICAgZW5hYmxlZDogZGlzbWlzc2libGUsXG4gICAgfSk7XG4gICAgY29uc3Qgcm9sZUludGVyYWN0aW9uID0gdXNlUm9sZShjb250ZXh0LCB7IHJvbGUgfSk7XG4gICAgY29uc3QgeyBnZXRSZWZlcmVuY2VQcm9wcywgZ2V0RmxvYXRpbmdQcm9wcyB9ID0gdXNlSW50ZXJhY3Rpb25zKFtcbiAgICAgICAgY2xpY2tJbnRlcmFjdGlvbixcbiAgICAgICAgaG92ZXJJbnRlcmFjdGlvbixcbiAgICAgICAgZm9jdXNJbnRlcmFjdGlvbixcbiAgICAgICAgZGlzbWlzc0ludGVyYWN0aW9uLFxuICAgICAgICByb2xlSW50ZXJhY3Rpb24sXG4gICAgXSk7XG4gICAgY29uc3QgY29tcG9zZWRSZWYgPSB1c2VDYWxsYmFjaygobm9kZSkgPT4ge1xuICAgICAgICByZWZzLnNldFJlZmVyZW5jZShub2RlKTtcbiAgICAgICAgc2V0UmVmKHJlZiwgbm9kZSk7XG4gICAgfSwgW3JlZnMuc2V0UmVmZXJlbmNlLCByZWZdKTtcbiAgICBjb25zdCByZWZlcmVuY2VQcm9wcyA9IGdldFJlZmVyZW5jZVByb3BzKHsgcmVmOiBjb21wb3NlZFJlZiB9KTtcbiAgICBjb25zdCBwbGFjZW1lbnRNZXRhID0gdXNlTWVtbygoKSA9PiB7XG4gICAgICAgIGNvbnN0IFtzaWRlLCBhbGlnbl0gPSAocmVzb2x2ZWRQbGFjZW1lbnQgIT09IG51bGwgJiYgcmVzb2x2ZWRQbGFjZW1lbnQgIT09IHZvaWQgMCA/IHJlc29sdmVkUGxhY2VtZW50IDogJ2JvdHRvbS1zdGFydCcpLnNwbGl0KCctJyk7XG4gICAgICAgIHJldHVybiB7IHNpZGUsIGFsaWduIH07XG4gICAgfSwgW3Jlc29sdmVkUGxhY2VtZW50XSk7XG4gICAgY29uc3QgY2xvc2VQYW5lbCA9IHVzZUNhbGxiYWNrKCgpID0+IGhhbmRsZU9wZW5DaGFuZ2UoZmFsc2UpLCBbaGFuZGxlT3BlbkNoYW5nZV0pO1xuICAgIGNvbnN0IHBhbmVsID0gKF9qc3hzKFwiZGl2XCIsIE9iamVjdC5hc3NpZ24oeyByZWY6IHJlZnMuc2V0RmxvYXRpbmcsIHN0eWxlOiBPYmplY3QuYXNzaWduKE9iamVjdC5hc3NpZ24oe30sIGZsb2F0aW5nU3R5bGVzKSwgb3ZlcmxheVN0eWxlKSwgY2xhc3NOYW1lOiBqb2luQ2xzKGAke1BSRUZJWH0tcGFuZWxgLCBvdmVybGF5Q2xhc3NOYW1lKSwgXCJkYXRhLXBsYWNlbWVudFwiOiByZXNvbHZlZFBsYWNlbWVudCwgXCJkYXRhLXNpZGVcIjogcGxhY2VtZW50TWV0YS5zaWRlLCBcImRhdGEtYWxpZ25cIjogcGxhY2VtZW50TWV0YS5hbGlnbiB9LCBnZXRGbG9hdGluZ1Byb3BzKCksIHsgY2hpbGRyZW46IFtzaG93QXJyb3cgJiYgKF9qc3goRmxvYXRpbmdBcnJvdywgeyByZWY6IGFycm93UmVmLCBjb250ZXh0OiBjb250ZXh0LCBjbGFzc05hbWU6IGAke1BSRUZJWH0tYXJyb3dgIH0pKSwgdHlwZW9mIGNvbnRlbnQgPT09ICdmdW5jdGlvbidcbiAgICAgICAgICAgICAgICA/IGNvbnRlbnQoeyBjbG9zZTogY2xvc2VQYW5lbCwgb3BlbjogaW5uZXJPcGVuIH0pXG4gICAgICAgICAgICAgICAgOiBjb250ZW50XSB9KSkpO1xuICAgIHJldHVybiAoX2pzeHMoX0ZyYWdtZW50LCB7IGNoaWxkcmVuOiBbY2xvbmVFbGVtZW50KGNoaWxkcmVuLCByZWZlcmVuY2VQcm9wcyksIGlubmVyT3BlbiAmJiAocG9ydGFsID8gX2pzeChGbG9hdGluZ1BvcnRhbCwgeyBjaGlsZHJlbjogcGFuZWwgfSkgOiBwYW5lbCldIH0pKTtcbn07XG5leHBvcnQgZGVmYXVsdCBUcmlnZ2VyOyIsbnVsbF0sInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMifQ==
|