@ng-formworks/core 20.6.7 → 20.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/index.d.ts
CHANGED
|
@@ -589,6 +589,7 @@ declare class RadiosComponent implements OnInit, OnDestroy {
|
|
|
589
589
|
|
|
590
590
|
declare class RootComponent implements OnInit, OnDestroy, OnChanges {
|
|
591
591
|
private jsf;
|
|
592
|
+
private cdr;
|
|
592
593
|
options: any;
|
|
593
594
|
readonly dataIndex: _angular_core.InputSignal<number[]>;
|
|
594
595
|
readonly layoutIndex: _angular_core.InputSignal<number[]>;
|
|
@@ -839,7 +840,7 @@ declare function isSet(item: any): boolean;
|
|
|
839
840
|
* // { any = false } strict - if truthy, also checks JavaScript tyoe
|
|
840
841
|
* // { SchemaType }
|
|
841
842
|
*/
|
|
842
|
-
declare function getType(value: any, strict?: any): "
|
|
843
|
+
declare function getType(value: any, strict?: any): "string" | "number" | "integer" | "boolean" | "null" | "object" | "array";
|
|
843
844
|
/**
|
|
844
845
|
* 'isType' function
|
|
845
846
|
*
|
|
@@ -2504,8 +2505,9 @@ declare class TabComponent implements OnInit {
|
|
|
2504
2505
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "tab-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>;
|
|
2505
2506
|
}
|
|
2506
2507
|
|
|
2507
|
-
declare class TabsComponent implements OnInit {
|
|
2508
|
+
declare class TabsComponent implements OnInit, OnDestroy {
|
|
2508
2509
|
private jsf;
|
|
2510
|
+
private cdr;
|
|
2509
2511
|
options: any;
|
|
2510
2512
|
itemCount: number;
|
|
2511
2513
|
selectedItem: number;
|
|
@@ -2513,10 +2515,12 @@ declare class TabsComponent implements OnInit {
|
|
|
2513
2515
|
readonly layoutNode: _angular_core.InputSignal<any>;
|
|
2514
2516
|
readonly layoutIndex: _angular_core.InputSignal<number[]>;
|
|
2515
2517
|
readonly dataIndex: _angular_core.InputSignal<number[]>;
|
|
2518
|
+
dataChangesSubs: Subscription;
|
|
2516
2519
|
ngOnInit(): void;
|
|
2517
2520
|
select(index: any): void;
|
|
2518
2521
|
updateControl(): void;
|
|
2519
2522
|
setTabTitle(item: any, index: number): string;
|
|
2523
|
+
ngOnDestroy(): void;
|
|
2520
2524
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
2521
2525
|
static ɵcmp: _angular_core.ɵɵ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>;
|
|
2522
2526
|
}
|
package/package.json
CHANGED