dolphin-components 3.1.11 → 3.1.13
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/dolphin-components.cjs.js +61 -61
- package/dist/dolphin-components.es.js +2094 -2099
- package/dist/dolphin-components.umd.js +62 -62
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -365,6 +365,7 @@ reInitializeTabulator: () => void;
|
|
|
365
365
|
print: () => void;
|
|
366
366
|
exportTable: () => void;
|
|
367
367
|
getSelectedData: () => any[];
|
|
368
|
+
updateSelectedRow: (rows: any[]) => void;
|
|
368
369
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
369
370
|
[x: string]: never;
|
|
370
371
|
}, string, PublicProps, Readonly<TabulatorProps> & Readonly<{
|
|
@@ -392,7 +393,6 @@ enableFooterPrint: boolean;
|
|
|
392
393
|
enableHeaderBlock: boolean;
|
|
393
394
|
enableFooterBlock: boolean;
|
|
394
395
|
enableSelectable: boolean;
|
|
395
|
-
selectedRows: any[];
|
|
396
396
|
disableFooter: boolean;
|
|
397
397
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
398
398
|
|
|
@@ -453,7 +453,6 @@ export declare interface TabulatorProps {
|
|
|
453
453
|
enableHeaderBlock?: boolean;
|
|
454
454
|
enableFooterBlock?: boolean;
|
|
455
455
|
enableSelectable?: boolean;
|
|
456
|
-
selectedRows?: any[];
|
|
457
456
|
disableFooter?: boolean;
|
|
458
457
|
}
|
|
459
458
|
|