@dfsj/components 3.0.0
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/CHANGELOG.md +203 -0
- package/LICENSE +22 -0
- package/README.md +27 -0
- package/dist/components/Boards/index.d.ts +4 -0
- package/dist/components/Boards/src/Boards.vue.d.ts +33 -0
- package/dist/components/Boards/src/Boards.vue.js +5 -0
- package/dist/components/Boards/src/Boards.vue2.js +113 -0
- package/dist/components/Boards/src/props.d.ts +27 -0
- package/dist/components/Boards/src/props.js +18 -0
- package/dist/components/DatePicker/index.d.ts +2 -0
- package/dist/components/DatePicker/src/composables/use-month-range-header.d.ts +16 -0
- package/dist/components/DatePicker/src/composables/use-month-range-header.js +52 -0
- package/dist/components/DatePicker/src/composables/use-range-picker.d.ts +100 -0
- package/dist/components/DatePicker/src/composables/use-range-picker.js +99 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue.d.ts +19 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue.js +5 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-date-range.vue2.js +564 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue.d.ts +16 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue.js +5 -0
- package/dist/components/DatePicker/src/date-picker-com/panel-month-range.vue2.js +210 -0
- package/dist/components/DatePicker/src/index.d.ts +196 -0
- package/dist/components/DatePicker/src/index.js +87 -0
- package/dist/components/DatePicker/src/panel-utils.d.ts +2 -0
- package/dist/components/DatePicker/src/panel-utils.js +25 -0
- package/dist/components/Editor/index.d.ts +6 -0
- package/dist/components/Editor/src/Editor.vue.d.ts +50 -0
- package/dist/components/Editor/src/Editor.vue.js +5 -0
- package/dist/components/Editor/src/Editor.vue2.js +138 -0
- package/dist/components/Form/index.d.ts +16 -0
- package/dist/components/Form/src/Form.vue.d.ts +164 -0
- package/dist/components/Form/src/Form.vue.js +5 -0
- package/dist/components/Form/src/Form.vue2.js +378 -0
- package/dist/components/Form/src/components/useRenderCheckbox.d.ts +4 -0
- package/dist/components/Form/src/components/useRenderCheckbox.js +33 -0
- package/dist/components/Form/src/components/useRenderRadio.d.ts +4 -0
- package/dist/components/Form/src/components/useRenderRadio.js +33 -0
- package/dist/components/Form/src/components/useRenderSelect.d.ts +4 -0
- package/dist/components/Form/src/components/useRenderSelect.js +52 -0
- package/dist/components/Form/src/helper/componentMap.d.ts +5 -0
- package/dist/components/Form/src/helper/componentMap.js +35 -0
- package/dist/components/Form/src/helper/index.d.ts +7 -0
- package/dist/components/Form/src/helper/index.js +109 -0
- package/dist/components/Form/src/types/index.d.ts +533 -0
- package/dist/components/Form/src/types/index.js +31 -0
- package/dist/components/Form/src/useForm.d.ts +1 -0
- package/dist/components/Form/src/useForm.js +290 -0
- package/dist/components/Highlight/index.d.ts +2 -0
- package/dist/components/Highlight/src/Highlight.vue.d.ts +41 -0
- package/dist/components/Highlight/src/Highlight.vue.js +5 -0
- package/dist/components/Highlight/src/Highlight.vue2.js +62 -0
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Icon/src/Icon.vue.d.ts +49 -0
- package/dist/components/Icon/src/Icon.vue.js +5 -0
- package/dist/components/Icon/src/Icon.vue2.js +123 -0
- package/dist/components/Icon/src/SvgIcon.vue.d.ts +45 -0
- package/dist/components/Icon/src/SvgIcon.vue.js +7 -0
- package/dist/components/Icon/src/SvgIcon.vue2.js +45 -0
- package/dist/components/Icon/src/SvgIcon.vue3.js +14 -0
- package/dist/components/InputPassword/index.d.ts +2 -0
- package/dist/components/InputPassword/src/InputPassword.vue.d.ts +27 -0
- package/dist/components/InputPassword/src/InputPassword.vue.js +5 -0
- package/dist/components/InputPassword/src/InputPassword.vue2.js +58 -0
- package/dist/components/Modal/index.d.ts +2 -0
- package/dist/components/Modal/src/BasicModal.vue.d.ts +280 -0
- package/dist/components/Modal/src/BasicModal.vue.js +5 -0
- package/dist/components/Modal/src/BasicModal.vue2.js +150 -0
- package/dist/components/Modal/src/components/ModalFooter.vue.d.ts +86 -0
- package/dist/components/Modal/src/components/ModalFooter.vue.js +5 -0
- package/dist/components/Modal/src/components/ModalFooter.vue2.js +30 -0
- package/dist/components/Modal/src/components/ModalHeader.vue.d.ts +142 -0
- package/dist/components/Modal/src/components/ModalHeader.vue.js +5 -0
- package/dist/components/Modal/src/components/ModalHeader.vue2.js +63 -0
- package/dist/components/Modal/src/config.d.ts +24 -0
- package/dist/components/Modal/src/config.js +25 -0
- package/dist/components/Modal/src/hooks/useModalDrag.d.ts +24 -0
- package/dist/components/Modal/src/hooks/useModalDrag.js +108 -0
- package/dist/components/Modal/src/hooks/useTimeout.d.ts +15 -0
- package/dist/components/Modal/src/hooks/useTimeout.js +53 -0
- package/dist/components/Modal/src/props.d.ts +131 -0
- package/dist/components/Modal/src/props.js +107 -0
- package/dist/components/Modal/src/utils/index.d.ts +3 -0
- package/dist/components/Modal/src/utils/index.js +86 -0
- package/dist/components/Stateful/index.d.ts +4 -0
- package/dist/components/Stateful/src/State.d.ts +20 -0
- package/dist/components/Stateful/src/State.js +82 -0
- package/dist/components/Stateful/src/Stateful.vue.d.ts +44 -0
- package/dist/components/Stateful/src/Stateful.vue.js +5 -0
- package/dist/components/Stateful/src/Stateful.vue2.js +46 -0
- package/dist/components/Stateful/src/props.d.ts +39 -0
- package/dist/components/Stateful/src/props.js +29 -0
- package/dist/components/Table/index.d.ts +14 -0
- package/dist/components/Table/src/Table.vue.d.ts +537 -0
- package/dist/components/Table/src/Table.vue.js +5 -0
- package/dist/components/Table/src/Table.vue2.js +582 -0
- package/dist/components/Table/src/components/ColumnSetting.vue.d.ts +30 -0
- package/dist/components/Table/src/components/ColumnSetting.vue.js +5 -0
- package/dist/components/Table/src/components/ColumnSetting.vue2.js +264 -0
- package/dist/components/Table/src/components/TableActions.vue.d.ts +20 -0
- package/dist/components/Table/src/components/TableActions.vue.js +5 -0
- package/dist/components/Table/src/components/TableActions.vue2.js +108 -0
- package/dist/components/Table/src/helper/index.d.ts +2 -0
- package/dist/components/Table/src/helper/index.js +11 -0
- package/dist/components/Table/src/types/index.d.ts +87 -0
- package/dist/components/Table/src/useTable.d.ts +1 -0
- package/dist/components/Table/src/useTable.js +284 -0
- package/dist/components/UnifyChart/index.d.ts +4 -0
- package/dist/components/UnifyChart/src/ChartToolbox.vue.d.ts +63 -0
- package/dist/components/UnifyChart/src/ChartToolbox.vue.js +5 -0
- package/dist/components/UnifyChart/src/ChartToolbox.vue2.js +83 -0
- package/dist/components/UnifyChart/src/UnifyChart.vue.d.ts +185 -0
- package/dist/components/UnifyChart/src/UnifyChart.vue.js +5 -0
- package/dist/components/UnifyChart/src/UnifyChart.vue2.js +54 -0
- package/dist/components/UnifyChart/src/hooks/useLoader.d.ts +11 -0
- package/dist/components/UnifyChart/src/hooks/useRender.d.ts +24 -0
- package/dist/components/UnifyChart/src/hooks/useRender.js +49 -0
- package/dist/components/UnifyChart/src/props.d.ts +145 -0
- package/dist/components/UnifyChart/src/props.js +33 -0
- package/dist/components/Video/index.d.ts +2 -0
- package/dist/components/Video/src/VideoPlayer.vue.d.ts +60 -0
- package/dist/components/Video/src/VideoPlayer.vue.js +5 -0
- package/dist/components/Video/src/VideoPlayer.vue2.js +107 -0
- package/dist/components/Video/src/VideoPlayerToolbar.vue.d.ts +34 -0
- package/dist/components/Video/src/VideoPlayerToolbar.vue.js +5 -0
- package/dist/components/Video/src/VideoPlayerToolbar.vue2.js +65 -0
- package/dist/components/Video/src/abstract/AbstractVideoControl.d.ts +7 -0
- package/dist/components/Video/src/abstract/Observable.d.ts +6 -0
- package/dist/components/Video/src/abstract/Observable.js +89 -0
- package/dist/components/Video/src/abstract/VideoControl.d.ts +32 -0
- package/dist/components/Video/src/abstract/VideoControl.js +50 -0
- package/dist/components/Video/src/control/DaHua.d.ts +12 -0
- package/dist/components/Video/src/control/DaHua.js +156 -0
- package/dist/components/Video/src/control/Hikvision.d.ts +28 -0
- package/dist/components/Video/src/control/Hikvision.js +251 -0
- package/dist/components/Video/src/control/VideoFactory.d.ts +3 -0
- package/dist/components/Video/src/control/VideoFactory.js +32 -0
- package/dist/components/Video/src/enums/CommonEnum.d.ts +26 -0
- package/dist/components/Video/src/enums/CommonEnum.js +31 -0
- package/dist/components/Windows/index.d.ts +4 -0
- package/dist/components/Windows/src/ModalWrap.vue.d.ts +14 -0
- package/dist/components/Windows/src/ModalWrap.vue.js +5 -0
- package/dist/components/Windows/src/ModalWrap.vue2.js +90 -0
- package/dist/components/Windows/src/Windows.vue.d.ts +18 -0
- package/dist/components/Windows/src/Windows.vue.js +7 -0
- package/dist/components/Windows/src/Windows.vue2.js +51 -0
- package/dist/components/Windows/src/Windows.vue3.js +22 -0
- package/dist/components/Windows/src/props.d.ts +20 -0
- package/dist/components/Windows/src/props.js +9 -0
- package/dist/directives/clickOutside.d.ts +3 -0
- package/dist/directives/index.d.ts +2 -0
- package/dist/directives/repeatClick.d.ts +3 -0
- package/dist/helper/lang.d.ts +1 -0
- package/dist/helper/lang.js +546 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +36 -0
- package/dist/index.min.css +6 -0
- package/dist/node_modules/.pnpm/@vueuse_core@10.7.2_vue@3.4.21/node_modules/@vueuse/core/index.js +268 -0
- package/dist/node_modules/.pnpm/@vueuse_shared@10.7.2_vue@3.4.21/node_modules/@vueuse/shared/index.js +34 -0
- package/dist/themes/index.d.ts +1 -0
- package/dist/themes/index.js +1 -0
- package/dist/types/index.d.ts +8 -0
- package/dist/utils/index.d.ts +11 -0
- package/dist/utils/index.js +24 -0
- package/dist/utils/is.d.ts +25 -0
- package/dist/utils/is.js +36 -0
- package/dist/utils/propTypes.d.ts +10 -0
- package/dist/utils/propTypes.js +35 -0
- package/dist/utils/tsxHelper.d.ts +5 -0
- package/dist/utils/tsxHelper.js +18 -0
- package/package.json +64 -0
|
@@ -0,0 +1,546 @@
|
|
|
1
|
+
import { get } from 'lodash-es';
|
|
2
|
+
|
|
3
|
+
var lang = {
|
|
4
|
+
common: {
|
|
5
|
+
inputText: '请输入',
|
|
6
|
+
selectText: '请选择',
|
|
7
|
+
startTimeText: '开始时间',
|
|
8
|
+
endTimeText: '结束时间',
|
|
9
|
+
login: '登录',
|
|
10
|
+
required: '该项为必填项',
|
|
11
|
+
loginOut: '退出系统',
|
|
12
|
+
document: '项目文档',
|
|
13
|
+
reminder: '温馨提示',
|
|
14
|
+
loginOutMessage: '是否退出本系统?',
|
|
15
|
+
back: '返回',
|
|
16
|
+
ok: '确定',
|
|
17
|
+
cancel: '取消',
|
|
18
|
+
reload: '重新加载',
|
|
19
|
+
closeTab: '关闭标签页',
|
|
20
|
+
closeTheLeftTab: '关闭左侧标签页',
|
|
21
|
+
closeTheRightTab: '关闭右侧标签页',
|
|
22
|
+
closeOther: '关闭其它标签页',
|
|
23
|
+
closeAll: '关闭全部标签页',
|
|
24
|
+
prevLabel: '上一步',
|
|
25
|
+
nextLabel: '下一步',
|
|
26
|
+
skipLabel: '跳过',
|
|
27
|
+
doneLabel: '结束',
|
|
28
|
+
menu: '菜单',
|
|
29
|
+
menuDes: '以路由的结构渲染的菜单栏',
|
|
30
|
+
collapse: '展开缩收',
|
|
31
|
+
collapseDes: '展开和缩放菜单栏',
|
|
32
|
+
tagsView: '标签页',
|
|
33
|
+
tagsViewDes: '用于记录路由历史记录',
|
|
34
|
+
tool: '工具',
|
|
35
|
+
toolDes: '用于设置定制系统',
|
|
36
|
+
query: '查询',
|
|
37
|
+
reset: '重置',
|
|
38
|
+
shrink: '收起',
|
|
39
|
+
expand: '展开',
|
|
40
|
+
delMessage: '是否删除所选中数据?',
|
|
41
|
+
delWarning: '提示',
|
|
42
|
+
delOk: '确定',
|
|
43
|
+
delCancel: '取消',
|
|
44
|
+
delNoData: '请选择需要删除的数据',
|
|
45
|
+
delSuccess: '删除成功',
|
|
46
|
+
refresh: '刷新',
|
|
47
|
+
fullscreen: '全屏',
|
|
48
|
+
size: '尺寸',
|
|
49
|
+
columnSetting: '列设置',
|
|
50
|
+
lengthRange: '长度在 {min} 到 {max} 个字符',
|
|
51
|
+
notSpace: '不能包含空格',
|
|
52
|
+
notSpecialCharacters: '不能包含特殊字符',
|
|
53
|
+
isEqual: '两次输入不一致'
|
|
54
|
+
},
|
|
55
|
+
lock: {
|
|
56
|
+
lockScreen: '锁定屏幕',
|
|
57
|
+
lock: '锁定',
|
|
58
|
+
lockPassword: '锁屏密码',
|
|
59
|
+
unlock: '点击解锁',
|
|
60
|
+
backToLogin: '返回登录',
|
|
61
|
+
entrySystem: '进入系统',
|
|
62
|
+
placeholder: '请输入锁屏密码',
|
|
63
|
+
message: '锁屏密码错误'
|
|
64
|
+
},
|
|
65
|
+
error: {
|
|
66
|
+
noPermission: "\u62B1\u6B49\uFF0C\u60A8\u65E0\u6743\u8BBF\u95EE\u6B64\u9875\u9762\u3002",
|
|
67
|
+
pageError: '抱歉,您访问的页面不存在。',
|
|
68
|
+
networkError: '抱歉,服务器报告错误。',
|
|
69
|
+
returnToHome: '返回首页'
|
|
70
|
+
},
|
|
71
|
+
setting: {
|
|
72
|
+
projectSetting: '项目配置',
|
|
73
|
+
theme: '主题',
|
|
74
|
+
layout: '布局',
|
|
75
|
+
systemTheme: '系统主题',
|
|
76
|
+
menuTheme: '菜单主题',
|
|
77
|
+
interfaceDisplay: '界面显示',
|
|
78
|
+
breadcrumb: '面包屑',
|
|
79
|
+
breadcrumbIcon: '面包屑图标',
|
|
80
|
+
collapseMenu: '折叠菜单',
|
|
81
|
+
hamburgerIcon: '折叠图标',
|
|
82
|
+
screenfullIcon: '全屏图标',
|
|
83
|
+
sizeIcon: '尺寸图标',
|
|
84
|
+
localeIcon: '多语言图标',
|
|
85
|
+
tagsView: '标签页',
|
|
86
|
+
logo: '标志',
|
|
87
|
+
greyMode: '灰色模式',
|
|
88
|
+
fixedHeader: '固定头部',
|
|
89
|
+
headerTheme: '头部主题',
|
|
90
|
+
cutMenu: '切割菜单',
|
|
91
|
+
copy: '拷贝',
|
|
92
|
+
clearAndReset: '清除缓存并且重置',
|
|
93
|
+
copySuccess: '拷贝成功',
|
|
94
|
+
copyFailed: '拷贝失败',
|
|
95
|
+
footer: '页脚',
|
|
96
|
+
uniqueOpened: '菜单手风琴',
|
|
97
|
+
tagsViewIcon: '标签页图标',
|
|
98
|
+
dynamicRouter: '开启动态路由',
|
|
99
|
+
serverDynamicRouter: '服务端动态路由',
|
|
100
|
+
reExperienced: '请重新退出登录体验',
|
|
101
|
+
fixedMenu: '固定菜单'
|
|
102
|
+
},
|
|
103
|
+
size: {
|
|
104
|
+
"default": '默认',
|
|
105
|
+
large: '大',
|
|
106
|
+
small: '小'
|
|
107
|
+
},
|
|
108
|
+
login: {
|
|
109
|
+
welcome: '欢迎使用本系统',
|
|
110
|
+
message: '开箱即用的中后台管理系统',
|
|
111
|
+
username: '用户名',
|
|
112
|
+
password: '密码',
|
|
113
|
+
register: '注册',
|
|
114
|
+
checkPassword: '确认密码',
|
|
115
|
+
login: '登录',
|
|
116
|
+
otherLogin: '其它登录方式',
|
|
117
|
+
remember: '记住我',
|
|
118
|
+
hasUser: '已有账号?去登录',
|
|
119
|
+
forgetPassword: '忘记密码',
|
|
120
|
+
usernamePlaceholder: '请输入用户名',
|
|
121
|
+
passwordPlaceholder: '请输入密码',
|
|
122
|
+
code: '验证码',
|
|
123
|
+
codePlaceholder: '请输入验证码'
|
|
124
|
+
},
|
|
125
|
+
router: {
|
|
126
|
+
login: '登录',
|
|
127
|
+
level: '多级菜单',
|
|
128
|
+
menu: '菜单',
|
|
129
|
+
menu1: '菜单1',
|
|
130
|
+
menu11: '菜单1-1',
|
|
131
|
+
menu111: '菜单1-1-1',
|
|
132
|
+
menu12: '菜单1-2',
|
|
133
|
+
menu2: '菜单2',
|
|
134
|
+
dashboard: '首页',
|
|
135
|
+
analysis: '分析页',
|
|
136
|
+
workplace: '工作台',
|
|
137
|
+
guide: '引导',
|
|
138
|
+
component: '组件',
|
|
139
|
+
icon: '图标',
|
|
140
|
+
echart: '图表',
|
|
141
|
+
countTo: '数字动画',
|
|
142
|
+
watermark: '水印',
|
|
143
|
+
qrcode: '二维码',
|
|
144
|
+
highlight: '高亮',
|
|
145
|
+
infotip: '信息提示',
|
|
146
|
+
form: '表单',
|
|
147
|
+
defaultForm: '全部示例',
|
|
148
|
+
search: '查询',
|
|
149
|
+
table: '表格',
|
|
150
|
+
defaultTable: '基础示例',
|
|
151
|
+
editor: '编辑器',
|
|
152
|
+
richText: '富文本',
|
|
153
|
+
jsonEditor: 'JSON编辑器',
|
|
154
|
+
dialog: '弹窗',
|
|
155
|
+
imageViewer: '图片预览',
|
|
156
|
+
descriptions: '描述',
|
|
157
|
+
example: '综合示例',
|
|
158
|
+
exampleDialog: '综合示例 - 弹窗',
|
|
159
|
+
examplePage: '综合示例 - 页面',
|
|
160
|
+
exampleAdd: '综合示例 - 新增',
|
|
161
|
+
exampleEdit: '综合示例 - 编辑',
|
|
162
|
+
exampleDetail: '综合示例 - 详情',
|
|
163
|
+
errorPage: '错误页面',
|
|
164
|
+
authorization: '权限管理',
|
|
165
|
+
user: '用户管理',
|
|
166
|
+
role: '角色管理',
|
|
167
|
+
document: '文档',
|
|
168
|
+
inputPassword: '密码输入框',
|
|
169
|
+
sticky: '黏性',
|
|
170
|
+
treeTable: '树形表格',
|
|
171
|
+
PicturePreview: '表格图片预览',
|
|
172
|
+
department: '部门管理',
|
|
173
|
+
menuManagement: '菜单管理',
|
|
174
|
+
permission: '权限测试页',
|
|
175
|
+
"function": '功能',
|
|
176
|
+
multipleTabs: '多开标签页',
|
|
177
|
+
details: '详情页',
|
|
178
|
+
iconPicker: '图标选择器',
|
|
179
|
+
request: '请求',
|
|
180
|
+
waterfall: '瀑布流',
|
|
181
|
+
imageCropping: '图片裁剪',
|
|
182
|
+
videoPlayer: '视频播放器',
|
|
183
|
+
tableVideoPreview: '表格视频预览',
|
|
184
|
+
cardTable: '卡片表格'
|
|
185
|
+
},
|
|
186
|
+
permission: {
|
|
187
|
+
hasPermission: '请设置操作权限值'
|
|
188
|
+
},
|
|
189
|
+
analysis: {
|
|
190
|
+
newUser: '新增用户',
|
|
191
|
+
unreadInformation: '未读消息',
|
|
192
|
+
transactionAmount: '成交金额',
|
|
193
|
+
totalShopping: '购物总量',
|
|
194
|
+
monthlySales: '每月销售额',
|
|
195
|
+
userAccessSource: '用户访问来源',
|
|
196
|
+
january: '一月',
|
|
197
|
+
february: '二月',
|
|
198
|
+
march: '三月',
|
|
199
|
+
april: '四月',
|
|
200
|
+
may: '五月',
|
|
201
|
+
june: '六月',
|
|
202
|
+
july: '七月',
|
|
203
|
+
august: '八月',
|
|
204
|
+
september: '九月',
|
|
205
|
+
october: '十月',
|
|
206
|
+
november: '十一月',
|
|
207
|
+
december: '十二月',
|
|
208
|
+
estimate: '预计',
|
|
209
|
+
actual: '实际',
|
|
210
|
+
directAccess: '直接访问',
|
|
211
|
+
mailMarketing: '邮件营销',
|
|
212
|
+
allianceAdvertising: '联盟广告',
|
|
213
|
+
videoAdvertising: '视频广告',
|
|
214
|
+
searchEngines: '搜索引擎',
|
|
215
|
+
weeklyUserActivity: '每周用户活跃量',
|
|
216
|
+
activeQuantity: '活跃量',
|
|
217
|
+
monday: '周一',
|
|
218
|
+
tuesday: '周二',
|
|
219
|
+
wednesday: '周三',
|
|
220
|
+
thursday: '周四',
|
|
221
|
+
friday: '周五',
|
|
222
|
+
saturday: '周六',
|
|
223
|
+
sunday: '周日'
|
|
224
|
+
},
|
|
225
|
+
workplace: {
|
|
226
|
+
goodMorning: '早安',
|
|
227
|
+
happyDay: '祝你开心每一天!',
|
|
228
|
+
toady: '今日晴',
|
|
229
|
+
project: '项目数',
|
|
230
|
+
access: '项目访问',
|
|
231
|
+
toDo: '待办',
|
|
232
|
+
introduction: '一个正经的简介',
|
|
233
|
+
more: '更多',
|
|
234
|
+
shortcutOperation: '快捷操作',
|
|
235
|
+
operation: '操作',
|
|
236
|
+
index: '指数',
|
|
237
|
+
personal: '个人',
|
|
238
|
+
team: '团队',
|
|
239
|
+
quote: '引用',
|
|
240
|
+
contribution: '贡献',
|
|
241
|
+
hot: '热度',
|
|
242
|
+
"yield": '产量',
|
|
243
|
+
dynamic: '动态',
|
|
244
|
+
push: '推送',
|
|
245
|
+
pushCode: 'Archer 推送 代码到 Github',
|
|
246
|
+
follow: '关注'
|
|
247
|
+
},
|
|
248
|
+
formDemo: {
|
|
249
|
+
input: '输入框',
|
|
250
|
+
inputNumber: '数字输入框',
|
|
251
|
+
"default": '默认',
|
|
252
|
+
icon: '图标',
|
|
253
|
+
mixed: '复合型',
|
|
254
|
+
password: '密码框',
|
|
255
|
+
textarea: '多行文本',
|
|
256
|
+
remoteSearch: '远程搜索',
|
|
257
|
+
slot: '插槽',
|
|
258
|
+
position: '位置',
|
|
259
|
+
autocomplete: '自动补全',
|
|
260
|
+
select: '选择器',
|
|
261
|
+
optionSlot: '选项插槽',
|
|
262
|
+
selectGroup: '选项分组',
|
|
263
|
+
selectV2: '虚拟列表选择器',
|
|
264
|
+
cascader: '级联选择器',
|
|
265
|
+
"switch": '开关',
|
|
266
|
+
rate: '评分',
|
|
267
|
+
colorPicker: '颜色选择器',
|
|
268
|
+
transfer: '穿梭框',
|
|
269
|
+
render: '渲染器',
|
|
270
|
+
radio: '单选框',
|
|
271
|
+
radioGroup: '单选框组',
|
|
272
|
+
button: '按钮',
|
|
273
|
+
checkbox: '多选框',
|
|
274
|
+
checkboxButton: '多选框按钮',
|
|
275
|
+
checkboxGroup: '多选框组',
|
|
276
|
+
slider: '滑块',
|
|
277
|
+
datePicker: '日期选择器',
|
|
278
|
+
shortcuts: '快捷选项',
|
|
279
|
+
today: '今天',
|
|
280
|
+
yesterday: '昨天',
|
|
281
|
+
aWeekAgo: '一周前',
|
|
282
|
+
week: '周',
|
|
283
|
+
year: '年',
|
|
284
|
+
month: '月',
|
|
285
|
+
dates: '日期',
|
|
286
|
+
daterange: '日期范围',
|
|
287
|
+
monthrange: '月份范围',
|
|
288
|
+
dateTimePicker: '日期时间选择器',
|
|
289
|
+
dateTimerange: '日期时间范围',
|
|
290
|
+
timePicker: '时间选择器',
|
|
291
|
+
timeSelect: '时间选择',
|
|
292
|
+
inputPassword: '密码输入框',
|
|
293
|
+
passwordStrength: '密码强度',
|
|
294
|
+
defaultForm: '全部示例',
|
|
295
|
+
formDes: '基于 ElementPlus 的 Form 组件二次封装,实现数据驱动,支持所有 Form 参数',
|
|
296
|
+
example: '示例',
|
|
297
|
+
operate: '操作',
|
|
298
|
+
change: '更改',
|
|
299
|
+
restore: '还原',
|
|
300
|
+
disabled: '禁用',
|
|
301
|
+
disablement: '解除禁用',
|
|
302
|
+
"delete": '删除',
|
|
303
|
+
add: '添加',
|
|
304
|
+
setValue: '设置值',
|
|
305
|
+
resetValue: '重置值',
|
|
306
|
+
set: '设置',
|
|
307
|
+
subitem: '子项',
|
|
308
|
+
formValidation: '表单验证',
|
|
309
|
+
verifyReset: '验证重置',
|
|
310
|
+
richText: '富文本编辑器',
|
|
311
|
+
jsonEditor: 'JSON编辑器',
|
|
312
|
+
form: '表单',
|
|
313
|
+
remoteLoading: '远程加载',
|
|
314
|
+
focus: '聚焦',
|
|
315
|
+
treeSelect: '树形选择器',
|
|
316
|
+
showCheckbox: '显示复选框',
|
|
317
|
+
selectAnyLevel: '选择任意级别',
|
|
318
|
+
multiple: '多选',
|
|
319
|
+
filterable: '可筛选',
|
|
320
|
+
customContent: '自定义内容',
|
|
321
|
+
lazyLoad: '懒加载',
|
|
322
|
+
upload: '上传',
|
|
323
|
+
userAvatar: '用户头像',
|
|
324
|
+
iconPicker: '图标选择器'
|
|
325
|
+
},
|
|
326
|
+
guideDemo: {
|
|
327
|
+
guide: '引导页',
|
|
328
|
+
start: '开始',
|
|
329
|
+
message: '引导页对于一些第一次进入项目的人很有用,你可以简单介绍下项目的功能。引导页基于 driver.js'
|
|
330
|
+
},
|
|
331
|
+
iconDemo: {
|
|
332
|
+
icon: '图标',
|
|
333
|
+
localIcon: '本地图标',
|
|
334
|
+
iconify: 'Iconify组件',
|
|
335
|
+
recommendedUse: '推荐使用',
|
|
336
|
+
recommendeDes: 'Iconify组件基本包含所有的图标,你可以查询到你想要的任何图标。并且打包只会打包所用到的图标。',
|
|
337
|
+
accessAddress: '访问地址'
|
|
338
|
+
},
|
|
339
|
+
echartDemo: {
|
|
340
|
+
echart: '图表',
|
|
341
|
+
echartDes: '基于 echarts 二次封装组件,自适应宽度,只需传入 options 与 height 属性即可展示对应的图表。'
|
|
342
|
+
},
|
|
343
|
+
countToDemo: {
|
|
344
|
+
countTo: '数字动画',
|
|
345
|
+
countToDes: '基于 vue-count-to 进行改造,支持所有 vue-count-to 参数。',
|
|
346
|
+
suffix: '后缀',
|
|
347
|
+
prefix: '前缀',
|
|
348
|
+
separator: '分割符号',
|
|
349
|
+
duration: '持续时间',
|
|
350
|
+
endVal: '结束值',
|
|
351
|
+
startVal: '开始值',
|
|
352
|
+
start: '开始',
|
|
353
|
+
pause: '暂停',
|
|
354
|
+
resume: '继续'
|
|
355
|
+
},
|
|
356
|
+
watermarkDemo: {
|
|
357
|
+
watermark: '水印',
|
|
358
|
+
createdWatermark: '创建水印',
|
|
359
|
+
clearWatermark: '清除水印',
|
|
360
|
+
resetWatermark: '重置水印'
|
|
361
|
+
},
|
|
362
|
+
qrcodeDemo: {
|
|
363
|
+
qrcode: '二维码',
|
|
364
|
+
qrcodeDes: '基于 qrcode 二次封装',
|
|
365
|
+
basicUsage: '基础用法',
|
|
366
|
+
imgTag: 'img标签',
|
|
367
|
+
style: '样式配置',
|
|
368
|
+
click: '点击事件',
|
|
369
|
+
asynchronousContent: '异步内容',
|
|
370
|
+
invalid: '失效',
|
|
371
|
+
logoConfig: 'logo配置',
|
|
372
|
+
logoStyle: 'logo样式',
|
|
373
|
+
size: '大小配置'
|
|
374
|
+
},
|
|
375
|
+
highlightDemo: {
|
|
376
|
+
highlight: '高亮',
|
|
377
|
+
message: '种一棵树最好的时间是十年前,其次就是现在。',
|
|
378
|
+
keys1: '十年前',
|
|
379
|
+
keys2: '现在'
|
|
380
|
+
},
|
|
381
|
+
infotipDemo: {
|
|
382
|
+
infotip: '信息提示',
|
|
383
|
+
infotipDes: '基于 Highlight 组件二次封装',
|
|
384
|
+
title: '注意事项'
|
|
385
|
+
},
|
|
386
|
+
levelDemo: {
|
|
387
|
+
menu: '多级菜单缓存'
|
|
388
|
+
},
|
|
389
|
+
searchDemo: {
|
|
390
|
+
search: '查询',
|
|
391
|
+
searchDes: '基于 Form 组件二次封装,实现查询、重置功能',
|
|
392
|
+
operate: '操作',
|
|
393
|
+
change: '更改',
|
|
394
|
+
grid: '栅格',
|
|
395
|
+
button: '按钮',
|
|
396
|
+
restore: '还原',
|
|
397
|
+
inline: '内联',
|
|
398
|
+
bottom: '底部',
|
|
399
|
+
position: '位置',
|
|
400
|
+
left: '左',
|
|
401
|
+
center: '中',
|
|
402
|
+
right: '右',
|
|
403
|
+
dynamicOptions: '动态选项',
|
|
404
|
+
deleteRadio: '删除单选框',
|
|
405
|
+
restoreRadio: '还原单选框',
|
|
406
|
+
loading: '加载中',
|
|
407
|
+
reset: '重置'
|
|
408
|
+
},
|
|
409
|
+
stickyDemo: {
|
|
410
|
+
sticky: '黏性'
|
|
411
|
+
},
|
|
412
|
+
tableDemo: {
|
|
413
|
+
table: '表格',
|
|
414
|
+
tableDes: '基于 ElementPlus 的 Table 组件二次封装',
|
|
415
|
+
index: '序号',
|
|
416
|
+
title: '标题',
|
|
417
|
+
author: '作者',
|
|
418
|
+
displayTime: '创建时间',
|
|
419
|
+
importance: '重要性',
|
|
420
|
+
pageviews: '阅读数',
|
|
421
|
+
action: '操作',
|
|
422
|
+
important: '重要',
|
|
423
|
+
good: '良好',
|
|
424
|
+
commonly: '一般',
|
|
425
|
+
operate: '操作',
|
|
426
|
+
example: '示例',
|
|
427
|
+
show: '显示',
|
|
428
|
+
hidden: '隐藏',
|
|
429
|
+
pagination: '分页',
|
|
430
|
+
reserveIndex: '叠加序号',
|
|
431
|
+
restoreIndex: '还原序号',
|
|
432
|
+
showSelections: '显示多选',
|
|
433
|
+
hiddenSelections: '隐藏多选',
|
|
434
|
+
showExpandedRows: '显示展开行',
|
|
435
|
+
hiddenExpandedRows: '隐藏展开行',
|
|
436
|
+
changeTitle: '修改标题',
|
|
437
|
+
header: '头部',
|
|
438
|
+
selectAllNone: '全选/全不选',
|
|
439
|
+
delOrAddAction: '删除/添加操作列',
|
|
440
|
+
showOrHiddenStripe: '显示/隐藏斑马纹',
|
|
441
|
+
showOrHiddenBorder: '显示/隐藏边框',
|
|
442
|
+
fixedHeaderOrAuto: '固定头部/自动',
|
|
443
|
+
getSelections: '获取多选数据',
|
|
444
|
+
preview: '封面',
|
|
445
|
+
showOrHiddenSortable: '显示/隐藏排序',
|
|
446
|
+
videoPreview: '视频预览',
|
|
447
|
+
cardTable: '卡片表格'
|
|
448
|
+
},
|
|
449
|
+
richText: {
|
|
450
|
+
richText: '富文本',
|
|
451
|
+
richTextDes: '基于 wangeditor 二次封装',
|
|
452
|
+
jsonEditor: 'JSON编辑器',
|
|
453
|
+
jsonEditorDes: '基于 vue-json-pretty 二次封装'
|
|
454
|
+
},
|
|
455
|
+
dialogDemo: {
|
|
456
|
+
dialog: '弹窗',
|
|
457
|
+
dialogDes: '基于 ElementPlus 的 Dialog 组件二次封装',
|
|
458
|
+
open: '打开',
|
|
459
|
+
close: '关闭',
|
|
460
|
+
combineWithForm: '与表单结合',
|
|
461
|
+
submit: '提交'
|
|
462
|
+
},
|
|
463
|
+
imageViewerDemo: {
|
|
464
|
+
open: '打开',
|
|
465
|
+
imageViewer: '图片预览',
|
|
466
|
+
imageViewerDes: '基于 ElementPlus 的 ImageViewer 组件二次封装'
|
|
467
|
+
},
|
|
468
|
+
descriptionsDemo: {
|
|
469
|
+
descriptions: '描述',
|
|
470
|
+
descriptionsDes: '基于 ElementPlus 的 Descriptions 组件二次封装',
|
|
471
|
+
username: '用户名',
|
|
472
|
+
nickName: '昵称',
|
|
473
|
+
phone: '联系电话',
|
|
474
|
+
email: '邮箱',
|
|
475
|
+
addr: '地址',
|
|
476
|
+
form: '与 Form 组件组合'
|
|
477
|
+
},
|
|
478
|
+
exampleDemo: {
|
|
479
|
+
title: '标题',
|
|
480
|
+
add: '新增',
|
|
481
|
+
del: '删除',
|
|
482
|
+
edit: '编辑',
|
|
483
|
+
author: '作者',
|
|
484
|
+
displayTime: '创建时间',
|
|
485
|
+
importance: '重要性',
|
|
486
|
+
pageviews: '阅读数',
|
|
487
|
+
important: '重要',
|
|
488
|
+
content: '内容',
|
|
489
|
+
save: '保存',
|
|
490
|
+
detail: '详情'
|
|
491
|
+
},
|
|
492
|
+
userDemo: {
|
|
493
|
+
title: '用户管理',
|
|
494
|
+
message: '由于是模拟数据,所以只提供了两种不同权限的帐号,开发者可根据实际情况自行改造结合。',
|
|
495
|
+
index: '序号',
|
|
496
|
+
action: '操作',
|
|
497
|
+
username: '用户名',
|
|
498
|
+
password: '密码',
|
|
499
|
+
role: '角色',
|
|
500
|
+
remark: '备注',
|
|
501
|
+
remarkMessage1: '后端控制路由权限',
|
|
502
|
+
remarkMessage2: '前端控制路由权限',
|
|
503
|
+
departmentList: '部门列表',
|
|
504
|
+
searchDepartment: '搜索部门',
|
|
505
|
+
account: '账号',
|
|
506
|
+
email: '邮箱',
|
|
507
|
+
createTime: '创建时间',
|
|
508
|
+
department: '所属部门',
|
|
509
|
+
departmentName: '部门名称',
|
|
510
|
+
status: '状态',
|
|
511
|
+
enable: '启用',
|
|
512
|
+
disable: '禁用',
|
|
513
|
+
superiorDepartment: '上级部门'
|
|
514
|
+
},
|
|
515
|
+
menu: {
|
|
516
|
+
menuName: '菜单名称',
|
|
517
|
+
icon: '图标',
|
|
518
|
+
permission: '按钮权限',
|
|
519
|
+
component: '组件',
|
|
520
|
+
path: '路径',
|
|
521
|
+
status: '状态',
|
|
522
|
+
hidden: '是否隐藏',
|
|
523
|
+
alwaysShow: '是否一直显示',
|
|
524
|
+
noCache: '是否清除缓存',
|
|
525
|
+
breadcrumb: '是否显示面包屑',
|
|
526
|
+
affix: '是否固定在标签页',
|
|
527
|
+
noTagsView: '是否隐藏标签页',
|
|
528
|
+
activeMenu: '高亮菜单',
|
|
529
|
+
canTo: '是否可跳转',
|
|
530
|
+
name: '组件名称'
|
|
531
|
+
},
|
|
532
|
+
role: {
|
|
533
|
+
roleName: '角色名称',
|
|
534
|
+
role: '角色',
|
|
535
|
+
menu: '菜单分配'
|
|
536
|
+
},
|
|
537
|
+
inputPasswordDemo: {
|
|
538
|
+
title: '密码输入框',
|
|
539
|
+
inputPasswordDes: '基于 ElementPlus 的 Input 组件二次封装'
|
|
540
|
+
}
|
|
541
|
+
};
|
|
542
|
+
var getLabel = function getLabel(filed) {
|
|
543
|
+
return get(lang, filed);
|
|
544
|
+
};
|
|
545
|
+
|
|
546
|
+
export { getLabel };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './components/Form';
|
|
2
|
+
export * from './components/Table';
|
|
3
|
+
export * from './components/Icon';
|
|
4
|
+
export * from './components/Editor';
|
|
5
|
+
export * from './components/Modal';
|
|
6
|
+
export * from './components/Stateful';
|
|
7
|
+
export * from './components/Windows';
|
|
8
|
+
export * from './components/Boards';
|
|
9
|
+
export * from "./components/Video";
|
|
10
|
+
export * from "./components/DatePicker";
|
|
11
|
+
export * from "./components/UnifyChart";
|
|
12
|
+
export * from "./components/Highlight";
|
|
13
|
+
export * from "./components/InputPassword";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import './components/Form/src/Form.vue.js';
|
|
2
|
+
export { useForm } from './components/Form/src/useForm.js';
|
|
3
|
+
import './components/Table/src/Table.vue.js';
|
|
4
|
+
export { useTable } from './components/Table/src/useTable.js';
|
|
5
|
+
import './components/Icon/src/Icon.vue.js';
|
|
6
|
+
import './components/Icon/src/SvgIcon.vue.js';
|
|
7
|
+
import './components/Editor/src/Editor.vue.js';
|
|
8
|
+
import './components/Modal/src/BasicModal.vue.js';
|
|
9
|
+
export { DEFAULT_STATES, statefulProps } from './components/Stateful/src/props.js';
|
|
10
|
+
export { default as State, StateEnum } from './components/Stateful/src/State.js';
|
|
11
|
+
import './components/Stateful/src/Stateful.vue.js';
|
|
12
|
+
export { WindowsProps } from './components/Windows/src/props.js';
|
|
13
|
+
import './components/Windows/src/Windows.vue.js';
|
|
14
|
+
export { BoardProps } from './components/Boards/src/props.js';
|
|
15
|
+
import './components/Boards/src/Boards.vue.js';
|
|
16
|
+
import './components/Video/src/VideoPlayer.vue.js';
|
|
17
|
+
export { default as DatePicker } from './components/DatePicker/src/index.js';
|
|
18
|
+
export { EToolbox, compProps, toolboxProps, unifyChartProps } from './components/UnifyChart/src/props.js';
|
|
19
|
+
import './components/UnifyChart/src/UnifyChart.vue.js';
|
|
20
|
+
import './components/UnifyChart/src/ChartToolbox.vue.js';
|
|
21
|
+
import './components/Highlight/src/Highlight.vue.js';
|
|
22
|
+
import './components/InputPassword/src/InputPassword.vue.js';
|
|
23
|
+
export { default as Form } from './components/Form/src/Form.vue2.js';
|
|
24
|
+
export { default as Table } from './components/Table/src/Table.vue2.js';
|
|
25
|
+
export { default as Editor } from './components/Editor/src/Editor.vue2.js';
|
|
26
|
+
export { default as Windows } from './components/Windows/src/Windows.vue2.js';
|
|
27
|
+
export { default as Boards } from './components/Boards/src/Boards.vue2.js';
|
|
28
|
+
export { default as VideoPlayer } from './components/Video/src/VideoPlayer.vue2.js';
|
|
29
|
+
export { default as UnifyChart } from './components/UnifyChart/src/UnifyChart.vue2.js';
|
|
30
|
+
export { default as Highlight } from './components/Highlight/src/Highlight.vue2.js';
|
|
31
|
+
export { default as InputPassword } from './components/InputPassword/src/InputPassword.vue2.js';
|
|
32
|
+
export { default as Icon } from './components/Icon/src/Icon.vue2.js';
|
|
33
|
+
export { default as SvgIcon } from './components/Icon/src/SvgIcon.vue2.js';
|
|
34
|
+
export { default as BasicModal } from './components/Modal/src/BasicModal.vue2.js';
|
|
35
|
+
export { default as Stateful } from './components/Stateful/src/Stateful.vue2.js';
|
|
36
|
+
export { default as ChartToolbox } from './components/UnifyChart/src/ChartToolbox.vue2.js';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
@dfsj/components:通用的vue组件;包括专业组件、原子级组件
|
|
3
|
+
版本: 3.0.0
|
|
4
|
+
作者:yangbo <1747837358@qq.com>
|
|
5
|
+
日期:2024-03-19 17:49:38
|
|
6
|
+
*/.ec-component-board-container-page-wrap{position:fixed;right:0;bottom:0;z-index:100;max-width:500px;background:#fff;transition:transform 200ms ease-in-out}.ec-component-board-container-page-wrap__layout{display:flex;flex-direction:row-reverse}.ec-component-board-container-page-wrap .board--wing{position:absolute !important;z-index:1;width:18px;height:80px;border-radius:2px;background:rgba(3,19,78,.12);backdrop-filter:blur(2px);box-shadow:2px 1px 1px 0px rgba(0,0,0,.3),-2px -2px 2px 0px #fff;cursor:pointer}.ec-component-board-container-page-wrap .board--wing .app-iconify{position:absolute;top:50%;right:0;font-weight:bolder;color:#fff}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-wrap::after{display:none}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .custom-label{display:flex;width:100%;min-height:0;letter-spacing:5px;writing-mode:vertical-lr}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__active-bar{display:none;width:0;height:0}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item{height:auto;padding:10px;color:#11848f;background:#eee}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__item.is-active{color:#fff;background:#11848f}.ec-component-board-container-page-wrap .multiple-toggle-tab .el-tabs__nav-scroll .el-tabs__nav{gap:10px}.ec-component-board-container-page-wrap.east{flex-direction:row-reverse;right:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:2px 0 0}.ec-component-board-container-page-wrap.east .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(-100%, -50%);top:50%;left:0;clip-path:polygon(0 18%, 100% 0, 100% 100%, 0 82%)}.ec-component-board-container-page-wrap.east.minify{transform:translateX(100%)}.ec-component-board-container-page-wrap.east .board--wing .app-iconify{transform:rotate(0deg) translateY(-50%)}.ec-component-board-container-page-wrap.east.minify .board--wing .app-iconify{transform:rotate(180deg) translateY(50%)}.ec-component-board-container-page-wrap.west{flex-direction:row-reverse;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3);border-radius:0 2px 0 0}.ec-component-board-container-page-wrap.west .board--wing{z-index:1;box-shadow:-8px 0 10px 0 rgba(64,72,191,.2);transform:translate(100%, -50%);top:50%;right:0;clip-path:polygon(0 0, 100% 18%, 100% 82%, 0% 100%)}.ec-component-board-container-page-wrap.west .board--wing .app-iconify{transform:rotate(180deg) translateY(50%)}.ec-component-board-container-page-wrap.west.minify{transform:translateX(-100%)}.ec-component-board-container-page-wrap.west.minify .board--wing .app-iconify{transform:rotate(0deg) translateY(-50%)}.ec-component-board-container-page-wrap.full{flex-direction:row-reverse;right:0;left:0;box-shadow:-0.1rem 0 .7rem .1rem rgba(64,72,191,.3)}.ec-component-board-container-page-wrap.full .board--wing{display:none;top:-30px;left:calc(50% - 70px);z-index:1;width:140px;height:30px;box-shadow:0 -8px 10px 0 rgba(64,72,191,.2);border-radius:10px 10px 0 0}.ec-component-board-container-page-wrap.full .board--wing .q-icon{transform:rotate(90deg)}.ec-component-board-container-page-wrap.full.minify{transform:translateY(100%)}.ec-component-board-container-page-wrap.full.minify .board--wing .q-icon{transform:rotate(-90deg)}.ec-component-board-container-page-wrap.south{min-width:100px;min-height:100px;left:50%;bottom:11px;transform:translateX(-62%);background:none}.ec-component-board-container-page-wrap.south .board--panels .board--panel-container{position:inherit;padding:0}.ec-component-board-container-page-wrap.south .board--wing{display:none}.ec-component-board-container-page-wrap.south .board--wing .q-icon{display:none}.ec-component-board-container-page-wrap.south.minify{display:none}.ec-component-board-container-page-wrap.south.minify .board--wing .q-icon{display:none}.custom-month-range .el-month-table .current .cell{background-color:var(--el-color-primary);color:#fff !important}.ec-component-svg-icon{display:inline-block;overflow:hidden;vertical-align:-0.15em;fill:currentColor}.svg-icon-spin{animation:loadingCircle 1s infinite linear}.app-iconify{display:inline-block;vertical-align:middle}.app-iconify-spin svg{animation:loadingCircle 1s infinite linear}span.iconify{display:block;min-width:1em;min-height:1em;background-color:rgba(225,223,223,.55);border-radius:100%}.ec-component-input-password :deep(.el-input__clear){margin-left:5px}.ec-component-input-password__bar{background-color:var(--el-text-color-disabled);border-radius:var(--el-border-radius-base)}.ec-component-input-password__bar::before,.ec-component-input-password__bar::after{position:absolute;z-index:10;display:block;width:20%;height:inherit;background-color:rgba(0,0,0,0);border-color:var(--el-color-white);border-style:solid;border-width:0 5px;content:""}.ec-component-input-password__bar::before{left:20%}.ec-component-input-password__bar::after{right:20%}.ec-component-input-password__bar--fill{position:absolute;width:0;height:inherit;background-color:rgba(0,0,0,0);border-radius:inherit;transition:width .5s ease-in-out,background .25s}.ec-component-input-password__bar--fill[data-score="0"]{width:20%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="1"]{width:40%;background-color:var(--el-color-danger)}.ec-component-input-password__bar--fill[data-score="2"]{width:60%;background-color:var(--el-color-warning)}.ec-component-input-password__bar--fill[data-score="3"]{width:80%;background-color:var(--el-color-success)}.ec-component-input-password__bar--fill[data-score="4"]{width:100%;background-color:var(--el-color-success)}.ec-component-input-password--mini>.ec-component-input-password__bar{border-radius:var(--el-border-radius-small)}.component.modal{position:fixed}.component.modal.maximum .modal--body,.component.modal.maximum,.component.modal.modally,.component.modal.modally.maximum .modal--body{top:0 !important;left:0 !important;width:100% !important;height:100% !important}.component.modal.modally:before{content:"";display:block;position:absolute;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:-1}.component.modal .modal--body{display:flex;flex:1;border-radius:.3rem;background:rgba(0,0,0,0);box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.3)}.component.modal.modally .modal--body{position:absolute}.component.modal .modal--content{position:relative;flex:1;display:flex;background:#fff}.component-modal-page-wrap{display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body{height:100%;width:100%;display:flex;flex-direction:column;min-height:0}.component-modal-page-wrap .component-modal-body .component-modal-header{position:relative;width:100%;height:40px;background:gray}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-main-container-wrap{width:100%;height:100%;overflow:hidden;display:flex;align-items:center}.component-modal-page-wrap .component-modal-body .component-modal-header .modal-header-right-control-wrap{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;justify-content:flex-end;align-items:center}.component-modal-page-wrap .component-modal-body .component-modal-content{flex:1}.component-modal-page-wrap .component-modal-body .component-modal-footer{display:flex;justify-content:center;padding:10px 0}.window--enter-active{animation:animate-window-enter-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}.window--leave-active{animation:animate-window-leave-active 200ms cubic-bezier(0.39, 0.575, 0.565, 1) both}@keyframes animate-window-enter-active{0%{transform:scale(0.5);opacity:0}100%{transform:scale(1);opacity:1}}@keyframes animate-window-leave-active{0%{transform:scale(1);opacity:1}100%{transform:scale(0.5);opacity:0}}.component.stateful{position:relative;flex:1}.component.stateful .stateful--content{display:flex;position:absolute;width:100%;height:100%;left:0;top:0}.component.stateful .stateful--content.cover{filter:blur(1.25px)}.component.stateful .stateful--cover{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center}.component.stateful .stateful--cover .cover--icon{margin-right:10px}.component.stateful .stateful--cover .cover--box{display:flex;align-items:center;justify-content:center;padding:50px 70px;border-radius:.8rem;box-shadow:.1rem .1rem 1.5rem .1rem rgba(64,72,191,.15);position:relative;overflow:hidden;width:auto;height:auto}.component.stateful .stateful--cover .cover--text{font-size:20px;margin-bottom:2px;font-weight:400;text-shadow:0 0 rgba(64,72,191,.3)}.ec-chart-toolbox-wrap{height:100%;width:100%;min-height:0;min-width:0}.ec-chart-toolbox-wrap .tools-container{min-height:0;display:flex;justify-content:flex-end;cursor:pointer;right:0px;top:0px;gap:10px;z-index:9999}.ec-chart-toolbox-wrap .tools-container .app-iconify{cursor:pointer !important;transition:all .5s ease}.ec-chart-toolbox-wrap .tools-container .app-iconify:hover{transition:all .5s ease;box-shadow:0px 1px 10px 0px rgba(0,0,0,.05),0px 4px 5px 0px rgba(0,0,0,.08),0px 2px 4px -1px rgba(0,0,0,.12)}.wrap-el{position:relative;float:left;width:100%;height:100%;overflow:hidden}.video-player-toolbar{color:#fff;position:absolute;left:0;right:0;bottom:0;height:30px;background:rgba(0,0,0,.5);display:flex;align-items:center;gap:10px;justify-content:flex-end;padding:0px 12px;z-index:1000}.video-player-toolbar .app-iconify{cursor:pointer}
|