voiptime-components 1.8.22 → 1.8.24
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 +3 -0
- package/dist/index.es.js +243 -246
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ declare const __VLS_component_5: DefineComponent<__VLS_PublicProps, {
|
|
|
195
195
|
columnsSelector: VTableColumnGroup[];
|
|
196
196
|
rowKey: string;
|
|
197
197
|
showSummary: boolean;
|
|
198
|
+
isAllSelect: boolean;
|
|
198
199
|
selectionKey: string;
|
|
199
200
|
defaultSelection: any[];
|
|
200
201
|
selectOnClickRow: boolean;
|
|
@@ -1686,6 +1687,8 @@ export declare interface VTableProps {
|
|
|
1686
1687
|
columnsSelector?: VTableColumnGroup[];
|
|
1687
1688
|
/** Чи включити функціонал виділення рядків */
|
|
1688
1689
|
selectable?: boolean;
|
|
1690
|
+
/** Чи виділяти всі чи тільки на поточній сторінці */
|
|
1691
|
+
isAllSelect?: boolean;
|
|
1689
1692
|
/** Ключ для ідентифікації рядків (за замовчуванням 'id') */
|
|
1690
1693
|
selectionKey?: string;
|
|
1691
1694
|
/** Рядки виділені за замовчуванням */
|