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,255 @@
|
|
|
1
|
+
import type { PropType, ExtractPropTypes, InjectionKey } from 'vue';
|
|
2
|
+
import type { StyleValue } from '../ele-app/types';
|
|
3
|
+
import type { EleMenusProps, EleBreadcrumbProps, EleDropdownProps, EleBacktopProps } from '../ele-app/plus';
|
|
4
|
+
import type { ContextMenus } from '../ele-tabs/types';
|
|
5
|
+
import type { BreadcrumbSeparator as Separator } from '../ele-breadcrumb/types';
|
|
6
|
+
import type { Layout, SidebarLayout, HeaderStyle, SidebarStyle, TabStyle, TabBar, Maximized } from '../ele-admin-layout/types';
|
|
7
|
+
import type { MenuItem, TabItem, MenuItemTrigger, MenuI18n, BeforeClick, TabItemEventOption, BodySizeChangeOption, ProLayoutProvide } from './types';
|
|
8
|
+
type TextEllipsisTooltip = EleMenusProps['textEllipsisTooltip'];
|
|
9
|
+
type ProLayoutKey = InjectionKey<ProLayoutProvide>;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* 属性
|
|
13
|
+
*/
|
|
14
|
+
export const proLayoutProps = {
|
|
15
|
+
/** 高度 */
|
|
16
|
+
height: {
|
|
17
|
+
type: [String, Number],
|
|
18
|
+
default: null
|
|
19
|
+
},
|
|
20
|
+
/** 菜单数据 */
|
|
21
|
+
menus: Array as PropType<MenuItem[] | null>,
|
|
22
|
+
/** 页签数据 */
|
|
23
|
+
tabs: Array as PropType<TabItem[] | null>,
|
|
24
|
+
/** 是否折叠侧栏 */
|
|
25
|
+
collapse: Boolean,
|
|
26
|
+
/** 双侧栏一级是否紧凑风格 */
|
|
27
|
+
compact: Boolean,
|
|
28
|
+
/** 内容区是否最大化 */
|
|
29
|
+
maximized: [Boolean, String] as PropType<Maximized>,
|
|
30
|
+
/** 是否需要页签栏 */
|
|
31
|
+
tabBar: {
|
|
32
|
+
type: [Boolean, String] as PropType<TabBar>,
|
|
33
|
+
default: true
|
|
34
|
+
},
|
|
35
|
+
/** 是否需要面包屑导航 */
|
|
36
|
+
breadcrumb: {
|
|
37
|
+
type: [Boolean, Object] as PropType<boolean | EleBreadcrumbProps>,
|
|
38
|
+
default: true
|
|
39
|
+
},
|
|
40
|
+
/** 是否需要返回顶部 */
|
|
41
|
+
backTop: {
|
|
42
|
+
type: [Boolean, Object] as PropType<boolean | EleBacktopProps>,
|
|
43
|
+
default: true
|
|
44
|
+
},
|
|
45
|
+
/** 布局类型 */
|
|
46
|
+
layout: String as PropType<Layout>,
|
|
47
|
+
/** 侧栏布局类型 */
|
|
48
|
+
sidebarLayout: String as PropType<SidebarLayout>,
|
|
49
|
+
/** 顶栏风格 */
|
|
50
|
+
headerStyle: String as PropType<HeaderStyle>,
|
|
51
|
+
/** 侧栏风格 */
|
|
52
|
+
sidebarStyle: {
|
|
53
|
+
type: String as PropType<SidebarStyle>,
|
|
54
|
+
default: 'dark'
|
|
55
|
+
},
|
|
56
|
+
/** 页签风格 */
|
|
57
|
+
tabStyle: {
|
|
58
|
+
type: String as PropType<TabStyle>,
|
|
59
|
+
default: 'simple'
|
|
60
|
+
},
|
|
61
|
+
/** 是否固定顶栏 */
|
|
62
|
+
fixedHeader: {
|
|
63
|
+
type: Boolean,
|
|
64
|
+
default: true
|
|
65
|
+
},
|
|
66
|
+
/** 是否固定侧栏 */
|
|
67
|
+
fixedSidebar: {
|
|
68
|
+
type: Boolean,
|
|
69
|
+
default: true
|
|
70
|
+
},
|
|
71
|
+
/** 是否固定内容区 */
|
|
72
|
+
fixedBody: {
|
|
73
|
+
type: Boolean,
|
|
74
|
+
default: true
|
|
75
|
+
},
|
|
76
|
+
/** 图标是否置于顶栏 */
|
|
77
|
+
logoInHeader: Boolean,
|
|
78
|
+
/** 是否需要固定的主页页签 */
|
|
79
|
+
fixedHome: {
|
|
80
|
+
type: Boolean,
|
|
81
|
+
default: true
|
|
82
|
+
},
|
|
83
|
+
/** 主页路由地址 */
|
|
84
|
+
homePath: String,
|
|
85
|
+
/** 刷新路由地址 */
|
|
86
|
+
redirectPath: {
|
|
87
|
+
type: String,
|
|
88
|
+
default: '/redirect'
|
|
89
|
+
},
|
|
90
|
+
/** 内容区是否撑满 */
|
|
91
|
+
fluid: {
|
|
92
|
+
type: Boolean,
|
|
93
|
+
default: true
|
|
94
|
+
},
|
|
95
|
+
/** 返回键退出内容区最大化 */
|
|
96
|
+
compressOnEsc: Boolean,
|
|
97
|
+
/** 固定主体时切换路由自动滚到顶部 */
|
|
98
|
+
autoScrollTop: {
|
|
99
|
+
type: Boolean,
|
|
100
|
+
default: true
|
|
101
|
+
},
|
|
102
|
+
/** 顶栏菜单触发模式 */
|
|
103
|
+
navTrigger: String as PropType<MenuItemTrigger>,
|
|
104
|
+
/** 双侧栏一级菜单触发模式 */
|
|
105
|
+
boxTrigger: String as PropType<MenuItemTrigger>,
|
|
106
|
+
/** 侧栏菜单触发模式 */
|
|
107
|
+
itemTrigger: String as PropType<MenuItemTrigger>,
|
|
108
|
+
/** hover模式的菜单切换超时 */
|
|
109
|
+
menuHoverTimeout: {
|
|
110
|
+
type: Number,
|
|
111
|
+
default: 600
|
|
112
|
+
},
|
|
113
|
+
/** 菜单点击事件前钩子 */
|
|
114
|
+
beforeClick: Function as PropType<BeforeClick>,
|
|
115
|
+
/** 是否支持内嵌缓存 */
|
|
116
|
+
keepAlive: Boolean,
|
|
117
|
+
/** 内嵌切换动画 */
|
|
118
|
+
transitionName: String,
|
|
119
|
+
/** 内嵌进入动画延迟时间 */
|
|
120
|
+
transitionDelay: {
|
|
121
|
+
type: Number,
|
|
122
|
+
default: 250
|
|
123
|
+
},
|
|
124
|
+
/** 是否开启响应式 */
|
|
125
|
+
responsive: {
|
|
126
|
+
type: Boolean,
|
|
127
|
+
default: true
|
|
128
|
+
},
|
|
129
|
+
/** 国际化语言 */
|
|
130
|
+
locale: String,
|
|
131
|
+
/** 菜单标题国际化方法 */
|
|
132
|
+
i18n: Function as PropType<MenuI18n>,
|
|
133
|
+
/** 是否支持页签右键菜单 */
|
|
134
|
+
tabContextMenu: [Boolean, Object] as PropType<boolean | EleDropdownProps>,
|
|
135
|
+
/** 右键菜单 */
|
|
136
|
+
tabContextMenus: [Array, Function] as PropType<ContextMenus>,
|
|
137
|
+
/** 是否支持页签拖动排序 */
|
|
138
|
+
tabSortable: Boolean,
|
|
139
|
+
/** 顶栏菜单标题插槽名称 */
|
|
140
|
+
headerTitleSlot: {
|
|
141
|
+
type: String,
|
|
142
|
+
default: 'title'
|
|
143
|
+
},
|
|
144
|
+
/** 顶栏菜单图标插槽名称 */
|
|
145
|
+
headerIconSlot: {
|
|
146
|
+
type: String,
|
|
147
|
+
default: 'icon'
|
|
148
|
+
},
|
|
149
|
+
/** 侧栏菜单标题插槽名称 */
|
|
150
|
+
sidebarTitleSlot: {
|
|
151
|
+
type: String,
|
|
152
|
+
default: 'title'
|
|
153
|
+
},
|
|
154
|
+
/** 侧栏菜单图标插槽名称 */
|
|
155
|
+
sidebarIconSlot: {
|
|
156
|
+
type: String,
|
|
157
|
+
default: 'icon'
|
|
158
|
+
},
|
|
159
|
+
/** 双侧栏一级菜单标题插槽名称 */
|
|
160
|
+
sideboxTitleSlot: {
|
|
161
|
+
type: String,
|
|
162
|
+
default: 'title'
|
|
163
|
+
},
|
|
164
|
+
/** 双侧栏一级菜单图标插槽名称 */
|
|
165
|
+
sideboxIconSlot: {
|
|
166
|
+
type: String,
|
|
167
|
+
default: 'icon'
|
|
168
|
+
},
|
|
169
|
+
/** 顶栏样式 */
|
|
170
|
+
headerCustomStyle: Object as PropType<StyleValue>,
|
|
171
|
+
/** 侧栏样式 */
|
|
172
|
+
sidebarCustomStyle: Object as PropType<StyleValue>,
|
|
173
|
+
/** 双侧栏一级样式 */
|
|
174
|
+
sideboxCustomStyle: Object as PropType<StyleValue>,
|
|
175
|
+
/** 页签栏样式 */
|
|
176
|
+
tabsCustomStyle: Object as PropType<StyleValue>,
|
|
177
|
+
/** 内容区样式 */
|
|
178
|
+
contentCustomStyle: Object as PropType<StyleValue>,
|
|
179
|
+
/** logo样式 */
|
|
180
|
+
logoStyle: Object as PropType<StyleValue>,
|
|
181
|
+
/** logo文字样式 */
|
|
182
|
+
logoTitleStyle: Object as PropType<StyleValue>,
|
|
183
|
+
/** 顶栏菜单样式 */
|
|
184
|
+
headerMenusStyle: Object as PropType<StyleValue>,
|
|
185
|
+
/** 侧栏菜单样式 */
|
|
186
|
+
sidebarMenusStyle: Object as PropType<StyleValue>,
|
|
187
|
+
/** 双侧栏一级菜单样式 */
|
|
188
|
+
sideboxMenusStyle: Object as PropType<StyleValue>,
|
|
189
|
+
/** 顶栏菜单属性 */
|
|
190
|
+
headerMenuProps: Object as PropType<EleMenusProps>,
|
|
191
|
+
/** 侧栏菜单属性 */
|
|
192
|
+
sidebarMenuProps: Object as PropType<EleMenusProps>,
|
|
193
|
+
/** 双侧栏一级菜单属性 */
|
|
194
|
+
sideboxMenuProps: Object as PropType<EleMenusProps>,
|
|
195
|
+
/** 顶栏菜单是否省略多余的子项 */
|
|
196
|
+
ellipsis: {
|
|
197
|
+
type: Boolean,
|
|
198
|
+
default: true
|
|
199
|
+
},
|
|
200
|
+
/** 顶栏菜单省略项的属性 */
|
|
201
|
+
ellipsisProps: Object as PropType<EleMenusProps['ellipsisProps']>,
|
|
202
|
+
/** 顶栏子菜单触发方式 */
|
|
203
|
+
menuTrigger: String as PropType<EleMenusProps['menuTrigger']>,
|
|
204
|
+
/** 侧栏默认展开的菜单 */
|
|
205
|
+
sidebarOpeneds: Array as PropType<string[]>,
|
|
206
|
+
/** 侧栏是否只保持一个子菜单展开 */
|
|
207
|
+
uniqueOpened: {
|
|
208
|
+
type: Boolean,
|
|
209
|
+
default: true
|
|
210
|
+
},
|
|
211
|
+
/** 侧栏菜单是否彩色图标 */
|
|
212
|
+
colorfulIcon: Boolean,
|
|
213
|
+
/** 菜单 tooltip 主题 */
|
|
214
|
+
tooltipEffect: String as PropType<EleMenusProps['popperEffect']>,
|
|
215
|
+
/** 是否开启菜单文本溢出提示 */
|
|
216
|
+
menuTextEllipsisTooltip: [Boolean, Object] as PropType<TextEllipsisTooltip>,
|
|
217
|
+
/** 内容区最大时不带页签栏 */
|
|
218
|
+
expanded: Boolean,
|
|
219
|
+
/** 面包屑导航分隔符 */
|
|
220
|
+
breadcrumbSeparator: [String, Object, Function] as PropType<Separator>,
|
|
221
|
+
/** 返回顶部可见的滚动高度 */
|
|
222
|
+
backTopVisibilityHeight: Number,
|
|
223
|
+
/** 返回顶部的右边距 */
|
|
224
|
+
backTopRight: Number,
|
|
225
|
+
/** 返回顶部的下边距 */
|
|
226
|
+
backTopBottom: Number,
|
|
227
|
+
/** 返回顶部的目标选择器 */
|
|
228
|
+
backTopTarget: String
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
export type ProLayoutProps = ExtractPropTypes<typeof proLayoutProps>;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* 事件
|
|
235
|
+
*/
|
|
236
|
+
export const proLayoutEmits = {
|
|
237
|
+
'update:collapse': (_collapse: boolean) => true,
|
|
238
|
+
'update:maximized': (_maximized: boolean) => true,
|
|
239
|
+
tabAdd: (_data: TabItem) => true,
|
|
240
|
+
tabClick: (_option: TabItemEventOption) => true,
|
|
241
|
+
tabRemove: (_option: TabItemEventOption) => true,
|
|
242
|
+
tabContextMenu: (_option: TabItemEventOption) => true,
|
|
243
|
+
tabSortChange: (_data: TabItem[]) => true,
|
|
244
|
+
logoClick: (_isHome: boolean, _e: MouseEvent) => true,
|
|
245
|
+
headMenuOpen: (_index: string, _indexPath: string[]) => true,
|
|
246
|
+
headMenuClose: (_index: string, _indexPath: string[]) => true,
|
|
247
|
+
sideMenuOpen: (_index: string, _indexPath: string[]) => true,
|
|
248
|
+
sideMenuClose: (_index: string, _indexPath: string[]) => true,
|
|
249
|
+
bodySizeChange: (_option: BodySizeChangeOption) => true
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* 共享数据key
|
|
254
|
+
*/
|
|
255
|
+
export const PRO_LAYOUT_KEY = Symbol('proLayout') as ProLayoutKey;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@use '../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../style/util.scss' as *;
|
|
3
|
+
|
|
4
|
+
.ele-pro-layout {
|
|
5
|
+
/* logo */
|
|
6
|
+
& > .ele-admin-side {
|
|
7
|
+
& > .ele-admin-sidebox > .ele-admin-logo > img + h1 {
|
|
8
|
+
display: none;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/* 面包屑导航 */
|
|
13
|
+
&.is-mobile > .ele-admin-main > .ele-admin-header > .ele-admin-breadcrumb {
|
|
14
|
+
display: none;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* iframe */
|
|
19
|
+
.ele-admin-iframe-wrap {
|
|
20
|
+
flex-shrink: 0;
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: 0;
|
|
23
|
+
left: 0;
|
|
24
|
+
right: 0;
|
|
25
|
+
bottom: 0;
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: 100%;
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
pointer-events: none;
|
|
31
|
+
overflow: hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.ele-admin-iframe {
|
|
35
|
+
flex-shrink: 0;
|
|
36
|
+
width: 100%;
|
|
37
|
+
height: 100%;
|
|
38
|
+
border: none;
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
pointer-events: auto;
|
|
41
|
+
}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import type { EleMenuItemProps } from '../ele-app/plus';
|
|
2
|
+
export type { Layout, SidebarLayout, HeaderStyle, SidebarStyle, TabStyle, TabBar } from '../ele-admin-layout/types';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* 菜单元数据
|
|
6
|
+
*/
|
|
7
|
+
export interface MenuMeta extends Record<string, any> {
|
|
8
|
+
/** 菜单标题 */
|
|
9
|
+
title?: string;
|
|
10
|
+
/** 菜单图标 */
|
|
11
|
+
icon?: any;
|
|
12
|
+
/** 菜单是否隐藏 */
|
|
13
|
+
hide?: boolean;
|
|
14
|
+
/** 选中其它菜单 */
|
|
15
|
+
active?: string;
|
|
16
|
+
/** 是否隐藏页脚 */
|
|
17
|
+
hideFooter?: boolean;
|
|
18
|
+
/** 是否隐藏顶栏 */
|
|
19
|
+
hideHeader?: boolean;
|
|
20
|
+
/** 是否隐藏侧栏 */
|
|
21
|
+
hideSidebar?: boolean;
|
|
22
|
+
/** 是否隐藏双侧栏一级 */
|
|
23
|
+
hideSidebox?: boolean;
|
|
24
|
+
/** 是否隐藏页签栏 */
|
|
25
|
+
hideTabs?: boolean;
|
|
26
|
+
/** 页签是否可关闭 */
|
|
27
|
+
closable?: boolean;
|
|
28
|
+
/** 页签不同参数是否合并 */
|
|
29
|
+
tabUnique?: boolean;
|
|
30
|
+
/** 页签是否缓存 */
|
|
31
|
+
keepAlive?: boolean;
|
|
32
|
+
/** 是否在面包屑中显示 */
|
|
33
|
+
breadcrumb?: boolean;
|
|
34
|
+
/** 菜单组件其它属性 */
|
|
35
|
+
props?: Record<string, any>;
|
|
36
|
+
/** 是否需要外层布局 */
|
|
37
|
+
layout?: boolean;
|
|
38
|
+
/** 路由地址 */
|
|
39
|
+
routePath?: string;
|
|
40
|
+
/** 内嵌地址, 内部属性 */
|
|
41
|
+
iframe?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 菜单数据
|
|
46
|
+
*/
|
|
47
|
+
export interface MenuItem {
|
|
48
|
+
/** 路由名称 */
|
|
49
|
+
name?: string;
|
|
50
|
+
/** 菜单地址 */
|
|
51
|
+
path: string;
|
|
52
|
+
/** 路由组件 */
|
|
53
|
+
component?: string;
|
|
54
|
+
/** 路由重定向 */
|
|
55
|
+
redirect?: string;
|
|
56
|
+
/** 路由元数据 */
|
|
57
|
+
meta?: MenuMeta;
|
|
58
|
+
/** 子路由 */
|
|
59
|
+
children?: Array<MenuItem>;
|
|
60
|
+
/** 临时子路由数据, 内部属性 */
|
|
61
|
+
tempChildren?: Array<MenuItem>;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* 页签数据
|
|
66
|
+
*/
|
|
67
|
+
export interface TabItem {
|
|
68
|
+
/** 页签标题 */
|
|
69
|
+
title?: string;
|
|
70
|
+
/** 页签标识 */
|
|
71
|
+
key?: string;
|
|
72
|
+
/** 路由地址 */
|
|
73
|
+
path?: string;
|
|
74
|
+
/** 路由完整地址 */
|
|
75
|
+
fullPath?: string;
|
|
76
|
+
/** 是否可关闭 */
|
|
77
|
+
closable?: boolean;
|
|
78
|
+
/** 是否是主页 */
|
|
79
|
+
home?: boolean;
|
|
80
|
+
/** 组件名称 */
|
|
81
|
+
components?: string[];
|
|
82
|
+
/** 是否为刷新状态 */
|
|
83
|
+
refresh?: boolean;
|
|
84
|
+
/** 路由元数据 */
|
|
85
|
+
meta?: MenuMeta;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* 面包屑导航数据
|
|
90
|
+
*/
|
|
91
|
+
export interface LevelItem {
|
|
92
|
+
/** 标题 */
|
|
93
|
+
title: string;
|
|
94
|
+
/** 地址 */
|
|
95
|
+
path: string;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* 菜单标题国际化方法参数
|
|
100
|
+
*/
|
|
101
|
+
export interface MenuI18nOption {
|
|
102
|
+
/** 当前语言 */
|
|
103
|
+
locale?: string;
|
|
104
|
+
/** 菜单地址 */
|
|
105
|
+
path: string;
|
|
106
|
+
/** 菜单数据 */
|
|
107
|
+
menu?: MenuItem;
|
|
108
|
+
/** 页签数据 */
|
|
109
|
+
tab?: TabItem;
|
|
110
|
+
/** 面包屑数据 */
|
|
111
|
+
level?: LevelItem;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* 菜单标题国际化方法
|
|
116
|
+
*/
|
|
117
|
+
export type MenuI18n = (option: MenuI18nOption) => string | undefined | null | void;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* 页签事件参数
|
|
121
|
+
*/
|
|
122
|
+
export interface TabItemEventOption {
|
|
123
|
+
/** 页签标识 */
|
|
124
|
+
key?: string;
|
|
125
|
+
/** 页签数据 */
|
|
126
|
+
item?: TabItem;
|
|
127
|
+
/** 当前选中页签的标识 */
|
|
128
|
+
active?: string;
|
|
129
|
+
/** 事件标识 */
|
|
130
|
+
command?: string;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* 获取路由对应菜单的结果
|
|
135
|
+
*/
|
|
136
|
+
export interface MatchedResult {
|
|
137
|
+
/** 选中地址 */
|
|
138
|
+
active: string;
|
|
139
|
+
/** 菜单标题 */
|
|
140
|
+
title?: string;
|
|
141
|
+
/** 匹配的菜单数据 */
|
|
142
|
+
matched?: MenuItem[];
|
|
143
|
+
/** 是否选中非本身 */
|
|
144
|
+
activeOther?: boolean;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* 内容区尺寸改变事件参数
|
|
149
|
+
*/
|
|
150
|
+
export interface BodySizeChangeOption {
|
|
151
|
+
/** 内容区宽度 */
|
|
152
|
+
width?: number;
|
|
153
|
+
/** 内容区高度 */
|
|
154
|
+
height?: number;
|
|
155
|
+
/** 是否是移动端小屏幕 */
|
|
156
|
+
mobile?: boolean;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* 混合导航菜单切换模式
|
|
161
|
+
*/
|
|
162
|
+
export type MenuItemTrigger = 'route' | 'click' | 'hover';
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* 子菜单项点击前钩子
|
|
166
|
+
*/
|
|
167
|
+
export type BeforeClick = (item: EleMenuItemProps, e: MouseEvent) => boolean;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* 内嵌数据
|
|
171
|
+
*/
|
|
172
|
+
export interface IframeItem {
|
|
173
|
+
/** id */
|
|
174
|
+
id: string;
|
|
175
|
+
/** 地址 */
|
|
176
|
+
src: string;
|
|
177
|
+
/** 是否是刷新状态 */
|
|
178
|
+
refresh?: boolean;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* 状态数据
|
|
183
|
+
*/
|
|
184
|
+
export interface LayoutState {
|
|
185
|
+
navActive?: string;
|
|
186
|
+
sideActive?: string;
|
|
187
|
+
boxActive?: string;
|
|
188
|
+
navData: MenuItem[];
|
|
189
|
+
sideData: MenuItem[];
|
|
190
|
+
boxData: MenuItem[];
|
|
191
|
+
isHover?: boolean;
|
|
192
|
+
contentWidth?: number;
|
|
193
|
+
contentHeight?: number;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* 共享数据
|
|
198
|
+
*/
|
|
199
|
+
export interface ProLayoutProvide {
|
|
200
|
+
/** 是否支持内嵌缓存 */
|
|
201
|
+
keepAlive?: boolean;
|
|
202
|
+
/** 是否开启响应式 */
|
|
203
|
+
responsive?: boolean;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 带响应式开关的组件属性
|
|
208
|
+
*/
|
|
209
|
+
export interface ResponsiveProps extends Record<keyof any, any> {
|
|
210
|
+
/** 是否开启响应式 */
|
|
211
|
+
responsive?: boolean;
|
|
212
|
+
}
|