@klippa/ngx-enhancy-forms 14.17.7 → 14.17.9

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.
@@ -9,6 +9,7 @@ export declare const DEFAULT_ERROR_MESSAGES: FormErrorMessages;
9
9
  export declare class FormElementComponent implements AfterViewInit {
10
10
  private parent;
11
11
  private customMessages;
12
+ private elRef;
12
13
  attachedControl: AbstractControl;
13
14
  caption: string;
14
15
  direction: 'horizontal' | 'vertical';
@@ -20,6 +21,9 @@ export declare class FormElementComponent implements AfterViewInit {
20
21
  internalComponentRef: ElementRef;
21
22
  tailTpl: TemplateRef<any>;
22
23
  captionDummyForSpaceCalculation: ElementRef;
24
+ absoluteAnchor: ElementRef;
25
+ fixedAnchor: ElementRef;
26
+ fixedWrapper: ElementRef;
23
27
  fieldInput: ValueAccessorBase<any>;
24
28
  captionRef: TemplateRef<any>;
25
29
  errorMessages: FormErrorMessages;
@@ -30,7 +34,7 @@ export declare class FormElementComponent implements AfterViewInit {
30
34
  private input;
31
35
  errorFullyVisible: boolean;
32
36
  private popupState;
33
- constructor(parent: FormComponent, customMessages: CustomErrorMessages);
37
+ constructor(parent: FormComponent, customMessages: CustomErrorMessages, elRef: ElementRef);
34
38
  ngAfterViewInit(): Promise<void>;
35
39
  shouldShowErrorMessages(): boolean;
36
40
  substituteParameters(message: string, parameters: Record<string, any>): string;
@@ -60,6 +64,7 @@ export declare class FormElementComponent implements AfterViewInit {
60
64
  shouldShowWarningPopup(): boolean;
61
65
  closePopup(): void;
62
66
  togglePopup(): void;
63
- static ɵfac: i0.ɵɵFactoryDeclaration<FormElementComponent, [{ optional: true; }, { optional: true; }]>;
67
+ setErrorTooltipOffset: () => void;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormElementComponent, [{ optional: true; }, { optional: true; }, null]>;
64
69
  static ɵcmp: i0.ɵɵComponentDeclaration<FormElementComponent, "klp-form-element", never, { "caption": "caption"; "direction": "direction"; "captionSpacing": "captionSpacing"; "verticalAlignment": "verticalAlignment"; "spaceDistribution": "spaceDistribution"; "swapInputAndCaption": "swapInputAndCaption"; "errorMessageAsTooltip": "errorMessageAsTooltip"; }, {}, ["fieldInput"], ["*"], false>;
65
70
  }
@@ -0,0 +1,2 @@
1
+ export declare function getAllLimitingContainers(element: Element): Array<HTMLElement>;
2
+ export declare function isLimitingContainer(element: Element): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klippa/ngx-enhancy-forms",
3
- "version": "14.17.7",
3
+ "version": "14.17.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },