@ecan-bi/sheet 0.0.8 → 0.0.11
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/dist/index.es.js +98563 -41
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4149 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +4 -0
- package/package.json +30 -3
- package/types/Sheet.d.ts +0 -22
- package/types/constant.d.ts +0 -1
- package/types/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/sheet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/index.umd.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -18,33 +18,60 @@
|
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"dist",
|
|
21
|
-
"types"
|
|
21
|
+
"types",
|
|
22
|
+
"plugins"
|
|
22
23
|
],
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"vue-demi": "latest"
|
|
25
26
|
},
|
|
26
27
|
"devDependencies": {
|
|
28
|
+
"@ecan-bi/sheet-plugin": "^0.0.1",
|
|
27
29
|
"@typescript-eslint/eslint-plugin": "4.31.2",
|
|
28
30
|
"@typescript-eslint/parser": "4.31.2",
|
|
29
31
|
"@vitejs/plugin-vue": "^3.0.1",
|
|
30
32
|
"@vue/compiler-sfc": "3.2.27",
|
|
31
33
|
"@vue/composition-api": "^1.7.0",
|
|
32
34
|
"@vue/eslint-config-standard": "^6.1.0",
|
|
35
|
+
"clipboard": "^2.0.11",
|
|
36
|
+
"dayjs": "^1.11.5",
|
|
37
|
+
"escape-html": "^1.0.3",
|
|
33
38
|
"eslint": "^7.32.0",
|
|
34
39
|
"eslint-plugin-import": "^2.25.3",
|
|
35
40
|
"eslint-plugin-node": "^11.1.0",
|
|
36
41
|
"eslint-plugin-promise": "^5.1.1",
|
|
37
42
|
"eslint-plugin-vue": "^7.20.0",
|
|
43
|
+
"flatpickr": "^4.6.13",
|
|
44
|
+
"html2canvas": "^1.4.1",
|
|
45
|
+
"jquery": "^3.6.0",
|
|
46
|
+
"jquery-ui": "^1.13.2",
|
|
38
47
|
"less": "^4.1.3",
|
|
48
|
+
"localforage": "^1.10.0",
|
|
49
|
+
"numeral": "^2.0.6",
|
|
50
|
+
"pako": "^2.0.4",
|
|
51
|
+
"spectrum-colorpicker": "^1.8.1",
|
|
52
|
+
"spectrum-colorpicker2": "^2.0.9",
|
|
39
53
|
"typescript": "4.4.4",
|
|
54
|
+
"uuid": "^8.3.2",
|
|
40
55
|
"vite": "^3.0.5",
|
|
41
56
|
"vite-babel-plugin": "^0.0.2",
|
|
42
57
|
"vite-plugin-dts": "^1.4.1",
|
|
43
58
|
"vite-plugin-eslint": "^1.6.1",
|
|
44
|
-
"
|
|
59
|
+
"vite-plugin-svg": "^0.7.0",
|
|
60
|
+
"vue": "3.2.27",
|
|
61
|
+
"vue2": "npm:vue@2"
|
|
45
62
|
},
|
|
46
63
|
"peerDependencies": {
|
|
47
64
|
"@vue/composition-api": "^1.0.0-rc.1",
|
|
65
|
+
"clipboard": "^2.0.11",
|
|
66
|
+
"escape-html": "^1.0.3",
|
|
67
|
+
"flatpickr": "^4.6.13",
|
|
68
|
+
"html2canvas": "^1.4.1",
|
|
69
|
+
"jquery": "^3.6.0",
|
|
70
|
+
"jstat": "^1.9.5",
|
|
71
|
+
"localforage": "^1.10.0",
|
|
72
|
+
"numeral": "^2.0.6",
|
|
73
|
+
"pako": "^2.0.4",
|
|
74
|
+
"uuid": "^8.3.2",
|
|
48
75
|
"vue": "^2.6.0 || >=3.2.0"
|
|
49
76
|
},
|
|
50
77
|
"peerDependenciesMeta": {
|
package/types/Sheet.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue-demi").DefineComponent<{
|
|
2
|
-
option: {
|
|
3
|
-
type: ObjectConstructor;
|
|
4
|
-
default: () => void;
|
|
5
|
-
};
|
|
6
|
-
}, {
|
|
7
|
-
myAttrs: import("vue-demi").ComputedRef<{
|
|
8
|
-
[x: string]: unknown;
|
|
9
|
-
}>;
|
|
10
|
-
myOption: import("vue-demi").ComputedRef<{
|
|
11
|
-
container: string;
|
|
12
|
-
lang: string;
|
|
13
|
-
}>;
|
|
14
|
-
}, unknown, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, Record<string, any>, string, import("vue-demi").VNodeProps & import("vue-demi").AllowedComponentProps & import("vue-demi").ComponentCustomProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
15
|
-
option: {
|
|
16
|
-
type: ObjectConstructor;
|
|
17
|
-
default: () => void;
|
|
18
|
-
};
|
|
19
|
-
}>>, {
|
|
20
|
-
option: Record<string, any>;
|
|
21
|
-
}>;
|
|
22
|
-
export default _default;
|
package/types/constant.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const LUCKYSHEET_ID = "Luckysheet";
|
package/types/index.d.ts
DELETED