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.
Files changed (69) hide show
  1. package/README.md +3 -4
  2. package/README.zh-TW.md +1 -1
  3. package/es/grid/src/grid.js +13 -5
  4. package/es/index.css +1 -1
  5. package/es/index.min.css +1 -1
  6. package/es/locale/lang/en-US.js +22 -22
  7. package/es/style.css +1 -1
  8. package/es/style.min.css +1 -1
  9. package/es/table/module/menu/hook.js +2 -2
  10. package/es/table/src/body.js +3 -0
  11. package/es/table/src/footer.js +2 -0
  12. package/es/table/src/header.js +3 -0
  13. package/es/table/src/table.js +146 -35
  14. package/es/table/src/util.js +22 -19
  15. package/es/table/style.css +48 -2
  16. package/es/table/style.min.css +1 -1
  17. package/es/ui/index.js +1 -1
  18. package/es/ui/src/log.js +1 -1
  19. package/es/vxe-table/style.css +48 -2
  20. package/es/vxe-table/style.min.css +1 -1
  21. package/helper/vetur/attributes.json +1 -1
  22. package/helper/vetur/tags.json +1 -1
  23. package/lib/grid/src/grid.js +12 -4
  24. package/lib/grid/src/grid.min.js +1 -1
  25. package/lib/index.css +1 -1
  26. package/lib/index.min.css +1 -1
  27. package/lib/index.umd.js +59 -41
  28. package/lib/index.umd.min.js +1 -1
  29. package/lib/locale/lang/en-US.js +22 -22
  30. package/lib/locale/lang/en-US.min.js +1 -1
  31. package/lib/locale/lang/en-US.umd.js +22 -22
  32. package/lib/style.css +1 -1
  33. package/lib/style.min.css +1 -1
  34. package/lib/table/module/menu/hook.js +2 -0
  35. package/lib/table/module/menu/hook.min.js +1 -1
  36. package/lib/table/src/body.js +3 -0
  37. package/lib/table/src/body.min.js +1 -1
  38. package/lib/table/src/footer.js +2 -0
  39. package/lib/table/src/footer.min.js +1 -1
  40. package/lib/table/src/header.js +3 -0
  41. package/lib/table/src/header.min.js +1 -1
  42. package/lib/table/src/table.js +25 -16
  43. package/lib/table/src/table.min.js +1 -1
  44. package/lib/table/src/util.js +10 -19
  45. package/lib/table/src/util.min.js +1 -1
  46. package/lib/table/style/style.css +48 -2
  47. package/lib/table/style/style.min.css +1 -1
  48. package/lib/ui/index.js +1 -1
  49. package/lib/ui/index.min.js +1 -1
  50. package/lib/ui/src/log.js +1 -1
  51. package/lib/ui/src/log.min.js +1 -1
  52. package/lib/vxe-table/style/style.css +48 -2
  53. package/lib/vxe-table/style/style.min.css +1 -1
  54. package/package.json +2 -2
  55. package/packages/grid/src/grid.ts +53 -45
  56. package/packages/locale/lang/en-US.ts +22 -22
  57. package/packages/table/module/menu/hook.ts +2 -2
  58. package/packages/table/src/body.ts +3 -0
  59. package/packages/table/src/footer.ts +2 -0
  60. package/packages/table/src/header.ts +3 -0
  61. package/packages/table/src/table.ts +147 -35
  62. package/packages/table/src/util.ts +30 -19
  63. package/styles/components/table.scss +90 -2
  64. /package/es/{iconfont.1760602279303.ttf → iconfont.1761181613193.ttf} +0 -0
  65. /package/es/{iconfont.1760602279303.woff → iconfont.1761181613193.woff} +0 -0
  66. /package/es/{iconfont.1760602279303.woff2 → iconfont.1761181613193.woff2} +0 -0
  67. /package/lib/{iconfont.1760602279303.ttf → iconfont.1761181613193.ttf} +0 -0
  68. /package/lib/{iconfont.1760602279303.woff → iconfont.1761181613193.woff} +0 -0
  69. /package/lib/{iconfont.1760602279303.woff2 → iconfont.1761181613193.woff2} +0 -0
@@ -7,7 +7,7 @@ export default {
7
7
  fullStop: '。'
8
8
  },
9
9
  loading: {
10
- text: 'loading...'
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: 'file name',
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: 'file name',
210
+ expName: 'File name',
211
211
  expNamePlaceholder: 'Please enter a file name',
212
- expSheetName: 'title',
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 than',
647
- lt: 'Less than',
648
- begin: 'The beginning is',
649
- endin: 'The end is',
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 to',
679
- gt: 'Greater than',
680
- ge: 'Greater than or equal to',
681
- lt: 'Less than',
682
- le: 'Less than or equal to',
683
- begin: 'The beginning is',
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: 'The end is',
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 to',
744
- gt: 'Greater than',
745
- ge: 'Greater than or equal to',
746
- lt: 'Less than',
747
- le: 'Less than or equal to',
748
- begin: 'The beginning is',
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: 'The end is',
750
+ endin: 'End',
751
751
  notendin: 'The ending is not',
752
752
  include: 'Include',
753
753
  exclude: 'Not included',