erp-plus 1.0.31 → 1.0.32
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/erp-plus.css +1 -1
- package/dist/erp-plus.es.js +537 -526
- package/dist/erp-plus.umd.js +2 -2
- package/dist/packages/Table/Table.vue.d.ts +4 -2
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ interface TableColumn extends Record<string, any> {
|
|
|
18
18
|
isEdit?: boolean;
|
|
19
19
|
}
|
|
20
20
|
interface TableProps {
|
|
21
|
+
loading?: boolean;
|
|
21
22
|
data?: any[];
|
|
22
23
|
columns?: TableColumn[];
|
|
23
24
|
height?: string | number;
|
|
@@ -1577,7 +1578,7 @@ declare function __VLS_template(): {
|
|
|
1577
1578
|
preserveExpandedContent: boolean;
|
|
1578
1579
|
}> | null;
|
|
1579
1580
|
};
|
|
1580
|
-
rootEl:
|
|
1581
|
+
rootEl: HTMLDivElement;
|
|
1581
1582
|
};
|
|
1582
1583
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1583
1584
|
declare const __VLS_component: DefineComponent<TableProps, {
|
|
@@ -1626,6 +1627,7 @@ declare const __VLS_component: DefineComponent<TableProps, {
|
|
|
1626
1627
|
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
1627
1628
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
1628
1629
|
}>, {
|
|
1630
|
+
loading: boolean;
|
|
1629
1631
|
data: any[];
|
|
1630
1632
|
height: string | number;
|
|
1631
1633
|
fit: boolean;
|
|
@@ -3114,7 +3116,7 @@ declare const __VLS_component: DefineComponent<TableProps, {
|
|
|
3114
3116
|
nativeScrollbar: boolean;
|
|
3115
3117
|
preserveExpandedContent: boolean;
|
|
3116
3118
|
}> | null;
|
|
3117
|
-
},
|
|
3119
|
+
}, HTMLDivElement>;
|
|
3118
3120
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
3119
3121
|
export default _default;
|
|
3120
3122
|
type __VLS_WithTemplateSlots<T, S> = T & {
|