yuang-framework-ui-pc 1.0.19 → 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 -44
- 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/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/utils/vueRouterUtils.ts +0 -30
- 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,148 @@
|
|
|
1
|
+
@use '../../../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../../../style/util.scss' as *;
|
|
3
|
+
@use './css-var.scss' as *;
|
|
4
|
+
|
|
5
|
+
@include set-el-message-box-var($ele);
|
|
6
|
+
|
|
7
|
+
/* MessageBox */
|
|
8
|
+
.el-overlay-message-box .el-message-box {
|
|
9
|
+
padding: 0;
|
|
10
|
+
max-width: eleVar('message-box', 'width');
|
|
11
|
+
border-radius: eleVar('message-box', 'radius');
|
|
12
|
+
border: none;
|
|
13
|
+
|
|
14
|
+
.el-message-box__header {
|
|
15
|
+
padding: eleVar('message-box', 'header-padding');
|
|
16
|
+
border-bottom: eleVar('message-box', 'header-border');
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.el-message-box__title {
|
|
23
|
+
flex: 1;
|
|
24
|
+
color: eleVar('message-box', 'header-color');
|
|
25
|
+
font-size: eleVar('message-box', 'header-font-size');
|
|
26
|
+
font-weight: eleVar('message-box', 'header-font-weight');
|
|
27
|
+
line-height: eleVar('message-box', 'header-line-height');
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.el-message-box__headerbtn {
|
|
31
|
+
flex-shrink: 0;
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
width: eleVar('message-box', 'icon-size');
|
|
36
|
+
height: eleVar('message-box', 'icon-size');
|
|
37
|
+
line-height: eleVar('message-box', 'icon-size');
|
|
38
|
+
color: eleVar('message-box', 'icon-color');
|
|
39
|
+
font-size: eleVar('message-box', 'icon-font-size');
|
|
40
|
+
border-radius: eleVar('message-box', 'icon-radius');
|
|
41
|
+
transition: (color $transition-base, background-color $transition-base);
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
position: static;
|
|
44
|
+
right: auto;
|
|
45
|
+
top: auto;
|
|
46
|
+
|
|
47
|
+
.el-message-box__close {
|
|
48
|
+
color: inherit;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:hover {
|
|
52
|
+
color: eleVar('message-box', 'icon-hover-color');
|
|
53
|
+
background: eleVar('message-box', 'icon-hover-bg');
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.el-message-box__content {
|
|
58
|
+
padding: eleVar('message-box', 'body-padding');
|
|
59
|
+
box-sizing: border-box;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.el-message-box__status {
|
|
63
|
+
flex-shrink: 0;
|
|
64
|
+
font-size: eleVar('message-box', 'status-size');
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.el-message-box__btns {
|
|
68
|
+
padding: eleVar('message-box', 'footer-padding');
|
|
69
|
+
border-top: eleVar('message-box', 'footer-border');
|
|
70
|
+
box-sizing: border-box;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.el-message-box__input {
|
|
74
|
+
padding: 0;
|
|
75
|
+
margin: eleVar('message-box', 'input-margin');
|
|
76
|
+
position: relative;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.el-message-box__errormsg {
|
|
80
|
+
line-height: 18px;
|
|
81
|
+
position: absolute;
|
|
82
|
+
top: 100%;
|
|
83
|
+
left: 0;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.el-message-box .el-message-box__status.el-message-box-icon--info {
|
|
88
|
+
color: elVar('color-primary');
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.el-message-box__message {
|
|
92
|
+
word-break: break-all;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
body .el-overlay.is-message-box > .el-overlay-message-box {
|
|
96
|
+
overflow-x: hidden;
|
|
97
|
+
scrollbar-width: none;
|
|
98
|
+
|
|
99
|
+
&::-webkit-scrollbar {
|
|
100
|
+
display: none;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* useMessageBox */
|
|
105
|
+
.ele-message-box > .el-message-box__content > .el-message-box__container {
|
|
106
|
+
gap: 0;
|
|
107
|
+
|
|
108
|
+
& > .el-message-box__status {
|
|
109
|
+
width: auto;
|
|
110
|
+
height: auto;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.ele-message-box-icon {
|
|
115
|
+
width: 1em;
|
|
116
|
+
height: 1em;
|
|
117
|
+
display: flex;
|
|
118
|
+
align-items: center;
|
|
119
|
+
justify-content: center;
|
|
120
|
+
margin-right: 12px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/* 容器 */
|
|
124
|
+
.ele-message-box-wrapper {
|
|
125
|
+
position: absolute;
|
|
126
|
+
top: 0;
|
|
127
|
+
left: 0;
|
|
128
|
+
right: 0;
|
|
129
|
+
bottom: 0;
|
|
130
|
+
width: 100%;
|
|
131
|
+
height: 100%;
|
|
132
|
+
box-sizing: border-box;
|
|
133
|
+
pointer-events: none;
|
|
134
|
+
overflow: hidden;
|
|
135
|
+
|
|
136
|
+
& > .el-overlay.is-message-box {
|
|
137
|
+
pointer-events: auto;
|
|
138
|
+
position: absolute;
|
|
139
|
+
|
|
140
|
+
& > .el-overlay-message-box {
|
|
141
|
+
position: absolute;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&.is-hide {
|
|
146
|
+
display: none;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
@use '../../../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../../../style/util.scss' as *;
|
|
3
|
+
@use './css-var.scss' as *;
|
|
4
|
+
|
|
5
|
+
@include set-el-notification-var($ele);
|
|
6
|
+
|
|
7
|
+
/* Notification */
|
|
8
|
+
body .el-notification {
|
|
9
|
+
width: eleVar('notification', 'width');
|
|
10
|
+
max-width: calc(100vw - 48px);
|
|
11
|
+
padding: eleVar('notification', 'padding');
|
|
12
|
+
border: eleVar('notification', 'border');
|
|
13
|
+
border-radius: eleVar('notification', 'radius');
|
|
14
|
+
box-shadow: eleVar('notification', 'shadow');
|
|
15
|
+
|
|
16
|
+
.el-notification__icon {
|
|
17
|
+
width: eleVar('notification', 'icon-size');
|
|
18
|
+
height: eleVar('notification', 'icon-size');
|
|
19
|
+
font-size: eleVar('notification', 'icon-size');
|
|
20
|
+
margin: eleVar('notification', 'icon-margin');
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.el-notification .el-notification__icon.el-notification--info {
|
|
25
|
+
color: elVar('color-primary');
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.el-notification .el-notification__group {
|
|
29
|
+
margin: 0;
|
|
30
|
+
|
|
31
|
+
.el-notification__closeBtn {
|
|
32
|
+
top: 0;
|
|
33
|
+
right: 0;
|
|
34
|
+
width: eleVar('notification', 'close-size');
|
|
35
|
+
height: eleVar('notification', 'close-size');
|
|
36
|
+
line-height: eleVar('notification', 'close-size');
|
|
37
|
+
color: eleVar('notification', 'close-color');
|
|
38
|
+
font-size: eleVar('notification', 'close-font-size');
|
|
39
|
+
margin: eleVar('notification', 'close-margin');
|
|
40
|
+
border-radius: eleVar('notification', 'close-radius');
|
|
41
|
+
transition: (color $transition-base, background-color $transition-base);
|
|
42
|
+
|
|
43
|
+
&:hover {
|
|
44
|
+
color: eleVar('notification', 'close-hover-color');
|
|
45
|
+
background: eleVar('notification', 'close-hover-bg');
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.el-notification__title {
|
|
50
|
+
color: eleVar('notification', 'title-color');
|
|
51
|
+
font-size: eleVar('notification', 'title-size');
|
|
52
|
+
font-weight: eleVar('notification', 'title-font-weight');
|
|
53
|
+
line-height: eleVar('notification', 'title-line-height');
|
|
54
|
+
padding: eleVar('notification', 'title-padding');
|
|
55
|
+
box-sizing: border-box;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.el-notification__content {
|
|
59
|
+
color: eleVar('notification', 'color');
|
|
60
|
+
font-size: eleVar('notification', 'size');
|
|
61
|
+
margin-top: eleVar('notification', 'body-margin');
|
|
62
|
+
line-height: inherit;
|
|
63
|
+
text-align: left;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
@use '../../../../style/util.scss' as *;
|
|
2
|
+
|
|
3
|
+
/* Popper 主题变量 */
|
|
4
|
+
@mixin set-el-popper-var($var) {
|
|
5
|
+
// Popper
|
|
6
|
+
.el-popper {
|
|
7
|
+
@include set-ele-var('popper', $var);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// Tooltip
|
|
11
|
+
.el-popper.is-dark {
|
|
12
|
+
@include set-ele-var('tooltip', $var);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./index.scss";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@use '../../../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../../../style/util.scss' as *;
|
|
3
|
+
@use '../../../../ele-tooltip/style/css-var.scss' as *;
|
|
4
|
+
@use './css-var.scss' as *;
|
|
5
|
+
|
|
6
|
+
@include set-el-popper-var($ele);
|
|
7
|
+
|
|
8
|
+
/* 气泡通用 */
|
|
9
|
+
@include popper-style('body .el-popper');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./index.scss";
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
@use '../../../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../../../style/util.scss' as *;
|
|
3
|
+
@use './css-var.scss' as *;
|
|
4
|
+
|
|
5
|
+
@include set-el-radio-var($ele);
|
|
6
|
+
|
|
7
|
+
/* Radio */
|
|
8
|
+
body .el-radio {
|
|
9
|
+
.el-radio__label {
|
|
10
|
+
color: eleVar('radio', 'color');
|
|
11
|
+
font-size: eleVar('radio', 'font-size');
|
|
12
|
+
line-height: eleVar('radio', 'size');
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.el-radio__inner {
|
|
16
|
+
width: eleVar('radio', 'size');
|
|
17
|
+
height: eleVar('radio', 'size');
|
|
18
|
+
background: eleVar('radio', 'bg');
|
|
19
|
+
border: eleVar('radio', 'border');
|
|
20
|
+
border-radius: eleVar('radio', 'radius');
|
|
21
|
+
transition: (
|
|
22
|
+
border-color $transition-base,
|
|
23
|
+
background-color $transition-base
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
&::after {
|
|
27
|
+
$size: eleVar('radio', 'dot-size');
|
|
28
|
+
width: $size;
|
|
29
|
+
height: $size;
|
|
30
|
+
margin-top: calc(0px - (#{$size} / 2));
|
|
31
|
+
margin-left: calc(0px - (#{$size} / 2));
|
|
32
|
+
background: eleVar('radio', 'dot-color');
|
|
33
|
+
border-radius: eleVar('radio', 'dot-radius');
|
|
34
|
+
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
transform: scale(0);
|
|
37
|
+
opacity: 0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&:hover .el-radio__inner {
|
|
42
|
+
border: eleVar('radio', 'hover-border');
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.is-checked {
|
|
46
|
+
.el-radio__label {
|
|
47
|
+
color: eleVar('radio', 'active-color');
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.el-radio__inner {
|
|
51
|
+
background: eleVar('radio', 'active-bg');
|
|
52
|
+
border: eleVar('radio', 'active-border');
|
|
53
|
+
|
|
54
|
+
&::after {
|
|
55
|
+
transform: scale(1);
|
|
56
|
+
opacity: 1;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&.is-disabled {
|
|
62
|
+
span.el-radio__label {
|
|
63
|
+
color: eleVar('radio', 'disabled-color');
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.el-radio__input .el-radio__inner {
|
|
67
|
+
background: eleVar('radio', 'disabled-bg');
|
|
68
|
+
border: eleVar('radio', 'disabled-border');
|
|
69
|
+
|
|
70
|
+
&::after {
|
|
71
|
+
background: eleVar('radio', 'disabled-dot-color');
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.el-radio--small {
|
|
77
|
+
.el-radio__label {
|
|
78
|
+
font-size: eleVar('radio', 'sm-font-size');
|
|
79
|
+
line-height: eleVar('radio', 'sm-size');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.el-radio__inner {
|
|
83
|
+
width: eleVar('radio', 'sm-size');
|
|
84
|
+
height: eleVar('radio', 'sm-size');
|
|
85
|
+
border-radius: eleVar('radio', 'sm-radius');
|
|
86
|
+
|
|
87
|
+
&::after {
|
|
88
|
+
$size: eleVar('radio', 'sm-dot-size');
|
|
89
|
+
width: $size;
|
|
90
|
+
height: $size;
|
|
91
|
+
margin-top: calc(0px - (#{$size} / 2));
|
|
92
|
+
margin-left: calc(0px - (#{$size} / 2));
|
|
93
|
+
border-radius: eleVar('radio', 'sm-dot-radius');
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&.el-radio--large {
|
|
99
|
+
.el-radio__label {
|
|
100
|
+
font-size: eleVar('radio', 'lg-font-size');
|
|
101
|
+
line-height: eleVar('radio', 'lg-size');
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.el-radio__inner {
|
|
105
|
+
width: eleVar('radio', 'lg-size');
|
|
106
|
+
height: eleVar('radio', 'lg-size');
|
|
107
|
+
border-radius: eleVar('radio', 'lg-radius');
|
|
108
|
+
|
|
109
|
+
&::after {
|
|
110
|
+
$size: eleVar('radio', 'lg-dot-size');
|
|
111
|
+
width: $size;
|
|
112
|
+
height: $size;
|
|
113
|
+
margin-top: calc(0px - (#{$size} / 2));
|
|
114
|
+
margin-left: calc(0px - (#{$size} / 2));
|
|
115
|
+
border-radius: eleVar('radio', 'lg-dot-radius');
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
body .el-radio,
|
|
122
|
+
body .el-radio-group > .el-radio {
|
|
123
|
+
margin-right: eleVar('radio', 'space');
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.el-radio-group > .el-radio:last-child {
|
|
127
|
+
margin-right: 0;
|
|
128
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./index.scss";
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
@use '../../../../style/themes/default.scss' as *;
|
|
2
|
+
@use '../../../../style/util.scss' as *;
|
|
3
|
+
@use './css-var.scss' as *;
|
|
4
|
+
|
|
5
|
+
@include set-el-select-var($ele);
|
|
6
|
+
|
|
7
|
+
/* Select */
|
|
8
|
+
.el-select__popper {
|
|
9
|
+
.el-select-dropdown {
|
|
10
|
+
background: inherit;
|
|
11
|
+
border-radius: inherit;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.el-select-dropdown__list {
|
|
15
|
+
margin: 0 !important;
|
|
16
|
+
padding: eleVar('select', 'padding') !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.el-select-dropdown__item {
|
|
20
|
+
height: eleVar('select', 'item-height');
|
|
21
|
+
line-height: eleVar('select', 'item-height');
|
|
22
|
+
padding: eleVar('select', 'item-padding');
|
|
23
|
+
border-radius: eleVar('select', 'item-radius');
|
|
24
|
+
transition: (color $transition-base, background-color $transition-base);
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
|
|
29
|
+
& > span {
|
|
30
|
+
flex: 1;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
& + .el-select-dropdown__item {
|
|
34
|
+
margin-top: eleVar('select', 'item-margin');
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&.selected,
|
|
38
|
+
&.is-selected {
|
|
39
|
+
background: eleVar('select', 'item-active-bg');
|
|
40
|
+
font-weight: eleVar('select', 'item-active-font-weight');
|
|
41
|
+
|
|
42
|
+
&:hover,
|
|
43
|
+
&.hover,
|
|
44
|
+
&.is-hovering {
|
|
45
|
+
background: eleVar('select', 'item-active-hover-bg');
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.el-select-dropdown__list .el-select-dropdown__item > span {
|
|
51
|
+
font-size: inherit;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected,
|
|
55
|
+
.el-select-dropdown.is-multiple .el-select-dropdown__item.is-selected {
|
|
56
|
+
background: eleVar('select', 'item-active-bg');
|
|
57
|
+
|
|
58
|
+
&:hover,
|
|
59
|
+
&.hover,
|
|
60
|
+
&.is-hovering {
|
|
61
|
+
background: eleVar('select', 'item-active-hover-bg');
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&::after {
|
|
65
|
+
width: eleVar('select', 'icon-size');
|
|
66
|
+
height: eleVar('select', 'icon-size');
|
|
67
|
+
margin: eleVar('select', 'icon-margin');
|
|
68
|
+
display: inline-block;
|
|
69
|
+
position: static;
|
|
70
|
+
top: auto;
|
|
71
|
+
right: auto;
|
|
72
|
+
transform: none;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.el-select-group__title {
|
|
77
|
+
padding: eleVar('select', 'item-padding');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.el-select-group__wrap:not(:last-of-type) {
|
|
81
|
+
padding-bottom: 0;
|
|
82
|
+
|
|
83
|
+
&::after {
|
|
84
|
+
display: none;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* 多选标签 */
|
|
90
|
+
.el-select-tags-wrapper .el-tag__content,
|
|
91
|
+
.el-select__collapse-tag .el-tag__content,
|
|
92
|
+
.el-select__selected-item .el-tag__content {
|
|
93
|
+
display: inline-flex;
|
|
94
|
+
align-items: center;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.el-select .el-tag__content .el-select__tags-text {
|
|
98
|
+
line-height: 1;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.el-select .el-select-tags-wrapper.has-prefix {
|
|
102
|
+
margin: 0 !important;
|
|
103
|
+
box-sizing: border-box;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.el-select .el-select__tags {
|
|
107
|
+
box-sizing: border-box;
|
|
108
|
+
padding: 0 0 0 4px;
|
|
109
|
+
left: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.el-select .el-select__selection.is-near {
|
|
113
|
+
gap: 0;
|
|
114
|
+
margin: 0 0 0 calc(0px - #{eleVar('input', 'padding-left', 12px)});
|
|
115
|
+
padding: 1px 0 1px 3px;
|
|
116
|
+
box-sizing: border-box;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.el-select .el-select__tags .el-tag,
|
|
120
|
+
.el-select__collapse-tags .el-select__collapse-tag .el-tag {
|
|
121
|
+
flex-shrink: 0;
|
|
122
|
+
margin: 2px 4px 2px 0;
|
|
123
|
+
height: calc(elVar('component-size') - 4px - 4px);
|
|
124
|
+
border: none;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.el-select .el-select__tags .el-select__input {
|
|
128
|
+
margin: 0 0 0 5.8px !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.el-select__selection.is-near > .el-select__selected-item,
|
|
132
|
+
.el-popper > .el-select__selection > .el-select__selected-item {
|
|
133
|
+
flex-shrink: 0;
|
|
134
|
+
margin: 2px 4px 2px 0;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.el-select__selection .el-select__selected-item > .el-tag {
|
|
138
|
+
height: calc(elVar('component-size') - 4px - 4px);
|
|
139
|
+
border: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* 小尺寸 */
|
|
143
|
+
.el-select--small .el-select__tags .el-tag--small,
|
|
144
|
+
.el-select__collapse-tags .el-select__collapse-tag .el-tag--small {
|
|
145
|
+
margin: 1px 4px 1px 0;
|
|
146
|
+
height: calc(elVar('component-size', 'small') - 4px - 2px);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.el-select--small .el-select__selection.is-near {
|
|
150
|
+
margin: 0 0 0 calc(0px - #{eleVar('input-sm', 'padding-left', 8px)});
|
|
151
|
+
padding: 1px 0 1px 3px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.el-select--small .el-select__selection.is-near > .el-select__selected-item {
|
|
155
|
+
margin: 1px 4px 1px 0;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.el-select--small .el-select__selected-item > .el-tag,
|
|
159
|
+
.el-popper > .el-select__selection .el-tag--small {
|
|
160
|
+
height: calc(elVar('component-size', 'small') - 4px - 2px);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.el-select--small .el-select__tags .el-select__input {
|
|
164
|
+
margin: 0 0 0 3.8px !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* 大尺寸 */
|
|
168
|
+
.el-select--large .el-select__tags {
|
|
169
|
+
padding: 1px 0 1px 6px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.el-select--large .el-select__selection.is-near {
|
|
173
|
+
padding: 3px 0 3px 5px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.el-select--large .el-select__tags .el-tag,
|
|
177
|
+
.el-select--large .el-select__selected-item > .el-tag {
|
|
178
|
+
height: calc(elVar('component-size', 'large') - 8px - 4px);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.el-select--large .el-select__selection.is-near {
|
|
182
|
+
margin: 0 0 0 calc(0px - #{eleVar('input-lg', 'padding-left', 16px)});
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.el-select--large .el-select__tags .el-select__input {
|
|
186
|
+
margin: 0 0 0 7.8px !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* 多选搜索框 */
|
|
190
|
+
.el-select-tags-wrapper.has-prefix + .el-select__input {
|
|
191
|
+
margin: 0 0 0 2px !important;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* 标签溢出气泡 */
|
|
195
|
+
.el-popper > .el-select__collapse-tags,
|
|
196
|
+
.el-popper > .el-select__selection {
|
|
197
|
+
margin: -5px -11px;
|
|
198
|
+
padding: 8px 10px;
|
|
199
|
+
background: inherit;
|
|
200
|
+
border-radius: inherit;
|
|
201
|
+
box-sizing: border-box;
|
|
202
|
+
gap: 0;
|
|
203
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./index.scss";
|