@gopowerteam/table-render 0.0.62 → 0.0.64
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.
|
@@ -12002,7 +12002,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12002
12002
|
name: string;
|
|
12003
12003
|
layout: "horizontal" | "vertical";
|
|
12004
12004
|
minWidth: number;
|
|
12005
|
-
|
|
12005
|
+
id: string;
|
|
12006
12006
|
submitable: boolean;
|
|
12007
12007
|
searchable: boolean;
|
|
12008
12008
|
}> & Omit<{
|
|
@@ -12010,7 +12010,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12010
12010
|
readonly layout: "horizontal" | "vertical";
|
|
12011
12011
|
readonly minWidth: number;
|
|
12012
12012
|
readonly name: string;
|
|
12013
|
-
readonly
|
|
12013
|
+
readonly id: string;
|
|
12014
12014
|
readonly submitable: boolean;
|
|
12015
12015
|
readonly searchable: boolean;
|
|
12016
12016
|
readonly footer: boolean;
|
|
@@ -12052,7 +12052,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12052
12052
|
required: false;
|
|
12053
12053
|
default: string;
|
|
12054
12054
|
};
|
|
12055
|
-
|
|
12055
|
+
id: {
|
|
12056
12056
|
type: StringConstructor;
|
|
12057
12057
|
required: false;
|
|
12058
12058
|
default: string;
|
|
@@ -12076,7 +12076,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12076
12076
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
12077
12077
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
12078
12078
|
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
12079
|
-
}, "layout" | "minWidth" | "name" | "
|
|
12079
|
+
}, "layout" | "minWidth" | "name" | "id" | "submitable" | "searchable" | "footer">;
|
|
12080
12080
|
$attrs: {
|
|
12081
12081
|
[x: string]: unknown;
|
|
12082
12082
|
};
|
|
@@ -12122,7 +12122,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12122
12122
|
required: false;
|
|
12123
12123
|
default: string;
|
|
12124
12124
|
};
|
|
12125
|
-
|
|
12125
|
+
id: {
|
|
12126
12126
|
type: StringConstructor;
|
|
12127
12127
|
required: false;
|
|
12128
12128
|
default: string;
|
|
@@ -12404,12 +12404,13 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12404
12404
|
updateFormField: (key: string, value: any) => void;
|
|
12405
12405
|
updateFormSource: (value: DataRecord) => void;
|
|
12406
12406
|
reset: () => void;
|
|
12407
|
+
validate: () => Promise<Record<string, import("@arco-design/web-vue").ValidatedError> | undefined> | undefined;
|
|
12407
12408
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("submit" | "cancel" | "update:model-value")[], string, {
|
|
12408
12409
|
footer: boolean;
|
|
12409
12410
|
name: string;
|
|
12410
12411
|
layout: "horizontal" | "vertical";
|
|
12411
12412
|
minWidth: number;
|
|
12412
|
-
|
|
12413
|
+
id: string;
|
|
12413
12414
|
submitable: boolean;
|
|
12414
12415
|
searchable: boolean;
|
|
12415
12416
|
}, {}, string, {}> & {
|
|
@@ -12464,7 +12465,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12464
12465
|
required: false;
|
|
12465
12466
|
default: string;
|
|
12466
12467
|
};
|
|
12467
|
-
|
|
12468
|
+
id: {
|
|
12468
12469
|
type: StringConstructor;
|
|
12469
12470
|
required: false;
|
|
12470
12471
|
default: string;
|
|
@@ -12746,6 +12747,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12746
12747
|
updateFormField: (key: string, value: any) => void;
|
|
12747
12748
|
updateFormSource: (value: DataRecord) => void;
|
|
12748
12749
|
reset: () => void;
|
|
12750
|
+
validate: () => Promise<Record<string, import("@arco-design/web-vue").ValidatedError> | undefined> | undefined;
|
|
12749
12751
|
}> & {} & import("vue").ComponentCustomProperties & {}) | undefined>;
|
|
12750
12752
|
reload: (options?: TableReloadEventOptions) => void;
|
|
12751
12753
|
preview: (options?: TablePreviewEventOptions) => any;
|
|
@@ -12002,7 +12002,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12002
12002
|
name: string;
|
|
12003
12003
|
layout: "horizontal" | "vertical";
|
|
12004
12004
|
minWidth: number;
|
|
12005
|
-
|
|
12005
|
+
id: string;
|
|
12006
12006
|
submitable: boolean;
|
|
12007
12007
|
searchable: boolean;
|
|
12008
12008
|
}> & Omit<{
|
|
@@ -12010,7 +12010,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12010
12010
|
readonly layout: "horizontal" | "vertical";
|
|
12011
12011
|
readonly minWidth: number;
|
|
12012
12012
|
readonly name: string;
|
|
12013
|
-
readonly
|
|
12013
|
+
readonly id: string;
|
|
12014
12014
|
readonly submitable: boolean;
|
|
12015
12015
|
readonly searchable: boolean;
|
|
12016
12016
|
readonly footer: boolean;
|
|
@@ -12052,7 +12052,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12052
12052
|
required: false;
|
|
12053
12053
|
default: string;
|
|
12054
12054
|
};
|
|
12055
|
-
|
|
12055
|
+
id: {
|
|
12056
12056
|
type: StringConstructor;
|
|
12057
12057
|
required: false;
|
|
12058
12058
|
default: string;
|
|
@@ -12076,7 +12076,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12076
12076
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
12077
12077
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
12078
12078
|
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
12079
|
-
}, "layout" | "minWidth" | "name" | "
|
|
12079
|
+
}, "layout" | "minWidth" | "name" | "id" | "submitable" | "searchable" | "footer">;
|
|
12080
12080
|
$attrs: {
|
|
12081
12081
|
[x: string]: unknown;
|
|
12082
12082
|
};
|
|
@@ -12122,7 +12122,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12122
12122
|
required: false;
|
|
12123
12123
|
default: string;
|
|
12124
12124
|
};
|
|
12125
|
-
|
|
12125
|
+
id: {
|
|
12126
12126
|
type: StringConstructor;
|
|
12127
12127
|
required: false;
|
|
12128
12128
|
default: string;
|
|
@@ -12404,12 +12404,13 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12404
12404
|
updateFormField: (key: string, value: any) => void;
|
|
12405
12405
|
updateFormSource: (value: DataRecord) => void;
|
|
12406
12406
|
reset: () => void;
|
|
12407
|
+
validate: () => Promise<Record<string, import("@arco-design/web-vue").ValidatedError> | undefined> | undefined;
|
|
12407
12408
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("submit" | "cancel" | "update:model-value")[], string, {
|
|
12408
12409
|
footer: boolean;
|
|
12409
12410
|
name: string;
|
|
12410
12411
|
layout: "horizontal" | "vertical";
|
|
12411
12412
|
minWidth: number;
|
|
12412
|
-
|
|
12413
|
+
id: string;
|
|
12413
12414
|
submitable: boolean;
|
|
12414
12415
|
searchable: boolean;
|
|
12415
12416
|
}, {}, string, {}> & {
|
|
@@ -12464,7 +12465,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12464
12465
|
required: false;
|
|
12465
12466
|
default: string;
|
|
12466
12467
|
};
|
|
12467
|
-
|
|
12468
|
+
id: {
|
|
12468
12469
|
type: StringConstructor;
|
|
12469
12470
|
required: false;
|
|
12470
12471
|
default: string;
|
|
@@ -12746,6 +12747,7 @@ export declare const TableRender: import("vue").DefineComponent<{
|
|
|
12746
12747
|
updateFormField: (key: string, value: any) => void;
|
|
12747
12748
|
updateFormSource: (value: DataRecord) => void;
|
|
12748
12749
|
reset: () => void;
|
|
12750
|
+
validate: () => Promise<Record<string, import("@arco-design/web-vue").ValidatedError> | undefined> | undefined;
|
|
12749
12751
|
}> & {} & import("vue").ComponentCustomProperties & {}) | undefined>;
|
|
12750
12752
|
reload: (options?: TableReloadEventOptions) => void;
|
|
12751
12753
|
preview: (options?: TablePreviewEventOptions) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gopowerteam/table-render",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.64",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "zhuchentong",
|
|
7
7
|
"email": "2037630@gmail.com"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@arco-design/web-vue": "^2.52.1",
|
|
57
|
-
"@gopowerteam/form-render": "^0.0.
|
|
57
|
+
"@gopowerteam/form-render": "^0.0.37",
|
|
58
58
|
"@gopowerteam/modal-render": "^0.0.19",
|
|
59
59
|
"vue": "^3.0.0"
|
|
60
60
|
},
|