@gx-design-vue/pro-table 0.2.0-beta.63 → 0.2.0-beta.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.
- package/dist/ProTable.d.ts +10 -0
- package/dist/pro-table.js +781 -775
- package/dist/pro-table.umd.cjs +1 -1
- package/dist/props.d.ts +4 -0
- package/dist/types/TableTypings.d.ts +1 -0
- package/package.json +1 -1
package/dist/ProTable.d.ts
CHANGED
|
@@ -48,6 +48,10 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
48
48
|
type: import("vue").PropType<ProTableProps["customRender"]>;
|
|
49
49
|
default: () => undefined;
|
|
50
50
|
};
|
|
51
|
+
emptyText: {
|
|
52
|
+
type: import("vue").PropType<ProTableProps["emptyText"]>;
|
|
53
|
+
default: () => undefined;
|
|
54
|
+
};
|
|
51
55
|
showLoading: {
|
|
52
56
|
type: import("vue").PropType<ProTableProps["showLoading"]>;
|
|
53
57
|
default: boolean;
|
|
@@ -334,6 +338,10 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
334
338
|
type: import("vue").PropType<ProTableProps["customRender"]>;
|
|
335
339
|
default: () => undefined;
|
|
336
340
|
};
|
|
341
|
+
emptyText: {
|
|
342
|
+
type: import("vue").PropType<ProTableProps["emptyText"]>;
|
|
343
|
+
default: () => undefined;
|
|
344
|
+
};
|
|
337
345
|
showLoading: {
|
|
338
346
|
type: import("vue").PropType<ProTableProps["showLoading"]>;
|
|
339
347
|
default: boolean;
|
|
@@ -669,6 +677,7 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
669
677
|
} & {
|
|
670
678
|
scrollToFirstRowOnChange?: boolean;
|
|
671
679
|
};
|
|
680
|
+
emptyText: DefaultRender;
|
|
672
681
|
prefixCls: string;
|
|
673
682
|
rowKey: string | (import("ant-design-vue/es/vc-table/interface").GetRowKey<any> & string) | undefined;
|
|
674
683
|
tableLayout: import("ant-design-vue/es/vc-table/interface").TableLayout | undefined;
|
|
@@ -732,6 +741,7 @@ declare const ProTable: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
732
741
|
'onUpdate:expandedRowKeys': ((expandedKeys: Key[]) => void) | undefined;
|
|
733
742
|
}, SlotsType<{
|
|
734
743
|
search(): void;
|
|
744
|
+
emptyText(): void;
|
|
735
745
|
optionsExtra(): void;
|
|
736
746
|
settingExtra(): void;
|
|
737
747
|
titleTip(): void;
|