@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,184 @@
|
|
|
1
|
+
@use '@/styles/api' as theme;
|
|
2
|
+
@use 'sass:math';
|
|
3
|
+
|
|
4
|
+
$component-row: 'grid-row';
|
|
5
|
+
$component-col: 'grid-col';
|
|
6
|
+
$grid-columns: 12;
|
|
7
|
+
$grid-index-start: 1;
|
|
8
|
+
$grid-col-min-height: 1px;
|
|
9
|
+
$grid-col-max-width: 100%;
|
|
10
|
+
$grid-gutter-divisor: 2;
|
|
11
|
+
$grid-gutter-fallback: 0px;
|
|
12
|
+
$grid-col-flex-fallback: 0 0 auto;
|
|
13
|
+
$grid-var-gutter-x: '--om-grid-gutter-x';
|
|
14
|
+
$grid-var-gutter-y: '--om-grid-gutter-y';
|
|
15
|
+
$grid-var-gutter-x-sm: '--om-grid-gutter-x-sm';
|
|
16
|
+
$grid-var-gutter-y-sm: '--om-grid-gutter-y-sm';
|
|
17
|
+
$grid-var-gutter-x-md: '--om-grid-gutter-x-md';
|
|
18
|
+
$grid-var-gutter-y-md: '--om-grid-gutter-y-md';
|
|
19
|
+
$grid-var-gutter-x-lg: '--om-grid-gutter-x-lg';
|
|
20
|
+
$grid-var-gutter-y-lg: '--om-grid-gutter-y-lg';
|
|
21
|
+
$grid-var-justify: '--om-grid-justify';
|
|
22
|
+
$grid-var-justify-sm: '--om-grid-justify-sm';
|
|
23
|
+
$grid-var-justify-md: '--om-grid-justify-md';
|
|
24
|
+
$grid-var-justify-lg: '--om-grid-justify-lg';
|
|
25
|
+
$grid-var-col-flex: '--om-grid-col-flex';
|
|
26
|
+
$grid-var-col-flex-sm: '--om-grid-col-flex-sm';
|
|
27
|
+
$grid-var-col-flex-md: '--om-grid-col-flex-md';
|
|
28
|
+
$grid-var-col-flex-lg: '--om-grid-col-flex-lg';
|
|
29
|
+
$grid-justify-fallback: flex-start;
|
|
30
|
+
|
|
31
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-wrap: wrap;
|
|
34
|
+
justify-content: var(#{$grid-var-justify}, #{$grid-justify-fallback});
|
|
35
|
+
margin-right: calc(var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback}) / -#{$grid-gutter-divisor});
|
|
36
|
+
margin-left: calc(var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback}) / -#{$grid-gutter-divisor});
|
|
37
|
+
row-gap: var(#{$grid-var-gutter-y}, #{$grid-gutter-fallback});
|
|
38
|
+
|
|
39
|
+
&-no-wrap {
|
|
40
|
+
flex-wrap: nowrap;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&-align-top {
|
|
44
|
+
align-items: flex-start;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&-align-middle {
|
|
48
|
+
align-items: center;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&-align-bottom {
|
|
52
|
+
align-items: flex-end;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&-align-stretch {
|
|
56
|
+
align-items: stretch;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&-justify-start {
|
|
60
|
+
justify-content: flex-start;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&-justify-end {
|
|
64
|
+
justify-content: flex-end;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&-justify-center {
|
|
68
|
+
justify-content: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&-justify-space-between {
|
|
72
|
+
justify-content: space-between;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&-justify-space-around {
|
|
76
|
+
justify-content: space-around;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&-justify-space-evenly {
|
|
80
|
+
justify-content: space-evenly;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@include theme.down(lg) {
|
|
85
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
86
|
+
justify-content: var(#{$grid-var-justify-lg}, var(#{$grid-var-justify}, #{$grid-justify-fallback}));
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@include theme.down(md) {
|
|
91
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
92
|
+
justify-content: var(#{$grid-var-justify-md}, var(#{$grid-var-justify}, #{$grid-justify-fallback}));
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
@include theme.down(sm) {
|
|
97
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
98
|
+
justify-content: var(#{$grid-var-justify-sm}, var(#{$grid-var-justify}, #{$grid-justify-fallback}));
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.#{theme.$prefix}-#{$component-col} {
|
|
103
|
+
position: relative;
|
|
104
|
+
flex: var(#{$grid-var-col-flex}, #{$grid-col-flex-fallback});
|
|
105
|
+
max-width: $grid-col-max-width;
|
|
106
|
+
min-height: $grid-col-min-height;
|
|
107
|
+
padding-right: calc(var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback}) / #{$grid-gutter-divisor});
|
|
108
|
+
padding-left: calc(var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback}) / #{$grid-gutter-divisor});
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@mixin make-col-classes($infix: '') {
|
|
112
|
+
@for $i from $grid-index-start through $grid-columns {
|
|
113
|
+
.#{theme.$prefix}-#{$component-col}#{$infix}-#{$i} {
|
|
114
|
+
flex: 0 0 math.percentage(math.div($i, $grid-columns));
|
|
115
|
+
max-width: math.percentage(math.div($i, $grid-columns));
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.#{theme.$prefix}-#{$component-col}#{$infix}-offset-#{$i} {
|
|
119
|
+
margin-left: math.percentage(math.div($i, $grid-columns));
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.#{theme.$prefix}-#{$component-col}#{$infix}-order-#{$i} {
|
|
123
|
+
order: $i;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.#{theme.$prefix}-#{$component-col}#{$infix}-push-#{$i} {
|
|
127
|
+
left: math.percentage(math.div($i, $grid-columns));
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.#{theme.$prefix}-#{$component-col}#{$infix}-pull-#{$i} {
|
|
131
|
+
right: math.percentage(math.div($i, $grid-columns));
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@include make-col-classes('');
|
|
137
|
+
|
|
138
|
+
@include theme.down(lg) {
|
|
139
|
+
.#{theme.$prefix}-#{$component-col} {
|
|
140
|
+
flex: var(#{$grid-var-col-flex-lg}, var(#{$grid-var-col-flex}, #{$grid-col-flex-fallback}));
|
|
141
|
+
padding-right: calc(var(#{$grid-var-gutter-x-lg}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
142
|
+
padding-left: calc(var(#{$grid-var-gutter-x-lg}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
146
|
+
margin-right: calc(var(#{$grid-var-gutter-x-lg}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
147
|
+
margin-left: calc(var(#{$grid-var-gutter-x-lg}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
148
|
+
row-gap: var(#{$grid-var-gutter-y-lg}, var(#{$grid-var-gutter-y}, #{$grid-gutter-fallback}));
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@include make-col-classes('-lg');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@include theme.down(md) {
|
|
155
|
+
.#{theme.$prefix}-#{$component-col} {
|
|
156
|
+
flex: var(#{$grid-var-col-flex-md}, var(#{$grid-var-col-flex}, #{$grid-col-flex-fallback}));
|
|
157
|
+
padding-right: calc(var(#{$grid-var-gutter-x-md}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
158
|
+
padding-left: calc(var(#{$grid-var-gutter-x-md}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
162
|
+
margin-right: calc(var(#{$grid-var-gutter-x-md}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
163
|
+
margin-left: calc(var(#{$grid-var-gutter-x-md}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
164
|
+
row-gap: var(#{$grid-var-gutter-y-md}, var(#{$grid-var-gutter-y}, #{$grid-gutter-fallback}));
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
@include make-col-classes('-md');
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@include theme.down(sm) {
|
|
171
|
+
.#{theme.$prefix}-#{$component-col} {
|
|
172
|
+
flex: var(#{$grid-var-col-flex-sm}, var(#{$grid-var-col-flex}, #{$grid-col-flex-fallback}));
|
|
173
|
+
padding-right: calc(var(#{$grid-var-gutter-x-sm}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
174
|
+
padding-left: calc(var(#{$grid-var-gutter-x-sm}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / #{$grid-gutter-divisor});
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.#{theme.$prefix}-#{$component-row} {
|
|
178
|
+
margin-right: calc(var(#{$grid-var-gutter-x-sm}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
179
|
+
margin-left: calc(var(#{$grid-var-gutter-x-sm}, var(#{$grid-var-gutter-x}, #{$grid-gutter-fallback})) / -#{$grid-gutter-divisor});
|
|
180
|
+
row-gap: var(#{$grid-var-gutter-y-sm}, var(#{$grid-var-gutter-y}, #{$grid-gutter-fallback}));
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@include make-col-classes('-sm');
|
|
184
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import './Grid.css';
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvR3JpZC9zcmMvY29tcG9uZW50cy9HcmlkL3N0eWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sYUFBYSIsImZpbGUiOiJjb21wb25lbnRzL0dyaWQvc3R5bGUvY3NzLmpzIiwic291cmNlc0NvbnRlbnQiOltudWxsXSwic291cmNlUm9vdCI6Ii4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYyJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import './Grid.scss';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import './Grid.scss';
|
|
2
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvR3JpZC9zcmMvY29tcG9uZW50cy9HcmlkL3N0eWxlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sYUFBYSIsImZpbGUiOiJjb21wb25lbnRzL0dyaWQvc3R5bGUvaW5kZXguanMiLCJzb3VyY2VzQ29udGVudCI6W251bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import './style';
|
|
2
|
+
import type { FC } from 'react';
|
|
3
|
+
import type { IconsProps, IconWrapperProps } from './interface';
|
|
4
|
+
import type { LogoWithWordsCustomProps, LogoWithBetaCustomProps } from './Logo';
|
|
5
|
+
import type { IllustrationsCustomProps } from './Illustrations';
|
|
6
|
+
import type { SortIconStatus } from './SVGs';
|
|
7
|
+
declare const IconList: {
|
|
8
|
+
readonly illusChecked: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
9
|
+
readonly illusEmailError: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
10
|
+
readonly illusLinkExpired: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
11
|
+
readonly illus2FA: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
12
|
+
readonly illusLocked: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
13
|
+
readonly illusError: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
14
|
+
readonly illusRegionNotSupported: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
15
|
+
readonly illusID: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
16
|
+
readonly illusVerification: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
17
|
+
readonly illusPasskey: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
18
|
+
readonly illusAddAccount: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
19
|
+
readonly illusPending: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
20
|
+
readonly logo: FC<IconWrapperProps>;
|
|
21
|
+
readonly logoWord: FC<IconWrapperProps>;
|
|
22
|
+
readonly logoNetwork: FC<IconWrapperProps>;
|
|
23
|
+
readonly logoWithWords: FC<IconWrapperProps & LogoWithWordsCustomProps>;
|
|
24
|
+
readonly logoBg: FC<IconWrapperProps>;
|
|
25
|
+
readonly logoBeta: FC<IconWrapperProps>;
|
|
26
|
+
readonly logoWithBeta: FC<IconWrapperProps & LogoWithBetaCustomProps>;
|
|
27
|
+
readonly deposit: FC<IconWrapperProps>;
|
|
28
|
+
readonly withdrawal: FC<IconWrapperProps>;
|
|
29
|
+
readonly conversion: FC<IconWrapperProps>;
|
|
30
|
+
readonly mintToken: FC<IconWrapperProps>;
|
|
31
|
+
readonly burnToken: FC<IconWrapperProps>;
|
|
32
|
+
readonly accountLocked: FC<IconWrapperProps>;
|
|
33
|
+
readonly pending: FC<IconWrapperProps>;
|
|
34
|
+
readonly success: FC<IconWrapperProps>;
|
|
35
|
+
readonly fail: FC<IconWrapperProps>;
|
|
36
|
+
readonly error: FC<IconWrapperProps>;
|
|
37
|
+
readonly statusSuccess: FC<IconWrapperProps & {
|
|
38
|
+
innerColor?: string;
|
|
39
|
+
}>;
|
|
40
|
+
readonly statusFail: FC<IconWrapperProps & {
|
|
41
|
+
innerColor?: string;
|
|
42
|
+
}>;
|
|
43
|
+
readonly dashboard: FC<IconWrapperProps>;
|
|
44
|
+
readonly digitalAsset: FC<IconWrapperProps>;
|
|
45
|
+
readonly addressBook: FC<IconWrapperProps>;
|
|
46
|
+
readonly linkedBankAccounts: FC<IconWrapperProps>;
|
|
47
|
+
readonly wire: FC<IconWrapperProps>;
|
|
48
|
+
readonly swift: FC<IconWrapperProps>;
|
|
49
|
+
readonly account: FC<IconWrapperProps>;
|
|
50
|
+
readonly profile: FC<IconWrapperProps>;
|
|
51
|
+
readonly security: FC<IconWrapperProps>;
|
|
52
|
+
readonly logout: FC<IconWrapperProps>;
|
|
53
|
+
readonly portfolio: FC<IconWrapperProps>;
|
|
54
|
+
readonly home: FC<IconWrapperProps>;
|
|
55
|
+
readonly convert: FC<IconWrapperProps>;
|
|
56
|
+
readonly withdraw: FC<IconWrapperProps>;
|
|
57
|
+
readonly send: FC<IconWrapperProps>;
|
|
58
|
+
readonly menuDeposit: FC<IconWrapperProps>;
|
|
59
|
+
readonly company: FC<IconWrapperProps>;
|
|
60
|
+
readonly parties: FC<IconWrapperProps>;
|
|
61
|
+
readonly transactions: FC<IconWrapperProps>;
|
|
62
|
+
readonly fiat: FC<IconWrapperProps>;
|
|
63
|
+
readonly money: FC<IconWrapperProps>;
|
|
64
|
+
readonly sendCrypto: FC<IconWrapperProps>;
|
|
65
|
+
readonly arrowUp: FC<IconWrapperProps>;
|
|
66
|
+
readonly arrowDown: FC<IconWrapperProps>;
|
|
67
|
+
readonly arrowLeft: FC<IconWrapperProps>;
|
|
68
|
+
readonly arrowRight: FC<IconWrapperProps>;
|
|
69
|
+
readonly add: FC<IconWrapperProps>;
|
|
70
|
+
readonly minus: FC<IconWrapperProps>;
|
|
71
|
+
readonly cross: FC<IconWrapperProps>;
|
|
72
|
+
readonly more: FC<IconWrapperProps>;
|
|
73
|
+
readonly chevronDown: FC<IconWrapperProps>;
|
|
74
|
+
readonly chevronUp: FC<IconWrapperProps>;
|
|
75
|
+
readonly chevronLeft: FC<IconWrapperProps>;
|
|
76
|
+
readonly chevronRight: FC<IconWrapperProps>;
|
|
77
|
+
readonly sort: FC<import("./SVGs").SortIconProps>;
|
|
78
|
+
readonly collapse: FC<IconWrapperProps>;
|
|
79
|
+
readonly extend: FC<IconWrapperProps>;
|
|
80
|
+
readonly spinner: FC<IconWrapperProps>;
|
|
81
|
+
readonly check: FC<IconWrapperProps>;
|
|
82
|
+
readonly remove: FC<IconWrapperProps>;
|
|
83
|
+
readonly pix: FC<IconWrapperProps>;
|
|
84
|
+
readonly info: FC<IconWrapperProps>;
|
|
85
|
+
readonly notifications: FC<IconWrapperProps>;
|
|
86
|
+
readonly favorite: FC<IconWrapperProps>;
|
|
87
|
+
readonly transferHistory: FC<IconWrapperProps>;
|
|
88
|
+
readonly support: FC<IconWrapperProps>;
|
|
89
|
+
readonly help: FC<IconWrapperProps>;
|
|
90
|
+
readonly language: FC<IconWrapperProps>;
|
|
91
|
+
readonly share: FC<IconWrapperProps>;
|
|
92
|
+
readonly products: FC<IconWrapperProps>;
|
|
93
|
+
readonly hub: FC<IconWrapperProps>;
|
|
94
|
+
readonly systemSecurity: FC<IconWrapperProps>;
|
|
95
|
+
readonly fees: FC<IconWrapperProps>;
|
|
96
|
+
readonly settings: FC<IconWrapperProps>;
|
|
97
|
+
readonly id: FC<IconWrapperProps>;
|
|
98
|
+
readonly viewBalance: FC<IconWrapperProps>;
|
|
99
|
+
readonly hideBalance: FC<IconWrapperProps>;
|
|
100
|
+
readonly privacy: FC<IconWrapperProps>;
|
|
101
|
+
readonly card: FC<IconWrapperProps>;
|
|
102
|
+
readonly coin: FC<IconWrapperProps>;
|
|
103
|
+
readonly wallet: FC<IconWrapperProps>;
|
|
104
|
+
readonly email: FC<IconWrapperProps>;
|
|
105
|
+
readonly rewards: FC<IconWrapperProps>;
|
|
106
|
+
readonly time: FC<IconWrapperProps>;
|
|
107
|
+
readonly location: FC<IconWrapperProps>;
|
|
108
|
+
readonly calendar: FC<IconWrapperProps>;
|
|
109
|
+
readonly securityCheck: FC<IconWrapperProps>;
|
|
110
|
+
readonly devices: FC<IconWrapperProps>;
|
|
111
|
+
readonly images: FC<IconWrapperProps>;
|
|
112
|
+
readonly bank: FC<IconWrapperProps>;
|
|
113
|
+
readonly coins: FC<IconWrapperProps>;
|
|
114
|
+
readonly earn: FC<IconWrapperProps>;
|
|
115
|
+
readonly scan: FC<IconWrapperProps>;
|
|
116
|
+
readonly search: FC<IconWrapperProps>;
|
|
117
|
+
readonly maintenance: FC<IconWrapperProps>;
|
|
118
|
+
readonly editFile: FC<IconWrapperProps>;
|
|
119
|
+
readonly document: FC<IconWrapperProps>;
|
|
120
|
+
readonly upload: FC<IconWrapperProps>;
|
|
121
|
+
readonly gift: FC<IconWrapperProps>;
|
|
122
|
+
readonly filter: FC<IconWrapperProps>;
|
|
123
|
+
readonly expand: FC<IconWrapperProps>;
|
|
124
|
+
readonly systemCollapse: FC<IconWrapperProps>;
|
|
125
|
+
readonly refresh: FC<IconWrapperProps>;
|
|
126
|
+
readonly transfer: FC<IconWrapperProps>;
|
|
127
|
+
readonly link: FC<IconWrapperProps>;
|
|
128
|
+
readonly save: FC<IconWrapperProps>;
|
|
129
|
+
readonly like: FC<IconWrapperProps>;
|
|
130
|
+
readonly dislike: FC<IconWrapperProps>;
|
|
131
|
+
readonly copy: FC<IconWrapperProps>;
|
|
132
|
+
readonly mobile: FC<IconWrapperProps>;
|
|
133
|
+
readonly chat: FC<IconWrapperProps>;
|
|
134
|
+
readonly swap: FC<IconWrapperProps>;
|
|
135
|
+
readonly clock: FC<IconWrapperProps>;
|
|
136
|
+
readonly desktop: FC<IconWrapperProps>;
|
|
137
|
+
readonly ach: FC<IconWrapperProps>;
|
|
138
|
+
readonly businessAccount: FC<IconWrapperProps>;
|
|
139
|
+
readonly individualAccount: FC<IconWrapperProps>;
|
|
140
|
+
readonly apiKey: FC<IconWrapperProps>;
|
|
141
|
+
readonly brokenLink: FC<IconWrapperProps>;
|
|
142
|
+
readonly autoConversionRules: FC<IconWrapperProps>;
|
|
143
|
+
readonly usd: FC<IconWrapperProps>;
|
|
144
|
+
readonly eur: FC<IconWrapperProps>;
|
|
145
|
+
readonly gbp: FC<IconWrapperProps>;
|
|
146
|
+
readonly jpy: FC<IconWrapperProps>;
|
|
147
|
+
readonly cny: FC<IconWrapperProps>;
|
|
148
|
+
readonly google: FC<IconWrapperProps>;
|
|
149
|
+
readonly apple: FC<IconWrapperProps>;
|
|
150
|
+
readonly twitter: FC<IconWrapperProps>;
|
|
151
|
+
readonly linkedIn: FC<IconWrapperProps>;
|
|
152
|
+
readonly passkey: FC<IconWrapperProps>;
|
|
153
|
+
readonly pause: FC<IconWrapperProps>;
|
|
154
|
+
readonly notificationInfo: FC<IconWrapperProps>;
|
|
155
|
+
readonly notificationWarning: FC<IconWrapperProps>;
|
|
156
|
+
readonly notificationSuccess: FC<IconWrapperProps>;
|
|
157
|
+
readonly notificationError: FC<IconWrapperProps>;
|
|
158
|
+
readonly depositFiatCrypto: FC<IconWrapperProps>;
|
|
159
|
+
readonly withdrawFiatCrypto: FC<IconWrapperProps>;
|
|
160
|
+
readonly accountdLocked: FC<IconWrapperProps>;
|
|
161
|
+
readonly personalSettings: FC<IconWrapperProps>;
|
|
162
|
+
readonly security2: FC<IconWrapperProps>;
|
|
163
|
+
readonly iconPix: FC<IconWrapperProps>;
|
|
164
|
+
readonly noApiKeys: FC<IconWrapperProps>;
|
|
165
|
+
};
|
|
166
|
+
export type IconName = keyof typeof IconList;
|
|
167
|
+
export interface StatusIconsProps extends IconsProps {
|
|
168
|
+
name: 'statusSuccess' | 'statusFail';
|
|
169
|
+
innerColor?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface LogoWithWordsProps extends IconsProps, LogoWithWordsCustomProps {
|
|
172
|
+
name: 'logoWithWords';
|
|
173
|
+
}
|
|
174
|
+
export interface LogoWithBetaProps extends IconsProps, LogoWithBetaCustomProps {
|
|
175
|
+
name: 'logoWithBeta';
|
|
176
|
+
}
|
|
177
|
+
export interface IllustrationsProps extends IconsProps, IllustrationsCustomProps {
|
|
178
|
+
name: 'illusLocked' | 'illusChecked' | 'illusError' | 'illusEmailError' | 'illusLinkExpired' | 'illus2FA' | 'illusID' | 'illusVerification' | 'illusRegionNotSupported' | 'illusPending' | 'illusPasskey' | 'illusAddAccount';
|
|
179
|
+
}
|
|
180
|
+
export interface SortIconsProps extends IconsProps {
|
|
181
|
+
name: 'sort';
|
|
182
|
+
status?: SortIconStatus;
|
|
183
|
+
inactiveColor?: string;
|
|
184
|
+
}
|
|
185
|
+
export type { SortIconStatus } from './SVGs';
|
|
186
|
+
export declare const Icons: FC<(IconsProps & {
|
|
187
|
+
name: IconName;
|
|
188
|
+
}) | StatusIconsProps | LogoWithWordsProps | LogoWithBetaProps | IllustrationsProps | SortIconsProps>;
|
|
189
|
+
declare const _default: import("react").NamedExoticComponent<StatusIconsProps | LogoWithWordsProps | LogoWithBetaProps | IllustrationsProps | SortIconsProps | (IconsProps & {
|
|
190
|
+
name: IconName;
|
|
191
|
+
})>;
|
|
192
|
+
export default _default;
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
var __rest = this && this.__rest || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
4
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
5
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
6
|
+
}
|
|
7
|
+
return t;
|
|
8
|
+
};
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
import { memo } from 'react';
|
|
11
|
+
import { Logo, LogoWord, LogoNetwork, LogoWithWords, LogoBg, LogoBeta, LogoWithBeta } from './Logo';
|
|
12
|
+
import './style';
|
|
13
|
+
import { IllusChecked, IllusEmailError, IllusLinkExpired, Illus2FA, IllusLocked, IllusError, IllusRegionNotSupported, IllusID, IllusVerification, IllusPasskey, IllusAddAccount, IllusPending } from './Illustrations';
|
|
14
|
+
import { /* Primary Icons */
|
|
15
|
+
DepositIcon, WithdrawalIcon, ConversionIcon, MintTokenIcon, BurnTokenIcon, AccountLockedIcon, PendingIcon, SuccessIcon, FailIcon, ErrorIcon, /* Status Icons */
|
|
16
|
+
StatusSuccessIcon, StatusFailIcon, /* Menu Icons */
|
|
17
|
+
DashboardIcon, DigitalAssetIcon, AddressBookIcon, LinkedBankAccountsIcon, WireIcon, SWIFTIcon, AccountIcon, ProfileIcon, SecurityIcon, LogoutIcon, PortfolioIcon, HomeIcon, ConvertIcon, WithdrawIcon, SendIcon, MenuDepositIcon, CompanyIcon, PartiesIcon, TransactionsIcon, FiatIcon, MoneyIcon, SendCryptoIcon, /* Functional Icons */
|
|
18
|
+
ArrowUpIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, AddIcon, MinusIcon, CrossIcon, MoreIcon, ChevronDownIcon, ChevronUpIcon, ChevronLeftIcon, ChevronRightIcon, SortIcon, CollapseIcon, ExtendIcon, SpinnerIcon, CheckIcon, RemoveIcon, PixIcon, /* System Icons */
|
|
19
|
+
InfoIcon, NotificationsIcon, FavoriteIcon, TransferHistoryIcon, SupportIcon, HelpIcon, LanguageIcon, ShareIcon, ProductsIcon, HubIcon, SystemSecurityIcon, FeesIcon, SettingsIcon, IDIcon, ViewBalanceIcon, HideBalanceIcon, PrivacyIcon, CardIcon, CoinIcon, WalletIcon, EmailIcon, RewardsIcon, TimeIcon, LocationIcon, CalendarIcon, SecurityCheckIcon, DevicesIcon, ImagesIcon, BankIcon, CoinsIcon, EarnIcon, ScanIcon, SearchIcon, MaintenanceIcon, EditFileIcon, DocumentIcon, UploadIcon, GiftIcon, FilterIcon, ExpandIcon, SystemCollapseIcon, RefreshIcon, TransferIcon, LinkIcon, SaveIcon, LikeIcon, DislikeIcon, CopyIcon, MobileIcon, ChatIcon, SwapIcon, ClockIcon, DesktopIcon, USDIcon, EURIcon, GBPIcon, JPYIcon, CNYIcon, GoogleIcon, AppleIcon, TwitterIcon, LinkedInIcon, PasskeyIcon, ACHIcon, BusinessAccountIcon, IndividualAccountIcon, APIKeyIcon, BrokenLinkIcon, PauseIcon, AutoConversionRulesIcon, NotificationInfoIcon, NotificationWarningIcon, NotificationSuccessIcon, NotificationErrorIcon } from './SVGs';
|
|
20
|
+
var IconList = {
|
|
21
|
+
illusChecked: IllusChecked,
|
|
22
|
+
illusEmailError: IllusEmailError,
|
|
23
|
+
illusLinkExpired: IllusLinkExpired,
|
|
24
|
+
illus2FA: Illus2FA,
|
|
25
|
+
illusLocked: IllusLocked,
|
|
26
|
+
illusError: IllusError,
|
|
27
|
+
illusRegionNotSupported: IllusRegionNotSupported,
|
|
28
|
+
illusID: IllusID,
|
|
29
|
+
illusVerification: IllusVerification,
|
|
30
|
+
illusPasskey: IllusPasskey,
|
|
31
|
+
illusAddAccount: IllusAddAccount,
|
|
32
|
+
illusPending: IllusPending,
|
|
33
|
+
/* Logo */
|
|
34
|
+
logo: Logo,
|
|
35
|
+
logoWord: LogoWord,
|
|
36
|
+
logoNetwork: LogoNetwork,
|
|
37
|
+
logoWithWords: LogoWithWords,
|
|
38
|
+
logoBg: LogoBg,
|
|
39
|
+
logoBeta: LogoBeta,
|
|
40
|
+
logoWithBeta: LogoWithBeta,
|
|
41
|
+
/* Primary Icons */
|
|
42
|
+
deposit: DepositIcon,
|
|
43
|
+
withdrawal: WithdrawalIcon,
|
|
44
|
+
conversion: ConversionIcon,
|
|
45
|
+
mintToken: MintTokenIcon,
|
|
46
|
+
burnToken: BurnTokenIcon,
|
|
47
|
+
accountLocked: AccountLockedIcon,
|
|
48
|
+
pending: PendingIcon,
|
|
49
|
+
success: SuccessIcon,
|
|
50
|
+
fail: FailIcon,
|
|
51
|
+
error: ErrorIcon,
|
|
52
|
+
/* Status Icons */
|
|
53
|
+
statusSuccess: StatusSuccessIcon,
|
|
54
|
+
statusFail: StatusFailIcon,
|
|
55
|
+
/* Menu Icons */
|
|
56
|
+
dashboard: DashboardIcon,
|
|
57
|
+
digitalAsset: DigitalAssetIcon,
|
|
58
|
+
addressBook: AddressBookIcon,
|
|
59
|
+
linkedBankAccounts: LinkedBankAccountsIcon,
|
|
60
|
+
wire: WireIcon,
|
|
61
|
+
swift: SWIFTIcon,
|
|
62
|
+
account: AccountIcon,
|
|
63
|
+
profile: ProfileIcon,
|
|
64
|
+
security: SecurityIcon,
|
|
65
|
+
logout: LogoutIcon,
|
|
66
|
+
portfolio: PortfolioIcon,
|
|
67
|
+
home: HomeIcon,
|
|
68
|
+
convert: ConvertIcon,
|
|
69
|
+
withdraw: WithdrawIcon,
|
|
70
|
+
send: SendIcon,
|
|
71
|
+
menuDeposit: MenuDepositIcon,
|
|
72
|
+
company: CompanyIcon,
|
|
73
|
+
parties: PartiesIcon,
|
|
74
|
+
transactions: TransactionsIcon,
|
|
75
|
+
fiat: FiatIcon,
|
|
76
|
+
money: MoneyIcon,
|
|
77
|
+
sendCrypto: SendCryptoIcon,
|
|
78
|
+
/* Functional Icons */
|
|
79
|
+
arrowUp: ArrowUpIcon,
|
|
80
|
+
arrowDown: ArrowDownIcon,
|
|
81
|
+
arrowLeft: ArrowLeftIcon,
|
|
82
|
+
arrowRight: ArrowRightIcon,
|
|
83
|
+
add: AddIcon,
|
|
84
|
+
minus: MinusIcon,
|
|
85
|
+
cross: CrossIcon,
|
|
86
|
+
more: MoreIcon,
|
|
87
|
+
chevronDown: ChevronDownIcon,
|
|
88
|
+
chevronUp: ChevronUpIcon,
|
|
89
|
+
chevronLeft: ChevronLeftIcon,
|
|
90
|
+
chevronRight: ChevronRightIcon,
|
|
91
|
+
sort: SortIcon,
|
|
92
|
+
collapse: CollapseIcon,
|
|
93
|
+
extend: ExtendIcon,
|
|
94
|
+
spinner: SpinnerIcon,
|
|
95
|
+
check: CheckIcon,
|
|
96
|
+
remove: RemoveIcon,
|
|
97
|
+
pix: PixIcon,
|
|
98
|
+
/* System Icons */
|
|
99
|
+
info: InfoIcon,
|
|
100
|
+
notifications: NotificationsIcon,
|
|
101
|
+
favorite: FavoriteIcon,
|
|
102
|
+
transferHistory: TransferHistoryIcon,
|
|
103
|
+
support: SupportIcon,
|
|
104
|
+
help: HelpIcon,
|
|
105
|
+
language: LanguageIcon,
|
|
106
|
+
share: ShareIcon,
|
|
107
|
+
products: ProductsIcon,
|
|
108
|
+
hub: HubIcon,
|
|
109
|
+
systemSecurity: SystemSecurityIcon,
|
|
110
|
+
fees: FeesIcon,
|
|
111
|
+
settings: SettingsIcon,
|
|
112
|
+
id: IDIcon,
|
|
113
|
+
viewBalance: ViewBalanceIcon,
|
|
114
|
+
hideBalance: HideBalanceIcon,
|
|
115
|
+
privacy: PrivacyIcon,
|
|
116
|
+
card: CardIcon,
|
|
117
|
+
coin: CoinIcon,
|
|
118
|
+
wallet: WalletIcon,
|
|
119
|
+
email: EmailIcon,
|
|
120
|
+
rewards: RewardsIcon,
|
|
121
|
+
time: TimeIcon,
|
|
122
|
+
location: LocationIcon,
|
|
123
|
+
calendar: CalendarIcon,
|
|
124
|
+
securityCheck: SecurityCheckIcon,
|
|
125
|
+
devices: DevicesIcon,
|
|
126
|
+
images: ImagesIcon,
|
|
127
|
+
bank: BankIcon,
|
|
128
|
+
coins: CoinsIcon,
|
|
129
|
+
earn: EarnIcon,
|
|
130
|
+
scan: ScanIcon,
|
|
131
|
+
search: SearchIcon,
|
|
132
|
+
maintenance: MaintenanceIcon,
|
|
133
|
+
editFile: EditFileIcon,
|
|
134
|
+
document: DocumentIcon,
|
|
135
|
+
upload: UploadIcon,
|
|
136
|
+
gift: GiftIcon,
|
|
137
|
+
filter: FilterIcon,
|
|
138
|
+
expand: ExpandIcon,
|
|
139
|
+
systemCollapse: SystemCollapseIcon,
|
|
140
|
+
refresh: RefreshIcon,
|
|
141
|
+
transfer: TransferIcon,
|
|
142
|
+
link: LinkIcon,
|
|
143
|
+
save: SaveIcon,
|
|
144
|
+
like: LikeIcon,
|
|
145
|
+
dislike: DislikeIcon,
|
|
146
|
+
copy: CopyIcon,
|
|
147
|
+
mobile: MobileIcon,
|
|
148
|
+
chat: ChatIcon,
|
|
149
|
+
swap: SwapIcon,
|
|
150
|
+
clock: ClockIcon,
|
|
151
|
+
desktop: DesktopIcon,
|
|
152
|
+
ach: ACHIcon,
|
|
153
|
+
businessAccount: BusinessAccountIcon,
|
|
154
|
+
individualAccount: IndividualAccountIcon,
|
|
155
|
+
apiKey: APIKeyIcon,
|
|
156
|
+
brokenLink: BrokenLinkIcon,
|
|
157
|
+
autoConversionRules: AutoConversionRulesIcon,
|
|
158
|
+
/* Currency Icons */
|
|
159
|
+
usd: USDIcon,
|
|
160
|
+
eur: EURIcon,
|
|
161
|
+
gbp: GBPIcon,
|
|
162
|
+
jpy: JPYIcon,
|
|
163
|
+
cny: CNYIcon,
|
|
164
|
+
/* Social Icons */
|
|
165
|
+
google: GoogleIcon,
|
|
166
|
+
apple: AppleIcon,
|
|
167
|
+
twitter: TwitterIcon,
|
|
168
|
+
linkedIn: LinkedInIcon,
|
|
169
|
+
passkey: PasskeyIcon,
|
|
170
|
+
pause: PauseIcon,
|
|
171
|
+
/* Notification Icons */
|
|
172
|
+
notificationInfo: NotificationInfoIcon,
|
|
173
|
+
notificationWarning: NotificationWarningIcon,
|
|
174
|
+
notificationSuccess: NotificationSuccessIcon,
|
|
175
|
+
notificationError: NotificationErrorIcon,
|
|
176
|
+
/* Figma Aliases */
|
|
177
|
+
depositFiatCrypto: DepositIcon,
|
|
178
|
+
withdrawFiatCrypto: WithdrawalIcon,
|
|
179
|
+
accountdLocked: AccountLockedIcon,
|
|
180
|
+
personalSettings: AccountIcon,
|
|
181
|
+
security2: SystemSecurityIcon,
|
|
182
|
+
iconPix: PixIcon,
|
|
183
|
+
noApiKeys: BrokenLinkIcon
|
|
184
|
+
};
|
|
185
|
+
export var Icons = function Icons(_a) {
|
|
186
|
+
var name = _a.name,
|
|
187
|
+
rest = __rest(_a, ["name"]);
|
|
188
|
+
var Icon = IconList[name];
|
|
189
|
+
return Icon ? _jsx(Icon, Object.assign({}, rest)) : null;
|
|
190
|
+
};
|
|
191
|
+
export default /*#__PURE__*/memo(Icons);
|
|
192
|
+
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImNvbXBvbmVudHMvSWNvbnMvSWNvbnMuanMiLCJjb21wb25lbnRzL3NyYy9jb21wb25lbnRzL0ljb25zL0ljb25zLnRzeCJdLCJuYW1lcyI6WyJfX3Jlc3QiLCJzIiwiZSIsInQiLCJwIiwiT2JqZWN0IiwicHJvdG90eXBlIiwiaGFzT3duUHJvcGVydHkiLCJjYWxsIiwiaW5kZXhPZiIsImdldE93blByb3BlcnR5U3ltYm9scyIsImkiLCJsZW5ndGgiLCJwcm9wZXJ0eUlzRW51bWVyYWJsZSIsImpzeCIsIl9qc3giLCJtZW1vIiwiTG9nbyIsIkxvZ29Xb3JkIiwiTG9nb05ldHdvcmsiLCJMb2dvV2l0aFdvcmRzIiwiTG9nb0JnIiwiTG9nb0JldGEiLCJMb2dvV2l0aEJldGEiLCJJbGx1c0NoZWNrZWQiLCJJbGx1c0VtYWlsRXJyb3IiLCJJbGx1c0xpbmtFeHBpcmVkIiwiSWxsdXMyRkEiLCJJbGx1c0xvY2tlZCIsIklsbHVzRXJyb3IiLCJJbGx1c1JlZ2lvbk5vdFN1cHBvcnRlZCIsIklsbHVzSUQiLCJJbGx1c1ZlcmlmaWNhdGlvbiIsIklsbHVzUGFzc2tleSIsIklsbHVzQWRkQWNjb3VudCIsIklsbHVzUGVuZGluZyIsIkRlcG9zaXRJY29uIiwiV2l0aGRyYXdhbEljb24iLCJDb252ZXJzaW9uSWNvbiIsIk1pbnRUb2tlbkljb24iLCJCdXJuVG9rZW5JY29uIiwiQWNjb3VudExvY2tlZEljb24iLCJQZW5kaW5nSWNvbiIsIlN1Y2Nlc3NJY29uIiwiRmFpbEljb24iLCJFcnJvckljb24iLCJTdGF0dXNTdWNjZXNzSWNvbiIsIlN0YXR1c0ZhaWxJY29uIiwiRGFzaGJvYXJkSWNvbiIsIkRpZ2l0YWxBc3NldEljb24iLCJBZGRyZXNzQm9va0ljb24iLCJMaW5rZWRCYW5rQWNjb3VudHNJY29uIiwiV2lyZUljb24iLCJTV0lGVEljb24iLCJBY2NvdW50SWNvbiIsIlByb2ZpbGVJY29uIiwiU2VjdXJpdHlJY29uIiwiTG9nb3V0SWNvbiIsIlBvcnRmb2xpb0ljb24iLCJIb21lSWNvbiIsIkNvbnZlcnRJY29uIiwiV2l0aGRyYXdJY29uIiwiU2VuZEljb24iLCJNZW51RGVwb3NpdEljb24iLCJDb21wYW55SWNvbiIsIlBhcnRpZXNJY29uIiwiVHJhbnNhY3Rpb25zSWNvbiIsIkZpYXRJY29uIiwiTW9uZXlJY29uIiwiU2VuZENyeXB0b0ljb24iLCJBcnJvd1VwSWNvbiIsIkFycm93RG93bkljb24iLCJBcnJvd0xlZnRJY29uIiwiQXJyb3dSaWdodEljb24iLCJBZGRJY29uIiwiTWludXNJY29uIiwiQ3Jvc3NJY29uIiwiTW9yZUljb24iLCJDaGV2cm9uRG93bkljb24iLCJDaGV2cm9uVXBJY29uIiwiQ2hldnJvbkxlZnRJY29uIiwiQ2hldnJvblJpZ2h0SWNvbiIsIlNvcnRJY29uIiwiQ29sbGFwc2VJY29uIiwiRXh0ZW5kSWNvbiIsIlNwaW5uZXJJY29uIiwiQ2hlY2tJY29uIiwiUmVtb3ZlSWNvbiIsIlBpeEljb24iLCJJbmZvSWNvbiIsIk5vdGlmaWNhdGlvbnNJY29uIiwiRmF2b3JpdGVJY29uIiwiVHJhbnNmZXJIaXN0b3J5SWNvbiIsIlN1cHBvcnRJY29uIiwiSGVscEljb24iLCJMYW5ndWFnZUljb24iLCJTaGFyZUljb24iLCJQcm9kdWN0c0ljb24iLCJIdWJJY29uIiwiU3lzdGVtU2VjdXJpdHlJY29uIiwiRmVlc0ljb24iLCJTZXR0aW5nc0ljb24iLCJJREljb24iLCJWaWV3QmFsYW5jZUljb24iLCJIaWRlQmFsYW5jZUljb24iLCJQcml2YWN5SWNvbiIsIkNhcmRJY29uIiwiQ29pbkljb24iLCJXYWxsZXRJY29uIiwiRW1haWxJY29uIiwiUmV3YXJkc0ljb24iLCJUaW1lSWNvbiIsIkxvY2F0aW9uSWNvbiIsIkNhbGVuZGFySWNvbiIsIlNlY3VyaXR5Q2hlY2tJY29uIiwiRGV2aWNlc0ljb24iLCJJbWFnZXNJY29uIiwiQmFua0ljb24iLCJDb2luc0ljb24iLCJFYXJuSWNvbiIsIlNjYW5JY29uIiwiU2VhcmNoSWNvbiIsIk1haW50ZW5hbmNlSWNvbiIsIkVkaXRGaWxlSWNvbiIsIkRvY3VtZW50SWNvbiIsIlVwbG9hZEljb24iLCJHaWZ0SWNvbiIsIkZpbHRlckljb24iLCJFeHBhbmRJY29uIiwiU3lzdGVtQ29sbGFwc2VJY29uIiwiUmVmcmVzaEljb24iLCJUcmFuc2Zlckljb24iLCJMaW5rSWNvbiIsIlNhdmVJY29uIiwiTGlrZUljb24iLCJEaXNsaWtlSWNvbiIsIkNvcHlJY29uIiwiTW9iaWxlSWNvbiIsIkNoYXRJY29uIiwiU3dhcEljb24iLCJDbG9ja0ljb24iLCJEZXNrdG9wSWNvbiIsIlVTREljb24iLCJFVVJJY29uIiwiR0JQSWNvbiIsIkpQWUljb24iLCJDTllJY29uIiwiR29vZ2xlSWNvbiIsIkFwcGxlSWNvbiIsIlR3aXR0ZXJJY29uIiwiTGlua2VkSW5JY29uIiwiUGFzc2tleUljb24iLCJBQ0hJY29uIiwiQnVzaW5lc3NBY2NvdW50SWNvbiIsIkluZGl2aWR1YWxBY2NvdW50SWNvbiIsIkFQSUtleUljb24iLCJCcm9rZW5MaW5rSWNvbiIsIlBhdXNlSWNvbiIsIkF1dG9Db252ZXJzaW9uUnVsZXNJY29uIiwiTm90aWZpY2F0aW9uSW5mb0ljb24iLCJOb3RpZmljYXRpb25XYXJuaW5nSWNvbiIsIk5vdGlmaWNhdGlvblN1Y2Nlc3NJY29uIiwiTm90aWZpY2F0aW9uRXJyb3JJY29uIiwiSWNvbkxpc3QiLCJpbGx1c0NoZWNrZWQiLCJpbGx1c0VtYWlsRXJyb3IiLCJpbGx1c0xpbmtFeHBpcmVkIiwiaWxsdXMyRkEiLCJpbGx1c0xvY2tlZCIsImlsbHVzRXJyb3IiLCJpbGx1c1JlZ2lvbk5vdFN1cHBvcnRlZCIsImlsbHVzSUQiLCJpbGx1c1ZlcmlmaWNhdGlvbiIsImlsbHVzUGFzc2tleSIsImlsbHVzQWRkQWNjb3VudCIsImlsbHVzUGVuZGluZyIsImxvZ28iLCJsb2dvV29yZCIsImxvZ29OZXR3b3JrIiwibG9nb1dpdGhXb3JkcyIsImxvZ29CZyIsImxvZ29CZXRhIiwibG9nb1dpdGhCZXRhIiwiZGVwb3NpdCIsIndpdGhkcmF3YWwiLCJjb252ZXJzaW9uIiwibWludFRva2VuIiwiYnVyblRva2VuIiwiYWNjb3VudExvY2tlZCIsInBlbmRpbmciLCJzdWNjZXNzIiwiZmFpbCIsImVycm9yIiwic3RhdHVzU3VjY2VzcyIsInN0YXR1c0ZhaWwiLCJkYXNoYm9hcmQiLCJkaWdpdGFsQXNzZXQiLCJhZGRyZXNzQm9vayIsImxpbmtlZEJhbmtBY2NvdW50cyIsIndpcmUiLCJzd2lmdCIsImFjY291bnQiLCJwcm9maWxlIiwic2VjdXJpdHkiLCJsb2dvdXQiLCJwb3J0Zm9saW8iLCJob21lIiwiY29udmVydCIsIndpdGhkcmF3Iiwic2VuZCIsIm1lbnVEZXBvc2l0IiwiY29tcGFueSIsInBhcnRpZXMiLCJ0cmFuc2FjdGlvbnMiLCJmaWF0IiwibW9uZXkiLCJzZW5kQ3J5cHRvIiwiYXJyb3dVcCIsImFycm93RG93biIsImFycm93TGVmdCIsImFycm93UmlnaHQiLCJhZGQiLCJtaW51cyIsImNyb3NzIiwibW9yZSIsImNoZXZyb25Eb3duIiwiY2hldnJvblVwIiwiY2hldnJvbkxlZnQiLCJjaGV2cm9uUmlnaHQiLCJzb3J0IiwiY29sbGFwc2UiLCJleHRlbmQiLCJzcGlubmVyIiwiY2hlY2siLCJyZW1vdmUiLCJwaXgiLCJpbmZvIiwibm90aWZpY2F0aW9ucyIsImZhdm9yaXRlIiwidHJhbnNmZXJIaXN0b3J5Iiwic3VwcG9ydCIsImhlbHAiLCJsYW5ndWFnZSIsInNoYXJlIiwicHJvZHVjdHMiLCJodWIiLCJzeXN0ZW1TZWN1cml0eSIsImZlZXMiLCJzZXR0aW5ncyIsImlkIiwidmlld0JhbGFuY2UiLCJoaWRlQmFsYW5jZSIsInByaXZhY3kiLCJjYXJkIiwiY29pbiIsIndhbGxldCIsImVtYWlsIiwicmV3YXJkcyIsInRpbWUiLCJsb2NhdGlvbiIsImNhbGVuZGFyIiwic2VjdXJpdHlDaGVjayIsImRldmljZXMiLCJpbWFnZXMiLCJiYW5rIiwiY29pbnMiLCJlYXJuIiwic2NhbiIsInNlYXJjaCIsIm1haW50ZW5hbmNlIiwiZWRpdEZpbGUiLCJkb2N1bWVudCIsInVwbG9hZCIsImdpZnQiLCJmaWx0ZXIiLCJleHBhbmQiLCJzeXN0ZW1Db2xsYXBzZSIsInJlZnJlc2giLCJ0cmFuc2ZlciIsImxpbmsiLCJzYXZlIiwibGlrZSIsImRpc2xpa2UiLCJjb3B5IiwibW9iaWxlIiwiY2hhdCIsInN3YXAiLCJjbG9jayIsImRlc2t0b3AiLCJhY2giLCJidXNpbmVzc0FjY291bnQiLCJpbmRpdmlkdWFsQWNjb3VudCIsImFwaUtleSIsImJyb2tlbkxpbmsiLCJhdXRvQ29udmVyc2lvblJ1bGVzIiwidXNkIiwiZXVyIiwiZ2JwIiwianB5IiwiY255IiwiZ29vZ2xlIiwiYXBwbGUiLCJ0d2l0dGVyIiwibGlua2VkSW4iLCJwYXNza2V5IiwicGF1c2UiLCJub3RpZmljYXRpb25JbmZvIiwibm90aWZpY2F0aW9uV2FybmluZyIsIm5vdGlmaWNhdGlvblN1Y2Nlc3MiLCJub3RpZmljYXRpb25FcnJvciIsImRlcG9zaXRGaWF0Q3J5cHRvIiwid2l0aGRyYXdGaWF0Q3J5cHRvIiwiYWNjb3VudGRMb2NrZWQiLCJwZXJzb25hbFNldHRpbmdzIiwic2VjdXJpdHkyIiwiaWNvblBpeCIsIm5vQXBpS2V5cyIsIkljb25zIiwiX2EiLCJuYW1lIiwicmVzdCIsIkljb24iLCJhc3NpZ24iXSwibWFwcGluZ3MiOiJBQUFBLElBQUlBLE1BQU0sR0FBSSxJQUFJLElBQUksSUFBSSxDQUFDQSxNQUFNLElBQUssVUFBVUMsQ0FBQyxFQUFFQyxDQUFDLEVBQUU7RUFDbEQsSUFBSUMsQ0FBQyxHQUFHLENBQUMsQ0FBQztFQUNWLEtBQUssSUFBSUMsQ0FBQyxJQUFJSCxDQUFDLEVBQUUsSUFBSUksTUFBTSxDQUFDQyxTQUFTLENBQUNDLGNBQWMsQ0FBQ0MsSUFBSSxDQUFDUCxDQUFDLEVBQUVHLENBQUMsQ0FBQyxJQUFJRixDQUFDLENBQUNPLE9BQU8sQ0FBQ0wsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxFQUMvRUQsQ0FBQyxDQUFDQyxDQUFDLENBQUMsR0FBR0gsQ0FBQyxDQUFD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LEVBQWlCLEVBQUk7RUFBckIsSUFBRUMsSUFBSSxHQUFBRCxFQUFXLENBQWZDLElBQUk7SUFBS0MsSUFBSSxHQUFBaFUsTUFBQSxDQUFBOFQsRUFBQSxFQUFmLENBQUEsTUFBQSxDQUFpQixDQUFGO0VBQ2xCLElBQU1HLElBQUksR0FBRzlKLFFBQVEsQ0FBQzRKLElBQUksQ0FBQztFQUMzQixPQUFPRSxJQUFJLEdBQUdsVCxJQUFBLENBQUNrVCxJQUFJLEVBQUE1VCxNQUFBLENBQUE2VCxNQUFBLENBQUEsQ0FBQSxDQUFBLEVBQUtGLElBQUksQ0FBQSxDQUFJLEdBQUcsSUFBSTtBQUN6QyxDQUFDO0FBRUQsNEJBQWVoVCxJQUFJLENBQUM2UyxLQUFLLENBQUMiLCJmaWxlIjoiY29tcG9uZW50cy9JY29ucy9JY29ucy5qcyIsInNvdXJjZXNDb250ZW50IjpbInZhciBfX3Jlc3QgPSAodGhpcyAmJiB0aGlzLl9fcmVzdCkgfHwgZnVuY3Rpb24gKHMsIGUpIHtcbiAgICB2YXIgdCA9IHt9O1xuICAgIGZvciAodmFyIHAgaW4gcykgaWYgKE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbChzLCBwKSAmJiBlLmluZGV4T2YocCkgPCAwKVxuICAgICAgICB0W3BdID0gc1twXTtcbiAgICBpZiAocyAhPSBudWxsICYmIHR5cGVvZiBPYmplY3QuZ2V0T3duUHJvcGVydHlTeW1ib2xzID09PSBcImZ1bmN0aW9uXCIpXG4gICAgICAgIGZvciAodmFyIGkgPSAwLCBwID0gT2JqZWN0LmdldE93blByb3BlcnR5U3ltYm9scyhzKTsgaSA8IHAubGVuZ3RoOyBpKyspIHtcbiAgICAgICAgICAgIGlmIChlLmluZGV4T2YocFtpXSkgPCAwICYmIE9iamVjdC5wcm90b3R5cGUucHJvcGVydHlJc0VudW1lcmFibGUuY2FsbChzLCBwW2ldKSlcbiAgICAgICAgICAgICAgICB0W3BbaV1dID0gc1twW2ldXTtcbiAgICAgICAgfVxuICAgIHJldHVybiB0O1xufTtcbmltcG9ydCB7IGpzeCBhcyBfanN4IH0gZnJvbSBcInJlYWN0L2pzeC1ydW50aW1lXCI7XG5pbXBvcnQgeyBtZW1vIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgTG9nbywgTG9nb1dvcmQsIExvZ29OZXR3b3JrLCBMb2dvV2l0aFdvcmRzLCBMb2dvQmcsIExvZ29CZXRhLCBMb2dvV2l0aEJldGEsIH0gZnJvbSAnLi9Mb2dvJztcbmltcG9ydCAnLi9zdHlsZSc7XG5pbXBvcnQgeyBJbGx1c0NoZWNrZWQsIElsbHVzRW1haWxFcnJvciwgSWxsdXNMaW5rRXhwaXJlZCwgSWxsdXMyRkEsIElsbHVzTG9ja2VkLCBJbGx1c0Vycm9yLCBJbGx1c1JlZ2lvbk5vdFN1cHBvcnRlZCwgSWxsdXNJRCwgSWxsdXNWZXJpZmljYXRpb24sIElsbHVzUGFzc2tleSwgSWxsdXNBZGRBY2NvdW50LCBJbGx1c1BlbmRpbmcsIH0gZnJvbSAnLi9JbGx1c3RyYXRpb25zJztcbmltcG9ydCB7IFxuLyogUHJpbWFyeSBJY29ucyAqL1xuRGVwb3NpdEljb24sIFdpdGhkcmF3YWxJY29uLCBDb252ZXJzaW9uSWNvbiwgTWludFRva2VuSWNvbiwgQnVyblRva2VuSWNvbiwgQWNjb3VudExvY2tlZEljb24sIFBlbmRpbmdJY29uLCBTdWNjZXNzSWNvbiwgRmFpbEljb24sIEVycm9ySWNvbiwgXG4vKiBTdGF0dXMgSWNvbnMgKi9cblN0YXR1c1N1Y2Nlc3NJY29uLCBTdGF0dXNGYWlsSWNvbiwgXG4vKiBNZW51IEljb25zICovXG5EYXNoYm9hcmRJY29uLCBEaWdpdGFsQXNzZXRJY29uLCBBZGRyZXNzQm9va0ljb24sIExpbmtlZEJhbmtBY2NvdW50c0ljb24sIFdpcmVJY29uLCBTV0lGVEljb24sIEFjY291bnRJY29uLCBQcm9maWxlSWNvbiwgU2VjdXJpdHlJY29uLCBMb2dvdXRJY29uLCBQb3J0Zm9saW9JY29uLCBIb21lSWNvbiwgQ29udmVydEljb24sIFdpdGhkcmF3SWNvbiwgU2VuZEljb24sIE1lbnVEZXBvc2l0SWNvbiwgQ29tcGFueUljb24sIFBhcnRpZXNJY29uLCBUcmFuc2FjdGlvbnNJY29uLCBGaWF0SWNvbiwgTW9uZXlJY29uLCBTZW5kQ3J5cHRvSWNvbiwgXG4vKiBGdW5jdGlvbmFsIEljb25zICovXG5BcnJvd1VwSWNvbiwgQXJyb3dEb3duSWNvbiwgQXJyb3dMZWZ0SWNvbiwgQXJyb3dSaWdodEljb24sIEFkZEljb24sIE1pbnVzSWNvbiwgQ3Jvc3NJY29uLCBNb3JlSWNvbiwgQ2hldnJvbkRvd25JY29uLCBDaGV2cm9uVXBJY29uLCBDaGV2cm9uTGVmdEljb24sIENoZXZyb25SaWdodEljb24sIFNvcnRJY29uLCBDb2xsYXBzZUljb24sIEV4dGVuZEljb24sIFNwaW5uZXJJY29uLCBDaGVja0ljb24sIFJlbW92ZUljb24sIFBpeEljb24sIFxuLyogU3lzdGVtIEljb25zICovXG5JbmZvSWNvbiwgTm90aWZpY2F0aW9uc0ljb24sIEZhdm9yaXRlSWNvbiwgVHJhbnNmZXJIaXN0b3J5SWNvbiwgU3VwcG9ydEljb24sIEhlbHBJY29uLCBMYW5ndWFnZUljb24sIFNoYXJlSWNvbiwgUHJvZHVjdHNJY29uLCBIdWJJY29uLCBTeXN0ZW1TZWN1cml0eUljb24sIEZlZXNJY29uLCBTZXR0aW5nc0ljb24sIElESWNvbiwgVmlld0JhbGFuY2VJY29uLCBIaWRlQmFsYW5jZUljb24sIFByaXZhY3lJY29uLCBDYXJkSWNvbiwgQ29pbkljb24sIFdhbGxldEljb24sIEVtYWlsSWNvbiwgUmV3YXJkc0ljb24sIFRpbWVJY29uLCBMb2NhdGlvbkljb24sIENhbGVuZGFySWNvbiwgU2VjdXJpdHlDaGVja0ljb24sIERldmljZXNJY29uLCBJbWFnZXNJY29uLCBCYW5rSWNvbiwgQ29pbnNJY29uLCBFYXJuSWNvbiwgU2Nhbkljb24sIFNlYXJjaEljb24sIE1haW50ZW5hbmNlSWNvbiwgRWRpdEZpbGVJY29uLCBEb2N1bWVudEljb24sIFVwbG9hZEljb24sIEdpZnRJY29uLCBGaWx0ZXJJY29uLCBFeHBhbmRJY29uLCBTeXN0ZW1Db2xsYXBzZUljb24sIFJlZnJlc2hJY29uLCBUcmFuc2Zlckljb24sIExpbmtJY29uLCBTYXZlSWNvbiwgTGlrZUljb24sIERpc2xpa2VJY29uLCBDb3B5SWNvbiwgTW9iaWxlSWNvbiwgQ2hhdEljb24sIFN3YXBJY29uLCBDbG9ja0ljb24sIERlc2t0b3BJY29uLCBVU0RJY29uLCBFVVJJY29uLCBHQlBJY29uLCBKUFlJY29uLCBDTllJY29uLCBHb29nbGVJY29uLCBBcHBsZUljb24sIFR3aXR0ZXJJY29uLCBMaW5rZWRJbkljb24sIFBhc3NrZXlJY29uLCBBQ0hJY29uLCBCdXNpbmVzc0FjY291bnRJY29uLCBJbmRpdmlkdWFsQWNjb3VudEljb24sIEFQSUtleUljb24sIEJyb2tlbkxpbmtJY29uLCBQYXVzZUljb24sIEF1dG9Db252ZXJzaW9uUnVsZXNJY29uLCBOb3RpZmljYXRpb25JbmZvSWNvbiwgTm90aWZpY2F0aW9uV2FybmluZ0ljb24sIE5vdGlmaWNhdGlvblN1Y2Nlc3NJY29uLCBOb3RpZmljYXRpb25FcnJvckljb24sIH0gZnJvbSAnLi9TVkdzJztcbmNvbnN0IEljb25MaXN0ID0ge1xuICAgIGlsbHVzQ2hlY2tlZDogSWxsdXNDaGVja2VkLFxuICAgIGlsbHVzRW1haWxFcnJvcjogSWxsdXNFbWFpbEVycm9yLFxuICAgIGlsbHVzTGlua0V4cGlyZWQ6IElsbHVzTGlua0V4cGlyZWQsXG4gICAgaWxsdXMyRkE6IElsbHVzMkZBLFxuICAgIGlsbHVzTG9ja2VkOiBJbGx1c0xvY2tlZCxcbiAgICBpbGx1c0Vycm9yOiBJbGx1c0Vycm9yLFxuICAgIGlsbHVzUmVnaW9uTm90U3VwcG9ydGVkOiBJbGx1c1JlZ2lvbk5vdFN1cHBvcnRlZCxcbiAgICBpbGx1c0lEOiBJbGx1c0lELFxuICAgIGlsbHVzVmVyaWZpY2F0aW9uOiBJbGx1c1ZlcmlmaWNhdGlvbixcbiAgICBpbGx1c1Bhc3NrZXk6IElsbHVzUGFzc2tleSxcbiAgICBpbGx1c0FkZEFjY291bnQ6IElsbHVzQWRkQWNjb3VudCxcbiAgICBpbGx1c1BlbmRpbmc6IElsbHVzUGVuZGluZyxcbiAgICAvKiBMb2dvICovXG4gICAgbG9nbzogTG9nbyxcbiAgICBsb2dvV29yZDogTG9nb1dvcmQsXG4gICAgbG9nb05ldHdvcms6IExvZ29OZXR3b3JrLFxuICAgIGxvZ29XaXRoV29yZHM6IExvZ29XaXRoV29yZHMsXG4gICAgbG9nb0JnOiBMb2dvQmcsXG4gICAgbG9nb0JldGE6IExvZ29CZXRhLFxuICAgIGxvZ29XaXRoQmV0YTogTG9nb1dpdGhCZXRhLFxuICAgIC8qIFByaW1hcnkgSWNvbnMgKi9cbiAgICBkZXBvc2l0OiBEZXBvc2l0SWNvbixcbiAgICB3aXRoZHJhd2FsOiBXaXRoZHJhd2FsSWNvbixcbiAgICBjb252ZXJzaW9uOiBDb252ZXJzaW9uSWNvbixcbiAgICBtaW50VG9rZW46IE1pbnRUb2tlbkljb24sXG4gICAgYnVyblRva2VuOiBCdXJuVG9rZW5JY29uLFxuICAgIGFjY291bnRMb2NrZWQ6IEFjY291bnRMb2NrZWRJY29uLFxuICAgIHBlbmRpbmc6IFBlbmRpbmdJY29uLFxuICAgIHN1Y2Nlc3M6IFN1Y2Nlc3NJY29uLFxuICAgIGZhaWw6IEZhaWxJY29uLFxuICAgIGVycm9yOiBFcnJvckljb24sXG4gICAgLyogU3RhdHVzIEljb25zICovXG4gICAgc3RhdHVzU3VjY2VzczogU3RhdHVzU3VjY2Vzc0ljb24sXG4gICAgc3RhdHVzRmFpbDogU3RhdHVzRmFpbEljb24sXG4gICAgLyogTWVudSBJY29ucyAqL1xuICAgIGRhc2hib2FyZDogRGFzaGJvYXJkSWNvbixcbiAgICBkaWdpdGFsQXNzZXQ6IERpZ2l0YWxBc3NldEljb24sXG4gICAgYWRkcmVzc0Jvb2s6IEFkZHJlc3NCb29rSWNvbixcbiAgICBsaW5rZWRCYW5rQWNjb3VudHM6IExpbmtlZEJhbmtBY2NvdW50c0ljb24sXG4gICAgd2lyZTogV2lyZUljb24sXG4gICAgc3dpZnQ6IFNXSUZUSWNvbixcbiAgICBhY2NvdW50OiBBY2NvdW50SWNvbixcbiAgICBwcm9maWxlOiBQcm9maWxlSWNvbixcbiAgICBzZWN1cml0eTogU2VjdXJpdHlJY29uLFxuICAgIGxvZ291dDogTG9nb3V0SWNvbixcbiAgICBwb3J0Zm9saW86IFBvcnRmb2xpb0ljb24sXG4gICAgaG9tZTogSG9tZUljb24sXG4gICAgY29udmVydDogQ29udmVydEljb24sXG4gICAgd2l0aGRyYXc6IFdpdGhkcmF3SWNvbixcbiAgICBzZW5kOiBTZW5kSWNvbixcbiAgICBtZW51RGVwb3NpdDogTWVudURlcG9zaXRJY29uLFxuICAgIGNvbXBhbnk6IENvbXBhbnlJY29uLFxuICAgIHBhcnRpZXM6IFBhcnRpZXNJY29uLFxuICAgIHRyYW5zYWN0aW9uczogVHJhbnNhY3Rpb25zSWNvbixcbiAgICBmaWF0OiBGaWF0SWNvbixcbiAgICBtb25leTogTW9uZXlJY29uLFxuICAgIHNlbmRDcnlwdG86IFNlbmRDcnlwdG9JY29uLFxuICAgIC8qIEZ1bmN0aW9uYWwgSWNvbnMgKi9cbiAgICBhcnJvd1VwOiBBcnJvd1VwSWNvbixcbiAgICBhcnJvd0Rvd246IEFycm93RG93bkljb24sXG4gICAgYXJyb3dMZWZ0OiBBcnJvd0xlZnRJY29uLFxuICAgIGFycm93UmlnaHQ6IEFycm93UmlnaHRJY29uLFxuICAgIGFkZDogQWRkSWNvbixcbiAgICBtaW51czogTWludXNJY29uLFxuICAgIGNyb3NzOiBDcm9zc0ljb24sXG4gICAgbW9yZTogTW9yZUljb24sXG4gICAgY2hldnJvbkRvd246IENoZXZyb25Eb3duSWNvbixcbiAgICBjaGV2cm9uVXA6IENoZXZyb25VcEljb24sXG4gICAgY2hldnJvbkxlZnQ6IENoZXZyb25MZWZ0SWNvbixcbiAgICBjaGV2cm9uUmlnaHQ6IENoZXZyb25SaWdodEljb24sXG4gICAgc29ydDogU29ydEljb24sXG4gICAgY29sbGFwc2U6IENvbGxhcHNlSWNvbixcbiAgICBleHRlbmQ6IEV4dGVuZEljb24sXG4gICAgc3Bpbm5lcjogU3Bpbm5lckljb24sXG4gICAgY2hlY2s6IENoZWNrSWNvbixcbiAgICByZW1vdmU6IFJlbW92ZUljb24sXG4gICAgcGl4OiBQaXhJY29uLFxuICAgIC8qIFN5c3RlbSBJY29ucyAqL1xuICAgIGluZm86IEluZm9JY29uLFxuICAgIG5vdGlmaWNhdGlvbnM6IE5vdGlmaWNhdGlvbnNJY29uLFxuICAgIGZhdm9yaXRlOiBGYXZvcml0ZUljb24sXG4gICAgdHJhbnNmZXJIaXN0b3J5OiBUcmFuc2Zlckhpc3RvcnlJY29uLFxuICAgIHN1cHBvcnQ6IFN1cHBvcnRJY29uLFxuICAgIGhlbHA6IEhlbHBJY29uLFxuICAgIGxhbmd1YWdlOiBMYW5ndWFnZUljb24sXG4gICAgc2hhcmU6IFNoYXJlSWNvbixcbiAgICBwcm9kdWN0czogUHJvZHVjdHNJY29uLFxuICAgIGh1YjogSHViSWNvbixcbiAgICBzeXN0ZW1TZWN1cml0eTogU3lzdGVtU2VjdXJpdHlJY29uLFxuICAgIGZlZXM6IEZlZXNJY29uLFxuICAgIHNldHRpbmdzOiBTZXR0aW5nc0ljb24sXG4gICAgaWQ6IElESWNvbixcbiAgICB2aWV3QmFsYW5jZTogVmlld0JhbGFuY2VJY29uLFxuICAgIGhpZGVCYWxhbmNlOiBIaWRlQmFsYW5jZUljb24sXG4gICAgcHJpdmFjeTogUHJpdmFjeUljb24sXG4gICAgY2FyZDogQ2FyZEljb24sXG4gICAgY29pbjogQ29pbkljb24sXG4gICAgd2FsbGV0OiBXYWxsZXRJY29uLFxuICAgIGVtYWlsOiBFbWFpbEljb24sXG4gICAgcmV3YXJkczogUmV3YXJkc0ljb24sXG4gICAgdGltZTogVGltZUljb24sXG4gICAgbG9jYXRpb246IExvY2F0aW9uSWNvbixcbiAgICBjYWxlbmRhcjogQ2FsZW5kYXJJY29uLFxuICAgIHNlY3VyaXR5Q2hlY2s6IFNlY3VyaXR5Q2hlY2tJY29uLFxuICAgIGRldmljZXM6IERldmljZXNJY29uLFxuICAgIGltYWdlczogSW1hZ2VzSWNvbixcbiAgICBiYW5rOiBCYW5rSWNvbixcbiAgICBjb2luczogQ29pbnNJY29uLFxuICAgIGVhcm46IEVhcm5JY29uLFxuICAgIHNjYW46IFNjYW5JY29uLFxuICAgIHNlYXJjaDogU2VhcmNoSWNvbixcbiAgICBtYWludGVuYW5jZTogTWFpbnRlbmFuY2VJY29uLFxuICAgIGVkaXRGaWxlOiBFZGl0RmlsZUljb24sXG4gICAgZG9jdW1lbnQ6IERvY3VtZW50SWNvbixcbiAgICB1cGxvYWQ6IFVwbG9hZEljb24sXG4gICAgZ2lmdDogR2lmdEljb24sXG4gICAgZmlsdGVyOiBGaWx0ZXJJY29uLFxuICAgIGV4cGFuZDogRXhwYW5kSWNvbixcbiAgICBzeXN0ZW1Db2xsYXBzZTogU3lzdGVtQ29sbGFwc2VJY29uLFxuICAgIHJlZnJlc2g6IFJlZnJlc2hJY29uLFxuICAgIHRyYW5zZmVyOiBUcmFuc2Zlckljb24sXG4gICAgbGluazogTGlua0ljb24sXG4gICAgc2F2ZTogU2F2ZUljb24sXG4gICAgbGlrZTogTGlrZUljb24sXG4gICAgZGlzbGlrZTogRGlzbGlrZUljb24sXG4gICAgY29weTogQ29weUljb24sXG4gICAgbW9iaWxlOiBNb2JpbGVJY29uLFxuICAgIGNoYXQ6IENoYXRJY29uLFxuICAgIHN3YXA6IFN3YXBJY29uLFxuICAgIGNsb2NrOiBDbG9ja0ljb24sXG4gICAgZGVza3RvcDogRGVza3RvcEljb24sXG4gICAgYWNoOiBBQ0hJY29uLFxuICAgIGJ1c2luZXNzQWNjb3VudDogQnVzaW5lc3NBY2NvdW50SWNvbixcbiAgICBpbmRpdmlkdWFsQWNjb3VudDogSW5kaXZpZHVhbEFjY291bnRJY29uLFxuICAgIGFwaUtleTogQVBJS2V5SWNvbixcbiAgICBicm9rZW5MaW5rOiBCcm9rZW5MaW5rSWNvbixcbiAgICBhdXRvQ29udmVyc2lvblJ1bGVzOiBBdXRvQ29udmVyc2lvblJ1bGVzSWNvbixcbiAgICAvKiBDdXJyZW5jeSBJY29ucyAqL1xuICAgIHVzZDogVVNESWNvbixcbiAgICBldXI6IEVVUkljb24sXG4gICAgZ2JwOiBHQlBJY29uLFxuICAgIGpweTogSlBZSWNvbixcbiAgICBjbnk6IENOWUljb24sXG4gICAgLyogU29jaWFsIEljb25zICovXG4gICAgZ29vZ2xlOiBHb29nbGVJY29uLFxuICAgIGFwcGxlOiBBcHBsZUljb24sXG4gICAgdHdpdHRlcjogVHdpdHRlckljb24sXG4gICAgbGlua2VkSW46IExpbmtlZEluSWNvbixcbiAgICBwYXNza2V5OiBQYXNza2V5SWNvbixcbiAgICBwYXVzZTogUGF1c2VJY29uLFxuICAgIC8qIE5vdGlmaWNhdGlvbiBJY29ucyAqL1xuICAgIG5vdGlmaWNhdGlvbkluZm86IE5vdGlmaWNhdGlvbkluZm9JY29uLFxuICAgIG5vdGlmaWNhdGlvbldhcm5pbmc6IE5vdGlmaWNhdGlvbldhcm5pbmdJY29uLFxuICAgIG5vdGlmaWNhdGlvblN1Y2Nlc3M6IE5vdGlmaWNhdGlvblN1Y2Nlc3NJY29uLFxuICAgIG5vdGlmaWNhdGlvbkVycm9yOiBOb3RpZmljYXRpb25FcnJvckljb24sXG4gICAgLyogRmlnbWEgQWxpYXNlcyAqL1xuICAgIGRlcG9zaXRGaWF0Q3J5cHRvOiBEZXBvc2l0SWNvbixcbiAgICB3aXRoZHJhd0ZpYXRDcnlwdG86IFdpdGhkcmF3YWxJY29uLFxuICAgIGFjY291bnRkTG9ja2VkOiBBY2NvdW50TG9ja2VkSWNvbixcbiAgICBwZXJzb25hbFNldHRpbmdzOiBBY2NvdW50SWNvbixcbiAgICBzZWN1cml0eTI6IFN5c3RlbVNlY3VyaXR5SWNvbixcbiAgICBpY29uUGl4OiBQaXhJY29uLFxuICAgIG5vQXBpS2V5czogQnJva2VuTGlua0ljb24sXG59O1xuZXhwb3J0IGNvbnN0IEljb25zID0gKF9hKSA9PiB7XG4gICAgdmFyIHsgbmFtZSB9ID0gX2EsIHJlc3QgPSBfX3Jlc3QoX2EsIFtcIm5hbWVcIl0pO1xuICAgIGNvbnN0IEljb24gPSBJY29uTGlzdFtuYW1lXTtcbiAgICByZXR1cm4gSWNvbiA/IF9qc3goSWNvbiwgT2JqZWN0LmFzc2lnbih7fSwgcmVzdCkpIDogbnVsbDtcbn07XG5leHBvcnQgZGVmYXVsdCBtZW1vKEljb25zKTsiLG51bGxdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIn0=
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import type { IconWrapperProps } from './interface';
|
|
3
|
+
export interface IllustrationsCustomProps {
|
|
4
|
+
borderColor?: string;
|
|
5
|
+
gradientColor?: string | [string, string];
|
|
6
|
+
}
|
|
7
|
+
export declare const IllusChecked: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
8
|
+
export declare const IllusEmailError: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
9
|
+
export declare const IllusLinkExpired: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
10
|
+
export declare const Illus2FA: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
11
|
+
export declare const IllusLocked: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
12
|
+
export declare const IllusError: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
13
|
+
export declare const IllusRegionNotSupported: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
14
|
+
export declare const IllusID: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
15
|
+
export declare const IllusVerification: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
16
|
+
export declare const IllusPasskey: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
17
|
+
export declare const IllusPending: FC<IconWrapperProps & IllustrationsCustomProps>;
|
|
18
|
+
export declare const IllusAddAccount: FC<IconWrapperProps & IllustrationsCustomProps>;
|