vxe-table 4.7.64 → 4.7.66
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/es/grid/src/grid.js +21 -11
- package/es/locale/lang/en-US.js +17 -8
- package/es/locale/lang/es-ES.js +17 -8
- package/es/locale/lang/hu-HU.js +624 -0
- package/es/locale/lang/ja-JP.js +17 -8
- package/es/locale/lang/ko-KR.js +634 -0
- package/es/locale/lang/pt-BR.js +17 -8
- package/es/locale/lang/ru-RU.js +634 -0
- package/es/locale/lang/vi-VN.js +634 -0
- package/es/locale/lang/zh-CN.js +17 -8
- package/es/locale/lang/zh-TC.js +75 -66
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/custom/panel.js +12 -11
- package/es/table/module/edit/hook.js +11 -10
- package/es/table/module/export/hook.js +10 -6
- package/es/table/render/index.js +95 -84
- package/es/table/src/table.js +22 -2
- package/es/table/style.css +8 -4
- package/es/table/style.min.css +1 -1
- package/es/toolbar/src/toolbar.js +7 -7
- package/es/ui/index.js +6 -4
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +8 -4
- package/es/vxe-table/style.min.css +1 -1
- package/lib/grid/src/grid.js +25 -14
- package/lib/grid/src/grid.min.js +1 -1
- package/lib/index.umd.js +227 -150
- package/lib/index.umd.min.js +1 -1
- package/lib/locale/lang/en-US.js +17 -8
- package/lib/locale/lang/en-US.min.js +1 -1
- package/lib/locale/lang/en-US.umd.js +17 -8
- package/lib/locale/lang/es-ES.js +17 -8
- package/lib/locale/lang/es-ES.min.js +1 -1
- package/lib/locale/lang/es-ES.umd.js +17 -8
- package/lib/locale/lang/hu-HU.js +630 -0
- package/lib/locale/lang/hu-HU.min.js +1 -0
- package/lib/locale/lang/ja-JP.js +17 -8
- package/lib/locale/lang/ja-JP.min.js +1 -1
- package/lib/locale/lang/ja-JP.umd.js +17 -8
- package/lib/locale/lang/ko-KR.js +640 -0
- package/lib/locale/lang/ko-KR.min.js +1 -0
- package/lib/locale/lang/pt-BR.js +17 -8
- package/lib/locale/lang/pt-BR.min.js +1 -1
- package/lib/locale/lang/pt-BR.umd.js +17 -8
- package/lib/locale/lang/ru-RU.js +640 -0
- package/lib/locale/lang/ru-RU.min.js +1 -0
- package/lib/locale/lang/vi-VN.js +640 -0
- package/lib/locale/lang/vi-VN.min.js +1 -0
- package/lib/locale/lang/zh-CN.js +17 -8
- package/lib/locale/lang/zh-CN.min.js +1 -1
- package/lib/locale/lang/zh-CN.umd.js +17 -8
- package/lib/locale/lang/zh-HK.min.js +1 -1
- package/lib/locale/lang/zh-HK.umd.js +75 -66
- package/lib/locale/lang/zh-MO.min.js +1 -1
- package/lib/locale/lang/zh-MO.umd.js +75 -66
- package/lib/locale/lang/zh-TC.js +75 -66
- package/lib/locale/lang/zh-TC.min.js +1 -1
- package/lib/locale/lang/zh-TC.umd.js +75 -66
- package/lib/locale/lang/zh-TW.min.js +1 -1
- package/lib/locale/lang/zh-TW.umd.js +75 -66
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/custom/panel.js +18 -11
- package/lib/table/module/custom/panel.min.js +1 -1
- package/lib/table/module/edit/hook.js +11 -13
- package/lib/table/module/edit/hook.min.js +1 -1
- package/lib/table/module/export/hook.js +12 -6
- package/lib/table/module/export/hook.min.js +1 -1
- package/lib/table/render/index.js +98 -84
- package/lib/table/render/index.min.js +1 -1
- package/lib/table/src/table.js +22 -2
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/style/style.css +8 -4
- package/lib/table/style/style.min.css +1 -1
- package/lib/toolbar/src/toolbar.js +17 -7
- package/lib/toolbar/src/toolbar.min.js +1 -1
- package/lib/ui/index.js +10 -8
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-table/style/style.css +8 -4
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/grid/src/grid.ts +22 -11
- package/packages/locale/lang/en-US.ts +17 -8
- package/packages/locale/lang/es-ES.ts +17 -8
- package/packages/locale/lang/hu-HU.ts +626 -0
- package/packages/locale/lang/ja-JP.ts +17 -8
- package/packages/locale/lang/ko-KR.ts +636 -0
- package/packages/locale/lang/pt-BR.ts +17 -8
- package/packages/locale/lang/ru-RU.ts +636 -0
- package/packages/locale/lang/vi-VN.ts +636 -0
- package/packages/locale/lang/zh-CN.ts +17 -8
- package/packages/locale/lang/zh-TC.ts +75 -66
- package/packages/table/module/custom/panel.ts +13 -12
- package/packages/table/module/edit/hook.ts +11 -10
- package/packages/table/module/export/hook.ts +10 -6
- package/packages/table/render/index.ts +95 -84
- package/packages/table/src/table.ts +25 -3
- package/packages/toolbar/src/toolbar.ts +8 -8
- package/packages/ui/index.ts +4 -3
- package/styles/components/table.scss +6 -3
- /package/es/{iconfont.1723218795604.ttf → iconfont.1724145396059.ttf} +0 -0
- /package/es/{iconfont.1723218795604.woff → iconfont.1724145396059.woff} +0 -0
- /package/es/{iconfont.1723218795604.woff2 → iconfont.1724145396059.woff2} +0 -0
- /package/lib/{iconfont.1723218795604.ttf → iconfont.1724145396059.ttf} +0 -0
- /package/lib/{iconfont.1723218795604.woff → iconfont.1724145396059.woff} +0 -0
- /package/lib/{iconfont.1723218795604.woff2 → iconfont.1724145396059.woff2} +0 -0
package/es/locale/lang/ja-JP.js
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 已废弃
|
|
3
|
-
* @deprecated
|
|
4
|
-
*/
|
|
5
1
|
export default {
|
|
6
2
|
vxe: {
|
|
7
3
|
base: {
|
|
@@ -23,7 +19,7 @@ export default {
|
|
|
23
19
|
useErr: '"{0}" モジュールをインストールする際にエラーが発生し、順序が正しくない可能性がある。依存するモジュールはTableの前にインストールする必要がある',
|
|
24
20
|
barUnableLink: 'ツールバーはフォームを関連付けることができない',
|
|
25
21
|
expandContent: '拡張行スロットは "content" である必要があります。確認してください',
|
|
26
|
-
reqComp: 'Require "{0}" component, check whether the install is correct',
|
|
22
|
+
reqComp: 'Require "{0}" component, check whether the install is correct. https://vxeui.com/#/start/useGlobal',
|
|
27
23
|
reqModule: '"{0}" モジュールが必要です',
|
|
28
24
|
reqProp: '必要な "{0}" パラメーターが欠落しているため、エラーが発生する可能性があります',
|
|
29
25
|
emptyProp: '"{0}" プロパティは空白が許可されていません',
|
|
@@ -53,6 +49,7 @@ export default {
|
|
|
53
49
|
emptyText: 'データがありません',
|
|
54
50
|
allTitle: '全て選択/取消',
|
|
55
51
|
seqTitle: 'N/S',
|
|
52
|
+
actionTitle: 'Action',
|
|
56
53
|
confirmFilter: 'OK',
|
|
57
54
|
resetFilter: 'リセット',
|
|
58
55
|
allFilter: '全て',
|
|
@@ -309,7 +306,9 @@ export default {
|
|
|
309
306
|
reUpload: 'Re upload',
|
|
310
307
|
uploadProgress: 'Uploading {0}%',
|
|
311
308
|
uploadErr: 'Fail to upload',
|
|
312
|
-
uploadSuccess: 'Successfully upload'
|
|
309
|
+
uploadSuccess: 'Successfully upload',
|
|
310
|
+
moreBtnText: 'More ({0})',
|
|
311
|
+
viewItemTitle: 'click to view'
|
|
313
312
|
},
|
|
314
313
|
formDesign: {
|
|
315
314
|
formName: 'Form name',
|
|
@@ -340,6 +339,7 @@ export default {
|
|
|
340
339
|
group: {
|
|
341
340
|
base: 'Base control',
|
|
342
341
|
layout: 'Layout control',
|
|
342
|
+
system: 'System control',
|
|
343
343
|
advanced: 'Advanced control'
|
|
344
344
|
},
|
|
345
345
|
copyTitle: 'Copy_{0}',
|
|
@@ -348,7 +348,8 @@ export default {
|
|
|
348
348
|
textarea: 'Textarea',
|
|
349
349
|
select: 'Select',
|
|
350
350
|
row: 'Row/column',
|
|
351
|
-
title: '
|
|
351
|
+
title: 'Title',
|
|
352
|
+
text: 'Text',
|
|
352
353
|
subtable: 'Subtable',
|
|
353
354
|
VxeSwitch: 'Yes/no',
|
|
354
355
|
VxeInput: 'Input',
|
|
@@ -422,7 +423,15 @@ export default {
|
|
|
422
423
|
},
|
|
423
424
|
listDesign: {
|
|
424
425
|
fieldSettingTab: 'Field setting',
|
|
425
|
-
listSettingTab: 'List setting'
|
|
426
|
+
listSettingTab: 'List setting',
|
|
427
|
+
activeBtn: {
|
|
428
|
+
ActionButtonUpdate: 'Edit',
|
|
429
|
+
ActionButtonDelete: 'Delete'
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
text: {
|
|
433
|
+
copySuccess: 'Successfully copied to clipboard.',
|
|
434
|
+
copyError: 'The current environment does not support this operation.'
|
|
426
435
|
},
|
|
427
436
|
/**
|
|
428
437
|
* 扩展插件
|