@ng-formworks/material 18.6.7 → 18.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/material-design-framework.component.mjs +4 -4
- package/esm2022/lib/widgets/material-tabs.component.mjs +14 -5
- package/fesm2022/ng-formworks-material.mjs +15 -6
- package/fesm2022/ng-formworks-material.mjs.map +1 -1
- package/lib/widgets/material-tabs.component.d.ts +5 -2
- package/package.json +3 -3
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class MaterialTabsComponent implements OnInit {
|
|
3
|
+
export declare class MaterialTabsComponent implements OnInit, OnDestroy, OnChanges {
|
|
4
4
|
private jsf;
|
|
5
|
+
private cdr;
|
|
5
6
|
options: any;
|
|
6
7
|
itemCount: number;
|
|
7
8
|
selectedItem: number;
|
|
@@ -13,6 +14,8 @@ export declare class MaterialTabsComponent implements OnInit {
|
|
|
13
14
|
select(index: any): void;
|
|
14
15
|
updateControl(): void;
|
|
15
16
|
setTabTitle(item: any, index: number): string;
|
|
17
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTabsComponent, never>;
|
|
17
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<MaterialTabsComponent, "material-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
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-formworks/material",
|
|
3
|
-
"version": "18.6.
|
|
3
|
+
"version": "18.6.8",
|
|
4
4
|
"description": "Angular ng-formworks - JSON Schema Form builder using Angular Material UI",
|
|
5
5
|
"author": "https://github.com/zahmo/ng-formworks/graphs/contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"private": false,
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"lodash-es": "~4.17.21",
|
|
43
|
-
"@ng-formworks/core": "~18.6.
|
|
44
|
-
"@ng-formworks/cssframework": "~18.6.
|
|
43
|
+
"@ng-formworks/core": "~18.6.8",
|
|
44
|
+
"@ng-formworks/cssframework": "~18.6.8",
|
|
45
45
|
"tslib": "^2.7.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|