@agentscope-ai/design 1.0.5 → 1.0.7
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/lib/antd/docs/_readme.txt +1 -0
- package/lib/antd/styles/_readme.txt +1 -0
- package/lib/antd/styles/alert.style.d.ts +10 -0
- package/lib/antd/styles/alert.style.js +12 -0
- package/lib/antd/styles/button.style.d.ts +80 -0
- package/lib/antd/styles/button.style.js +47 -0
- package/lib/antd/styles/floatButton.style.d.ts +8 -0
- package/lib/antd/styles/floatButton.style.js +12 -0
- package/lib/antd/styles/index.style.js +54 -0
- package/lib/antd/styles/inputNumber.style.d.ts +18 -0
- package/lib/antd/styles/inputNumber.style.js +17 -0
- package/lib/antd/styles/radio.style.d.ts +24 -0
- package/lib/antd/styles/radio.style.js +18 -0
- package/lib/antd/styles/select.style.d.ts +31 -0
- package/lib/antd/styles/select.style.js +28 -0
- package/lib/antd/themes/bailianDarkTheme.json +90 -0
- package/lib/antd/themes/bailianTheme.json +90 -0
- package/lib/antd/themes/carbonDarkTheme.json +91 -0
- package/lib/antd/themes/carbonTheme.json +90 -0
- package/lib/antd/themes/generateThemeByToken.d.ts +10 -0
- package/lib/antd/themes/generateThemeByToken.js +201 -0
- package/lib/components/commonComponents/Alert/demo/demo1.js +9 -0
- package/lib/components/commonComponents/Alert/demo/demo2.js +27 -0
- package/lib/components/commonComponents/Alert/demo/demo3.js +9 -0
- package/lib/components/commonComponents/Alert/demo/demo4.js +10 -0
- package/lib/components/commonComponents/Alert/demo/demo5.js +15 -0
- package/lib/components/commonComponents/Alert/demo/demo6.js +29 -0
- package/lib/components/commonComponents/Anchor/demo/demo1.d.ts +7 -0
- package/lib/components/commonComponents/Anchor/demo/demo1.js +27 -0
- package/lib/components/commonComponents/Anchor/demo/demo2.d.ts +7 -0
- package/lib/components/commonComponents/Anchor/demo/demo2.js +31 -0
- package/lib/components/commonComponents/Anchor/index.d.ts +5 -0
- package/lib/components/commonComponents/Anchor/index.js +15 -0
- package/lib/components/commonComponents/Anchor/index.style.d.ts +14 -0
- package/lib/components/commonComponents/Anchor/index.style.js +23 -0
- package/lib/components/commonComponents/Avatar/demo/demo1.js +7 -0
- package/lib/components/commonComponents/Avatar/demo/demo2.js +27 -0
- package/lib/components/commonComponents/Avatar/demo/demo3.js +7 -0
- package/lib/components/commonComponents/Avatar/index.js +41 -0
- package/lib/components/commonComponents/Avatar/index.style.d.ts +7 -0
- package/lib/components/commonComponents/Avatar/index.style.js +21 -0
- package/lib/components/commonComponents/Breadcrumb/demo/demo1.js +15 -0
- package/lib/components/commonComponents/Breadcrumb/demo/demo2.js +25 -0
- package/lib/components/commonComponents/Breadcrumb/index.d.ts +33 -0
- package/lib/components/commonComponents/Breadcrumb/index.js +74 -0
- package/lib/components/commonComponents/Breadcrumb/index.style.d.ts +107 -0
- package/lib/components/commonComponents/Breadcrumb/index.style.js +60 -0
- package/lib/components/commonComponents/Button/demo/demo1.js +38 -0
- package/lib/components/commonComponents/Button/demo/demo2.js +18 -0
- package/lib/components/commonComponents/Button/demo/demo3.js +16 -0
- package/lib/components/commonComponents/Button/demo/demo4.js +18 -0
- package/lib/components/commonComponents/Button/demo/demo5.js +18 -0
- package/lib/components/commonComponents/Button/demo/demo6.js +97 -0
- package/lib/components/commonComponents/Button/index.d.ts +34 -0
- package/lib/components/commonComponents/Button/index.js +94 -0
- package/lib/components/commonComponents/Card/demo/demo1.js +27 -0
- package/lib/components/commonComponents/Card/demo/demo2.js +25 -0
- package/lib/components/commonComponents/Card/index.d.ts +11 -0
- package/lib/components/commonComponents/Card/index.js +43 -0
- package/lib/components/commonComponents/Card/index.style.d.ts +71 -0
- package/lib/components/commonComponents/Card/index.style.js +46 -0
- package/lib/components/commonComponents/Checkbox/demo/demo1.js +30 -0
- package/lib/components/commonComponents/Checkbox/demo/demo2.js +14 -0
- package/lib/components/commonComponents/Checkbox/demo/demo3.js +26 -0
- package/lib/components/commonComponents/Checkbox/index.d.ts +28 -0
- package/lib/components/commonComponents/Checkbox/index.js +44 -0
- package/lib/components/commonComponents/Checkbox/index.style.d.ts +34 -0
- package/lib/components/commonComponents/Checkbox/index.style.js +38 -0
- package/lib/components/commonComponents/CodeBlock/demo/demo1.js +49 -0
- package/lib/components/commonComponents/CodeBlock/demo/demo2.js +19 -0
- package/lib/components/commonComponents/CodeBlock/demo/demo3.js +52 -0
- package/lib/components/commonComponents/CodeBlock/index.d.ts +31 -0
- package/lib/components/commonComponents/CodeBlock/index.js +92 -0
- package/lib/components/commonComponents/CodeBlock/index.style.d.ts +354 -0
- package/lib/components/commonComponents/CodeBlock/index.style.js +72 -0
- package/lib/components/commonComponents/Collapse/demo/demo1.js +24 -0
- package/lib/components/commonComponents/Collapse/demo/demo2.js +45 -0
- package/lib/components/commonComponents/Collapse/index.d.ts +3 -0
- package/lib/components/commonComponents/Collapse/index.js +14 -0
- package/lib/components/commonComponents/Collapse/index.style.d.ts +57 -0
- package/lib/components/commonComponents/Collapse/index.style.js +47 -0
- package/lib/components/commonComponents/CollapsePanel/demo/demo1.js +85 -0
- package/lib/components/commonComponents/CollapsePanel/index.d.ts +38 -0
- package/lib/components/commonComponents/CollapsePanel/index.js +119 -0
- package/lib/components/commonComponents/CollapsePanel/index.style.d.ts +287 -0
- package/lib/components/commonComponents/CollapsePanel/index.style.js +97 -0
- package/lib/components/commonComponents/ConfigProvider/index.d.ts +23 -0
- package/lib/components/commonComponents/ConfigProvider/index.js +151 -0
- package/lib/components/commonComponents/DatePicker/demo/demo1.js +28 -0
- package/lib/components/commonComponents/DatePicker/demo/demo2.js +34 -0
- package/lib/components/commonComponents/DatePicker/demo/demo3.js +49 -0
- package/lib/components/commonComponents/DatePicker/demo/demo4.js +38 -0
- package/lib/components/commonComponents/DatePicker/index.d.ts +7 -0
- package/lib/components/commonComponents/DatePicker/index.js +80 -0
- package/lib/components/commonComponents/DatePicker/index.style.d.ts +102 -0
- package/lib/components/commonComponents/DatePicker/index.style.js +61 -0
- package/lib/components/commonComponents/Descriptions/demo/demo1.js +32 -0
- package/lib/components/commonComponents/Descriptions/demo/demo2.js +33 -0
- package/lib/components/commonComponents/Descriptions/index.d.ts +3 -0
- package/lib/components/commonComponents/Descriptions/index.js +37 -0
- package/lib/components/commonComponents/Descriptions/index.style.d.ts +17 -0
- package/lib/components/commonComponents/Descriptions/index.style.js +29 -0
- package/lib/components/commonComponents/Drawer/Confirm.d.ts +46 -0
- package/lib/components/commonComponents/Drawer/Confirm.js +61 -0
- package/lib/components/commonComponents/Drawer/demo/demo1.js +49 -0
- package/lib/components/commonComponents/Drawer/demo/demo2.d.ts +7 -0
- package/lib/components/commonComponents/Drawer/demo/demo2.js +90 -0
- package/lib/components/commonComponents/Drawer/demo/demo3.js +64 -0
- package/lib/components/commonComponents/Drawer/demo/demo4.js +99 -0
- package/lib/components/commonComponents/Drawer/demo/demo5.js +73 -0
- package/lib/components/commonComponents/Drawer/index.d.ts +16 -0
- package/lib/components/commonComponents/Drawer/index.js +41 -0
- package/lib/components/commonComponents/Drawer/index.style.d.ts +84 -0
- package/lib/components/commonComponents/Drawer/index.style.js +54 -0
- package/lib/components/commonComponents/Dropdown/demo/demo1.d.ts +3 -0
- package/lib/components/commonComponents/Dropdown/demo/demo1.js +25 -0
- package/lib/components/commonComponents/Dropdown/demo/demo2.d.ts +6 -0
- package/lib/components/commonComponents/Dropdown/demo/demo2.js +45 -0
- package/lib/components/commonComponents/Dropdown/demo/demo3.d.ts +3 -0
- package/lib/components/commonComponents/Dropdown/demo/demo3.js +41 -0
- package/lib/components/commonComponents/Dropdown/demo/demo4.d.ts +7 -0
- package/lib/components/commonComponents/Dropdown/demo/demo4.js +31 -0
- package/lib/components/commonComponents/Dropdown/demo/demo5.d.ts +2 -0
- package/lib/components/commonComponents/Dropdown/demo/demo5.js +32 -0
- package/lib/components/commonComponents/Dropdown/index.js +48 -0
- package/lib/components/commonComponents/Dropdown/index.style.d.ts +78 -0
- package/lib/components/commonComponents/Dropdown/index.style.js +40 -0
- package/lib/components/commonComponents/EllipsisTip/demo/demo2-2.js +17 -0
- package/lib/components/commonComponents/Empty/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Empty/demo/demo1.js +10 -0
- package/lib/components/commonComponents/Empty/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Empty/demo/demo2.js +10 -0
- package/lib/components/commonComponents/Empty/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/Empty/demo/demo3.js +50 -0
- package/lib/components/commonComponents/Empty/index.d.ts +80 -0
- package/lib/components/commonComponents/Empty/index.js +271 -0
- package/lib/components/commonComponents/Empty/index.style.d.ts +113 -0
- package/lib/components/commonComponents/Empty/index.style.js +51 -0
- package/lib/components/commonComponents/Empty/svg/Illustrate.d.ts +14 -0
- package/lib/components/commonComponents/Empty/svg/Illustrate.js +99 -0
- package/lib/components/commonComponents/FileIcon/demo/demo.js +42 -0
- package/lib/components/commonComponents/FileIcon/index.d.ts +20 -0
- package/lib/components/commonComponents/FileIcon/index.js +97 -0
- package/lib/components/commonComponents/FloatButton/demo/demo1.js +14 -0
- package/lib/components/commonComponents/FloatButton/demo/demo2.js +15 -0
- package/lib/components/commonComponents/Form/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Form/demo/demo1.js +50 -0
- package/lib/components/commonComponents/Form/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Form/demo/demo2.js +53 -0
- package/lib/components/commonComponents/Form/index.style.d.ts +53 -0
- package/lib/components/commonComponents/Form/index.style.js +38 -0
- package/lib/components/commonComponents/HelpIcon/demo/demo.d.ts +2 -0
- package/lib/components/commonComponents/HelpIcon/index.js +39 -0
- package/lib/components/commonComponents/IconButton/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/IconButton/demo/demo1.js +43 -0
- package/lib/components/commonComponents/IconButton/demo/demo2.d.ts +3 -0
- package/lib/components/commonComponents/IconButton/demo/demo2.js +27 -0
- package/lib/components/commonComponents/IconButton/demo/demo3.d.ts +6 -0
- package/lib/components/commonComponents/IconButton/demo/demo3.js +30 -0
- package/lib/components/commonComponents/IconButton/index.js +49 -0
- package/lib/components/commonComponents/IconButton/index.style.d.ts +11 -0
- package/lib/components/commonComponents/IconButton/index.style.js +24 -0
- package/lib/components/commonComponents/IconFont/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/IconFont/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/IconFont/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/IconFont/demo/demo4.d.ts +2 -0
- package/lib/components/commonComponents/IconFont/index.js +44 -0
- package/lib/components/commonComponents/Image/demo/demo1.js +8 -0
- package/lib/components/commonComponents/Image/index.js +51 -0
- package/lib/components/commonComponents/Image/index.style.d.ts +22 -0
- package/lib/components/commonComponents/Image/index.style.js +30 -0
- package/lib/components/commonComponents/Input/demo/demo1.js +24 -0
- package/lib/components/commonComponents/Input/demo/demo2.js +24 -0
- package/lib/components/commonComponents/Input/demo/demo3.js +27 -0
- package/lib/components/commonComponents/Input/demo/demo4.js +40 -0
- package/lib/components/commonComponents/Input/demo/demo5.js +26 -0
- package/lib/components/commonComponents/Input/demo/demo6.js +45 -0
- package/lib/components/commonComponents/Input/demo/demo7.js +39 -0
- package/lib/components/commonComponents/Input/index.d.ts +18 -0
- package/lib/components/commonComponents/Input/index.js +43 -0
- package/lib/components/commonComponents/Input/index.style.d.ts +70 -0
- package/lib/components/commonComponents/Input/index.style.js +42 -0
- package/lib/components/commonComponents/InputNumber/demo/demo.js +32 -0
- package/lib/components/commonComponents/InputNumber/demo/demo1.js +39 -0
- package/lib/components/commonComponents/InputSearch/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/InputSearch/demo/demo1.js +13 -0
- package/lib/components/commonComponents/InputSearch/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/InputSearch/demo/demo2.js +28 -0
- package/lib/components/commonComponents/Message/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Message/demo/demo1.js +10 -0
- package/lib/components/commonComponents/Message/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Message/demo/demo2.js +41 -0
- package/lib/components/commonComponents/Message/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/Message/demo/demo3.js +34 -0
- package/lib/components/commonComponents/Message/index.d.ts +33 -0
- package/lib/components/commonComponents/Modal/demo/basic.d.ts +1 -0
- package/lib/components/commonComponents/Modal/demo/basic.js +49 -0
- package/lib/components/commonComponents/Modal/demo/styles.d.ts +1 -0
- package/lib/components/commonComponents/Modal/demo/styles.js +158 -0
- package/lib/components/commonComponents/Modal/demo/width.d.ts +1 -0
- package/lib/components/commonComponents/Modal/demo/width.js +68 -0
- package/lib/components/commonComponents/Modal/index.d.ts +28 -0
- package/lib/components/commonComponents/Modal/index.js +70 -0
- package/lib/components/commonComponents/Notification/demo/demo1.js +15 -0
- package/lib/components/commonComponents/Notification/demo/demo2.js +21 -0
- package/lib/components/commonComponents/Notification/demo/demo3.js +45 -0
- package/lib/components/commonComponents/Notification/demo/demo4.js +79 -0
- package/lib/components/commonComponents/Notification/index.d.ts +21 -0
- package/lib/components/commonComponents/Notification/index.js +108 -0
- package/lib/components/commonComponents/Pagination/demo/demo1.js +18 -0
- package/lib/components/commonComponents/Pagination/demo/demo2.js +21 -0
- package/lib/components/commonComponents/Pagination/index.d.ts +11 -0
- package/lib/components/commonComponents/Pagination/index.js +81 -0
- package/lib/components/commonComponents/Pagination/index.style.d.ts +49 -0
- package/lib/components/commonComponents/Pagination/index.style.js +42 -0
- package/lib/components/commonComponents/Popover/demo/demo1.js +26 -0
- package/lib/components/commonComponents/Progress/demo/demo1.js +17 -0
- package/lib/components/commonComponents/Radio/demo/demo1.js +25 -0
- package/lib/components/commonComponents/RadioButton/demo/demo1.js +28 -0
- package/lib/components/commonComponents/RadioButton/demo/demo2.js +58 -0
- package/lib/components/commonComponents/RadioButton/demo/demo3.js +31 -0
- package/lib/components/commonComponents/RadioButton/demo/demo4.js +30 -0
- package/lib/components/commonComponents/RadioButton/demo/demo5.js +30 -0
- package/lib/components/commonComponents/RadioButton/index.d.ts +23 -0
- package/lib/components/commonComponents/RadioButton/index.style.d.ts +72 -0
- package/lib/components/commonComponents/RadioButton/index.style.js +63 -0
- package/lib/components/commonComponents/Result/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo1.js +10 -0
- package/lib/components/commonComponents/Result/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo2.js +10 -0
- package/lib/components/commonComponents/Result/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo3.js +10 -0
- package/lib/components/commonComponents/Result/demo/demo4.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo4.js +10 -0
- package/lib/components/commonComponents/Result/demo/demo5.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo5.js +10 -0
- package/lib/components/commonComponents/Result/demo/demo6.d.ts +2 -0
- package/lib/components/commonComponents/Result/demo/demo6.js +10 -0
- package/lib/components/commonComponents/Result/index.d.ts +10 -0
- package/lib/components/commonComponents/Result/index.js +19 -0
- package/lib/components/commonComponents/Result/index.style.d.ts +3 -0
- package/lib/components/commonComponents/Result/index.style.js +16 -0
- package/lib/components/commonComponents/Select/demo/demo1.js +74 -0
- package/lib/components/commonComponents/Select/demo/demo2.js +78 -0
- package/lib/components/commonComponents/Skeleton/demo/demo1.js +19 -0
- package/lib/components/commonComponents/SlateEditor/demo/demo.d.ts +2 -0
- package/lib/components/commonComponents/SlateEditor/elements/Var.d.ts +2 -0
- package/lib/components/commonComponents/SlateEditor/elements/Var.js +21 -0
- package/lib/components/commonComponents/SlateEditor/elements/index.style.d.ts +14 -0
- package/lib/components/commonComponents/SlateEditor/elements/index.style.js +21 -0
- package/lib/components/commonComponents/Slider/demo/demo1.js +22 -0
- package/lib/components/commonComponents/Slider/demo/demo2.js +24 -0
- package/lib/components/commonComponents/Slider/demo/demo3.js +24 -0
- package/lib/components/commonComponents/Slider/slider.input.js +76 -0
- package/lib/components/commonComponents/SliderSelector/demo/demo.d.ts +2 -0
- package/lib/components/commonComponents/SliderSelector/index.js +71 -0
- package/lib/components/commonComponents/Spinner/demo/demo1.js +23 -0
- package/lib/components/commonComponents/Spinner/demo/demo2.js +77 -0
- package/lib/components/commonComponents/Spinner/demo/demo3.js +62 -0
- package/lib/components/commonComponents/Spinner/demo/demo4.js +93 -0
- package/lib/components/commonComponents/Spinner/index.d.ts +53 -0
- package/lib/components/commonComponents/Spinner/index.js +115 -0
- package/lib/components/commonComponents/Spinner/index.style.d.ts +79 -0
- package/lib/components/commonComponents/Spinner/index.style.js +61 -0
- package/lib/components/commonComponents/Statistic/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Statistic/demo/demo1.js +18 -0
- package/lib/components/commonComponents/Statistic/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Statistic/demo/demo2.js +28 -0
- package/lib/components/commonComponents/Statistic/index.d.ts +3 -0
- package/lib/components/commonComponents/Statistic/index.js +14 -0
- package/lib/components/commonComponents/Statistic/index.style.d.ts +15 -0
- package/lib/components/commonComponents/Statistic/index.style.js +26 -0
- package/lib/components/commonComponents/Steps/demo/demo1.js +34 -0
- package/lib/components/commonComponents/Steps/demo/demo2.js +37 -0
- package/lib/components/commonComponents/Steps/demo/demo3.js +35 -0
- package/lib/components/commonComponents/Steps/index.d.ts +3 -0
- package/lib/components/commonComponents/Steps/index.js +48 -0
- package/lib/components/commonComponents/Steps/index.style.d.ts +162 -0
- package/lib/components/commonComponents/Steps/index.style.js +78 -0
- package/lib/components/commonComponents/Switch/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Switch/demo/demo1.js +35 -0
- package/lib/components/commonComponents/Switch/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Switch/demo/demo2.js +35 -0
- package/lib/components/commonComponents/Switch/index.d.ts +11 -0
- package/lib/components/commonComponents/Switch/index.js +33 -0
- package/lib/components/commonComponents/Switch/index.style.d.ts +25 -0
- package/lib/components/commonComponents/Switch/index.style.js +33 -0
- package/lib/components/commonComponents/Table/demo/demo1.js +133 -0
- package/lib/components/commonComponents/Table/demo/demo2.js +147 -0
- package/lib/components/commonComponents/Table/demo/demo3.js +152 -0
- package/lib/components/commonComponents/Table/demo/demo4.js +141 -0
- package/lib/components/commonComponents/Table/index.d.ts +2 -0
- package/lib/components/commonComponents/Table/index.js +39 -0
- package/lib/components/commonComponents/Table/index.style.d.ts +52 -0
- package/lib/components/commonComponents/Table/index.style.js +32 -0
- package/lib/components/commonComponents/Tabs/demo/demo1.js +24 -0
- package/lib/components/commonComponents/Tabs/demo/demo2.d.ts +3 -0
- package/lib/components/commonComponents/Tabs/demo/demo2.js +50 -0
- package/lib/components/commonComponents/Tabs/demo/demo3.d.ts +3 -0
- package/lib/components/commonComponents/Tabs/demo/demo3.js +49 -0
- package/lib/components/commonComponents/Tabs/index.d.ts +15 -0
- package/lib/components/commonComponents/Tabs/index.js +70 -0
- package/lib/components/commonComponents/Tabs/index.style.d.ts +55 -0
- package/lib/components/commonComponents/Tabs/index.style.js +44 -0
- package/lib/components/commonComponents/Tag/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Tag/demo/demo1.js +26 -0
- package/lib/components/commonComponents/Tag/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Tag/demo/demo2.js +14 -0
- package/lib/components/commonComponents/Tag/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/Tag/demo/demo3.js +34 -0
- package/lib/components/commonComponents/Tag/index.d.ts +18 -0
- package/lib/components/commonComponents/Tag/index.js +37 -0
- package/lib/components/commonComponents/Tag/index.style.d.ts +56 -0
- package/lib/components/commonComponents/Tag/index.style.js +58 -0
- package/lib/components/commonComponents/Textarea/demo/demo1.d.ts +3 -0
- package/lib/components/commonComponents/TimePicker/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/TimePicker/demo/demo1.js +27 -0
- package/lib/components/commonComponents/TimePicker/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/TimePicker/demo/demo2.js +26 -0
- package/lib/components/commonComponents/TimePicker/index.d.ts +7 -0
- package/lib/components/commonComponents/TimePicker/index.js +70 -0
- package/lib/components/commonComponents/TimePicker/index.style.d.ts +71 -0
- package/lib/components/commonComponents/TimePicker/index.style.js +50 -0
- package/lib/components/commonComponents/Tooltip/demo/demo1.d.ts +3 -0
- package/lib/components/commonComponents/Tooltip/demo/demo1.js +12 -0
- package/lib/components/commonComponents/Tooltip/demo/demo2.d.ts +3 -0
- package/lib/components/commonComponents/Tooltip/demo/demo2.js +28 -0
- package/lib/components/commonComponents/Tooltip/index.d.ts +12 -0
- package/lib/components/commonComponents/Tooltip/index.js +41 -0
- package/lib/components/commonComponents/Upload/demo/demo1.d.ts +2 -0
- package/lib/components/commonComponents/Upload/demo/demo1.js +23 -0
- package/lib/components/commonComponents/Upload/demo/demo2.d.ts +2 -0
- package/lib/components/commonComponents/Upload/demo/demo2.js +50 -0
- package/lib/components/commonComponents/Upload/demo/demo3.d.ts +2 -0
- package/lib/components/commonComponents/Upload/demo/demo3.js +108 -0
- package/lib/components/commonComponents/Upload/index.d.ts +8 -0
- package/lib/components/commonComponents/Upload/index.js +38 -0
- package/lib/components/commonComponents/Upload/index.style.d.ts +125 -0
- package/lib/components/commonComponents/Upload/index.style.js +90 -0
- package/lib/components/commonComponents/spark.style.d.ts +45 -0
- package/lib/config.d.ts +24 -0
- package/lib/hooks/useGlobalStyle/demo/demo.d.ts +2 -0
- package/lib/i18n/strings/en-US.json +14 -0
- package/lib/i18n/strings/zh-CN.json +14 -0
- package/lib/index.d.ts +80 -0
- package/lib/index.js +83 -0
- package/lib/libs/env/index.d.ts +6 -0
- package/llms/all.llms.txt +4235 -0
- package/llms/components/commonComponents/Alert/index.zh-CN.llms.txt +74 -0
- package/llms/components/commonComponents/Anchor/index.zh-CN.llms.txt +71 -0
- package/llms/components/commonComponents/Avatar/index.zh-CN.llms.txt +61 -0
- package/llms/components/commonComponents/Breadcrumb/index.zh-CN.llms.txt +89 -0
- package/llms/components/commonComponents/Button/index.zh-CN.llms.txt +99 -0
- package/llms/components/commonComponents/Card/index.zh-CN.llms.txt +79 -0
- package/llms/components/commonComponents/Checkbox/index.zh-CN.llms.txt +88 -0
- package/llms/components/commonComponents/CodeBlock/index.zh-CN.llms.txt +34 -0
- package/llms/components/commonComponents/Collapse/index.zh-CN.llms.txt +76 -0
- package/llms/components/commonComponents/CollapsePanel/index.zh-CN.llms.txt +75 -0
- package/llms/components/commonComponents/DatePicker/index.zh-CN.llms.txt +227 -0
- package/llms/components/commonComponents/Descriptions/index.zh-CN.llms.txt +60 -0
- package/llms/components/commonComponents/Drawer/index.zh-CN.llms.txt +87 -0
- package/llms/components/commonComponents/Dropdown/index.zh-CN.llms.txt +87 -0
- package/llms/components/commonComponents/Empty/index.zh-CN.llms.txt +100 -0
- package/llms/components/commonComponents/FloatButton/index.zh-CN.llms.txt +70 -0
- package/llms/components/commonComponents/Form/index.zh-CN.llms.txt +383 -0
- package/llms/components/commonComponents/IconButton/index.zh-CN.llms.txt +68 -0
- package/llms/components/commonComponents/Image/index.zh-CN.llms.txt +118 -0
- package/llms/components/commonComponents/Input/index.zh-CN.llms.txt +168 -0
- package/llms/components/commonComponents/InputNumber/index.zh-CN.llms.txt +66 -0
- package/llms/components/commonComponents/Message/index.zh-CN.llms.txt +114 -0
- package/llms/components/commonComponents/Modal/index.zh-CN.llms.txt +154 -0
- package/llms/components/commonComponents/Notification/index.zh-CN.llms.txt +118 -0
- package/llms/components/commonComponents/Pagination/index.zh-CN.llms.txt +62 -0
- package/llms/components/commonComponents/Popover/index.zh-CN.llms.txt +56 -0
- package/llms/components/commonComponents/Progress/index.zh-CN.llms.txt +64 -0
- package/llms/components/commonComponents/Radio/index.zh-CN.llms.txt +75 -0
- package/llms/components/commonComponents/RadioButton/index.zh-CN.llms.txt +94 -0
- package/llms/components/commonComponents/Result/index.zh-CN.llms.txt +63 -0
- package/llms/components/commonComponents/Select/index.zh-CN.llms.txt +120 -0
- package/llms/components/commonComponents/Skeleton/index.zh-CN.llms.txt +71 -0
- package/llms/components/commonComponents/Slider/index.zh-CN.llms.txt +83 -0
- package/llms/components/commonComponents/Spinner/index.zh-CN.llms.txt +38 -0
- package/llms/components/commonComponents/Statistic/index.zh-CN.llms.txt +77 -0
- package/llms/components/commonComponents/Steps/index.zh-CN.llms.txt +82 -0
- package/llms/components/commonComponents/Switch/index.zh-CN.llms.txt +58 -0
- package/llms/components/commonComponents/Table/index.zh-CN.llms.txt +228 -0
- package/llms/components/commonComponents/Tabs/index.zh-CN.llms.txt +95 -0
- package/llms/components/commonComponents/Tag/index.zh-CN.llms.txt +57 -0
- package/llms/components/commonComponents/TimePicker/index.zh-CN.llms.txt +104 -0
- package/llms/components/commonComponents/Tooltip/index.zh-CN.llms.txt +63 -0
- package/llms/components/commonComponents/Upload/index.zh-CN.llms.txt +105 -0
- package/llms/index.llms.txt +45 -0
- package/package.json +21 -16
- package/scripts/index.js +110 -0
- package/dist/antd/styles/button.style.d.ts +0 -47
- package/dist/antd/styles/button.style.js +0 -32
- package/dist/antd/styles/index.style.js +0 -51
- package/dist/antd/styles/radio.style.d.ts +0 -7
- package/dist/antd/styles/radio.style.js +0 -10
- package/dist/antd/styles/select.style.d.ts +0 -21
- package/dist/antd/styles/select.style.js +0 -16
- package/dist/antd/themes/bailianDarkTheme.json +0 -178
- package/dist/antd/themes/bailianTheme.json +0 -175
- package/dist/antd/themes/blackTheme.json +0 -12
- package/dist/antd/themes/carbonDarkTheme.json +0 -177
- package/dist/antd/themes/carbonTheme.json +0 -175
- package/dist/antd/themes/xConsoleTheme.json +0 -26
- package/dist/components/CComponents/Alert/demo/index.js +0 -99
- package/dist/components/commonComponents/Alert/demo/index.js +0 -87
- package/dist/components/commonComponents/Avatar/demo/index.js +0 -25
- package/dist/components/commonComponents/Avatar/index.js +0 -39
- package/dist/components/commonComponents/Breadcrumb/demo/demo1.js +0 -23
- package/dist/components/commonComponents/Button/demo/demo1.js +0 -103
- package/dist/components/commonComponents/Button/demo/demo2.js +0 -17
- package/dist/components/commonComponents/Button/index.d.ts +0 -21
- package/dist/components/commonComponents/Button/index.js +0 -91
- package/dist/components/commonComponents/Card/demo/demo1.js +0 -31
- package/dist/components/commonComponents/Card/demo/demo2.js +0 -46
- package/dist/components/commonComponents/Card/index.d.ts +0 -11
- package/dist/components/commonComponents/Card/index.js +0 -40
- package/dist/components/commonComponents/Card/index.style.d.ts +0 -58
- package/dist/components/commonComponents/Card/index.style.js +0 -44
- package/dist/components/commonComponents/Checkbox/demo/demo1.js +0 -21
- package/dist/components/commonComponents/Checkbox/demo/demo2.js +0 -25
- package/dist/components/commonComponents/CodeBlock/demo/demo1.js +0 -34
- package/dist/components/commonComponents/CodeBlock/demo/demo2.js +0 -14
- package/dist/components/commonComponents/CodeBlock/index.d.ts +0 -11
- package/dist/components/commonComponents/CodeBlock/index.js +0 -88
- package/dist/components/commonComponents/CodeBlock/index.style.d.ts +0 -46
- package/dist/components/commonComponents/CodeBlock/index.style.js +0 -59
- package/dist/components/commonComponents/CollapsePanel/demo/demo1.js +0 -27
- package/dist/components/commonComponents/CollapsePanel/index.d.ts +0 -38
- package/dist/components/commonComponents/CollapsePanel/index.js +0 -116
- package/dist/components/commonComponents/CollapsePanel/index.style.d.ts +0 -329
- package/dist/components/commonComponents/CollapsePanel/index.style.js +0 -96
- package/dist/components/commonComponents/ConfigProvider/index.d.ts +0 -25
- package/dist/components/commonComponents/ConfigProvider/index.js +0 -152
- package/dist/components/commonComponents/Drawer/demo/demo1.js +0 -106
- package/dist/components/commonComponents/Drawer/demo/demo2.js +0 -66
- package/dist/components/commonComponents/Drawer/index.d.ts +0 -3
- package/dist/components/commonComponents/Drawer/index.js +0 -37
- package/dist/components/commonComponents/Drawer/index.style.d.ts +0 -47
- package/dist/components/commonComponents/Drawer/index.style.js +0 -42
- package/dist/components/commonComponents/Dropdown/demo/demo1.js +0 -33
- package/dist/components/commonComponents/Dropdown/demo/demo2.js +0 -38
- package/dist/components/commonComponents/Dropdown/index.js +0 -20
- package/dist/components/commonComponents/Dropdown/index.style.d.ts +0 -7
- package/dist/components/commonComponents/Dropdown/index.style.js +0 -21
- package/dist/components/commonComponents/Ellipsis/demo/index.js +0 -11
- package/dist/components/commonComponents/EllipsisTip/demo/demo2.js +0 -35
- package/dist/components/commonComponents/Empty/demo/index.css +0 -11
- package/dist/components/commonComponents/Empty/demo/index.d.ts +0 -3
- package/dist/components/commonComponents/Empty/demo/index.js +0 -186
- package/dist/components/commonComponents/Empty/index.d.ts +0 -57
- package/dist/components/commonComponents/Empty/index.js +0 -118
- package/dist/components/commonComponents/Empty/index.style.d.ts +0 -65
- package/dist/components/commonComponents/Empty/index.style.js +0 -42
- package/dist/components/commonComponents/FileIcon/demo/index.js +0 -42
- package/dist/components/commonComponents/FileIcon/index.d.ts +0 -19
- package/dist/components/commonComponents/FileIcon/index.js +0 -89
- package/dist/components/commonComponents/FloatButton/demo/demo1.js +0 -11
- package/dist/components/commonComponents/FloatButton/demo/demo2.js +0 -11
- package/dist/components/commonComponents/Form/demo/api.js +0 -22
- package/dist/components/commonComponents/Form/demo/demo1.js +0 -107
- package/dist/components/commonComponents/Form/demo/demo2.js +0 -52
- package/dist/components/commonComponents/Form/demo/demo3.js +0 -28
- package/dist/components/commonComponents/Form/demo/demo4.js +0 -29
- package/dist/components/commonComponents/Form/demo/index.module.less +0 -0
- package/dist/components/commonComponents/Form/index.style.d.ts +0 -51
- package/dist/components/commonComponents/Form/index.style.js +0 -37
- package/dist/components/commonComponents/HelpIcon/index.js +0 -40
- package/dist/components/commonComponents/IconButton/demo/demo1.js +0 -57
- package/dist/components/commonComponents/IconButton/demo/demo2.js +0 -61
- package/dist/components/commonComponents/IconButton/demo/demo3.js +0 -53
- package/dist/components/commonComponents/IconButton/demo/demo4.js +0 -55
- package/dist/components/commonComponents/IconButton/index.js +0 -47
- package/dist/components/commonComponents/IconButton/index.style.d.ts +0 -16
- package/dist/components/commonComponents/IconButton/index.style.js +0 -25
- package/dist/components/commonComponents/IconFont/index.js +0 -57
- package/dist/components/commonComponents/Image/demo/demo1.js +0 -8
- package/dist/components/commonComponents/Image/index.js +0 -37
- package/dist/components/commonComponents/Input/demo/index.js +0 -117
- package/dist/components/commonComponents/Input/index.d.ts +0 -13
- package/dist/components/commonComponents/Input/index.js +0 -43
- package/dist/components/commonComponents/Input/index.style.d.ts +0 -43
- package/dist/components/commonComponents/Input/index.style.js +0 -36
- package/dist/components/commonComponents/InputNumber/demo/index.js +0 -38
- package/dist/components/commonComponents/InputSearch/demo/index.js +0 -43
- package/dist/components/commonComponents/Message/demo/demo1.js +0 -53
- package/dist/components/commonComponents/Message/demo/demo2.js +0 -66
- package/dist/components/commonComponents/Message/index.d.ts +0 -29
- package/dist/components/commonComponents/Modal/demo/demo1.js +0 -137
- package/dist/components/commonComponents/Modal/demo/demo2.js +0 -77
- package/dist/components/commonComponents/Modal/demo/demo3.js +0 -57
- package/dist/components/commonComponents/Modal/demo/demo4.js +0 -65
- package/dist/components/commonComponents/Modal/index.css +0 -1
- package/dist/components/commonComponents/Modal/index.d.ts +0 -15
- package/dist/components/commonComponents/Modal/index.js +0 -64
- package/dist/components/commonComponents/Notification/demo/demo1.js +0 -76
- package/dist/components/commonComponents/Notification/demo/demo2.js +0 -50
- package/dist/components/commonComponents/Notification/demo/demo3.js +0 -46
- package/dist/components/commonComponents/Notification/index.d.ts +0 -20
- package/dist/components/commonComponents/Notification/index.js +0 -106
- package/dist/components/commonComponents/Pagination/demo/demo1.js +0 -16
- package/dist/components/commonComponents/Pagination/demo/demo2.js +0 -17
- package/dist/components/commonComponents/Pagination/index.d.ts +0 -12
- package/dist/components/commonComponents/Pagination/index.js +0 -59
- package/dist/components/commonComponents/Pagination/index.style.d.ts +0 -12
- package/dist/components/commonComponents/Pagination/index.style.js +0 -24
- package/dist/components/commonComponents/Popover/demo/demo1.js +0 -34
- package/dist/components/commonComponents/Popover/demo/demo2.js +0 -183
- package/dist/components/commonComponents/Progress/demo/demo1.js +0 -15
- package/dist/components/commonComponents/Radio/demo.js +0 -20
- package/dist/components/commonComponents/Radio/demo2.js +0 -115
- package/dist/components/commonComponents/RadioButton/demo/demo.js +0 -166
- package/dist/components/commonComponents/RadioButton/index.d.ts +0 -21
- package/dist/components/commonComponents/RadioButton/index.style.d.ts +0 -62
- package/dist/components/commonComponents/RadioButton/index.style.js +0 -49
- package/dist/components/commonComponents/Select/demo/demo.js +0 -29
- package/dist/components/commonComponents/Select/demo/demo2.js +0 -30
- package/dist/components/commonComponents/Skeleton/demo/demo1.js +0 -9
- package/dist/components/commonComponents/SlateEditor/elements/Var.d.ts +0 -3
- package/dist/components/commonComponents/SlateEditor/elements/Var.js +0 -20
- package/dist/components/commonComponents/SlateEditor/elements/index.less +0 -10
- package/dist/components/commonComponents/Slider/demo/demo1.js +0 -35
- package/dist/components/commonComponents/Slider/demo/demo2.js +0 -48
- package/dist/components/commonComponents/Slider/demo/demo3.js +0 -44
- package/dist/components/commonComponents/Slider/slider.input.js +0 -73
- package/dist/components/commonComponents/SliderSelector/index.js +0 -67
- package/dist/components/commonComponents/Spin/demo1.js +0 -30
- package/dist/components/commonComponents/Spinner/demo/demo1.js +0 -46
- package/dist/components/commonComponents/Spinner/demo/demo2.js +0 -69
- package/dist/components/commonComponents/Spinner/demo/demo3.js +0 -59
- package/dist/components/commonComponents/Spinner/index.d.ts +0 -16
- package/dist/components/commonComponents/Spinner/index.js +0 -77
- package/dist/components/commonComponents/Spinner/index.style.d.ts +0 -82
- package/dist/components/commonComponents/Spinner/index.style.js +0 -60
- package/dist/components/commonComponents/Switch/demo/demo1.js +0 -26
- package/dist/components/commonComponents/Switch/demo/demo2.js +0 -27
- package/dist/components/commonComponents/Switch/index.d.ts +0 -11
- package/dist/components/commonComponents/Switch/index.js +0 -29
- package/dist/components/commonComponents/Switch/index.style.d.ts +0 -8
- package/dist/components/commonComponents/Switch/index.style.js +0 -23
- package/dist/components/commonComponents/Table/demo/demo1.js +0 -87
- package/dist/components/commonComponents/Table/demo/demo2.js +0 -98
- package/dist/components/commonComponents/Table/demo/demo3.js +0 -378
- package/dist/components/commonComponents/Tabs/demo/demo1.js +0 -45
- package/dist/components/commonComponents/Tabs/demo/demo2.js +0 -43
- package/dist/components/commonComponents/Tabs/demo/demo3.js +0 -32
- package/dist/components/commonComponents/Tabs/index.d.ts +0 -14
- package/dist/components/commonComponents/Tabs/index.js +0 -67
- package/dist/components/commonComponents/Tabs/index.style.d.ts +0 -23
- package/dist/components/commonComponents/Tabs/index.style.js +0 -30
- package/dist/components/commonComponents/Tag/demo1.js +0 -33
- package/dist/components/commonComponents/Tag/demo2.js +0 -40
- package/dist/components/commonComponents/Tag/index.d.ts +0 -7
- package/dist/components/commonComponents/Tag/index.js +0 -36
- package/dist/components/commonComponents/Tag/index.style.d.ts +0 -37
- package/dist/components/commonComponents/Tag/index.style.js +0 -52
- package/dist/components/commonComponents/Tooltip/demo/index.js +0 -254
- package/dist/components/commonComponents/Tooltip/index.d.ts +0 -11
- package/dist/components/commonComponents/Tooltip/index.js +0 -35
- package/dist/components/commonComponents/Upload/demo/demo1.js +0 -43
- package/dist/components/commonComponents/Upload/demo/demo2.js +0 -15
- package/dist/components/commonComponents/Upload/demo/demo3.d.ts +0 -3
- package/dist/components/commonComponents/Upload/demo/demo3.js +0 -145
- package/dist/components/commonComponents/spark.style.d.ts +0 -45
- package/dist/config.d.ts +0 -27
- package/dist/i18n/strings/en-US.json +0 -13
- package/dist/i18n/strings/zh-CN.json +0 -13
- package/dist/index.d.ts +0 -68
- package/dist/index.js +0 -70
- package/dist/libs/env/index.d.ts +0 -6
- package/scripts/init-migrate-config.js +0 -68
- package/scripts/migrate-from-bl.js +0 -78
- /package/{dist → lib}/antd/styles/breadcrumb.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/breadcrumb.style.js +0 -0
- /package/{dist → lib}/antd/styles/dropdown.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/dropdown.style.js +0 -0
- /package/{dist → lib}/antd/styles/index.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/message.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/message.style.js +0 -0
- /package/{dist → lib}/antd/styles/notification.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/notification.style.js +0 -0
- /package/{dist → lib}/antd/styles/popover.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/popover.style.js +0 -0
- /package/{dist → lib}/antd/styles/segment.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/segment.style.js +0 -0
- /package/{dist → lib}/antd/styles/slider.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/slider.style.js +0 -0
- /package/{dist → lib}/antd/styles/table.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/table.style.js +0 -0
- /package/{dist → lib}/antd/styles/tooltip.style.d.ts +0 -0
- /package/{dist → lib}/antd/styles/tooltip.style.js +0 -0
- /package/{dist/components/commonComponents/Button → lib/components/commonComponents/Alert}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Button → lib/components/commonComponents/Alert}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Form → lib/components/commonComponents/Alert}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/Form → lib/components/commonComponents/Alert}/demo/demo4.d.ts +0 -0
- /package/{dist/components/CComponents/Alert/demo/index.d.ts → lib/components/commonComponents/Alert/demo/demo5.d.ts} +0 -0
- /package/{dist/components/commonComponents/Alert/demo/index.d.ts → lib/components/commonComponents/Alert/demo/demo6.d.ts} +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/demo/demo1.js +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/demo/demo2.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/demo/demo2.js +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/AlertDialog/index.style.js +0 -0
- /package/{dist/components/commonComponents/Drawer → lib/components/commonComponents/Avatar}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Drawer → lib/components/commonComponents/Avatar}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/IconFont → lib/components/commonComponents/Avatar}/demo/demo3.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Avatar/index.d.ts +0 -0
- /package/{dist/components/commonComponents/Radio → lib/components/commonComponents/Badge/demo}/demo.d.ts +0 -0
- /package/{dist/components/commonComponents/Badge/demo/index.js → lib/components/commonComponents/Badge/demo/demo.js} +0 -0
- /package/{dist → lib}/components/commonComponents/Breadcrumb/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Card → lib/components/commonComponents/Breadcrumb}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Form → lib/components/commonComponents/Button}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Form → lib/components/commonComponents/Button}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Modal → lib/components/commonComponents/Button}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/IconFont → lib/components/commonComponents/Button}/demo/demo4.d.ts +0 -0
- /package/{dist/components/commonComponents/Ellipsis/demo/index.d.ts → lib/components/commonComponents/Button/demo/demo5.d.ts} +0 -0
- /package/{dist/components/commonComponents/Form/demo/api.d.ts → lib/components/commonComponents/Button/demo/demo6.d.ts} +0 -0
- /package/{dist/components/commonComponents/IconFont → lib/components/commonComponents/Card}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/IconFont → lib/components/commonComponents/Card}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Card → lib/components/commonComponents/Checkbox}/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Checkbox/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/IconButton → lib/components/commonComponents/Checkbox}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/Checkbox → lib/components/commonComponents/CodeBlock}/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/CodeBlock/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Notification → lib/components/commonComponents/CodeBlock}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/Message → lib/components/commonComponents/Collapse}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Message → lib/components/commonComponents/Collapse}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/CodeBlock → lib/components/commonComponents/CollapsePanel}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Modal → lib/components/commonComponents/DatePicker}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Tag → lib/components/commonComponents/DatePicker/demo}/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/HelpIcon/demo/index.d.ts → lib/components/commonComponents/DatePicker/demo/demo3.d.ts} +0 -0
- /package/{dist/components/commonComponents/Input/demo/index.d.ts → lib/components/commonComponents/DatePicker/demo/demo4.d.ts} +0 -0
- /package/{dist/components/commonComponents/Tag → lib/components/commonComponents/Descriptions/demo}/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Upload → lib/components/commonComponents/Descriptions}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/InputSearch/demo/index.d.ts → lib/components/commonComponents/Drawer/demo/demo1.d.ts} +0 -0
- /package/{dist/components/commonComponents/SlateEditor/demo/index.d.ts → lib/components/commonComponents/Drawer/demo/demo3.d.ts} +0 -0
- /package/{dist/components/commonComponents/SliderSelector/demo/index.d.ts → lib/components/commonComponents/Drawer/demo/demo4.d.ts} +0 -0
- /package/{dist/hooks/useGlobalStyle/demo/demo.d.ts → lib/components/commonComponents/Drawer/demo/demo5.d.ts} +0 -0
- /package/{dist → lib}/components/commonComponents/Dropdown/index.d.ts +0 -0
- /package/{dist/components/commonComponents/CollapsePanel → lib/components/commonComponents/EllipsisTip}/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/EllipsisTip/demo/demo1.js +0 -0
- /package/{dist/components/commonComponents/Avatar/demo/index.d.ts → lib/components/commonComponents/EllipsisTip/demo/demo2-2.d.ts} +0 -0
- /package/{dist → lib}/components/commonComponents/EllipsisTip/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/EllipsisTip/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/EllipsisTip/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/EllipsisTip/index.style.js +0 -0
- /package/{dist/components/commonComponents/FileIcon/demo/index.d.ts → lib/components/commonComponents/FileIcon/demo/demo.d.ts} +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/common.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/epub.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/excel.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/html.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/image.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/md.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/mobi.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/pdf.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/ppt.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/txt.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/web.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/icons/word.svg +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/FileIcon/index.style.js +0 -0
- /package/{dist/components/commonComponents/Dropdown → lib/components/commonComponents/FloatButton}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Dropdown → lib/components/commonComponents/FloatButton}/demo/demo2.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Form/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Form/index.js +0 -0
- /package/{dist/components/commonComponents/HelpIcon/demo/index.js → lib/components/commonComponents/HelpIcon/demo/demo.js} +0 -0
- /package/{dist → lib}/components/commonComponents/HelpIcon/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/HelpIcon/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/HelpIcon/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/IconButton/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/demo/demo1.js +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/demo/demo2.js +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/demo/demo3.js +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/demo/demo4.js +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/IconFont/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/Image/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Image/index.d.ts +0 -0
- /package/{dist/components/commonComponents/EllipsisTip → lib/components/commonComponents/Input}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/EllipsisTip → lib/components/commonComponents/Input}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Slider → lib/components/commonComponents/Input}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/IconButton → lib/components/commonComponents/Input}/demo/demo4.d.ts +0 -0
- /package/{dist/components/commonComponents/Badge/demo/index.d.ts → lib/components/commonComponents/Input/demo/demo5.d.ts} +0 -0
- /package/{dist/components/commonComponents/FloatButton/demo/demo1.d.ts → lib/components/commonComponents/Input/demo/demo6.d.ts} +0 -0
- /package/{dist/components/commonComponents/FloatButton/demo/demo2.d.ts → lib/components/commonComponents/Input/demo/demo7.d.ts} +0 -0
- /package/{dist/components/commonComponents/RadioButton → lib/components/commonComponents/InputNumber}/demo/demo.d.ts +0 -0
- /package/{dist/components/commonComponents/IconButton → lib/components/commonComponents/InputNumber}/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Message/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/Modal/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Modal/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/Notification/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/IconButton → lib/components/commonComponents/Notification}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Spinner → lib/components/commonComponents/Notification}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/Modal → lib/components/commonComponents/Notification}/demo/demo4.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Pagination/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Modal → lib/components/commonComponents/Pagination}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/InputNumber/demo/index.d.ts → lib/components/commonComponents/Popconfirm/demo/demo.d.ts} +0 -0
- /package/{dist/components/commonComponents/Popconfirm/demo/index.js → lib/components/commonComponents/Popconfirm/demo/demo.js} +0 -0
- /package/{dist → lib}/components/commonComponents/Popconfirm/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Popconfirm/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/Popover/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Popover/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Popover/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/Progress/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Skeleton → lib/components/commonComponents/Radio}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Slider → lib/components/commonComponents/RadioButton}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Notification → lib/components/commonComponents/RadioButton}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Table → lib/components/commonComponents/RadioButton}/demo/demo3.d.ts +0 -0
- /package/{dist/components/commonComponents/Pagination/demo/demo2.d.ts → lib/components/commonComponents/RadioButton/demo/demo4.d.ts} +0 -0
- /package/{dist/components/commonComponents/Popconfirm/demo/index.d.ts → lib/components/commonComponents/RadioButton/demo/demo5.d.ts} +0 -0
- /package/{dist → lib}/components/commonComponents/RadioButton/index.js +0 -0
- /package/{dist/components/commonComponents/Spin → lib/components/commonComponents/Select/demo}/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Select/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Spinner → lib/components/commonComponents/Skeleton}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/SlateEditor/demo/index.js → lib/components/commonComponents/SlateEditor/demo/demo.js} +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/elements/S.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/elements/S.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/elements/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/elements/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/types.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/types.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/constant.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/constant.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/editor.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/editor.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/functions.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/functions.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/withEditor.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SlateEditor/utils/withEditor.js +0 -0
- /package/{dist/components/commonComponents/Switch → lib/components/commonComponents/Slider}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Popover → lib/components/commonComponents/Slider}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Tabs → lib/components/commonComponents/Slider}/demo/demo3.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Slider/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Slider/index.js +0 -0
- /package/{dist → lib}/components/commonComponents/Slider/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Slider/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/Slider/slider.input.d.ts +0 -0
- /package/{dist/components/commonComponents/SliderSelector/demo/index.js → lib/components/commonComponents/SliderSelector/demo/demo.js} +0 -0
- /package/{dist → lib}/components/commonComponents/SliderSelector/index.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SliderSelector/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/SliderSelector/index.style.js +0 -0
- /package/{dist/components/commonComponents/Select/demo/demo.d.ts → lib/components/commonComponents/Spinner/demo/demo1.d.ts} +0 -0
- /package/{dist/components/commonComponents/Radio → lib/components/commonComponents/Spinner/demo}/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Slider/demo/demo2.d.ts → lib/components/commonComponents/Spinner/demo/demo3.d.ts} +0 -0
- /package/{dist/components/commonComponents/Spinner/demo/demo2.d.ts → lib/components/commonComponents/Spinner/demo/demo4.d.ts} +0 -0
- /package/{dist/components/commonComponents/Table → lib/components/commonComponents/Steps}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Switch → lib/components/commonComponents/Steps}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Table/demo/demo2.d.ts → lib/components/commonComponents/Steps/demo/demo3.d.ts} +0 -0
- /package/{dist/components/commonComponents/Tabs → lib/components/commonComponents/Table}/demo/demo1.d.ts +0 -0
- /package/{dist/components/commonComponents/Tabs → lib/components/commonComponents/Table}/demo/demo2.d.ts +0 -0
- /package/{dist/components/commonComponents/Textarea/demo/demo1.d.ts → lib/components/commonComponents/Table/demo/demo3.d.ts} +0 -0
- /package/{dist/components/commonComponents/Tooltip/demo/index.d.ts → lib/components/commonComponents/Table/demo/demo4.d.ts} +0 -0
- /package/{dist/components/commonComponents/Upload → lib/components/commonComponents/Tabs}/demo/demo1.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Textarea/demo/demo1.js +0 -0
- /package/{dist → lib}/components/commonComponents/Tooltip/index.style.d.ts +0 -0
- /package/{dist → lib}/components/commonComponents/Tooltip/index.style.js +0 -0
- /package/{dist → lib}/components/commonComponents/spark.style.js +0 -0
- /package/{dist → lib}/config.js +0 -0
- /package/{dist → lib}/hooks/useGlobalStyle/demo/demo.js +0 -0
- /package/{dist → lib}/hooks/useGlobalStyle/index.d.ts +0 -0
- /package/{dist → lib}/hooks/useGlobalStyle/index.js +0 -0
- /package/{dist → lib}/i18n/index.d.ts +0 -0
- /package/{dist → lib}/i18n/index.js +0 -0
- /package/{dist → lib}/i18n/strings/index.js +0 -0
- /package/{dist → lib}/libs/cookie.d.ts +0 -0
- /package/{dist → lib}/libs/cookie.js +0 -0
- /package/{dist → lib}/libs/createStyle/index.d.ts +0 -0
- /package/{dist → lib}/libs/createStyle/index.js +0 -0
- /package/{dist → lib}/libs/data/index.d.ts +0 -0
- /package/{dist → lib}/libs/data/index.js +0 -0
- /package/{dist → lib}/libs/delay/index.d.ts +0 -0
- /package/{dist → lib}/libs/delay/index.js +0 -0
- /package/{dist → lib}/libs/dom.d.ts +0 -0
- /package/{dist → lib}/libs/dom.js +0 -0
- /package/{dist → lib}/libs/env/index.js +0 -0
- /package/{dist → lib}/libs/generateCssVars/index.d.ts +0 -0
- /package/{dist → lib}/libs/generateCssVars/index.js +0 -0
- /package/{dist → lib}/libs/loadStyle.d.ts +0 -0
- /package/{dist → lib}/libs/loadStyle.js +0 -0
- /package/{dist → lib}/libs/region/constant.d.ts +0 -0
- /package/{dist → lib}/libs/region/constant.js +0 -0
- /package/{dist → lib}/libs/region/index.d.ts +0 -0
- /package/{dist → lib}/libs/region/index.js +0 -0
- /package/{dist → lib}/libs/requestPop/index.d.ts +0 -0
- /package/{dist → lib}/libs/requestPop/index.js +0 -0
- /package/{dist → lib}/libs/requestPopSse/index.d.ts +0 -0
- /package/{dist → lib}/libs/requestPopSse/index.js +0 -0
- /package/{dist → lib}/libs/requestSse/index.d.ts +0 -0
- /package/{dist → lib}/libs/requestSse/index.js +0 -0
- /package/{dist → lib}/libs/requestSse/parse.d.ts +0 -0
- /package/{dist → lib}/libs/requestSse/parse.js +0 -0
- /package/{dist → lib}/libs/staticRenderer/index.d.ts +0 -0
- /package/{dist → lib}/libs/staticRenderer/index.js +0 -0
- /package/{dist → lib}/libs/string/index.d.ts +0 -0
- /package/{dist → lib}/libs/string/index.js +0 -0
- /package/{dist → lib}/libs/tokens.json +0 -0
- /package/{dist → lib}/libs/utils/index.d.ts +0 -0
- /package/{dist → lib}/libs/utils/index.js +0 -0
- /package/{dist → lib}/libs/waitFor/index.d.ts +0 -0
- /package/{dist → lib}/libs/waitFor/index.js +0 -0
- /package/{dist → lib}/typings.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
这个文件夹里是antd 的原生API 文档,打包时会生成llm.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
这个文件夹里样式是全局样式,即使在不引入对应的组件,也会影响全局样式、
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getAlertStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty({}, ".".concat(antPrefix, "-alert"), _defineProperty({}, ".".concat(antPrefix, "-alert-close-icon"), _defineProperty({
|
|
8
|
+
fontSize: 16
|
|
9
|
+
}, '.anticon-close', {
|
|
10
|
+
color: "var(--".concat(antPrefix, "-color-text)")
|
|
11
|
+
})));
|
|
12
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export declare function getButtonStyleData(params: any): {
|
|
2
|
+
[x: string]: {
|
|
3
|
+
[x: string]: string | number | {
|
|
4
|
+
fontSize: string;
|
|
5
|
+
paddingInline?: undefined;
|
|
6
|
+
"svg[data-spark-icon]"?: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
paddingInline: string;
|
|
9
|
+
"svg[data-spark-icon]": {
|
|
10
|
+
fontSize: string;
|
|
11
|
+
};
|
|
12
|
+
fontSize?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
"svg[data-spark-icon]": {
|
|
15
|
+
fontSize: string;
|
|
16
|
+
};
|
|
17
|
+
fontSize?: undefined;
|
|
18
|
+
paddingInline?: undefined;
|
|
19
|
+
};
|
|
20
|
+
fontWeight: number;
|
|
21
|
+
paddingInline: string;
|
|
22
|
+
"svg[data-spark-icon]": {
|
|
23
|
+
fontSize: string;
|
|
24
|
+
};
|
|
25
|
+
borderColor?: undefined;
|
|
26
|
+
color?: undefined;
|
|
27
|
+
backgroundColor?: undefined;
|
|
28
|
+
'&:hover'?: undefined;
|
|
29
|
+
background?: undefined;
|
|
30
|
+
} | {
|
|
31
|
+
borderColor: string;
|
|
32
|
+
fontWeight?: undefined;
|
|
33
|
+
paddingInline?: undefined;
|
|
34
|
+
"svg[data-spark-icon]"?: undefined;
|
|
35
|
+
color?: undefined;
|
|
36
|
+
backgroundColor?: undefined;
|
|
37
|
+
'&:hover'?: undefined;
|
|
38
|
+
background?: undefined;
|
|
39
|
+
} | {
|
|
40
|
+
color: string;
|
|
41
|
+
fontWeight?: undefined;
|
|
42
|
+
paddingInline?: undefined;
|
|
43
|
+
"svg[data-spark-icon]"?: undefined;
|
|
44
|
+
borderColor?: undefined;
|
|
45
|
+
backgroundColor?: undefined;
|
|
46
|
+
'&:hover'?: undefined;
|
|
47
|
+
background?: undefined;
|
|
48
|
+
} | {
|
|
49
|
+
borderColor: string;
|
|
50
|
+
backgroundColor: string;
|
|
51
|
+
color: string;
|
|
52
|
+
'&:hover': {
|
|
53
|
+
backgroundColor: string;
|
|
54
|
+
borderColor: string;
|
|
55
|
+
color: string;
|
|
56
|
+
};
|
|
57
|
+
fontWeight?: undefined;
|
|
58
|
+
paddingInline?: undefined;
|
|
59
|
+
"svg[data-spark-icon]"?: undefined;
|
|
60
|
+
background?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
borderColor: string;
|
|
63
|
+
backgroundColor: string;
|
|
64
|
+
color: string;
|
|
65
|
+
fontWeight?: undefined;
|
|
66
|
+
paddingInline?: undefined;
|
|
67
|
+
"svg[data-spark-icon]"?: undefined;
|
|
68
|
+
'&:hover'?: undefined;
|
|
69
|
+
background?: undefined;
|
|
70
|
+
} | {
|
|
71
|
+
background: string;
|
|
72
|
+
color: string;
|
|
73
|
+
borderColor: string;
|
|
74
|
+
fontWeight?: undefined;
|
|
75
|
+
paddingInline?: undefined;
|
|
76
|
+
"svg[data-spark-icon]"?: undefined;
|
|
77
|
+
backgroundColor?: undefined;
|
|
78
|
+
'&:hover'?: undefined;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getButtonStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ".spark-button.".concat(antPrefix, "-btn"), _defineProperty(_defineProperty(_defineProperty({
|
|
8
|
+
fontWeight: 500,
|
|
9
|
+
paddingInline: '11px'
|
|
10
|
+
}, "svg[data-spark-icon]", {
|
|
11
|
+
// @agentscope-ai/icons的特殊逻辑
|
|
12
|
+
fontSize: '20px'
|
|
13
|
+
}), "&.".concat(antPrefix, "-btn-sm"), _defineProperty({
|
|
14
|
+
paddingInline: '7px'
|
|
15
|
+
}, "svg[data-spark-icon]", {
|
|
16
|
+
// @agentscope-ai/icons的特殊逻辑
|
|
17
|
+
fontSize: '16px'
|
|
18
|
+
})), "&.".concat(antPrefix, "-btn-lg"), _defineProperty({}, "svg[data-spark-icon]", {
|
|
19
|
+
// @agentscope-ai/icons的特殊逻辑
|
|
20
|
+
fontSize: '24px'
|
|
21
|
+
}))), ".".concat(antPrefix, "-btn-default"), {
|
|
22
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
23
|
+
}), ".".concat(antPrefix, "-btn-textCompact:hover"), {
|
|
24
|
+
color: "var(--".concat(antPrefix, "-color-text-tertiary) !important")
|
|
25
|
+
}), ".".concat(antPrefix, "-btn.").concat(antPrefix, "-btn-default.").concat(antPrefix, "-btn-dangerous:not(:disabled):not(.").concat(antPrefix, "-btn-disabled)"), {
|
|
26
|
+
borderColor: 'transparent',
|
|
27
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-error-bg)"),
|
|
28
|
+
color: "var(--".concat(antPrefix, "-color-error)"),
|
|
29
|
+
'&:hover': {
|
|
30
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-error-bg-hover)"),
|
|
31
|
+
borderColor: 'transparent',
|
|
32
|
+
color: "var(--".concat(antPrefix, "-color-error-hover)")
|
|
33
|
+
}
|
|
34
|
+
}), ".".concat(antPrefix, "-btn-color-dangerous.").concat(antPrefix, "-btn-variant-solid:disabled, .").concat(antPrefix, "-btn-color-dangerous.").concat(antPrefix, "-btn-variant-solid.").concat(antPrefix, "-btn-disabled"), {
|
|
35
|
+
borderColor: 'transparent',
|
|
36
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-fill-disable)"),
|
|
37
|
+
color: "var(--".concat(antPrefix, "-color-text-white)")
|
|
38
|
+
}), ".".concat(antPrefix, "-btn-primary:disabled"), {
|
|
39
|
+
background: "var(--".concat(antPrefix, "-color-fill-disable)"),
|
|
40
|
+
color: "var(--".concat(antPrefix, "-color-text-white)"),
|
|
41
|
+
borderColor: 'transparent'
|
|
42
|
+
}), ".".concat(antPrefix, "-btn-default:disabled"), {
|
|
43
|
+
background: "var(--".concat(antPrefix, "-color-bg-base)"),
|
|
44
|
+
color: "var(--".concat(antPrefix, "-color-text-tertiary)"),
|
|
45
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
46
|
+
});
|
|
47
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getFloatButtonStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty({}, ".".concat(antPrefix, "-float-btn"), _defineProperty({
|
|
8
|
+
boxShadow: "var(--".concat(antPrefix, "-box-shadow)")
|
|
9
|
+
}, "&.".concat(antPrefix, "-float-btn-default"), {
|
|
10
|
+
border: "1px solid var(--".concat(antPrefix, "-color-border-secondary)")
|
|
11
|
+
}));
|
|
12
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
var _excluded = ["css"];
|
|
2
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
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
|
+
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; }
|
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
10
|
+
import createStyle from "../../libs/createStyle";
|
|
11
|
+
import { getAlertStyleData } from "./alert.style";
|
|
12
|
+
import { getBreadcrumbStyleData } from "./breadcrumb.style";
|
|
13
|
+
import { getButtonStyleData } from "./button.style";
|
|
14
|
+
import { getDropdownStyleData } from "./dropdown.style";
|
|
15
|
+
import { getFloatButtonStyleData } from "./floatButton.style";
|
|
16
|
+
import { getInputNumberStyleData } from "./inputNumber.style";
|
|
17
|
+
import { getMessageStyleData } from "./message.style";
|
|
18
|
+
import { getNotificationStyleData } from "./notification.style";
|
|
19
|
+
import { getPopoverStyleData } from "./popover.style";
|
|
20
|
+
import { getRadioStyleData } from "./radio.style";
|
|
21
|
+
import { getSegmentStyleData } from "./segment.style";
|
|
22
|
+
import { getSelectStyleData } from "./select.style";
|
|
23
|
+
import { getSliderStyleData } from "./slider.style";
|
|
24
|
+
import { getTableStyleData } from "./table.style";
|
|
25
|
+
import { getTooltipStyleData } from "./tooltip.style";
|
|
26
|
+
export function getIndexStyleData(params) {
|
|
27
|
+
// const { antPrefix = 'bl-ant', blPrefix = 'bl' } = params;
|
|
28
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread(_objectSpread({
|
|
29
|
+
// 定义动画关键帧
|
|
30
|
+
'@keyframes fadeInUp': {
|
|
31
|
+
'0%': {
|
|
32
|
+
opacity: 0,
|
|
33
|
+
transform: 'translateY(32px)'
|
|
34
|
+
},
|
|
35
|
+
'100%': {
|
|
36
|
+
opacity: 1,
|
|
37
|
+
transform: 'translateY(0)'
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
// animate-in 动画类
|
|
41
|
+
'.animate-in': {
|
|
42
|
+
opacity: 0,
|
|
43
|
+
transform: 'translateY(32px)',
|
|
44
|
+
animation: 'fadeInUp 0.4s ease forwards'
|
|
45
|
+
}
|
|
46
|
+
}, getSliderStyleData(params)), getPopoverStyleData(params)), getSelectStyleData(params)), getButtonStyleData(params)), getDropdownStyleData(params)), getTooltipStyleData(params)), getMessageStyleData(params)), getSegmentStyleData(params)), getNotificationStyleData(params)), getTableStyleData(params)), getRadioStyleData(params)), getBreadcrumbStyleData(params)), getFloatButtonStyleData(params)), getAlertStyleData(params)), getInputNumberStyleData(params));
|
|
47
|
+
}
|
|
48
|
+
var useIndexStyle = createStyle(function (_ref) {
|
|
49
|
+
var css = _ref.css,
|
|
50
|
+
params = _objectWithoutProperties(_ref, _excluded);
|
|
51
|
+
var result = css(getIndexStyleData(params));
|
|
52
|
+
return result;
|
|
53
|
+
});
|
|
54
|
+
export default useIndexStyle;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare function getInputNumberStyleData(params: any): {
|
|
2
|
+
[x: string]: {
|
|
3
|
+
backgroundColor: string;
|
|
4
|
+
borderColor?: undefined;
|
|
5
|
+
fontSize?: undefined;
|
|
6
|
+
height?: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
borderColor: string;
|
|
9
|
+
backgroundColor?: undefined;
|
|
10
|
+
fontSize?: undefined;
|
|
11
|
+
height?: undefined;
|
|
12
|
+
} | {
|
|
13
|
+
fontSize: string;
|
|
14
|
+
height: string;
|
|
15
|
+
backgroundColor?: undefined;
|
|
16
|
+
borderColor?: undefined;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getInputNumberStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(antPrefix, "-input-number"), {
|
|
8
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-bg-base)")
|
|
9
|
+
}), ".".concat(antPrefix, "-input-number-disabled"), {
|
|
10
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-fill-tertiary) !important")
|
|
11
|
+
}), ".".concat(antPrefix, "-input-number-outlined, .").concat(antPrefix, "-input-number-outlined.").concat(antPrefix, "-input-number-disabled"), {
|
|
12
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
13
|
+
}), ".".concat(antPrefix, "-input-number-sm"), {
|
|
14
|
+
fontSize: '12px',
|
|
15
|
+
height: '24px'
|
|
16
|
+
});
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare function getRadioStyleData(params: any): {
|
|
2
|
+
[x: string]: {
|
|
3
|
+
[x: string]: {
|
|
4
|
+
display: string;
|
|
5
|
+
};
|
|
6
|
+
} | {
|
|
7
|
+
[x: string]: {
|
|
8
|
+
borderColor: string;
|
|
9
|
+
} | {
|
|
10
|
+
[x: string]: {
|
|
11
|
+
borderColor: string;
|
|
12
|
+
} | {
|
|
13
|
+
[x: string]: {
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
"&::after": {
|
|
16
|
+
backgroundColor: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
borderColor?: undefined;
|
|
20
|
+
};
|
|
21
|
+
borderColor?: undefined;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getRadioStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty(_defineProperty({}, ".".concat(antPrefix, "-radio-button-wrapper"), _defineProperty({}, ".".concat(antPrefix, "-wave"), {
|
|
8
|
+
display: 'none !important'
|
|
9
|
+
})), ".".concat(antPrefix, "-radio-wrapper"), _defineProperty(_defineProperty({}, ".".concat(antPrefix, "-radio-inner"), {
|
|
10
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
11
|
+
}), ".".concat(antPrefix, "-radio-disabled"), _defineProperty(_defineProperty({}, ".".concat(antPrefix, "-radio-inner"), {
|
|
12
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
13
|
+
}), "&.".concat(antPrefix, "-radio-checked"), _defineProperty({}, ".".concat(antPrefix, "-radio-inner"), _defineProperty({
|
|
14
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
15
|
+
}, "&::after", {
|
|
16
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-bg-base)")
|
|
17
|
+
})))));
|
|
18
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare function getSelectStyleData(params: any): {
|
|
2
|
+
[x: string]: {
|
|
3
|
+
border: string;
|
|
4
|
+
boxShadow: string;
|
|
5
|
+
borderRadius: string;
|
|
6
|
+
borderColor?: undefined;
|
|
7
|
+
color?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
borderColor: string;
|
|
10
|
+
border?: undefined;
|
|
11
|
+
boxShadow?: undefined;
|
|
12
|
+
borderRadius?: undefined;
|
|
13
|
+
color?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
color: string;
|
|
16
|
+
border?: undefined;
|
|
17
|
+
boxShadow?: undefined;
|
|
18
|
+
borderRadius?: undefined;
|
|
19
|
+
borderColor?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
[x: string]: {
|
|
22
|
+
borderRadius: string;
|
|
23
|
+
backgroundColor: string;
|
|
24
|
+
};
|
|
25
|
+
border?: undefined;
|
|
26
|
+
boxShadow?: undefined;
|
|
27
|
+
borderRadius?: undefined;
|
|
28
|
+
borderColor?: undefined;
|
|
29
|
+
color?: undefined;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
3
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
4
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5
|
+
export function getSelectStyleData(params) {
|
|
6
|
+
var antPrefix = params.antPrefix;
|
|
7
|
+
return _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(antPrefix, "-select-dropdown"), {
|
|
8
|
+
border: "1px solid var(--".concat(antPrefix, "-color-border-secondary)"),
|
|
9
|
+
boxShadow: "0px 4px 6px 0px rgba(0, 0, 0, 0.08)",
|
|
10
|
+
borderRadius: "var(--".concat(antPrefix, "-border-radius)")
|
|
11
|
+
}), ".".concat(antPrefix, "-select-outlined:not(.").concat(antPrefix, "-select-customize-input) .").concat(antPrefix, "-select-selector"), {
|
|
12
|
+
borderColor: "var(--".concat(antPrefix, "-color-border-secondary)")
|
|
13
|
+
}), ".".concat(antPrefix, "-select .").concat(antPrefix, "-select-arrow"), {
|
|
14
|
+
color: "var(--".concat(antPrefix, "-color-text-secondary)")
|
|
15
|
+
}), ".".concat(antPrefix, "-select-outlined.").concat(antPrefix, "-select-multiple"), _defineProperty({}, ".".concat(antPrefix, "-select-selection-item"), {
|
|
16
|
+
borderRadius: '4px',
|
|
17
|
+
backgroundColor: "var(--".concat(antPrefix, "-color-mauve-bg)")
|
|
18
|
+
})), ".".concat(antPrefix, "-select-selection-overflow"), _defineProperty({
|
|
19
|
+
color: "var(--".concat(antPrefix, "-color-mauve)")
|
|
20
|
+
}, ".".concat(antPrefix, "-select-selection-item-remove"), {
|
|
21
|
+
'.anticon-close': {
|
|
22
|
+
fontSize: '14px',
|
|
23
|
+
color: "var(--".concat(antPrefix, "-color-mauve)")
|
|
24
|
+
}
|
|
25
|
+
})), ".".concat(antPrefix, "-select-disabled.").concat(antPrefix, "-select-multiple .").concat(antPrefix, "-select-selection-overflow .").concat(antPrefix, "-select-selection-item"), {
|
|
26
|
+
color: "var(--".concat(antPrefix, "-color-mauve)")
|
|
27
|
+
});
|
|
28
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"borderRadiusXS": 2,
|
|
3
|
+
"borderRadiusSM": 4,
|
|
4
|
+
"borderRadius": 6,
|
|
5
|
+
"borderRadiusLG": 8,
|
|
6
|
+
"borderRadiusXL": 12,
|
|
7
|
+
"borderRadiusFull": 999,
|
|
8
|
+
"wireframe": false,
|
|
9
|
+
"colorPrimaryBg": "#202041",
|
|
10
|
+
"colorPrimaryBgHover": "#202041",
|
|
11
|
+
"colorPrimaryBorder": "#2B2A55",
|
|
12
|
+
"colorPrimaryBorderHover": "#373476",
|
|
13
|
+
"colorPrimaryHover": "#857DE3",
|
|
14
|
+
"colorPrimary": "#5551CC",
|
|
15
|
+
"colorPrimaryActive": "#4643A1",
|
|
16
|
+
"colorPrimaryTextHover": "#857DE3",
|
|
17
|
+
"colorPrimaryText": "#5551CC",
|
|
18
|
+
"colorPrimaryTextActive": "#4643A1",
|
|
19
|
+
"colorTextBase": "#E7E7ED",
|
|
20
|
+
"colorBgBase": "#000000",
|
|
21
|
+
"colorText": "rgba(231, 231, 237, 0.88)",
|
|
22
|
+
"colorTextSecondary": "rgba(231, 231, 237, 0.65)",
|
|
23
|
+
"colorTextTertiary": "rgba(231, 231, 237, 0.45)",
|
|
24
|
+
"colorTextQuaternary": "rgba(231, 231, 237, 0.25)",
|
|
25
|
+
"colorBorder": "rgba(71, 71, 97, 0.8)",
|
|
26
|
+
"colorBorderSecondary": "rgba(56, 56, 76, 0.8)",
|
|
27
|
+
"colorFill": "rgba(231, 231, 237, 0.18)",
|
|
28
|
+
"colorFillSecondary": "rgba(231, 231, 237, 0.12)",
|
|
29
|
+
"colorFillTertiary": "rgba(231, 231, 237, 0.08)",
|
|
30
|
+
"colorFillQuaternary": "rgba(231, 231, 237, 0.04)",
|
|
31
|
+
"colorBgContainer": "#0F0F14",
|
|
32
|
+
"colorBgElevated": "#0F0F14",
|
|
33
|
+
"colorBgLayout": "#0F0F14",
|
|
34
|
+
"colorBgSpotlight": "rgba(71, 71, 97, 0.85)",
|
|
35
|
+
"colorBgMask": "rgba(5, 5, 8, 0.8)",
|
|
36
|
+
"colorInfo": "#0B83F1",
|
|
37
|
+
"colorInfoHover": "rgba(42, 114, 165, 1)",
|
|
38
|
+
"colorInfoBorder": "rgba(135, 209, 255, 0.2)",
|
|
39
|
+
"colorInfoText": "#0B83F1",
|
|
40
|
+
"colorInfoBg": "rgba(27, 73, 115, 0.25)",
|
|
41
|
+
"colorInfoBgHover": "rgba(27, 73, 115, 0.32)",
|
|
42
|
+
"colorInfoBorderHover": "rgba(94, 188, 255, 0.2)",
|
|
43
|
+
"colorSuccess": "#5BB98B",
|
|
44
|
+
"colorSuccessHover": "rgba(87, 141, 112, 1)",
|
|
45
|
+
"colorSuccessBg": "rgba(0, 50, 26, 0.25)",
|
|
46
|
+
"colorSuccessBgHover": "rgba(0, 50, 26, 0.32)",
|
|
47
|
+
"colorSuccessBorder": "rgba(211, 224, 217, 0.2)",
|
|
48
|
+
"colorSuccessBorderHover": "rgba(171, 212, 190, 0.2)",
|
|
49
|
+
"colorWarning": "#FAAD14",
|
|
50
|
+
"colorWarningHover": "rgba(170, 136, 43, 1)",
|
|
51
|
+
"colorWarningBg": "rgba(129, 116, 49, 0.25)",
|
|
52
|
+
"colorWarningBgHover": "rgba(129, 116, 49, 0.32)",
|
|
53
|
+
"colorWarningBorder": "rgba(255, 229, 143, 0.2)",
|
|
54
|
+
"colorWarningBorderHover": "rgba(255, 214, 102, 0.2)",
|
|
55
|
+
"colorError": "#FF4D4F",
|
|
56
|
+
"colorErrorHover": "rgba(165, 50, 48, 1)",
|
|
57
|
+
"colorErrorBg": "rgba(129, 46, 46, 0.25)",
|
|
58
|
+
"colorErrorBgHover": "rgba(129, 46, 46, 0.32)",
|
|
59
|
+
"colorErrorBorder": "rgba(255, 204, 199, 0.2)",
|
|
60
|
+
"colorErrorBorderHover": "rgba(255, 163, 158, 0.2)",
|
|
61
|
+
"colorLink": "#5551CC",
|
|
62
|
+
"boxShadow": "0px 4px 6px 0px rgba(255, 255, 255, 0.08)",
|
|
63
|
+
"boxShadowSecondary": "0px 12px 24px -16px rgba(255, 255, 255, 0.04),0px 8px 40px 0px rgba(255, 255, 255, 0.06),0px 0px 1px 0px rgba(255, 255, 255, 0.02)",
|
|
64
|
+
"colorTextWhite": "#fff",
|
|
65
|
+
"colorFillDisable": "#8D8C98",
|
|
66
|
+
"colorPurple": "#5551CC",
|
|
67
|
+
"colorPurpleHover": "#8383F0",
|
|
68
|
+
"colorPurpleBg": "rgba(226, 222, 255, 0.2)",
|
|
69
|
+
"colorPink": "#EC4899",
|
|
70
|
+
"colorPinkHover": "#E494BC",
|
|
71
|
+
"colorPinkBg": "rgba(251, 220, 239, 0.2)",
|
|
72
|
+
"colorYellow": "#EAB308",
|
|
73
|
+
"colorYellowHover": "#DBBE62",
|
|
74
|
+
"colorYellowBg": "rgba(255, 250, 184, 0.2)",
|
|
75
|
+
"colorOrange": "#FA8125",
|
|
76
|
+
"colorOrangeHover": "#F7A25F",
|
|
77
|
+
"colorOrangeBg": "rgba(255, 232, 201, 0.2)",
|
|
78
|
+
"colorTeal": "#14B8A6",
|
|
79
|
+
"colorTealHover": "#7BC7BE",
|
|
80
|
+
"colorTealBg": "rgba(200, 244, 233, 0.2)",
|
|
81
|
+
"colorBlue": "#0090FF",
|
|
82
|
+
"colorBlueHover": "#83BFED",
|
|
83
|
+
"colorBlueBg": "rgba(194, 229, 255, 0.2)",
|
|
84
|
+
"colorMauve": "#8E8C99",
|
|
85
|
+
"colorMauveHover": "#BBB8CA",
|
|
86
|
+
"colorMauveBg": "rgba(239, 240, 243, 0.2)",
|
|
87
|
+
"boxShadowTertiary": "0px 12px 32px -16px rgba(255, 255, 255, 0.16),0px 12px 60px 0px rgba(255, 255, 255, 0.08),0px 0px 1px 0px rgba(255, 255, 255, 0.02)",
|
|
88
|
+
"boxShadowTertiaryLeft": "-12px 0px 32px -16px rgba(255, 255, 255, 0.16),-12px 0px 60px 0px rgba(255, 255, 255, 0.08),0px 0px 1px 0px rgba(255, 255, 255, 0.02);",
|
|
89
|
+
"boxShadowInput": "0px 12px 24px -16px rgba(255, 255, 255, 0.08),0px 12px 40px 0px rgba(255, 255, 255, 0.16),0px 0px 1px 0px rgba(255, 255, 255, 0.04)"
|
|
90
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"borderRadiusXS": 2,
|
|
3
|
+
"borderRadiusSM": 4,
|
|
4
|
+
"borderRadius": 6,
|
|
5
|
+
"borderRadiusLG": 8,
|
|
6
|
+
"borderRadiusXL": 12,
|
|
7
|
+
"borderRadiusFull": 999,
|
|
8
|
+
"wireframe": false,
|
|
9
|
+
"colorPrimaryBg": "#F2F0FF",
|
|
10
|
+
"colorPrimaryBgHover": "#F2F0FF",
|
|
11
|
+
"colorPrimaryBorder": "#E2DEFF",
|
|
12
|
+
"colorPrimaryBorderHover": "#BCB5FF",
|
|
13
|
+
"colorPrimaryHover": "#9189FA",
|
|
14
|
+
"colorPrimary": "#615CED",
|
|
15
|
+
"colorPrimaryActive": "#4444C7",
|
|
16
|
+
"colorPrimaryTextHover": "#9189FA",
|
|
17
|
+
"colorPrimaryText": "#615CED",
|
|
18
|
+
"colorPrimaryTextActive": "#4444C7",
|
|
19
|
+
"colorTextBase": "#26244c",
|
|
20
|
+
"colorBgBase": "#FFFFFF",
|
|
21
|
+
"colorText": "rgba(38, 36, 76, 0.88)",
|
|
22
|
+
"colorTextSecondary": "rgba(38, 36, 76, 0.65)",
|
|
23
|
+
"colorTextTertiary": "rgba(38, 36, 76, 0.45)",
|
|
24
|
+
"colorTextQuaternary": "rgba(38, 36, 76, 0.25)",
|
|
25
|
+
"colorBorder": "#cdd0dc",
|
|
26
|
+
"colorBorderSecondary": "#e6e8ee",
|
|
27
|
+
"colorFill": "#cdd0dc5c",
|
|
28
|
+
"colorFillSecondary": "#cdd0dc33",
|
|
29
|
+
"colorFillTertiary": "#cdd0dc26",
|
|
30
|
+
"colorFillQuaternary": "#cdd0dc1a",
|
|
31
|
+
"colorBgContainer": "#FFFFFF",
|
|
32
|
+
"colorBgElevated": "#FFFFFF",
|
|
33
|
+
"colorBgLayout": "#f9fafd",
|
|
34
|
+
"colorBgSpotlight": "rgba(38, 36, 76, 0.85)",
|
|
35
|
+
"colorBgMask": "rgba(20, 19, 39, 0.45)",
|
|
36
|
+
"colorInfo": "#0B83F1",
|
|
37
|
+
"colorInfoHover": "#5EBCFF",
|
|
38
|
+
"colorInfoBorder": "#87D1FF",
|
|
39
|
+
"colorInfoText": "#0B83F1",
|
|
40
|
+
"colorInfoBg": "#E6F7FF",
|
|
41
|
+
"colorInfoBgHover": "#B0E3FF",
|
|
42
|
+
"colorInfoBorderHover": "#5EBCFF",
|
|
43
|
+
"colorSuccess": "#5BB98B",
|
|
44
|
+
"colorSuccessHover": "#ABD4BE",
|
|
45
|
+
"colorSuccessBg": "#EBFAF0",
|
|
46
|
+
"colorSuccessBgHover": "#DFEDE4",
|
|
47
|
+
"colorSuccessBorder": "#D3E0D9",
|
|
48
|
+
"colorSuccessBorderHover": "#ABD4BE",
|
|
49
|
+
"colorWarning": "#FAAD14",
|
|
50
|
+
"colorWarningHover": "#FFD666",
|
|
51
|
+
"colorWarningBg": "#FFFBE6",
|
|
52
|
+
"colorWarningBgHover": "#FFF1B8",
|
|
53
|
+
"colorWarningBorder": "#FFE58F",
|
|
54
|
+
"colorWarningBorderHover": "#FFD666",
|
|
55
|
+
"colorError": "#FF4D4F",
|
|
56
|
+
"colorErrorHover": "#FF7875",
|
|
57
|
+
"colorErrorBg": "#FFF2F0",
|
|
58
|
+
"colorErrorBgHover": "#FFF1F0",
|
|
59
|
+
"colorErrorBorder": "#FFCCC7",
|
|
60
|
+
"colorErrorBorderHover": "#FFA39E",
|
|
61
|
+
"colorLink": "#615CED",
|
|
62
|
+
"boxShadow": "0px 4px 6px 0px rgba(0, 0, 0, 0.08)",
|
|
63
|
+
"boxShadowSecondary": "0px 12px 24px -16px rgba(0, 0, 0, 0.06),0px 8px 40px 0px rgba(0, 0, 0, 0.12),0px 0px 1px 0px rgba(0, 0, 0, 0.04)",
|
|
64
|
+
"colorTextWhite": "#fff",
|
|
65
|
+
"colorFillDisable": "#DBDAE7",
|
|
66
|
+
"colorPurple": "#615CED",
|
|
67
|
+
"colorPurpleHover": "#8080FF",
|
|
68
|
+
"colorPurpleBg": "rgba(226, 222, 255, 0.8)",
|
|
69
|
+
"colorPink": "#EC4899",
|
|
70
|
+
"colorPinkHover": "#E593BC",
|
|
71
|
+
"colorPinkBg": "rgba(251, 220, 239, 0.8)",
|
|
72
|
+
"colorYellow": "#EAB308",
|
|
73
|
+
"colorYellowHover": "#F1D372",
|
|
74
|
+
"colorYellowBg": "rgba(255, 250, 184, 0.8)",
|
|
75
|
+
"colorOrange": "#FA8125",
|
|
76
|
+
"colorOrangeHover": "#E88C45",
|
|
77
|
+
"colorOrangeBg": "rgba(255, 232, 201, 0.8)",
|
|
78
|
+
"colorTeal": "#14B8A6",
|
|
79
|
+
"colorTealHover": "#5FB3A9",
|
|
80
|
+
"colorTealBg": "rgba(200, 244, 233, 0.8)",
|
|
81
|
+
"colorBlue": "#0090FF",
|
|
82
|
+
"colorBlueHover": "#72BCF5",
|
|
83
|
+
"colorBlueBg": "rgba(194, 229, 255, 0.8)",
|
|
84
|
+
"colorMauve": "#8E8C99",
|
|
85
|
+
"colorMauveHover": "#C0BFC8",
|
|
86
|
+
"colorMauveBg": "rgba(239, 240, 243, 0.8)",
|
|
87
|
+
"boxShadowTertiary": "0px 12px 32px -16px rgba(0, 0, 0, 0.24),0px 12px 60px 0px rgba(0, 0, 0, 0.12),0px 0px 1px 0px rgba(0, 0, 0, 0.04)",
|
|
88
|
+
"boxShadowTertiaryLeft": "-12px 0px 32px -16px rgba(0, 0, 0, 0.24),-12px 0px 60px 0px rgba(0, 0, 0, 0.12),0px 0px 1px 0px rgba(0, 0, 0, 0.04)",
|
|
89
|
+
"boxShadowInput": "0px 12px 24px -16px rgba(54, 54, 73, 0.04),0px 12px 40px 0px rgba(51, 51, 71, 0.08),0px 0px 1px 0px rgba(44, 44, 54, 0.02)"
|
|
90
|
+
}
|