@visactor/vtable-sheet 1.24.0-alpha.0 → 1.25.0
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/cjs/core/WorkSheet.js +2 -1
- package/cjs/event/vtable-sheet-event-bus.js +1 -2
- package/cjs/formula/formula-paste-processor.js +2 -1
- package/cjs/formula/index.js +1 -2
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/vtable-sheet.js +735 -233
- package/dist/vtable-sheet.min.js +1 -1
- package/es/core/WorkSheet.js +2 -1
- package/es/event/vtable-sheet-event-bus.js +1 -2
- package/es/formula/formula-paste-processor.js +2 -1
- package/es/formula/index.js +1 -2
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +6 -6
package/es/core/WorkSheet.js
CHANGED
|
@@ -445,4 +445,5 @@ export class WorkSheet {
|
|
|
445
445
|
this.tableInstance && this.tableInstance.release(), this.element && this.element.parentNode && this.element.parentNode.removeChild(this.element),
|
|
446
446
|
null === (_a = this.tableInstance) || void 0 === _a || _a.release();
|
|
447
447
|
}
|
|
448
|
-
}
|
|
448
|
+
}
|
|
449
|
+
//# sourceMappingURL=WorkSheet.js.map
|
package/es/formula/index.js
CHANGED
|
@@ -18,5 +18,4 @@ export { CrossSheetDataSynchronizer } from "./cross-sheet-data-synchronizer";
|
|
|
18
18
|
|
|
19
19
|
export { CrossSheetFormulaValidator } from "./cross-sheet-formula-validator";
|
|
20
20
|
|
|
21
|
-
export { CrossSheetFormulaHandler } from "./cross-sheet-formula-handler";
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
|
21
|
+
export { CrossSheetFormulaHandler } from "./cross-sheet-formula-handler";
|
package/es/index.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import VTableSheet from './components/vtable-sheet';
|
|
|
2
2
|
import type { ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions } from './ts-types';
|
|
3
3
|
import * as TYPES from './ts-types';
|
|
4
4
|
import * as VTable from './vtable';
|
|
5
|
-
export declare const version = "1.
|
|
5
|
+
export declare const version = "1.25.0";
|
|
6
6
|
export { VTableSheet, TYPES, VTable, ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions };
|
package/es/index.js
CHANGED
package/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,2BAA2B,CAAC;AAEpD,OAAO,KAAK,KAAK,MAAM,YAAY,CAAC;AACpC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,2BAA2B,CAAC;AAEpD,OAAO,KAAK,KAAK,MAAM,YAAY,CAAC;AACpC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC;AAEhC,YAAY,EAAE,CAAC;AAIf,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAgE,CAAC","file":"index.js","sourcesContent":["import VTableSheet from './components/vtable-sheet';\nimport type { ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport * as VTable from './vtable';\nimport { importStyles } from './styles/style-manager';\nexport const version = \"1.25.0\";\n// 导入样式\nimportStyles();\n/**\n * @namespace VTableSheet\n */\nexport { VTableSheet, TYPES, VTable, ISheetDefine, IVTableSheetOptions, IVTableSheetUpdateOptions };\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vtable-sheet",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "Lightweight editable spreadsheet component based on VTable",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vtable-sheet",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@visactor/vtable": "1.24.0-alpha.0",
|
|
42
|
-
"@visactor/vtable-editors": "1.24.0-alpha.0",
|
|
43
|
-
"@visactor/vtable-plugins": "1.24.0-alpha.0",
|
|
44
41
|
"@visactor/vutils": "~1.0.17",
|
|
45
42
|
"@visactor/vscale": "~1.0.17",
|
|
46
43
|
"@visactor/vdataset": "~1.0.17",
|
|
47
|
-
"cssfontparser": "^1.2.1"
|
|
44
|
+
"cssfontparser": "^1.2.1",
|
|
45
|
+
"@visactor/vtable": "1.25.0",
|
|
46
|
+
"@visactor/vtable-editors": "1.25.0",
|
|
47
|
+
"@visactor/vtable-plugins": "1.25.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"luxon": "*",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"node-fetch": "2.6.7",
|
|
87
87
|
"form-data": "~4.0.0",
|
|
88
88
|
"axios": "^1.4.0",
|
|
89
|
-
"@internal/ts-config": "0.0.1",
|
|
90
89
|
"@internal/bundler": "0.0.1",
|
|
90
|
+
"@internal/ts-config": "0.0.1",
|
|
91
91
|
"@internal/eslint-config": "0.0.1"
|
|
92
92
|
},
|
|
93
93
|
"unpkg": "latest",
|