ngx-touch-keyboard 4.3.0 → 4.4.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/README.md +18 -6
- package/esm2022/lib/ngx-touch-keyboard.component.mjs +3 -3
- package/esm2022/lib/ngx-touch-keyboard.directive.mjs +41 -25
- package/fesm2022/ngx-touch-keyboard.mjs +42 -26
- package/fesm2022/ngx-touch-keyboard.mjs.map +1 -1
- package/lib/ngx-touch-keyboard.directive.d.ts +11 -3
- package/package.json +1 -1
|
@@ -28,9 +28,9 @@ export declare class NgxTouchKeyboardDirective implements OnDestroy {
|
|
|
28
28
|
private _panelRef;
|
|
29
29
|
onFocus(): void;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* On changes
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
ngOnChanges(): void;
|
|
34
34
|
/**
|
|
35
35
|
* On destroy
|
|
36
36
|
*/
|
|
@@ -67,6 +67,14 @@ export declare class NgxTouchKeyboardDirective implements OnDestroy {
|
|
|
67
67
|
* @private
|
|
68
68
|
*/
|
|
69
69
|
private _getOverlaySize;
|
|
70
|
+
/**
|
|
71
|
+
* Gets the input element associated with the directive.
|
|
72
|
+
* This is necessary because when the directive is applied to an Ionic component (ion-input or ion-textarea),
|
|
73
|
+
* the actual input element is nested inside the component's template.
|
|
74
|
+
*
|
|
75
|
+
* @private
|
|
76
|
+
*/
|
|
77
|
+
private _getInputElement;
|
|
70
78
|
/**
|
|
71
79
|
* Gets the origin element for the keyboard panel.
|
|
72
80
|
*
|
|
@@ -74,5 +82,5 @@ export declare class NgxTouchKeyboardDirective implements OnDestroy {
|
|
|
74
82
|
*/
|
|
75
83
|
private _getOriginElement;
|
|
76
84
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxTouchKeyboardDirective, never>;
|
|
77
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxTouchKeyboardDirective, "input[ngxTouchKeyboard],
|
|
85
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxTouchKeyboardDirective, "input[ngxTouchKeyboard], textarea[ngxTouchKeyboard], ion-input[ngxTouchKeyboard], ion-textarea[ngxTouchKeyboard]", ["ngxTouchKeyboard"], { "open": { "alias": "ngxTouchKeyboardOpen"; "required": false; "isSignal": true; }; "openOnFocus": { "alias": "ngxTouchKeyboardOpenOnFocus"; "required": false; "isSignal": true; }; "locale": { "alias": "ngxTouchKeyboardLocale"; "required": false; "isSignal": true; }; "debugMode": { "alias": "ngxTouchKeyboardDebug"; "required": false; "isSignal": true; }; "fullScreenMode": { "alias": "ngxTouchKeyboardFullScreen"; "required": false; "isSignal": true; }; "origin": { "alias": "ngxConnectedTouchKeyboardOrigin"; "required": false; "isSignal": true; }; }, { "open": "ngxTouchKeyboardOpenChange"; }, never, never, false, never>;
|
|
78
86
|
}
|