@sme.up/ketchup 11.0.0-SNAPSHOT-20241128134947 → 11.0.0-SNAPSHOT-20241128165837
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/cjs/ketchup.cjs.js +1 -1
- package/dist/cjs/kup-autocomplete_28.cjs.entry.js +20 -11
- package/dist/cjs/kup-autocomplete_28.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/kup-data-table/kup-data-table.js +42 -11
- package/dist/collection/components/kup-data-table/kup-data-table.js.map +1 -1
- package/dist/components/kup-autocomplete2.js +21 -11
- package/dist/components/kup-autocomplete2.js.map +1 -1
- package/dist/esm/ketchup.js +1 -1
- package/dist/esm/kup-autocomplete_28.entry.js +20 -11
- package/dist/esm/kup-autocomplete_28.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ketchup/ketchup.esm.js +1 -1
- package/dist/ketchup/ketchup.esm.js.map +1 -1
- package/dist/ketchup/{p-52d05222.entry.js → p-78ef50f2.entry.js} +2 -2
- package/dist/ketchup/p-78ef50f2.entry.js.map +1 -0
- package/dist/types/components/kup-data-table/kup-data-table.d.ts +4 -0
- package/dist/types/components.d.ts +4 -0
- package/package.json +1 -1
- package/dist/ketchup/p-52d05222.entry.js.map +0 -1
|
@@ -467,6 +467,10 @@ export declare class KupDataTable {
|
|
|
467
467
|
* @param {boolean} emitEvent - The event will always be emitted unless emitEvent is set to false.
|
|
468
468
|
*/
|
|
469
469
|
setSelectedRows(rowsIdentifiers: string[] | number[], emitEvent?: boolean): Promise<void>;
|
|
470
|
+
/**
|
|
471
|
+
* This method is used to retrieve last focused row or the first if there's no row focused
|
|
472
|
+
*/
|
|
473
|
+
getLastFocusedRow(): Promise<KupDataTableRow>;
|
|
470
474
|
componentWillLoad(): void;
|
|
471
475
|
componentWillRender(): void;
|
|
472
476
|
componentDidRender(): void;
|
|
@@ -1550,6 +1550,10 @@ export namespace Components {
|
|
|
1550
1550
|
*/
|
|
1551
1551
|
"getCards": () => Promise<any>;
|
|
1552
1552
|
"getInternalState": () => Promise<{ groups: GroupObject[]; filters: GenericFilter; data: KupDataTableDataset; }>;
|
|
1553
|
+
/**
|
|
1554
|
+
* This method is used to retrieve last focused row or the first if there's no row focused
|
|
1555
|
+
*/
|
|
1556
|
+
"getLastFocusedRow": () => Promise<KupDataTableRow>;
|
|
1553
1557
|
/**
|
|
1554
1558
|
* Used to retrieve component's props values.
|
|
1555
1559
|
* @param descriptions - When provided and true, the result will be the list of props with their description.
|