@visactor/vtable-plugins 1.19.1 → 1.19.2
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/excel-import.d.ts +52 -0
- package/cjs/excel-import.js +443 -0
- package/cjs/excel-import.js.map +1 -0
- package/cjs/fillHandleUtils/autoFillHandle.js +1 -2
- package/cjs/fillHandleUtils/translateRowObj.js +2 -1
- package/cjs/gantt-export-image.js.map +1 -1
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +2 -1
- package/cjs/index.js.map +1 -1
- package/dist/vtable-plugins.js +76412 -649
- package/dist/vtable-plugins.min.js +91 -1
- package/es/excel-import.d.ts +52 -0
- package/es/excel-import.js +410 -0
- package/es/excel-import.js.map +1 -0
- package/es/fillHandleUtils/autoFillHandle.js +1 -2
- package/es/fillHandleUtils/translateRowObj.js +2 -1
- package/es/gantt-export-image.js.map +1 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +2 -0
- package/es/index.js.map +1 -1
- package/package.json +8 -7
package/es/index.d.ts
CHANGED
package/es/index.js
CHANGED
package/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC","file":"index.js","sourcesContent":["export * from './carousel-animation';\nexport * from './invert-highlight';\nexport * from './header-highlight';\nexport * from './add-row-column';\nexport * from './column-series';\nexport * from './row-series';\nexport * from './highlight-header-when-select-cell';\nexport * from './excel-edit-cell-keyboard';\nexport * from './types';\nexport * from './focus-highlight';\nexport * from './table-carousel-animation';\nexport * from './rotate-table';\nexport * from './gantt-export-image';\nexport * from './wps-fill-handle';\n"]}
|
|
1
|
+
{"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,qCAAqC,CAAC;AACpD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,SAAS,CAAC;AACxB,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gBAAgB,CAAC","file":"index.js","sourcesContent":["export * from './carousel-animation';\nexport * from './invert-highlight';\nexport * from './header-highlight';\nexport * from './add-row-column';\nexport * from './column-series';\nexport * from './row-series';\nexport * from './highlight-header-when-select-cell';\nexport * from './excel-edit-cell-keyboard';\nexport * from './types';\nexport * from './focus-highlight';\nexport * from './table-carousel-animation';\nexport * from './rotate-table';\nexport * from './gantt-export-image';\nexport * from './wps-fill-handle';\nexport * from './excel-import';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vtable-plugins",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"description": "The search util of VTable",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "VisActor",
|
|
@@ -32,10 +32,11 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@visactor/vutils": "~0.19.1",
|
|
34
34
|
"lodash": "4.17.21",
|
|
35
|
-
"big.js": "6.2.2"
|
|
35
|
+
"big.js": "6.2.2",
|
|
36
|
+
"exceljs": "4.4.0"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
|
-
"@visactor/vtable": "1.19.
|
|
39
|
+
"@visactor/vtable": "1.19.2"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"@visactor/vchart": "2.0.0-alpha.1",
|
|
@@ -80,12 +81,12 @@
|
|
|
80
81
|
"@types/react-is": "^17.0.3",
|
|
81
82
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
82
83
|
"@types/lodash": "4.14.182",
|
|
83
|
-
"@visactor/vtable
|
|
84
|
+
"@visactor/vtable": "1.19.2",
|
|
85
|
+
"@visactor/vtable-gantt": "1.19.2",
|
|
86
|
+
"@visactor/vtable-editors": "1.19.2",
|
|
84
87
|
"@internal/eslint-config": "0.0.1",
|
|
85
|
-
"@internal/ts-config": "0.0.1",
|
|
86
|
-
"@visactor/vtable-gantt": "1.19.1",
|
|
87
88
|
"@internal/bundler": "0.0.1",
|
|
88
|
-
"@
|
|
89
|
+
"@internal/ts-config": "0.0.1"
|
|
89
90
|
},
|
|
90
91
|
"scripts": {
|
|
91
92
|
"demo": "vite ./demo",
|