@ng-formworks/material 18.6.7 → 18.6.9

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.
Files changed (27) hide show
  1. package/esm2022/lib/material-design-framework.component.mjs +6 -6
  2. package/esm2022/lib/material-design-framework.module.mjs +4 -4
  3. package/esm2022/lib/material-design.framework.mjs +3 -3
  4. package/esm2022/lib/widgets/flex-layout-root.component.mjs +8 -6
  5. package/esm2022/lib/widgets/flex-layout-section.component.mjs +3 -3
  6. package/esm2022/lib/widgets/material-add-reference.component.mjs +6 -6
  7. package/esm2022/lib/widgets/material-button-group.component.mjs +3 -3
  8. package/esm2022/lib/widgets/material-button.component.mjs +3 -3
  9. package/esm2022/lib/widgets/material-checkbox.component.mjs +3 -3
  10. package/esm2022/lib/widgets/material-checkboxes.component.mjs +3 -3
  11. package/esm2022/lib/widgets/material-chip-list.component.mjs +3 -3
  12. package/esm2022/lib/widgets/material-datepicker.component.mjs +3 -3
  13. package/esm2022/lib/widgets/material-file.component.mjs +3 -3
  14. package/esm2022/lib/widgets/material-input.component.mjs +3 -3
  15. package/esm2022/lib/widgets/material-number.component.mjs +3 -3
  16. package/esm2022/lib/widgets/material-one-of.component.mjs +3 -3
  17. package/esm2022/lib/widgets/material-radios.component.mjs +3 -3
  18. package/esm2022/lib/widgets/material-select.component.mjs +3 -3
  19. package/esm2022/lib/widgets/material-slider.component.mjs +3 -3
  20. package/esm2022/lib/widgets/material-stepper.component.mjs +3 -3
  21. package/esm2022/lib/widgets/material-tabs.component.mjs +16 -7
  22. package/esm2022/lib/widgets/material-textarea.component.mjs +3 -3
  23. package/fesm2022/ng-formworks-material.mjs +86 -75
  24. package/fesm2022/ng-formworks-material.mjs.map +1 -1
  25. package/lib/material-design-framework.module.d.ts +2 -2
  26. package/lib/widgets/material-tabs.component.d.ts +5 -2
  27. package/package.json +3 -3
@@ -1,4 +1,4 @@
1
- import { MatButtonModule } from '@angular/material/button';
1
+ import { DragDropModule } from '@angular/cdk/drag-drop';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "./widgets/flex-layout-root.component";
4
4
  import * as i2 from "./widgets/flex-layout-section.component";
@@ -53,7 +53,7 @@ import * as i46 from "@ng-formworks/cssframework";
53
53
  * MatSidenavModule, MatSnackBarModule, MatSortModule, MatTableModule,
54
54
  * ,
55
55
  */
56
- export declare const ANGULAR_MATERIAL_MODULES: (typeof MatButtonModule)[];
56
+ export declare const ANGULAR_MATERIAL_MODULES: (typeof DragDropModule)[];
57
57
  export declare class MaterialDesignFrameworkModule {
58
58
  constructor();
59
59
  static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDesignFrameworkModule, never>;
@@ -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.7",
3
+ "version": "18.6.9",
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.7",
44
- "@ng-formworks/cssframework": "~18.6.7",
43
+ "@ng-formworks/core": "~18.6.9",
44
+ "@ng-formworks/cssframework": "~18.6.9",
45
45
  "tslib": "^2.7.0"
46
46
  },
47
47
  "peerDependencies": {