@vyr/design 0.0.19 → 0.0.21
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/package.json +1 -1
- package/src/components/Loading.vue +1 -1
- package/src/components/utils/Confirm.ts +1 -1
- package/src/font/demo_index.html +1315 -1292
- package/src/font/iconfont.css +211 -207
- package/src/font/iconfont.js +1 -1
- package/src/font/iconfont.json +352 -345
- package/src/font/iconfont.ttf +0 -0
- package/src/font/iconfont.woff +0 -0
- package/src/font/iconfont.woff2 +0 -0
- package/src/locale/LanguageProvider.ts +2 -0
- package/src/theme/index.ts +4 -0
package/src/font/iconfont.ttf
CHANGED
|
Binary file
|
package/src/font/iconfont.woff
CHANGED
|
Binary file
|
package/src/font/iconfont.woff2
CHANGED
|
Binary file
|
|
@@ -4,6 +4,7 @@ interface ZhCNLanguageProvider extends LanguageProvider {
|
|
|
4
4
|
'input.placeholder': string
|
|
5
5
|
'select.placeholder': string
|
|
6
6
|
'notify.send.notMessage': string
|
|
7
|
+
'confirm.title.default': string
|
|
7
8
|
'confirm.state.notFound': string
|
|
8
9
|
'confirm.button.submit': string
|
|
9
10
|
'confirm.button.cancel': string
|
|
@@ -21,6 +22,7 @@ const zhCnLanguageProvider: ZhCNLanguageProvider = {
|
|
|
21
22
|
'input.placeholder': '请输入内容',
|
|
22
23
|
'select.placeholder': '请选择',
|
|
23
24
|
'notify.send.notMessage': '消息已被忽略,缺少提示信息!',
|
|
25
|
+
'confirm.title.default': '系统提示',
|
|
24
26
|
'confirm.state.notFound': '未初始化确认框的状态',
|
|
25
27
|
'confirm.button.submit': '确 认',
|
|
26
28
|
'confirm.button.cancel': '取 消',
|
package/src/theme/index.ts
CHANGED
|
@@ -62,6 +62,8 @@ interface ThemeConfig {
|
|
|
62
62
|
popoverBackgroundColor: string
|
|
63
63
|
|
|
64
64
|
notifyZIndex: number
|
|
65
|
+
|
|
66
|
+
loadingZIndex: number
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
const transform = (source: string, split: RegExp, replace: RegExp) => {
|
|
@@ -132,6 +134,8 @@ class Theme {
|
|
|
132
134
|
popoverBackgroundColor: 'rgba(30, 30, 30, 1)',
|
|
133
135
|
|
|
134
136
|
notifyZIndex: 2000,
|
|
137
|
+
|
|
138
|
+
loadingZIndex: 10000,
|
|
135
139
|
})
|
|
136
140
|
|
|
137
141
|
static update(config: Partial<ThemeConfig>) {
|