erp-plus 1.0.31 → 1.0.33
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 +539 -528
- package/dist/erp-plus.umd.js +2 -2
- package/dist/packages/Table/Table.vue.d.ts +4 -3
- 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,12 +1627,12 @@ 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;
|
|
1632
1634
|
emptyText: string;
|
|
1633
1635
|
columns: TableColumn[];
|
|
1634
|
-
maxHeight: string | number;
|
|
1635
1636
|
stripe: boolean;
|
|
1636
1637
|
border: boolean;
|
|
1637
1638
|
showHeader: boolean;
|
|
@@ -3114,7 +3115,7 @@ declare const __VLS_component: DefineComponent<TableProps, {
|
|
|
3114
3115
|
nativeScrollbar: boolean;
|
|
3115
3116
|
preserveExpandedContent: boolean;
|
|
3116
3117
|
}> | null;
|
|
3117
|
-
},
|
|
3118
|
+
}, HTMLDivElement>;
|
|
3118
3119
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
3119
3120
|
export default _default;
|
|
3120
3121
|
type __VLS_WithTemplateSlots<T, S> = T & {
|