@festo-ui/angular 9.0.1-dev.800 → 9.0.1-dev.803
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 +54 -13
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +12 -1
- 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
|
}
|
|
@@ -1777,6 +1787,7 @@ declare class FngSelectComponent implements ControlValueAccessor, OnInit, AfterV
|
|
|
1777
1787
|
markAsTouched(): void;
|
|
1778
1788
|
initProjectedOptions(): void;
|
|
1779
1789
|
isEmpty(): void;
|
|
1790
|
+
isOptionSelected(index: number): boolean;
|
|
1780
1791
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngSelectComponent, never>;
|
|
1781
1792
|
static ɵcmp: i0.ɵɵComponentDeclaration<FngSelectComponent, "fng-select", never, { "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "size": { "alias": "size"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionsValueKey": { "alias": "optionsValueKey"; "required": false; }; "optionsTextKey": { "alias": "optionsTextKey"; "required": false; }; "optionObjectAsValue": { "alias": "optionObjectAsValue"; "required": false; }; "error": { "alias": "error"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "resetOption": { "alias": "resetOption"; "required": false; }; }, { "fngChange": "fngChange"; }, ["fngSelectOptions"], ["*"], true, never>;
|
|
1782
1793
|
}
|
package/package.json
CHANGED