@opentinyvue/vue-grid 3.23.0 → 3.25.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 +9778 -10716
- package/package.json +17 -17
- package/src/body/src/body.d.ts +26 -12
- package/src/body/src/usePool.d.ts +6 -0
- package/src/cell/index.d.ts +4 -1
- package/src/cell/src/cell.d.ts +4 -1
- package/src/column/src/column.d.ts +14 -6
- package/src/composable/index.d.ts +5 -0
- package/src/composable/useCellEvent.d.ts +16 -0
- package/src/composable/useCellSpan.d.ts +5 -0
- package/src/composable/useCellStatus.d.ts +3 -0
- package/src/composable/useData.d.ts +7 -0
- package/src/composable/useDrag/index.d.ts +2 -2
- package/src/composable/useHeader.d.ts +10 -0
- package/src/composable/useRowGroup.d.ts +3 -2
- package/src/config.d.ts +35 -0
- package/src/edit/src/methods.d.ts +1 -1
- package/src/grid/grid.d.ts +4 -2
- 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 -15
- package/src/mobile-first/list-view.vue.d.ts +2 -0
- package/src/mobile-first/table-row.vue.d.ts +2 -0
- package/src/table/src/methods.d.ts +41 -17
- package/src/table/src/strategy.d.ts +13 -23
- package/src/table/src/table.d.ts +238 -50
- package/src/table/src/utils/autoCellWidth.d.ts +6 -31
- package/src/table/src/utils/updateStyle.d.ts +1 -5
- package/src/tree/src/methods.d.ts +1 -1
- package/src/footer/index.d.ts +0 -26
- package/src/footer/src/footer.d.ts +0 -63
- package/src/header/index.d.ts +0 -26
- package/src/header/src/header.d.ts +0 -51
- package/src/table/src/utils/handleFixedColumn.d.ts +0 -6
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.25.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.25.0",
|
|
12
|
+
"@opentinyvue/vue-directive": "~3.25.0",
|
|
13
|
+
"@opentinyvue/vue-dropdown": "~3.25.0",
|
|
14
|
+
"@opentinyvue/vue-dropdown-item": "~3.25.0",
|
|
15
|
+
"@opentinyvue/vue-dropdown-menu": "~3.25.0",
|
|
16
|
+
"@opentinyvue/vue-exception": "~3.25.0",
|
|
17
|
+
"@opentinyvue/vue-icon": "~3.25.0",
|
|
18
|
+
"@opentinyvue/vue-loading": "~3.25.0",
|
|
19
|
+
"@opentinyvue/vue-locale": "~3.25.0",
|
|
20
|
+
"@opentinyvue/vue-modal": "~3.25.0",
|
|
21
|
+
"@opentinyvue/vue-pager": "~3.25.0",
|
|
22
|
+
"@opentinyvue/vue-renderless": "~3.25.0",
|
|
23
|
+
"@opentinyvue/vue-tag": "~3.25.0",
|
|
24
|
+
"@opentinyvue/vue-theme": "~3.25.0",
|
|
25
|
+
"@opentinyvue/vue-tooltip": "~3.25.0",
|
|
26
|
+
"@opentinyvue/utils": "~3.25.0"
|
|
27
27
|
},
|
|
28
28
|
"types": "index.d.ts",
|
|
29
29
|
"scripts": {
|
package/src/body/src/body.d.ts
CHANGED
|
@@ -25,27 +25,41 @@
|
|
|
25
25
|
import { hooks } from '@opentinyvue/vue-common';
|
|
26
26
|
declare const _default: hooks.DefineComponent<{
|
|
27
27
|
collectColumn: ArrayConstructor;
|
|
28
|
-
fixedColumn: ArrayConstructor;
|
|
29
|
-
isGroup: BooleanConstructor;
|
|
30
|
-
size: StringConstructor;
|
|
31
28
|
tableColumn: ArrayConstructor;
|
|
29
|
+
tableNode: ArrayConstructor;
|
|
32
30
|
tableData: ArrayConstructor;
|
|
33
|
-
|
|
31
|
+
footerData: ArrayConstructor;
|
|
34
32
|
}, {
|
|
35
33
|
slots: Readonly<{
|
|
36
34
|
[name: string]: hooks.Slot<any> | undefined;
|
|
37
35
|
}>;
|
|
36
|
+
rowHeight: hooks.ComputedRef<any>;
|
|
37
|
+
headerTable: hooks.Ref<never[]>;
|
|
38
|
+
columnPool: hooks.Ref<never[]>;
|
|
39
|
+
rowPool: hooks.Ref<never[]>;
|
|
40
|
+
isNoData: hooks.Ref<boolean>;
|
|
41
|
+
wrapperScrollLeft: hooks.Ref<number>;
|
|
42
|
+
wrapperScrollTop: hooks.Ref<number>;
|
|
43
|
+
stickyWrapper: hooks.Ref<any>;
|
|
44
|
+
table: hooks.Ref<any>;
|
|
45
|
+
body: hooks.Ref<any>;
|
|
46
|
+
customFooter: hooks.Ref<any>;
|
|
47
|
+
colgroup: hooks.Ref<any>;
|
|
48
|
+
thead: hooks.Ref<any>;
|
|
49
|
+
tbody: hooks.Ref<any>;
|
|
50
|
+
ySpace: hooks.Ref<any>;
|
|
51
|
+
normalRows: hooks.ShallowRef<{}>;
|
|
52
|
+
footerRows: hooks.ShallowRef<{}>;
|
|
53
|
+
resetStickyWrapperScrollPos: () => void;
|
|
38
54
|
}, unknown, {}, {
|
|
39
|
-
|
|
55
|
+
handleScroll(event: any): void;
|
|
56
|
+
resizeMousedown(event: any, params: any): void;
|
|
57
|
+
handleScrollLoad(e: any): void;
|
|
40
58
|
}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, {}, string, hooks.PublicProps, Readonly<hooks.ExtractPropTypes<{
|
|
41
59
|
collectColumn: ArrayConstructor;
|
|
42
|
-
fixedColumn: ArrayConstructor;
|
|
43
|
-
isGroup: BooleanConstructor;
|
|
44
|
-
size: StringConstructor;
|
|
45
60
|
tableColumn: ArrayConstructor;
|
|
61
|
+
tableNode: ArrayConstructor;
|
|
46
62
|
tableData: ArrayConstructor;
|
|
47
|
-
|
|
48
|
-
}>>, {
|
|
49
|
-
isGroup: boolean;
|
|
50
|
-
}, {}>;
|
|
63
|
+
footerData: ArrayConstructor;
|
|
64
|
+
}>>, {}, {}>;
|
|
51
65
|
export default _default;
|
package/src/cell/index.d.ts
CHANGED
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import CellDefault from './src/cell';
|
|
13
13
|
export declare const Cell: {
|
|
14
|
-
createColumn($table: any, colProps: any):
|
|
14
|
+
createColumn($table: any, colProps: any): {
|
|
15
|
+
fixed: any;
|
|
16
|
+
readonly fixedDetails: any;
|
|
17
|
+
};
|
|
15
18
|
renderHeader(h: any, params: any, type?: string | undefined): any[];
|
|
16
19
|
renderCell(h: any, params: any): any;
|
|
17
20
|
renderTreeCell(h: any, params: any): any[];
|
package/src/cell/src/cell.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
export declare const runRender: (render: any, ...params: any[]) => any;
|
|
2
2
|
export declare const Cell: {
|
|
3
|
-
createColumn($table: any, colProps: any):
|
|
3
|
+
createColumn($table: any, colProps: any): {
|
|
4
|
+
fixed: any;
|
|
5
|
+
readonly fixedDetails: any;
|
|
6
|
+
};
|
|
4
7
|
renderHeader(h: any, params: any, type?: string): any[];
|
|
5
8
|
renderCell(h: any, params: any): any;
|
|
6
9
|
renderTreeCell(h: any, params: any): any[];
|
|
@@ -85,15 +85,22 @@ 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
|
-
columnConfig:
|
|
91
|
+
columnConfig: {
|
|
92
|
+
fixed: any;
|
|
93
|
+
readonly fixedDetails: any;
|
|
94
|
+
};
|
|
91
95
|
slots: Readonly<{
|
|
92
96
|
[name: string]: hooks.Slot<any> | undefined;
|
|
93
97
|
}>;
|
|
94
98
|
firstRow: any;
|
|
95
99
|
}, unknown, {}, {
|
|
96
|
-
createColumn($table: any, colProps: any):
|
|
100
|
+
createColumn($table: any, colProps: any): {
|
|
101
|
+
fixed: any;
|
|
102
|
+
readonly fixedDetails: any;
|
|
103
|
+
};
|
|
97
104
|
renderHeader(h: any, params: any, type?: string | undefined): any[];
|
|
98
105
|
renderCell(h: any, params: any): any;
|
|
99
106
|
renderTreeCell(h: any, params: any): any[];
|
|
@@ -210,6 +217,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
210
217
|
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
211
218
|
tiny_renderless: FunctionConstructor;
|
|
212
219
|
tiny_theme: StringConstructor;
|
|
220
|
+
tiny_mcp_config: ObjectConstructor;
|
|
213
221
|
tiny_chart_theme: ObjectConstructor;
|
|
214
222
|
}>>, {
|
|
215
223
|
required: boolean;
|
|
@@ -217,14 +225,14 @@ declare const _default: hooks.DefineComponent<{
|
|
|
217
225
|
showIcon: boolean;
|
|
218
226
|
group: boolean;
|
|
219
227
|
showTip: boolean;
|
|
220
|
-
formatConfig: Record<string, any>;
|
|
221
|
-
showHeaderTip: boolean;
|
|
222
228
|
resizable: boolean;
|
|
223
|
-
showHeaderOverflow: string | boolean;
|
|
224
229
|
showOverflow: string | boolean;
|
|
225
|
-
|
|
230
|
+
showHeaderOverflow: string | boolean;
|
|
231
|
+
showHeaderTip: boolean;
|
|
226
232
|
sortable: boolean;
|
|
227
233
|
remoteSort: boolean;
|
|
228
234
|
filterMultiple: boolean;
|
|
235
|
+
treeNode: boolean;
|
|
236
|
+
formatConfig: Record<string, any>;
|
|
229
237
|
}, {}>;
|
|
230
238
|
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const getConfigOverflow: (column: any, $table: any) => {
|
|
2
|
+
cellTip: any;
|
|
3
|
+
cellOverflowTitle: boolean;
|
|
4
|
+
cellOverflowTooltip: boolean;
|
|
5
|
+
cellOverflowEllipsis: boolean;
|
|
6
|
+
cellOverflowHint: boolean;
|
|
7
|
+
headerTip: any;
|
|
8
|
+
headerOverflowTitle: boolean;
|
|
9
|
+
headerOverflowTooltip: boolean;
|
|
10
|
+
headerOverflowEllipsis: boolean;
|
|
11
|
+
headerOverflowHint: boolean;
|
|
12
|
+
};
|
|
13
|
+
export declare const useCellEvent: ({ table, $table }: {
|
|
14
|
+
table: any;
|
|
15
|
+
$table: any;
|
|
16
|
+
}) => void;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { hooks } from '@opentinyvue/vue-common';
|
|
2
|
+
export declare const buildRenderGraph: ($table: any) => void;
|
|
3
|
+
export declare const tileFullData: ($table: any) => void;
|
|
4
|
+
export declare const graphFullData: ($table: any) => void;
|
|
5
|
+
export declare const useData: (props: any) => {
|
|
6
|
+
tiledLength: hooks.Ref<number>;
|
|
7
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { hooks } from '@opentinyvue/vue-common';
|
|
2
|
+
export declare const calcHeader: (collectColumn: any) => {
|
|
3
|
+
leafColumns: never[];
|
|
4
|
+
headerTable: never[];
|
|
5
|
+
rowspanMap: WeakMap<object, any>;
|
|
6
|
+
maxLevel: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const useHeader: (props: any, bodyVm: any, headerRowHeight: any) => {
|
|
9
|
+
headerTable: hooks.Ref<never[]>;
|
|
10
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export declare const useRowGroup: ({
|
|
2
|
-
|
|
1
|
+
export declare const useRowGroup: ({ props, visibleColumn, tableFullColumn, tableColumn, columnStore }: {
|
|
2
|
+
props: any;
|
|
3
3
|
visibleColumn: any;
|
|
4
4
|
tableFullColumn: any;
|
|
5
5
|
tableColumn: any;
|
|
6
|
+
columnStore: any;
|
|
6
7
|
}) => void;
|
package/src/config.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ declare const GlobalConfig: {
|
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
}>, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>>;
|
|
7
7
|
};
|
|
8
|
+
editConfig: {
|
|
9
|
+
trigger: string;
|
|
10
|
+
mode: string;
|
|
11
|
+
showStatus: boolean;
|
|
12
|
+
};
|
|
8
13
|
sortConfig: {
|
|
9
14
|
multipleColumnSort: boolean;
|
|
10
15
|
};
|
|
@@ -24,6 +29,7 @@ declare const GlobalConfig: {
|
|
|
24
29
|
optimization: {
|
|
25
30
|
animat: boolean;
|
|
26
31
|
delayHover: number;
|
|
32
|
+
scrollDelay: number;
|
|
27
33
|
scrollX: {
|
|
28
34
|
gt: number;
|
|
29
35
|
};
|
|
@@ -208,6 +214,35 @@ declare const GlobalConfig: {
|
|
|
208
214
|
TINY: string;
|
|
209
215
|
SAAS: string;
|
|
210
216
|
};
|
|
217
|
+
rowHeight: {
|
|
218
|
+
tiny: {
|
|
219
|
+
mini: number;
|
|
220
|
+
small: number;
|
|
221
|
+
default: number;
|
|
222
|
+
medium: number;
|
|
223
|
+
};
|
|
224
|
+
saas: {
|
|
225
|
+
mini: number;
|
|
226
|
+
small: number;
|
|
227
|
+
default: number;
|
|
228
|
+
medium: number;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
headerRowHeight: {
|
|
232
|
+
tiny: {
|
|
233
|
+
mini: number;
|
|
234
|
+
small: number;
|
|
235
|
+
default: number;
|
|
236
|
+
medium: number;
|
|
237
|
+
};
|
|
238
|
+
saas: {
|
|
239
|
+
mini: number;
|
|
240
|
+
small: number;
|
|
241
|
+
default: number;
|
|
242
|
+
medium: number;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
emptyMinHeight: number;
|
|
211
246
|
columnLevelKey: string;
|
|
212
247
|
defaultColumnName: string;
|
|
213
248
|
};
|
package/src/grid/grid.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare const _default: hooks.DefineComponent<any, {
|
|
|
64
64
|
tasks: {};
|
|
65
65
|
fullScreenClass: string;
|
|
66
66
|
isInitialLoading: boolean;
|
|
67
|
+
_delayActivateAnchor: undefined;
|
|
67
68
|
}, {
|
|
68
69
|
isMsg(): boolean;
|
|
69
70
|
tableProps(): {};
|
|
@@ -74,6 +75,9 @@ declare const _default: hooks.DefineComponent<any, {
|
|
|
74
75
|
isModeMobileFirst(): boolean;
|
|
75
76
|
isViewGantt(): boolean;
|
|
76
77
|
isViewCustom(): boolean;
|
|
78
|
+
optimizOpt(): any;
|
|
79
|
+
editConfigOpt(): any;
|
|
80
|
+
tooltipOpt(): any;
|
|
77
81
|
}, {
|
|
78
82
|
updateParentHeight(): void;
|
|
79
83
|
connect({ name, vm }: {
|
|
@@ -87,8 +91,6 @@ declare const _default: hooks.DefineComponent<any, {
|
|
|
87
91
|
handleActiveMethod(params: any): any;
|
|
88
92
|
sortChangeEvent(params: any): void;
|
|
89
93
|
viewCls(module: any): any;
|
|
90
|
-
addIntersectionObserver(): void;
|
|
91
|
-
removeIntersectionObserver(): void;
|
|
92
94
|
filterChangeEvent(params: any): void;
|
|
93
95
|
}, hooks.ComponentOptionsMixin, hooks.ComponentOptionsMixin, {}, string, hooks.PublicProps, Readonly<any>, {} | {
|
|
94
96
|
[x: string]: any;
|
|
@@ -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;
|
|
@@ -6,12 +6,6 @@ declare const _default: hooks.DefineComponent<{
|
|
|
6
6
|
listConfig: ObjectConstructor;
|
|
7
7
|
ganttConfig: ObjectConstructor;
|
|
8
8
|
customConfig: ObjectConstructor;
|
|
9
|
-
tiny_mode: StringConstructor;
|
|
10
|
-
tiny_mode_root: BooleanConstructor;
|
|
11
|
-
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
12
|
-
tiny_renderless: FunctionConstructor;
|
|
13
|
-
tiny_theme: StringConstructor;
|
|
14
|
-
tiny_chart_theme: ObjectConstructor;
|
|
15
9
|
}, unknown, {
|
|
16
10
|
primaryColumn: null;
|
|
17
11
|
contentColumns: null;
|
|
@@ -40,6 +34,7 @@ declare const _default: hooks.DefineComponent<{
|
|
|
40
34
|
rowClass(): string;
|
|
41
35
|
wrapperStyle(): string;
|
|
42
36
|
exceptionVisible(): boolean;
|
|
37
|
+
isLoading(): any;
|
|
43
38
|
}, {
|
|
44
39
|
mapColumns(): void;
|
|
45
40
|
typeColumns(columns: Array<Column>, types: Array<String>, field?: string): Column[];
|
|
@@ -65,13 +60,5 @@ declare const _default: hooks.DefineComponent<{
|
|
|
65
60
|
listConfig: ObjectConstructor;
|
|
66
61
|
ganttConfig: ObjectConstructor;
|
|
67
62
|
customConfig: ObjectConstructor;
|
|
68
|
-
|
|
69
|
-
tiny_mode_root: BooleanConstructor;
|
|
70
|
-
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
71
|
-
tiny_renderless: FunctionConstructor;
|
|
72
|
-
tiny_theme: StringConstructor;
|
|
73
|
-
tiny_chart_theme: ObjectConstructor;
|
|
74
|
-
}>>, {
|
|
75
|
-
tiny_mode_root: boolean;
|
|
76
|
-
}, {}>;
|
|
63
|
+
}>>, {}, {}>;
|
|
77
64
|
export default _default;
|
|
@@ -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;
|