vxe-table 4.7.34 → 4.7.35
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/ui/index.js +5 -2
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +8 -3
- package/lib/index.umd.min.js +1 -1
- package/lib/ui/index.js +7 -3
- 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/package.json +1 -1
- package/packages/ui/index.ts +4 -1
package/es/ui/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { VxeUI } from '@vxe-ui/core';
|
|
2
2
|
import { getFuncText } from './src/utils';
|
|
3
|
-
export const version = "4.7.
|
|
3
|
+
export const version = "4.7.35";
|
|
4
4
|
VxeUI.version = version;
|
|
5
|
-
VxeUI.tableVersion = "4.7.
|
|
5
|
+
VxeUI.tableVersion = "4.7.35";
|
|
6
6
|
VxeUI.setConfig({
|
|
7
7
|
emptyCell: ' ',
|
|
8
8
|
table: {
|
|
@@ -292,5 +292,8 @@ export const saveFile = (options) => {
|
|
|
292
292
|
export const readFile = (options) => {
|
|
293
293
|
return VxeUI.readFile(options);
|
|
294
294
|
};
|
|
295
|
+
export const print = (options) => {
|
|
296
|
+
return VxeUI.print(options);
|
|
297
|
+
};
|
|
295
298
|
export { VxeUI };
|
|
296
299
|
export default VxeUI;
|
package/es/ui/src/log.js
CHANGED
package/lib/index.umd.js
CHANGED
|
@@ -1707,6 +1707,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1707
1707
|
log: function() { return /* reexport */ log; },
|
|
1708
1708
|
menus: function() { return /* reexport */ menus; },
|
|
1709
1709
|
modal: function() { return /* reexport */ modal; },
|
|
1710
|
+
print: function() { return /* reexport */ print; },
|
|
1710
1711
|
readFile: function() { return /* reexport */ readFile; },
|
|
1711
1712
|
renderer: function() { return /* reexport */ renderer; },
|
|
1712
1713
|
saveFile: function() { return /* reexport */ saveFile; },
|
|
@@ -1756,6 +1757,7 @@ __webpack_require__.d(components_namespaceObject, {
|
|
|
1756
1757
|
log: function() { return log; },
|
|
1757
1758
|
menus: function() { return menus; },
|
|
1758
1759
|
modal: function() { return modal; },
|
|
1760
|
+
print: function() { return print; },
|
|
1759
1761
|
readFile: function() { return readFile; },
|
|
1760
1762
|
renderer: function() { return renderer; },
|
|
1761
1763
|
saveFile: function() { return saveFile; },
|
|
@@ -1951,9 +1953,9 @@ function eqEmptyValue(cellValue) {
|
|
|
1951
1953
|
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
1952
1954
|
|
|
1953
1955
|
|
|
1954
|
-
const version = "4.7.
|
|
1956
|
+
const version = "4.7.35";
|
|
1955
1957
|
core_.VxeUI.version = version;
|
|
1956
|
-
core_.VxeUI.tableVersion = "4.7.
|
|
1958
|
+
core_.VxeUI.tableVersion = "4.7.35";
|
|
1957
1959
|
core_.VxeUI.setConfig({
|
|
1958
1960
|
emptyCell: ' ',
|
|
1959
1961
|
table: {
|
|
@@ -2243,6 +2245,9 @@ const saveFile = options => {
|
|
|
2243
2245
|
const readFile = options => {
|
|
2244
2246
|
return core_.VxeUI.readFile(options);
|
|
2245
2247
|
};
|
|
2248
|
+
const print = options => {
|
|
2249
|
+
return core_.VxeUI.print(options);
|
|
2250
|
+
};
|
|
2246
2251
|
|
|
2247
2252
|
/* harmony default export */ var ui = ((/* unused pure expression or super */ null && (VxeUI)));
|
|
2248
2253
|
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
@@ -2254,7 +2259,7 @@ var es_array_push = __webpack_require__(4114);
|
|
|
2254
2259
|
const {
|
|
2255
2260
|
log: log_log
|
|
2256
2261
|
} = core_.VxeUI;
|
|
2257
|
-
const log_version = `table v${"4.7.
|
|
2262
|
+
const log_version = `table v${"4.7.35"}`;
|
|
2258
2263
|
const warnLog = log_log.create('warn', log_version);
|
|
2259
2264
|
const errLog = log_log.create('error', log_version);
|
|
2260
2265
|
;// CONCATENATED MODULE: ./packages/table/src/columnInfo.ts
|