voiptime-components 1.16.26 → 1.16.27
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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -249,7 +249,7 @@ declare const __VLS_component_5: DefineComponent<__VLS_PublicProps, {
|
|
|
249
249
|
"onColumns-change"?: ((columns: VTableColumnProps[]) => any) | undefined;
|
|
250
250
|
"onInfinity-scroll"?: (() => any) | undefined;
|
|
251
251
|
}>, {
|
|
252
|
-
maxHeight: number;
|
|
252
|
+
maxHeight: number | string;
|
|
253
253
|
selectable: boolean;
|
|
254
254
|
columns: VTableColumnProps[];
|
|
255
255
|
columnsSelector: VTableColumnGroup[];
|
|
@@ -2161,7 +2161,7 @@ export declare interface VTableEmits {
|
|
|
2161
2161
|
|
|
2162
2162
|
export declare interface VTableProps {
|
|
2163
2163
|
data: Record<string, any>[];
|
|
2164
|
-
maxHeight?: number;
|
|
2164
|
+
maxHeight?: number | string;
|
|
2165
2165
|
rowKey?: string;
|
|
2166
2166
|
defaultSort?: SortState;
|
|
2167
2167
|
showSummary?: boolean;
|