@festo-ui/angular 9.0.1-dev.802 → 9.0.1-dev.804
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/festo-ui-angular.mjs +41 -6
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +12 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -89,7 +89,8 @@ declare class FngAccordionHeaderComponent {
|
|
|
89
89
|
static ɵcmp: i0.ɵɵComponentDeclaration<FngAccordionHeaderComponent, "fng-accordion-header", never, {}, {}, never, ["*"], true, never>;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
declare class FngBreadcrumbComponent {
|
|
92
|
+
declare class FngBreadcrumbComponent implements AfterViewInit, OnDestroy {
|
|
93
|
+
private cdr;
|
|
93
94
|
useRouterLink: boolean;
|
|
94
95
|
locations: {
|
|
95
96
|
label: string;
|
|
@@ -97,6 +98,15 @@ declare class FngBreadcrumbComponent {
|
|
|
97
98
|
}[];
|
|
98
99
|
ariaLabel: string;
|
|
99
100
|
navigate: EventEmitter<string>;
|
|
101
|
+
private containerEl;
|
|
102
|
+
private measureEl;
|
|
103
|
+
isMobile: boolean;
|
|
104
|
+
private resizeObserver?;
|
|
105
|
+
private onResize;
|
|
106
|
+
constructor(cdr: ChangeDetectorRef);
|
|
107
|
+
ngAfterViewInit(): void;
|
|
108
|
+
ngOnDestroy(): void;
|
|
109
|
+
private measure;
|
|
100
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngBreadcrumbComponent, never>;
|
|
101
111
|
static ɵcmp: i0.ɵɵComponentDeclaration<FngBreadcrumbComponent, "fng-breadcrumb", never, { "useRouterLink": { "alias": "useRouterLink"; "required": false; }; "locations": { "alias": "locations"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "navigate": "navigate"; }, never, never, true, never>;
|
|
102
112
|
}
|
|
@@ -993,7 +1003,7 @@ declare class FngConfirmComponent implements AfterViewInit, Modal<FngConfirmData
|
|
|
993
1003
|
* A custom form element for text inputs.
|
|
994
1004
|
*/
|
|
995
1005
|
declare class FngTextInputComponent implements OnInit, ControlValueAccessor {
|
|
996
|
-
|
|
1006
|
+
protected cdr: ChangeDetectorRef;
|
|
997
1007
|
constructor(cdr: ChangeDetectorRef);
|
|
998
1008
|
/**
|
|
999
1009
|
* The text input label.
|
package/package.json
CHANGED