@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,501 @@
|
|
|
1
|
+
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
2
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
3
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
4
|
+
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
5
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
6
|
+
var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, generator) {
|
|
7
|
+
function adopt(value) {
|
|
8
|
+
return value instanceof P ? value : new P(function (resolve) {
|
|
9
|
+
resolve(value);
|
|
10
|
+
});
|
|
11
|
+
}
|
|
12
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
13
|
+
function fulfilled(value) {
|
|
14
|
+
try {
|
|
15
|
+
step(generator.next(value));
|
|
16
|
+
} catch (e) {
|
|
17
|
+
reject(e);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
function rejected(value) {
|
|
21
|
+
try {
|
|
22
|
+
step(generator["throw"](value));
|
|
23
|
+
} catch (e) {
|
|
24
|
+
reject(e);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function step(result) {
|
|
28
|
+
result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
|
|
29
|
+
}
|
|
30
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
31
|
+
});
|
|
32
|
+
};
|
|
33
|
+
var __rest = this && this.__rest || function (s, e) {
|
|
34
|
+
var t = {};
|
|
35
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
36
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
37
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
38
|
+
}
|
|
39
|
+
return t;
|
|
40
|
+
};
|
|
41
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
42
|
+
import { useEffect, useState } from 'react';
|
|
43
|
+
import { MemoizedNotification } from './Notification';
|
|
44
|
+
import { default as classnames, joinCls } from '../../utils/classnames';
|
|
45
|
+
import './style';
|
|
46
|
+
import { NOTIFICATION_PLACEMENTS } from './interface';
|
|
47
|
+
var NOTIFICATION_ROOT_ID = 'om-react-ui-notification-root';
|
|
48
|
+
var DEFAULT_NOTIFICATION_PLACEMENT = 'topRight';
|
|
49
|
+
var DEFAULT_NOTIFICATION_DURATION = 4.5;
|
|
50
|
+
var DEFAULT_NOTIFICATION_MAX_COUNT = Number.POSITIVE_INFINITY;
|
|
51
|
+
var NOTIFICATION_MOTION_DURATION = 240;
|
|
52
|
+
var DEFAULT_NOTIFICATION_CONFIG = {
|
|
53
|
+
placement: DEFAULT_NOTIFICATION_PLACEMENT,
|
|
54
|
+
duration: DEFAULT_NOTIFICATION_DURATION,
|
|
55
|
+
maxCount: DEFAULT_NOTIFICATION_MAX_COUNT
|
|
56
|
+
};
|
|
57
|
+
var canUseDOM = function canUseDOM() {
|
|
58
|
+
return typeof window !== 'undefined' && typeof document !== 'undefined';
|
|
59
|
+
};
|
|
60
|
+
var normalizeDuration = function normalizeDuration(value, fallback) {
|
|
61
|
+
if (value <= 0) return 0;
|
|
62
|
+
return Number.isFinite(value) ? value : fallback;
|
|
63
|
+
};
|
|
64
|
+
var normalizeMaxCount = function normalizeMaxCount(value) {
|
|
65
|
+
if (!Number.isFinite(value) || value <= 0) {
|
|
66
|
+
return DEFAULT_NOTIFICATION_MAX_COUNT;
|
|
67
|
+
}
|
|
68
|
+
return Math.floor(value);
|
|
69
|
+
};
|
|
70
|
+
var groupNotificationsByPlacement = function groupNotificationsByPlacement(items) {
|
|
71
|
+
var groupedItems = {};
|
|
72
|
+
NOTIFICATION_PLACEMENTS.forEach(function (placement) {
|
|
73
|
+
groupedItems[placement] = [];
|
|
74
|
+
});
|
|
75
|
+
items.forEach(function (item) {
|
|
76
|
+
groupedItems[item.placement].push(item);
|
|
77
|
+
});
|
|
78
|
+
return groupedItems;
|
|
79
|
+
};
|
|
80
|
+
var getNotificationRoot = function getNotificationRoot() {
|
|
81
|
+
var existingRoot = document.getElementById(NOTIFICATION_ROOT_ID);
|
|
82
|
+
if (existingRoot instanceof HTMLDivElement) {
|
|
83
|
+
return existingRoot;
|
|
84
|
+
}
|
|
85
|
+
var root = document.createElement('div');
|
|
86
|
+
root.id = NOTIFICATION_ROOT_ID;
|
|
87
|
+
document.body.appendChild(root);
|
|
88
|
+
return root;
|
|
89
|
+
};
|
|
90
|
+
var createNotificationRenderer = function createNotificationRenderer(container) {
|
|
91
|
+
return __awaiter(void 0, void 0, void 0, /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
92
|
+
var reactDomClient, root, reactDom;
|
|
93
|
+
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
94
|
+
while (1) switch (_context.prev = _context.next) {
|
|
95
|
+
case 0:
|
|
96
|
+
_context.prev = 0;
|
|
97
|
+
_context.next = 3;
|
|
98
|
+
return import('react-dom/client');
|
|
99
|
+
case 3:
|
|
100
|
+
reactDomClient = _context.sent;
|
|
101
|
+
root = reactDomClient.createRoot(container);
|
|
102
|
+
return _context.abrupt("return", {
|
|
103
|
+
render: function render(element) {
|
|
104
|
+
root.render(element);
|
|
105
|
+
},
|
|
106
|
+
unmount: function unmount() {
|
|
107
|
+
root.unmount();
|
|
108
|
+
}
|
|
109
|
+
});
|
|
110
|
+
case 8:
|
|
111
|
+
_context.prev = 8;
|
|
112
|
+
_context.t0 = _context["catch"](0);
|
|
113
|
+
_context.next = 12;
|
|
114
|
+
return import('react-dom');
|
|
115
|
+
case 12:
|
|
116
|
+
reactDom = _context.sent;
|
|
117
|
+
if (!(typeof reactDom.render !== 'function' || typeof reactDom.unmountComponentAtNode !== 'function')) {
|
|
118
|
+
_context.next = 15;
|
|
119
|
+
break;
|
|
120
|
+
}
|
|
121
|
+
return _context.abrupt("return", null);
|
|
122
|
+
case 15:
|
|
123
|
+
return _context.abrupt("return", {
|
|
124
|
+
render: function render(element) {
|
|
125
|
+
var _a;
|
|
126
|
+
(_a = reactDom.render) === null || _a === void 0 ? void 0 : _a.call(reactDom, element, container);
|
|
127
|
+
},
|
|
128
|
+
unmount: function unmount() {
|
|
129
|
+
var _a;
|
|
130
|
+
(_a = reactDom.unmountComponentAtNode) === null || _a === void 0 ? void 0 : _a.call(reactDom, container);
|
|
131
|
+
}
|
|
132
|
+
});
|
|
133
|
+
case 16:
|
|
134
|
+
case "end":
|
|
135
|
+
return _context.stop();
|
|
136
|
+
}
|
|
137
|
+
}, _callee, null, [[0, 8]]);
|
|
138
|
+
}));
|
|
139
|
+
};
|
|
140
|
+
var NotificationMotionItem = function NotificationMotionItem(_ref) {
|
|
141
|
+
var item = _ref.item,
|
|
142
|
+
collapseOnExit = _ref.collapseOnExit,
|
|
143
|
+
_onClose = _ref.onClose;
|
|
144
|
+
var classes = classnames('notification');
|
|
145
|
+
var _useState = useState(false),
|
|
146
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
147
|
+
entered = _useState2[0],
|
|
148
|
+
setEntered = _useState2[1];
|
|
149
|
+
useEffect(function () {
|
|
150
|
+
if (item.closing || typeof window === 'undefined') return undefined;
|
|
151
|
+
var frame = window.requestAnimationFrame(function () {
|
|
152
|
+
setEntered(true);
|
|
153
|
+
});
|
|
154
|
+
return function () {
|
|
155
|
+
window.cancelAnimationFrame(frame);
|
|
156
|
+
};
|
|
157
|
+
}, [item.closing, item.key]);
|
|
158
|
+
var key = item.key,
|
|
159
|
+
duration = item.duration,
|
|
160
|
+
placement = item.placement,
|
|
161
|
+
closing = item.closing,
|
|
162
|
+
notificationProps = __rest(item, ["key", "duration", "placement", "closing"]);
|
|
163
|
+
var motionClassName = closing ? joinCls(classes('item-exit'), collapseOnExit ? classes('item-exit-collapse') : '') : entered ? classes('item-active') : classes('item-enter');
|
|
164
|
+
return _jsx("div", {
|
|
165
|
+
className: joinCls(classes('item'), motionClassName),
|
|
166
|
+
children: _jsx("div", {
|
|
167
|
+
className: classes('item-inner'),
|
|
168
|
+
children: _jsx(MemoizedNotification, Object.assign({}, notificationProps, {
|
|
169
|
+
onClose: function onClose() {
|
|
170
|
+
_onClose(key);
|
|
171
|
+
}
|
|
172
|
+
}))
|
|
173
|
+
})
|
|
174
|
+
});
|
|
175
|
+
};
|
|
176
|
+
var NotificationViewport = function NotificationViewport(_ref2) {
|
|
177
|
+
var items = _ref2.items,
|
|
178
|
+
onClose = _ref2.onClose;
|
|
179
|
+
var classes = classnames('notification');
|
|
180
|
+
var itemsByPlacement = groupNotificationsByPlacement(items);
|
|
181
|
+
return _jsx("div", {
|
|
182
|
+
className: classes('viewport'),
|
|
183
|
+
"aria-live": "polite",
|
|
184
|
+
"aria-atomic": "false",
|
|
185
|
+
children: NOTIFICATION_PLACEMENTS.map(function (placement) {
|
|
186
|
+
var placementItems = itemsByPlacement[placement];
|
|
187
|
+
if (!placementItems.length) return null;
|
|
188
|
+
var activeCount = placementItems.filter(function (i) {
|
|
189
|
+
return !i.closing;
|
|
190
|
+
}).length;
|
|
191
|
+
return _jsx("div", {
|
|
192
|
+
className: joinCls(classes('stack'), classes("stack-".concat(placement))),
|
|
193
|
+
children: placementItems.map(function (item) {
|
|
194
|
+
return _jsx(NotificationMotionItem, {
|
|
195
|
+
item: item,
|
|
196
|
+
collapseOnExit: item.closing && activeCount > 0,
|
|
197
|
+
onClose: onClose
|
|
198
|
+
}, String(item.key));
|
|
199
|
+
})
|
|
200
|
+
}, placement);
|
|
201
|
+
})
|
|
202
|
+
});
|
|
203
|
+
};
|
|
204
|
+
var NotificationManager = /*#__PURE__*/function () {
|
|
205
|
+
function NotificationManager() {
|
|
206
|
+
var _this = this;
|
|
207
|
+
_classCallCheck(this, NotificationManager);
|
|
208
|
+
this.container = null;
|
|
209
|
+
this.renderer = null;
|
|
210
|
+
this.rendererPromise = null;
|
|
211
|
+
this.items = [];
|
|
212
|
+
this.timers = new Map();
|
|
213
|
+
this.removalTimers = new Map();
|
|
214
|
+
this.keySeed = 0;
|
|
215
|
+
this.configState = DEFAULT_NOTIFICATION_CONFIG;
|
|
216
|
+
this.open = function (config) {
|
|
217
|
+
var _a;
|
|
218
|
+
var key = (_a = config.key) !== null && _a !== void 0 ? _a : _this.createKey();
|
|
219
|
+
if (!canUseDOM()) {
|
|
220
|
+
return key;
|
|
221
|
+
}
|
|
222
|
+
var currentItem = _this.items.find(function (item) {
|
|
223
|
+
return item.key === key;
|
|
224
|
+
});
|
|
225
|
+
var nextItem = _this.createRecord(key, config, currentItem);
|
|
226
|
+
if (!currentItem) {
|
|
227
|
+
_this.items = [].concat(_toConsumableArray(_this.items), [nextItem]);
|
|
228
|
+
} else if (currentItem.placement === nextItem.placement) {
|
|
229
|
+
_this.items = _this.items.map(function (item) {
|
|
230
|
+
return item.key === key ? nextItem : item;
|
|
231
|
+
});
|
|
232
|
+
} else {
|
|
233
|
+
_this.items = [].concat(_toConsumableArray(_this.items.filter(function (item) {
|
|
234
|
+
return item.key !== key;
|
|
235
|
+
})), [nextItem]);
|
|
236
|
+
}
|
|
237
|
+
_this.clearRemovalTimer(key);
|
|
238
|
+
_this.startTimer(nextItem);
|
|
239
|
+
_this.trimOverflow();
|
|
240
|
+
_this.render();
|
|
241
|
+
return key;
|
|
242
|
+
};
|
|
243
|
+
this.destroy = function (key) {
|
|
244
|
+
if (key === undefined) {
|
|
245
|
+
_this.beginClose(_this.items.map(function (item) {
|
|
246
|
+
return item.key;
|
|
247
|
+
}));
|
|
248
|
+
_this.render();
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
_this.beginClose([key]);
|
|
252
|
+
_this.render();
|
|
253
|
+
};
|
|
254
|
+
this.config = function (config) {
|
|
255
|
+
var _a, _b, _c;
|
|
256
|
+
_this.configState = {
|
|
257
|
+
placement: (_a = config.placement) !== null && _a !== void 0 ? _a : _this.configState.placement,
|
|
258
|
+
duration: normalizeDuration((_b = config.duration) !== null && _b !== void 0 ? _b : _this.configState.duration, _this.configState.duration),
|
|
259
|
+
maxCount: normalizeMaxCount((_c = config.maxCount) !== null && _c !== void 0 ? _c : _this.configState.maxCount)
|
|
260
|
+
};
|
|
261
|
+
_this.trimOverflow();
|
|
262
|
+
_this.render();
|
|
263
|
+
};
|
|
264
|
+
this.handleClose = function (key) {
|
|
265
|
+
_this.beginClose([key]);
|
|
266
|
+
_this.render();
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
return _createClass(NotificationManager, [{
|
|
270
|
+
key: "createKey",
|
|
271
|
+
value: function createKey() {
|
|
272
|
+
this.keySeed += 1;
|
|
273
|
+
return "notification-".concat(this.keySeed);
|
|
274
|
+
}
|
|
275
|
+
}, {
|
|
276
|
+
key: "createRecord",
|
|
277
|
+
value: function createRecord(key, config, currentItem) {
|
|
278
|
+
var _a, _b, _c, _d;
|
|
279
|
+
var mergedConfig = Object.assign(Object.assign({}, currentItem), config);
|
|
280
|
+
return Object.assign(Object.assign({}, mergedConfig), {
|
|
281
|
+
key: key,
|
|
282
|
+
placement: (_b = (_a = config.placement) !== null && _a !== void 0 ? _a : currentItem === null || currentItem === void 0 ? void 0 : currentItem.placement) !== null && _b !== void 0 ? _b : this.configState.placement,
|
|
283
|
+
duration: normalizeDuration((_d = (_c = config.duration) !== null && _c !== void 0 ? _c : currentItem === null || currentItem === void 0 ? void 0 : currentItem.duration) !== null && _d !== void 0 ? _d : this.configState.duration, this.configState.duration),
|
|
284
|
+
closing: false
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
}, {
|
|
288
|
+
key: "startTimer",
|
|
289
|
+
value: function startTimer(item) {
|
|
290
|
+
var _this2 = this;
|
|
291
|
+
this.clearTimer(item.key);
|
|
292
|
+
if (item.duration <= 0) return;
|
|
293
|
+
var timeoutId = window.setTimeout(function () {
|
|
294
|
+
_this2.beginClose([item.key]);
|
|
295
|
+
_this2.render();
|
|
296
|
+
}, item.duration * 1000);
|
|
297
|
+
this.timers.set(item.key, timeoutId);
|
|
298
|
+
}
|
|
299
|
+
}, {
|
|
300
|
+
key: "clearTimer",
|
|
301
|
+
value: function clearTimer(key) {
|
|
302
|
+
var timeoutId = this.timers.get(key);
|
|
303
|
+
if (timeoutId === undefined) return;
|
|
304
|
+
window.clearTimeout(timeoutId);
|
|
305
|
+
this.timers["delete"](key);
|
|
306
|
+
}
|
|
307
|
+
}, {
|
|
308
|
+
key: "trimOverflow",
|
|
309
|
+
value: function trimOverflow() {
|
|
310
|
+
var _this3 = this;
|
|
311
|
+
if (!Number.isFinite(this.configState.maxCount)) return;
|
|
312
|
+
var overflowKeys = NOTIFICATION_PLACEMENTS.flatMap(function (placement) {
|
|
313
|
+
var placementItems = _this3.items.filter(function (item) {
|
|
314
|
+
return item.placement === placement && !item.closing;
|
|
315
|
+
});
|
|
316
|
+
var overflowCount = placementItems.length - _this3.configState.maxCount;
|
|
317
|
+
if (overflowCount <= 0) return [];
|
|
318
|
+
return placementItems.slice(0, overflowCount).map(function (item) {
|
|
319
|
+
return item.key;
|
|
320
|
+
});
|
|
321
|
+
});
|
|
322
|
+
if (!overflowKeys.length) return;
|
|
323
|
+
this.beginClose(overflowKeys);
|
|
324
|
+
}
|
|
325
|
+
}, {
|
|
326
|
+
key: "clearRemovalTimer",
|
|
327
|
+
value: function clearRemovalTimer(key) {
|
|
328
|
+
var timeoutId = this.removalTimers.get(key);
|
|
329
|
+
if (timeoutId === undefined) return;
|
|
330
|
+
window.clearTimeout(timeoutId);
|
|
331
|
+
this.removalTimers["delete"](key);
|
|
332
|
+
}
|
|
333
|
+
}, {
|
|
334
|
+
key: "beginClose",
|
|
335
|
+
value: function beginClose(keys) {
|
|
336
|
+
var _this4 = this;
|
|
337
|
+
if (!keys.length) return;
|
|
338
|
+
var keySet = new Set(keys);
|
|
339
|
+
var closingKeys = [];
|
|
340
|
+
this.items = this.items.map(function (item) {
|
|
341
|
+
if (!keySet.has(item.key) || item.closing) {
|
|
342
|
+
return item;
|
|
343
|
+
}
|
|
344
|
+
_this4.clearTimer(item.key);
|
|
345
|
+
closingKeys.push(item.key);
|
|
346
|
+
return Object.assign(Object.assign({}, item), {
|
|
347
|
+
closing: true
|
|
348
|
+
});
|
|
349
|
+
});
|
|
350
|
+
closingKeys.forEach(function (key) {
|
|
351
|
+
_this4.clearRemovalTimer(key);
|
|
352
|
+
var timeoutId = window.setTimeout(function () {
|
|
353
|
+
_this4.finalizeRemove(key);
|
|
354
|
+
}, NOTIFICATION_MOTION_DURATION);
|
|
355
|
+
_this4.removalTimers.set(key, timeoutId);
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
}, {
|
|
359
|
+
key: "finalizeRemove",
|
|
360
|
+
value: function finalizeRemove(key) {
|
|
361
|
+
this.clearRemovalTimer(key);
|
|
362
|
+
var removedItems = this.items.filter(function (item) {
|
|
363
|
+
return item.key === key;
|
|
364
|
+
});
|
|
365
|
+
if (!removedItems.length) return;
|
|
366
|
+
this.items = this.items.filter(function (item) {
|
|
367
|
+
return item.key !== key;
|
|
368
|
+
});
|
|
369
|
+
removedItems.forEach(function (item) {
|
|
370
|
+
var _a;
|
|
371
|
+
(_a = item.onClose) === null || _a === void 0 ? void 0 : _a.call(item);
|
|
372
|
+
});
|
|
373
|
+
this.render();
|
|
374
|
+
}
|
|
375
|
+
}, {
|
|
376
|
+
key: "ensureRenderer",
|
|
377
|
+
value: function ensureRenderer() {
|
|
378
|
+
return __awaiter(this, void 0, void 0, /*#__PURE__*/_regeneratorRuntime.mark(function _callee2() {
|
|
379
|
+
var _this5 = this;
|
|
380
|
+
return _regeneratorRuntime.wrap(function _callee2$(_context2) {
|
|
381
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
382
|
+
case 0:
|
|
383
|
+
if (canUseDOM()) {
|
|
384
|
+
_context2.next = 2;
|
|
385
|
+
break;
|
|
386
|
+
}
|
|
387
|
+
return _context2.abrupt("return", null);
|
|
388
|
+
case 2:
|
|
389
|
+
if (!this.renderer) {
|
|
390
|
+
_context2.next = 4;
|
|
391
|
+
break;
|
|
392
|
+
}
|
|
393
|
+
return _context2.abrupt("return", this.renderer);
|
|
394
|
+
case 4:
|
|
395
|
+
if (!this.rendererPromise) {
|
|
396
|
+
_context2.next = 6;
|
|
397
|
+
break;
|
|
398
|
+
}
|
|
399
|
+
return _context2.abrupt("return", this.rendererPromise);
|
|
400
|
+
case 6:
|
|
401
|
+
this.container = getNotificationRoot();
|
|
402
|
+
this.rendererPromise = createNotificationRenderer(this.container).then(function (renderer) {
|
|
403
|
+
_this5.renderer = renderer;
|
|
404
|
+
_this5.rendererPromise = null;
|
|
405
|
+
if (!renderer) {
|
|
406
|
+
_this5.removeContainer();
|
|
407
|
+
}
|
|
408
|
+
return renderer;
|
|
409
|
+
})["catch"](function () {
|
|
410
|
+
_this5.rendererPromise = null;
|
|
411
|
+
_this5.removeContainer();
|
|
412
|
+
return null;
|
|
413
|
+
});
|
|
414
|
+
return _context2.abrupt("return", this.rendererPromise);
|
|
415
|
+
case 9:
|
|
416
|
+
case "end":
|
|
417
|
+
return _context2.stop();
|
|
418
|
+
}
|
|
419
|
+
}, _callee2, this);
|
|
420
|
+
}));
|
|
421
|
+
}
|
|
422
|
+
}, {
|
|
423
|
+
key: "removeContainer",
|
|
424
|
+
value: function removeContainer() {
|
|
425
|
+
var _a;
|
|
426
|
+
(_a = this.container) === null || _a === void 0 ? void 0 : _a.remove();
|
|
427
|
+
this.container = null;
|
|
428
|
+
}
|
|
429
|
+
}, {
|
|
430
|
+
key: "teardown",
|
|
431
|
+
value: function teardown() {
|
|
432
|
+
var _a;
|
|
433
|
+
this.timers.forEach(function (id) {
|
|
434
|
+
return window.clearTimeout(id);
|
|
435
|
+
});
|
|
436
|
+
this.timers.clear();
|
|
437
|
+
this.removalTimers.forEach(function (id) {
|
|
438
|
+
return window.clearTimeout(id);
|
|
439
|
+
});
|
|
440
|
+
this.removalTimers.clear();
|
|
441
|
+
(_a = this.renderer) === null || _a === void 0 ? void 0 : _a.unmount();
|
|
442
|
+
this.renderer = null;
|
|
443
|
+
this.removeContainer();
|
|
444
|
+
}
|
|
445
|
+
}, {
|
|
446
|
+
key: "renderNode",
|
|
447
|
+
value: function renderNode() {
|
|
448
|
+
return _jsx(NotificationViewport, {
|
|
449
|
+
items: this.items,
|
|
450
|
+
onClose: this.handleClose
|
|
451
|
+
});
|
|
452
|
+
}
|
|
453
|
+
}, {
|
|
454
|
+
key: "render",
|
|
455
|
+
value: function render() {
|
|
456
|
+
var _this6 = this;
|
|
457
|
+
if (!canUseDOM()) return;
|
|
458
|
+
if (!this.items.length) {
|
|
459
|
+
this.teardown();
|
|
460
|
+
return;
|
|
461
|
+
}
|
|
462
|
+
if (this.renderer) {
|
|
463
|
+
this.renderer.render(this.renderNode());
|
|
464
|
+
return;
|
|
465
|
+
}
|
|
466
|
+
void this.ensureRenderer().then(function (renderer) {
|
|
467
|
+
if (!renderer) return;
|
|
468
|
+
if (!_this6.items.length) {
|
|
469
|
+
_this6.teardown();
|
|
470
|
+
return;
|
|
471
|
+
}
|
|
472
|
+
renderer.render(_this6.renderNode());
|
|
473
|
+
});
|
|
474
|
+
}
|
|
475
|
+
}]);
|
|
476
|
+
}();
|
|
477
|
+
var notificationManager = new NotificationManager();
|
|
478
|
+
var openNotificationWithStatus = function openNotificationWithStatus(status) {
|
|
479
|
+
return function (config) {
|
|
480
|
+
return notificationManager.open(Object.assign(Object.assign({}, config), {
|
|
481
|
+
status: status
|
|
482
|
+
}));
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
export var notification = {
|
|
486
|
+
open: function open(config) {
|
|
487
|
+
return notificationManager.open(config);
|
|
488
|
+
},
|
|
489
|
+
info: openNotificationWithStatus('info'),
|
|
490
|
+
success: openNotificationWithStatus('success'),
|
|
491
|
+
warning: openNotificationWithStatus('warning'),
|
|
492
|
+
error: openNotificationWithStatus('error'),
|
|
493
|
+
destroy: function destroy(key) {
|
|
494
|
+
return notificationManager.destroy(key);
|
|
495
|
+
},
|
|
496
|
+
config: function config(_config) {
|
|
497
|
+
return notificationManager.config(_config);
|
|
498
|
+
}
|
|
499
|
+
};
|
|
500
|
+
export default notification;
|
|
501
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvTm90aWZpY2F0aW9uL05vdGlmaWNhdGlvblN0YXRpYy5qcyIsImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvTm90aWZpY2F0aW9uL05vdGlmaWNhdGlvblN0YXRpYy50c3giXSwibmFtZXMiOlsiX19hd2FpdGVyIiwidGhpc0FyZyIsIl9hcmd1bWVudHMiLCJQIiwiZ2VuZXJhdG9yIiwiYWRvcHQiLCJ2YWx1ZSIsInJlc29sdmUiLCJQcm9taXNlIiwicmVqZWN0IiwiZnVsZmlsbGVkIiwic3RlcCIsIm5leHQiLCJlIiwicmVqZWN0ZWQiLCJyZXN1bHQiLCJkb25lIiwidGhlbiIsImFwcGx5IiwiX19yZXN0IiwicyIsInQiLCJwIiwiT2JqZWN0IiwicHJvdG90eXBlIiwiaGFzT3duUHJvcGVydHkiLCJjYWxsIiwiaW5kZXhPZiIsImdldE93blByb3BlcnR5U3ltYm9scyIsImkiLCJsZW5ndGgiLCJwcm9wZXJ0eUlzRW51bWVyYWJsZSIsImpzeCIsIl9qc3giLCJ1c2VFZmZlY3QiLCJ1c2VTdGF0ZSIsIk1lbW9pemVkTm90aWZpY2F0aW9uIiwiZGVmYXVsdCIsImNsYXNzbmFtZXMiLCJqb2luQ2xzIiwiTk9USUZJQ0FUSU9OX1BMQUNFTUVOVFMiLCJOT1RJRklDQVRJT05fUk9PVF9JRCIsIkRFRkFVTFRfTk9USUZJQ0FUSU9OX1BMQUNFTUVOVCIsIkRFRkFVTFRfTk9USUZJQ0FUSU9OX0RVUkFUSU9OIiwiREVGQVVMVF9OT1RJRklDQVRJT05fTUFYX0NPVU5UIiwiTnVtYmVyIiwiUE9TSVRJVkVfSU5GSU5JVFkiLCJOT1RJRklDQVRJT05fTU9USU9OX0RVUkFUSU9OIiwiREVGQVVMVF9OT1RJRklDQVRJT05fQ09ORklHIiwicGxhY2VtZW50IiwiZHVyYXRpb24iLCJtYXhDb3VudCIsImNhblVzZURPTSIsIndpbmRvdyIsImRvY3VtZW50Iiwibm9ybWFsaXplRHVyYXRpb24iLCJmYWxsYmFjayIsImlzRmluaXRlIiwibm9ybWFsaXplTWF4Q291bnQiLCJNYXRoIiwiZmxvb3IiLCJncm91cE5vdGlmaWNhdGlvbnNCeVBsYWNlbWVudCIsIml0ZW1zIiwiZ3JvdXBlZEl0ZW1zIiwiZm9yRWFjaCIsIml0ZW0iLCJwdXNoIiwiZ2V0Tm90aWZpY2F0aW9uUm9vdCIsImV4aXN0aW5nUm9vdCIsImdldEVsZW1lbnRCeUlkIiwiSFRNTERpdkVsZW1lbnQiLCJyb290IiwiY3JlYXRlRWxlbWVudCIsImlkIiwiYm9keSIsImFwcGVuZENoaWxkIiwiY3JlYXRlTm90aWZpY2F0aW9uUmVuZGVyZXIiLCJjb250YWluZXIiLCJfcmVnZW5lcmF0b3JSdW50aW1lIiwibWFyayIsIl9jYWxsZWUiLCJyZWFjdERvbUNsaWVudCIsInJlYWN0RG9tIiwid3JhcCIsIl9jYWxsZWUkIiwiX2NvbnRleHQiLCJwcmV2Iiwic2VudCIsImNyZWF0ZVJvb3QiLCJhYnJ1cHQiLCJyZW5kZXIiLCJlbGVtZW50IiwidW5tb3VudCIsInQwIiwidW5tb3VudENvbXBvbmVudEF0Tm9kZSIsIl9hIiwic3RvcCIsIk5vdGlmaWNhdGlvbk1vdGlvbkl0ZW0iLCJfcmVmIiwiY29sbGFwc2VPbkV4aXQiLCJvbkNsb3NlIiwiY2xhc3NlcyIsIl91c2VTdGF0ZSIsIl91c2VTdGF0ZTIiLCJfc2xpY2VkVG9BcnJheSIsImVudGVyZWQiLCJzZXRFbnRlcmVkIiwiY2xvc2luZyIsInVuZGVmaW5lZCIsImZyYW1lIiwicmVxdWVzdEFuaW1hdGlvbkZyYW1lIiwiY2FuY2VsQW5pbWF0aW9uRnJhbWUiLCJrZXkiLCJub3RpZmljYXRpb25Qcm9wcyIsIm1vdGlvbkNsYXNzTmFtZSIsImNsYXNzTmFtZSIsImNoaWxkcmVuIiwiYXNzaWduIiwiTm90aWZpY2F0aW9uVmlld3BvcnQiLCJfcmVmMiIsIml0ZW1zQnlQbGFjZW1lbnQiLCJtYXAiLCJwbGFjZW1lbnRJdGVtcyIsImFjdGl2ZUNvdW50IiwiZmlsdGVyIiwiY29uY2F0IiwiU3RyaW5nIiwiTm90aWZpY2F0aW9uTWFuYWdlciIsIl90aGlzIiwiX2NsYXNzQ2FsbENoZWNrIiwicmVuZGVyZXIiLCJyZW5kZXJlclByb21pc2UiLCJ0aW1lcnMiLCJNYXAiLCJyZW1vdmFsVGltZXJzIiwia2V5U2VlZCIsImNvbmZpZ1N0YXRlIiwib3BlbiIsImNvbmZpZyIsImNyZWF0ZUtleSIsImN1cnJlbnRJdGVtIiwiZmluZCIsIm5leHRJdGVtIiwiY3JlYXRlUmVjb3JkIiwiX3RvQ29uc3VtYWJsZUFycmF5IiwiY2xlYXJSZW1vdmFsVGltZXIiLCJzdGFydFRpbWVyIiwidHJpbU92ZXJmbG93IiwiZGVzdHJveSIsImJlZ2luQ2xvc2UiLCJfYiIsIl9jIiwiaGFuZGxlQ2xvc2UiLCJfY3JlYXRlQ2xhc3MiLCJfZCIsIm1lcmdlZENvbmZpZyIsIl90aGlzMiIsImNsZWFyVGltZXIiLCJ0aW1lb3V0SWQiLCJzZXRUaW1lb3V0Iiwic2V0IiwiZ2V0IiwiY2xlYXJUaW1lb3V0IiwiX3RoaXMzIiwib3ZlcmZsb3dLZXlzIiwiZmxhdE1hcCIsIm92ZXJmbG93Q291bnQiLCJzbGljZSIsImtleXMiLCJfdGhpczQiLCJrZXlTZXQiLCJTZXQiLCJjbG9zaW5nS2V5cyIsImhhcyIsImZpbmFsaXplUmVtb3ZlIiwicmVtb3ZlZEl0ZW1zIiwiZW5zdXJlUmVuZGVyZXIiLCJfY2FsbGVlMiIsIl90aGlzNSIsIl9jYWxsZWUyJCIsIl9jb250ZXh0MiIsInJlbW92ZUNvbnRhaW5lciIsInJlbW92ZSIsInRlYXJkb3duIiwiY2xlYXIiLCJyZW5kZXJOb2RlIiwiX3RoaXM2Iiwibm90aWZpY2F0aW9uTWFuYWdlciIsIm9wZW5Ob3RpZmljYXRpb25XaXRoU3RhdHVzIiwic3RhdHVzIiwibm90aWZpY2F0aW9uIiwiaW5mbyIsInN1Y2Nlc3MiLCJ3YXJuaW5nIiwiZXJyb3IiXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsSUFBSUEsU0FBUyxHQUFJLElBQUksSUFBSSxJQUFJLENBQUNBLFNBQVMsSUFBSyxVQUFVQyxPQUFPLEVBQUVDLFVBQVUsRUFBRUMsQ0FBQyxFQUFFQyxTQUFTLEVBQUU7RUFD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QUFFLFNBQVRBLE9BQU9BLENBQUVwQyxHQUFHO0lBQUEsT0FBSTJFLG1CQUFtQixDQUFDdkMsT0FBTyxDQUFDcEMsR0FBRyxDQUFDO0VBQUE7RUFDaEQwQixNQUFNLEVBQUUsU0FBUkEsTUFBTUEsQ0FBRUEsT0FBTTtJQUFBLE9BQUlpRCxtQkFBbUIsQ0FBQ2pELE1BQU0sQ0FBQ0EsT0FBTSxDQUFDO0VBQUE7QUQzSXRELENDNElDO0FBRUQsZUFBZW9ELFlBQVkiLCJmaWxlIjoiY29tcG9uZW50cy9Ob3RpZmljYXRpb24vTm90aWZpY2F0aW9uU3RhdGljLmpzIiwic291cmNlc0NvbnRlbnQiOlsidmFyIF9fYXdhaXRlciA9ICh0aGlzICYmIHRoaXMuX19hd2FpdGVyKSB8fCBmdW5jdGlvbiAodGhpc0FyZywgX2FyZ3VtZW50cywgUCwgZ2VuZXJhdG9yKSB7XG4gICAgZnVuY3Rpb24gYWRvcHQodmFsdWUpIHsgcmV0dXJuIHZhbHVlIGluc3RhbmNlb2YgUCA/IHZhbHVlIDogbmV3IFAoZnVuY3Rpb24gKHJlc29sdmUpIHsgcmVzb2x2ZSh2YWx1ZSk7IH0pOyB9XG4gICAgcmV0dXJuIG5ldyAoUCB8fCAoUCA9IFByb21pc2UpKShmdW5jdGlvbiAocmVzb2x2ZSwgcmVqZWN0KSB7XG4gICAgICAgIGZ1bmN0aW9uIGZ1bGZpbGxlZCh2YWx1ZSkgeyB0cnkgeyBzdGVwKGdlbmVyYXRvci5uZXh0KHZhbHVlKSk7IH0gY2F0Y2ggKGUpIHsgcmVqZWN0KGUpOyB9IH1cbiAgICAgICAgZnVuY3Rpb24gcmVqZWN0ZWQodmFsdWUpIHsgdHJ5IHsgc3RlcChnZW5lcmF0b3JbXCJ0aHJvd1wiXSh2YWx1ZSkpOyB9IGNhdGNoIChlKSB7IHJlamVjdChlKTsgfSB9XG4gICAgICAgIGZ1bmN0aW9uIHN0ZXAocmVzdWx0KSB7IHJlc3VsdC5kb25lID8gcmVzb2x2ZShyZXN1bHQudmFsdWUpIDogYWRvcHQocmVzdWx0LnZhbHVlKS50aGVuKGZ1bGZpbGxlZCwgcmVqZWN0ZWQpOyB9XG4gICAgICAgIHN0ZXAoKGdlbmVyYXRvciA9IGdlbmVyYXRvci5hcHBseSh0aGlzQXJnLCBfYXJndW1lbnRzIHx8IFtdKSkubmV4dCgpKTtcbiAgICB9KTtcbn07XG52YXIgX19yZXN0ID0gKHRoaXMgJiYgdGhpcy5fX3Jlc3QpIHx8IGZ1bmN0aW9uIChzLCBlKSB7XG4gICAgdmFyIHQgPSB7fTtcbiAgICBmb3IgKHZhciBwIGluIHMpIGlmIChPYmplY3QucHJvdG90eXBlLmhhc093blByb3BlcnR5LmNhbGwocywgcCkgJiYgZS5pbmRleE9mKHApIDwgMClcbiAgICAgICAgdFtwXSA9IHNbcF07XG4gICAgaWYgKHMgIT0gbnVsbCAmJiB0eXBlb2YgT2JqZWN0LmdldE93blByb3BlcnR5U3ltYm9scyA9PT0gXCJmdW5jdGlvblwiKVxuICAgICAgICBmb3IgKHZhciBpID0gMCwgcCA9IE9iamVjdC5nZXRPd25Qcm9wZXJ0eVN5bWJvbHMocyk7IGkgPCBwLmxlbmd0aDsgaSsrKSB7XG4gICAgICAgICAgICBpZiAoZS5pbmRleE9mKHBbaV0pIDwgMCAmJiBPYmplY3QucHJvdG90eXBlLnByb3BlcnR5SXNFbnVtZXJhYmxlLmNhbGwocywgcFtpXSkpXG4gICAgICAgICAgICAgICAgdFtwW2ldXSA9IHNbcFtpXV07XG4gICAgICAgIH1cbiAgICByZXR1cm4gdDtcbn07XG5pbXBvcnQgeyBqc3ggYXMgX2pzeCB9IGZyb20gXCJyZWFjdC9qc3gtcnVudGltZVwiO1xuaW1wb3J0IHsgdXNlRWZmZWN0LCB1c2VTdGF0ZSB9IGZyb20gJ3JlYWN0JztcbmltcG9ydCB7IE1lbW9pemVkTm90aWZpY2F0aW9uIH0gZnJvbSAnLi9Ob3RpZmljYXRpb24nO1xuaW1wb3J0IHsgZGVmYXVsdCBhcyBjbGFzc25hbWVzLCBqb2luQ2xzIH0gZnJvbSAnLi4vLi4vdXRpbHMvY2xhc3NuYW1lcyc7XG5pbXBvcnQgJy4vc3R5bGUnO1xuaW1wb3J0IHsgTk9USUZJQ0FUSU9OX1BMQUNFTUVOVFMgfSBmcm9tICcuL2ludGVyZmFjZSc7XG5jb25zdCBOT1RJRklDQVRJT05fUk9PVF9JRCA9ICdvbS1yZWFjdC11aS1ub3RpZmljYXRpb24tcm9vdCc7XG5jb25zdCBERUZBVUxUX05PVElGSUNBVElPTl9QTEFDRU1FTlQgPSAndG9wUmlnaHQnO1xuY29uc3QgREVGQVVMVF9OT1RJRklDQVRJT05fRFVSQVRJT04gPSA0LjU7XG5jb25zdCBERUZBVUxUX05PVElGSUNBVElPTl9NQVhfQ09VTlQgPSBOdW1iZXIuUE9TSVRJVkVfSU5GSU5JVFk7XG5jb25zdCBOT1RJRklDQVRJT05fTU9USU9OX0RVUkFUSU9OID0gMjQwO1xuY29uc3QgREVGQVVMVF9OT1RJRklDQVRJT05fQ09ORklHID0ge1xuICAgIHBsYWNlbWVudDogREVGQVVMVF9OT1RJRklDQVRJT05fUExBQ0VNRU5ULFxuICAgIGR1cmF0aW9uOiBERUZBVUxUX05PVElGSUNBVElPTl9EVVJBVElPTixcbiAgICBtYXhDb3VudDogREVGQVVMVF9OT1RJRklDQVRJT05fTUFYX0NPVU5ULFxufTtcbmNvbnN0IGNhblVzZURPTSA9ICgpID0+IHR5cGVvZiB3aW5kb3cgIT09ICd1bmRlZmluZWQnICYmIHR5cGVvZiBkb2N1bWVudCAhPT0gJ3VuZGVmaW5lZCc7XG5jb25zdCBub3JtYWxpemVEdXJhdGlvbiA9ICh2YWx1ZSwgZmFsbGJhY2spID0+IHtcbiAgICBpZiAodmFsdWUgPD0gMClcbiAgICAgICAgcmV0dXJuIDA7XG4gICAgcmV0dXJuIE51bWJlci5pc0Zpbml0ZSh2YWx1ZSkgPyB2YWx1ZSA6IGZhbGxiYWNrO1xufTtcbmNvbnN0IG5vcm1hbGl6ZU1heENvdW50ID0gKHZhbHVlKSA9PiB7XG4gICAgaWYgKCFOdW1iZXIuaXNGaW5pdGUodmFsdWUpIHx8IHZhbHVlIDw9IDApIHtcbiAgICAgICAgcmV0dXJuIERFRkFVTFRfTk9USUZJQ0FUSU9OX01BWF9DT1VOVDtcbiAgICB9XG4gICAgcmV0dXJuIE1hdGguZmxvb3IodmFsdWUpO1xufTtcbmNvbnN0IGdyb3VwTm90aWZpY2F0aW9uc0J5UGxhY2VtZW50ID0gKGl0ZW1zKSA9PiB7XG4gICAgY29uc3QgZ3JvdXBlZEl0ZW1zID0ge307XG4gICAgTk9USUZJQ0FUSU9OX1BMQUNFTUVOVFMuZm9yRWFjaChwbGFjZW1lbnQgPT4ge1xuICAgICAgICBncm91cGVkSXRlbXNbcGxhY2VtZW50XSA9IFtdO1xuICAgIH0pO1xuICAgIGl0ZW1zLmZvckVhY2goaXRlbSA9PiB7XG4gICAgICAgIGdyb3VwZWRJdGVtc1tpdGVtLnBsYWNlbWVudF0ucHVzaChpdGVtKTtcbiAgICB9KTtcbiAgICByZXR1cm4gZ3JvdXBlZEl0ZW1zO1xufTtcbmNvbnN0IGdldE5vdGlmaWNhdGlvblJvb3QgPSAoKSA9PiB7XG4gICAgY29uc3QgZXhpc3RpbmdSb290ID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoTk9USUZJQ0FUSU9OX1JPT1RfSUQpO1xuICAgIGlmIChleGlzdGluZ1Jvb3QgaW5zdGFuY2VvZiBIVE1MRGl2RWxlbWVudCkge1xuICAgICAgICByZXR1cm4gZXhpc3RpbmdSb290O1xuICAgIH1cbiAgICBjb25zdCByb290ID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnZGl2Jyk7XG4gICAgcm9vdC5pZCA9IE5PVElGSUNBVElPTl9ST09UX0lEO1xuICAgIGRvY3VtZW50LmJvZHkuYXBwZW5kQ2hpbGQocm9vdCk7XG4gICAgcmV0dXJuIHJvb3Q7XG59O1xuY29uc3QgY3JlYXRlTm90aWZpY2F0aW9uUmVuZGVyZXIgPSAoY29udGFpbmVyKSA9PiBfX2F3YWl0ZXIodm9pZCAwLCB2b2lkIDAsIHZvaWQgMCwgZnVuY3Rpb24qICgpIHtcbiAgICB0cnkge1xuICAgICAgICBjb25zdCByZWFjdERvbUNsaWVudCA9IHlpZWxkIGltcG9ydCgncmVhY3QtZG9tL2NsaWVudCcpO1xuICAgICAgICBjb25zdCByb290ID0gcmVhY3REb21DbGllbnQuY3JlYXRlUm9vdChjb250YWluZXIpO1xuICAgICAgICByZXR1cm4ge1xuICAgICAgICAgICAgcmVuZGVyOiBlbGVtZW50ID0+IHtcbiAgICAgICAgICAgICAgICByb290LnJlbmRlcihlbGVtZW50KTtcbiAgICAgICAgICAgIH0sXG4gICAgICAgICAgICB1bm1vdW50OiAoKSA9PiB7XG4gICAgICAgICAgICAgICAgcm9vdC51bm1vdW50KCk7XG4gICAgICAgICAgICB9LFxuICAgICAgICB9O1xuICAgIH1cbiAgICBjYXRjaCAoX2EpIHtcbiAgICAgICAgLy8gRmFsbGJhY2sgZm9yIFJlYWN0IDwgMTggd2hlcmUgcmVhY3QtZG9tL2NsaWVudCBpcyB1bmF2YWlsYWJsZVxuICAgICAgICBjb25zdCByZWFjdERvbSA9IHlpZWxkIGltcG9ydCgncmVhY3QtZG9tJyk7XG4gICAgICAgIGlmICh0eXBlb2YgcmVhY3REb20ucmVuZGVyICE9PSAnZnVuY3Rpb24nIHx8XG4gICAgICAgICAgICB0eXBlb2YgcmVhY3REb20udW5tb3VudENvbXBvbmVudEF0Tm9kZSAhPT0gJ2Z1bmN0aW9uJykge1xuICAgICAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIHJlbmRlcjogZWxlbWVudCA9PiB7XG4gICAgICAgICAgICAgICAgdmFyIF9hO1xuICAgICAgICAgICAgICAgIChfYSA9IHJlYWN0RG9tLnJlbmRlcikgPT09IG51bGwgfHwgX2EgPT09IHZvaWQgMCA/IHZvaWQgMCA6IF9hLmNhbGwocmVhY3REb20sIGVsZW1lbnQsIGNvbnRhaW5lcik7XG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgdW5tb3VudDogKCkgPT4ge1xuICAgICAgICAgICAgICAgIHZhciBfYTtcbiAgICAgICAgICAgICAgICAoX2EgPSByZWFjdERvbS51bm1vdW50Q29tcG9uZW50QXROb2RlKSA9PT0gbnVsbCB8fCBfYSA9PT0gdm9pZCAwID8gdm9pZCAwIDogX2EuY2FsbChyZWFjdERvbSwgY29udGFpbmVyKTtcbiAgICAgICAgICAgIH0sXG4gICAgICAgIH07XG4gICAgfVxufSk7XG5jb25zdCBOb3RpZmljYXRpb25Nb3Rpb25JdGVtID0gKHsgaXRlbSwgY29sbGFwc2VPbkV4aXQsIG9uQ2xvc2UgfSkgPT4ge1xuICAgIGNvbnN0IGNsYXNzZXMgPSBjbGFzc25hbWVzKCdub3RpZmljYXRpb24nKTtcbiAgICBjb25zdCBbZW50ZXJlZCwgc2V0RW50ZXJlZF0gPSB1c2VTdGF0ZShmYWxzZSk7XG4gICAgdXNlRWZmZWN0KCgpID0+IHtcbiAgICAgICAgaWYgKGl0ZW0uY2xvc2luZyB8fCB0eXBlb2Ygd2luZG93ID09PSAndW5kZWZpbmVkJylcbiAgICAgICAgICAgIHJldHVybiB1bmRlZmluZWQ7XG4gICAgICAgIGNvbnN0IGZyYW1lID0gd2luZG93LnJlcXVlc3RBbmltYXRpb25GcmFtZSgoKSA9PiB7XG4gICAgICAgICAgICBzZXRFbnRlcmVkKHRydWUpO1xuICAgICAgICB9KTtcbiAgICAgICAgcmV0dXJuICgpID0+IHtcbiAgICAgICAgICAgIHdpbmRvdy5jYW5jZWxBbmltYXRpb25GcmFtZShmcmFtZSk7XG4gICAgICAgIH07XG4gICAgfSwgW2l0ZW0uY2xvc2luZywgaXRlbS5rZXldKTtcbiAgICBjb25zdCB7IGtleSwgZHVyYXRpb24sIHBsYWNlbWVudCwgY2xvc2luZyB9ID0gaXRlbSwgbm90aWZpY2F0aW9uUHJvcHMgPSBfX3Jlc3QoaXRlbSwgW1wia2V5XCIsIFwiZHVyYXRpb25cIiwgXCJwbGFjZW1lbnRcIiwgXCJjbG9zaW5nXCJdKTtcbiAgICBjb25zdCBtb3Rpb25DbGFzc05hbWUgPSBjbG9zaW5nXG4gICAgICAgID8gam9pbkNscyhjbGFzc2VzKCdpdGVtLWV4aXQnKSwgY29sbGFwc2VPbkV4aXQgPyBjbGFzc2VzKCdpdGVtLWV4aXQtY29sbGFwc2UnKSA6ICcnKVxuICAgICAgICA6IGVudGVyZWRcbiAgICAgICAgICAgID8gY2xhc3NlcygnaXRlbS1hY3RpdmUnKVxuICAgICAgICAgICAgOiBjbGFzc2VzKCdpdGVtLWVudGVyJyk7XG4gICAgcmV0dXJuIChfanN4KFwiZGl2XCIsIHsgY2xhc3NOYW1lOiBqb2luQ2xzKGNsYXNzZXMoJ2l0ZW0nKSwgbW90aW9uQ2xhc3NOYW1lKSwgY2hpbGRyZW46IF9qc3goXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0taW5uZXInKSwgY2hpbGRyZW46IF9qc3goTWVtb2l6ZWROb3RpZmljYXRpb24sIE9iamVjdC5hc3NpZ24oe30sIG5vdGlmaWNhdGlvblByb3BzLCB7IG9uQ2xvc2U6ICgpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgb25DbG9zZShrZXkpO1xuICAgICAgICAgICAgICAgIH0gfSkpIH0pIH0pKTtcbn07XG5jb25zdCBOb3RpZmljYXRpb25WaWV3cG9ydCA9ICh7IGl0ZW1zLCBvbkNsb3NlIH0pID0+IHtcbiAgICBjb25zdCBjbGFzc2VzID0gY2xhc3NuYW1lcygnbm90aWZpY2F0aW9uJyk7XG4gICAgY29uc3QgaXRlbXNCeVBsYWNlbWVudCA9IGdyb3VwTm90aWZpY2F0aW9uc0J5UGxhY2VtZW50KGl0ZW1zKTtcbiAgICByZXR1cm4gKF9qc3goXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ3ZpZXdwb3J0JyksIFwiYXJpYS1saXZlXCI6IFwicG9saXRlXCIsIFwiYXJpYS1hdG9taWNcIjogXCJmYWxzZVwiLCBjaGlsZHJlbjogTk9USUZJQ0FUSU9OX1BMQUNFTUVOVFMubWFwKHBsYWNlbWVudCA9PiB7XG4gICAgICAgICAgICBjb25zdCBwbGFjZW1lbnRJdGVtcyA9IGl0ZW1zQnlQbGFjZW1lbnRbcGxhY2VtZW50XTtcbiAgICAgICAgICAgIGlmICghcGxhY2VtZW50SXRlbXMubGVuZ3RoKVxuICAgICAgICAgICAgICAgIHJldHVybiBudWxsO1xuICAgICAgICAgICAgY29uc3QgYWN0aXZlQ291bnQgPSBwbGFjZW1lbnRJdGVtcy5maWx0ZXIoaSA9PiAhaS5jbG9zaW5nKS5sZW5ndGg7XG4gICAgICAgICAgICByZXR1cm4gKF9qc3goXCJkaXZcIiwgeyBjbGFzc05hbWU6IGpvaW5DbHMoY2xhc3Nlcygnc3RhY2snKSwgY2xhc3Nlcyhgc3RhY2stJHtwbGFjZW1lbnR9YCkpLCBjaGlsZHJlbjogcGxhY2VtZW50SXRlbXMubWFwKGl0ZW0gPT4gKF9qc3goTm90aWZpY2F0aW9uTW90aW9uSXRlbSwgeyBpdGVtOiBpdGVtLCBjb2xsYXBzZU9uRXhpdDogaXRlbS5jbG9zaW5nICYmIGFjdGl2ZUNvdW50ID4gMCwgb25DbG9zZTogb25DbG9zZSB9LCBTdHJpbmcoaXRlbS5rZXkpKSkpIH0sIHBsYWNlbWVudCkpO1xuICAgICAgICB9KSB9KSk7XG59O1xuY2xhc3MgTm90aWZpY2F0aW9uTWFuYWdlciB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHRoaXMuY29udGFpbmVyID0gbnVsbDtcbiAgICAgICAgdGhpcy5yZW5kZXJlciA9IG51bGw7XG4gICAgICAgIHRoaXMucmVuZGVyZXJQcm9taXNlID0gbnVsbDtcbiAgICAgICAgdGhpcy5pdGVtcyA9IFtdO1xuICAgICAgICB0aGlzLnRpbWVycyA9IG5ldyBNYXAoKTtcbiAgICAgICAgdGhpcy5yZW1vdmFsVGltZXJzID0gbmV3IE1hcCgpO1xuICAgICAgICB0aGlzLmtleVNlZWQgPSAwO1xuICAgICAgICB0aGlzLmNvbmZpZ1N0YXRlID0gREVGQVVMVF9OT1RJRklDQVRJT05fQ09ORklHO1xuICAgICAgICB0aGlzLm9wZW4gPSAoY29uZmlnKSA9PiB7XG4gICAgICAgICAgICB2YXIgX2E7XG4gICAgICAgICAgICBjb25zdCBrZXkgPSAoX2EgPSBjb25maWcua2V5KSAhPT0gbnVsbCAmJiBfYSAhPT0gdm9pZCAwID8gX2EgOiB0aGlzLmNyZWF0ZUtleSgpO1xuICAgICAgICAgICAgaWYgKCFjYW5Vc2VET00oKSkge1xuICAgICAgICAgICAgICAgIHJldHVybiBrZXk7XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICBjb25zdCBjdXJyZW50SXRlbSA9IHRoaXMuaXRlbXMuZmluZChpdGVtID0+IGl0ZW0ua2V5ID09PSBrZXkpO1xuICAgICAgICAgICAgY29uc3QgbmV4dEl0ZW0gPSB0aGlzLmNyZWF0ZVJlY29yZChrZXksIGNvbmZpZywgY3VycmVudEl0ZW0pO1xuICAgICAgICAgICAgaWYgKCFjdXJyZW50SXRlbSkge1xuICAgICAgICAgICAgICAgIHRoaXMuaXRlbXMgPSBbLi4udGhpcy5pdGVtcywgbmV4dEl0ZW1dO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgZWxzZSBpZiAoY3VycmVudEl0ZW0ucGxhY2VtZW50ID09PSBuZXh0SXRlbS5wbGFjZW1lbnQpIHtcbiAgICAgICAgICAgICAgICB0aGlzLml0ZW1zID0gdGhpcy5pdGVtcy5tYXAoaXRlbSA9PiAoaXRlbS5rZXkgPT09IGtleSA/IG5leHRJdGVtIDogaXRlbSkpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgZWxzZSB7XG4gICAgICAgICAgICAgICAgdGhpcy5pdGVtcyA9IFsuLi50aGlzLml0ZW1zLmZpbHRlcihpdGVtID0+IGl0ZW0ua2V5ICE9PSBrZXkpLCBuZXh0SXRlbV07XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICB0aGlzLmNsZWFyUmVtb3ZhbFRpbWVyKGtleSk7XG4gICAgICAgICAgICB0aGlzLnN0YXJ0VGltZXIobmV4dEl0ZW0pO1xuICAgICAgICAgICAgdGhpcy50cmltT3ZlcmZsb3coKTtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyKCk7XG4gICAgICAgICAgICByZXR1cm4ga2V5O1xuICAgICAgICB9O1xuICAgICAgICB0aGlzLmRlc3Ryb3kgPSBrZXkgPT4ge1xuICAgICAgICAgICAgaWYgKGtleSA9PT0gdW5kZWZpbmVkKSB7XG4gICAgICAgICAgICAgICAgdGhpcy5iZWdpbkNsb3NlKHRoaXMuaXRlbXMubWFwKGl0ZW0gPT4gaXRlbS5rZXkpKTtcbiAgICAgICAgICAgICAgICB0aGlzLnJlbmRlcigpO1xuICAgICAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIHRoaXMuYmVnaW5DbG9zZShba2V5XSk7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcigpO1xuICAgICAgICB9O1xuICAgICAgICB0aGlzLmNvbmZpZyA9IGNvbmZpZyA9PiB7XG4gICAgICAgICAgICB2YXIgX2EsIF9iLCBfYztcbiAgICAgICAgICAgIHRoaXMuY29uZmlnU3RhdGUgPSB7XG4gICAgICAgICAgICAgICAgcGxhY2VtZW50OiAoX2EgPSBjb25maWcucGxhY2VtZW50KSAhPT0gbnVsbCAmJiBfYSAhPT0gdm9pZCAwID8gX2EgOiB0aGlzLmNvbmZpZ1N0YXRlLnBsYWNlbWVudCxcbiAgICAgICAgICAgICAgICBkdXJhdGlvbjogbm9ybWFsaXplRHVyYXRpb24oKF9iID0gY29uZmlnLmR1cmF0aW9uKSAhPT0gbnVsbCAmJiBfYiAhPT0gdm9pZCAwID8gX2IgOiB0aGlzLmNvbmZpZ1N0YXRlLmR1cmF0aW9uLCB0aGlzLmNvbmZpZ1N0YXRlLmR1cmF0aW9uKSxcbiAgICAgICAgICAgICAgICBtYXhDb3VudDogbm9ybWFsaXplTWF4Q291bnQoKF9jID0gY29uZmlnLm1heENvdW50KSAhPT0gbnVsbCAmJiBfYyAhPT0gdm9pZCAwID8gX2MgOiB0aGlzLmNvbmZpZ1N0YXRlLm1heENvdW50KSxcbiAgICAgICAgICAgIH07XG4gICAgICAgICAgICB0aGlzLnRyaW1PdmVyZmxvdygpO1xuICAgICAgICAgICAgdGhpcy5yZW5kZXIoKTtcbiAgICAgICAgfTtcbiAgICAgICAgdGhpcy5oYW5kbGVDbG9zZSA9IChrZXkpID0+IHtcbiAgICAgICAgICAgIHRoaXMuYmVnaW5DbG9zZShba2V5XSk7XG4gICAgICAgICAgICB0aGlzLnJlbmRlcigpO1xuICAgICAgICB9O1xuICAgIH1cbiAgICBjcmVhdGVLZXkoKSB7XG4gICAgICAgIHRoaXMua2V5U2VlZCArPSAxO1xuICAgICAgICByZXR1cm4gYG5vdGlmaWNhdGlvbi0ke3RoaXMua2V5U2VlZH1gO1xuICAgIH1cbiAgICBjcmVhdGVSZWNvcmQoa2V5LCBjb25maWcsIGN1cnJlbnRJdGVtKSB7XG4gICAgICAgIHZhciBfYSwgX2IsIF9jLCBfZDtcbiAgICAgICAgY29uc3QgbWVyZ2VkQ29uZmlnID0gT2JqZWN0LmFzc2lnbihPYmplY3QuYXNzaWduKHt9LCBjdXJyZW50SXRlbSksIGNvbmZpZyk7XG4gICAgICAgIHJldHVybiBPYmplY3QuYXNzaWduKE9iamVjdC5hc3NpZ24oe30sIG1lcmdlZENvbmZpZyksIHsga2V5LCBwbGFjZW1lbnQ6IChfYiA9IChfYSA9IGNvbmZpZy5wbGFjZW1lbnQpICE9PSBudWxsICYmIF9hICE9PSB2b2lkIDAgPyBfYSA6IGN1cnJlbnRJdGVtID09PSBudWxsIHx8IGN1cnJlbnRJdGVtID09PSB2b2lkIDAgPyB2b2lkIDAgOiBjdXJyZW50SXRlbS5wbGFjZW1lbnQpICE9PSBudWxsICYmIF9iICE9PSB2b2lkIDAgPyBfYiA6IHRoaXMuY29uZmlnU3RhdGUucGxhY2VtZW50LCBkdXJhdGlvbjogbm9ybWFsaXplRHVyYXRpb24oKF9kID0gKF9jID0gY29uZmlnLmR1cmF0aW9uKSAhPT0gbnVsbCAmJiBfYyAhPT0gdm9pZCAwID8gX2MgOiBjdXJyZW50SXRlbSA9PT0gbnVsbCB8fCBjdXJyZW50SXRlbSA9PT0gdm9pZCAwID8gdm9pZCAwIDogY3VycmVudEl0ZW0uZHVyYXRpb24pICE9PSBudWxsICYmIF9kICE9PSB2b2lkIDAgPyBfZCA6IHRoaXMuY29uZmlnU3RhdGUuZHVyYXRpb24sIHRoaXMuY29uZmlnU3RhdGUuZHVyYXRpb24pLCBjbG9zaW5nOiBmYWxzZSB9KTtcbiAgICB9XG4gICAgc3RhcnRUaW1lcihpdGVtKSB7XG4gICAgICAgIHRoaXMuY2xlYXJUaW1lcihpdGVtLmtleSk7XG4gICAgICAgIGlmIChpdGVtLmR1cmF0aW9uIDw9IDApXG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIGNvbnN0IHRpbWVvdXRJZCA9IHdpbmRvdy5zZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgICAgICAgIHRoaXMuYmVnaW5DbG9zZShbaXRlbS5rZXldKTtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyKCk7XG4gICAgICAgIH0sIGl0ZW0uZHVyYXRpb24gKiAxMDAwKTtcbiAgICAgICAgdGhpcy50aW1lcnMuc2V0KGl0ZW0ua2V5LCB0aW1lb3V0SWQpO1xuICAgIH1cbiAgICBjbGVhclRpbWVyKGtleSkge1xuICAgICAgICBjb25zdCB0aW1lb3V0SWQgPSB0aGlzLnRpbWVycy5nZXQoa2V5KTtcbiAgICAgICAgaWYgKHRpbWVvdXRJZCA9PT0gdW5kZWZpbmVkKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB3aW5kb3cuY2xlYXJUaW1lb3V0KHRpbWVvdXRJZCk7XG4gICAgICAgIHRoaXMudGltZXJzLmRlbGV0ZShrZXkpO1xuICAgIH1cbiAgICB0cmltT3ZlcmZsb3coKSB7XG4gICAgICAgIGlmICghTnVtYmVyLmlzRmluaXRlKHRoaXMuY29uZmlnU3RhdGUubWF4Q291bnQpKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICBjb25zdCBvdmVyZmxvd0tleXMgPSBOT1RJRklDQVRJT05fUExBQ0VNRU5UUy5mbGF0TWFwKHBsYWNlbWVudCA9PiB7XG4gICAgICAgICAgICBjb25zdCBwbGFjZW1lbnRJdGVtcyA9IHRoaXMuaXRlbXMuZmlsdGVyKGl0ZW0gPT4gaXRlbS5wbGFjZW1lbnQgPT09IHBsYWNlbWVudCAmJiAhaXRlbS5jbG9zaW5nKTtcbiAgICAgICAgICAgIGNvbnN0IG92ZXJmbG93Q291bnQgPSBwbGFjZW1lbnRJdGVtcy5sZW5ndGggLSB0aGlzLmNvbmZpZ1N0YXRlLm1heENvdW50O1xuICAgICAgICAgICAgaWYgKG92ZXJmbG93Q291bnQgPD0gMClcbiAgICAgICAgICAgICAgICByZXR1cm4gW107XG4gICAgICAgICAgICByZXR1cm4gcGxhY2VtZW50SXRlbXMuc2xpY2UoMCwgb3ZlcmZsb3dDb3VudCkubWFwKGl0ZW0gPT4gaXRlbS5rZXkpO1xuICAgICAgICB9KTtcbiAgICAgICAgaWYgKCFvdmVyZmxvd0tleXMubGVuZ3RoKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB0aGlzLmJlZ2luQ2xvc2Uob3ZlcmZsb3dLZXlzKTtcbiAgICB9XG4gICAgY2xlYXJSZW1vdmFsVGltZXIoa2V5KSB7XG4gICAgICAgIGNvbnN0IHRpbWVvdXRJZCA9IHRoaXMucmVtb3ZhbFRpbWVycy5nZXQoa2V5KTtcbiAgICAgICAgaWYgKHRpbWVvdXRJZCA9PT0gdW5kZWZpbmVkKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICB3aW5kb3cuY2xlYXJUaW1lb3V0KHRpbWVvdXRJZCk7XG4gICAgICAgIHRoaXMucmVtb3ZhbFRpbWVycy5kZWxldGUoa2V5KTtcbiAgICB9XG4gICAgYmVnaW5DbG9zZShrZXlzKSB7XG4gICAgICAgIGlmICgha2V5cy5sZW5ndGgpXG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIGNvbnN0IGtleVNldCA9IG5ldyBTZXQoa2V5cyk7XG4gICAgICAgIGNvbnN0IGNsb3NpbmdLZXlzID0gW107XG4gICAgICAgIHRoaXMuaXRlbXMgPSB0aGlzLml0ZW1zLm1hcChpdGVtID0+IHtcbiAgICAgICAgICAgIGlmICgha2V5U2V0LmhhcyhpdGVtLmtleSkgfHwgaXRlbS5jbG9zaW5nKSB7XG4gICAgICAgICAgICAgICAgcmV0dXJuIGl0ZW07XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICB0aGlzLmNsZWFyVGltZXIoaXRlbS5rZXkpO1xuICAgICAgICAgICAgY2xvc2luZ0tleXMucHVzaChpdGVtLmtleSk7XG4gICAgICAgICAgICByZXR1cm4gT2JqZWN0LmFzc2lnbihPYmplY3QuYXNzaWduKHt9LCBpdGVtKSwgeyBjbG9zaW5nOiB0cnVlIH0pO1xuICAgICAgICB9KTtcbiAgICAgICAgY2xvc2luZ0tleXMuZm9yRWFjaChrZXkgPT4ge1xuICAgICAgICAgICAgdGhpcy5jbGVhclJlbW92YWxUaW1lcihrZXkpO1xuICAgICAgICAgICAgY29uc3QgdGltZW91dElkID0gd2luZG93LnNldFRpbWVvdXQoKCkgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMuZmluYWxpemVSZW1vdmUoa2V5KTtcbiAgICAgICAgICAgIH0sIE5PVElGSUNBVElPTl9NT1RJT05fRFVSQVRJT04pO1xuICAgICAgICAgICAgdGhpcy5yZW1vdmFsVGltZXJzLnNldChrZXksIHRpbWVvdXRJZCk7XG4gICAgICAgIH0pO1xuICAgIH1cbiAgICBmaW5hbGl6ZVJlbW92ZShrZXkpIHtcbiAgICAgICAgdGhpcy5jbGVhclJlbW92YWxUaW1lcihrZXkpO1xuICAgICAgICBjb25zdCByZW1vdmVkSXRlbXMgPSB0aGlzLml0ZW1zLmZpbHRlcihpdGVtID0+IGl0ZW0ua2V5ID09PSBrZXkpO1xuICAgICAgICBpZiAoIXJlbW92ZWRJdGVtcy5sZW5ndGgpXG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIHRoaXMuaXRlbXMgPSB0aGlzLml0ZW1zLmZpbHRlcihpdGVtID0+IGl0ZW0ua2V5ICE9PSBrZXkpO1xuICAgICAgICByZW1vdmVkSXRlbXMuZm9yRWFjaChpdGVtID0+IHtcbiAgICAgICAgICAgIHZhciBfYTtcbiAgICAgICAgICAgIChfYSA9IGl0ZW0ub25DbG9zZSkgPT09IG51bGwgfHwgX2EgPT09IHZvaWQgMCA/IHZvaWQgMCA6IF9hLmNhbGwoaXRlbSk7XG4gICAgICAgIH0pO1xuICAgICAgICB0aGlzLnJlbmRlcigpO1xuICAgIH1cbiAgICBlbnN1cmVSZW5kZXJlcigpIHtcbiAgICAgICAgcmV0dXJuIF9fYXdhaXRlcih0aGlzLCB2b2lkIDAsIHZvaWQgMCwgZnVuY3Rpb24qICgpIHtcbiAgICAgICAgICAgIGlmICghY2FuVXNlRE9NKCkpXG4gICAgICAgICAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICAgICAgICBpZiAodGhpcy5yZW5kZXJlcilcbiAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5yZW5kZXJlcjtcbiAgICAgICAgICAgIGlmICh0aGlzLnJlbmRlcmVyUHJvbWlzZSlcbiAgICAgICAgICAgICAgICByZXR1cm4gdGhpcy5yZW5kZXJlclByb21pc2U7XG4gICAgICAgICAgICB0aGlzLmNvbnRhaW5lciA9IGdldE5vdGlmaWNhdGlvblJvb3QoKTtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXJQcm9taXNlID0gY3JlYXRlTm90aWZpY2F0aW9uUmVuZGVyZXIodGhpcy5jb250YWluZXIpXG4gICAgICAgICAgICAgICAgLnRoZW4ocmVuZGVyZXIgPT4ge1xuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyZXIgPSByZW5kZXJlcjtcbiAgICAgICAgICAgICAgICB0aGlzLnJlbmRlcmVyUHJvbWlzZSA9IG51bGw7XG4gICAgICAgICAgICAgICAgaWYgKCFyZW5kZXJlcikge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLnJlbW92ZUNvbnRhaW5lcigpO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICByZXR1cm4gcmVuZGVyZXI7XG4gICAgICAgICAgICB9KVxuICAgICAgICAgICAgICAgIC5jYXRjaCgoKSA9PiB7XG4gICAgICAgICAgICAgICAgdGhpcy5yZW5kZXJlclByb21pc2UgPSBudWxsO1xuICAgICAgICAgICAgICAgIHRoaXMucmVtb3ZlQ29udGFpbmVyKCk7XG4gICAgICAgICAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICAgICAgICB9KTtcbiAgICAgICAgICAgIHJldHVybiB0aGlzLnJlbmRlcmVyUHJvbWlzZTtcbiAgICAgICAgfSk7XG4gICAgfVxuICAgIHJlbW92ZUNvbnRhaW5lcigpIHtcbiAgICAgICAgdmFyIF9hO1xuICAgICAgICAoX2EgPSB0aGlzLmNvbnRhaW5lcikgPT09IG51bGwgfHwgX2EgPT09IHZvaWQgMCA/IHZvaWQgMCA6IF9hLnJlbW92ZSgpO1xuICAgICAgICB0aGlzLmNvbnRhaW5lciA9IG51bGw7XG4gICAgfVxuICAgIHRlYXJkb3duKCkge1xuICAgICAgICB2YXIgX2E7XG4gICAgICAgIHRoaXMudGltZXJzLmZvckVhY2goaWQgPT4gd2luZG93LmNsZWFyVGltZW91dChpZCkpO1xuICAgICAgICB0aGlzLnRpbWVycy5jbGVhcigpO1xuICAgICAgICB0aGlzLnJlbW92YWxUaW1lcnMuZm9yRWFjaChpZCA9PiB3aW5kb3cuY2xlYXJUaW1lb3V0KGlkKSk7XG4gICAgICAgIHRoaXMucmVtb3ZhbFRpbWVycy5jbGVhcigpO1xuICAgICAgICAoX2EgPSB0aGlzLnJlbmRlcmVyKSA9PT0gbnVsbCB8fCBfYSA9PT0gdm9pZCAwID8gdm9pZCAwIDogX2EudW5tb3VudCgpO1xuICAgICAgICB0aGlzLnJlbmRlcmVyID0gbnVsbDtcbiAgICAgICAgdGhpcy5yZW1vdmVDb250YWluZXIoKTtcbiAgICB9XG4gICAgcmVuZGVyTm9kZSgpIHtcbiAgICAgICAgcmV0dXJuIChfanN4KE5vdGlmaWNhdGlvblZpZXdwb3J0LCB7IGl0ZW1zOiB0aGlzLml0ZW1zLCBvbkNsb3NlOiB0aGlzLmhhbmRsZUNsb3NlIH0pKTtcbiAgICB9XG4gICAgcmVuZGVyKCkge1xuICAgICAgICBpZiAoIWNhblVzZURPTSgpKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICBpZiAoIXRoaXMuaXRlbXMubGVuZ3RoKSB7XG4gICAgICAgICAgICB0aGlzLnRlYXJkb3duKCk7XG4gICAgICAgICAgICByZXR1cm47XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHRoaXMucmVuZGVyZXIpIHtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIucmVuZGVyKHRoaXMucmVuZGVyTm9kZSgpKTtcbiAgICAgICAgICAgIHJldHVybjtcbiAgICAgICAgfVxuICAgICAgICB2b2lkIHRoaXMuZW5zdXJlUmVuZGVyZXIoKS50aGVuKHJlbmRlcmVyID0+IHtcbiAgICAgICAgICAgIGlmICghcmVuZGVyZXIpXG4gICAgICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICAgICAgaWYgKCF0aGlzLml0ZW1zLmxlbmd0aCkge1xuICAgICAgICAgICAgICAgIHRoaXMudGVhcmRvd24oKTtcbiAgICAgICAgICAgICAgICByZXR1cm47XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICByZW5kZXJlci5yZW5kZXIodGhpcy5yZW5kZXJOb2RlKCkpO1xuICAgICAgICB9KTtcbiAgICB9XG59XG5jb25zdCBub3RpZmljYXRpb25NYW5hZ2VyID0gbmV3IE5vdGlmaWNhdGlvbk1hbmFnZXIoKTtcbmNvbnN0IG9wZW5Ob3RpZmljYXRpb25XaXRoU3RhdHVzID0gKHN0YXR1cykgPT4gKGNvbmZpZykgPT4gbm90aWZpY2F0aW9uTWFuYWdlci5vcGVuKE9iamVjdC5hc3NpZ24oT2JqZWN0LmFzc2lnbih7fSwgY29uZmlnKSwgeyBzdGF0dXMgfSkpO1xuZXhwb3J0IGNvbnN0IG5vdGlmaWNhdGlvbiA9IHtcbiAgICBvcGVuOiBjb25maWcgPT4gbm90aWZpY2F0aW9uTWFuYWdlci5vcGVuKGNvbmZpZyksXG4gICAgaW5mbzogb3Blbk5vdGlmaWNhdGlvbldpdGhTdGF0dXMoJ2luZm8nKSxcbiAgICBzdWNjZXNzOiBvcGVuTm90aWZpY2F0aW9uV2l0aFN0YXR1cygnc3VjY2VzcycpLFxuICAgIHdhcm5pbmc6IG9wZW5Ob3RpZmljYXRpb25XaXRoU3RhdHVzKCd3YXJuaW5nJyksXG4gICAgZXJyb3I6IG9wZW5Ob3RpZmljYXRpb25XaXRoU3RhdHVzKCdlcnJvcicpLFxuICAgIGRlc3Ryb3k6IGtleSA9PiBub3RpZmljYXRpb25NYW5hZ2VyLmRlc3Ryb3koa2V5KSxcbiAgICBjb25maWc6IGNvbmZpZyA9PiBub3RpZmljYXRpb25NYW5hZ2VyLmNvbmZpZyhjb25maWcpLFxufTtcbmV4cG9ydCBkZWZhdWx0IG5vdGlmaWNhdGlvbjsiLG51bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { TypographyBodySize, TypographyColor, TypographyTitleSize } from "../Typography";
|
|
2
|
+
export declare const NOTIFICATION_TITLE_SIZE: TypographyTitleSize;
|
|
3
|
+
export declare const NOTIFICATION_TITLE_COLOR: TypographyColor;
|
|
4
|
+
export declare const NOTIFICATION_BODY_SIZE: TypographyBodySize;
|
|
5
|
+
export declare const NOTIFICATION_BODY_COLOR: TypographyColor;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// ── Title ──
|
|
2
|
+
export var NOTIFICATION_TITLE_SIZE = 'sm';
|
|
3
|
+
export var NOTIFICATION_TITLE_COLOR = 'default-secondary';
|
|
4
|
+
// ── Body ──
|
|
5
|
+
export var NOTIFICATION_BODY_SIZE = 'md';
|
|
6
|
+
export var NOTIFICATION_BODY_COLOR = 'default-secondary';
|
|
7
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvTm90aWZpY2F0aW9uL2NvbnN0YW50cy50cyJdLCJuYW1lcyI6WyJOT1RJRklDQVRJT05fVElUTEVfU0laRSIsIk5PVElGSUNBVElPTl9USVRMRV9DT0xPUiIsIk5PVElGSUNBVElPTl9CT0RZX1NJWkUiLCJOT1RJRklDQVRJT05fQk9EWV9DT0xPUiJdLCJtYXBwaW5ncyI6IkFBRUE7QUFDQSxPQUFPLElBQU1BLHVCQUF1QixHQUF3QixJQUFJO0FBQ2hFLE9BQU8sSUFBTUMsd0JBQXdCLEdBQW9CLG1CQUFtQjtBQUU1RTtBQUNBLE9BQU8sSUFBTUMsc0JBQXNCLEdBQXVCLElBQUk7QUFDOUQsT0FBTyxJQUFNQyx1QkFBdUIsR0FBb0IsbUJBQW1CIiwiZmlsZSI6ImNvbXBvbmVudHMvTm90aWZpY2F0aW9uL2NvbnN0YW50cy5qcyIsInNvdXJjZXNDb250ZW50IjpbbnVsbF0sInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMifQ==
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { notification } from './NotificationStatic';
|
|
2
|
+
export { default } from './NotificationStatic';
|
|
3
|
+
export { NOTIFICATION_STATUSES, NOTIFICATION_PLACEMENTS, } from './interface';
|
|
4
|
+
export * from './constants';
|
|
5
|
+
export type { NotificationLinkConfig, NotificationStatus, NotificationPlacement, NotificationKey, NotificationOpenConfig, NotificationStaticConfig, NotificationStaticApi, } from './interface';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { notification } from './NotificationStatic';
|
|
2
|
+
export { default } from './NotificationStatic';
|
|
3
|
+
export { NOTIFICATION_STATUSES, NOTIFICATION_PLACEMENTS } from './interface';
|
|
4
|
+
export * from './constants';
|
|
5
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvTm90aWZpY2F0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbIm5vdGlmaWNhdGlvbiIsImRlZmF1bHQiLCJOT1RJRklDQVRJT05fU1RBVFVTRVMiLCJOT1RJRklDQVRJT05fUExBQ0VNRU5UUyJdLCJtYXBwaW5ncyI6IkFBQUEsU0FBU0EsWUFBWSxRQUFRLHNCQUFzQjtBQUNuRCxTQUFTQyxPQUFPLFFBQVEsc0JBQXNCO0FBRTlDLFNBQ0VDLHFCQUFxQixFQUNyQkMsdUJBQXVCLFFBQ2xCLGFBQWE7QUFFcEIsY0FBYyxhQUFhIiwiZmlsZSI6ImNvbXBvbmVudHMvTm90aWZpY2F0aW9uL2luZGV4LmpzIiwic291cmNlc0NvbnRlbnQiOltudWxsXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyJ9
|