@vxe-ui/core 0.10.2 → 0.10.4
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.en.md +31 -31
- package/README.md +31 -31
- package/README.zh-TW.md +31 -31
- package/es/index.esm.js +4 -2
- package/es/language/en-US.js +76 -4
- package/es/language/es-ES.js +76 -4
- package/es/language/ja-JP.js +76 -4
- package/es/language/pt-BR.js +76 -4
- package/es/language/zh-CN.js +76 -4
- package/es/language/zh-TC.js +77 -5
- package/es/src/core.js +3 -4
- package/es/src/i18n.js +2 -1
- package/es/src/i18nStore.js +3 -2
- package/es/src/log.js +1 -1
- package/lib/index.common.js +4 -2
- package/lib/index.umd.js +104 -28
- package/lib/index.umd.min.js +1 -1
- package/lib/language/en-US.js +76 -4
- package/lib/language/en-US.min.js +1 -1
- package/lib/language/en-US.umd.js +76 -4
- package/lib/language/es-ES.js +76 -4
- package/lib/language/es-ES.min.js +1 -1
- package/lib/language/es-ES.umd.js +76 -4
- package/lib/language/ja-JP.js +76 -4
- package/lib/language/ja-JP.min.js +1 -1
- package/lib/language/ja-JP.umd.js +76 -4
- package/lib/language/pt-BR.js +76 -4
- package/lib/language/pt-BR.min.js +1 -1
- package/lib/language/pt-BR.umd.js +76 -4
- package/lib/language/zh-CN.js +76 -4
- package/lib/language/zh-CN.min.js +1 -1
- package/lib/language/zh-CN.umd.js +76 -4
- package/lib/language/zh-HK.js +1 -1
- package/lib/language/zh-HK.min.js +1 -1
- package/lib/language/zh-HK.umd.js +77 -5
- package/lib/language/zh-MO.js +1 -1
- package/lib/language/zh-MO.min.js +1 -1
- package/lib/language/zh-MO.umd.js +77 -5
- package/lib/language/zh-TC.js +77 -5
- package/lib/language/zh-TC.min.js +1 -1
- package/lib/language/zh-TC.umd.js +77 -5
- package/lib/language/zh-TW.js +1 -1
- package/lib/language/zh-TW.min.js +1 -1
- package/lib/language/zh-TW.umd.js +77 -5
- package/lib/src/clipboard.js +1 -1
- package/lib/src/commands.js +1 -1
- package/lib/src/core.js +4 -5
- package/lib/src/core.min.js +1 -1
- package/lib/src/event.js +1 -1
- package/lib/src/formats.js +1 -1
- package/lib/src/hooks.js +1 -1
- package/lib/src/i18n.js +6 -2
- package/lib/src/i18n.min.js +1 -1
- package/lib/src/i18nStore.js +3 -2
- package/lib/src/i18nStore.min.js +1 -1
- package/lib/src/interceptor.js +1 -1
- package/lib/src/log.js +1 -1
- package/lib/src/log.min.js +1 -1
- package/lib/src/menus.js +1 -1
- package/lib/src/renderer.js +1 -1
- package/lib/src/resize.js +1 -1
- package/lib/src/store.js +1 -1
- package/lib/src/validators.js +1 -1
- package/package.json +76 -76
- package/packages/index.ts +4 -2
- package/packages/language/en-US.ts +76 -4
- package/packages/language/es-ES.ts +76 -4
- package/packages/language/ja-JP.ts +76 -4
- package/packages/language/pt-BR.ts +76 -4
- package/packages/language/zh-CN.ts +76 -4
- package/packages/language/zh-TC.ts +77 -5
- package/packages/src/core.ts +2 -3
- package/packages/src/i18n.ts +2 -1
- package/packages/src/i18nStore.ts +4 -2
package/README.en.md
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
# vxe-core
|
|
2
|
-
|
|
3
|
-
[简体中文](README.md) | [繁體中文](README.zh-TW.md) | English
|
|
4
|
-
|
|
5
|
-
Vxe UI core library.
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
```shell
|
|
10
|
-
npm install @vxe-ui/core
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
```javascript
|
|
14
|
-
// ...
|
|
15
|
-
import VxeCore from '@vxe-ui/core'
|
|
16
|
-
// ...
|
|
17
|
-
|
|
18
|
-
VxeCore.setConfig({
|
|
19
|
-
// ...
|
|
20
|
-
})
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## Contributors
|
|
24
|
-
|
|
25
|
-
Thank you to everyone who contributed to this project.
|
|
26
|
-
|
|
27
|
-
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
-
|
|
29
|
-
## License
|
|
30
|
-
|
|
31
|
-
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
[简体中文](README.md) | [繁體中文](README.zh-TW.md) | English
|
|
4
|
+
|
|
5
|
+
Vxe UI core library.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/README.md
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
# vxe-core
|
|
2
|
-
|
|
3
|
-
简体中文 | [繁體中文](README.zh-TW.md) | [English](README.en.md)
|
|
4
|
-
|
|
5
|
-
Vxe UI 核心库.
|
|
6
|
-
|
|
7
|
-
## 使用
|
|
8
|
-
|
|
9
|
-
```shell
|
|
10
|
-
npm install @vxe-ui/core
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
```javascript
|
|
14
|
-
// ...
|
|
15
|
-
import VxeCore from '@vxe-ui/core'
|
|
16
|
-
// ...
|
|
17
|
-
|
|
18
|
-
VxeCore.setConfig({
|
|
19
|
-
// ...
|
|
20
|
-
})
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## Contributors
|
|
24
|
-
|
|
25
|
-
Thank you to everyone who contributed to this project.
|
|
26
|
-
|
|
27
|
-
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
-
|
|
29
|
-
## License
|
|
30
|
-
|
|
31
|
-
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
简体中文 | [繁體中文](README.zh-TW.md) | [English](README.en.md)
|
|
4
|
+
|
|
5
|
+
Vxe UI 核心库.
|
|
6
|
+
|
|
7
|
+
## 使用
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/README.zh-TW.md
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
# vxe-core
|
|
2
|
-
|
|
3
|
-
[简体中文](README.md) | 繁體中文 | [English](README.en.md)
|
|
4
|
-
|
|
5
|
-
Vxe UI core library.
|
|
6
|
-
|
|
7
|
-
## 使用
|
|
8
|
-
|
|
9
|
-
```shell
|
|
10
|
-
npm install @vxe-ui/core
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
```javascript
|
|
14
|
-
// ...
|
|
15
|
-
import VxeCore from '@vxe-ui/core'
|
|
16
|
-
// ...
|
|
17
|
-
|
|
18
|
-
VxeCore.setConfig({
|
|
19
|
-
// ...
|
|
20
|
-
})
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## Contributors
|
|
24
|
-
|
|
25
|
-
Thank you to everyone who contributed to this project.
|
|
26
|
-
|
|
27
|
-
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
-
|
|
29
|
-
## License
|
|
30
|
-
|
|
31
|
-
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
[简体中文](README.md) | 繁體中文 | [English](README.en.md)
|
|
4
|
+
|
|
5
|
+
Vxe UI core library.
|
|
6
|
+
|
|
7
|
+
## 使用
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/es/index.esm.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import VxeUI, { setI18n, setTheme } from './src/core';
|
|
1
|
+
import VxeUI, { setI18n, setLanguage, setTheme } from './src/core';
|
|
2
2
|
import zhCN from './language/zh-CN';
|
|
3
3
|
// 默认中文
|
|
4
|
-
|
|
4
|
+
const defaultLanguage = 'zh-CN';
|
|
5
|
+
setI18n(defaultLanguage, zhCN);
|
|
6
|
+
setLanguage(defaultLanguage);
|
|
5
7
|
setTheme('light');
|
|
6
8
|
export * from './src/core';
|
|
7
9
|
export default VxeUI;
|
package/es/language/en-US.js
CHANGED
|
@@ -266,16 +266,88 @@ export default {
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
formDesign: {
|
|
269
|
+
formName: 'Form name',
|
|
270
|
+
widgetPropTab: 'Field property',
|
|
271
|
+
widgetFormTab: 'Form property',
|
|
272
|
+
styleSetting: {
|
|
273
|
+
btn: 'Style setting',
|
|
274
|
+
title: 'Form style setting',
|
|
275
|
+
layoutTitle: 'Field layout',
|
|
276
|
+
verticalLayout: 'Vertical layout',
|
|
277
|
+
horizontalLayout: 'Horizontal layout',
|
|
278
|
+
styleTitle: 'Title style',
|
|
279
|
+
boldTitle: 'Bold title',
|
|
280
|
+
fontBold: 'Bold',
|
|
281
|
+
fontNormal: 'Normal',
|
|
282
|
+
colonTitle: 'Display colon',
|
|
283
|
+
colonVisible: 'Visible',
|
|
284
|
+
colonHidden: 'Hidden',
|
|
285
|
+
alignTitle: 'Title align',
|
|
286
|
+
widthTitle: 'Title width',
|
|
287
|
+
alignLeft: 'Left',
|
|
288
|
+
alignRight: 'Right',
|
|
289
|
+
unitPx: 'Px',
|
|
290
|
+
unitPct: 'Pct'
|
|
291
|
+
},
|
|
269
292
|
widget: {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
293
|
+
group: {
|
|
294
|
+
base: 'Base control',
|
|
295
|
+
layout: 'Layout control',
|
|
296
|
+
advanced: 'Advanced control'
|
|
297
|
+
},
|
|
273
298
|
copyTitle: 'Copy_{0}',
|
|
274
299
|
component: {
|
|
275
300
|
input: 'Input',
|
|
276
301
|
textarea: 'Textarea',
|
|
277
302
|
select: 'Select',
|
|
278
|
-
row: '
|
|
303
|
+
row: 'Row/column',
|
|
304
|
+
title: 'Text',
|
|
305
|
+
VxeSwitch: 'Yes/no',
|
|
306
|
+
VxeInput: 'Input',
|
|
307
|
+
VxeTextarea: 'Textarea',
|
|
308
|
+
VxeSelect: 'Select',
|
|
309
|
+
VxeRadioGroup: 'Radio',
|
|
310
|
+
VxeCheckboxGroup: 'Checkbox'
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
widgetProp: {
|
|
314
|
+
name: 'Field name',
|
|
315
|
+
placeholder: 'Field placeholder',
|
|
316
|
+
required: 'Required',
|
|
317
|
+
displaySetting: {
|
|
318
|
+
name: 'Display setting',
|
|
319
|
+
pc: 'PC',
|
|
320
|
+
mobile: 'Mobile',
|
|
321
|
+
visible: 'Visible',
|
|
322
|
+
hidden: 'Hidden'
|
|
323
|
+
},
|
|
324
|
+
dataSource: {
|
|
325
|
+
name: 'Data source',
|
|
326
|
+
defValue: 'Option {0}',
|
|
327
|
+
addOption: 'Add option',
|
|
328
|
+
batchEditOption: 'Batch edit',
|
|
329
|
+
batchEditTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys and can be copied from Excel or WPS.',
|
|
330
|
+
buildOption: 'Build option'
|
|
331
|
+
},
|
|
332
|
+
rowProp: {
|
|
333
|
+
colSize: 'Number of columns',
|
|
334
|
+
col2: 'Two columns',
|
|
335
|
+
col3: 'Three columns',
|
|
336
|
+
col4: 'Four columns',
|
|
337
|
+
col6: 'Six columns',
|
|
338
|
+
layout: 'Layout'
|
|
339
|
+
},
|
|
340
|
+
textProp: {
|
|
341
|
+
name: 'Content',
|
|
342
|
+
alignTitle: 'Align',
|
|
343
|
+
alignLeft: 'Left',
|
|
344
|
+
alignCenter: 'Center',
|
|
345
|
+
alignRight: 'Right',
|
|
346
|
+
colorTitle: 'Color',
|
|
347
|
+
sizeTitle: 'Font size',
|
|
348
|
+
boldTitle: 'Font bold',
|
|
349
|
+
fontNormal: 'Normal',
|
|
350
|
+
fontBold: 'Bold'
|
|
279
351
|
}
|
|
280
352
|
}
|
|
281
353
|
},
|
package/es/language/es-ES.js
CHANGED
|
@@ -266,16 +266,88 @@ export default {
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
formDesign: {
|
|
269
|
+
formName: 'Form name',
|
|
270
|
+
widgetPropTab: 'Field property',
|
|
271
|
+
widgetFormTab: 'Form property',
|
|
272
|
+
styleSetting: {
|
|
273
|
+
btn: 'Style setting',
|
|
274
|
+
title: 'Form style setting',
|
|
275
|
+
layoutTitle: 'Field layout',
|
|
276
|
+
verticalLayout: 'Vertical layout',
|
|
277
|
+
horizontalLayout: 'Horizontal layout',
|
|
278
|
+
styleTitle: 'Title style',
|
|
279
|
+
boldTitle: 'Bold title',
|
|
280
|
+
fontBold: 'Bold',
|
|
281
|
+
fontNormal: 'Normal',
|
|
282
|
+
colonTitle: 'Display colon',
|
|
283
|
+
colonVisible: 'Visible',
|
|
284
|
+
colonHidden: 'Hidden',
|
|
285
|
+
alignTitle: 'Title align',
|
|
286
|
+
widthTitle: 'Title width',
|
|
287
|
+
alignLeft: 'Left',
|
|
288
|
+
alignRight: 'Right',
|
|
289
|
+
unitPx: 'Px',
|
|
290
|
+
unitPct: 'Pct'
|
|
291
|
+
},
|
|
269
292
|
widget: {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
293
|
+
group: {
|
|
294
|
+
base: 'Base control',
|
|
295
|
+
layout: 'Layout control',
|
|
296
|
+
advanced: 'Advanced control'
|
|
297
|
+
},
|
|
273
298
|
copyTitle: 'Copy_{0}',
|
|
274
299
|
component: {
|
|
275
300
|
input: 'Input',
|
|
276
301
|
textarea: 'Textarea',
|
|
277
302
|
select: 'Select',
|
|
278
|
-
row: '
|
|
303
|
+
row: 'Row/column',
|
|
304
|
+
title: 'Text',
|
|
305
|
+
VxeSwitch: 'Yes/no',
|
|
306
|
+
VxeInput: 'Input',
|
|
307
|
+
VxeTextarea: 'Textarea',
|
|
308
|
+
VxeSelect: 'Select',
|
|
309
|
+
VxeRadioGroup: 'Radio',
|
|
310
|
+
VxeCheckboxGroup: 'Checkbox'
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
widgetProp: {
|
|
314
|
+
name: 'Field name',
|
|
315
|
+
placeholder: 'Field placeholder',
|
|
316
|
+
required: 'Required',
|
|
317
|
+
displaySetting: {
|
|
318
|
+
name: 'Display setting',
|
|
319
|
+
pc: 'PC',
|
|
320
|
+
mobile: 'Mobile',
|
|
321
|
+
visible: 'Visible',
|
|
322
|
+
hidden: 'Hidden'
|
|
323
|
+
},
|
|
324
|
+
dataSource: {
|
|
325
|
+
name: 'Data source',
|
|
326
|
+
defValue: 'Option {0}',
|
|
327
|
+
addOption: 'Add option',
|
|
328
|
+
batchEditOption: 'Batch edit',
|
|
329
|
+
batchEditTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys and can be copied from Excel or WPS.',
|
|
330
|
+
buildOption: 'Build option'
|
|
331
|
+
},
|
|
332
|
+
rowProp: {
|
|
333
|
+
colSize: 'Number of columns',
|
|
334
|
+
col2: 'Two columns',
|
|
335
|
+
col3: 'Three columns',
|
|
336
|
+
col4: 'Four columns',
|
|
337
|
+
col6: 'Six columns',
|
|
338
|
+
layout: 'Layout'
|
|
339
|
+
},
|
|
340
|
+
textProp: {
|
|
341
|
+
name: 'Content',
|
|
342
|
+
alignTitle: 'Align',
|
|
343
|
+
alignLeft: 'Left',
|
|
344
|
+
alignCenter: 'Center',
|
|
345
|
+
alignRight: 'Right',
|
|
346
|
+
colorTitle: 'Color',
|
|
347
|
+
sizeTitle: 'Font size',
|
|
348
|
+
boldTitle: 'Font bold',
|
|
349
|
+
fontNormal: 'Normal',
|
|
350
|
+
fontBold: 'Bold'
|
|
279
351
|
}
|
|
280
352
|
}
|
|
281
353
|
},
|
package/es/language/ja-JP.js
CHANGED
|
@@ -266,16 +266,88 @@ export default {
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
formDesign: {
|
|
269
|
+
formName: 'Form name',
|
|
270
|
+
widgetPropTab: 'Field property',
|
|
271
|
+
widgetFormTab: 'Form property',
|
|
272
|
+
styleSetting: {
|
|
273
|
+
btn: 'Style setting',
|
|
274
|
+
title: 'Form style setting',
|
|
275
|
+
layoutTitle: 'Field layout',
|
|
276
|
+
verticalLayout: 'Vertical layout',
|
|
277
|
+
horizontalLayout: 'Horizontal layout',
|
|
278
|
+
styleTitle: 'Title style',
|
|
279
|
+
boldTitle: 'Bold title',
|
|
280
|
+
fontBold: 'Bold',
|
|
281
|
+
fontNormal: 'Normal',
|
|
282
|
+
colonTitle: 'Display colon',
|
|
283
|
+
colonVisible: 'Visible',
|
|
284
|
+
colonHidden: 'Hidden',
|
|
285
|
+
alignTitle: 'Title align',
|
|
286
|
+
widthTitle: 'Title width',
|
|
287
|
+
alignLeft: 'Left',
|
|
288
|
+
alignRight: 'Right',
|
|
289
|
+
unitPx: 'Px',
|
|
290
|
+
unitPct: 'Pct'
|
|
291
|
+
},
|
|
269
292
|
widget: {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
293
|
+
group: {
|
|
294
|
+
base: 'Base control',
|
|
295
|
+
layout: 'Layout control',
|
|
296
|
+
advanced: 'Advanced control'
|
|
297
|
+
},
|
|
273
298
|
copyTitle: 'Copy_{0}',
|
|
274
299
|
component: {
|
|
275
300
|
input: 'Input',
|
|
276
301
|
textarea: 'Textarea',
|
|
277
302
|
select: 'Select',
|
|
278
|
-
row: '
|
|
303
|
+
row: 'Row/column',
|
|
304
|
+
title: 'Text',
|
|
305
|
+
VxeSwitch: 'Yes/no',
|
|
306
|
+
VxeInput: 'Input',
|
|
307
|
+
VxeTextarea: 'Textarea',
|
|
308
|
+
VxeSelect: 'Select',
|
|
309
|
+
VxeRadioGroup: 'Radio',
|
|
310
|
+
VxeCheckboxGroup: 'Checkbox'
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
widgetProp: {
|
|
314
|
+
name: 'Field name',
|
|
315
|
+
placeholder: 'Field placeholder',
|
|
316
|
+
required: 'Required',
|
|
317
|
+
displaySetting: {
|
|
318
|
+
name: 'Display setting',
|
|
319
|
+
pc: 'PC',
|
|
320
|
+
mobile: 'Mobile',
|
|
321
|
+
visible: 'Visible',
|
|
322
|
+
hidden: 'Hidden'
|
|
323
|
+
},
|
|
324
|
+
dataSource: {
|
|
325
|
+
name: 'Data source',
|
|
326
|
+
defValue: 'Option {0}',
|
|
327
|
+
addOption: 'Add option',
|
|
328
|
+
batchEditOption: 'Batch edit',
|
|
329
|
+
batchEditTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys and can be copied from Excel or WPS.',
|
|
330
|
+
buildOption: 'Build option'
|
|
331
|
+
},
|
|
332
|
+
rowProp: {
|
|
333
|
+
colSize: 'Number of columns',
|
|
334
|
+
col2: 'Two columns',
|
|
335
|
+
col3: 'Three columns',
|
|
336
|
+
col4: 'Four columns',
|
|
337
|
+
col6: 'Six columns',
|
|
338
|
+
layout: 'Layout'
|
|
339
|
+
},
|
|
340
|
+
textProp: {
|
|
341
|
+
name: 'Content',
|
|
342
|
+
alignTitle: 'Align',
|
|
343
|
+
alignLeft: 'Left',
|
|
344
|
+
alignCenter: 'Center',
|
|
345
|
+
alignRight: 'Right',
|
|
346
|
+
colorTitle: 'Color',
|
|
347
|
+
sizeTitle: 'Font size',
|
|
348
|
+
boldTitle: 'Font bold',
|
|
349
|
+
fontNormal: 'Normal',
|
|
350
|
+
fontBold: 'Bold'
|
|
279
351
|
}
|
|
280
352
|
}
|
|
281
353
|
},
|
package/es/language/pt-BR.js
CHANGED
|
@@ -266,16 +266,88 @@ export default {
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
formDesign: {
|
|
269
|
+
formName: 'Form name',
|
|
270
|
+
widgetPropTab: 'Field property',
|
|
271
|
+
widgetFormTab: 'Form property',
|
|
272
|
+
styleSetting: {
|
|
273
|
+
btn: 'Style setting',
|
|
274
|
+
title: 'Form style setting',
|
|
275
|
+
layoutTitle: 'Field layout',
|
|
276
|
+
verticalLayout: 'Vertical layout',
|
|
277
|
+
horizontalLayout: 'Horizontal layout',
|
|
278
|
+
styleTitle: 'Title style',
|
|
279
|
+
boldTitle: 'Bold title',
|
|
280
|
+
fontBold: 'Bold',
|
|
281
|
+
fontNormal: 'Normal',
|
|
282
|
+
colonTitle: 'Display colon',
|
|
283
|
+
colonVisible: 'Visible',
|
|
284
|
+
colonHidden: 'Hidden',
|
|
285
|
+
alignTitle: 'Title align',
|
|
286
|
+
widthTitle: 'Title width',
|
|
287
|
+
alignLeft: 'Left',
|
|
288
|
+
alignRight: 'Right',
|
|
289
|
+
unitPx: 'Px',
|
|
290
|
+
unitPct: 'Pct'
|
|
291
|
+
},
|
|
269
292
|
widget: {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
293
|
+
group: {
|
|
294
|
+
base: 'Base control',
|
|
295
|
+
layout: 'Layout control',
|
|
296
|
+
advanced: 'Advanced control'
|
|
297
|
+
},
|
|
273
298
|
copyTitle: 'Copy_{0}',
|
|
274
299
|
component: {
|
|
275
300
|
input: 'Input',
|
|
276
301
|
textarea: 'Textarea',
|
|
277
302
|
select: 'Select',
|
|
278
|
-
row: '
|
|
303
|
+
row: 'Row/column',
|
|
304
|
+
title: 'Text',
|
|
305
|
+
VxeSwitch: 'Yes/no',
|
|
306
|
+
VxeInput: 'Input',
|
|
307
|
+
VxeTextarea: 'Textarea',
|
|
308
|
+
VxeSelect: 'Select',
|
|
309
|
+
VxeRadioGroup: 'Radio',
|
|
310
|
+
VxeCheckboxGroup: 'Checkbox'
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
widgetProp: {
|
|
314
|
+
name: 'Field name',
|
|
315
|
+
placeholder: 'Field placeholder',
|
|
316
|
+
required: 'Required',
|
|
317
|
+
displaySetting: {
|
|
318
|
+
name: 'Display setting',
|
|
319
|
+
pc: 'PC',
|
|
320
|
+
mobile: 'Mobile',
|
|
321
|
+
visible: 'Visible',
|
|
322
|
+
hidden: 'Hidden'
|
|
323
|
+
},
|
|
324
|
+
dataSource: {
|
|
325
|
+
name: 'Data source',
|
|
326
|
+
defValue: 'Option {0}',
|
|
327
|
+
addOption: 'Add option',
|
|
328
|
+
batchEditOption: 'Batch edit',
|
|
329
|
+
batchEditTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys and can be copied from Excel or WPS.',
|
|
330
|
+
buildOption: 'Build option'
|
|
331
|
+
},
|
|
332
|
+
rowProp: {
|
|
333
|
+
colSize: 'Number of columns',
|
|
334
|
+
col2: 'Two columns',
|
|
335
|
+
col3: 'Three columns',
|
|
336
|
+
col4: 'Four columns',
|
|
337
|
+
col6: 'Six columns',
|
|
338
|
+
layout: 'Layout'
|
|
339
|
+
},
|
|
340
|
+
textProp: {
|
|
341
|
+
name: 'Content',
|
|
342
|
+
alignTitle: 'Align',
|
|
343
|
+
alignLeft: 'Left',
|
|
344
|
+
alignCenter: 'Center',
|
|
345
|
+
alignRight: 'Right',
|
|
346
|
+
colorTitle: 'Color',
|
|
347
|
+
sizeTitle: 'Font size',
|
|
348
|
+
boldTitle: 'Font bold',
|
|
349
|
+
fontNormal: 'Normal',
|
|
350
|
+
fontBold: 'Bold'
|
|
279
351
|
}
|
|
280
352
|
}
|
|
281
353
|
},
|
package/es/language/zh-CN.js
CHANGED
|
@@ -266,16 +266,88 @@ export default {
|
|
|
266
266
|
}
|
|
267
267
|
},
|
|
268
268
|
formDesign: {
|
|
269
|
+
formName: '表单名称',
|
|
270
|
+
widgetPropTab: '控件属性',
|
|
271
|
+
widgetFormTab: '表单属性',
|
|
272
|
+
styleSetting: {
|
|
273
|
+
btn: '样式设置',
|
|
274
|
+
title: '表单的样式设置',
|
|
275
|
+
layoutTitle: '控件布局',
|
|
276
|
+
verticalLayout: '上下布局',
|
|
277
|
+
horizontalLayout: '横向布局',
|
|
278
|
+
styleTitle: '标题样式',
|
|
279
|
+
boldTitle: '标题加粗',
|
|
280
|
+
fontBold: '加粗',
|
|
281
|
+
fontNormal: '常规',
|
|
282
|
+
colonTitle: '显示冒号',
|
|
283
|
+
colonVisible: '显示',
|
|
284
|
+
colonHidden: '隐藏',
|
|
285
|
+
alignTitle: '对齐方式',
|
|
286
|
+
widthTitle: '标题宽度',
|
|
287
|
+
alignLeft: '居左',
|
|
288
|
+
alignRight: '居右',
|
|
289
|
+
unitPx: '像素',
|
|
290
|
+
unitPct: '百分比'
|
|
291
|
+
},
|
|
269
292
|
widget: {
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
293
|
+
group: {
|
|
294
|
+
base: '基础控件',
|
|
295
|
+
layout: '布局控件',
|
|
296
|
+
advanced: '高级控件'
|
|
297
|
+
},
|
|
273
298
|
copyTitle: '副本_{0}',
|
|
274
299
|
component: {
|
|
275
300
|
input: '输入框',
|
|
276
301
|
textarea: '文本域',
|
|
277
302
|
select: '下拉框',
|
|
278
|
-
row: '一行多列'
|
|
303
|
+
row: '一行多列',
|
|
304
|
+
title: '文本',
|
|
305
|
+
VxeSwitch: '是/否',
|
|
306
|
+
VxeInput: '输入框',
|
|
307
|
+
VxeTextarea: '文本域',
|
|
308
|
+
VxeSelect: '下拉框',
|
|
309
|
+
VxeRadioGroup: '单选框',
|
|
310
|
+
VxeCheckboxGroup: '复选框'
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
widgetProp: {
|
|
314
|
+
name: '控件名称',
|
|
315
|
+
placeholder: '提示语',
|
|
316
|
+
required: '必填校验',
|
|
317
|
+
displaySetting: {
|
|
318
|
+
name: '显示设置',
|
|
319
|
+
pc: '电脑端',
|
|
320
|
+
mobile: '手机端',
|
|
321
|
+
visible: '显示',
|
|
322
|
+
hidden: '隐藏'
|
|
323
|
+
},
|
|
324
|
+
dataSource: {
|
|
325
|
+
name: '数据源',
|
|
326
|
+
defValue: '选项{0}',
|
|
327
|
+
addOption: '添加选项',
|
|
328
|
+
batchEditOption: '批量编辑',
|
|
329
|
+
batchEditTip: '每行对应一个选项,如果是分组,子项可以是空格或制表键开头,可从 Excel 或 WPS 中复制。',
|
|
330
|
+
buildOption: '生成选项'
|
|
331
|
+
},
|
|
332
|
+
rowProp: {
|
|
333
|
+
colSize: '列数',
|
|
334
|
+
col2: '两列',
|
|
335
|
+
col3: '三列',
|
|
336
|
+
col4: '四列',
|
|
337
|
+
col6: '六列',
|
|
338
|
+
layout: '布局'
|
|
339
|
+
},
|
|
340
|
+
textProp: {
|
|
341
|
+
name: '内容',
|
|
342
|
+
alignTitle: '对齐方式',
|
|
343
|
+
alignLeft: '居左',
|
|
344
|
+
alignCenter: '居中',
|
|
345
|
+
alignRight: '居右',
|
|
346
|
+
colorTitle: '字体颜色',
|
|
347
|
+
sizeTitle: '字体大小',
|
|
348
|
+
boldTitle: '字体加粗',
|
|
349
|
+
fontNormal: '常规',
|
|
350
|
+
fontBold: '加粗'
|
|
279
351
|
}
|
|
280
352
|
}
|
|
281
353
|
},
|