@m1z23r/ngx-ui 1.1.31 → 1.1.32
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
package/types/m1z23r-ngx-ui.d.ts
CHANGED
|
@@ -1970,9 +1970,13 @@ declare class TemplateInputComponent implements OnDestroy {
|
|
|
1970
1970
|
protected readonly inputId: _angular_core.Signal<string>;
|
|
1971
1971
|
protected readonly mirrorRef: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
|
|
1972
1972
|
protected readonly inputRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1973
|
+
popoverRef: ElementRef<HTMLElement>;
|
|
1974
|
+
private readonly hostRef;
|
|
1975
|
+
private positionCleanup;
|
|
1976
|
+
private currentSpanRect;
|
|
1977
|
+
private isPortaled;
|
|
1973
1978
|
protected readonly popoverVisible: _angular_core.WritableSignal<boolean>;
|
|
1974
|
-
protected readonly
|
|
1975
|
-
protected readonly popoverLeft: _angular_core.WritableSignal<number>;
|
|
1979
|
+
protected readonly openAbove: _angular_core.WritableSignal<boolean>;
|
|
1976
1980
|
protected readonly popoverText: _angular_core.WritableSignal<string>;
|
|
1977
1981
|
protected readonly popoverVarKey: _angular_core.WritableSignal<string>;
|
|
1978
1982
|
protected readonly popoverContext: _angular_core.Signal<VariablePopoverContext>;
|
|
@@ -1995,6 +1999,13 @@ declare class TemplateInputComponent implements OnDestroy {
|
|
|
1995
1999
|
private escapeHtml;
|
|
1996
2000
|
private static readonly STYLE_CONTENT;
|
|
1997
2001
|
private injectStyles;
|
|
2002
|
+
private portalPopover;
|
|
2003
|
+
private unportalPopover;
|
|
2004
|
+
private updatePopoverPosition;
|
|
2005
|
+
private getCurrentSpanRect;
|
|
2006
|
+
private readonly onPositionUpdate;
|
|
2007
|
+
private addPositionListeners;
|
|
2008
|
+
private removePositionListeners;
|
|
1998
2009
|
ngOnDestroy(): void;
|
|
1999
2010
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TemplateInputComponent, never>;
|
|
2000
2011
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TemplateInputComponent, "ui-template-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "variables": { "alias": "variables"; "required": true; "isSignal": true; }; }, { "value": "valueChange"; "variables": "variablesChange"; "variableHover": "variableHover"; }, ["popoverTemplate"], never, true, never>;
|