voiptime-components 1.3.1 → 1.3.2
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.cjs.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +336 -335
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -141,6 +141,7 @@ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps, {
|
|
|
141
141
|
selectOnClickRow: boolean;
|
|
142
142
|
highlightCurrentRow: boolean;
|
|
143
143
|
allData: Record<string, any>[];
|
|
144
|
+
hideHeader: boolean;
|
|
144
145
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
145
146
|
tableWrapperRef: HTMLDivElement;
|
|
146
147
|
}, HTMLDivElement>;
|
|
@@ -1099,6 +1100,7 @@ export declare interface VTableProps {
|
|
|
1099
1100
|
allData?: Record<string, any>[];
|
|
1100
1101
|
/** Конфігурація колонок */
|
|
1101
1102
|
columns?: VTableColumnProps[];
|
|
1103
|
+
hideHeader?: boolean;
|
|
1102
1104
|
}
|
|
1103
1105
|
|
|
1104
1106
|
export declare type VTableRenderSlot = (props: {
|