@festo-ui/angular 9.0.1-dev.777 → 9.0.1-dev.778
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 +66 -30
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -292,6 +292,9 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
292
292
|
static nextId: number;
|
|
293
293
|
viewType: FngTabViewType;
|
|
294
294
|
showDivider: boolean;
|
|
295
|
+
private activePaneId;
|
|
296
|
+
set fngActivePaneId(value: string | null);
|
|
297
|
+
get fngActivePaneId(): string | null;
|
|
295
298
|
config: FngTabsConfiguration | null;
|
|
296
299
|
fngBeforeTabChange: EventEmitter<FngBeforeTabChangeEvent>;
|
|
297
300
|
fngTabChange: EventEmitter<{
|
|
@@ -320,6 +323,8 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
320
323
|
handleTabScroll(event: any, index: number): void;
|
|
321
324
|
private initTabs;
|
|
322
325
|
private initActiveTab;
|
|
326
|
+
private setActiveTabByPaneId;
|
|
327
|
+
private syncPanesVisibilityToActiveTab;
|
|
323
328
|
private handleTabPaneChanges;
|
|
324
329
|
private scrollTo;
|
|
325
330
|
private scrollIntoView;
|
|
@@ -339,7 +344,7 @@ declare class FngTabsComponent implements AfterContentInit, AfterViewInit, OnDes
|
|
|
339
344
|
private setScrollContentStyleProperty;
|
|
340
345
|
private findAdjacentTabIndexClosestToEdge;
|
|
341
346
|
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>;
|
|
347
|
+
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
348
|
}
|
|
344
349
|
|
|
345
350
|
declare class FngSearchSuggestion {
|
package/package.json
CHANGED