@ng-formworks/material 17.3.0 → 18.0.0

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 (28) hide show
  1. package/assets/material-design-themes.scss +34 -16
  2. package/esm2022/lib/material-design-cssframework.mjs +6 -2
  3. package/esm2022/lib/material-design-framework.component.mjs +5 -5
  4. package/esm2022/lib/material-design-framework.module.mjs +5 -5
  5. package/esm2022/lib/material-design.framework.mjs +4 -4
  6. package/esm2022/lib/widgets/flex-layout-root.component.mjs +4 -4
  7. package/esm2022/lib/widgets/flex-layout-section.component.mjs +4 -4
  8. package/esm2022/lib/widgets/material-add-reference.component.mjs +4 -4
  9. package/esm2022/lib/widgets/material-button-group.component.mjs +5 -5
  10. package/esm2022/lib/widgets/material-button.component.mjs +4 -4
  11. package/esm2022/lib/widgets/material-checkbox.component.mjs +5 -5
  12. package/esm2022/lib/widgets/material-checkboxes.component.mjs +5 -5
  13. package/esm2022/lib/widgets/material-chip-list.component.mjs +4 -4
  14. package/esm2022/lib/widgets/material-datepicker.component.mjs +4 -4
  15. package/esm2022/lib/widgets/material-file.component.mjs +4 -4
  16. package/esm2022/lib/widgets/material-input.component.mjs +4 -4
  17. package/esm2022/lib/widgets/material-number.component.mjs +4 -4
  18. package/esm2022/lib/widgets/material-one-of.component.mjs +4 -4
  19. package/esm2022/lib/widgets/material-radios.component.mjs +5 -5
  20. package/esm2022/lib/widgets/material-select.component.mjs +4 -4
  21. package/esm2022/lib/widgets/material-slider.component.mjs +4 -4
  22. package/esm2022/lib/widgets/material-stepper.component.mjs +4 -4
  23. package/esm2022/lib/widgets/material-tabs.component.mjs +4 -4
  24. package/esm2022/lib/widgets/material-textarea.component.mjs +4 -4
  25. package/fesm2022/ng-formworks-material.mjs +77 -73
  26. package/fesm2022/ng-formworks-material.mjs.map +1 -1
  27. package/lib/material-design-framework.module.d.ts +2 -2
  28. package/package.json +8 -6
@@ -1,4 +1,4 @@
1
- import { MatButtonModule } from '@angular/material/button';
1
+ import { MatNativeDateModule } from '@angular/material/core';
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";
@@ -52,7 +52,7 @@ import * as i45 from "@ng-formworks/cssframework";
52
52
  * MatSidenavModule, MatSnackBarModule, MatSortModule, MatTableModule,
53
53
  * ,
54
54
  */
55
- export declare const ANGULAR_MATERIAL_MODULES: (typeof MatButtonModule)[];
55
+ export declare const ANGULAR_MATERIAL_MODULES: (typeof MatNativeDateModule)[];
56
56
  export declare class MaterialDesignFrameworkModule {
57
57
  constructor();
58
58
  static ɵfac: i0.ɵɵFactoryDeclaration<MaterialDesignFrameworkModule, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-formworks/material",
3
- "version": "17.3.0",
3
+ "version": "18.0.0",
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": [
@@ -12,9 +12,11 @@
12
12
  "Angular 16",
13
13
  "Angular17",
14
14
  "Angular 17",
15
+ "Angular 18",
15
16
  "ng15",
16
17
  "ng16",
17
18
  "ng17",
19
+ "ng18",
18
20
  "JSON Schema",
19
21
  "form",
20
22
  "forms",
@@ -38,13 +40,13 @@
38
40
  "private": false,
39
41
  "dependencies": {
40
42
  "lodash-es": "~4.17.21",
41
- "@ng-formworks/core": "~17.3.0",
42
- "@ng-formworks/cssframework": "~17.3.0",
43
- "tslib": "^2.0.0"
43
+ "@ng-formworks/core": "~18.0.0",
44
+ "@ng-formworks/cssframework": "~18.0.0",
45
+ "tslib": "^2.7.0"
44
46
  },
45
47
  "peerDependencies": {
46
- "@angular/material": ">=17.0.0",
47
- "@angular/cdk": ">=17.0.0"
48
+ "@angular/material": ">=18.0.0",
49
+ "@angular/cdk": ">=18.0.0"
48
50
  },
49
51
  "module": "fesm2022/ng-formworks-material.mjs",
50
52
  "typings": "index.d.ts",