@aloudata/aloudata-design 0.2.5 → 0.3.0-beta.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/es/Avatar/index.d.ts +15 -0
- package/es/Avatar/index.js +33 -0
- package/es/Avatar/style/index.d.ts +2 -0
- package/es/Avatar/style/index.js +2 -0
- package/es/Avatar/style/index.less +34 -0
- package/es/Breadcrumb/index.d.ts +8 -0
- package/es/Breadcrumb/index.js +36 -0
- package/es/Breadcrumb/style/index.d.ts +2 -0
- package/es/Breadcrumb/style/index.js +2 -0
- package/es/Breadcrumb/style/index.less +28 -0
- package/es/Button/index.d.ts +4 -4
- package/es/Button/index.js +28 -23
- package/es/Button/style/index.less +158 -125
- package/es/Button/style/variables.less +60 -0
- package/es/Checkbox/style/index.less +16 -1
- package/es/ConfigProvider/index.d.ts +1 -0
- package/es/ConfigProvider/index.js +1 -0
- package/es/Dropdown/Button.js +1 -1
- package/es/Dropdown/style/index.less +41 -8
- package/es/Empty/image/Authority.d.ts +3 -0
- package/es/Empty/image/Authority.js +360 -0
- package/es/Empty/image/Dataspace.d.ts +3 -0
- package/es/Empty/image/Dataspace.js +271 -0
- package/es/Empty/image/Search.d.ts +3 -0
- package/es/Empty/image/Search.js +156 -0
- package/es/Empty/image/Simple.d.ts +3 -0
- package/es/Empty/image/Simple.js +20 -0
- package/es/Empty/image/Worksheet.d.ts +3 -0
- package/es/Empty/image/Worksheet.js +270 -0
- package/es/Empty/image/empty.d.ts +3 -0
- package/es/Empty/image/empty.js +139 -0
- package/es/Empty/index.d.ts +21 -5
- package/es/Empty/index.js +84 -54
- package/es/Empty/style/index.less +56 -11
- package/es/Icon/index.d.ts +2 -2
- package/es/Icon/index.js +10 -2
- package/es/Input/components/Group/index.d.ts +4 -2
- package/es/Input/components/Group/index.js +23 -1
- package/es/Input/components/Input/index.d.ts +1 -1
- package/es/Input/components/Input/index.js +12 -0
- package/es/Input/components/Password/index.d.ts +7 -1
- package/es/Input/components/Password/index.js +25 -3
- package/es/Input/style/index.less +278 -43
- package/es/InputNumber/index.d.ts +4 -0
- package/es/InputNumber/index.js +32 -0
- package/es/InputNumber/style/index.d.ts +2 -0
- package/es/InputNumber/style/index.js +2 -0
- package/es/InputNumber/style/index.less +152 -0
- package/es/Menu/Divider.d.ts +2 -1
- package/es/Menu/MenuItem.d.ts +2 -1
- package/es/Menu/SubMenu.d.ts +2 -1
- package/es/Menu/SubMenu.js +1 -1
- package/es/Menu/index.d.ts +2 -1
- package/es/Menu/style/index.less +0 -1
- package/es/Modal/index.d.ts +21 -0
- package/es/Modal/index.js +93 -0
- package/es/Modal/style/index.d.ts +2 -0
- package/es/Modal/style/index.js +2 -0
- package/es/Modal/style/index.less +206 -0
- package/es/Navigator/components/Header/index.d.ts +9 -0
- package/es/Navigator/components/Header/index.js +18 -0
- package/es/Navigator/components/Menu/index.d.ts +7 -13
- package/es/Navigator/components/Menu/index.js +26 -162
- package/es/Navigator/components/MenuItem/index.d.ts +21 -0
- package/es/Navigator/components/MenuItem/index.js +39 -0
- package/es/Navigator/index.d.ts +19 -8
- package/es/Navigator/index.js +6 -15
- package/es/Navigator/style/bg.png +0 -0
- package/es/Navigator/style/index.less +66 -176
- package/es/Popover/index.d.ts +5 -0
- package/es/Popover/index.js +22 -0
- package/es/Popover/style/index.d.ts +2 -0
- package/es/Popover/style/index.js +2 -0
- package/es/Popover/style/index.less +37 -0
- package/es/Radio/index.d.ts +2 -3
- package/es/Select/index.d.ts +36 -9
- package/es/Select/index.js +154 -7
- package/es/Select/rc-select/BaseSelect.d.ts +116 -0
- package/es/Select/rc-select/BaseSelect.js +641 -0
- package/es/Select/rc-select/OptGroup.d.ts +12 -0
- package/es/Select/{OptionsList → rc-select}/OptGroup.js +1 -0
- package/es/Select/rc-select/Option.d.ts +14 -0
- package/es/Select/{OptionsList/Options.js → rc-select/Option.js} +1 -0
- package/es/Select/rc-select/OptionList.d.ts +10 -0
- package/es/Select/rc-select/OptionList.js +401 -0
- package/es/Select/rc-select/Select.d.ts +109 -0
- package/es/Select/rc-select/Select.js +547 -0
- package/es/Select/rc-select/SelectContext.d.ts +20 -0
- package/es/Select/rc-select/SelectContext.js +4 -0
- package/es/Select/rc-select/SelectTrigger.d.ts +30 -0
- package/es/Select/rc-select/SelectTrigger.js +136 -0
- package/es/Select/rc-select/Selector/Input.d.ts +26 -0
- package/es/Select/rc-select/Selector/Input.js +114 -0
- package/es/Select/rc-select/Selector/MultipleSelector.d.ts +16 -0
- package/es/Select/rc-select/Selector/MultipleSelector.js +236 -0
- package/es/Select/rc-select/Selector/SingleSelector.d.ts +8 -0
- package/es/Select/rc-select/Selector/SingleSelector.js +112 -0
- package/es/Select/rc-select/Selector/index.d.ts +80 -0
- package/es/Select/rc-select/Selector/index.js +194 -0
- package/es/Select/rc-select/TransBtn.d.ts +12 -0
- package/es/Select/rc-select/TransBtn.js +42 -0
- package/es/Select/rc-select/hooks/useBaseProps.d.ts +13 -0
- package/es/Select/rc-select/hooks/useBaseProps.js +11 -0
- package/es/Select/rc-select/hooks/useCache.d.ts +7 -0
- package/es/Select/rc-select/hooks/useCache.js +49 -0
- package/es/Select/rc-select/hooks/useDelayReset.d.ts +5 -0
- package/es/Select/rc-select/hooks/useDelayReset.js +50 -0
- package/es/Select/rc-select/hooks/useFilterOptions.d.ts +3 -0
- package/es/Select/rc-select/hooks/useFilterOptions.js +75 -0
- package/es/Select/rc-select/hooks/useId.d.ts +5 -0
- package/es/Select/rc-select/hooks/useId.js +47 -0
- package/es/Select/rc-select/hooks/useLayoutEffect.d.ts +5 -0
- package/es/Select/rc-select/hooks/useLayoutEffect.js +17 -0
- package/es/Select/rc-select/hooks/useLock.d.ts +7 -0
- package/es/Select/rc-select/hooks/useLock.js +35 -0
- package/es/Select/rc-select/hooks/useOptions.d.ts +11 -0
- package/es/Select/rc-select/hooks/useOptions.js +53 -0
- package/es/Select/rc-select/hooks/useRefFunc.d.ts +5 -0
- package/es/Select/rc-select/hooks/useRefFunc.js +15 -0
- package/es/Select/rc-select/hooks/useSelectTriggerControl.d.ts +1 -0
- package/es/Select/rc-select/hooks/useSelectTriggerControl.js +40 -0
- package/es/Select/rc-select/index.d.ts +10 -0
- package/es/Select/rc-select/index.js +7 -0
- package/es/Select/rc-select/interface.d.ts +10 -0
- package/es/Select/{interface.js → rc-select/interface.js} +0 -0
- package/es/Select/rc-select/utils/commonUtil.d.ts +4 -0
- package/es/Select/rc-select/utils/commonUtil.js +12 -0
- package/es/Select/rc-select/utils/keyUtil.d.ts +2 -0
- package/es/Select/rc-select/utils/keyUtil.js +8 -0
- package/es/Select/rc-select/utils/legacyUtil.d.ts +3 -0
- package/es/Select/rc-select/utils/legacyUtil.js +58 -0
- package/es/Select/rc-select/utils/platformUtil.d.ts +1 -0
- package/es/Select/rc-select/utils/platformUtil.js +4 -0
- package/es/Select/rc-select/utils/valueUtil.d.ts +22 -0
- package/es/Select/rc-select/utils/valueUtil.js +157 -0
- package/es/Select/rc-select/utils/warningPropsUtil.d.ts +3 -0
- package/es/Select/rc-select/utils/warningPropsUtil.js +114 -0
- package/es/Select/style/index.d.ts +2 -0
- package/es/Select/style/index.js +4 -1
- package/es/Select/style/index.less +173 -494
- package/es/Select/style/multiple.less +222 -0
- package/es/Select/style/rtl.less +168 -0
- package/es/Select/style/select.less +337 -0
- package/es/Select/style/single.less +179 -0
- package/es/Select/style/status.less +48 -0
- package/es/Select/style/variables.less +56 -0
- package/es/Select/style/variables.less.d.ts +97 -0
- package/es/Select/utils/iconUtil.d.ts +24 -0
- package/es/Select/utils/iconUtil.js +87 -0
- package/es/Space/index.d.ts +1 -1
- package/es/Space/index.js +0 -1
- package/es/Table/Table.d.ts +6 -0
- package/es/Table/Table.js +464 -0
- package/es/Table/components/Empty/empty-img.png +0 -0
- package/es/Table/components/Empty/index.d.ts +4 -0
- package/es/Table/components/Empty/index.js +16 -0
- package/es/Table/components/Empty/index.less +24 -0
- package/es/Table/index.d.ts +2 -4
- package/es/Table/index.js +2 -463
- package/es/Table/interface.d.ts +11 -15
- package/es/Table/style/index.less +44 -21
- package/es/Tabs/style/index.less +39 -7
- package/es/Tooltip/style/index.less +1 -0
- package/es/index.d.ts +14 -2
- package/es/index.js +7 -1
- package/es/style/index.less +2 -1
- package/es/style/mixins/index.less +8 -0
- package/es/style/themes/default/index.less +1 -1
- package/es/style/themes/default/themeColor.module.less +58 -94
- package/es/style/themes/default/themeColor.module.less.d.ts +1 -17
- package/lib/Avatar/index.d.ts +15 -0
- package/lib/Avatar/index.js +57 -0
- package/lib/Avatar/style/index.d.ts +2 -0
- package/lib/Avatar/style/index.js +5 -0
- package/lib/Avatar/style/index.less +34 -0
- package/lib/Breadcrumb/index.d.ts +8 -0
- package/lib/Breadcrumb/index.js +50 -0
- package/lib/Breadcrumb/style/index.d.ts +2 -0
- package/lib/Breadcrumb/style/index.js +5 -0
- package/lib/Breadcrumb/style/index.less +28 -0
- package/lib/Button/index.d.ts +4 -4
- package/lib/Button/index.js +28 -24
- package/lib/Button/style/index.less +158 -125
- package/lib/Button/style/variables.less +60 -0
- package/lib/Checkbox/style/index.less +16 -1
- package/lib/ConfigProvider/index.d.ts +1 -0
- package/lib/ConfigProvider/index.js +26 -0
- package/lib/Dropdown/Button.js +1 -1
- package/lib/Dropdown/style/index.less +41 -8
- package/lib/Empty/image/Authority.d.ts +3 -0
- package/lib/Empty/image/Authority.js +374 -0
- package/lib/Empty/image/Dataspace.d.ts +3 -0
- package/lib/Empty/image/Dataspace.js +285 -0
- package/lib/Empty/image/Search.d.ts +3 -0
- package/lib/Empty/image/Search.js +170 -0
- package/lib/Empty/image/Simple.d.ts +3 -0
- package/lib/Empty/image/Simple.js +34 -0
- package/lib/Empty/image/Worksheet.d.ts +3 -0
- package/lib/Empty/image/Worksheet.js +284 -0
- package/lib/Empty/image/empty.d.ts +3 -0
- package/lib/Empty/image/empty.js +153 -0
- package/lib/Empty/index.d.ts +21 -5
- package/lib/Empty/index.js +94 -53
- package/lib/Empty/style/index.less +56 -11
- package/lib/Icon/index.d.ts +2 -2
- package/lib/Icon/index.js +10 -2
- package/lib/Input/components/Group/index.d.ts +4 -2
- package/lib/Input/components/Group/index.js +24 -1
- package/lib/Input/components/Input/index.d.ts +1 -1
- package/lib/Input/components/Input/index.js +13 -0
- package/lib/Input/components/Password/index.d.ts +7 -1
- package/lib/Input/components/Password/index.js +25 -2
- package/lib/Input/style/index.less +278 -43
- package/lib/InputNumber/index.d.ts +4 -0
- package/lib/InputNumber/index.js +45 -0
- package/lib/InputNumber/style/index.d.ts +2 -0
- package/lib/InputNumber/style/index.js +5 -0
- package/lib/InputNumber/style/index.less +152 -0
- package/lib/Menu/Divider.d.ts +2 -1
- package/lib/Menu/MenuItem.d.ts +2 -1
- package/lib/Menu/SubMenu.d.ts +2 -1
- package/lib/Menu/SubMenu.js +1 -1
- package/lib/Menu/index.d.ts +2 -1
- package/lib/Menu/style/index.less +0 -1
- package/lib/Modal/index.d.ts +21 -0
- package/lib/Modal/index.js +119 -0
- package/lib/Modal/style/index.d.ts +2 -0
- package/lib/Modal/style/index.js +5 -0
- package/lib/Modal/style/index.less +206 -0
- package/lib/Navigator/components/Header/index.d.ts +9 -0
- package/lib/Navigator/components/Header/index.js +28 -0
- package/lib/Navigator/components/Menu/index.d.ts +7 -13
- package/lib/Navigator/components/Menu/index.js +25 -162
- package/lib/Navigator/components/MenuItem/index.d.ts +21 -0
- package/lib/Navigator/components/MenuItem/index.js +56 -0
- package/lib/Navigator/index.d.ts +19 -8
- package/lib/Navigator/index.js +7 -15
- package/lib/Navigator/style/bg.png +0 -0
- package/lib/Navigator/style/index.less +66 -176
- package/lib/Popover/index.d.ts +5 -0
- package/lib/Popover/index.js +35 -0
- package/lib/Popover/style/index.d.ts +2 -0
- package/lib/Popover/style/index.js +5 -0
- package/lib/Popover/style/index.less +37 -0
- package/lib/Radio/index.d.ts +2 -3
- package/lib/Select/index.d.ts +36 -9
- package/lib/Select/index.js +166 -18
- package/lib/Select/rc-select/BaseSelect.d.ts +116 -0
- package/lib/Select/rc-select/BaseSelect.js +672 -0
- package/lib/Select/rc-select/OptGroup.d.ts +12 -0
- package/lib/Select/{OptionsList → rc-select}/OptGroup.js +1 -0
- package/lib/Select/rc-select/Option.d.ts +14 -0
- package/lib/Select/{OptionsList/Options.js → rc-select/Option.js} +1 -0
- package/lib/Select/rc-select/OptionList.d.ts +10 -0
- package/lib/Select/rc-select/OptionList.js +427 -0
- package/lib/Select/rc-select/Select.d.ts +109 -0
- package/lib/Select/rc-select/Select.js +545 -0
- package/lib/Select/rc-select/SelectContext.d.ts +20 -0
- package/lib/Select/rc-select/SelectContext.js +19 -0
- package/lib/Select/rc-select/SelectTrigger.d.ts +30 -0
- package/lib/Select/rc-select/SelectTrigger.js +153 -0
- package/lib/Select/rc-select/Selector/Input.d.ts +26 -0
- package/lib/Select/rc-select/Selector/Input.js +132 -0
- package/lib/Select/rc-select/Selector/MultipleSelector.d.ts +16 -0
- package/lib/Select/rc-select/Selector/MultipleSelector.js +257 -0
- package/lib/Select/rc-select/Selector/SingleSelector.d.ts +8 -0
- package/lib/Select/rc-select/Selector/SingleSelector.js +129 -0
- package/lib/Select/rc-select/Selector/index.d.ts +80 -0
- package/lib/Select/rc-select/Selector/index.js +203 -0
- package/lib/Select/rc-select/TransBtn.d.ts +12 -0
- package/lib/Select/rc-select/TransBtn.js +59 -0
- package/lib/Select/rc-select/hooks/useBaseProps.d.ts +13 -0
- package/lib/Select/rc-select/hooks/useBaseProps.js +28 -0
- package/lib/Select/rc-select/hooks/useCache.d.ts +7 -0
- package/lib/Select/rc-select/hooks/useCache.js +63 -0
- package/lib/Select/rc-select/hooks/useDelayReset.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useDelayReset.js +62 -0
- package/lib/Select/rc-select/hooks/useFilterOptions.d.ts +3 -0
- package/lib/Select/rc-select/hooks/useFilterOptions.js +91 -0
- package/lib/Select/rc-select/hooks/useId.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useId.js +68 -0
- package/lib/Select/rc-select/hooks/useLayoutEffect.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useLayoutEffect.js +32 -0
- package/lib/Select/rc-select/hooks/useLock.d.ts +7 -0
- package/lib/Select/rc-select/hooks/useLock.js +49 -0
- package/lib/Select/rc-select/hooks/useOptions.d.ts +11 -0
- package/lib/Select/rc-select/hooks/useOptions.js +68 -0
- package/lib/Select/rc-select/hooks/useRefFunc.d.ts +5 -0
- package/lib/Select/rc-select/hooks/useRefFunc.js +29 -0
- package/lib/Select/rc-select/hooks/useSelectTriggerControl.d.ts +1 -0
- package/lib/Select/rc-select/hooks/useSelectTriggerControl.js +54 -0
- package/lib/Select/rc-select/index.d.ts +10 -0
- package/lib/Select/rc-select/index.js +45 -0
- package/lib/Select/rc-select/interface.d.ts +10 -0
- package/lib/Select/{interface.js → rc-select/interface.js} +0 -0
- package/lib/Select/rc-select/utils/commonUtil.d.ts +4 -0
- package/lib/Select/rc-select/utils/commonUtil.js +23 -0
- package/lib/Select/rc-select/utils/keyUtil.d.ts +2 -0
- package/lib/Select/rc-select/utils/keyUtil.js +17 -0
- package/lib/Select/rc-select/utils/legacyUtil.d.ts +3 -0
- package/lib/Select/rc-select/utils/legacyUtil.js +73 -0
- package/lib/Select/rc-select/utils/platformUtil.d.ts +1 -0
- package/lib/Select/rc-select/utils/platformUtil.js +11 -0
- package/lib/Select/rc-select/utils/valueUtil.d.ts +22 -0
- package/lib/Select/rc-select/utils/valueUtil.js +172 -0
- package/lib/Select/rc-select/utils/warningPropsUtil.d.ts +3 -0
- package/lib/Select/rc-select/utils/warningPropsUtil.js +132 -0
- package/lib/Select/style/index.d.ts +2 -0
- package/lib/Select/style/index.js +4 -0
- package/lib/Select/style/index.less +173 -494
- package/lib/Select/style/multiple.less +222 -0
- package/lib/Select/style/rtl.less +168 -0
- package/lib/Select/style/select.less +337 -0
- package/lib/Select/style/single.less +179 -0
- package/lib/Select/style/status.less +48 -0
- package/lib/Select/style/variables.less +56 -0
- package/lib/Select/style/variables.less.d.ts +97 -0
- package/lib/Select/utils/iconUtil.d.ts +24 -0
- package/lib/Select/utils/iconUtil.js +109 -0
- package/lib/Space/index.d.ts +1 -1
- package/lib/Space/index.js +0 -6
- package/lib/Table/Table.d.ts +6 -0
- package/lib/Table/Table.js +491 -0
- package/lib/Table/components/Empty/empty-img.png +0 -0
- package/lib/Table/components/Empty/index.d.ts +4 -0
- package/lib/Table/components/Empty/index.js +30 -0
- package/lib/Table/components/Empty/index.less +24 -0
- package/lib/Table/index.d.ts +2 -4
- package/lib/Table/index.js +2 -478
- package/lib/Table/interface.d.ts +11 -15
- package/lib/Table/style/index.less +44 -21
- package/lib/Tabs/style/index.less +39 -7
- package/lib/Tooltip/style/index.less +1 -0
- package/lib/index.d.ts +14 -2
- package/lib/index.js +48 -0
- package/lib/style/index.less +2 -1
- package/lib/style/mixins/index.less +8 -0
- package/lib/style/themes/default/index.less +1 -1
- package/lib/style/themes/default/themeColor.module.less +58 -94
- package/lib/style/themes/default/themeColor.module.less.d.ts +1 -17
- package/package.json +3 -2
- package/es/Select/BaseSelect.d.ts +0 -5
- package/es/Select/BaseSelect.js +0 -413
- package/es/Select/OptionsList/OptGroup.d.ts +0 -7
- package/es/Select/OptionsList/OptionItem/RenderGroup.d.ts +0 -9
- package/es/Select/OptionsList/OptionItem/RenderGroup.js +0 -16
- package/es/Select/OptionsList/OptionItem/RenderLabelIcon.d.ts +0 -10
- package/es/Select/OptionsList/OptionItem/RenderLabelIcon.js +0 -45
- package/es/Select/OptionsList/OptionItem/RenderOption.d.ts +0 -16
- package/es/Select/OptionsList/OptionItem/RenderOption.js +0 -79
- package/es/Select/OptionsList/OptionItem/RenderTooltip.d.ts +0 -8
- package/es/Select/OptionsList/OptionItem/RenderTooltip.js +0 -25
- package/es/Select/OptionsList/OptionItem.d.ts +0 -4
- package/es/Select/OptionsList/OptionItem.js +0 -4
- package/es/Select/OptionsList/Options.d.ts +0 -7
- package/es/Select/OptionsList/index.d.ts +0 -4
- package/es/Select/OptionsList/index.js +0 -176
- package/es/Select/Selector/index.d.ts +0 -4
- package/es/Select/Selector/index.js +0 -252
- package/es/Select/VirtualList.d.ts +0 -5
- package/es/Select/VirtualList.js +0 -29
- package/es/Select/hooks/useCacheOption.d.ts +0 -9
- package/es/Select/hooks/useCacheOption.js +0 -107
- package/es/Select/interface.d.ts +0 -235
- package/es/Select/utils.d.ts +0 -21
- package/es/Select/utils.js +0 -193
- package/lib/Select/BaseSelect.d.ts +0 -5
- package/lib/Select/BaseSelect.js +0 -446
- package/lib/Select/OptionsList/OptGroup.d.ts +0 -7
- package/lib/Select/OptionsList/OptionItem/RenderGroup.d.ts +0 -9
- package/lib/Select/OptionsList/OptionItem/RenderGroup.js +0 -27
- package/lib/Select/OptionsList/OptionItem/RenderLabelIcon.d.ts +0 -10
- package/lib/Select/OptionsList/OptionItem/RenderLabelIcon.js +0 -60
- package/lib/Select/OptionsList/OptionItem/RenderOption.d.ts +0 -16
- package/lib/Select/OptionsList/OptionItem/RenderOption.js +0 -94
- package/lib/Select/OptionsList/OptionItem/RenderTooltip.d.ts +0 -8
- package/lib/Select/OptionsList/OptionItem/RenderTooltip.js +0 -37
- package/lib/Select/OptionsList/OptionItem.d.ts +0 -4
- package/lib/Select/OptionsList/OptionItem.js +0 -39
- package/lib/Select/OptionsList/Options.d.ts +0 -7
- package/lib/Select/OptionsList/index.d.ts +0 -4
- package/lib/Select/OptionsList/index.js +0 -195
- package/lib/Select/Selector/index.d.ts +0 -4
- package/lib/Select/Selector/index.js +0 -276
- package/lib/Select/VirtualList.d.ts +0 -5
- package/lib/Select/VirtualList.js +0 -42
- package/lib/Select/hooks/useCacheOption.d.ts +0 -9
- package/lib/Select/hooks/useCacheOption.js +0 -113
- package/lib/Select/interface.d.ts +0 -235
- package/lib/Select/utils.d.ts +0 -21
- package/lib/Select/utils.js +0 -233
package/es/Empty/index.js
CHANGED
|
@@ -1,56 +1,86 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
1
|
+
var _excluded = ["className", "prefixCls", "image", "description", "title", "size", "children", "imageStyle"];
|
|
2
|
+
|
|
3
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
import classNames from 'classnames';
|
|
11
|
+
import DefaultEmptyImg from './image/empty';
|
|
12
|
+
import AuthorityEmptyImg from './image/Authority';
|
|
13
|
+
import DataSpaceEmptyImg from './image/Dataspace';
|
|
14
|
+
import SearchEmptyImg from './image/Search';
|
|
15
|
+
import SimpleEmptyImg from './image/Simple';
|
|
16
|
+
import WorksheetEmptyImg from './image/Worksheet';
|
|
17
|
+
var defaultEmptyImg = /*#__PURE__*/React.createElement(DefaultEmptyImg, null);
|
|
18
|
+
var dataSpaceEmptyImg = /*#__PURE__*/React.createElement(DataSpaceEmptyImg, null);
|
|
19
|
+
var searchEmptyImg = /*#__PURE__*/React.createElement(SearchEmptyImg, null);
|
|
20
|
+
var simpleEmptyImg = /*#__PURE__*/React.createElement(SimpleEmptyImg, null);
|
|
21
|
+
var worksheetEmptyImg = /*#__PURE__*/React.createElement(WorksheetEmptyImg, null);
|
|
22
|
+
var authorityEmptyImg = /*#__PURE__*/React.createElement(AuthorityEmptyImg, null);
|
|
23
|
+
|
|
24
|
+
var Empty = function Empty(props) {
|
|
25
|
+
var className = props.className,
|
|
26
|
+
customizePrefixCls = props.prefixCls,
|
|
27
|
+
_props$image = props.image,
|
|
28
|
+
image = _props$image === void 0 ? defaultEmptyImg : _props$image,
|
|
29
|
+
description = props.description,
|
|
30
|
+
title = props.title,
|
|
31
|
+
size = props.size,
|
|
32
|
+
children = props.children,
|
|
33
|
+
imageStyle = props.imageStyle,
|
|
34
|
+
restProps = _objectWithoutProperties(props, _excluded);
|
|
35
|
+
|
|
36
|
+
var prefixCls = 'ald-empty';
|
|
37
|
+
var des = typeof description !== 'undefined' ? description : null;
|
|
38
|
+
var alt = typeof des === 'string' ? des : 'empty';
|
|
39
|
+
var imageNode = null;
|
|
40
|
+
|
|
41
|
+
if (typeof image === 'string') {
|
|
42
|
+
imageNode = /*#__PURE__*/React.createElement("img", {
|
|
43
|
+
alt: alt,
|
|
44
|
+
src: image
|
|
45
|
+
});
|
|
46
|
+
} else {
|
|
47
|
+
imageNode = image;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
var getSize = function getSize(ESize) {
|
|
51
|
+
if (ESize === undefined) {
|
|
52
|
+
if (image === simpleEmptyImg) {
|
|
53
|
+
return 'small';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
return 'large';
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (['small', 'large'].includes(ESize)) {
|
|
60
|
+
return ESize;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return 'large';
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
return /*#__PURE__*/React.createElement("div", Object.assign({
|
|
67
|
+
className: classNames(prefixCls, _defineProperty({}, "".concat(prefixCls, "-").concat(getSize(size)), getSize(size)), className)
|
|
68
|
+
}, restProps), /*#__PURE__*/React.createElement("div", {
|
|
69
|
+
className: "".concat(prefixCls, "-image"),
|
|
70
|
+
style: imageStyle
|
|
71
|
+
}, imageNode), title && /*#__PURE__*/React.createElement("div", {
|
|
72
|
+
className: "".concat(prefixCls, "-title")
|
|
73
|
+
}, title), des && /*#__PURE__*/React.createElement("div", {
|
|
52
74
|
className: "".concat(prefixCls, "-description")
|
|
53
|
-
},
|
|
75
|
+
}, des), children && /*#__PURE__*/React.createElement("div", {
|
|
54
76
|
className: "".concat(prefixCls, "-footer")
|
|
55
|
-
}, children))
|
|
56
|
-
}
|
|
77
|
+
}, children));
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
Empty.PRESENTED_IMAGE_DEFAULT = defaultEmptyImg;
|
|
81
|
+
Empty.PRESENTED_IMAGE_DATASPACE = dataSpaceEmptyImg;
|
|
82
|
+
Empty.PRESENTED_IMAGE_SIMPLE = simpleEmptyImg;
|
|
83
|
+
Empty.PRESENTED_IMAGE_WORKSHEET = worksheetEmptyImg;
|
|
84
|
+
Empty.PRESENTED_IMAGE_SEARCH = searchEmptyImg;
|
|
85
|
+
Empty.PRESENTED_IMAGE_AUTHORITY = authorityEmptyImg;
|
|
86
|
+
export default Empty;
|
|
@@ -3,22 +3,67 @@
|
|
|
3
3
|
@ald-prefix: ant;
|
|
4
4
|
@ald-iconfont-css-prefix: anticon;
|
|
5
5
|
|
|
6
|
-
.
|
|
6
|
+
.ald-empty {
|
|
7
7
|
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
8
9
|
align-items: center;
|
|
9
10
|
justify-content: center;
|
|
10
|
-
height: 100%;
|
|
11
|
-
padding: 46px 0;
|
|
12
11
|
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
&.ald-empty-large {
|
|
13
|
+
.ald-empty-image {
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
|
|
18
|
+
.ald-empty-img {
|
|
19
|
+
display: block;
|
|
20
|
+
width: 264px;
|
|
21
|
+
max-width: fit-content;
|
|
22
|
+
height: auto;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.ald-empty-title {
|
|
27
|
+
margin-top: 12px;
|
|
28
|
+
color: @NL0;
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
line-height: 24px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ald-empty-description {
|
|
34
|
+
margin-top: 16px;
|
|
35
|
+
color: @NL30;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
line-height: 20px;
|
|
38
|
+
}
|
|
15
39
|
}
|
|
16
40
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
41
|
+
&.ald-empty-small {
|
|
42
|
+
.ald-empty-image {
|
|
43
|
+
display: flex;
|
|
44
|
+
align-items: center;
|
|
45
|
+
justify-content: center;
|
|
46
|
+
|
|
47
|
+
.ald-empty-img {
|
|
48
|
+
display: block;
|
|
49
|
+
width: 48px;
|
|
50
|
+
max-width: fit-content;
|
|
51
|
+
height: auto;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.ald-empty-title {
|
|
56
|
+
margin-top: 12px;
|
|
57
|
+
color: @NL50;
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
line-height: 20px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.ald-empty-description {
|
|
63
|
+
margin-top: 16px;
|
|
64
|
+
color: @NL50;
|
|
65
|
+
font-size: 14px;
|
|
66
|
+
line-height: 20px;
|
|
67
|
+
}
|
|
23
68
|
}
|
|
24
69
|
}
|
package/es/Icon/index.d.ts
CHANGED
|
@@ -5,9 +5,9 @@ declare const Icon: (props: IIconProps) => JSX.Element;
|
|
|
5
5
|
export default Icon;
|
|
6
6
|
export type { IconFontProps };
|
|
7
7
|
export { createFromIconfontCN };
|
|
8
|
-
export interface IIconProps extends IconFontProps {
|
|
8
|
+
export interface IIconProps extends Omit<IconFontProps, 'size'> {
|
|
9
9
|
className?: string;
|
|
10
|
-
size?: number;
|
|
10
|
+
size?: number | string;
|
|
11
11
|
style?: React.CSSProperties;
|
|
12
12
|
color?: string;
|
|
13
13
|
type: string;
|
package/es/Icon/index.js
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
var _excluded = ["className", "size", "style", "color"];
|
|
2
|
+
|
|
1
3
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2
4
|
|
|
3
5
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
6
|
|
|
5
7
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
8
|
|
|
9
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
10
|
+
|
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
12
|
+
|
|
7
13
|
import React from 'react';
|
|
8
14
|
import { createFromIconfontCN } from '@ant-design/icons'; // @ts-ignore iconfont.js 没有ts类型定义
|
|
9
15
|
// import iconfontJs from './iconfont/iconfont';
|
|
@@ -21,7 +27,9 @@ var Icon = function Icon(props) {
|
|
|
21
27
|
size = _props$size === void 0 ? DEFAULT_SIZE : _props$size,
|
|
22
28
|
_props$style = props.style,
|
|
23
29
|
style = _props$style === void 0 ? {} : _props$style,
|
|
24
|
-
color = props.color
|
|
30
|
+
color = props.color,
|
|
31
|
+
restProps = _objectWithoutProperties(props, _excluded); // 添加一个前缀
|
|
32
|
+
|
|
25
33
|
|
|
26
34
|
var prefix = '';
|
|
27
35
|
var type = "".concat(prefix).concat(props.type);
|
|
@@ -34,7 +42,7 @@ var Icon = function Icon(props) {
|
|
|
34
42
|
width: size
|
|
35
43
|
}, style);
|
|
36
44
|
|
|
37
|
-
return /*#__PURE__*/React.createElement(IconFont, Object.assign({},
|
|
45
|
+
return /*#__PURE__*/React.createElement(IconFont, Object.assign({}, restProps, {
|
|
38
46
|
style: finalStyle,
|
|
39
47
|
type: type,
|
|
40
48
|
className: className
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GroupProps } from 'antd/lib/input';
|
|
3
|
-
|
|
3
|
+
import { TSize } from '../Input';
|
|
4
|
+
export interface IGroupProps extends Omit<GroupProps, 'size'> {
|
|
4
5
|
/**
|
|
5
6
|
* @description 是否用紧凑模式
|
|
6
7
|
* @default false
|
|
@@ -8,8 +9,9 @@ export interface IGroupProps extends GroupProps {
|
|
|
8
9
|
compact?: boolean;
|
|
9
10
|
/**
|
|
10
11
|
* @description Input.Group 中所有的 Input 的大小,可选 large default small
|
|
12
|
+
* @type 'mini'|'small' | 'default' | 'large';
|
|
11
13
|
* @default default
|
|
12
14
|
*/
|
|
13
|
-
size?:
|
|
15
|
+
size?: TSize;
|
|
14
16
|
}
|
|
15
17
|
export default function Group(props: IGroupProps): JSX.Element;
|
|
@@ -1,6 +1,28 @@
|
|
|
1
|
+
var _excluded = ["size"];
|
|
2
|
+
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
|
+
|
|
1
7
|
import React from 'react';
|
|
2
8
|
import AntdInput from 'antd/lib/input';
|
|
9
|
+
import classnames from 'classnames';
|
|
3
10
|
var AntdGroup = AntdInput.Group;
|
|
4
11
|
export default function Group(props) {
|
|
5
|
-
|
|
12
|
+
var _props$size = props.size,
|
|
13
|
+
size = _props$size === void 0 ? 'default' : _props$size,
|
|
14
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
15
|
+
|
|
16
|
+
var getClassName = function getClassName(groupSize) {
|
|
17
|
+
return classnames('ald-input-group', {
|
|
18
|
+
'ald-input-group-large': groupSize === 'large',
|
|
19
|
+
'ald-input-group-small': groupSize === 'small',
|
|
20
|
+
'ald-input-group-mini': groupSize === 'mini',
|
|
21
|
+
'ald-input-group-middle': !['mini', 'small', 'large'].includes(groupSize)
|
|
22
|
+
});
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
return /*#__PURE__*/React.createElement(AntdGroup, Object.assign({
|
|
26
|
+
className: getClassName(size)
|
|
27
|
+
}, rest));
|
|
6
28
|
}
|
|
@@ -7,7 +7,7 @@ interface IShowCountProps {
|
|
|
7
7
|
maxLength?: number;
|
|
8
8
|
}) => string;
|
|
9
9
|
}
|
|
10
|
-
export declare type TSize = 'small' | 'default' | 'large';
|
|
10
|
+
export declare type TSize = 'mini' | 'small' | 'default' | 'large';
|
|
11
11
|
export type { InputRef };
|
|
12
12
|
declare type ChangeEventHandler = (e: React.ChangeEvent<HTMLInputElement>) => void;
|
|
13
13
|
export interface IInputProps extends Omit<InputProps, 'size' | 'id' | 'prefix' | 'allowClear' | 'disabled' | 'showCount' | 'maxLength' | 'value' | 'defaultValue' | 'onPressEnter' | 'onChange'> {
|
|
@@ -6,6 +6,7 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
|
6
6
|
|
|
7
7
|
import React from 'react';
|
|
8
8
|
import AntdInput from 'antd/lib/input/Input';
|
|
9
|
+
import classnames from 'classnames';
|
|
9
10
|
var Input = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
10
11
|
var _props$size = props.size,
|
|
11
12
|
size = _props$size === void 0 ? 'default' : _props$size,
|
|
@@ -19,11 +20,22 @@ var Input = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
19
20
|
return 'middle';
|
|
20
21
|
};
|
|
21
22
|
|
|
23
|
+
var getClassName = function getClassName(inputSize) {
|
|
24
|
+
return classnames('ald-input', {
|
|
25
|
+
'ald-input-small': inputSize === 'small',
|
|
26
|
+
'ald-input-large': inputSize === 'large',
|
|
27
|
+
'ald-input-mini': inputSize === 'mini',
|
|
28
|
+
'ald-input-middle': !['small', 'mini', 'large'].includes(inputSize),
|
|
29
|
+
'ald-input-showCount': props.showCount
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
|
|
22
33
|
return /*#__PURE__*/React.createElement(AntdInput, Object.assign({}, rest, {
|
|
23
34
|
// @ts-ignore
|
|
24
35
|
ref: ref,
|
|
25
36
|
size: getInputSize(size),
|
|
26
37
|
bordered: true,
|
|
38
|
+
className: getClassName(size),
|
|
27
39
|
addonAfter: null,
|
|
28
40
|
addonBefore: null,
|
|
29
41
|
suffix: null
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { PasswordProps } from 'antd/lib/input/Password';
|
|
3
|
-
|
|
3
|
+
import { TSize } from '../Input';
|
|
4
|
+
export interface IPasswordProps extends Omit<PasswordProps, 'size'> {
|
|
4
5
|
/**
|
|
5
6
|
* @description 是否显示切换按钮
|
|
6
7
|
* @default true
|
|
7
8
|
*/
|
|
8
9
|
visibilityToggle?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @description 尺寸大学
|
|
12
|
+
* @default default
|
|
13
|
+
*/
|
|
14
|
+
size?: TSize;
|
|
9
15
|
}
|
|
10
16
|
declare const _default: React.ForwardRefExoticComponent<IPasswordProps & React.RefAttributes<any>>;
|
|
11
17
|
export default _default;
|
|
@@ -1,14 +1,36 @@
|
|
|
1
|
+
var _excluded = ["size"];
|
|
2
|
+
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
|
+
|
|
1
7
|
import React from 'react';
|
|
2
8
|
import Icon from '../../../Icon';
|
|
3
|
-
import AntdPassword from 'antd/lib/input/Password';
|
|
9
|
+
import AntdPassword from 'antd/lib/input/Password';
|
|
10
|
+
import classnames from 'classnames'; // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
4
11
|
|
|
5
12
|
export default /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
6
|
-
|
|
13
|
+
var _props$size = props.size,
|
|
14
|
+
size = _props$size === void 0 ? 'default' : _props$size,
|
|
15
|
+
restProps = _objectWithoutProperties(props, _excluded);
|
|
16
|
+
|
|
17
|
+
var getClassName = function getClassName(inputSize) {
|
|
18
|
+
return classnames('ald-input', {
|
|
19
|
+
'ald-input-small': inputSize === 'small',
|
|
20
|
+
'ald-input-large': inputSize === 'large',
|
|
21
|
+
'ald-input-mini': inputSize === 'mini',
|
|
22
|
+
'ald-input-middle': !['small', 'mini', 'large'].includes(inputSize)
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
return /*#__PURE__*/React.createElement(AntdPassword, Object.assign({}, restProps, {
|
|
7
27
|
ref: ref,
|
|
28
|
+
className: getClassName(size),
|
|
8
29
|
iconRender: function iconRender(visible) {
|
|
9
30
|
var type = visible ? 'eye' : 'eye_off';
|
|
10
31
|
return /*#__PURE__*/React.createElement(Icon, {
|
|
11
|
-
type: type
|
|
32
|
+
type: type,
|
|
33
|
+
size: "1em"
|
|
12
34
|
});
|
|
13
35
|
}
|
|
14
36
|
}));
|