@ng-formworks/core 17.6.7 → 17.6.8
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/widget-library/root.component.mjs +8 -2
- package/esm2022/lib/widget-library/tabs.component.mjs +14 -2
- package/fesm2022/ng-formworks-core.mjs +18 -0
- package/fesm2022/ng-formworks-core.mjs.map +1 -1
- package/lib/widget-library/root.component.d.ts +1 -0
- package/lib/widget-library/tabs.component.d.ts +6 -2
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ import { Subscription } from 'rxjs';
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class RootComponent implements OnInit, OnDestroy, OnChanges {
|
|
6
6
|
private jsf;
|
|
7
|
+
private cdr;
|
|
7
8
|
options: any;
|
|
8
9
|
readonly dataIndex: import("@angular/core").InputSignal<number[]>;
|
|
9
10
|
readonly layoutIndex: import("@angular/core").InputSignal<number[]>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class TabsComponent implements OnInit {
|
|
4
|
+
export declare class TabsComponent implements OnInit, OnDestroy {
|
|
4
5
|
private jsf;
|
|
6
|
+
private cdr;
|
|
5
7
|
options: any;
|
|
6
8
|
itemCount: number;
|
|
7
9
|
selectedItem: number;
|
|
@@ -9,10 +11,12 @@ export declare class TabsComponent implements OnInit {
|
|
|
9
11
|
readonly layoutNode: import("@angular/core").InputSignal<any>;
|
|
10
12
|
readonly layoutIndex: import("@angular/core").InputSignal<number[]>;
|
|
11
13
|
readonly dataIndex: import("@angular/core").InputSignal<number[]>;
|
|
14
|
+
dataChangesSubs: Subscription;
|
|
12
15
|
ngOnInit(): void;
|
|
13
16
|
select(index: any): void;
|
|
14
17
|
updateControl(): void;
|
|
15
18
|
setTabTitle(item: any, index: number): string;
|
|
19
|
+
ngOnDestroy(): void;
|
|
16
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
17
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "tabs-widget", never, { "layoutNode": { "alias": "layoutNode"; "required": false; "isSignal": true; }; "layoutIndex": { "alias": "layoutIndex"; "required": false; "isSignal": true; }; "dataIndex": { "alias": "dataIndex"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
18
22
|
}
|
package/package.json
CHANGED