@ecan-bi/sheet 0.0.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.
- package/dist/iconfont.css +457 -0
- package/dist/index.es.js +57075 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.umd.js +4169 -0
- package/dist/index.umd.js.map +1 -0
- package/dist/luckysheet.css +1 -0
- package/dist/luckysheet.umd.js +4145 -0
- package/dist/plugin.js +1 -0
- package/dist/plugins.css +10 -0
- package/dist/pluginsCss.css +1 -0
- package/dist/style.css +10 -0
- package/package.json +52 -0
- package/types/Sheet.vue.d.ts +14 -0
- package/types/index.d.ts +2 -0
- package/types/plugin/luckysheet.umd.d.ts +6 -0
- package/types/plugin/plugin.d.ts +2 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ecan-bi/sheet",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./dist/index.umd.js",
|
|
6
|
+
"types": "./types/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "vite build -wc vite.config.js",
|
|
9
|
+
"build": "vite build -c vite.config.js"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [],
|
|
12
|
+
"author": "ayuan",
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"types"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"vue-demi": "^0.13.6"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "4.31.2",
|
|
26
|
+
"@typescript-eslint/parser": "4.31.2",
|
|
27
|
+
"@vitejs/plugin-vue": "^3.0.1",
|
|
28
|
+
"@vue/compiler-sfc": "^3.2.37",
|
|
29
|
+
"@vue/composition-api": "^1.7.0",
|
|
30
|
+
"@vue/eslint-config-standard": "^6.1.0",
|
|
31
|
+
"eslint": "^7.32.0",
|
|
32
|
+
"eslint-plugin-import": "^2.25.3",
|
|
33
|
+
"eslint-plugin-node": "^11.1.0",
|
|
34
|
+
"eslint-plugin-promise": "^5.1.1",
|
|
35
|
+
"eslint-plugin-vue": "^7.20.0",
|
|
36
|
+
"less": "^4.1.3",
|
|
37
|
+
"typescript": "4.4.4",
|
|
38
|
+
"vite": "^3.0.5",
|
|
39
|
+
"vite-plugin-dts": "^1.4.1",
|
|
40
|
+
"vite-plugin-eslint": "^1.6.1",
|
|
41
|
+
"vue": "^3.0.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@vue/composition-api": "^1.0.0-rc.1",
|
|
45
|
+
"vue": "^2.0.0 || >=3.0.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependenciesMeta": {
|
|
48
|
+
"@vue/composition-api": {
|
|
49
|
+
"optional": true
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue-demi").DefineComponent<{
|
|
2
|
+
option: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => void;
|
|
5
|
+
};
|
|
6
|
+
}, {}, 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<{
|
|
7
|
+
option: {
|
|
8
|
+
type: ObjectConstructor;
|
|
9
|
+
default: () => void;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
option: Record<string, any>;
|
|
13
|
+
}>;
|
|
14
|
+
export default _sfc_main;
|
package/types/index.d.ts
ADDED