@ng-formworks/core 19.6.7 → 19.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.
|
@@ -199,7 +199,7 @@ export declare function isSymbol(item: any): boolean;
|
|
|
199
199
|
* // { any = false } strict - if truthy, also checks JavaScript tyoe
|
|
200
200
|
* // { SchemaType }
|
|
201
201
|
*/
|
|
202
|
-
export declare function getType(value: any, strict?: any): "
|
|
202
|
+
export declare function getType(value: any, strict?: any): "string" | "number" | "integer" | "boolean" | "null" | "object" | "array";
|
|
203
203
|
/**
|
|
204
204
|
* 'isType' function
|
|
205
205
|
*
|
|
@@ -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