vxe-table 4.17.0-beta.9 → 4.17.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 +3 -4
- package/README.zh-TW.md +1 -1
- package/es/grid/src/grid.js +13 -5
- package/es/index.css +1 -1
- package/es/index.min.css +1 -1
- package/es/locale/lang/en-US.js +22 -22
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/table/module/menu/hook.js +2 -2
- package/es/table/src/body.js +3 -0
- package/es/table/src/footer.js +2 -0
- package/es/table/src/header.js +3 -0
- package/es/table/src/table.js +146 -35
- package/es/table/src/util.js +22 -19
- package/es/table/style.css +48 -2
- package/es/table/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-table/style.css +48 -2
- package/es/vxe-table/style.min.css +1 -1
- package/helper/vetur/attributes.json +1 -1
- package/helper/vetur/tags.json +1 -1
- package/lib/grid/src/grid.js +12 -4
- package/lib/grid/src/grid.min.js +1 -1
- package/lib/index.css +1 -1
- package/lib/index.min.css +1 -1
- package/lib/index.umd.js +59 -41
- package/lib/index.umd.min.js +1 -1
- package/lib/locale/lang/en-US.js +22 -22
- package/lib/locale/lang/en-US.min.js +1 -1
- package/lib/locale/lang/en-US.umd.js +22 -22
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/table/module/menu/hook.js +2 -0
- package/lib/table/module/menu/hook.min.js +1 -1
- package/lib/table/src/body.js +3 -0
- package/lib/table/src/body.min.js +1 -1
- package/lib/table/src/footer.js +2 -0
- package/lib/table/src/footer.min.js +1 -1
- package/lib/table/src/header.js +3 -0
- package/lib/table/src/header.min.js +1 -1
- package/lib/table/src/table.js +25 -16
- package/lib/table/src/table.min.js +1 -1
- package/lib/table/src/util.js +10 -19
- package/lib/table/src/util.min.js +1 -1
- package/lib/table/style/style.css +48 -2
- package/lib/table/style/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- 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 +48 -2
- package/lib/vxe-table/style/style.min.css +1 -1
- package/package.json +2 -2
- package/packages/grid/src/grid.ts +53 -45
- package/packages/locale/lang/en-US.ts +22 -22
- package/packages/table/module/menu/hook.ts +2 -2
- package/packages/table/src/body.ts +3 -0
- package/packages/table/src/footer.ts +2 -0
- package/packages/table/src/header.ts +3 -0
- package/packages/table/src/table.ts +147 -35
- package/packages/table/src/util.ts +30 -19
- package/styles/components/table.scss +90 -2
- /package/es/{iconfont.1760602279303.ttf → iconfont.1761181613193.ttf} +0 -0
- /package/es/{iconfont.1760602279303.woff → iconfont.1761181613193.woff} +0 -0
- /package/es/{iconfont.1760602279303.woff2 → iconfont.1761181613193.woff2} +0 -0
- /package/lib/{iconfont.1760602279303.ttf → iconfont.1761181613193.ttf} +0 -0
- /package/lib/{iconfont.1760602279303.woff → iconfont.1761181613193.woff} +0 -0
- /package/lib/{iconfont.1760602279303.woff2 → iconfont.1761181613193.woff2} +0 -0
package/es/locale/lang/en-US.js
CHANGED
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
fullStop: '。'
|
|
8
8
|
},
|
|
9
9
|
loading: {
|
|
10
|
-
text: '
|
|
10
|
+
text: 'Loading...'
|
|
11
11
|
},
|
|
12
12
|
error: {
|
|
13
13
|
downErr: 'Download failed',
|
|
@@ -181,7 +181,7 @@ export default {
|
|
|
181
181
|
insertBottom: 'Append at the bottom (append new data at the bottom of the table)'
|
|
182
182
|
},
|
|
183
183
|
impTitle: 'Import data',
|
|
184
|
-
impFile: '
|
|
184
|
+
impFile: 'File name',
|
|
185
185
|
impSelect: 'Select file',
|
|
186
186
|
impType: 'File type',
|
|
187
187
|
impOpts: 'Parameter settings',
|
|
@@ -207,9 +207,9 @@ export default {
|
|
|
207
207
|
},
|
|
208
208
|
printTitle: 'Print data',
|
|
209
209
|
expTitle: 'Export data',
|
|
210
|
-
expName: '
|
|
210
|
+
expName: 'File name',
|
|
211
211
|
expNamePlaceholder: 'Please enter a file name',
|
|
212
|
-
expSheetName: '
|
|
212
|
+
expSheetName: 'Title',
|
|
213
213
|
expSheetNamePlaceholder: 'Please enter a title',
|
|
214
214
|
expType: 'Save type',
|
|
215
215
|
expMode: 'Select data',
|
|
@@ -643,10 +643,10 @@ export default {
|
|
|
643
643
|
},
|
|
644
644
|
cases: {
|
|
645
645
|
equal: 'equal',
|
|
646
|
-
gt: 'Greater
|
|
647
|
-
lt: 'Less
|
|
648
|
-
begin: '
|
|
649
|
-
endin: '
|
|
646
|
+
gt: 'Greater',
|
|
647
|
+
lt: 'Less',
|
|
648
|
+
begin: 'Start',
|
|
649
|
+
endin: 'End',
|
|
650
650
|
include: 'Include',
|
|
651
651
|
isSensitive: 'case sensitive'
|
|
652
652
|
}
|
|
@@ -675,14 +675,14 @@ export default {
|
|
|
675
675
|
},
|
|
676
676
|
cases: {
|
|
677
677
|
equal: 'equal',
|
|
678
|
-
unequal: 'Not equal
|
|
679
|
-
gt: 'Greater
|
|
680
|
-
ge: 'Greater
|
|
681
|
-
lt: 'Less
|
|
682
|
-
le: 'Less
|
|
683
|
-
begin: '
|
|
678
|
+
unequal: 'Not equal',
|
|
679
|
+
gt: 'Greater',
|
|
680
|
+
ge: 'Greater or equal',
|
|
681
|
+
lt: 'Less',
|
|
682
|
+
le: 'Less or equal',
|
|
683
|
+
begin: 'Start',
|
|
684
684
|
notbegin: "It's not at the beginning",
|
|
685
|
-
endin: '
|
|
685
|
+
endin: 'End',
|
|
686
686
|
notendin: 'The ending is not',
|
|
687
687
|
include: 'Include',
|
|
688
688
|
exclude: 'Not included',
|
|
@@ -740,14 +740,14 @@ export default {
|
|
|
740
740
|
search: 'search',
|
|
741
741
|
cases: {
|
|
742
742
|
equal: 'equal',
|
|
743
|
-
unequal: 'Not equal
|
|
744
|
-
gt: 'Greater
|
|
745
|
-
ge: 'Greater
|
|
746
|
-
lt: 'Less
|
|
747
|
-
le: 'Less
|
|
748
|
-
begin: '
|
|
743
|
+
unequal: 'Not equal',
|
|
744
|
+
gt: 'Greater',
|
|
745
|
+
ge: 'Greater or equal',
|
|
746
|
+
lt: 'Less',
|
|
747
|
+
le: 'Less or equal',
|
|
748
|
+
begin: 'Start',
|
|
749
749
|
notbegin: "It's not at the beginning",
|
|
750
|
-
endin: '
|
|
750
|
+
endin: 'End',
|
|
751
751
|
notendin: 'The ending is not',
|
|
752
752
|
include: 'Include',
|
|
753
753
|
exclude: 'Not included',
|