@festo-ui/angular 9.0.1 → 10.0.0-dev.826
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/css/bundle.css +1 -1
- package/css/image-gallery.css +1 -1
- package/fesm2022/festo-ui-angular.mjs +134 -50
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +22 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -89,15 +89,26 @@ 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;
|
|
96
97
|
url: string;
|
|
97
98
|
}[];
|
|
99
|
+
ariaLabel: string;
|
|
98
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;
|
|
99
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngBreadcrumbComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FngBreadcrumbComponent, "fng-breadcrumb", never, { "useRouterLink": { "alias": "useRouterLink"; "required": false; }; "locations": { "alias": "locations"; "required": false; }; }, { "navigate": "navigate"; }, never, never, true, never>;
|
|
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>;
|
|
101
112
|
}
|
|
102
113
|
|
|
103
114
|
declare class FngButtonComponent {
|
|
@@ -292,6 +303,9 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
292
303
|
static nextId: number;
|
|
293
304
|
viewType: FngTabViewType;
|
|
294
305
|
showDivider: boolean;
|
|
306
|
+
private activePaneId;
|
|
307
|
+
set fngActivePaneId(value: string | null);
|
|
308
|
+
get fngActivePaneId(): string | null;
|
|
295
309
|
config: FngTabsConfiguration | null;
|
|
296
310
|
fngBeforeTabChange: EventEmitter<FngBeforeTabChangeEvent>;
|
|
297
311
|
fngTabChange: EventEmitter<{
|
|
@@ -320,6 +334,8 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
320
334
|
handleTabScroll(event: any, index: number): void;
|
|
321
335
|
private initTabs;
|
|
322
336
|
private initActiveTab;
|
|
337
|
+
private setActiveTabByPaneId;
|
|
338
|
+
private syncPanesVisibilityToActiveTab;
|
|
323
339
|
private handleTabPaneChanges;
|
|
324
340
|
private scrollTo;
|
|
325
341
|
private scrollIntoView;
|
|
@@ -339,7 +355,7 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
339
355
|
private setScrollContentStyleProperty;
|
|
340
356
|
private findAdjacentTabIndexClosestToEdge;
|
|
341
357
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngTabsComponent, never>;
|
|
342
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FngTabsComponent, "fng-tabs", never, { "viewType": { "alias": "fngTabsViewType"; "required": false; }; "showDivider": { "alias": "fngTabsUseBottomDivider"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "fngBeforeTabChange": "fngBeforeTabChange"; "fngTabChange": "fngTabChange"; }, ["panes"], ["*"], true, never>;
|
|
358
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FngTabsComponent, "fng-tabs", never, { "viewType": { "alias": "fngTabsViewType"; "required": false; }; "showDivider": { "alias": "fngTabsUseBottomDivider"; "required": false; }; "fngActivePaneId": { "alias": "fngActivePaneId"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, { "fngBeforeTabChange": "fngBeforeTabChange"; "fngTabChange": "fngTabChange"; }, ["panes"], ["*"], true, never>;
|
|
343
359
|
}
|
|
344
360
|
|
|
345
361
|
declare class FngSearchSuggestion {
|
|
@@ -987,6 +1003,8 @@ declare class FngConfirmComponent implements AfterViewInit, Modal<FngConfirmData
|
|
|
987
1003
|
* A custom form element for text inputs.
|
|
988
1004
|
*/
|
|
989
1005
|
declare class FngTextInputComponent implements OnInit, ControlValueAccessor {
|
|
1006
|
+
protected cdr: ChangeDetectorRef;
|
|
1007
|
+
constructor(cdr: ChangeDetectorRef);
|
|
990
1008
|
/**
|
|
991
1009
|
* The text input label.
|
|
992
1010
|
*/
|
|
@@ -1769,6 +1787,7 @@ declare class FngSelectComponent implements ControlValueAccessor, OnInit, AfterV
|
|
|
1769
1787
|
markAsTouched(): void;
|
|
1770
1788
|
initProjectedOptions(): void;
|
|
1771
1789
|
isEmpty(): void;
|
|
1790
|
+
isOptionSelected(index: number): boolean;
|
|
1772
1791
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngSelectComponent, never>;
|
|
1773
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>;
|
|
1774
1793
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@festo-ui/angular",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0-dev.826",
|
|
4
4
|
"author": "Festo UI (styleguide@festo.com)",
|
|
5
5
|
"copyright": "Copyright (c) 2025 Festo SE & Co. KG. All rights reserved.",
|
|
6
6
|
"license": "apache-2.0",
|
|
@@ -40,4 +40,4 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"sideEffects": false
|
|
43
|
-
}
|
|
43
|
+
}
|