osl-base-extended 10.3.0 → 10.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osl-base-extended",
3
- "version": "10.3.0",
3
+ "version": "10.6.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0"
@@ -957,6 +957,7 @@ declare class OslFormGrid {
957
957
  get skeletonRows(): number[];
958
958
  addRow(): void;
959
959
  deleteRow(pagedIndex: number): void;
960
+ autocompleteChange(col: OslFormGridColumn, ev: any): void;
960
961
  onCellChange(row: any, col: OslFormGridColumn, value: any): void;
961
962
  goToPage(page: number): void;
962
963
  onPageSizeChange(size: number): void;
@@ -966,6 +967,7 @@ declare class OslFormGrid {
966
967
  /** Resolves the human-readable value for a cell — same value the grid control represents,
967
968
  * not the raw model value (e.g. displayField label instead of an id, formatted date, etc). */
968
969
  getPreviewValue(col: OslFormGridColumn, row: any): any;
970
+ private resolveDisplayFromList;
969
971
  private formatDate;
970
972
  onSelectChange(col: OslFormGridColumn, row: any, i: number, value: any): void;
971
973
  onPanelSearchChange(value: string): void;