@pongrass/utils 1.1.8-v20 → 1.1.9-v20
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/fesm2022/pongrass-utils.mjs +55 -52
- package/fesm2022/pongrass-utils.mjs.map +1 -1
- package/index.d.ts +6 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -699,20 +699,17 @@ declare class CircularFocusDirective implements AfterViewInit, OnDestroy {
|
|
|
699
699
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CircularFocusDirective, "[wsCircularFocus]", never, { "formId": { "alias": "formId"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": false; }; }, {}, never, never, true, never>;
|
|
700
700
|
}
|
|
701
701
|
|
|
702
|
-
declare class DecimalInputDirective
|
|
702
|
+
declare class DecimalInputDirective {
|
|
703
703
|
private el;
|
|
704
704
|
private control;
|
|
705
|
-
private sub;
|
|
706
705
|
wsDecimalInput: number;
|
|
707
706
|
wsAcceptStringInput: boolean;
|
|
708
|
-
private
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
707
|
+
private get decimalPlaces();
|
|
708
|
+
onInput(e: InputEvent): void;
|
|
709
|
+
onPaste(e: ClipboardEvent): void;
|
|
712
710
|
onBlur(): void;
|
|
713
|
-
|
|
714
|
-
private
|
|
715
|
-
private getNextValue;
|
|
711
|
+
constructor();
|
|
712
|
+
private formatProgrammatic;
|
|
716
713
|
static ɵfac: i0.ɵɵFactoryDeclaration<DecimalInputDirective, never>;
|
|
717
714
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DecimalInputDirective, "[wsDecimalInput]", never, { "wsDecimalInput": { "alias": "wsDecimalInput"; "required": false; }; "wsAcceptStringInput": { "alias": "wsAcceptStringInput"; "required": false; }; }, {}, never, never, true, never>;
|
|
718
715
|
}
|