@grapecity-software/spread-sheets-vue 17.1.6 → 17.1.8

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/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # SpreadJS Wrapper Components for Vue
2
-
3
- 此软件包是 [SpreadJS](https://www.grapecity.com.cn/developer/spreadjs) 的一部分。
4
-
5
- 提供了 SpreadJS 的 Vue 包装组件。
6
-
7
- ## 安装模块/插件
8
- ```sh
9
- npm install @grapecity-software/spread-sheets-vue
10
- ```
11
-
12
- ## 获取更多帮助
13
- 想需要获取更多产品信息,请浏览 [SpreadJS 主页](https://www.grapecity.com.cn/developer/spreadjs)
14
-
1
+ # SpreadJS Wrapper Components for Vue
2
+
3
+ 此软件包是 [SpreadJS](https://www.grapecity.com.cn/developer/spreadjs) 的一部分。
4
+
5
+ 提供了 SpreadJS 的 Vue 包装组件。
6
+
7
+ ## 安装模块/插件
8
+ ```sh
9
+ npm install @grapecity-software/spread-sheets-vue
10
+ ```
11
+
12
+ ## 获取更多帮助
13
+ 想需要获取更多产品信息,请浏览 [SpreadJS 主页](https://www.grapecity.com.cn/developer/spreadjs)
14
+
15
15
  您可以在论坛中提出任何您使用产品过程中遇到的问题: [技术支持论坛](https://gcdn.grapecity.com.cn/showforum-232-1.html)
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * SpreadJS Wrapper Components for Vue 17.1.6
3
+ * SpreadJS Wrapper Components for Vue 17.1.8
4
4
  *
5
5
  * Copyright(c) GrapeCity Software inc. All rights reserved.
6
6
  *
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import GcSpreadSheets from "./types/GcSpreadSheets";
2
- import GcWorksheet from "./types/GcWorksheet";
3
- import GcColumn from "./types/GcColumn";
1
+ import GcSpreadSheets from "./types/GcSpreadSheets";
2
+ import GcWorksheet from "./types/GcWorksheet";
3
+ import GcColumn from "./types/GcColumn";
4
4
  export { GcSpreadSheets, GcWorksheet, GcColumn };
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
- {
2
- "name": "@grapecity-software/spread-sheets-vue",
3
- "version": "17.1.6",
4
- "main": "index.js",
5
- "description":"SpreadJS vue support",
6
- "scripts": {},
7
- "keywords": [
8
- "spread-sheets-vue",
9
- "vue",
10
- "sheets",
11
- "spread",
12
- "javascript"
13
- ],
14
- "dependencies": {
15
- "@grapecity-software/spread-sheets": "17.1.6",
16
- "tiny-emitter": "^2.1.0"
17
- },
18
- "author": {
19
- "email": "info.xa@grapecity.com",
20
- "name": "GrapeCity Software inc"
21
- },
22
- "homepage": "http://www.grapecity.com.cn/",
23
- "license": "Commercial"
24
- }
1
+ {
2
+ "name": "@grapecity-software/spread-sheets-vue",
3
+ "version": "17.1.8",
4
+ "main": "index.js",
5
+ "description":"SpreadJS vue support",
6
+ "scripts": {},
7
+ "keywords": [
8
+ "spread-sheets-vue",
9
+ "vue",
10
+ "sheets",
11
+ "spread",
12
+ "javascript"
13
+ ],
14
+ "dependencies": {
15
+ "@grapecity-software/spread-sheets": "17.1.8",
16
+ "tiny-emitter": "^2.1.0"
17
+ },
18
+ "author": {
19
+ "email": "info.xa@grapecity.com",
20
+ "name": "GrapeCity Software inc"
21
+ },
22
+ "homepage": "http://www.grapecity.com.cn/",
23
+ "license": "Commercial"
24
+ }
@@ -1,85 +1,85 @@
1
- declare const _sfc_main: import("vue").DefineComponent<{
2
- dataField: {
3
- type: StringConstructor;
4
- };
5
- headerText: {
6
- type: StringConstructor;
7
- };
8
- width: {
9
- type: NumberConstructor;
10
- };
11
- visible: {
12
- type: BooleanConstructor;
13
- };
14
- resizable: {
15
- type: BooleanConstructor;
16
- };
17
- autoFit: {
18
- type: BooleanConstructor;
19
- };
20
- columnStyle: {
21
- type: ObjectConstructor;
22
- };
23
- headerStyle: {
24
- type: ObjectConstructor;
25
- };
26
- cellType: {
27
- type: ObjectConstructor;
28
- };
29
- formatter: {
30
- type: StringConstructor;
31
- };
32
- }, {
33
- props: import("@vue/shared").LooseRequired<{
34
- readonly visible: boolean;
35
- readonly resizable: boolean;
36
- readonly autoFit: boolean;
37
- readonly dataField?: string | undefined;
38
- readonly headerText?: string | undefined;
39
- readonly width?: number | undefined;
40
- readonly columnStyle?: Record<string, any> | undefined;
41
- readonly headerStyle?: Record<string, any> | undefined;
42
- readonly cellType?: Record<string, any> | undefined;
43
- readonly formatter?: string | undefined;
44
- } & {}>;
45
- updateTagVisible: () => void;
46
- getColumnIndex: () => number;
47
- setColumnOptions: (attr: string, value: any) => void;
48
- initColumn: () => void;
49
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
50
- dataField: {
51
- type: StringConstructor;
52
- };
53
- headerText: {
54
- type: StringConstructor;
55
- };
56
- width: {
57
- type: NumberConstructor;
58
- };
59
- visible: {
60
- type: BooleanConstructor;
61
- };
62
- resizable: {
63
- type: BooleanConstructor;
64
- };
65
- autoFit: {
66
- type: BooleanConstructor;
67
- };
68
- columnStyle: {
69
- type: ObjectConstructor;
70
- };
71
- headerStyle: {
72
- type: ObjectConstructor;
73
- };
74
- cellType: {
75
- type: ObjectConstructor;
76
- };
77
- formatter: {
78
- type: StringConstructor;
79
- };
80
- }>>, {
81
- visible: boolean;
82
- resizable: boolean;
83
- autoFit: boolean;
84
- }, {}>;
85
- export default _sfc_main;
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ dataField: {
3
+ type: StringConstructor;
4
+ };
5
+ headerText: {
6
+ type: StringConstructor;
7
+ };
8
+ width: {
9
+ type: NumberConstructor;
10
+ };
11
+ visible: {
12
+ type: BooleanConstructor;
13
+ };
14
+ resizable: {
15
+ type: BooleanConstructor;
16
+ };
17
+ autoFit: {
18
+ type: BooleanConstructor;
19
+ };
20
+ columnStyle: {
21
+ type: ObjectConstructor;
22
+ };
23
+ headerStyle: {
24
+ type: ObjectConstructor;
25
+ };
26
+ cellType: {
27
+ type: ObjectConstructor;
28
+ };
29
+ formatter: {
30
+ type: StringConstructor;
31
+ };
32
+ }, {
33
+ props: import("@vue/shared").LooseRequired<{
34
+ readonly visible: boolean;
35
+ readonly resizable: boolean;
36
+ readonly autoFit: boolean;
37
+ readonly dataField?: string | undefined;
38
+ readonly headerText?: string | undefined;
39
+ readonly width?: number | undefined;
40
+ readonly columnStyle?: Record<string, any> | undefined;
41
+ readonly headerStyle?: Record<string, any> | undefined;
42
+ readonly cellType?: Record<string, any> | undefined;
43
+ readonly formatter?: string | undefined;
44
+ } & {}>;
45
+ updateTagVisible: () => void;
46
+ getColumnIndex: () => number;
47
+ setColumnOptions: (attr: string, value: any) => void;
48
+ initColumn: () => void;
49
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
50
+ dataField: {
51
+ type: StringConstructor;
52
+ };
53
+ headerText: {
54
+ type: StringConstructor;
55
+ };
56
+ width: {
57
+ type: NumberConstructor;
58
+ };
59
+ visible: {
60
+ type: BooleanConstructor;
61
+ };
62
+ resizable: {
63
+ type: BooleanConstructor;
64
+ };
65
+ autoFit: {
66
+ type: BooleanConstructor;
67
+ };
68
+ columnStyle: {
69
+ type: ObjectConstructor;
70
+ };
71
+ headerStyle: {
72
+ type: ObjectConstructor;
73
+ };
74
+ cellType: {
75
+ type: ObjectConstructor;
76
+ };
77
+ formatter: {
78
+ type: StringConstructor;
79
+ };
80
+ }>>, {
81
+ visible: boolean;
82
+ resizable: boolean;
83
+ autoFit: boolean;
84
+ }, {}>;
85
+ export default _sfc_main;