@opentinyvue/vue-grid 3.22.1 → 3.24.0
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/lib/index.js +1006 -1155
- package/package.json +17 -17
- package/src/column/src/column.d.ts +2 -0
- package/src/loading/src/loading.d.ts +2 -0
- package/src/mobile-first/column-content.vue.d.ts +2 -0
- package/src/mobile-first/column-layout.vue.d.ts +2 -0
- package/src/mobile-first/column-link.vue.d.ts +2 -0
- package/src/mobile-first/column-type.vue.d.ts +2 -0
- package/src/mobile-first/custom-view.vue.d.ts +2 -0
- package/src/mobile-first/empty.vue.d.ts +2 -0
- package/src/mobile-first/gantt-view.vue.d.ts +2 -0
- package/src/mobile-first/index.vue.d.ts +2 -0
- package/src/mobile-first/list-view.vue.d.ts +2 -0
- package/src/mobile-first/table-row.vue.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-grid",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.24.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-directive": "~3.
|
|
13
|
-
"@opentinyvue/vue-dropdown": "~3.
|
|
14
|
-
"@opentinyvue/vue-dropdown-item": "~3.
|
|
15
|
-
"@opentinyvue/vue-dropdown-menu": "~3.
|
|
16
|
-
"@opentinyvue/vue-exception": "~3.
|
|
17
|
-
"@opentinyvue/vue-icon": "~3.
|
|
18
|
-
"@opentinyvue/vue-loading": "~3.
|
|
19
|
-
"@opentinyvue/vue-locale": "~3.
|
|
20
|
-
"@opentinyvue/vue-modal": "~3.
|
|
21
|
-
"@opentinyvue/vue-pager": "~3.
|
|
22
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
23
|
-
"@opentinyvue/vue-tag": "~3.
|
|
24
|
-
"@opentinyvue/vue-theme": "~3.
|
|
25
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
26
|
-
"@opentinyvue/utils": "~3.
|
|
11
|
+
"@opentinyvue/vue-common": "~3.24.0",
|
|
12
|
+
"@opentinyvue/vue-directive": "~3.24.0",
|
|
13
|
+
"@opentinyvue/vue-dropdown": "~3.24.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown-item": "~3.24.0",
|
|
15
|
+
"@opentinyvue/vue-dropdown-menu": "~3.24.0",
|
|
16
|
+
"@opentinyvue/vue-exception": "~3.24.0",
|
|
17
|
+
"@opentinyvue/vue-icon": "~3.24.0",
|
|
18
|
+
"@opentinyvue/vue-loading": "~3.24.0",
|
|
19
|
+
"@opentinyvue/vue-locale": "~3.24.0",
|
|
20
|
+
"@opentinyvue/vue-modal": "~3.24.0",
|
|
21
|
+
"@opentinyvue/vue-pager": "~3.24.0",
|
|
22
|
+
"@opentinyvue/vue-renderless": "~3.24.0",
|
|
23
|
+
"@opentinyvue/vue-tag": "~3.24.0",
|
|
24
|
+
"@opentinyvue/vue-theme": "~3.24.0",
|
|
25
|
+
"@opentinyvue/vue-tooltip": "~3.24.0",
|
|
26
|
+
"@opentinyvue/utils": "~3.24.0"
|
|
27
27
|
},
|
|
28
28
|
"types": "index.d.ts",
|
|
29
29
|
"scripts": {
|
|
@@ -85,6 +85,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
85
85
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
86
86
|
tiny_renderless: FunctionConstructor;
|
|
87
87
|
tiny_theme: StringConstructor;
|
|
88
|
+
tiny_mcp_config: ObjectConstructor;
|
|
88
89
|
tiny_chart_theme: ObjectConstructor;
|
|
89
90
|
}, {
|
|
90
91
|
columnConfig: any;
|
|
@@ -210,6 +211,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
210
211
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
211
212
|
tiny_renderless: FunctionConstructor;
|
|
212
213
|
tiny_theme: StringConstructor;
|
|
214
|
+
tiny_mcp_config: ObjectConstructor;
|
|
213
215
|
tiny_chart_theme: ObjectConstructor;
|
|
214
216
|
}>>, {
|
|
215
217
|
required: boolean;
|
|
@@ -18,6 +18,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
18
18
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
19
19
|
tiny_renderless: FunctionConstructor;
|
|
20
20
|
tiny_theme: StringConstructor;
|
|
21
|
+
tiny_mcp_config: ObjectConstructor;
|
|
21
22
|
tiny_chart_theme: ObjectConstructor;
|
|
22
23
|
}, unknown, unknown, {}, {}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, {}, string, hooks.PublicProps, Readonly<hooks.ExtractPropTypes<{
|
|
23
24
|
visible: BooleanConstructor;
|
|
@@ -27,6 +28,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
27
28
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
28
29
|
tiny_renderless: FunctionConstructor;
|
|
29
30
|
tiny_theme: StringConstructor;
|
|
31
|
+
tiny_mcp_config: ObjectConstructor;
|
|
30
32
|
tiny_chart_theme: ObjectConstructor;
|
|
31
33
|
}>>, {
|
|
32
34
|
visible: boolean;
|
|
@@ -6,6 +6,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
6
6
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
7
7
|
tiny_renderless: FunctionConstructor;
|
|
8
8
|
tiny_theme: StringConstructor;
|
|
9
|
+
tiny_mcp_config: ObjectConstructor;
|
|
9
10
|
tiny_chart_theme: ObjectConstructor;
|
|
10
11
|
}, unknown, unknown, {}, {
|
|
11
12
|
handleMouseenter(e: any): void;
|
|
@@ -18,6 +19,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
18
19
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
19
20
|
tiny_renderless: FunctionConstructor;
|
|
20
21
|
tiny_theme: StringConstructor;
|
|
22
|
+
tiny_mcp_config: ObjectConstructor;
|
|
21
23
|
tiny_chart_theme: ObjectConstructor;
|
|
22
24
|
}>>, {
|
|
23
25
|
tiny_mode_root: boolean;
|
|
@@ -6,6 +6,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
6
6
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
7
7
|
tiny_renderless: FunctionConstructor;
|
|
8
8
|
tiny_theme: StringConstructor;
|
|
9
|
+
tiny_mcp_config: ObjectConstructor;
|
|
9
10
|
tiny_chart_theme: ObjectConstructor;
|
|
10
11
|
}, unknown, unknown, {
|
|
11
12
|
showLink(): any;
|
|
@@ -17,6 +18,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
17
18
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
18
19
|
tiny_renderless: FunctionConstructor;
|
|
19
20
|
tiny_theme: StringConstructor;
|
|
21
|
+
tiny_mcp_config: ObjectConstructor;
|
|
20
22
|
tiny_chart_theme: ObjectConstructor;
|
|
21
23
|
}>>, {
|
|
22
24
|
tiny_mode_root: boolean;
|
|
@@ -6,6 +6,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
6
6
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
7
7
|
tiny_renderless: FunctionConstructor;
|
|
8
8
|
tiny_theme: StringConstructor;
|
|
9
|
+
tiny_mcp_config: ObjectConstructor;
|
|
9
10
|
tiny_chart_theme: ObjectConstructor;
|
|
10
11
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
11
12
|
datas: ObjectConstructor;
|
|
@@ -15,6 +16,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
15
16
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
16
17
|
tiny_renderless: FunctionConstructor;
|
|
17
18
|
tiny_theme: StringConstructor;
|
|
19
|
+
tiny_mcp_config: ObjectConstructor;
|
|
18
20
|
tiny_chart_theme: ObjectConstructor;
|
|
19
21
|
}>>, {
|
|
20
22
|
tiny_mode_root: boolean;
|
|
@@ -6,6 +6,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
6
6
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
7
7
|
tiny_renderless: FunctionConstructor;
|
|
8
8
|
tiny_theme: StringConstructor;
|
|
9
|
+
tiny_mcp_config: ObjectConstructor;
|
|
9
10
|
tiny_chart_theme: ObjectConstructor;
|
|
10
11
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
11
12
|
datas: ObjectConstructor;
|
|
@@ -15,6 +16,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
15
16
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
16
17
|
tiny_renderless: FunctionConstructor;
|
|
17
18
|
tiny_theme: StringConstructor;
|
|
19
|
+
tiny_mcp_config: ObjectConstructor;
|
|
18
20
|
tiny_chart_theme: ObjectConstructor;
|
|
19
21
|
}>>, {
|
|
20
22
|
tiny_mode_root: boolean;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
4
4
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
5
5
|
tiny_renderless: FunctionConstructor;
|
|
6
6
|
tiny_theme: StringConstructor;
|
|
7
|
+
tiny_mcp_config: ObjectConstructor;
|
|
7
8
|
tiny_chart_theme: ObjectConstructor;
|
|
8
9
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
10
|
tiny_mode: StringConstructor;
|
|
@@ -11,6 +12,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
11
12
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
13
|
tiny_renderless: FunctionConstructor;
|
|
13
14
|
tiny_theme: StringConstructor;
|
|
15
|
+
tiny_mcp_config: ObjectConstructor;
|
|
14
16
|
tiny_chart_theme: ObjectConstructor;
|
|
15
17
|
}>>, {
|
|
16
18
|
tiny_mode_root: boolean;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
4
4
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
5
5
|
tiny_renderless: FunctionConstructor;
|
|
6
6
|
tiny_theme: StringConstructor;
|
|
7
|
+
tiny_mcp_config: ObjectConstructor;
|
|
7
8
|
tiny_chart_theme: ObjectConstructor;
|
|
8
9
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
10
|
tiny_mode: StringConstructor;
|
|
@@ -11,6 +12,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
11
12
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
13
|
tiny_renderless: FunctionConstructor;
|
|
13
14
|
tiny_theme: StringConstructor;
|
|
15
|
+
tiny_mcp_config: ObjectConstructor;
|
|
14
16
|
tiny_chart_theme: ObjectConstructor;
|
|
15
17
|
}>>, {
|
|
16
18
|
tiny_mode_root: boolean;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
4
4
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
5
5
|
tiny_renderless: FunctionConstructor;
|
|
6
6
|
tiny_theme: StringConstructor;
|
|
7
|
+
tiny_mcp_config: ObjectConstructor;
|
|
7
8
|
tiny_chart_theme: ObjectConstructor;
|
|
8
9
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
10
|
tiny_mode: StringConstructor;
|
|
@@ -11,6 +12,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
11
12
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
13
|
tiny_renderless: FunctionConstructor;
|
|
13
14
|
tiny_theme: StringConstructor;
|
|
15
|
+
tiny_mcp_config: ObjectConstructor;
|
|
14
16
|
tiny_chart_theme: ObjectConstructor;
|
|
15
17
|
}>>, {
|
|
16
18
|
tiny_mode_root: boolean;
|
|
@@ -11,6 +11,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
11
11
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
12
|
tiny_renderless: FunctionConstructor;
|
|
13
13
|
tiny_theme: StringConstructor;
|
|
14
|
+
tiny_mcp_config: ObjectConstructor;
|
|
14
15
|
tiny_chart_theme: ObjectConstructor;
|
|
15
16
|
}, unknown, {
|
|
16
17
|
primaryColumn: null;
|
|
@@ -70,6 +71,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
70
71
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
71
72
|
tiny_renderless: FunctionConstructor;
|
|
72
73
|
tiny_theme: StringConstructor;
|
|
74
|
+
tiny_mcp_config: ObjectConstructor;
|
|
73
75
|
tiny_chart_theme: ObjectConstructor;
|
|
74
76
|
}>>, {
|
|
75
77
|
tiny_mode_root: boolean;
|
|
@@ -4,6 +4,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
4
4
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
5
5
|
tiny_renderless: FunctionConstructor;
|
|
6
6
|
tiny_theme: StringConstructor;
|
|
7
|
+
tiny_mcp_config: ObjectConstructor;
|
|
7
8
|
tiny_chart_theme: ObjectConstructor;
|
|
8
9
|
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
9
10
|
tiny_mode: StringConstructor;
|
|
@@ -11,6 +12,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
11
12
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
13
|
tiny_renderless: FunctionConstructor;
|
|
13
14
|
tiny_theme: StringConstructor;
|
|
15
|
+
tiny_mcp_config: ObjectConstructor;
|
|
14
16
|
tiny_chart_theme: ObjectConstructor;
|
|
15
17
|
}>>, {
|
|
16
18
|
tiny_mode_root: boolean;
|
|
@@ -6,6 +6,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
6
6
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
7
7
|
tiny_renderless: FunctionConstructor;
|
|
8
8
|
tiny_theme: StringConstructor;
|
|
9
|
+
tiny_mcp_config: ObjectConstructor;
|
|
9
10
|
tiny_chart_theme: ObjectConstructor;
|
|
10
11
|
}, unknown, {
|
|
11
12
|
mergeClass: (...cssClasses: any[]) => string;
|
|
@@ -23,6 +24,7 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
23
24
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
24
25
|
tiny_renderless: FunctionConstructor;
|
|
25
26
|
tiny_theme: StringConstructor;
|
|
27
|
+
tiny_mcp_config: ObjectConstructor;
|
|
26
28
|
tiny_chart_theme: ObjectConstructor;
|
|
27
29
|
}>> & {
|
|
28
30
|
"onCard-click"?: ((...args: any[]) => any) | undefined;
|