@leanix/components 0.4.283 → 0.4.284
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/esm2022/lib/tab-ui/components/tab/tab.component.mjs +4 -2
- package/esm2022/lib/tab-ui/components/tab-group/tab-group.component.mjs +6 -2
- package/fesm2022/leanix-components.mjs +8 -2
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/tab-ui/components/tab/tab.component.d.ts +2 -1
- package/lib/tab-ui/components/tab-group/tab-group.component.d.ts +2 -1
- package/package.json +1 -1
@@ -21,6 +21,7 @@ export declare class TabComponent {
|
|
21
21
|
*/
|
22
22
|
tabLink?: string | any[];
|
23
23
|
counter?: number;
|
24
|
+
customTabId?: string;
|
24
25
|
routerLinkActiveOptions: {
|
25
26
|
exact: boolean;
|
26
27
|
};
|
@@ -49,5 +50,5 @@ export declare class TabComponent {
|
|
49
50
|
setFocus(): void;
|
50
51
|
handleKeyDown(event: KeyboardEvent): void;
|
51
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabComponent, never>;
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "lx-tab", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "title": { "alias": "title"; "required": false; }; "tabLink": { "alias": "tabLink"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; }; "counterBadgeSize": { "alias": "counterBadgeSize"; "required": false; }; "noMargin": { "alias": "noMargin"; "required": false; }; "noLeftMarginForFirstTab": { "alias": "noLeftMarginForFirstTab"; "required": false; }; "background": { "alias": "background"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "switch": "switch"; "keyDownAction": "keyDownAction"; }, never, ["*"], true, never>;
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabComponent, "lx-tab", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "title": { "alias": "title"; "required": false; }; "tabLink": { "alias": "tabLink"; "required": false; }; "counter": { "alias": "counter"; "required": false; }; "customTabId": { "alias": "customTabId"; "required": false; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; }; "counterBadgeSize": { "alias": "counterBadgeSize"; "required": false; }; "noMargin": { "alias": "noMargin"; "required": false; }; "noLeftMarginForFirstTab": { "alias": "noLeftMarginForFirstTab"; "required": false; }; "background": { "alias": "background"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "switch": "switch"; "keyDownAction": "keyDownAction"; }, never, ["*"], true, never>;
|
53
54
|
}
|
@@ -10,6 +10,7 @@ export declare class TabGroupComponent implements OnChanges, AfterContentInit, O
|
|
10
10
|
*/
|
11
11
|
selectedIndex: number;
|
12
12
|
indexChange: EventEmitter<number>;
|
13
|
+
tabChange: EventEmitter<string>;
|
13
14
|
tabsQueryList$: Observable<QueryList<TabComponent>>;
|
14
15
|
tabsQueryList?: QueryList<TabComponent>;
|
15
16
|
tabListElement?: ElementRef<HTMLElement>;
|
@@ -31,5 +32,5 @@ export declare class TabGroupComponent implements OnChanges, AfterContentInit, O
|
|
31
32
|
private focusTab;
|
32
33
|
private listenToFirstTabSelectByAngularRouterForTabLinks;
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabGroupComponent, never>;
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "lx-tab-group", never, { "isCentered": { "alias": "isCentered"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; }, { "indexChange": "indexChange"; }, ["tabsQueryList"], ["*"], true, never>;
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabGroupComponent, "lx-tab-group", never, { "isCentered": { "alias": "isCentered"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; }, { "indexChange": "indexChange"; "tabChange": "tabChange"; }, ["tabsQueryList"], ["*"], true, never>;
|
35
36
|
}
|