yuang-framework-ui-pc 1.0.20 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -41
- package/es/ele-admin-layout/components/layout-skeleton.d.ts +10 -0
- package/es/ele-admin-layout/components/layout-skeleton.js +47 -0
- package/es/ele-admin-layout/components/layout-tabs.d.ts +64 -0
- package/es/ele-admin-layout/components/layout-tabs.js +132 -0
- package/es/ele-admin-layout/components/layout-tool.d.ts +2 -0
- package/es/ele-admin-layout/components/layout-tool.js +21 -0
- package/es/ele-admin-layout/index.d.ts +293 -0
- package/es/ele-admin-layout/index.js +693 -0
- package/es/ele-admin-layout/props.d.ts +182 -0
- package/es/ele-admin-layout/props.js +169 -0
- package/es/ele-admin-layout/style/css-var.scss +14 -0
- package/es/ele-admin-layout/style/header.scss +192 -0
- package/es/ele-admin-layout/style/index.d.ts +1 -0
- package/es/ele-admin-layout/style/index.js +9 -0
- package/es/ele-admin-layout/style/index.scss +313 -0
- package/es/ele-admin-layout/style/sidebar.scss +187 -0
- package/es/ele-admin-layout/style/tabs.scss +59 -0
- package/es/ele-admin-layout/types.d.ts +54 -0
- package/es/ele-app/components/message-body.d.ts +46 -0
- package/es/ele-app/components/message-body.js +98 -0
- package/es/ele-app/components/message-box-icon.d.ts +31 -0
- package/es/ele-app/components/message-box-icon.js +63 -0
- package/es/ele-app/el.d.ts +304 -0
- package/es/ele-app/index.d.ts +4 -0
- package/es/ele-app/index.js +13 -0
- package/es/ele-app/plus.d.ts +181 -0
- package/es/ele-app/style/common/index.d.ts +1 -0
- package/es/ele-app/style/common/index.js +1 -0
- package/es/ele-app/style/common/index.scss +55 -0
- package/es/ele-app/style/css-var.scss +11 -0
- package/es/ele-app/style/index.d.ts +1 -0
- package/es/ele-app/style/index.js +4 -0
- package/es/ele-app/style/index.scss +4 -0
- package/es/ele-app/style/message/css-var.scss +8 -0
- package/es/ele-app/style/message/index.d.ts +1 -0
- package/es/ele-app/style/message/index.js +2 -0
- package/es/ele-app/style/message/index.scss +261 -0
- package/es/ele-app/style/overwrite/autocomplete/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/autocomplete/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/autocomplete/index.js +1 -0
- package/es/ele-app/style/overwrite/autocomplete/index.scss +33 -0
- package/es/ele-app/style/overwrite/backtop/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/backtop/index.js +1 -0
- package/es/ele-app/style/overwrite/backtop/index.scss +8 -0
- package/es/ele-app/style/overwrite/cascader/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/cascader/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/cascader/index.js +1 -0
- package/es/ele-app/style/overwrite/cascader/index.scss +166 -0
- package/es/ele-app/style/overwrite/checkbox/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/checkbox/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/checkbox/index.js +1 -0
- package/es/ele-app/style/overwrite/checkbox/index.scss +161 -0
- package/es/ele-app/style/overwrite/color-picker/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/color-picker/index.js +1 -0
- package/es/ele-app/style/overwrite/color-picker/index.scss +42 -0
- package/es/ele-app/style/overwrite/css-var.scss +33 -0
- package/es/ele-app/style/overwrite/date-picker/css-var.scss +16 -0
- package/es/ele-app/style/overwrite/date-picker/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/date-picker/index.js +1 -0
- package/es/ele-app/style/overwrite/date-picker/index.scss +895 -0
- package/es/ele-app/style/overwrite/descriptions/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/descriptions/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/descriptions/index.js +1 -0
- package/es/ele-app/style/overwrite/descriptions/index.scss +52 -0
- package/es/ele-app/style/overwrite/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/index.js +16 -0
- package/es/ele-app/style/overwrite/index.scss +16 -0
- package/es/ele-app/style/overwrite/input/css-var.scss +34 -0
- package/es/ele-app/style/overwrite/input/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/input/index.js +1 -0
- package/es/ele-app/style/overwrite/input/index.scss +540 -0
- package/es/ele-app/style/overwrite/message-box/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/message-box/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/message-box/index.js +2 -0
- package/es/ele-app/style/overwrite/message-box/index.scss +148 -0
- package/es/ele-app/style/overwrite/notification/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/notification/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/notification/index.js +2 -0
- package/es/ele-app/style/overwrite/notification/index.scss +65 -0
- package/es/ele-app/style/overwrite/popper/css-var.scss +14 -0
- package/es/ele-app/style/overwrite/popper/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/popper/index.js +1 -0
- package/es/ele-app/style/overwrite/popper/index.scss +9 -0
- package/es/ele-app/style/overwrite/radio/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/radio/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/radio/index.js +1 -0
- package/es/ele-app/style/overwrite/radio/index.scss +128 -0
- package/es/ele-app/style/overwrite/select/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/select/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/select/index.js +1 -0
- package/es/ele-app/style/overwrite/select/index.scss +203 -0
- package/es/ele-app/style/overwrite/tag/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tag/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tag/index.js +1 -0
- package/es/ele-app/style/overwrite/tag/index.scss +346 -0
- package/es/ele-app/style/overwrite/tree/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tree/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tree/index.js +1 -0
- package/es/ele-app/style/overwrite/tree/index.scss +106 -0
- package/es/ele-app/style/overwrite/tree-select/css-var.scss +8 -0
- package/es/ele-app/style/overwrite/tree-select/index.d.ts +1 -0
- package/es/ele-app/style/overwrite/tree-select/index.js +1 -0
- package/es/ele-app/style/overwrite/tree-select/index.scss +108 -0
- package/es/ele-app/style/scrollbar/css-var.scss +71 -0
- package/es/ele-app/style/scrollbar/index.d.ts +1 -0
- package/es/ele-app/style/scrollbar/index.js +1 -0
- package/es/ele-app/style/scrollbar/index.scss +9 -0
- package/es/ele-app/types.d.ts +48 -0
- package/es/ele-pro-layout/components/pro-iframe.vue +120 -0
- package/es/ele-pro-layout/index.vue +1277 -0
- package/es/ele-pro-layout/props.ts +255 -0
- package/es/ele-pro-layout/style/index.scss +41 -0
- package/es/ele-pro-layout/style/index.ts +2 -0
- package/es/ele-pro-layout/types.ts +212 -0
- package/es/ele-pro-layout/util.ts +277 -0
- package/es/ele-tabs/index.d.ts +149 -0
- package/es/ele-tabs/index.js +480 -0
- package/es/ele-tabs/props.d.ts +82 -0
- package/es/ele-tabs/props.js +46 -0
- package/es/ele-tabs/style/css-var.scss +8 -0
- package/es/ele-tabs/style/index.d.ts +1 -0
- package/es/ele-tabs/style/index.js +5 -0
- package/es/ele-tabs/style/index.scss +1074 -0
- package/es/ele-tabs/types.d.ts +70 -0
- package/es/icons/AnalysisOutlined.d.ts +2 -0
- package/es/icons/AnalysisOutlined.js +35 -0
- package/es/icons/ApplicationOutlined.d.ts +2 -0
- package/es/icons/ApplicationOutlined.js +26 -0
- package/es/icons/AppstoreAddOutlined.d.ts +2 -0
- package/es/icons/AppstoreAddOutlined.js +35 -0
- package/es/icons/AppstoreOutlined.d.ts +2 -0
- package/es/icons/AppstoreOutlined.js +35 -0
- package/es/icons/ArrowDown.d.ts +2 -0
- package/es/icons/ArrowDown.js +31 -0
- package/es/icons/ArrowDownOutlined.d.ts +2 -0
- package/es/icons/ArrowDownOutlined.js +30 -0
- package/es/icons/ArrowLeft.d.ts +2 -0
- package/es/icons/ArrowLeft.js +31 -0
- package/es/icons/ArrowLeftOutlined.d.ts +2 -0
- package/es/icons/ArrowLeftOutlined.js +30 -0
- package/es/icons/ArrowRight.d.ts +2 -0
- package/es/icons/ArrowRight.js +31 -0
- package/es/icons/ArrowRightOutlined.d.ts +2 -0
- package/es/icons/ArrowRightOutlined.js +30 -0
- package/es/icons/ArrowUp.d.ts +2 -0
- package/es/icons/ArrowUp.js +31 -0
- package/es/icons/ArrowUpOutlined.d.ts +2 -0
- package/es/icons/ArrowUpOutlined.js +30 -0
- package/es/icons/BellOutlined.d.ts +2 -0
- package/es/icons/BellOutlined.js +29 -0
- package/es/icons/BookOutlined.d.ts +2 -0
- package/es/icons/BookOutlined.js +29 -0
- package/es/icons/CalendarOutlined.d.ts +2 -0
- package/es/icons/CalendarOutlined.js +29 -0
- package/es/icons/CaretDownFilled.d.ts +2 -0
- package/es/icons/CaretDownFilled.js +26 -0
- package/es/icons/CaretUpFilled.d.ts +2 -0
- package/es/icons/CaretUpFilled.js +26 -0
- package/es/icons/CheckCircleFilled.d.ts +2 -0
- package/es/icons/CheckCircleFilled.js +26 -0
- package/es/icons/CheckCircleOutlined.d.ts +2 -0
- package/es/icons/CheckCircleOutlined.js +32 -0
- package/es/icons/CheckOutlined.d.ts +2 -0
- package/es/icons/CheckOutlined.js +30 -0
- package/es/icons/CityOutlined.d.ts +2 -0
- package/es/icons/CityOutlined.js +35 -0
- package/es/icons/ClockCircleOutlined.d.ts +2 -0
- package/es/icons/ClockCircleOutlined.js +32 -0
- package/es/icons/CloseCircleFilled.d.ts +2 -0
- package/es/icons/CloseCircleFilled.js +26 -0
- package/es/icons/CloseCircleOutlined.d.ts +2 -0
- package/es/icons/CloseCircleOutlined.js +31 -0
- package/es/icons/CloseOutlined.d.ts +2 -0
- package/es/icons/CloseOutlined.js +30 -0
- package/es/icons/CloudUploadOutlined.d.ts +2 -0
- package/es/icons/CloudUploadOutlined.js +32 -0
- package/es/icons/ClusterOutlined.d.ts +2 -0
- package/es/icons/ClusterOutlined.js +29 -0
- package/es/icons/CodeOutlined.d.ts +2 -0
- package/es/icons/CodeOutlined.js +34 -0
- package/es/icons/ColumnHeightOutlined.d.ts +2 -0
- package/es/icons/ColumnHeightOutlined.js +35 -0
- package/es/icons/CompassOutlined.d.ts +2 -0
- package/es/icons/CompassOutlined.js +34 -0
- package/es/icons/CompressOutlined.d.ts +2 -0
- package/es/icons/CompressOutlined.js +36 -0
- package/es/icons/ConnectionOutlined.d.ts +2 -0
- package/es/icons/ConnectionOutlined.js +31 -0
- package/es/icons/ControlOutlined.d.ts +2 -0
- package/es/icons/ControlOutlined.js +33 -0
- package/es/icons/CopyOutlined.d.ts +2 -0
- package/es/icons/CopyOutlined.js +35 -0
- package/es/icons/CornerLeftFilled.d.ts +2 -0
- package/es/icons/CornerLeftFilled.js +26 -0
- package/es/icons/CornerRightFilled.d.ts +2 -0
- package/es/icons/CornerRightFilled.js +26 -0
- package/es/icons/CpuOutlined.d.ts +2 -0
- package/es/icons/CpuOutlined.js +30 -0
- package/es/icons/DashboardOutlined.d.ts +2 -0
- package/es/icons/DashboardOutlined.js +37 -0
- package/es/icons/DatabaseOutlined.d.ts +2 -0
- package/es/icons/DatabaseOutlined.js +35 -0
- package/es/icons/DeleteOutlined.d.ts +2 -0
- package/es/icons/DeleteOutlined.js +34 -0
- package/es/icons/DesktopOutlined.d.ts +2 -0
- package/es/icons/DesktopOutlined.js +29 -0
- package/es/icons/DownloadOutlined.d.ts +2 -0
- package/es/icons/DownloadOutlined.js +32 -0
- package/es/icons/DragOutlined.d.ts +2 -0
- package/es/icons/DragOutlined.js +30 -0
- package/es/icons/EditOutlined.d.ts +2 -0
- package/es/icons/EditOutlined.js +32 -0
- package/es/icons/EllipsisOutlined.d.ts +2 -0
- package/es/icons/EllipsisOutlined.js +42 -0
- package/es/icons/EnvironmentOutlined.d.ts +2 -0
- package/es/icons/EnvironmentOutlined.js +31 -0
- package/es/icons/ExclamationCircleFilled.d.ts +2 -0
- package/es/icons/ExclamationCircleFilled.js +26 -0
- package/es/icons/ExpandOutlined.d.ts +2 -0
- package/es/icons/ExpandOutlined.js +36 -0
- package/es/icons/EyeOutlined.d.ts +2 -0
- package/es/icons/EyeOutlined.js +30 -0
- package/es/icons/FileOutlined.d.ts +2 -0
- package/es/icons/FileOutlined.js +35 -0
- package/es/icons/FilterFilled.d.ts +2 -0
- package/es/icons/FilterFilled.js +26 -0
- package/es/icons/FolderAddOutlined.d.ts +2 -0
- package/es/icons/FolderAddOutlined.js +31 -0
- package/es/icons/FolderOutlined.d.ts +2 -0
- package/es/icons/FolderOutlined.js +29 -0
- package/es/icons/FormOutlined.d.ts +2 -0
- package/es/icons/FormOutlined.js +31 -0
- package/es/icons/FullscreenExitOutlined.d.ts +2 -0
- package/es/icons/FullscreenExitOutlined.js +34 -0
- package/es/icons/FullscreenOutlined.d.ts +2 -0
- package/es/icons/FullscreenOutlined.js +34 -0
- package/es/icons/FundOutlined.d.ts +2 -0
- package/es/icons/FundOutlined.js +31 -0
- package/es/icons/GlobalOutlined.d.ts +2 -0
- package/es/icons/GlobalOutlined.js +28 -0
- package/es/icons/HolderOutlined.d.ts +2 -0
- package/es/icons/HolderOutlined.js +26 -0
- package/es/icons/HomeOutlined.d.ts +2 -0
- package/es/icons/HomeOutlined.js +29 -0
- package/es/icons/IdcardOutlined.d.ts +2 -0
- package/es/icons/IdcardOutlined.js +38 -0
- package/es/icons/InfoCircleFilled.d.ts +2 -0
- package/es/icons/InfoCircleFilled.js +26 -0
- package/es/icons/LinkOutlined.d.ts +2 -0
- package/es/icons/LinkOutlined.js +32 -0
- package/es/icons/LoadingDotOutlined.d.ts +2 -0
- package/es/icons/LoadingDotOutlined.js +29 -0
- package/es/icons/LoadingOutlined.d.ts +2 -0
- package/es/icons/LoadingOutlined.js +29 -0
- package/es/icons/LockOutlined.d.ts +2 -0
- package/es/icons/LockOutlined.js +32 -0
- package/es/icons/LogOutlined.d.ts +2 -0
- package/es/icons/LogOutlined.js +35 -0
- package/es/icons/LogoutOutlined.d.ts +2 -0
- package/es/icons/LogoutOutlined.js +31 -0
- package/es/icons/MailOutlined.d.ts +2 -0
- package/es/icons/MailOutlined.js +29 -0
- package/es/icons/MenuFoldOutlined.d.ts +2 -0
- package/es/icons/MenuFoldOutlined.js +28 -0
- package/es/icons/MenuOutlined.d.ts +2 -0
- package/es/icons/MenuOutlined.js +32 -0
- package/es/icons/MenuUnfoldOutlined.d.ts +2 -0
- package/es/icons/MenuUnfoldOutlined.js +28 -0
- package/es/icons/MessageOutlined.d.ts +2 -0
- package/es/icons/MessageOutlined.js +50 -0
- package/es/icons/MinusCircleOutlined.d.ts +2 -0
- package/es/icons/MinusCircleOutlined.js +31 -0
- package/es/icons/MobileOutlined.d.ts +2 -0
- package/es/icons/MobileOutlined.js +37 -0
- package/es/icons/MoonOutlined.d.ts +2 -0
- package/es/icons/MoonOutlined.js +29 -0
- package/es/icons/MoreOutlined.d.ts +2 -0
- package/es/icons/MoreOutlined.js +42 -0
- package/es/icons/PauseFilled.d.ts +2 -0
- package/es/icons/PauseFilled.js +30 -0
- package/es/icons/PieChartOutlined.d.ts +2 -0
- package/es/icons/PieChartOutlined.js +31 -0
- package/es/icons/PlayFilled.d.ts +2 -0
- package/es/icons/PlayFilled.js +26 -0
- package/es/icons/PlusCircleOutlined.d.ts +2 -0
- package/es/icons/PlusCircleOutlined.js +31 -0
- package/es/icons/PlusOutlined.d.ts +2 -0
- package/es/icons/PlusOutlined.js +29 -0
- package/es/icons/PrinterOutlined.d.ts +2 -0
- package/es/icons/PrinterOutlined.js +29 -0
- package/es/icons/ProtectOutlined.d.ts +2 -0
- package/es/icons/ProtectOutlined.js +32 -0
- package/es/icons/QuestionCircleFilled.d.ts +2 -0
- package/es/icons/QuestionCircleFilled.js +26 -0
- package/es/icons/QuestionCircleOutlined.d.ts +2 -0
- package/es/icons/QuestionCircleOutlined.js +39 -0
- package/es/icons/ReloadOutlined.d.ts +2 -0
- package/es/icons/ReloadOutlined.js +30 -0
- package/es/icons/ResizeOutlined.d.ts +2 -0
- package/es/icons/ResizeOutlined.js +30 -0
- package/es/icons/SearchOutlined.d.ts +2 -0
- package/es/icons/SearchOutlined.js +29 -0
- package/es/icons/SettingOutlined.d.ts +2 -0
- package/es/icons/SettingOutlined.js +31 -0
- package/es/icons/ShoppingOutlined.d.ts +2 -0
- package/es/icons/ShoppingOutlined.js +29 -0
- package/es/icons/SizeCompactOutlined.d.ts +2 -0
- package/es/icons/SizeCompactOutlined.js +34 -0
- package/es/icons/SizeMiddleOutlined.d.ts +2 -0
- package/es/icons/SizeMiddleOutlined.js +34 -0
- package/es/icons/SizeSlackOutlined.d.ts +2 -0
- package/es/icons/SizeSlackOutlined.js +34 -0
- package/es/icons/SortOutlined.d.ts +2 -0
- package/es/icons/SortOutlined.js +32 -0
- package/es/icons/StarFilled.d.ts +2 -0
- package/es/icons/StarFilled.js +26 -0
- package/es/icons/StepBackwardFilled.d.ts +2 -0
- package/es/icons/StepBackwardFilled.js +33 -0
- package/es/icons/StepForwardFilled.d.ts +2 -0
- package/es/icons/StepForwardFilled.js +33 -0
- package/es/icons/SuitcaseOutlined.d.ts +2 -0
- package/es/icons/SuitcaseOutlined.js +29 -0
- package/es/icons/SunOutlined.d.ts +2 -0
- package/es/icons/SunOutlined.js +29 -0
- package/es/icons/SwapOutlined.d.ts +2 -0
- package/es/icons/SwapOutlined.js +32 -0
- package/es/icons/SyncOutlined.d.ts +2 -0
- package/es/icons/SyncOutlined.js +32 -0
- package/es/icons/TableOutlined.d.ts +2 -0
- package/es/icons/TableOutlined.js +29 -0
- package/es/icons/TagOutlined.d.ts +2 -0
- package/es/icons/TagOutlined.js +31 -0
- package/es/icons/TimerOutlined.d.ts +2 -0
- package/es/icons/TimerOutlined.js +31 -0
- package/es/icons/UndoOutlined.d.ts +2 -0
- package/es/icons/UndoOutlined.js +30 -0
- package/es/icons/UnlockOutlined.d.ts +2 -0
- package/es/icons/UnlockOutlined.js +32 -0
- package/es/icons/UploadOutlined.d.ts +2 -0
- package/es/icons/UploadOutlined.js +32 -0
- package/es/icons/UserOutlined.d.ts +2 -0
- package/es/icons/UserOutlined.js +29 -0
- package/es/icons/VerticalAlignMiddleOutlined.d.ts +2 -0
- package/es/icons/VerticalAlignMiddleOutlined.js +32 -0
- package/es/icons/VerticalLeftOutlined.d.ts +2 -0
- package/es/icons/VerticalLeftOutlined.js +28 -0
- package/es/icons/VerticalRightOutlined.d.ts +2 -0
- package/es/icons/VerticalRightOutlined.js +28 -0
- package/es/icons/WarningOutlined.d.ts +2 -0
- package/es/icons/WarningOutlined.js +42 -0
- package/es/icons/ZoomInOutlined.d.ts +2 -0
- package/es/icons/ZoomInOutlined.js +31 -0
- package/es/icons/ZoomOutOutlined.d.ts +2 -0
- package/es/icons/ZoomOutOutlined.js +31 -0
- package/es/icons/index.d.ts +115 -0
- package/es/icons/index.js +232 -0
- package/es/utils/chart-theme-dark.d.ts +373 -0
- package/es/utils/chart-theme-dark.js +397 -0
- package/es/utils/chart-theme.d.ts +368 -0
- package/es/utils/chart-theme.js +392 -0
- package/es/utils/core.d.ts +168 -0
- package/es/utils/core.js +318 -0
- package/es/utils/hook.d.ts +113 -0
- package/es/utils/hook.js +264 -0
- package/es/utils/menu-util.d.ts +14 -0
- package/es/utils/menu-util.js +78 -0
- package/es/utils/message-box.d.ts +25 -0
- package/es/utils/message-box.js +98 -0
- package/es/utils/message.d.ts +66 -0
- package/es/utils/message.js +267 -0
- package/es/utils/resolvers.d.ts +18 -0
- package/es/utils/resolvers.js +50 -0
- package/es/utils/theme-util.d.ts +6 -0
- package/es/utils/theme-util.js +42 -0
- package/es/utils/validate.d.ts +182 -0
- package/es/utils/validate.js +197 -0
- package/package.json +184 -45
- package/typings/global.d.ts +64 -0
- package/dist/favicon.ico +0 -0
- package/dist/style.css +0 -1
- package/dist/yuang-framework-ui-pc.es.js +0 -78
- package/dist/yuang-framework-ui-pc.umd.js +0 -1
- package/lib/utils/vueRouterUtils.ts +0 -30
- package/src/App.vue +0 -31
- package/src/components/YuButton/index.vue +0 -35
- package/src/components/YuRow/index.vue +0 -16
- package/src/components/index.ts +0 -14
- package/src/main.ts +0 -42
- package/src/router/index.ts +0 -26
- package/src/shims-vue.d.ts +0 -10
- package/src/views/components/yu-button/index.vue +0 -15
- package/src/views/exception/403/components/icon-svg.vue +0 -276
- package/src/views/exception/403/index.vue +0 -25
- package/src/views/exception/404/components/icon-svg.vue +0 -288
- package/src/views/exception/404/index.vue +0 -25
- package/src/views/exception/500/components/icon-svg.vue +0 -331
- package/src/views/exception/500/index.vue +0 -25
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
/** echarts 主题 */
|
|
2
|
+
export declare const ChartTheme: {
|
|
3
|
+
color: string[];
|
|
4
|
+
backgroundColor: string;
|
|
5
|
+
textStyle: {};
|
|
6
|
+
title: {
|
|
7
|
+
textStyle: {
|
|
8
|
+
color: string;
|
|
9
|
+
};
|
|
10
|
+
subtextStyle: {
|
|
11
|
+
color: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
line: {
|
|
15
|
+
itemStyle: {
|
|
16
|
+
borderWidth: number;
|
|
17
|
+
};
|
|
18
|
+
lineStyle: {
|
|
19
|
+
width: string;
|
|
20
|
+
};
|
|
21
|
+
symbolSize: number;
|
|
22
|
+
symbol: string;
|
|
23
|
+
smooth: boolean;
|
|
24
|
+
};
|
|
25
|
+
radar: {
|
|
26
|
+
itemStyle: {
|
|
27
|
+
borderWidth: number;
|
|
28
|
+
};
|
|
29
|
+
lineStyle: {
|
|
30
|
+
width: string;
|
|
31
|
+
};
|
|
32
|
+
symbolSize: number;
|
|
33
|
+
symbol: string;
|
|
34
|
+
smooth: boolean;
|
|
35
|
+
};
|
|
36
|
+
bar: {
|
|
37
|
+
barCategoryGap: string;
|
|
38
|
+
itemStyle: {
|
|
39
|
+
barBorderWidth: string;
|
|
40
|
+
barBorderColor: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
pie: {
|
|
44
|
+
itemStyle: {
|
|
45
|
+
borderWidth: string;
|
|
46
|
+
borderColor: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
scatter: {
|
|
50
|
+
itemStyle: {
|
|
51
|
+
borderWidth: string;
|
|
52
|
+
borderColor: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
boxplot: {
|
|
56
|
+
itemStyle: {
|
|
57
|
+
borderWidth: string;
|
|
58
|
+
borderColor: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
parallel: {
|
|
62
|
+
itemStyle: {
|
|
63
|
+
borderWidth: string;
|
|
64
|
+
borderColor: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
sankey: {
|
|
68
|
+
itemStyle: {
|
|
69
|
+
borderWidth: string;
|
|
70
|
+
borderColor: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
funnel: {
|
|
74
|
+
itemStyle: {
|
|
75
|
+
borderWidth: string;
|
|
76
|
+
borderColor: string;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
gauge: {
|
|
80
|
+
itemStyle: {
|
|
81
|
+
borderWidth: string;
|
|
82
|
+
borderColor: string;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
candlestick: {
|
|
86
|
+
itemStyle: {
|
|
87
|
+
color: string;
|
|
88
|
+
color0: string;
|
|
89
|
+
borderColor: string;
|
|
90
|
+
borderColor0: string;
|
|
91
|
+
borderWidth: number;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
graph: {
|
|
95
|
+
itemStyle: {
|
|
96
|
+
borderWidth: string;
|
|
97
|
+
borderColor: string;
|
|
98
|
+
};
|
|
99
|
+
lineStyle: {
|
|
100
|
+
width: number;
|
|
101
|
+
color: string;
|
|
102
|
+
};
|
|
103
|
+
symbolSize: number;
|
|
104
|
+
symbol: string;
|
|
105
|
+
smooth: boolean;
|
|
106
|
+
color: string[];
|
|
107
|
+
label: {
|
|
108
|
+
color: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
map: {
|
|
112
|
+
itemStyle: {
|
|
113
|
+
areaColor: string;
|
|
114
|
+
borderColor: string;
|
|
115
|
+
borderWidth: number;
|
|
116
|
+
};
|
|
117
|
+
label: {
|
|
118
|
+
color: string;
|
|
119
|
+
textBorderColor: string;
|
|
120
|
+
textBorderWidth: number;
|
|
121
|
+
};
|
|
122
|
+
emphasis: {
|
|
123
|
+
itemStyle: {
|
|
124
|
+
areaColor: string;
|
|
125
|
+
borderColor: string;
|
|
126
|
+
borderWidth: number;
|
|
127
|
+
};
|
|
128
|
+
label: {
|
|
129
|
+
color: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
geo: {
|
|
134
|
+
itemStyle: {
|
|
135
|
+
areaColor: string;
|
|
136
|
+
borderColor: string;
|
|
137
|
+
borderWidth: number;
|
|
138
|
+
};
|
|
139
|
+
label: {
|
|
140
|
+
color: string;
|
|
141
|
+
textBorderColor: string;
|
|
142
|
+
textBorderWidth: number;
|
|
143
|
+
};
|
|
144
|
+
emphasis: {
|
|
145
|
+
itemStyle: {
|
|
146
|
+
areaColor: string;
|
|
147
|
+
borderColor: string;
|
|
148
|
+
borderWidth: number;
|
|
149
|
+
};
|
|
150
|
+
label: {
|
|
151
|
+
color: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
grid: {
|
|
156
|
+
top: number;
|
|
157
|
+
right: number;
|
|
158
|
+
left: number;
|
|
159
|
+
bottom: number;
|
|
160
|
+
};
|
|
161
|
+
categoryAxis: {
|
|
162
|
+
axisLine: {
|
|
163
|
+
show: boolean;
|
|
164
|
+
lineStyle: {
|
|
165
|
+
color: string;
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
axisTick: {
|
|
169
|
+
show: boolean;
|
|
170
|
+
lineStyle: {
|
|
171
|
+
color: string;
|
|
172
|
+
};
|
|
173
|
+
alignWithLabel: boolean;
|
|
174
|
+
};
|
|
175
|
+
axisLabel: {
|
|
176
|
+
show: boolean;
|
|
177
|
+
color: string;
|
|
178
|
+
};
|
|
179
|
+
splitLine: {
|
|
180
|
+
show: boolean;
|
|
181
|
+
lineStyle: {
|
|
182
|
+
type: string;
|
|
183
|
+
color: string[];
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
splitArea: {
|
|
187
|
+
show: boolean;
|
|
188
|
+
areaStyle: {
|
|
189
|
+
color: string[];
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
valueAxis: {
|
|
194
|
+
axisLine: {
|
|
195
|
+
show: boolean;
|
|
196
|
+
lineStyle: {
|
|
197
|
+
color: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
axisTick: {
|
|
201
|
+
show: boolean;
|
|
202
|
+
lineStyle: {
|
|
203
|
+
color: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
axisLabel: {
|
|
207
|
+
show: boolean;
|
|
208
|
+
color: string;
|
|
209
|
+
};
|
|
210
|
+
splitLine: {
|
|
211
|
+
show: boolean;
|
|
212
|
+
lineStyle: {
|
|
213
|
+
type: string;
|
|
214
|
+
color: string[];
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
splitArea: {
|
|
218
|
+
show: boolean;
|
|
219
|
+
areaStyle: {
|
|
220
|
+
color: string[];
|
|
221
|
+
};
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
logAxis: {
|
|
225
|
+
axisLine: {
|
|
226
|
+
show: boolean;
|
|
227
|
+
lineStyle: {
|
|
228
|
+
color: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
axisTick: {
|
|
232
|
+
show: boolean;
|
|
233
|
+
lineStyle: {
|
|
234
|
+
color: string;
|
|
235
|
+
};
|
|
236
|
+
};
|
|
237
|
+
axisLabel: {
|
|
238
|
+
show: boolean;
|
|
239
|
+
color: string;
|
|
240
|
+
};
|
|
241
|
+
splitLine: {
|
|
242
|
+
show: boolean;
|
|
243
|
+
lineStyle: {
|
|
244
|
+
color: string[];
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
splitArea: {
|
|
248
|
+
show: boolean;
|
|
249
|
+
areaStyle: {
|
|
250
|
+
color: string[];
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
timeAxis: {
|
|
255
|
+
axisLine: {
|
|
256
|
+
show: boolean;
|
|
257
|
+
lineStyle: {
|
|
258
|
+
color: string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
axisTick: {
|
|
262
|
+
show: boolean;
|
|
263
|
+
lineStyle: {
|
|
264
|
+
color: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
axisLabel: {
|
|
268
|
+
show: boolean;
|
|
269
|
+
color: string;
|
|
270
|
+
};
|
|
271
|
+
splitLine: {
|
|
272
|
+
show: boolean;
|
|
273
|
+
lineStyle: {
|
|
274
|
+
color: string[];
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
splitArea: {
|
|
278
|
+
show: boolean;
|
|
279
|
+
areaStyle: {
|
|
280
|
+
color: string[];
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
toolbox: {
|
|
285
|
+
iconStyle: {
|
|
286
|
+
borderColor: string;
|
|
287
|
+
};
|
|
288
|
+
emphasis: {
|
|
289
|
+
iconStyle: {
|
|
290
|
+
borderColor: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
legend: {
|
|
295
|
+
inactiveColor: string;
|
|
296
|
+
inactiveBorderColor: string;
|
|
297
|
+
textStyle: {
|
|
298
|
+
color: string;
|
|
299
|
+
lineHeight: number;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
tooltip: {
|
|
303
|
+
axisPointer: {
|
|
304
|
+
lineStyle: {
|
|
305
|
+
color: string;
|
|
306
|
+
width: string;
|
|
307
|
+
};
|
|
308
|
+
crossStyle: {
|
|
309
|
+
color: string;
|
|
310
|
+
width: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
timeline: {
|
|
315
|
+
lineStyle: {
|
|
316
|
+
color: string;
|
|
317
|
+
width: string;
|
|
318
|
+
};
|
|
319
|
+
itemStyle: {
|
|
320
|
+
color: string;
|
|
321
|
+
borderWidth: string;
|
|
322
|
+
};
|
|
323
|
+
controlStyle: {
|
|
324
|
+
color: string;
|
|
325
|
+
borderColor: string;
|
|
326
|
+
borderWidth: string;
|
|
327
|
+
};
|
|
328
|
+
checkpointStyle: {
|
|
329
|
+
color: string;
|
|
330
|
+
borderColor: string;
|
|
331
|
+
};
|
|
332
|
+
label: {
|
|
333
|
+
color: string;
|
|
334
|
+
};
|
|
335
|
+
emphasis: {
|
|
336
|
+
itemStyle: {
|
|
337
|
+
color: string;
|
|
338
|
+
};
|
|
339
|
+
controlStyle: {
|
|
340
|
+
color: string;
|
|
341
|
+
borderColor: string;
|
|
342
|
+
borderWidth: string;
|
|
343
|
+
};
|
|
344
|
+
label: {
|
|
345
|
+
color: string;
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
visualMap: {
|
|
350
|
+
itemHeight: number;
|
|
351
|
+
itemWidth: number;
|
|
352
|
+
color: string[];
|
|
353
|
+
textStyle: {
|
|
354
|
+
color: string;
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
dataZoom: {
|
|
358
|
+
handleSize: string;
|
|
359
|
+
textStyle: {
|
|
360
|
+
color: string;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
markPoint: {
|
|
364
|
+
label: {
|
|
365
|
+
color: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
};
|