osl-base-extended 10.2.0 → 10.5.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
|
+
"version": "10.5.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.2.0",
|
|
6
6
|
"@angular/core": "^21.2.0"
|
|
@@ -25,4 +25,4 @@
|
|
|
25
25
|
"module": "fesm2022/osl-base-extended.mjs",
|
|
26
26
|
"typings": "types/osl-base-extended.d.ts",
|
|
27
27
|
"type": "module"
|
|
28
|
-
}
|
|
28
|
+
}
|
|
@@ -314,7 +314,7 @@ interface elements {
|
|
|
314
314
|
/** Enforce N decimal places on osl-input. Shows 0.00 when blank; auto-pads on blur. */
|
|
315
315
|
decimalPortion?: number;
|
|
316
316
|
/** Allow a leading minus sign for 'int' type and decimal inputs. Default false. */
|
|
317
|
-
|
|
317
|
+
restrictNegative?: boolean;
|
|
318
318
|
textareaRows?: number;
|
|
319
319
|
characterCounter?: boolean;
|
|
320
320
|
resize?: TextareaResize;
|
|
@@ -966,6 +966,7 @@ declare class OslFormGrid {
|
|
|
966
966
|
/** Resolves the human-readable value for a cell — same value the grid control represents,
|
|
967
967
|
* not the raw model value (e.g. displayField label instead of an id, formatted date, etc). */
|
|
968
968
|
getPreviewValue(col: OslFormGridColumn, row: any): any;
|
|
969
|
+
private resolveDisplayFromList;
|
|
969
970
|
private formatDate;
|
|
970
971
|
onSelectChange(col: OslFormGridColumn, row: any, i: number, value: any): void;
|
|
971
972
|
onPanelSearchChange(value: string): void;
|