@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,309 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = exports.Navigation = void 0;
|
|
9
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
10
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
+
var _react = require("react");
|
|
12
|
+
var _classnames = _interopRequireWildcard(require("../../utils/classnames"));
|
|
13
|
+
var _hooks = require("@1money/hooks");
|
|
14
|
+
var _Icons = require("../Icons");
|
|
15
|
+
var _Typography = require("../Typography");
|
|
16
|
+
var _Trigger = require("../Trigger");
|
|
17
|
+
var _NavigationLogo = _interopRequireDefault(require("./NavigationLogo"));
|
|
18
|
+
require("./style");
|
|
19
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
20
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
21
|
+
var __rest = void 0 && (void 0).__rest || function (s, e) {
|
|
22
|
+
var t = {};
|
|
23
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
24
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
25
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
26
|
+
}
|
|
27
|
+
return t;
|
|
28
|
+
};
|
|
29
|
+
var ICON_SIZE = 16;
|
|
30
|
+
var CHEVRON_SIZE = 16;
|
|
31
|
+
var COLLAPSE_ICON_SIZE = 16;
|
|
32
|
+
var isIconName = function isIconName(icon) {
|
|
33
|
+
return typeof icon === 'string';
|
|
34
|
+
};
|
|
35
|
+
var Navigation = exports.Navigation = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
|
|
36
|
+
var _props$className = props.className,
|
|
37
|
+
className = _props$className === void 0 ? '' : _props$className,
|
|
38
|
+
_props$prefixCls = props.prefixCls,
|
|
39
|
+
prefixCls = _props$prefixCls === void 0 ? 'navigation' : _props$prefixCls,
|
|
40
|
+
items = props.items,
|
|
41
|
+
controlledCollapsed = props.collapsed,
|
|
42
|
+
_props$defaultCollaps = props.defaultCollapsed,
|
|
43
|
+
defaultCollapsed = _props$defaultCollaps === void 0 ? false : _props$defaultCollaps,
|
|
44
|
+
_props$collapsible = props.collapsible,
|
|
45
|
+
collapsible = _props$collapsible === void 0 ? false : _props$collapsible,
|
|
46
|
+
onCollapse = props.onCollapse,
|
|
47
|
+
onLogoClick = props.onLogoClick,
|
|
48
|
+
header = props.header,
|
|
49
|
+
selector = props.selector,
|
|
50
|
+
children = props.children,
|
|
51
|
+
rest = __rest(props, ["className", "prefixCls", "items", "collapsed", "defaultCollapsed", "collapsible", "onCollapse", "onLogoClick", "header", "selector", "children"]);
|
|
52
|
+
var classes = (0, _classnames["default"])(prefixCls);
|
|
53
|
+
var _useControlledState = (0, _hooks.useControlledState)(defaultCollapsed, controlledCollapsed),
|
|
54
|
+
_useControlledState2 = (0, _slicedToArray2["default"])(_useControlledState, 2),
|
|
55
|
+
collapsed = _useControlledState2[0],
|
|
56
|
+
setCollapsed = _useControlledState2[1];
|
|
57
|
+
var collapsedRef = (0, _hooks.useLatest)(collapsed);
|
|
58
|
+
var handleCollapse = (0, _hooks.useEventCallback)(function (value) {
|
|
59
|
+
setCollapsed(value);
|
|
60
|
+
onCollapse === null || onCollapse === void 0 ? void 0 : onCollapse(value);
|
|
61
|
+
});
|
|
62
|
+
(0, _react.useImperativeHandle)(ref, function () {
|
|
63
|
+
return {
|
|
64
|
+
toggle: function toggle() {
|
|
65
|
+
return handleCollapse(!collapsedRef.current);
|
|
66
|
+
},
|
|
67
|
+
collapse: handleCollapse
|
|
68
|
+
};
|
|
69
|
+
}, [handleCollapse]);
|
|
70
|
+
var handleToggleCollapse = (0, _hooks.useEventCallback)(function () {
|
|
71
|
+
handleCollapse(!collapsed);
|
|
72
|
+
});
|
|
73
|
+
return (0, _jsxRuntime.jsxs)("nav", Object.assign({
|
|
74
|
+
className: classes(void 0, (0, _classnames.joinCls)(collapsed && classes('collapsed'), className))
|
|
75
|
+
}, rest, {
|
|
76
|
+
children: [(0, _jsxRuntime.jsx)("div", {
|
|
77
|
+
className: classes('header'),
|
|
78
|
+
children: header !== undefined ? header : (0, _jsxRuntime.jsx)(_NavigationLogo["default"], {
|
|
79
|
+
collapsed: collapsed,
|
|
80
|
+
onClick: onLogoClick
|
|
81
|
+
})
|
|
82
|
+
}), selector && (0, _jsxRuntime.jsx)("div", {
|
|
83
|
+
className: classes('selector'),
|
|
84
|
+
children: selector
|
|
85
|
+
}), (0, _jsxRuntime.jsxs)("div", {
|
|
86
|
+
className: classes('nav'),
|
|
87
|
+
children: [(0, _jsxRuntime.jsx)("div", {
|
|
88
|
+
className: classes('menu'),
|
|
89
|
+
children: items.filter(function (item) {
|
|
90
|
+
return !item.hidden;
|
|
91
|
+
}).map(function (item, index) {
|
|
92
|
+
var _a;
|
|
93
|
+
return (0, _jsxRuntime.jsx)(NavigationMenuItem, {
|
|
94
|
+
item: item,
|
|
95
|
+
prefixCls: prefixCls,
|
|
96
|
+
collapsed: collapsed
|
|
97
|
+
}, (_a = item.key) !== null && _a !== void 0 ? _a : index);
|
|
98
|
+
})
|
|
99
|
+
}), collapsible && (0, _jsxRuntime.jsx)("button", {
|
|
100
|
+
className: classes('collapse-toggle'),
|
|
101
|
+
onClick: handleToggleCollapse,
|
|
102
|
+
type: "button",
|
|
103
|
+
children: (0, _jsxRuntime.jsx)(_Icons.Icons, {
|
|
104
|
+
name: collapsed ? 'extend' : 'collapse',
|
|
105
|
+
size: COLLAPSE_ICON_SIZE
|
|
106
|
+
})
|
|
107
|
+
})]
|
|
108
|
+
}), children && (0, _jsxRuntime.jsx)("div", {
|
|
109
|
+
className: classes('settings'),
|
|
110
|
+
children: children
|
|
111
|
+
})]
|
|
112
|
+
}));
|
|
113
|
+
});
|
|
114
|
+
Navigation.displayName = 'Navigation';
|
|
115
|
+
var NavigationMenuItem = function NavigationMenuItem(_ref) {
|
|
116
|
+
var item = _ref.item,
|
|
117
|
+
prefixCls = _ref.prefixCls,
|
|
118
|
+
collapsed = _ref.collapsed;
|
|
119
|
+
var label = item.label,
|
|
120
|
+
icon = item.icon,
|
|
121
|
+
suffix = item.suffix,
|
|
122
|
+
link = item.link,
|
|
123
|
+
active = item.active,
|
|
124
|
+
disabled = item.disabled,
|
|
125
|
+
onClick = item.onClick,
|
|
126
|
+
children = item.children,
|
|
127
|
+
defaultOpen = item.defaultOpen,
|
|
128
|
+
onOpenChange = item.onOpenChange;
|
|
129
|
+
var classes = (0, _classnames["default"])(prefixCls);
|
|
130
|
+
var _useState = (0, _react.useState)(defaultOpen !== null && defaultOpen !== void 0 ? defaultOpen : false),
|
|
131
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
132
|
+
open = _useState2[0],
|
|
133
|
+
setOpen = _useState2[1];
|
|
134
|
+
var handleClick = (0, _hooks.useMemoizedFn)(function (e) {
|
|
135
|
+
if (disabled) return;
|
|
136
|
+
if (children === null || children === void 0 ? void 0 : children.length) {
|
|
137
|
+
var next = !open;
|
|
138
|
+
setOpen(next);
|
|
139
|
+
onOpenChange === null || onOpenChange === void 0 ? void 0 : onOpenChange(next);
|
|
140
|
+
}
|
|
141
|
+
onClick === null || onClick === void 0 ? void 0 : onClick(e);
|
|
142
|
+
});
|
|
143
|
+
var hasChildren = children && children.length > 0;
|
|
144
|
+
var visibleChildren = children === null || children === void 0 ? void 0 : children.filter(function (child) {
|
|
145
|
+
return !child.hidden;
|
|
146
|
+
});
|
|
147
|
+
var childActive = hasChildren && children.some(function (child) {
|
|
148
|
+
return child.active;
|
|
149
|
+
});
|
|
150
|
+
var renderIcon = function renderIcon(itemIcon) {
|
|
151
|
+
if (!itemIcon) return null;
|
|
152
|
+
if (isIconName(itemIcon)) {
|
|
153
|
+
return (0, _jsxRuntime.jsx)(_Icons.Icons, {
|
|
154
|
+
name: itemIcon,
|
|
155
|
+
size: ICON_SIZE
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
return itemIcon;
|
|
159
|
+
};
|
|
160
|
+
var wrapWithLink = function wrapWithLink(content, itemLink) {
|
|
161
|
+
if (!itemLink) return content;
|
|
162
|
+
if (typeof itemLink === 'string') {
|
|
163
|
+
return (0, _jsxRuntime.jsx)("a", {
|
|
164
|
+
href: itemLink,
|
|
165
|
+
className: classes('item-link'),
|
|
166
|
+
children: content
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
if (/*#__PURE__*/(0, _react.isValidElement)(itemLink)) {
|
|
170
|
+
return /*#__PURE__*/(0, _react.cloneElement)(itemLink, {
|
|
171
|
+
children: content
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
return content;
|
|
175
|
+
};
|
|
176
|
+
if (collapsed) {
|
|
177
|
+
var collapsedContent = (0, _jsxRuntime.jsxs)("button", {
|
|
178
|
+
className: classes('collapsed-item', (0, _classnames.joinCls)((active || childActive) && classes('collapsed-item-active'), disabled && classes('collapsed-item-disabled'))),
|
|
179
|
+
onClick: hasChildren ? undefined : handleClick,
|
|
180
|
+
disabled: disabled,
|
|
181
|
+
type: "button",
|
|
182
|
+
children: [icon && (0, _jsxRuntime.jsx)("span", {
|
|
183
|
+
className: classes('collapsed-item-icon'),
|
|
184
|
+
children: renderIcon(icon)
|
|
185
|
+
}), (0, _jsxRuntime.jsx)(_Typography.Typography.Label, {
|
|
186
|
+
size: "xs",
|
|
187
|
+
as: "span",
|
|
188
|
+
className: classes('collapsed-item-label'),
|
|
189
|
+
children: label
|
|
190
|
+
})]
|
|
191
|
+
});
|
|
192
|
+
if (hasChildren && (visibleChildren === null || visibleChildren === void 0 ? void 0 : visibleChildren.length)) {
|
|
193
|
+
return (0, _jsxRuntime.jsx)(_Trigger.Trigger, {
|
|
194
|
+
trigger: "click",
|
|
195
|
+
placement: "right-start",
|
|
196
|
+
offset: 10,
|
|
197
|
+
overlayClassName: classes('collapsed-submenu-panel'),
|
|
198
|
+
content: function content(_ref2) {
|
|
199
|
+
var close = _ref2.close;
|
|
200
|
+
return (0, _jsxRuntime.jsx)("div", {
|
|
201
|
+
className: classes('collapsed-submenu'),
|
|
202
|
+
children: visibleChildren.map(function (child, index) {
|
|
203
|
+
var _a, _b;
|
|
204
|
+
var childContent = (0, _jsxRuntime.jsxs)("button", {
|
|
205
|
+
className: classes('collapsed-submenu-item', (0, _classnames.joinCls)(child.active && classes('collapsed-submenu-item-active'), child.disabled && classes('collapsed-submenu-item-disabled'))),
|
|
206
|
+
onClick: function onClick(e) {
|
|
207
|
+
var _a;
|
|
208
|
+
if (!child.disabled) {
|
|
209
|
+
(_a = child.onClick) === null || _a === void 0 ? void 0 : _a.call(child, e);
|
|
210
|
+
close();
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
disabled: child.disabled,
|
|
214
|
+
type: "button",
|
|
215
|
+
children: [child.icon && (0, _jsxRuntime.jsx)("span", {
|
|
216
|
+
className: classes('item-icon'),
|
|
217
|
+
children: renderIcon(child.icon)
|
|
218
|
+
}), (0, _jsxRuntime.jsx)(_Typography.Typography.Title, {
|
|
219
|
+
size: "sm",
|
|
220
|
+
as: "div",
|
|
221
|
+
className: classes('item-label'),
|
|
222
|
+
children: child.label
|
|
223
|
+
}), child.suffix && (0, _jsxRuntime.jsx)("span", {
|
|
224
|
+
className: classes('item-suffix'),
|
|
225
|
+
children: child.suffix
|
|
226
|
+
})]
|
|
227
|
+
}, (_a = child.key) !== null && _a !== void 0 ? _a : index);
|
|
228
|
+
return (0, _jsxRuntime.jsxs)("div", {
|
|
229
|
+
children: [index > 0 && (0, _jsxRuntime.jsx)("div", {
|
|
230
|
+
className: classes('collapsed-submenu-divider')
|
|
231
|
+
}), child.link ? wrapWithLink(childContent, child.link) : childContent]
|
|
232
|
+
}, (_b = child.key) !== null && _b !== void 0 ? _b : index);
|
|
233
|
+
})
|
|
234
|
+
});
|
|
235
|
+
},
|
|
236
|
+
children: collapsedContent
|
|
237
|
+
});
|
|
238
|
+
}
|
|
239
|
+
return link ? wrapWithLink(collapsedContent, link) : collapsedContent;
|
|
240
|
+
}
|
|
241
|
+
return (0, _jsxRuntime.jsxs)("div", {
|
|
242
|
+
className: classes('item-wrapper'),
|
|
243
|
+
children: [function () {
|
|
244
|
+
var itemContent = (0, _jsxRuntime.jsxs)("button", {
|
|
245
|
+
className: classes('item', (0, _classnames.joinCls)(hasChildren && classes('item-expandable'), active && classes('item-active'), disabled && classes('item-disabled'))),
|
|
246
|
+
onClick: handleClick,
|
|
247
|
+
disabled: disabled,
|
|
248
|
+
type: "button",
|
|
249
|
+
children: [(0, _jsxRuntime.jsxs)("div", {
|
|
250
|
+
className: classes('item-content'),
|
|
251
|
+
children: [icon && (0, _jsxRuntime.jsx)("span", {
|
|
252
|
+
className: classes('item-icon'),
|
|
253
|
+
children: renderIcon(icon)
|
|
254
|
+
}), (0, _jsxRuntime.jsx)(_Typography.Typography.Title, {
|
|
255
|
+
size: "sm",
|
|
256
|
+
as: "div",
|
|
257
|
+
className: classes('item-label'),
|
|
258
|
+
children: label
|
|
259
|
+
}), suffix && (0, _jsxRuntime.jsx)("span", {
|
|
260
|
+
className: classes('item-suffix'),
|
|
261
|
+
children: suffix
|
|
262
|
+
})]
|
|
263
|
+
}), hasChildren && (0, _jsxRuntime.jsx)("span", {
|
|
264
|
+
className: classes('item-arrow', (0, _classnames.joinCls)(open && classes('item-arrow-open'))),
|
|
265
|
+
children: (0, _jsxRuntime.jsx)(_Icons.Icons, {
|
|
266
|
+
name: "chevronDown",
|
|
267
|
+
size: CHEVRON_SIZE
|
|
268
|
+
})
|
|
269
|
+
})]
|
|
270
|
+
});
|
|
271
|
+
return link && !hasChildren ? wrapWithLink(itemContent, link) : itemContent;
|
|
272
|
+
}(), hasChildren && (0, _jsxRuntime.jsx)("div", {
|
|
273
|
+
className: classes('submenu', (0, _classnames.joinCls)(open && classes('submenu-open'))),
|
|
274
|
+
children: (0, _jsxRuntime.jsx)("div", {
|
|
275
|
+
className: classes('submenu-inner'),
|
|
276
|
+
children: visibleChildren === null || visibleChildren === void 0 ? void 0 : visibleChildren.map(function (child, index) {
|
|
277
|
+
var _a;
|
|
278
|
+
var childContent = (0, _jsxRuntime.jsx)("button", {
|
|
279
|
+
className: classes('submenu-item', (0, _classnames.joinCls)(child.active && classes('submenu-item-active'), child.disabled && classes('submenu-item-disabled'))),
|
|
280
|
+
onClick: function onClick(e) {
|
|
281
|
+
var _a;
|
|
282
|
+
if (!child.disabled) (_a = child.onClick) === null || _a === void 0 ? void 0 : _a.call(child, e);
|
|
283
|
+
},
|
|
284
|
+
disabled: child.disabled,
|
|
285
|
+
type: "button",
|
|
286
|
+
children: (0, _jsxRuntime.jsxs)("div", {
|
|
287
|
+
className: classes('item-content'),
|
|
288
|
+
children: [child.icon && (0, _jsxRuntime.jsx)("span", {
|
|
289
|
+
className: classes('item-icon'),
|
|
290
|
+
children: renderIcon(child.icon)
|
|
291
|
+
}), (0, _jsxRuntime.jsx)(_Typography.Typography.Title, {
|
|
292
|
+
size: "sm",
|
|
293
|
+
as: "div",
|
|
294
|
+
className: classes('item-label'),
|
|
295
|
+
children: child.label
|
|
296
|
+
}), child.suffix && (0, _jsxRuntime.jsx)("span", {
|
|
297
|
+
className: classes('item-suffix'),
|
|
298
|
+
children: child.suffix
|
|
299
|
+
})]
|
|
300
|
+
})
|
|
301
|
+
}, (_a = child.key) !== null && _a !== void 0 ? _a : index);
|
|
302
|
+
return child.link ? wrapWithLink(childContent, child.link) : childContent;
|
|
303
|
+
})
|
|
304
|
+
})
|
|
305
|
+
})]
|
|
306
|
+
});
|
|
307
|
+
};
|
|
308
|
+
var _default = exports["default"] = /*#__PURE__*/(0, _react.memo)(Navigation);
|
|
309
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvTmF2aWdhdGlvbi9OYXZpZ2F0aW9uLmpzIiwiY29tcG9uZW50cy9zcmMvY29tcG9uZW50cy9OYXZpZ2F0aW9uL05hdmlnYXRpb24udHN4Il0sIm5hbWVzIjpbIl9qc3hSdW50aW1lIiwicmVxdWlyZSIsIl9yZWFjdCIsIl9jbGFzc25hbWVzIiwiX2ludGVyb3BSZXF1aXJlV2lsZGNhcmQiLCJfaG9va3MiLCJfSWNvbnMiLCJfVHlwb2dyYXBoeSIsIl9UcmlnZ2VyIiwiX05hdmlnYXRpb25Mb2dvIiwiX2ludGVyb3BSZXF1aXJlRGVmYXVsdCIsIl9nZXRSZXF1aXJlV2lsZGNhcmRDYWNoZSIsImUiLCJXZWFrTWFwIiwiciIsInQiLCJfX2VzTW9kdWxlIiwiX3R5cGVvZiIsImhhcyIsImdldCIsIm4iLCJfX3Byb3RvX18iLCJhIiwiT2JqZWN0IiwiZGVmaW5lUHJvcGVydHkiLCJnZXRPd25Qcm9wZXJ0eURlc2NyaXB0b3IiLCJ1IiwiaGFzT3duUHJvcGVydHkiLCJjYWxsIiwiaSIsInNldCIsIl9fcmVzdCIsInMiLCJwIiwicHJvdG90eXBlIiwiaW5kZXhPZiIsImdldE93blByb3BlcnR5U3ltYm9scyIsImxlbmd0aCIsInByb3BlcnR5SXNFbnVtZXJhYmxlIiwiSUNPTl9TSVpFIiwiQ0hFVlJPTl9TSVpFIiwiQ09MTEFQU0VfSUNPTl9TSVpFIiwiaXNJY29uTmFtZSIsImljb24iLCJOYXZpZ2F0aW9uIiwiZXhwb3J0cyIsImZvcndhcmRSZWYiLCJwcm9wcyIsInJlZiIsIl9wcm9wcyRjbGFzc05hbWUiLCJjbGFzc05hbWUiLCJfcHJvcHMkcHJlZml4Q2xzIiwicHJlZml4Q2xzIiwiaXRlbXMiLCJjb250cm9sbGVkQ29sbGFwc2VkIiwiY29sbGFwc2VkIiwiX3Byb3BzJGRlZmF1bHRDb2xsYXBzIiwiZGVmYXVsdENvbGxhcHNlZCIsIl9wcm9wcyRjb2xsYXBzaWJsZSIsImNvbGxhcHNpYmxlIiwib25Db2xsYXBzZSIsIm9uTG9nb0NsaWNrIiwiaGVhZGVyIiwic2VsZWN0b3IiLCJjaGlsZHJlbiIsInJlc3QiLCJjbGFzc2VzIiwiY2xhc3NuYW1lcyIsIl91c2VDb250cm9sbGVkU3RhdGUiLCJ1c2VDb250cm9sbGVkU3RhdGUiLCJfdXNlQ29udHJvbGxlZFN0YXRlMiIsIl9zbGljZWRUb0FycmF5MiIsInNldENvbGxhcHNlZCIsImNvbGxhcHNlZFJlZiIsInVzZUxhdGVzdCIsImhhbmRsZUNvbGxhcHNlIiwidXNlRXZlbnRDYWxsYmFjayIsInZhbHVlIiwidXNlSW1wZXJhdGl2ZUhhbmRsZSIsInRvZ2dsZSIsImN1cnJlbnQiLCJjb2xsYXBzZSIsImhhbmRsZVRvZ2dsZUNvbGxhcHNlIiwiX2pzeHMiLCJhc3NpZ24iLCJqb2luQ2xzIiwiX2pzeCIsInVuZGVmaW5lZCIsIk5hdmlnYXRpb25Mb2dvIiwib25DbGljayIsImZpbHRlciIsIml0ZW0iLCJoaWRkZW4iLCJtYXAiLCJpbmRleCIsIl9hIiwiTmF2aWdhdGlvbk1lbnVJdGVtIiwia2V5IiwidHlwZSIsIkljb25zIiwibmFtZSIsInNpemUiLCJkaXNwbGF5TmFtZSIsIl9yZWYiLCJsYWJlbCIsInN1ZmZpeCIsImxpbmsiLCJhY3RpdmUiLCJkaXNhYmxlZCIsImRlZmF1bHRPcGVuIiwib25PcGVuQ2hhbmdlIiwiX3VzZVN0YXRlIiwidXNlU3RhdGUiLCJfdXNlU3RhdGUyIiwib3BlbiIsInNldE9wZW4iLCJoYW5kbGVDbGljayIsInVzZU1lbW9pemVkRm4iLCJuZXh0IiwiaGFzQ2hpbGRyZW4iLCJ2aXNpYmxlQ2hpbGRyZW4iLCJjaGlsZCIsImNoaWxkQWN0aXZlIiwic29tZSIsInJlbmRlckljb24iLCJpdGVtSWNvbiIsIndyYXBXaXRoTGluayIsImNvbnRlbnQiLCJpdGVtTGluayIsImhyZWYiLCJpc1ZhbGlkRWxlbWVudCIsImNsb25lRWxlbWVudCIsImNvbGxhcHNlZENvbnRlbnQiLCJUeXBvZ3JhcGh5IiwiTGFiZWwiLCJhcyIsIlRyaWdnZXIiLCJ0cmlnZ2VyIiwicGxhY2VtZW50Iiwib2Zmc2V0Iiwib3ZlcmxheUNsYXNzTmFtZSIsIl9yZWYyIiwiY2xvc2UiLCJfYiIsImNoaWxkQ29udGVudCIsIlRpdGxlIiwiaXRlbUNvbnRlbnQiLCJfZGVmYXVsdCIsIm1lbW8iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQVdBLElBQUFBLFdBQUEsR0FBQUMsT0FBQTtBQ1hBLElBQUFDLE1BQUEsR0FBQUQsT0FBQTtBQUNBLElBQUFFLFdBQUEsR0FBQUMsdUJBQUEsQ0FBQUgsT0FBQTtBQUNBLElBQUFJLE1BQUEsR0FBQUosT0FBQTtBQUNBLElBQUFLLE1BQUEsR0FBQUwsT0FBQTtBQUNBLElBQUFNLFdBQUEsR0FBQU4sT0FBQTtBQUNBLElBQUFPLFFBQUEsR0FBQVAsT0FBQTtBQUNBLElBQUFRLGVBQUEsR0FBQUMsc0JBQUEsQ0FBQVQsT0FBQTtBQUlBQSxPQUFBO0FBQWlCLFNBQUFVLHlCQUFBQyxDQUFBLDZCQUFBQyxPQUFBLG1CQUFBQyxDQUFBLE9BQUFELE9BQUEsSUFBQUUsQ0FBQSxPQUFBRixPQUFBLFlBQUFGLHdCQUFBLFlBQUFBLHlCQUFBQyxDQUFBLFdBQUFBLENBQUEsR0FBQUcsQ0FBQSxHQUFBRCxDQUFBLEtBQUFGLENBQUE7QUFBQSxTQUFBUix3QkFBQVEsQ0FBQSxFQUFBRSxDQUFBLFNBQUFBLENBQUEsSUFBQUYsQ0FBQSxJQUFBQSxDQUFBLENBQUFJLFVBQUEsU0FBQUosQ0FBQSxlQUFBQSxDQUFBLGdCQUFBSyxPQUFBLENBQUFMLENBQUEsMEJBQUFBLENBQUEsc0JBQUFBLENBQUEsUUFBQUcsQ0FBQSxHQUFBSix3QkFBQSxDQUFBRyxDQUFBLE9BQUFDLENBQUEsSUFBQUEsQ0FBQSxDQUFBRyxHQUFBLENBQUFOLENBQUEsVUFBQUcsQ0FBQSxDQUFBSSxHQUFBLENBQUFQLENBQUEsT0FBQVEsQ0FBQSxLQUFBQyxTQUFBLFVBQUFDLENBQUEsR0FBQUMsTUFBQSxDQUFBQyxjQUFBLElBQUFELE1BQUEsQ0FBQUUsd0JBQUEsV0FBQUMsQ0FBQSxJQUFBZCxDQUFBLG9CQUFBYyxD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RXZCLEtBQUssQ0FBQ2YsSUFBSSxDQUFDLEdBQUdzQyxZQUFZO1FBQzNFLENBQUM7TUFBQyxDQUFBO0lBQ0ksQ0FBQSxDQUVUO0VBQUEsQ0FBQSxDQUNHO0FBRVYsQ0FBQztBQUFDLElBQUFHLFFBQUEsR0FBQXRHLE9BQUEsMkJBRWEsSUFBQXVHLFdBQUksRUFBQ3hHLFVBQVUsQ0FBQyIsImZpbGUiOiJjb21wb25lbnRzL05hdmlnYXRpb24vTmF2aWdhdGlvbi5qcyIsInNvdXJjZXNDb250ZW50IjpbInZhciBfX3Jlc3QgPSAodGhpcyAmJiB0aGlzLl9fcmVzdCkgfHwgZnVuY3Rpb24gKHMsIGUpIHtcbiAgICB2YXIgdCA9IHt9O1xuICAgIGZvciAodmFyIHAgaW4gcykgaWYgKE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbChzLCBwKSAmJiBlLmluZGV4T2YocCkgPCAwKVxuICAgICAgICB0W3BdID0gc1twXTtcbiAgICBpZiAocyAhPSBudWxsICYmIHR5cGVvZiBPYmplY3QuZ2V0T3duUHJvcGVydHlTeW1ib2xzID09PSBcImZ1bmN0aW9uXCIpXG4gICAgICAgIGZvciAodmFyIGkgPSAwLCBwID0gT2JqZWN0LmdldE93blByb3BlcnR5U3ltYm9scyhzKTsgaSA8IHAubGVuZ3RoOyBpKyspIHtcbiAgICAgICAgICAgIGlmIChlLmluZGV4T2YocFtpXSkgPCAwICYmIE9iamVjdC5wcm90b3R5cGUucHJvcGVydHlJc0VudW1lcmFibGUuY2FsbChzLCBwW2ldKSlcbiAgICAgICAgICAgICAgICB0W3BbaV1dID0gc1twW2ldXTtcbiAgICAgICAgfVxuICAgIHJldHVybiB0O1xufTtcbmltcG9ydCB7IGpzeCBhcyBfanN4LCBqc3hzIGFzIF9qc3hzIH0gZnJvbSBcInJlYWN0L2pzeC1ydW50aW1lXCI7XG5pbXBvcnQgeyBtZW1vLCB1c2VTdGF0ZSwgZm9yd2FyZFJlZiwgdXNlSW1wZXJhdGl2ZUhhbmRsZSwgY2xvbmVFbGVtZW50LCBpc1ZhbGlkRWxlbWVudCB9IGZyb20gJ3JlYWN0JztcbmltcG9ydCB7IGRlZmF1bHQgYXMgY2xhc3NuYW1lcywgam9pbkNscyB9IGZyb20gJy4uLy4uL3V0aWxzL2NsYXNzbmFtZXMnO1xuaW1wb3J0IHsgdXNlQ29udHJvbGxlZFN0YXRlLCB1c2VFdmVudENhbGxiYWNrLCB1c2VNZW1vaXplZEZuLCB1c2VMYXRlc3QgfSBmcm9tICdAMW1vbmV5L2hvb2tzJztcbmltcG9ydCB7IEljb25zIH0gZnJvbSAnLi4vSWNvbnMnO1xuaW1wb3J0IHsgVHlwb2dyYXBoeSB9IGZyb20gJy4uL1R5cG9ncmFwaHknO1xuaW1wb3J0IHsgVHJpZ2dlciB9IGZyb20gJy4uL1RyaWdnZXInO1xuaW1wb3J0IE5hdmlnYXRpb25Mb2dvIGZyb20gJy4vTmF2aWdhdGlvbkxvZ28nO1xuaW1wb3J0ICcuL3N0eWxlJztcbmNvbnN0IElDT05fU0laRSA9IDE2O1xuY29uc3QgQ0hFVlJPTl9TSVpFID0gMTY7XG5jb25zdCBDT0xMQVBTRV9JQ09OX1NJWkUgPSAxNjtcbmNvbnN0IGlzSWNvbk5hbWUgPSAoaWNvbikgPT4gdHlwZW9mIGljb24gPT09ICdzdHJpbmcnO1xuZXhwb3J0IGNvbnN0IE5hdmlnYXRpb24gPSBmb3J3YXJkUmVmKChwcm9wcywgcmVmKSA9PiB7XG4gICAgY29uc3QgeyBjbGFzc05hbWUgPSAnJywgcHJlZml4Q2xzID0gJ25hdmlnYXRpb24nLCBpdGVtcywgY29sbGFwc2VkOiBjb250cm9sbGVkQ29sbGFwc2VkLCBkZWZhdWx0Q29sbGFwc2VkID0gZmFsc2UsIGNvbGxhcHNpYmxlID0gZmFsc2UsIG9uQ29sbGFwc2UsIG9uTG9nb0NsaWNrLCBoZWFkZXIsIHNlbGVjdG9yLCBjaGlsZHJlbiB9ID0gcHJvcHMsIHJlc3QgPSBfX3Jlc3QocHJvcHMsIFtcImNsYXNzTmFtZVwiLCBcInByZWZpeENsc1wiLCBcIml0ZW1zXCIsIFwiY29sbGFwc2VkXCIsIFwiZGVmYXVsdENvbGxhcHNlZFwiLCBcImNvbGxhcHNpYmxlXCIsIFwib25Db2xsYXBzZVwiLCBcIm9uTG9nb0NsaWNrXCIsIFwiaGVhZGVyXCIsIFwic2VsZWN0b3JcIiwgXCJjaGlsZHJlblwiXSk7XG4gICAgY29uc3QgY2xhc3NlcyA9IGNsYXNzbmFtZXMocHJlZml4Q2xzKTtcbiAgICBjb25zdCBbY29sbGFwc2VkLCBzZXRDb2xsYXBzZWRdID0gdXNlQ29udHJvbGxlZFN0YXRlKGRlZmF1bHRDb2xsYXBzZWQsIGNvbnRyb2xsZWRDb2xsYXBzZWQpO1xuICAgIGNvbnN0IGNvbGxhcHNlZFJlZiA9IHVzZUxhdGVzdChjb2xsYXBzZWQpO1xuICAgIGNvbnN0IGhhbmRsZUNvbGxhcHNlID0gdXNlRXZlbnRDYWxsYmFjaygodmFsdWUpID0+IHtcbiAgICAgICAgc2V0Q29sbGFwc2VkKHZhbHVlKTtcbiAgICAgICAgb25Db2xsYXBzZSA9PT0gbnVsbCB8fCBvbkNvbGxhcHNlID09PSB2b2lkIDAgPyB2b2lkIDAgOiBvbkNvbGxhcHNlKHZhbHVlKTtcbiAgICB9KTtcbiAgICB1c2VJbXBlcmF0aXZlSGFuZGxlKHJlZiwgKCkgPT4gKHtcbiAgICAgICAgdG9nZ2xlOiAoKSA9PiBoYW5kbGVDb2xsYXBzZSghY29sbGFwc2VkUmVmLmN1cnJlbnQpLFxuICAgICAgICBjb2xsYXBzZTogaGFuZGxlQ29sbGFwc2UsXG4gICAgfSksIFtoYW5kbGVDb2xsYXBzZV0pO1xuICAgIGNvbnN0IGhhbmRsZVRvZ2dsZUNvbGxhcHNlID0gdXNlRXZlbnRDYWxsYmFjaygoKSA9PiB7XG4gICAgICAgIGhhbmRsZUNvbGxhcHNlKCFjb2xsYXBzZWQpO1xuICAgIH0pO1xuICAgIHJldHVybiAoX2pzeHMoXCJuYXZcIiwgT2JqZWN0LmFzc2lnbih7IGNsYXNzTmFtZTogY2xhc3Nlcyh2b2lkIDAsIGpvaW5DbHMoY29sbGFwc2VkICYmIGNsYXNzZXMoJ2NvbGxhcHNlZCcpLCBjbGFzc05hbWUpKSB9LCByZXN0LCB7IGNoaWxkcmVuOiBbX2pzeChcImRpdlwiLCB7IGNsYXNzTmFtZTogY2xhc3NlcygnaGVhZGVyJyksIGNoaWxkcmVuOiBoZWFkZXIgIT09IHVuZGVmaW5lZCA/IGhlYWRlciA6IChfanN4KE5hdmlnYXRpb25Mb2dvLCB7IGNvbGxhcHNlZDogY29sbGFwc2VkLCBvbkNsaWNrOiBvbkxvZ29DbGljayB9KSkgfSksIHNlbGVjdG9yICYmIF9qc3goXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ3NlbGVjdG9yJyksIGNoaWxkcmVuOiBzZWxlY3RvciB9KSwgX2pzeHMoXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ25hdicpLCBjaGlsZHJlbjogW19qc3goXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ21lbnUnKSwgY2hpbGRyZW46IGl0ZW1zLmZpbHRlcihpdGVtID0+ICFpdGVtLmhpZGRlbikubWFwKChpdGVtLCBpbmRleCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZhciBfYTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICByZXR1cm4gKF9qc3goTmF2aWdhdGlvbk1lbnVJdGVtLCB7IGl0ZW06IGl0ZW0sIHByZWZpeENsczogcHJlZml4Q2xzLCBjb2xsYXBzZWQ6IGNvbGxhcHNlZCB9LCAoX2EgPSBpdGVtLmtleSkgIT09IG51bGwgJiYgX2EgIT09IHZvaWQgMCA/IF9hIDogaW5kZXgpKTtcbiAgICAgICAgICAgICAgICAgICAgICAgIH0pIH0pLCBjb2xsYXBzaWJsZSAmJiAoX2pzeChcImJ1dHRvblwiLCB7IGNsYXNzTmFtZTogY2xhc3NlcygnY29sbGFwc2UtdG9nZ2xlJyksIG9uQ2xpY2s6IGhhbmRsZVRvZ2dsZUNvbGxhcHNlLCB0eXBlOiBcImJ1dHRvblwiLCBjaGlsZHJlbjogX2pzeChJY29ucywgeyBuYW1lOiBjb2xsYXBzZWQgPyAnZXh0ZW5kJyA6ICdjb2xsYXBzZScsIHNpemU6IENPTExBUFNFX0lDT05fU0laRSB9KSB9KSldIH0pLCBjaGlsZHJlbiAmJiBfanN4KFwiZGl2XCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdzZXR0aW5ncycpLCBjaGlsZHJlbjogY2hpbGRyZW4gfSldIH0pKSk7XG59KTtcbk5hdmlnYXRpb24uZGlzcGxheU5hbWUgPSAnTmF2aWdhdGlvbic7XG5jb25zdCBOYXZpZ2F0aW9uTWVudUl0ZW0gPSAoeyBpdGVtLCBwcmVmaXhDbHMsIGNvbGxhcHNlZCB9KSA9PiB7XG4gICAgY29uc3QgeyBsYWJlbCwgaWNvbiwgc3VmZml4LCBsaW5rLCBhY3RpdmUsIGRpc2FibGVkLCBvbkNsaWNrLCBjaGlsZHJlbiwgZGVmYXVsdE9wZW4sIG9uT3BlbkNoYW5nZSB9ID0gaXRlbTtcbiAgICBjb25zdCBjbGFzc2VzID0gY2xhc3NuYW1lcyhwcmVmaXhDbHMpO1xuICAgIGNvbnN0IFtvcGVuLCBzZXRPcGVuXSA9IHVzZVN0YXRlKGRlZmF1bHRPcGVuICE9PSBudWxsICYmIGRlZmF1bHRPcGVuICE9PSB2b2lkIDAgPyBkZWZhdWx0T3BlbiA6IGZhbHNlKTtcbiAgICBjb25zdCBoYW5kbGVDbGljayA9IHVzZU1lbW9pemVkRm4oKGUpID0+IHtcbiAgICAgICAgaWYgKGRpc2FibGVkKVxuICAgICAgICAgICAgcmV0dXJuO1xuICAgICAgICBpZiAoY2hpbGRyZW4gPT09IG51bGwgfHwgY2hpbGRyZW4gPT09IHZvaWQgMCA/IHZvaWQgMCA6IGNoaWxkcmVuLmxlbmd0aCkge1xuICAgICAgICAgICAgY29uc3QgbmV4dCA9ICFvcGVuO1xuICAgICAgICAgICAgc2V0T3BlbihuZXh0KTtcbiAgICAgICAgICAgIG9uT3BlbkNoYW5nZSA9PT0gbnVsbCB8fCBvbk9wZW5DaGFuZ2UgPT09IHZvaWQgMCA/IHZvaWQgMCA6IG9uT3BlbkNoYW5nZShuZXh0KTtcbiAgICAgICAgfVxuICAgICAgICBvbkNsaWNrID09PSBudWxsIHx8IG9uQ2xpY2sgPT09IHZvaWQgMCA/IHZvaWQgMCA6IG9uQ2xpY2soZSk7XG4gICAgfSk7XG4gICAgY29uc3QgaGFzQ2hpbGRyZW4gPSBjaGlsZHJlbiAmJiBjaGlsZHJlbi5sZW5ndGggPiAwO1xuICAgIGNvbnN0IHZpc2libGVDaGlsZHJlbiA9IGNoaWxkcmVuID09PSBudWxsIHx8IGNoaWxkcmVuID09PSB2b2lkIDAgPyB2b2lkIDAgOiBjaGlsZHJlbi5maWx0ZXIoY2hpbGQgPT4gIWNoaWxkLmhpZGRlbik7XG4gICAgY29uc3QgY2hpbGRBY3RpdmUgPSBoYXNDaGlsZHJlbiAmJiBjaGlsZHJlbi5zb21lKGNoaWxkID0+IGNoaWxkLmFjdGl2ZSk7XG4gICAgY29uc3QgcmVuZGVySWNvbiA9IChpdGVtSWNvbikgPT4ge1xuICAgICAgICBpZiAoIWl0ZW1JY29uKVxuICAgICAgICAgICAgcmV0dXJuIG51bGw7XG4gICAgICAgIGlmIChpc0ljb25OYW1lKGl0ZW1JY29uKSkge1xuICAgICAgICAgICAgcmV0dXJuIF9qc3goSWNvbnMsIHsgbmFtZTogaXRlbUljb24sIHNpemU6IElDT05fU0laRSB9KTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gaXRlbUljb247XG4gICAgfTtcbiAgICBjb25zdCB3cmFwV2l0aExpbmsgPSAoY29udGVudCwgaXRlbUxpbmspID0+IHtcbiAgICAgICAgaWYgKCFpdGVtTGluaylcbiAgICAgICAgICAgIHJldHVybiBjb250ZW50O1xuICAgICAgICBpZiAodHlwZW9mIGl0ZW1MaW5rID09PSAnc3RyaW5nJykge1xuICAgICAgICAgICAgcmV0dXJuIF9qc3goXCJhXCIsIHsgaHJlZjogaXRlbUxpbmssIGNsYXNzTmFtZTogY2xhc3NlcygnaXRlbS1saW5rJyksIGNoaWxkcmVuOiBjb250ZW50IH0pO1xuICAgICAgICB9XG4gICAgICAgIGlmIChpc1ZhbGlkRWxlbWVudChpdGVtTGluaykpIHtcbiAgICAgICAgICAgIHJldHVybiBjbG9uZUVsZW1lbnQoaXRlbUxpbmssIHtcbiAgICAgICAgICAgICAgICBjaGlsZHJlbjogY29udGVudCxcbiAgICAgICAgICAgIH0pO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiBjb250ZW50O1xuICAgIH07XG4gICAgaWYgKGNvbGxhcHNlZCkge1xuICAgICAgICBjb25zdCBjb2xsYXBzZWRDb250ZW50ID0gKF9qc3hzKFwiYnV0dG9uXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdjb2xsYXBzZWQtaXRlbScsIGpvaW5DbHMoKGFjdGl2ZSB8fCBjaGlsZEFjdGl2ZSkgJiYgY2xhc3NlcygnY29sbGFwc2VkLWl0ZW0tYWN0aXZlJyksIGRpc2FibGVkICYmIGNsYXNzZXMoJ2NvbGxhcHNlZC1pdGVtLWRpc2FibGVkJykpKSwgb25DbGljazogaGFzQ2hpbGRyZW4gPyB1bmRlZmluZWQgOiBoYW5kbGVDbGljaywgZGlzYWJsZWQ6IGRpc2FibGVkLCB0eXBlOiBcImJ1dHRvblwiLCBjaGlsZHJlbjogW2ljb24gJiYgKF9qc3goXCJzcGFuXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdjb2xsYXBzZWQtaXRlbS1pY29uJyksIGNoaWxkcmVuOiByZW5kZXJJY29uKGljb24pIH0pKSwgX2pzeChUeXBvZ3JhcGh5LkxhYmVsLCB7IHNpemU6IFwieHNcIiwgYXM6IFwic3BhblwiLCBjbGFzc05hbWU6IGNsYXNzZXMoJ2NvbGxhcHNlZC1pdGVtLWxhYmVsJyksIGNoaWxkcmVuOiBsYWJlbCB9KV0gfSkpO1xuICAgICAgICBpZiAoaGFzQ2hpbGRyZW4gJiYgKHZpc2libGVDaGlsZHJlbiA9PT0gbnVsbCB8fCB2aXNpYmxlQ2hpbGRyZW4gPT09IHZvaWQgMCA/IHZvaWQgMCA6IHZpc2libGVDaGlsZHJlbi5sZW5ndGgpKSB7XG4gICAgICAgICAgICByZXR1cm4gKF9qc3goVHJpZ2dlciwgeyB0cmlnZ2VyOiBcImNsaWNrXCIsIHBsYWNlbWVudDogXCJyaWdodC1zdGFydFwiLCBvZmZzZXQ6IDEwLCBvdmVybGF5Q2xhc3NOYW1lOiBjbGFzc2VzKCdjb2xsYXBzZWQtc3VibWVudS1wYW5lbCcpLCBjb250ZW50OiAoeyBjbG9zZSB9KSA9PiAoX2pzeChcImRpdlwiLCB7IGNsYXNzTmFtZTogY2xhc3NlcygnY29sbGFwc2VkLXN1Ym1lbnUnKSwgY2hpbGRyZW46IHZpc2libGVDaGlsZHJlbi5tYXAoKGNoaWxkLCBpbmRleCkgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgdmFyIF9hLCBfYjtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbnN0IGNoaWxkQ29udGVudCA9IChfanN4cyhcImJ1dHRvblwiLCB7IGNsYXNzTmFtZTogY2xhc3NlcygnY29sbGFwc2VkLXN1Ym1lbnUtaXRlbScsIGpvaW5DbHMoY2hpbGQuYWN0aXZlICYmIGNsYXNzZXMoJ2NvbGxhcHNlZC1zdWJtZW51LWl0ZW0tYWN0aXZlJyksIGNoaWxkLmRpc2FibGVkICYmIGNsYXNzZXMoJ2NvbGxhcHNlZC1zdWJtZW51LWl0ZW0tZGlzYWJsZWQnKSkpLCBvbkNsaWNrOiAoZSkgPT4ge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB2YXIgX2E7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGlmICghY2hpbGQuZGlzYWJsZWQpIHtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChfYSA9IGNoaWxkLm9uQ2xpY2spID09PSBudWxsIHx8IF9hID09PSB2b2lkIDAgPyB2b2lkIDAgOiBfYS5jYWxsKGNoaWxkLCBlKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsb3NlKCk7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCBkaXNhYmxlZDogY2hpbGQuZGlzYWJsZWQsIHR5cGU6IFwiYnV0dG9uXCIsIGNoaWxkcmVuOiBbY2hpbGQuaWNvbiAmJiAoX2pzeChcInNwYW5cIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0taWNvbicpLCBjaGlsZHJlbjogcmVuZGVySWNvbihjaGlsZC5pY29uKSB9KSksIF9qc3goVHlwb2dyYXBoeS5UaXRsZSwgeyBzaXplOiBcInNtXCIsIGFzOiBcImRpdlwiLCBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0tbGFiZWwnKSwgY2hpbGRyZW46IGNoaWxkLmxhYmVsIH0pLCBjaGlsZC5zdWZmaXggJiYgX2pzeChcInNwYW5cIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0tc3VmZml4JyksIGNoaWxkcmVuOiBjaGlsZC5zdWZmaXggfSldIH0sIChfYSA9IGNoaWxkLmtleSkgIT09IG51bGwgJiYgX2EgIT09IHZvaWQgMCA/IF9hIDogaW5kZXgpKTtcbiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiAoX2pzeHMoXCJkaXZcIiwgeyBjaGlsZHJlbjogW2luZGV4ID4gMCAmJiBfanN4KFwiZGl2XCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdjb2xsYXBzZWQtc3VibWVudS1kaXZpZGVyJykgfSksIGNoaWxkLmxpbmsgPyB3cmFwV2l0aExpbmsoY2hpbGRDb250ZW50LCBjaGlsZC5saW5rKSA6IGNoaWxkQ29udGVudF0gfSwgKF9iID0gY2hpbGQua2V5KSAhPT0gbnVsbCAmJiBfYiAhPT0gdm9pZCAwID8gX2IgOiBpbmRleCkpO1xuICAgICAgICAgICAgICAgICAgICB9KSB9KSksIGNoaWxkcmVuOiBjb2xsYXBzZWRDb250ZW50IH0pKTtcbiAgICAgICAgfVxuICAgICAgICByZXR1cm4gbGluayA/IHdyYXBXaXRoTGluayhjb2xsYXBzZWRDb250ZW50LCBsaW5rKSA6IGNvbGxhcHNlZENvbnRlbnQ7XG4gICAgfVxuICAgIHJldHVybiAoX2pzeHMoXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0td3JhcHBlcicpLCBjaGlsZHJlbjogWygoKSA9PiB7XG4gICAgICAgICAgICAgICAgY29uc3QgaXRlbUNvbnRlbnQgPSAoX2pzeHMoXCJidXR0b25cIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0nLCBqb2luQ2xzKGhhc0NoaWxkcmVuICYmIGNsYXNzZXMoJ2l0ZW0tZXhwYW5kYWJsZScpLCBhY3RpdmUgJiYgY2xhc3NlcygnaXRlbS1hY3RpdmUnKSwgZGlzYWJsZWQgJiYgY2xhc3NlcygnaXRlbS1kaXNhYmxlZCcpKSksIG9uQ2xpY2s6IGhhbmRsZUNsaWNrLCBkaXNhYmxlZDogZGlzYWJsZWQsIHR5cGU6IFwiYnV0dG9uXCIsIGNoaWxkcmVuOiBbX2pzeHMoXCJkaXZcIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0tY29udGVudCcpLCBjaGlsZHJlbjogW2ljb24gJiYgKF9qc3goXCJzcGFuXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdpdGVtLWljb24nKSwgY2hpbGRyZW46IHJlbmRlckljb24oaWNvbikgfSkpLCBfanN4KFR5cG9ncmFwaHkuVGl0bGUsIHsgc2l6ZTogXCJzbVwiLCBhczogXCJkaXZcIiwgY2xhc3NOYW1lOiBjbGFzc2VzKCdpdGVtLWxhYmVsJyksIGNoaWxkcmVuOiBsYWJlbCB9KSwgc3VmZml4ICYmIF9qc3goXCJzcGFuXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdpdGVtLXN1ZmZpeCcpLCBjaGlsZHJlbjogc3VmZml4IH0pXSB9KSwgaGFzQ2hpbGRyZW4gJiYgKF9qc3goXCJzcGFuXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdpdGVtLWFycm93Jywgam9pbkNscyhvcGVuICYmIGNsYXNzZXMoJ2l0ZW0tYXJyb3ctb3BlbicpKSksIGNoaWxkcmVuOiBfanN4KEljb25zLCB7IG5hbWU6IFwiY2hldnJvbkRvd25cIiwgc2l6ZTogQ0hFVlJPTl9TSVpFIH0pIH0pKV0gfSkpO1xuICAgICAgICAgICAgICAgIHJldHVybiBsaW5rICYmICFoYXNDaGlsZHJlbiA/IHdyYXBXaXRoTGluayhpdGVtQ29udGVudCwgbGluaykgOiBpdGVtQ29udGVudDtcbiAgICAgICAgICAgIH0pKCksIGhhc0NoaWxkcmVuICYmIChfanN4KFwiZGl2XCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdzdWJtZW51Jywgam9pbkNscyhvcGVuICYmIGNsYXNzZXMoJ3N1Ym1lbnUtb3BlbicpKSksIGNoaWxkcmVuOiBfanN4KFwiZGl2XCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdzdWJtZW51LWlubmVyJyksIGNoaWxkcmVuOiB2aXNpYmxlQ2hpbGRyZW4gPT09IG51bGwgfHwgdmlzaWJsZUNoaWxkcmVuID09PSB2b2lkIDAgPyB2b2lkIDAgOiB2aXNpYmxlQ2hpbGRyZW4ubWFwKChjaGlsZCwgaW5kZXgpID0+IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHZhciBfYTtcbiAgICAgICAgICAgICAgICAgICAgICAgIGNvbnN0IGNoaWxkQ29udGVudCA9IChfanN4KFwiYnV0dG9uXCIsIHsgY2xhc3NOYW1lOiBjbGFzc2VzKCdzdWJtZW51LWl0ZW0nLCBqb2luQ2xzKGNoaWxkLmFjdGl2ZSAmJiBjbGFzc2VzKCdzdWJtZW51LWl0ZW0tYWN0aXZlJyksIGNoaWxkLmRpc2FibGVkICYmIGNsYXNzZXMoJ3N1Ym1lbnUtaXRlbS1kaXNhYmxlZCcpKSksIG9uQ2xpY2s6IChlKSA9PiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZhciBfYTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgaWYgKCFjaGlsZC5kaXNhYmxlZClcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIChfYSA9IGNoaWxkLm9uQ2xpY2spID09PSBudWxsIHx8IF9hID09PSB2b2lkIDAgPyB2b2lkIDAgOiBfYS5jYWxsKGNoaWxkLCBlKTtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCBkaXNhYmxlZDogY2hpbGQuZGlzYWJsZWQsIHR5cGU6IFwiYnV0dG9uXCIsIGNoaWxkcmVuOiBfanN4cyhcImRpdlwiLCB7IGNsYXNzTmFtZTogY2xhc3NlcygnaXRlbS1jb250ZW50JyksIGNoaWxkcmVuOiBbY2hpbGQuaWNvbiAmJiAoX2pzeChcInNwYW5cIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0taWNvbicpLCBjaGlsZHJlbjogcmVuZGVySWNvbihjaGlsZC5pY29uKSB9KSksIF9qc3goVHlwb2dyYXBoeS5UaXRsZSwgeyBzaXplOiBcInNtXCIsIGFzOiBcImRpdlwiLCBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0tbGFiZWwnKSwgY2hpbGRyZW46IGNoaWxkLmxhYmVsIH0pLCBjaGlsZC5zdWZmaXggJiYgX2pzeChcInNwYW5cIiwgeyBjbGFzc05hbWU6IGNsYXNzZXMoJ2l0ZW0tc3VmZml4JyksIGNoaWxkcmVuOiBjaGlsZC5zdWZmaXggfSldIH0pIH0sIChfYSA9IGNoaWxkLmtleSkgIT09IG51bGwgJiYgX2EgIT09IHZvaWQgMCA/IF9hIDogaW5kZXgpKTtcbiAgICAgICAgICAgICAgICAgICAgICAgIHJldHVybiBjaGlsZC5saW5rID8gd3JhcFdpdGhMaW5rKGNoaWxkQ29udGVudCwgY2hpbGQubGluaykgOiBjaGlsZENvbnRlbnQ7XG4gICAgICAgICAgICAgICAgICAgIH0pIH0pIH0pKV0gfSkpO1xufTtcbmV4cG9ydCBkZWZhdWx0IG1lbW8oTmF2aWdhdGlvbik7IixudWxsXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyJ9
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
|
+
var _Icons = require("../Icons");
|
|
9
|
+
var LOGO_COLLAPSED_SIZE = 24;
|
|
10
|
+
var LOGO_WIDTH = 132;
|
|
11
|
+
var LOGO_HEIGHT = 24;
|
|
12
|
+
var LOGO_COLOR = '#073387';
|
|
13
|
+
var WORD_COLOR = '#131313';
|
|
14
|
+
var NavigationLogo = function NavigationLogo(_ref) {
|
|
15
|
+
var collapsed = _ref.collapsed,
|
|
16
|
+
onClick = _ref.onClick;
|
|
17
|
+
var logo = collapsed ? (0, _jsxRuntime.jsx)(_Icons.Icons, {
|
|
18
|
+
name: "logo",
|
|
19
|
+
size: LOGO_COLLAPSED_SIZE,
|
|
20
|
+
color: LOGO_COLOR
|
|
21
|
+
}) : (0, _jsxRuntime.jsx)(_Icons.Icons, {
|
|
22
|
+
name: "logoWithWords",
|
|
23
|
+
width: LOGO_WIDTH,
|
|
24
|
+
height: LOGO_HEIGHT,
|
|
25
|
+
logoColor: LOGO_COLOR,
|
|
26
|
+
wordColor: WORD_COLOR
|
|
27
|
+
});
|
|
28
|
+
if (onClick) {
|
|
29
|
+
return (0, _jsxRuntime.jsx)("span", {
|
|
30
|
+
role: "button",
|
|
31
|
+
tabIndex: 0,
|
|
32
|
+
onClick: onClick,
|
|
33
|
+
onKeyDown: function onKeyDown(e) {
|
|
34
|
+
if (e.key === 'Enter') onClick(e);
|
|
35
|
+
},
|
|
36
|
+
children: logo
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
return logo;
|
|
40
|
+
};
|
|
41
|
+
var _default = exports["default"] = NavigationLogo;
|
|
42
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvTmF2aWdhdGlvbi9OYXZpZ2F0aW9uTG9nby5qcyIsImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvTmF2aWdhdGlvbi9OYXZpZ2F0aW9uTG9nby50c3giXSwibmFtZXMiOlsiX2pzeFJ1bnRpbWUiLCJyZXF1aXJlIiwiX0ljb25zIiwiTE9HT19DT0xMQVBTRURfU0laRSIsIkxPR09fV0lEVEgiLCJMT0dPX0hFSUdIVCIsIkxPR09fQ09MT1IiLCJXT1JEX0NPTE9SIiwiTmF2aWdhdGlvbkxvZ28iLCJfcmVmIiwiY29sbGFwc2VkIiwib25DbGljayIsImxvZ28iLCJfanN4IiwiSWNvbnMiLCJuYW1lIiwic2l6ZSIsImNvbG9yIiwid2lkdGgiLCJoZWlnaHQiLCJsb2dvQ29sb3IiLCJ3b3JkQ29sb3IiLCJyb2xlIiwidGFiSW5kZXgiLCJvbktleURvd24iLCJlIiwia2V5IiwiY2hpbGRyZW4iLCJfZGVmYXVsdCIsImV4cG9ydHMiXSwibWFwcGluZ3MiOiI7Ozs7OztBQUFBLElBQUFBLFdBQUEsR0FBQUMsT0FBQTtBQ0FBLElBQUFDLE1BQUEsR0FBQUQsT0FBQTtBQUdBLElBQU1FLG1CQUFtQixHQUFHLEVBQUU7QUFDOUIsSUFBTUMsVUFBVSxHQUFHLEdBQUc7QUFDdEIsSUFBTUMsV0FBVyxHQUFHLEVBQUU7QUFDdEIsSUFBTUMsVUFBVSxHQUFHLFNBQVM7QUFDNUIsSUFBTUMsVUFBVSxHQUFHLFNBQVM7QUFPNUIsSUFBTUMsY0FBYyxHQUE0QixTQUExQ0EsY0FBY0EsQ0FBQUMsSUFBQSxFQUF1RDtFQUFBLElBQXhCQyxTQUFTLEdBQUFELElBQUEsQ0FBVEMsU0FBUztJQUFFQyxPQUFPLEdBQUFGLElBQUEsQ0FBUEUsT0FBTztFQUNuRSxJQUFNQyxJQUFJLEdBQUdGLFNBQVMsR0FDbEIsSUFBQUcsZUFBQSxFQUFDQyxZQUFLLEVBQUE7SUFBQ0MsSUFBSSxFQUFDLE1BQU07SUFBQ0MsSUFBSSxFQUFFYixtQkFBbUI7SUFBRWMsS0FBSyxFQUFFWDtFQUFVLENBQUEsQ0FBSSxHQUNuRSxJQUFBTyxlQUFBLEVBQUNDLFlBQUssRUFBQTtJQUFDQyxJQUFJLEVBQUMsZUFBZTtJQUFDRyxLQUFLLEVBQUVkLFVBQVU7SUFBRWUsTUFBTSxFQUFFZCxXQUFXO0lBQUVlLFNBQVMsRUFBRWQsVUFBVTtJQUFFZSxTQUFTLEVBQUVkO0VBQVUsQ0FBQSxDQUFJO0VBRXhILElBQUlJLE9BQU8sRUFBRTtJQUNYLE9BQ0UsSUFBQUUsZUFBQSxFQUFBLE1BQUEsRUFBQTtNQUFNUyxJQUFJLEVBQUMsUUFBUTtNQUFDQyxRQUFRLEVBQUUsQ0FBQztNQUFFWixPQUFPLEVBQUVBLE9BQU87TUFBRWEsU0FBUyxFQUFFLFNBQVhBLFNBQVNBLENBQUdDLENBQUMsRUFBSTtRQUFHLElBQUlBLENBQUMsQ0FBQ0MsR0FBRyxLQUFLLE9BQU8sRUFBRWYsT0FBTyxDQUFDYyxDQUF1QyxDQUFDO01BQUUsQ0FBQztNQUFBRSxRQUFBLEVBQzlJZjtJQUFJLENBQUEsQ0FDQTtFQUVYO0VBRUEsT0FBT0EsSUFBSTtBQUNiLENBQUM7QUFBQyxJQUFBZ0IsUUFBQSxHQUFBQyxPQUFBLGNBRWFyQixjQUFjIiwiZmlsZSI6ImNvbXBvbmVudHMvTmF2aWdhdGlvbi9OYXZpZ2F0aW9uTG9nby5qcyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IGpzeCBhcyBfanN4IH0gZnJvbSBcInJlYWN0L2pzeC1ydW50aW1lXCI7XG5pbXBvcnQgeyBJY29ucyB9IGZyb20gJy4uL0ljb25zJztcbmNvbnN0IExPR09fQ09MTEFQU0VEX1NJWkUgPSAyNDtcbmNvbnN0IExPR09fV0lEVEggPSAxMzI7XG5jb25zdCBMT0dPX0hFSUdIVCA9IDI0O1xuY29uc3QgTE9HT19DT0xPUiA9ICcjMDczMzg3JztcbmNvbnN0IFdPUkRfQ09MT1IgPSAnIzEzMTMxMyc7XG5jb25zdCBOYXZpZ2F0aW9uTG9nbyA9ICh7IGNvbGxhcHNlZCwgb25DbGljayB9KSA9PiB7XG4gICAgY29uc3QgbG9nbyA9IGNvbGxhcHNlZFxuICAgICAgICA/IF9qc3goSWNvbnMsIHsgbmFtZTogXCJsb2dvXCIsIHNpemU6IExPR09fQ09MTEFQU0VEX1NJWkUsIGNvbG9yOiBMT0dPX0NPTE9SIH0pXG4gICAgICAgIDogX2pzeChJY29ucywgeyBuYW1lOiBcImxvZ29XaXRoV29yZHNcIiwgd2lkdGg6IExPR09fV0lEVEgsIGhlaWdodDogTE9HT19IRUlHSFQsIGxvZ29Db2xvcjogTE9HT19DT0xPUiwgd29yZENvbG9yOiBXT1JEX0NPTE9SIH0pO1xuICAgIGlmIChvbkNsaWNrKSB7XG4gICAgICAgIHJldHVybiAoX2pzeChcInNwYW5cIiwgeyByb2xlOiBcImJ1dHRvblwiLCB0YWJJbmRleDogMCwgb25DbGljazogb25DbGljaywgb25LZXlEb3duOiAoZSkgPT4geyBpZiAoZS5rZXkgPT09ICdFbnRlcicpXG4gICAgICAgICAgICAgICAgb25DbGljayhlKTsgfSwgY2hpbGRyZW46IGxvZ28gfSkpO1xuICAgIH1cbiAgICByZXR1cm4gbG9nbztcbn07XG5leHBvcnQgZGVmYXVsdCBOYXZpZ2F0aW9uTG9nbzsiLG51bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
var _exportNames = {
|
|
8
|
+
Navigation: true,
|
|
9
|
+
Nav: true
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "Nav", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function get() {
|
|
14
|
+
return _Nav.Nav;
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
Object.defineProperty(exports, "Navigation", {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function get() {
|
|
20
|
+
return _Navigation.Navigation;
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
exports["default"] = void 0;
|
|
24
|
+
var _Navigation = _interopRequireWildcard(require("./Navigation"));
|
|
25
|
+
var _Nav = require("./Nav");
|
|
26
|
+
var _interface = require("./interface");
|
|
27
|
+
Object.keys(_interface).forEach(function (key) {
|
|
28
|
+
if (key === "default" || key === "__esModule") return;
|
|
29
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
30
|
+
if (key in exports && exports[key] === _interface[key]) return;
|
|
31
|
+
Object.defineProperty(exports, key, {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function get() {
|
|
34
|
+
return _interface[key];
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
});
|
|
38
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
39
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
40
|
+
var _default = exports["default"] = _Navigation["default"];
|
|
41
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvc3JjL2NvbXBvbmVudHMvTmF2aWdhdGlvbi9pbmRleC50cyJdLCJuYW1lcyI6WyJfTmF2aWdhdGlvbiIsIl9pbnRlcm9wUmVxdWlyZVdpbGRjYXJkIiwicmVxdWlyZSIsIl9OYXYiLCJfaW50ZXJmYWNlIiwiT2JqZWN0Iiwia2V5cyIsImZvckVhY2giLCJrZXkiLCJwcm90b3R5cGUiLCJoYXNPd25Qcm9wZXJ0eSIsImNhbGwiLCJfZXhwb3J0TmFtZXMiLCJleHBvcnRzIiwiZGVmaW5lUHJvcGVydHkiLCJlbnVtZXJhYmxlIiwiZ2V0IiwiX2dldFJlcXVpcmVXaWxkY2FyZENhY2hlIiwiZSIsIldlYWtNYXAiLCJyIiwidCIsIl9fZXNNb2R1bGUiLCJfdHlwZW9mIiwiaGFzIiwibiIsIl9fcHJvdG9fXyIsImEiLCJnZXRPd25Qcm9wZXJ0eURlc2NyaXB0b3IiLCJ1IiwiaSIsInNldCIsIl9kZWZhdWx0IiwiTmF2aWdhdGlvbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSxJQUFBQSxXQUFBLEdBQUFDLHVCQUFBLENBQUFDLE9BQUE7QUFHQSxJQUFBQyxJQUFBLEdBQUFELE9BQUE7QUFJQSxJQUFBRSxVQUFBLEdBQUFGLE9BQUE7QUFBQUcsTUFBQSxDQUFBQyxJQUFBLENBQUFGLFVBQUEsRUFBQUcsT0FBQSxXQUFBQyxHQUFBO0VBQUEsSUFBQUEsR0FBQSxrQkFBQUEsR0FBQTtFQUFBLElBQUFILE1BQUEsQ0FBQUksU0FBQSxDQUFBQyxjQUFBLENBQUFDLElBQUEsQ0FBQUMsWUFBQSxFQUFBSixHQUFBO0VBQUEsSUFBQUEsR0FBQSxJQUFBSyxPQUFBLElBQUFBLE9BQUEsQ0FBQUwsR0FBQSxNQUFBSixVQUFBLENBQUFJLEdBQUE7RUFBQUgsTUFBQSxDQUFBUyxjQUFBLENBQUFELE9BQUEsRUFBQUwsR0FBQTtJQUFBTyxVQUFBO0lBQUFDLEdBQUEsV0FBQUEsSUFBQTtNQUFBLE9BQUFaLFVBQUEsQ0FBQUksR0FBQTtJQUFBO0VBQUE7QUFBQTtBQUE0QixTQUFBUyx5QkFBQUMsQ0FBQSw2QkFBQUMsT0FBQSxtQkFBQUMsQ0FBQSxPQUFBRCxPQUFBLElBQUFFLENBQUEsT0FBQUYsT0FBQSxZQUFBRix3QkFBQSxZQUFBQSx5QkFBQUMsQ0FBQSxXQUFBQSxDQUFBLEdBQUFHLENBQUEsR0FBQUQsQ0FBQSxLQUFBRixDQUFBO0FBQUEsU0FBQWpCLHdCQUFBaUIsQ0FBQSxFQUFBRSxDQUFBLFNBQUFBLENBQUEsSUFBQUYsQ0FBQSxJQUFBQSxDQUFBLENBQUFJLFVBQUEsU0FBQUosQ0FBQSxlQUFBQSxDQUFBLGdCQUFBSyxPQUFBLENBQUFMLENBQUEsMEJBQUFBLENBQUEsc0JBQUFBLENBQUEsUUFBQUcsQ0FBQSxHQUFBSix3QkFBQSxDQUFBRyxDQUFBLE9BQUFDLENBQUEsSUFBQUEsQ0FBQSxDQUFBRyxHQUFBLENBQUFOLENBQUEsVUFBQUcsQ0FBQSxDQUFBTCxHQUFBLENBQUFFLENBQUEsT0FBQU8sQ0FBQSxLQUFBQyxTQUFBLFVBQUFDLENBQUEsR0FBQXRCLE1BQUEsQ0FBQVMsY0FBQSxJQUFBVCxNQUFBLENBQUF1Qix3QkFBQSxXQUFBQyxDQUFBLElBQUFYLENBQUEsb0JBQUFXLENBQUEsT0FBQW5CLGNBQUEsQ0FBQUMsSUFBQSxDQUFBTyxDQUFBLEVBQUFXLENBQUEsU0FBQUMsQ0FBQSxHQUFBSCxDQUFBLEdBQUF0QixNQUFBLENBQUF1Qix3QkFBQSxDQUFBVixDQUFBLEVBQUFXLENBQUEsVUFBQUMsQ0FBQSxLQUFBQSxDQUFBLENBQUFkLEdBQUEsSUFBQWMsQ0FBQSxDQUFBQyxHQUFBLElBQUExQixNQUFBLENBQUFTLGNBQUEsQ0FBQVcsQ0FBQSxFQUFBSSxDQUFBLEVBQUFDLENBQUEsSUFBQUwsQ0FBQSxDQUFBSSxDQUFBLElBQUFYLENBQUEsQ0FBQVcsQ0FBQSxZQUFBSixDQUFBLGNBQUFQLENBQUEsRUFBQUcsQ0FBQSxJQUFBQSxDQUFBLENBQUFVLEdBQUEsQ0FBQWIsQ0FBQSxFQUFBTyxDQUFBLEdBQUFBLENBQUE7QUFBQSxJQUFBTyxRQUFBLEdBQUFuQixPQUFBLGNBRmJvQixzQkFBVSIsImZpbGUiOiJjb21wb25lbnRzL05hdmlnYXRpb24vaW5kZXguanMiLCJzb3VyY2VzQ29udGVudCI6W251bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import type { ReactNode, ReactElement, MouseEvent, RefObject } from 'react';
|
|
2
|
+
export interface NavigationItem {
|
|
3
|
+
/** Unique key for the item */
|
|
4
|
+
key?: string | number;
|
|
5
|
+
/** Display label */
|
|
6
|
+
label: ReactNode;
|
|
7
|
+
/** Icon — accepts IconName string or ReactNode */
|
|
8
|
+
icon?: ReactNode;
|
|
9
|
+
/** Suffix content rendered after the label (e.g., tag/badge) */
|
|
10
|
+
suffix?: ReactNode;
|
|
11
|
+
/** Link component wrapper (e.g., Next.js Link) or URL string */
|
|
12
|
+
link?: string | ReactElement;
|
|
13
|
+
/** Whether this item is currently active */
|
|
14
|
+
active?: boolean;
|
|
15
|
+
/** Whether this item is disabled */
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
/** Whether this item is hidden */
|
|
18
|
+
hidden?: boolean;
|
|
19
|
+
/** Click handler */
|
|
20
|
+
onClick?: (e: MouseEvent<HTMLElement>) => void;
|
|
21
|
+
/** Sub-menu items (Level 2) */
|
|
22
|
+
children?: Omit<NavigationItem, 'children' | 'defaultOpen' | 'onOpenChange'>[];
|
|
23
|
+
/** Whether sub-menu is open by default */
|
|
24
|
+
defaultOpen?: boolean;
|
|
25
|
+
/** Callback when sub-menu open state changes */
|
|
26
|
+
onOpenChange?: (open: boolean) => void;
|
|
27
|
+
}
|
|
28
|
+
export interface NavigationProps {
|
|
29
|
+
/** Ref to the root element */
|
|
30
|
+
ref?: RefObject<HTMLElement | null>;
|
|
31
|
+
/** CSS class prefix */
|
|
32
|
+
prefixCls?: string;
|
|
33
|
+
/** Additional CSS classes */
|
|
34
|
+
className?: string;
|
|
35
|
+
/** Navigation menu items */
|
|
36
|
+
items: NavigationItem[];
|
|
37
|
+
/** Whether the navigation is collapsed */
|
|
38
|
+
collapsed?: boolean;
|
|
39
|
+
/** Default collapsed state (uncontrolled) */
|
|
40
|
+
defaultCollapsed?: boolean;
|
|
41
|
+
/** Whether collapse toggle is shown */
|
|
42
|
+
collapsible?: boolean;
|
|
43
|
+
/** Callback when collapsed state changes */
|
|
44
|
+
onCollapse?: (collapsed: boolean) => void;
|
|
45
|
+
/** Header content — defaults to built-in 1Money logo; pass null to hide */
|
|
46
|
+
header?: ReactNode;
|
|
47
|
+
/** Click handler for the default logo */
|
|
48
|
+
onLogoClick?: (e: MouseEvent<HTMLElement>) => void;
|
|
49
|
+
/** Company selector slot (below header) */
|
|
50
|
+
selector?: ReactNode;
|
|
51
|
+
/** Children rendered at bottom (e.g., settings, profile) */
|
|
52
|
+
children?: ReactNode;
|
|
53
|
+
}
|
|
54
|
+
export interface NavigationHandlers {
|
|
55
|
+
/** Toggle collapsed state */
|
|
56
|
+
toggle: () => void;
|
|
57
|
+
/** Set collapsed state directly */
|
|
58
|
+
collapse: (collapsed: boolean) => void;
|
|
59
|
+
}
|
|
60
|
+
export interface NavItem {
|
|
61
|
+
/** Unique key for the item */
|
|
62
|
+
key?: string | number;
|
|
63
|
+
/** Display label */
|
|
64
|
+
label: ReactNode;
|
|
65
|
+
/** Icon — accepts IconName string or ReactNode */
|
|
66
|
+
icon?: ReactNode;
|
|
67
|
+
/** Suffix content rendered after the label */
|
|
68
|
+
suffix?: ReactNode;
|
|
69
|
+
/** Link component wrapper or URL string */
|
|
70
|
+
link?: string | ReactElement;
|
|
71
|
+
/** Whether this item is currently active */
|
|
72
|
+
active?: boolean;
|
|
73
|
+
/** Whether this item is disabled */
|
|
74
|
+
disabled?: boolean;
|
|
75
|
+
/** Whether this item is hidden */
|
|
76
|
+
hidden?: boolean;
|
|
77
|
+
/** Nested child items — enables recursive multi-level nesting */
|
|
78
|
+
children?: NavItem[];
|
|
79
|
+
/** Whether children are expanded by default */
|
|
80
|
+
defaultOpen?: boolean;
|
|
81
|
+
/** Callback when expand state changes */
|
|
82
|
+
onOpenChange?: (open: boolean) => void;
|
|
83
|
+
/** Click handler */
|
|
84
|
+
onClick?: (e: MouseEvent<HTMLElement>) => void;
|
|
85
|
+
}
|
|
86
|
+
export interface NavProps {
|
|
87
|
+
/** Ref to the root element */
|
|
88
|
+
ref?: RefObject<HTMLElement | null>;
|
|
89
|
+
/** CSS class prefix */
|
|
90
|
+
prefixCls?: string;
|
|
91
|
+
/** Additional CSS classes */
|
|
92
|
+
className?: string;
|
|
93
|
+
/** Navigation items — top-level items with children render as groups */
|
|
94
|
+
items: NavItem[];
|
|
95
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tcG9uZW50cy9OYXZpZ2F0aW9uL2ludGVyZmFjZS5qcyIsIm5hbWVzIjpbXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyIsInNvdXJjZXMiOlsiY29tcG9uZW50cy9OYXZpZ2F0aW9uL2ludGVyZmFjZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQge307Il0sIm1hcHBpbmdzIjoiIiwiaWdub3JlTGlzdCI6W119
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.om-react-ui-nav{display:flex;flex-direction:column;width:280px;height:100%;padding:var(--om-spacing-1000,40px) var(--om-spacing-400,16px) var(--om-spacing-600,24px);background-color:var(--om-bg-default,#fff);border-right:1px solid var(--om-border-neutral,#e3e4e4)}.om-react-ui-nav-content{display:flex;flex:1;flex-direction:column;min-height:0;overflow-y:auto}.om-react-ui-nav-divider{height:1px;background-color:var(--om-border-neutral,#e3e4e4)}.om-react-ui-nav-group{display:flex;flex-direction:column}.om-react-ui-nav-group-header{display:flex;align-items:center;min-height:var(--om-component-height-md,40px);padding:var(--om-spacing-200,8px) var(--om-spacing-400,16px);color:var(--om-text-default-secondary,#404042);border-radius:var(--om-radius-300,12px)}.om-react-ui-nav-group-header-content{display:flex;flex:1;gap:var(--om-spacing-200,8px);align-items:center;min-width:0}.om-react-ui-nav-group-header-icon{display:inline-flex;flex-shrink:0;align-items:center;justify-content:center;color:var(--om-icon-default-secondary,#404042)}.om-react-ui-nav-group-header-label{flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.om-react-ui-nav-group-header .om-react-ui-typography{color:inherit}.om-react-ui-nav-item-wrapper{display:flex;flex-direction:column}.om-react-ui-nav-item{display:flex;gap:var(--om-spacing-600,24px);align-items:center;width:100%;min-height:var(--om-component-height-md,40px);padding:var(--om-spacing-200,8px) var(--om-spacing-400,16px);padding-left:calc(var(--om-spacing-400, 16px) + var(--om-nav-indent, 0) * var(--om-spacing-600, 24px));color:var(--om-text-default-secondary,#404042);background-color:transparent;border:none;border-radius:var(--om-radius-300,12px);cursor:pointer}.om-react-ui-nav-item .om-react-ui-typography{color:inherit}.om-react-ui-nav-item[data-depth="1"]:hover:not(:disabled){color:var(--om-text-brand,#073387)}.om-react-ui-nav-item:not([data-depth="1"]):hover:not(:disabled){color:var(--om-text-default,#131313)}.om-react-ui-nav-item-content{display:flex;flex:1;align-items:center;min-width:0}.om-react-ui-nav-item-label{flex:1;overflow:hidden;white-space:nowrap;text-align:left;text-overflow:ellipsis}.om-react-ui-nav-item-suffix{flex-shrink:0}.om-react-ui-nav-item-arrow{display:inline-flex;flex-shrink:0;align-items:center;color:var(--om-icon-default-secondary,#404042);transition:transform .2s ease-in-out}.om-react-ui-nav-item-arrow-open{transform:rotate(-180deg)}.om-react-ui-nav-item-link{display:flex;color:inherit;text-decoration:none}.om-react-ui-nav-item-active{color:var(--om-text-brand,#073387)}.om-react-ui-nav-item-disabled{cursor:not-allowed}.om-react-ui-nav-item-disabled,.om-react-ui-nav-item-disabled:hover{color:var(--om-text-disabled,#bbbdc1)}.om-react-ui-nav-submenu{display:grid;grid-template-rows:0fr;transition:grid-template-rows .2s ease-in-out}.om-react-ui-nav-submenu-open{grid-template-rows:1fr}.om-react-ui-nav-submenu-inner{display:flex;flex-direction:column;overflow:hidden}
|