@gridsheet/vue-core 3.0.0-rc.13 → 3.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/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export {}
|
|
1
|
+
export * from '../../preact-core';
|
|
2
|
+
export { default as GridSheet } from './GridSheet.vue';
|
|
3
|
+
export { useBook } from './book';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gridsheet/vue-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Spreadsheet component for Vue 3",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"vue": "^3.3.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@gridsheet/preact-core": "3.0.
|
|
32
|
+
"@gridsheet/preact-core": "3.0.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
36
36
|
"vue": "^3.4.21",
|
|
37
37
|
"vite": "^6.3.5",
|
|
38
38
|
"vite-plugin-dts": "^4.5.3",
|
|
39
|
-
"@gridsheet/functions": "3.0.
|
|
39
|
+
"@gridsheet/functions": "3.0.1"
|
|
40
40
|
},
|
|
41
41
|
"author": "righ",
|
|
42
42
|
"license": "Apache-2.0",
|
|
@@ -71,12 +71,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
71
71
|
default: () => {};
|
|
72
72
|
};
|
|
73
73
|
}>> & Readonly<{}>, {
|
|
74
|
-
style: any;
|
|
75
|
-
className: string;
|
|
76
|
-
book: BookType;
|
|
77
74
|
sheetName: string;
|
|
75
|
+
book: BookType;
|
|
78
76
|
sheetRef: RefObject<SheetHandle | null>;
|
|
79
77
|
storeRef: RefObject<StoreHandle | null>;
|
|
80
78
|
options: OptionsType;
|
|
79
|
+
className: string;
|
|
80
|
+
style: any;
|
|
81
81
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
82
82
|
export default _default;
|
|
File without changes
|
|
File without changes
|