@para-ui/core 2.1.32 → 2.1.35
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/.eslintignore +12 -0
- package/README.md +31 -0
- package/babel.config.js +7 -0
- package/docs/App.tsx +277 -0
- package/docs/Router.tsx +79 -0
- package/docs/assets/1.jpeg +0 -0
- package/docs/assets/P.svg +1 -0
- package/docs/assets/icon.ico +0 -0
- package/docs/assets/icon.png +0 -0
- package/docs/assets/logo.png +0 -0
- package/docs/config/interceptors.ts +73 -0
- package/docs/config/router.tsx +212 -0
- package/docs/context/global.tsx +65 -0
- package/docs/index.tsx +42 -0
- package/docs/locale/index.ts +64 -0
- package/docs/locale/lang/en_US.ts +16 -0
- package/docs/locale/lang/zh_CN.ts +16 -0
- package/docs/react-app-env.d.ts +18 -0
- package/docs/services/api.ts +6 -0
- package/docs/styles/index.scss +31 -0
- package/docs/view/autoBox/api.tsx +67 -0
- package/docs/view/autoBox/codeString.tsx +137 -0
- package/docs/view/autoBox/index.scss +15 -0
- package/docs/view/autoBox/index.tsx +97 -0
- package/docs/view/autoTips/api.tsx +49 -0
- package/docs/view/autoTips/codeString.tsx +34 -0
- package/{Tree/utils/closestPolyfill.d.ts → docs/view/autoTips/index.scss} +0 -0
- package/docs/view/autoTips/index.tsx +53 -0
- package/docs/view/breadcrumbs/api.tsx +72 -0
- package/docs/view/breadcrumbs/codeString.tsx +160 -0
- package/docs/view/breadcrumbs/index.scss +14 -0
- package/docs/view/breadcrumbs/index.tsx +173 -0
- package/docs/view/button/api.tsx +131 -0
- package/docs/view/button/codeString.tsx +153 -0
- package/docs/view/button/index.scss +23 -0
- package/docs/view/button/index.tsx +165 -0
- package/docs/view/buttonGroup/api.tsx +55 -0
- package/docs/view/buttonGroup/codeString.tsx +108 -0
- package/docs/view/buttonGroup/index.scss +9 -0
- package/docs/view/buttonGroup/index.tsx +93 -0
- package/docs/view/carousel/api.tsx +165 -0
- package/docs/view/carousel/codeString.tsx +207 -0
- package/docs/view/carousel/index.scss +12 -0
- package/docs/view/carousel/index.tsx +174 -0
- package/docs/view/cascader/api.tsx +116 -0
- package/docs/view/cascader/codeString.tsx +584 -0
- package/docs/view/cascader/index.scss +0 -0
- package/docs/view/cascader/index.tsx +261 -0
- package/docs/view/checkbox/api.tsx +148 -0
- package/docs/view/checkbox/codeString.tsx +215 -0
- package/docs/view/checkbox/index.scss +0 -0
- package/docs/view/checkbox/index.tsx +233 -0
- package/docs/view/collapse/api.tsx +109 -0
- package/docs/view/collapse/codeString.tsx +186 -0
- package/docs/view/collapse/index.scss +0 -0
- package/docs/view/collapse/index.tsx +171 -0
- package/docs/view/colorPicker/api.tsx +30 -0
- package/docs/view/colorPicker/codeString.tsx +58 -0
- package/docs/view/colorPicker/index.scss +5 -0
- package/docs/view/colorPicker/index.tsx +39 -0
- package/docs/view/comboSelect/api.tsx +255 -0
- package/docs/view/comboSelect/codeString.tsx +629 -0
- package/docs/view/comboSelect/index.scss +5 -0
- package/docs/view/comboSelect/index.tsx +402 -0
- package/docs/view/container/api.tsx +61 -0
- package/docs/view/container/codeString.tsx +64 -0
- package/docs/view/container/index.scss +0 -0
- package/docs/view/container/index.tsx +84 -0
- package/docs/view/datePicker/api.tsx +264 -0
- package/docs/view/datePicker/codeString.tsx +185 -0
- package/docs/view/datePicker/index.scss +8 -0
- package/docs/view/datePicker/index.tsx +205 -0
- package/docs/view/drawer/api.tsx +123 -0
- package/docs/view/drawer/codeString.tsx +122 -0
- package/docs/view/drawer/index.scss +5 -0
- package/docs/view/drawer/index.tsx +200 -0
- package/docs/view/empty/api.tsx +57 -0
- package/docs/view/empty/codeString.tsx +38 -0
- package/docs/view/empty/index.scss +11 -0
- package/docs/view/empty/index.tsx +43 -0
- package/docs/view/form/api.tsx +266 -0
- package/docs/view/form/codeString.tsx +203 -0
- package/docs/view/form/index.scss +0 -0
- package/docs/view/form/index.tsx +225 -0
- package/docs/view/help/api.tsx +58 -0
- package/docs/view/help/codeString.tsx +39 -0
- package/docs/view/help/index.scss +5 -0
- package/docs/view/help/index.tsx +40 -0
- package/docs/view/helperText/api.tsx +31 -0
- package/docs/view/helperText/codeString.tsx +16 -0
- package/docs/view/helperText/index.scss +0 -0
- package/docs/view/helperText/index.tsx +33 -0
- package/docs/view/home/index.scss +55 -0
- package/docs/view/home/index.tsx +119 -0
- package/docs/view/icons/index.scss +48 -0
- package/docs/view/icons/index.tsx +87 -0
- package/docs/view/inputLang/api.tsx +99 -0
- package/docs/view/inputLang/codeString.tsx +66 -0
- package/docs/view/inputLang/index.scss +0 -0
- package/docs/view/inputLang/index.tsx +85 -0
- package/docs/view/inputNumber/api.tsx +169 -0
- package/docs/view/inputNumber/codeString.tsx +129 -0
- package/docs/view/inputNumber/index.scss +0 -0
- package/docs/view/inputNumber/index.tsx +141 -0
- package/docs/view/label/api.tsx +63 -0
- package/docs/view/label/codeString.tsx +63 -0
- package/docs/view/label/index.scss +0 -0
- package/docs/view/label/index.tsx +82 -0
- package/docs/view/loading/api.tsx +26 -0
- package/docs/view/loading/codeString.tsx +13 -0
- package/docs/view/loading/index.scss +0 -0
- package/docs/view/loading/index.tsx +38 -0
- package/docs/view/menu/api.tsx +227 -0
- package/docs/view/menu/codeString.tsx +302 -0
- package/docs/view/menu/index.scss +42 -0
- package/docs/view/menu/index.tsx +289 -0
- package/docs/view/message/api.tsx +35 -0
- package/docs/view/message/codeString.tsx +73 -0
- package/docs/view/message/index.scss +7 -0
- package/docs/view/message/index.tsx +64 -0
- package/docs/view/modal/api.tsx +141 -0
- package/docs/view/modal/codeString.tsx +222 -0
- package/docs/view/modal/index.scss +9 -0
- package/docs/view/modal/index.tsx +222 -0
- package/docs/view/multiBox/api.tsx +99 -0
- package/docs/view/multiBox/codeString.tsx +104 -0
- package/docs/view/multiBox/index.scss +0 -0
- package/docs/view/multiBox/index.tsx +123 -0
- package/docs/view/notification/api.tsx +148 -0
- package/docs/view/notification/codeString.tsx +110 -0
- package/docs/view/notification/index.scss +9 -0
- package/docs/view/notification/index.tsx +118 -0
- package/docs/view/operateBtn/api.tsx +127 -0
- package/docs/view/operateBtn/codeString.tsx +165 -0
- package/docs/view/operateBtn/index.scss +0 -0
- package/docs/view/operateBtn/index.tsx +160 -0
- package/docs/view/pageHeader/api.tsx +321 -0
- package/docs/view/pageHeader/codeString.tsx +252 -0
- package/docs/view/pageHeader/index.scss +6 -0
- package/docs/view/pageHeader/index.tsx +291 -0
- package/docs/view/pagination/api.tsx +71 -0
- package/docs/view/pagination/codeString.tsx +45 -0
- package/docs/view/pagination/index.scss +0 -0
- package/docs/view/pagination/index.tsx +54 -0
- package/docs/view/popConfirm/api.tsx +96 -0
- package/docs/view/popConfirm/codeString.tsx +130 -0
- package/docs/view/popConfirm/index.scss +33 -0
- package/docs/view/popConfirm/index.tsx +167 -0
- package/docs/view/popover/api.tsx +80 -0
- package/docs/view/popover/codeString.tsx +40 -0
- package/docs/view/popover/index.scss +4 -0
- package/docs/view/popover/index.tsx +53 -0
- package/docs/view/querying/api.tsx +46 -0
- package/docs/view/querying/codeString.tsx +28 -0
- package/docs/view/querying/index.scss +11 -0
- package/docs/view/querying/index.tsx +35 -0
- package/docs/view/radio/api.tsx +142 -0
- package/docs/view/radio/codeString.tsx +136 -0
- package/docs/view/radio/index.scss +0 -0
- package/docs/view/radio/index.tsx +154 -0
- package/docs/view/search/api.tsx +132 -0
- package/docs/view/search/codeString.tsx +164 -0
- package/docs/view/search/index.scss +0 -0
- package/docs/view/search/index.tsx +142 -0
- package/docs/view/select/api.tsx +195 -0
- package/docs/view/select/codeString.tsx +379 -0
- package/docs/view/select/index.scss +12 -0
- package/docs/view/select/index.tsx +370 -0
- package/docs/view/selectInput/api.tsx +161 -0
- package/docs/view/selectInput/codeString.tsx +171 -0
- package/docs/view/selectInput/index.scss +12 -0
- package/docs/view/selectInput/index.tsx +167 -0
- package/docs/view/singleBox/api.tsx +89 -0
- package/docs/view/singleBox/codeString.tsx +94 -0
- package/docs/view/singleBox/index.scss +0 -0
- package/docs/view/singleBox/index.tsx +111 -0
- package/docs/view/slider/api.tsx +135 -0
- package/docs/view/slider/codeString.tsx +99 -0
- package/docs/view/slider/index.scss +11 -0
- package/docs/view/slider/index.tsx +95 -0
- package/docs/view/stepper/api.tsx +49 -0
- package/docs/view/stepper/codeString.tsx +64 -0
- package/docs/view/stepper/index.scss +3 -0
- package/docs/view/stepper/index.tsx +57 -0
- package/docs/view/switch/api.tsx +70 -0
- package/docs/view/switch/codeString.tsx +48 -0
- package/docs/view/switch/index.scss +16 -0
- package/docs/view/switch/index.tsx +50 -0
- package/docs/view/table/api.tsx +330 -0
- package/docs/view/table/codeString.tsx +737 -0
- package/docs/view/table/index.scss +0 -0
- package/docs/view/table/index.tsx +549 -0
- package/docs/view/tabs/api.tsx +106 -0
- package/docs/view/tabs/codeString.tsx +243 -0
- package/docs/view/tabs/index.scss +5 -0
- package/docs/view/tabs/index.tsx +132 -0
- package/docs/view/tag/api.tsx +119 -0
- package/docs/view/tag/codeString.tsx +95 -0
- package/docs/view/tag/index.scss +5 -0
- package/docs/view/tag/index.tsx +91 -0
- package/docs/view/textField/api.tsx +229 -0
- package/docs/view/textField/codeString.tsx +251 -0
- package/docs/view/textField/index.scss +3 -0
- package/docs/view/textField/index.tsx +327 -0
- package/docs/view/timeLine/api.tsx +43 -0
- package/docs/view/timeLine/codeString.tsx +85 -0
- package/docs/view/timeLine/index.scss +5 -0
- package/docs/view/timeLine/index.tsx +73 -0
- package/docs/view/timePicker/api.tsx +178 -0
- package/docs/view/timePicker/codeString.tsx +66 -0
- package/docs/view/timePicker/index.scss +8 -0
- package/docs/view/timePicker/index.tsx +75 -0
- package/docs/view/toggleButton/api.tsx +100 -0
- package/docs/view/toggleButton/codeString.tsx +152 -0
- package/docs/view/toggleButton/index.scss +5 -0
- package/docs/view/toggleButton/index.tsx +108 -0
- package/docs/view/toolTip/api.tsx +96 -0
- package/docs/view/toolTip/codeString.tsx +42 -0
- package/docs/view/toolTip/index.scss +5 -0
- package/docs/view/toolTip/index.tsx +44 -0
- package/docs/view/transfer/api.tsx +33 -0
- package/docs/view/transfer/codeString.tsx +44 -0
- package/docs/view/transfer/index.scss +0 -0
- package/docs/view/transfer/index.tsx +59 -0
- package/docs/view/tree/api.tsx +413 -0
- package/docs/view/tree/codeString.tsx +437 -0
- package/docs/view/tree/index.scss +5 -0
- package/docs/view/tree/index.tsx +362 -0
- package/docs/view/upload/api.tsx +302 -0
- package/docs/view/upload/codeString.tsx +248 -0
- package/docs/view/upload/index.scss +7 -0
- package/docs/view/upload/index.tsx +207 -0
- package/package.json +1 -1
- package/publish.sh +5 -0
- package/run.js +43 -0
- package/scripts/extract-css.js +9 -0
- package/temp/main.js +1103 -0
- package/{style.css → temp/style.css} +5 -5
- package/tsconfig.json +40 -0
- package/webpack.cdn.config.js +81 -0
- package/webpack.config.js +249 -0
- package/webpack.extract.css.js +86 -0
- package/AutoBox/index.d.ts +0 -34
- package/AutoBox/index.js +0 -28
- package/AutoTips/index.d.ts +0 -25
- package/AutoTips/index.js +0 -15
- package/Breadcrumbs/index.d.ts +0 -39
- package/Breadcrumbs/index.js +0 -28
- package/Button/SplitButton.d.ts +0 -56
- package/Button/index.d.ts +0 -56
- package/Button/index.js +0 -53
- package/Button/lang/en_US.d.ts +0 -4
- package/Button/lang/index.d.ts +0 -9
- package/Button/lang/zh_CN.d.ts +0 -4
- package/ButtonGroup/index.d.ts +0 -33
- package/ButtonGroup/index.js +0 -53
- package/Carousel/index.d.ts +0 -30
- package/Carousel/index.js +0 -15
- package/Cascader/index.d.ts +0 -52
- package/Cascader/index.js +0 -41
- package/Cascader/lang/en_US.d.ts +0 -4
- package/Cascader/lang/index.d.ts +0 -9
- package/Cascader/lang/zh_CN.d.ts +0 -4
- package/Checkbox/index.d.ts +0 -40
- package/Checkbox/index.js +0 -27
- package/CheckboxGroup/index.d.ts +0 -46
- package/CheckboxGroup/index.js +0 -27
- package/Collapse/collapsePanel.d.ts +0 -30
- package/Collapse/index.d.ts +0 -57
- package/Collapse/index.js +0 -28
- package/Collapse/motion.d.ts +0 -5
- package/Collapse/util.d.ts +0 -11
- package/ColorPicker/index.d.ts +0 -4
- package/ColorPicker/index.js +0 -1
- package/ComBox/index.d.ts +0 -16
- package/ComBox/index.js +0 -16
- package/ComBox/interface.d.ts +0 -5
- package/ComboSelect/WithTabsCombo/index.d.ts +0 -11
- package/ComboSelect/WithTabsCombo/interface.d.ts +0 -141
- package/ComboSelect/index.d.ts +0 -11
- package/ComboSelect/index.js +0 -391
- package/ComboSelect/interface.d.ts +0 -139
- package/ComboSelect/lang/en_US.d.ts +0 -8
- package/ComboSelect/lang/index.d.ts +0 -17
- package/ComboSelect/lang/zh_CN.d.ts +0 -8
- package/ComboSelect/utils.d.ts +0 -13
- package/Container/index.d.ts +0 -77
- package/Container/index.js +0 -15
- package/DatePicker/PickerButton.d.ts +0 -3
- package/DatePicker/PickerTag.d.ts +0 -3
- package/DatePicker/generatePicker/generateRangePicker.d.ts +0 -4
- package/DatePicker/generatePicker/generateSinglePicker.d.ts +0 -11
- package/DatePicker/generatePicker/index.d.ts +0 -77
- package/DatePicker/index.d.ts +0 -18
- package/DatePicker/index.js +0 -144
- package/DatePicker/lang/en_US.d.ts +0 -3
- package/DatePicker/lang/index.d.ts +0 -7
- package/DatePicker/lang/zh_CN.d.ts +0 -3
- package/DatePicker/util.d.ts +0 -20
- package/Desktop/index.d.ts +0 -55
- package/Desktop/index.js +0 -14
- package/Drawer/index.d.ts +0 -11
- package/Drawer/index.js +0 -53
- package/Drawer/interface.d.ts +0 -78
- package/Drawer/lang/en_US.d.ts +0 -5
- package/Drawer/lang/index.d.ts +0 -11
- package/Drawer/lang/zh_CN.d.ts +0 -5
- package/Empty/images/index.d.ts +0 -2
- package/Empty/index.d.ts +0 -29
- package/Empty/index.js +0 -14
- package/Empty/lang/en_US.d.ts +0 -6
- package/Empty/lang/index.d.ts +0 -13
- package/Empty/lang/zh_CN.d.ts +0 -6
- package/Form/index.d.ts +0 -154
- package/Form/index.js +0 -209
- package/FormItem/compoments/formCheckboxGroup/index.d.ts +0 -8
- package/FormItem/compoments/formFile/index.d.ts +0 -38
- package/FormItem/compoments/formRadioGroup/index.d.ts +0 -8
- package/FormItem/compoments/formSelect/index.d.ts +0 -18
- package/FormItem/errorTips.d.ts +0 -10
- package/FormItem/index.d.ts +0 -130
- package/FormItem/index.js +0 -209
- package/FormItem/itemType.d.ts +0 -42
- package/FormItem/validateFunction.d.ts +0 -15
- package/FunctionModal/dialog.d.ts +0 -58
- package/FunctionModal/index.d.ts +0 -8
- package/FunctionModal/index.js +0 -118
- package/FunctionModal/modalContext.d.ts +0 -14
- package/GlobalContext/componentsProps.d.ts +0 -15
- package/GlobalContext/confirmLocale.d.ts +0 -7
- package/GlobalContext/index.d.ts +0 -28
- package/GlobalContext/index.js +0 -16
- package/GlobalContext/intl.d.ts +0 -34
- package/GlobalContext/useFormatMessage.d.ts +0 -3
- package/Help/index.d.ts +0 -20
- package/Help/index.js +0 -28
- package/HelperText/index.d.ts +0 -19
- package/HelperText/index.js +0 -15
- package/InputLang/index.d.ts +0 -49
- package/InputLang/index.js +0 -118
- package/InputNumber/index.d.ts +0 -74
- package/InputNumber/index.js +0 -79
- package/Label/index.d.ts +0 -35
- package/Label/index.js +0 -27
- package/Loading/index.d.ts +0 -17
- package/Loading/index.js +0 -28
- package/Menu/footerExpansion.d.ts +0 -9
- package/Menu/index.d.ts +0 -10
- package/Menu/index.js +0 -53
- package/Menu/interface.d.ts +0 -137
- package/Menu/logo.d.ts +0 -9
- package/Menu/verticalMenuList.d.ts +0 -14
- package/Message/index.d.ts +0 -59
- package/Message/index.js +0 -67
- package/Modal/Confirm/index.d.ts +0 -62
- package/Modal/index.d.ts +0 -61
- package/Modal/index.js +0 -118
- package/Modal/lang/en_US.d.ts +0 -5
- package/Modal/lang/index.d.ts +0 -11
- package/Modal/lang/zh_CN.d.ts +0 -5
- package/MultiBox/index.d.ts +0 -54
- package/MultiBox/index.js +0 -105
- package/Notification/index.d.ts +0 -52
- package/Notification/index.js +0 -67
- package/OperateBtn/index.d.ts +0 -59
- package/OperateBtn/index.js +0 -66
- package/OperateBtn/lang/en_US.d.ts +0 -4
- package/OperateBtn/lang/index.d.ts +0 -9
- package/OperateBtn/lang/zh_CN.d.ts +0 -4
- package/PageHeader/horizontalMeun.d.ts +0 -9
- package/PageHeader/horizontalMeunRight.d.ts +0 -9
- package/PageHeader/index.d.ts +0 -10
- package/PageHeader/index.js +0 -66
- package/PageHeader/interface.d.ts +0 -167
- package/Pagination/index.d.ts +0 -33
- package/Pagination/index.js +0 -183
- package/Pagination/lang/en_US.d.ts +0 -8
- package/Pagination/lang/index.d.ts +0 -17
- package/Pagination/lang/zh_CN.d.ts +0 -8
- package/ParauiProvider/index.d.ts +0 -12
- package/ParauiProvider/index.js +0 -15
- package/PopConfirm/index.d.ts +0 -50
- package/PopConfirm/index.js +0 -105
- package/PopConfirm/lang/en_US.d.ts +0 -5
- package/PopConfirm/lang/index.d.ts +0 -11
- package/PopConfirm/lang/zh_CN.d.ts +0 -5
- package/Popover/index.d.ts +0 -14
- package/Popover/index.js +0 -15
- package/Popper/index.d.ts +0 -13
- package/Popper/index.js +0 -16
- package/Querying/images/index.d.ts +0 -2
- package/Querying/index.d.ts +0 -25
- package/Querying/index.js +0 -14
- package/Querying/lang/en_US.d.ts +0 -4
- package/Querying/lang/index.d.ts +0 -9
- package/Querying/lang/zh_CN.d.ts +0 -4
- package/Radio/index.d.ts +0 -38
- package/Radio/index.js +0 -27
- package/RadioGroup/index.d.ts +0 -47
- package/RadioGroup/index.js +0 -27
- package/Search/index.d.ts +0 -56
- package/Search/index.js +0 -118
- package/Select/index.d.ts +0 -85
- package/Select/index.js +0 -105
- package/Select/lang/en_US.d.ts +0 -5
- package/Select/lang/index.d.ts +0 -11
- package/Select/lang/zh_CN.d.ts +0 -5
- package/Select/selectCom.d.ts +0 -11
- package/SelectInput/index.d.ts +0 -11
- package/SelectInput/index.js +0 -105
- package/SingleBox/index.d.ts +0 -42
- package/SingleBox/index.js +0 -105
- package/Slider/index.d.ts +0 -14
- package/Slider/index.js +0 -15
- package/Slider/interface.d.ts +0 -102
- package/Split/index.d.ts +0 -7
- package/Split/index.js +0 -15
- package/Stepper/icons.d.ts +0 -5
- package/Stepper/index.d.ts +0 -39
- package/Stepper/index.js +0 -145
- package/Switch/index.d.ts +0 -78
- package/Switch/index.js +0 -40
- package/Table/index.d.ts +0 -9
- package/Table/index.js +0 -261
- package/Table/interface.d.ts +0 -200
- package/Table/lang/en_US.d.ts +0 -6
- package/Table/lang/index.d.ts +0 -13
- package/Table/lang/zh_CN.d.ts +0 -6
- package/Table/tableBody.d.ts +0 -9
- package/Table/tableBodyElement/index.d.ts +0 -15
- package/Table/tableBodyInterface.d.ts +0 -67
- package/Table/tableCom.d.ts +0 -11
- package/Table/tableContainer/index.d.ts +0 -16
- package/Table/tableElement/index.d.ts +0 -17
- package/Table/tableHead.d.ts +0 -9
- package/Table/tableHeadElement/index.d.ts +0 -15
- package/Table/tableHeadInterface.d.ts +0 -30
- package/Table/tablePagination.d.ts +0 -9
- package/Table/tablePaginationInterFace.d.ts +0 -24
- package/Table/tdElement/index.d.ts +0 -15
- package/Table/thElement/index.d.ts +0 -15
- package/Table/trElement/index.d.ts +0 -15
- package/Table/util.d.ts +0 -16
- package/Tabs/index.d.ts +0 -48
- package/Tabs/index.js +0 -131
- package/Tag/TagGroup.d.ts +0 -66
- package/Tag/index.d.ts +0 -34
- package/Tag/index.js +0 -40
- package/TextField/index.d.ts +0 -93
- package/TextField/index.js +0 -79
- package/TextField/textFieldCom.d.ts +0 -11
- package/TimePicker/index.d.ts +0 -22
- package/TimePicker/index.js +0 -144
- package/TimePicker/locale/en_US.d.ts +0 -3
- package/TimePicker/locale/zh_CN.d.ts +0 -3
- package/TimePicker/style/index.d.ts +0 -1
- package/Timeline/index.d.ts +0 -22
- package/Timeline/index.js +0 -15
- package/ToggleButton/ToggleButtonGroup.d.ts +0 -45
- package/ToggleButton/index.d.ts +0 -49
- package/ToggleButton/index.js +0 -53
- package/Tooltip/index.d.ts +0 -11
- package/Tooltip/index.js +0 -15
- package/Transfer/index.d.ts +0 -17
- package/Transfer/index.js +0 -144
- package/Transfer/lang/en_US.d.ts +0 -6
- package/Transfer/lang/index.d.ts +0 -13
- package/Transfer/lang/zh_CN.d.ts +0 -6
- package/Tree/OperateBar/index.d.ts +0 -13
- package/Tree/Tree.d.ts +0 -4
- package/Tree/index.d.ts +0 -5
- package/Tree/index.js +0 -131
- package/Tree/interface.d.ts +0 -201
- package/Tree/lang/en_US.d.ts +0 -8
- package/Tree/lang/index.d.ts +0 -17
- package/Tree/lang/zh_CN.d.ts +0 -8
- package/Tree/utils/tools.d.ts +0 -26
- package/Tree/utils/treeUtil.d.ts +0 -15
- package/Upload/Dragger/index.d.ts +0 -10
- package/Upload/ErroTip/index.d.ts +0 -13
- package/Upload/ImageUpload/index.d.ts +0 -14
- package/Upload/ImgCrop/EasyCrop.d.ts +0 -17
- package/Upload/ImgCrop/constants.d.ts +0 -7
- package/Upload/ImgCrop/index.d.ts +0 -6
- package/Upload/ImgCrop/interface.d.ts +0 -24
- package/Upload/UploadList/index.d.ts +0 -5
- package/Upload/index.d.ts +0 -15
- package/Upload/index.js +0 -196
- package/Upload/interface.d.ts +0 -134
- package/Upload/lang/en_US.d.ts +0 -12
- package/Upload/lang/index.d.ts +0 -25
- package/Upload/lang/zh_CN.d.ts +0 -12
- package/cdn/AutoBox/index.js +0 -29
- package/cdn/AutoTips/index.js +0 -40
- package/cdn/Breadcrumbs/index.js +0 -53
- package/cdn/Button/index.js +0 -79
- package/cdn/ButtonGroup/index.js +0 -79
- package/cdn/Carousel/index.js +0 -6
- package/cdn/Cascader/index.js +0 -40
- package/cdn/Checkbox/index.js +0 -53
- package/cdn/CheckboxGroup/index.js +0 -53
- package/cdn/Collapse/index.js +0 -27
- package/cdn/ColorPicker/index.js +0 -1
- package/cdn/ComBox/index.js +0 -1
- package/cdn/ComboSelect/index.js +0 -438
- package/cdn/Container/index.js +0 -1
- package/cdn/DatePicker/index.js +0 -183
- package/cdn/Desktop/index.js +0 -24
- package/cdn/Drawer/index.js +0 -84
- package/cdn/Empty/index.js +0 -1
- package/cdn/Form/index.js +0 -248
- package/cdn/FormItem/index.js +0 -248
- package/cdn/FunctionModal/index.js +0 -144
- package/cdn/GlobalContext/index.js +0 -1
- package/cdn/Help/index.js +0 -53
- package/cdn/HelperText/index.js +0 -1
- package/cdn/InputLang/index.js +0 -144
- package/cdn/InputNumber/index.js +0 -118
- package/cdn/Label/index.js +0 -53
- package/cdn/Loading/index.js +0 -14
- package/cdn/Menu/index.js +0 -55
- package/cdn/Message/index.js +0 -53
- package/cdn/Modal/index.js +0 -144
- package/cdn/MultiBox/index.js +0 -131
- package/cdn/Notification/index.js +0 -66
- package/cdn/OperateBtn/index.js +0 -92
- package/cdn/PageHeader/index.js +0 -92
- package/cdn/Pagination/index.js +0 -214
- package/cdn/ParauiProvider/index.js +0 -9
- package/cdn/PopConfirm/index.js +0 -131
- package/cdn/Popover/index.js +0 -16
- package/cdn/Popper/index.js +0 -26
- package/cdn/Querying/index.js +0 -1
- package/cdn/Radio/index.js +0 -53
- package/cdn/RadioGroup/index.js +0 -53
- package/cdn/Search/index.js +0 -144
- package/cdn/Select/index.js +0 -131
- package/cdn/SelectInput/index.js +0 -131
- package/cdn/SingleBox/index.js +0 -131
- package/cdn/Slider/index.js +0 -14
- package/cdn/Split/index.js +0 -1
- package/cdn/Stepper/index.js +0 -154
- package/cdn/Switch/index.js +0 -71
- package/cdn/Table/index.js +0 -292
- package/cdn/Tabs/index.js +0 -165
- package/cdn/Tag/index.js +0 -27
- package/cdn/TextField/index.js +0 -105
- package/cdn/TimePicker/index.js +0 -183
- package/cdn/Timeline/index.js +0 -16
- package/cdn/ToggleButton/index.js +0 -79
- package/cdn/Tooltip/index.js +0 -40
- package/cdn/Transfer/index.js +0 -170
- package/cdn/Tree/index.js +0 -170
- package/cdn/Upload/index.js +0 -249
- package/index.d.ts +0 -124
- package/index.js +0 -690
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
// 异步路由数据
|
|
2
|
+
|
|
3
|
+
import {FunctionComponent, lazy} from "react";
|
|
4
|
+
|
|
5
|
+
export interface RouterConfig {
|
|
6
|
+
label: string,
|
|
7
|
+
type: 'router' | 'iframe' | 'snack' | 'snackPage' | 'redirect'
|
|
8
|
+
path: string // 通用 路由Hash
|
|
9
|
+
url?: string // iframe | iframe | snackPage 模式
|
|
10
|
+
component?: FunctionComponent // router | redirect 模式 两种模式实现方式相同,为了渲染菜单过滤重定向
|
|
11
|
+
snackType?: string // snack分类
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export const router = async (): Promise<Array<RouterConfig>> => {
|
|
15
|
+
return [
|
|
16
|
+
{label: '主页', type: 'router', path: '/home', component: lazy(() => import('../view/home'))},
|
|
17
|
+
{label: '图标库', type: 'router', path: '/icons', component: lazy(() => import('../view/icons'))},
|
|
18
|
+
// 通用
|
|
19
|
+
{label: '通用', type: 'router', path: '/currency',},
|
|
20
|
+
{label: '按钮', type: 'router', path: '/currency/button', component: lazy(() => import('../view/button'))},
|
|
21
|
+
{
|
|
22
|
+
label: '按钮组',
|
|
23
|
+
type: 'router',
|
|
24
|
+
path: '/currency/buttonGroup',
|
|
25
|
+
component: lazy(() => import('../view/buttonGroup'))
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
label: '切换按钮',
|
|
29
|
+
type: 'router',
|
|
30
|
+
path: '/currency/toggleButton',
|
|
31
|
+
component: lazy(() => import('../view/toggleButton'))
|
|
32
|
+
},
|
|
33
|
+
{label: '容器', type: 'router', path: '/currency/container', component: lazy(() => import('../view/container'))},
|
|
34
|
+
|
|
35
|
+
// 导航
|
|
36
|
+
{label: '导航', type: 'router', path: '/nav',},
|
|
37
|
+
{label: '步骤条', type: 'router', path: '/nav/stepper', component: lazy(() => import('../view/stepper'))},
|
|
38
|
+
{label: '菜单', type: 'router', path: '/nav/menu', component: lazy(() => import('../view/menu'))},
|
|
39
|
+
{label: '页头', type: 'router', path: '/nav/pageHeader', component: lazy(() => import('../view/pageHeader'))},
|
|
40
|
+
{label: '分页', type: 'router', path: '/nav/pagination', component: lazy(() => import('../view/pagination'))},
|
|
41
|
+
{label: '面包屑', type: 'router', path: '/nav/breadcrumbs', component: lazy(() => import('../view/breadcrumbs'))},
|
|
42
|
+
// 数据录入
|
|
43
|
+
{label: '数据录入', type: 'router', path: '/dataEntry',},
|
|
44
|
+
{
|
|
45
|
+
label: '表单',
|
|
46
|
+
type: 'router',
|
|
47
|
+
path: '/dataEntry/form',
|
|
48
|
+
component: lazy(() => import('../view/form'))
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
label: '输入框',
|
|
52
|
+
type: 'router',
|
|
53
|
+
path: '/dataEntry/textField',
|
|
54
|
+
component: lazy(() => import('../view/textField'))
|
|
55
|
+
},
|
|
56
|
+
{label: '下拉框', type: 'router', path: '/dataEntry/select', component: lazy(() => import('../view/select'))},
|
|
57
|
+
{
|
|
58
|
+
label: '下拉输入',
|
|
59
|
+
type: 'router',
|
|
60
|
+
path: '/dataEntry/selectInput',
|
|
61
|
+
component: lazy(() => import('../view/selectInput'))
|
|
62
|
+
},
|
|
63
|
+
{label: '单选框', type: 'router', path: '/dataEntry/radio', component: lazy(() => import('../view/radio'))},
|
|
64
|
+
{label: '多选框', type: 'router', path: '/dataEntry/checkbox', component: lazy(() => import('../view/checkbox'))},
|
|
65
|
+
{
|
|
66
|
+
label: '数字输入框',
|
|
67
|
+
type: 'router',
|
|
68
|
+
path: '/dataEntry/inputNumber',
|
|
69
|
+
component: lazy(() => import('../view/inputNumber'))
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
label: '国际化输入框',
|
|
73
|
+
type: 'router',
|
|
74
|
+
path: '/dataEntry/inputLang',
|
|
75
|
+
component: lazy(() => import('../view/inputLang'))
|
|
76
|
+
},
|
|
77
|
+
{label: '多值框', type: 'router', path: '/dataEntry/multiBox', component: lazy(() => import('../view/multiBox'))},
|
|
78
|
+
{
|
|
79
|
+
label: '单值框',
|
|
80
|
+
type: 'router',
|
|
81
|
+
path: '/dataEntry/singleBox',
|
|
82
|
+
component: lazy(() => import('../view/singleBox'))
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
label: '日期选择框',
|
|
86
|
+
type: 'router',
|
|
87
|
+
path: '/dataEntry/datePicker',
|
|
88
|
+
component: lazy(() => import('../view/datePicker'))
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
label: '时间选择框',
|
|
92
|
+
type: 'router',
|
|
93
|
+
path: '/dataEntry/timePicker',
|
|
94
|
+
component: lazy(() => import('../view/timePicker'))
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
label: '组合选择器',
|
|
98
|
+
type: 'router',
|
|
99
|
+
path: '/dataEntry/comboSelect',
|
|
100
|
+
component: lazy(() => import('../view/comboSelect'))
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
label: '穿梭框',
|
|
104
|
+
type: 'router',
|
|
105
|
+
path: '/dataEntry/transfer',
|
|
106
|
+
component: lazy(() => import('../view/transfer'))
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
label: '级联选择器',
|
|
110
|
+
type: 'router',
|
|
111
|
+
path: '/dataEntry/cascader',
|
|
112
|
+
component: lazy(() => import('../view/cascader'))
|
|
113
|
+
},
|
|
114
|
+
{label: '开关', type: 'router', path: '/dataEntry/switch', component: lazy(() => import('../view/switch'))},
|
|
115
|
+
{label: '滑动输入条', type: 'router', path: '/dataEntry/slider', component: lazy(() => import('../view/slider'))},
|
|
116
|
+
{label: '上传', type: 'router', path: '/dataEntry/upload', component: lazy(() => import('../view/upload'))},
|
|
117
|
+
{
|
|
118
|
+
label: '颜色选择器',
|
|
119
|
+
type: 'router',
|
|
120
|
+
path: '/dataEntry/colorPicker',
|
|
121
|
+
component: lazy(() => import('../view/colorPicker'))
|
|
122
|
+
},
|
|
123
|
+
{label: '搜索', type: 'router', path: '/dataEntry/search', component: lazy(() => import('../view/search'))},
|
|
124
|
+
|
|
125
|
+
// 数据展示
|
|
126
|
+
{label: '数据展示', type: 'router', path: '/dataDisplay',},
|
|
127
|
+
{label: '表格', type: 'router', path: '/dataDisplay/table', component: lazy(() => import('../view/table'))},
|
|
128
|
+
{label: '表格操作按钮', type: 'router', path: '/dataDisplay/operateBtn', component: lazy(() => import('../view/operateBtn'))},
|
|
129
|
+
{label: '树形控件', type: 'router', path: '/dataDisplay/tree', component: lazy(() => import('../view/tree'))},
|
|
130
|
+
{label: '标签页', type: 'router', path: '/dataDisplay/tabs', component: lazy(() => import('../view/tabs'))},
|
|
131
|
+
{label: '标签', type: 'router', path: '/dataDisplay/tag', component: lazy(() => import('../view/tag'))},
|
|
132
|
+
{
|
|
133
|
+
label: '走马灯',
|
|
134
|
+
type: 'router',
|
|
135
|
+
path: '/dataDisplay/carousel',
|
|
136
|
+
component: lazy(() => import('../view/carousel'))
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
label: '折叠面板',
|
|
140
|
+
type: 'router',
|
|
141
|
+
path: '/dataDisplay/collapse',
|
|
142
|
+
component: lazy(() => import('../view/collapse'))
|
|
143
|
+
},
|
|
144
|
+
{label: '文字提示', type: 'router', path: '/dataDisplay/toolTip', component: lazy(() => import('../view/toolTip'))},
|
|
145
|
+
{
|
|
146
|
+
label: '时间轴',
|
|
147
|
+
type: 'router',
|
|
148
|
+
path: '/dataDisplay/timeLine',
|
|
149
|
+
component: lazy(() => import('../view/timeLine'))
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
label: '超出省略',
|
|
153
|
+
type: 'router',
|
|
154
|
+
path: '/dataDisplay/autoTips',
|
|
155
|
+
component: lazy(() => import('../view/autoTips'))
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
label: '超出自适应盒子',
|
|
159
|
+
type: 'router',
|
|
160
|
+
path: '/dataDisplay/autoBox',
|
|
161
|
+
component: lazy(() => import('../view/autoBox'))
|
|
162
|
+
},
|
|
163
|
+
{label: '弹出框', type: 'router', path: '/dataDisplay/popover', component: lazy(() => import('../view/popover'))},
|
|
164
|
+
{
|
|
165
|
+
label: '表单组件标题',
|
|
166
|
+
type: 'router',
|
|
167
|
+
path: '/dataDisplay/label',
|
|
168
|
+
component: lazy(() => import('../view/label'))
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
label: '表单组件错误提示',
|
|
172
|
+
type: 'router',
|
|
173
|
+
path: '/dataDisplay/helperText',
|
|
174
|
+
component: lazy(() => import('../view/helperText'))
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
label: '空状态',
|
|
178
|
+
type: 'router',
|
|
179
|
+
path: '/dataDisplay/empty',
|
|
180
|
+
component: lazy(() => import('../view/empty'))
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
label: '查询中',
|
|
184
|
+
type: 'router',
|
|
185
|
+
path: '/dataDisplay/querying',
|
|
186
|
+
component: lazy(() => import('../view/querying'))
|
|
187
|
+
},
|
|
188
|
+
// 反馈
|
|
189
|
+
{label: '反馈', type: 'router', path: '/feedback',},
|
|
190
|
+
{label: '全局提示', type: 'router', path: '/feedback/message', component: lazy(() => import('../view/message'))},
|
|
191
|
+
{label: '帮助提示', type: 'router', path: '/feedback/help', component: lazy(() => import('../view/help'))},
|
|
192
|
+
{label: '抽屉', type: 'router', path: '/feedback/drawer', component: lazy(() => import('../view/drawer'))},
|
|
193
|
+
{label: '对话框', type: 'router', path: '/feedback/modal', component: lazy(() => import('../view/modal'))},
|
|
194
|
+
{
|
|
195
|
+
label: '气泡确认框',
|
|
196
|
+
type: 'router',
|
|
197
|
+
path: '/feedback/popConfirm',
|
|
198
|
+
component: lazy(() => import('../view/popConfirm'))
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
label: '通知提醒框',
|
|
202
|
+
type: 'router',
|
|
203
|
+
path: '/feedback/notification',
|
|
204
|
+
component: lazy(() => import('../view/notification'))
|
|
205
|
+
},
|
|
206
|
+
// 其它
|
|
207
|
+
{label: '其它', type: 'router', path: '/other',},
|
|
208
|
+
{label: 'loading', type: 'router', path: '/other/loading', component: lazy(() => import('../view/loading'))},
|
|
209
|
+
];
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
export default router;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// 全局公用数据Context
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import {LocaleConfig} from '../locale/index'
|
|
5
|
+
import {MessageObject} from 'src/Message';
|
|
6
|
+
import {ConfirmObject} from 'src/Modal';
|
|
7
|
+
import {SnackSDK} from "@para-snack/core";
|
|
8
|
+
|
|
9
|
+
interface GlbalProps {
|
|
10
|
+
sdk: SnackSDK,
|
|
11
|
+
// 国际化
|
|
12
|
+
setLocale: Function, // 设置语言
|
|
13
|
+
locales: LocaleConfig // 语言列表
|
|
14
|
+
locale: string // 当前语言
|
|
15
|
+
|
|
16
|
+
// 菜单
|
|
17
|
+
setMenu: Function // 设置菜单
|
|
18
|
+
menu: Array<any> // 菜单数据
|
|
19
|
+
// 全局消息提示方法
|
|
20
|
+
Message: MessageObject
|
|
21
|
+
// 全局确认框
|
|
22
|
+
Confirm: ConfirmObject
|
|
23
|
+
// 路由设置
|
|
24
|
+
router: string
|
|
25
|
+
setRouter: Function
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export const Global = React.createContext<GlbalProps>({
|
|
29
|
+
sdk: {} as SnackSDK,
|
|
30
|
+
// 国际化
|
|
31
|
+
setLocale: () => {
|
|
32
|
+
},
|
|
33
|
+
locales: {},
|
|
34
|
+
locale: '',
|
|
35
|
+
|
|
36
|
+
// 菜单
|
|
37
|
+
setMenu: () => {
|
|
38
|
+
},
|
|
39
|
+
menu: [],
|
|
40
|
+
// 全局消息提示
|
|
41
|
+
Message: {
|
|
42
|
+
info: () => {
|
|
43
|
+
},
|
|
44
|
+
error: () => {
|
|
45
|
+
},
|
|
46
|
+
success: () => {
|
|
47
|
+
},
|
|
48
|
+
warn: () => {
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
Confirm: {
|
|
52
|
+
info: () => {
|
|
53
|
+
},
|
|
54
|
+
error: () => {
|
|
55
|
+
},
|
|
56
|
+
success: () => {
|
|
57
|
+
},
|
|
58
|
+
warn: () => {
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
router: '',
|
|
62
|
+
setRouter: () => {
|
|
63
|
+
},
|
|
64
|
+
});
|
|
65
|
+
export default Global;
|
package/docs/index.tsx
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import 'react-app-polyfill/ie11';
|
|
2
|
+
import 'core-js';
|
|
3
|
+
import React from "react";
|
|
4
|
+
import ReactDOM from "react-dom";
|
|
5
|
+
import {SnackSDK} from '@para-snack/core';
|
|
6
|
+
import {Context} from '@paraview/lib';
|
|
7
|
+
import App from "./App";
|
|
8
|
+
|
|
9
|
+
// import '@para-ui/core/style.css';
|
|
10
|
+
import './styles/index.scss';
|
|
11
|
+
|
|
12
|
+
/* @dynamic debug */
|
|
13
|
+
|
|
14
|
+
import Debugger from '@paraview/lib/debugger';/* @dynamic end */
|
|
15
|
+
|
|
16
|
+
/* @dynamic version */
|
|
17
|
+
window.ParaWeb = {name:'@para-ui/core',version: '2.1.35', env: 'dev', buildTime: '5/23/2022, 11:09:16 AM'}
|
|
18
|
+
/* @dynamic end */
|
|
19
|
+
|
|
20
|
+
const init = async (debug: Array<string> = []) => {
|
|
21
|
+
/* @dynamic Debugger */
|
|
22
|
+
await Debugger.init(debug);
|
|
23
|
+
/* @dynamic end */
|
|
24
|
+
|
|
25
|
+
const sdk = new SnackSDK({
|
|
26
|
+
service: Context.get('snackbar'),
|
|
27
|
+
importMaps: {
|
|
28
|
+
'react': React,
|
|
29
|
+
'react-dom': ReactDOM
|
|
30
|
+
},
|
|
31
|
+
runtime: true
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
ReactDOM.render(
|
|
35
|
+
<App sdk={sdk}/>,
|
|
36
|
+
document.getElementById('root')
|
|
37
|
+
);
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
/* @dynamic init */
|
|
41
|
+
init(["http://192.168.7.27","http://192.168.3.1:10000","http://192.168.2.83:10000","http://10.10.2.48:10000","http://10.10.2.252:5554"])
|
|
42
|
+
/* @dynamic end */
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// 国际化语言包
|
|
2
|
+
|
|
3
|
+
import en from './lang/en_US';
|
|
4
|
+
import zh from './lang/zh_CN';
|
|
5
|
+
|
|
6
|
+
// 默认语言
|
|
7
|
+
const defaultLanguage = 'zh'
|
|
8
|
+
|
|
9
|
+
export type languages = 'en' | 'zh';
|
|
10
|
+
|
|
11
|
+
export interface LangConfig {
|
|
12
|
+
readonly [name: string]: string
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface LocaleConfig {
|
|
16
|
+
[language: string]: {
|
|
17
|
+
name: string
|
|
18
|
+
pack: LangConfig
|
|
19
|
+
},
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// 语言列表
|
|
23
|
+
export const locales = {
|
|
24
|
+
en: {
|
|
25
|
+
name: 'English',
|
|
26
|
+
pack: en
|
|
27
|
+
},
|
|
28
|
+
zh: {
|
|
29
|
+
name: '中文',
|
|
30
|
+
pack: zh
|
|
31
|
+
}
|
|
32
|
+
} as LocaleConfig;
|
|
33
|
+
|
|
34
|
+
// 获取浏览器默认语言
|
|
35
|
+
const getBrowserLanguage = (): string => {
|
|
36
|
+
let lang: string = navigator.language;
|
|
37
|
+
if (locales[lang]) return lang;
|
|
38
|
+
try {
|
|
39
|
+
lang = navigator.language.split('-')[0];
|
|
40
|
+
} catch (e) {
|
|
41
|
+
}
|
|
42
|
+
return lang;
|
|
43
|
+
}
|
|
44
|
+
// 获取当前语言
|
|
45
|
+
const getLanguage = (): string => {
|
|
46
|
+
return String(locales[localStorage.getItem('language') || ''] ? localStorage.getItem('language') : (getBrowserLanguage() || defaultLanguage));
|
|
47
|
+
}
|
|
48
|
+
// 默认语言
|
|
49
|
+
export const defaultLocale: string = getLanguage();
|
|
50
|
+
|
|
51
|
+
// 设置语言
|
|
52
|
+
export const saveDefaultLocale = (locale: languages) => {
|
|
53
|
+
localStorage.setItem('language', locale)
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// 获取国际化文本方法
|
|
57
|
+
export const intl = (ops: string | { id: string }) => {
|
|
58
|
+
if (typeof ops === 'object') ops = ops.id;
|
|
59
|
+
const langugae: string = getLanguage();
|
|
60
|
+
const pack = locales[langugae]?.pack
|
|
61
|
+
return pack[ops] || ops;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export default locales;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import {LangConfig} from '../index';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
// en ...
|
|
5
|
+
403: 'Sorry, you do not have access rights!',
|
|
6
|
+
404: 'Sorry, Not Found!',
|
|
7
|
+
500: 'Sorry, Service Error!',
|
|
8
|
+
unknown: 'Unknown Error!',
|
|
9
|
+
networkError: 'Network Error',
|
|
10
|
+
loading: 'Loading',
|
|
11
|
+
notFound: 'Sorry, the page is missing',
|
|
12
|
+
// demo
|
|
13
|
+
name: 'Para FED Docs',
|
|
14
|
+
powered: 'Powered by Para FED',
|
|
15
|
+
menu: 'Menu'
|
|
16
|
+
} as LangConfig
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import {LangConfig} from '../index';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
// zh ...
|
|
5
|
+
403: '您无权限访问!',
|
|
6
|
+
404: '您访问的内容不存在!',
|
|
7
|
+
500: '服务器内部错误!',
|
|
8
|
+
unknown: '未知服务器错误!',
|
|
9
|
+
networkError: '网络错误',
|
|
10
|
+
loading: '加载中',
|
|
11
|
+
notFound: '抱歉,您访问的页面不存在',
|
|
12
|
+
// demo
|
|
13
|
+
name: 'Para FED 文档',
|
|
14
|
+
powered: '由派拉软件前端团队提供技术支持',
|
|
15
|
+
menu: '菜单'
|
|
16
|
+
} as LangConfig;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/// <reference types="react-scripts" />
|
|
2
|
+
declare interface Window {
|
|
3
|
+
ParaWeb: {
|
|
4
|
+
name: string
|
|
5
|
+
version: string
|
|
6
|
+
env: string
|
|
7
|
+
buildTime: string
|
|
8
|
+
},
|
|
9
|
+
SnackD: any
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare module '*.svg'
|
|
13
|
+
declare module '*.png'
|
|
14
|
+
declare module '*.jpg'
|
|
15
|
+
declare module '*.jpeg'
|
|
16
|
+
declare module '*.gif'
|
|
17
|
+
declare module '*.bmp'
|
|
18
|
+
declare module '*.tiff'
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#root {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
|
|
5
|
+
& > .para-container {
|
|
6
|
+
display: flex !important;
|
|
7
|
+
|
|
8
|
+
& > .para-body {
|
|
9
|
+
width: 100% !important;
|
|
10
|
+
height: 100% !important;
|
|
11
|
+
display: inline-block !important;
|
|
12
|
+
|
|
13
|
+
& > .para-container-top {
|
|
14
|
+
z-index: 1;
|
|
15
|
+
position: relative;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
& > .para-container-right {
|
|
19
|
+
position: relative;
|
|
20
|
+
padding: 32px 180px 32px 64px;
|
|
21
|
+
height: calc(100% - 60px);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.para-react-padding {
|
|
26
|
+
.para-container-right {
|
|
27
|
+
padding: 32px 64px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author linhd
|
|
3
|
+
* @date 2022/2/14 2:04 PM
|
|
4
|
+
* @description api
|
|
5
|
+
*/
|
|
6
|
+
import {RowsData} from '../../components/apiTable';
|
|
7
|
+
|
|
8
|
+
const apiData: RowsData = [
|
|
9
|
+
{
|
|
10
|
+
name: 'className',
|
|
11
|
+
desc: 'class样式名',
|
|
12
|
+
type: 'string'
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
name: 'style',
|
|
16
|
+
desc: 'style',
|
|
17
|
+
type: 'CSSProperties'
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: 'list',
|
|
21
|
+
desc: '选项',
|
|
22
|
+
type: 'any[]'
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: 'showNum',
|
|
26
|
+
desc: '指定渲染几项,存在这个参数,则不自适应',
|
|
27
|
+
type: 'number'
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
name: 'popoverClassName',
|
|
31
|
+
desc: '下拉框样式',
|
|
32
|
+
type: 'string'
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'moreCustomize',
|
|
36
|
+
desc: '自定义更多内容',
|
|
37
|
+
type: 'ReactNode'
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'hideMore',
|
|
41
|
+
desc: '隐藏更多按钮',
|
|
42
|
+
type: 'boolean',
|
|
43
|
+
default: 'false'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'openMore',
|
|
47
|
+
desc: '打开下拉框',
|
|
48
|
+
type: 'boolean',
|
|
49
|
+
default: 'false'
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
name: 'anchorEl',
|
|
53
|
+
desc: '定位元素',
|
|
54
|
+
type: 'any'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: 'onCloseMore',
|
|
58
|
+
desc: '关闭弹窗',
|
|
59
|
+
type: '() => void'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: 'onShowMore',
|
|
63
|
+
desc: '显示更多',
|
|
64
|
+
type: '(bol: boolean) => void'
|
|
65
|
+
}
|
|
66
|
+
];
|
|
67
|
+
export default apiData;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author linhd
|
|
3
|
+
* @date 2022/2/14 2:04 PM
|
|
4
|
+
* @description 源码字符串
|
|
5
|
+
*/
|
|
6
|
+
export const basicAutoBox = `
|
|
7
|
+
import AutoBox from '@para-ui/core/AutoBox';
|
|
8
|
+
|
|
9
|
+
const list = [
|
|
10
|
+
<Button variant={"outlined"}>按钮1</Button>,
|
|
11
|
+
<Button variant={"outlined"}>按钮2</Button>,
|
|
12
|
+
<Button variant={"outlined"}>按钮3</Button>,
|
|
13
|
+
<Button variant={"outlined"}>按钮4</Button>,
|
|
14
|
+
<Button variant={"outlined"}>按钮5</Button>,
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
return (
|
|
18
|
+
<AutoBox list={list} />
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
<style>
|
|
22
|
+
.paraui-auto-box {
|
|
23
|
+
& > button {
|
|
24
|
+
margin-right: 10px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
</style>
|
|
28
|
+
`;
|
|
29
|
+
|
|
30
|
+
export const showNumAutoBox = `
|
|
31
|
+
import AutoBox from '@para-ui/core/AutoBox';
|
|
32
|
+
|
|
33
|
+
const list = [
|
|
34
|
+
<Button variant={"outlined"}>按钮1</Button>,
|
|
35
|
+
<Button variant={"outlined"}>按钮2</Button>,
|
|
36
|
+
<Button variant={"outlined"}>按钮3</Button>,
|
|
37
|
+
<Button variant={"outlined"}>按钮4</Button>,
|
|
38
|
+
<Button variant={"outlined"}>按钮5</Button>,
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
return (
|
|
42
|
+
<AutoBox list={list} showNum={3}/>
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
<style>
|
|
46
|
+
.paraui-auto-box {
|
|
47
|
+
& > button {
|
|
48
|
+
margin-right: 10px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
</style>
|
|
52
|
+
`;
|
|
53
|
+
|
|
54
|
+
export const customContentAutoBox = `
|
|
55
|
+
import AutoBox from '@para-ui/core/AutoBox';
|
|
56
|
+
|
|
57
|
+
const list = [
|
|
58
|
+
<Button variant={"outlined"}>按钮1</Button>,
|
|
59
|
+
<Button variant={"outlined"}>按钮2</Button>,
|
|
60
|
+
<Button variant={"outlined"}>按钮3</Button>,
|
|
61
|
+
<Button variant={"outlined"}>按钮4</Button>,
|
|
62
|
+
<Button variant={"outlined"}>按钮5</Button>,
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
return (
|
|
66
|
+
<AutoBox
|
|
67
|
+
list={list}
|
|
68
|
+
moreCustomize={<Button variant={"outlined"}>更多</Button>}
|
|
69
|
+
/>
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
<style>
|
|
73
|
+
.paraui-auto-box {
|
|
74
|
+
& > button {
|
|
75
|
+
margin-right: 10px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
</style>
|
|
79
|
+
`;
|
|
80
|
+
|
|
81
|
+
export const customMoreAutoBox = `
|
|
82
|
+
import AutoBox from '@para-ui/core/AutoBox';
|
|
83
|
+
const [open, setOpen] = useState<boolean>(false)
|
|
84
|
+
const [moreBol, setMoreBol] = useState<boolean>(false)
|
|
85
|
+
const [list] = useState<any>([
|
|
86
|
+
<Button variant={"outlined"}>按钮1</Button>,
|
|
87
|
+
<Button variant={"outlined"}>按钮2</Button>,
|
|
88
|
+
<Button variant={"outlined"}>按钮3</Button>,
|
|
89
|
+
<Button variant={"outlined"}>按钮4</Button>,
|
|
90
|
+
<Button variant={"outlined"}>按钮5</Button>,
|
|
91
|
+
])
|
|
92
|
+
const posDom = useRef<any>();
|
|
93
|
+
|
|
94
|
+
const clickbtn = () => {
|
|
95
|
+
if (!moreBol) return;
|
|
96
|
+
console.log('打开')
|
|
97
|
+
setOpen(true);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
const closeFunc = () => {
|
|
101
|
+
console.log('关闭')
|
|
102
|
+
setOpen(false);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const showMore = (bol: boolean) => {
|
|
106
|
+
setMoreBol(bol);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return (
|
|
110
|
+
<div className={'custom-parui-auto-box'}>
|
|
111
|
+
<AutoBox
|
|
112
|
+
list={list}
|
|
113
|
+
anchorEl={posDom.current}
|
|
114
|
+
hideMore={true}
|
|
115
|
+
openMore={open}
|
|
116
|
+
onCloseMore={closeFunc}
|
|
117
|
+
onShowMore={showMore}
|
|
118
|
+
/>
|
|
119
|
+
<div ref={posDom} onClick={clickbtn}>
|
|
120
|
+
<Button variant={"outlined"}>更多</Button>
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
<style>
|
|
126
|
+
.custom-parui-auto-box {
|
|
127
|
+
display: flex;
|
|
128
|
+
|
|
129
|
+
.paraui-auto-box {
|
|
130
|
+
& > button {
|
|
131
|
+
margin-right: 10px;
|
|
132
|
+
}
|
|
133
|
+
width: calc(100% - 70px);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
</style>
|
|
137
|
+
`;
|