voiptime-components 1.8.23 → 1.9.0
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 +5 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.es.js +1070 -1044
- package/dist/index.umd.js +5 -1
- package/package.json +1 -1
- package/src/assets/main.scss +2 -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;
|
|
@@ -950,6 +951,8 @@ export declare const isValidDate: (value: any) => boolean;
|
|
|
950
951
|
|
|
951
952
|
export declare const isValidTimeString: (timeStr: string) => boolean;
|
|
952
953
|
|
|
954
|
+
export declare const loaderDirective: ObjectDirective;
|
|
955
|
+
|
|
953
956
|
export declare const messageManager: VMessageManager;
|
|
954
957
|
|
|
955
958
|
export declare const modalManager: VModalManager;
|
|
@@ -1686,6 +1689,8 @@ export declare interface VTableProps {
|
|
|
1686
1689
|
columnsSelector?: VTableColumnGroup[];
|
|
1687
1690
|
/** Чи включити функціонал виділення рядків */
|
|
1688
1691
|
selectable?: boolean;
|
|
1692
|
+
/** Чи виділяти всі чи тільки на поточній сторінці */
|
|
1693
|
+
isAllSelect?: boolean;
|
|
1689
1694
|
/** Ключ для ідентифікації рядків (за замовчуванням 'id') */
|
|
1690
1695
|
selectionKey?: string;
|
|
1691
1696
|
/** Рядки виділені за замовчуванням */
|