ngx-material-entity 1.1.5 → 15.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 (100) hide show
  1. package/README.md +4 -4
  2. package/classes/entity.utilities.d.ts +1 -0
  3. package/components/confirm-dialog/confirm-dialog.component.d.ts +1 -1
  4. package/components/input/array/array-date-input/array-date-input.component.d.ts +1 -1
  5. package/components/input/array/array-date-range-input/array-date-range-input.component.d.ts +3 -3
  6. package/components/input/array/array-date-time-input/array-date-time-input.component.d.ts +1 -1
  7. package/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.d.ts +4 -30
  8. package/components/input/array/array-string-chips-input/array-string-chips-input.component.d.ts +3 -11
  9. package/components/input/array/array-table.class.d.ts +4 -4
  10. package/components/input/base-input.component.d.ts +1 -1
  11. package/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.d.ts +1 -1
  12. package/components/input/boolean/boolean-dropdown-input/boolean-dropdown-input.component.d.ts +1 -1
  13. package/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.d.ts +1 -1
  14. package/components/input/custom/custom.component.d.ts +1 -1
  15. package/components/input/date/date-input/date-input.component.d.ts +1 -1
  16. package/components/input/date/date-range-input/date-range-input.component.d.ts +1 -1
  17. package/components/input/date/date-time-input/date-time-input.component.d.ts +1 -1
  18. package/components/input/file/file-default-input/file-default-input.component.d.ts +1 -1
  19. package/components/input/file/file-image-input/file-image-input.component.d.ts +1 -1
  20. package/components/input/file/file-input/dragDrop.directive.d.ts +1 -1
  21. package/components/input/file/file-input/file-input.component.d.ts +1 -1
  22. package/components/input/input.component.d.ts +1 -1
  23. package/components/input/input.module.d.ts +20 -19
  24. package/components/input/number/number-dropdown-input/number-dropdown-input.component.d.ts +1 -1
  25. package/components/input/number/number-input/number-input.component.d.ts +1 -1
  26. package/components/input/number/number-slider-input/number-slider-input.component.d.ts +1 -1
  27. package/components/input/relations/references-many-input/references-many-input.component.d.ts +27 -0
  28. package/components/input/string/string-autocomplete-input/string-autocomplete-input.component.d.ts +1 -1
  29. package/components/input/string/string-dropdown-input/string-dropdown-input.component.d.ts +1 -1
  30. package/components/input/string/string-input/string-input.component.d.ts +1 -1
  31. package/components/input/string/string-password-input/string-password-input.component.d.ts +1 -1
  32. package/components/input/string/string-textbox-input/string-textbox-input.component.d.ts +1 -1
  33. package/components/table/create-dialog/create-entity-dialog.component.d.ts +1 -1
  34. package/components/table/edit-dialog/edit-entity-dialog.component.d.ts +1 -1
  35. package/components/table/table.component.d.ts +1 -1
  36. package/decorators/array/array-decorator-internal.data.d.ts +10 -10
  37. package/decorators/array/array-decorator.data.d.ts +5 -18
  38. package/decorators/base/decorator-types.enum.d.ts +3 -1
  39. package/decorators/file/file-decorator-internal.data.d.ts +0 -2
  40. package/decorators/file/file-decorator.data.d.ts +0 -7
  41. package/decorators/number/number-decorator-internal.data.d.ts +3 -3
  42. package/decorators/number/number-decorator.data.d.ts +3 -3
  43. package/decorators/references-many/references-many-decorator-internal.data.d.ts +20 -0
  44. package/decorators/references-many/references-many-decorator.data.d.ts +56 -0
  45. package/decorators/references-many/references-many.decorator.d.ts +9 -0
  46. package/esm2020/classes/entity.utilities.mjs +13 -3
  47. package/esm2020/components/confirm-dialog/confirm-dialog.component.mjs +3 -3
  48. package/esm2020/components/confirm-dialog/confirm-dialog.module.mjs +4 -4
  49. package/esm2020/components/input/array/array-date-input/array-date-input.component.mjs +7 -7
  50. package/esm2020/components/input/array/array-date-range-input/array-date-range-input.component.mjs +5 -5
  51. package/esm2020/components/input/array/array-date-time-input/array-date-time-input.component.mjs +7 -7
  52. package/esm2020/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.mjs +14 -59
  53. package/esm2020/components/input/array/array-string-chips-input/array-string-chips-input.component.mjs +10 -18
  54. package/esm2020/components/input/array/array-table.class.mjs +7 -7
  55. package/esm2020/components/input/base-input.component.mjs +3 -3
  56. package/esm2020/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.mjs +7 -7
  57. package/esm2020/components/input/boolean/boolean-dropdown-input/boolean-dropdown-input.component.mjs +3 -3
  58. package/esm2020/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.mjs +7 -7
  59. package/esm2020/components/input/custom/custom.component.mjs +3 -3
  60. package/esm2020/components/input/date/date-input/date-input.component.mjs +7 -7
  61. package/esm2020/components/input/date/date-range-input/date-range-input.component.mjs +5 -5
  62. package/esm2020/components/input/date/date-time-input/date-time-input.component.mjs +7 -7
  63. package/esm2020/components/input/file/file-default-input/file-default-input.component.mjs +3 -3
  64. package/esm2020/components/input/file/file-image-input/file-image-input.component.mjs +3 -3
  65. package/esm2020/components/input/file/file-input/dragDrop.directive.mjs +3 -3
  66. package/esm2020/components/input/file/file-input/file-input.component.mjs +10 -6
  67. package/esm2020/components/input/input.component.mjs +7 -6
  68. package/esm2020/components/input/input.module.mjs +35 -32
  69. package/esm2020/components/input/number/number-dropdown-input/number-dropdown-input.component.mjs +3 -3
  70. package/esm2020/components/input/number/number-input/number-input.component.mjs +5 -5
  71. package/esm2020/components/input/number/number-slider-input/number-slider-input.component.mjs +7 -7
  72. package/esm2020/components/input/relations/references-many-input/references-many-input.component.mjs +86 -0
  73. package/esm2020/components/input/string/string-autocomplete-input/string-autocomplete-input.component.mjs +5 -5
  74. package/esm2020/components/input/string/string-dropdown-input/string-dropdown-input.component.mjs +3 -3
  75. package/esm2020/components/input/string/string-input/string-input.component.mjs +5 -5
  76. package/esm2020/components/input/string/string-password-input/string-password-input.component.mjs +7 -7
  77. package/esm2020/components/input/string/string-textbox-input/string-textbox-input.component.mjs +5 -5
  78. package/esm2020/components/table/create-dialog/create-entity-dialog.component.mjs +5 -5
  79. package/esm2020/components/table/create-dialog/create-entity-dialog.module.mjs +4 -4
  80. package/esm2020/components/table/edit-dialog/edit-entity-dialog.component.mjs +5 -5
  81. package/esm2020/components/table/edit-dialog/edit-entity-dialog.module.mjs +4 -4
  82. package/esm2020/components/table/table.component.mjs +5 -5
  83. package/esm2020/components/table/table.module.mjs +4 -4
  84. package/esm2020/decorators/array/array-decorator-internal.data.mjs +2 -2
  85. package/esm2020/decorators/array/array-decorator.data.mjs +1 -1
  86. package/esm2020/decorators/base/decorator-types.enum.mjs +2 -1
  87. package/esm2020/decorators/file/file-decorator-internal.data.mjs +1 -3
  88. package/esm2020/decorators/file/file-decorator.data.mjs +1 -1
  89. package/esm2020/decorators/number/number-decorator-internal.data.mjs +3 -3
  90. package/esm2020/decorators/number/number-decorator.data.mjs +1 -1
  91. package/esm2020/decorators/references-many/references-many-decorator-internal.data.mjs +30 -0
  92. package/esm2020/decorators/references-many/references-many-decorator.data.mjs +2 -0
  93. package/esm2020/decorators/references-many/references-many.decorator.mjs +13 -0
  94. package/esm2020/public-api.mjs +3 -1
  95. package/fesm2015/ngx-material-entity.mjs +650 -570
  96. package/fesm2015/ngx-material-entity.mjs.map +1 -1
  97. package/fesm2020/ngx-material-entity.mjs +628 -556
  98. package/fesm2020/ngx-material-entity.mjs.map +1 -1
  99. package/package.json +7 -7
  100. package/public-api.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-material-entity",
3
- "version": "1.1.5",
3
+ "version": "15.0.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "angular",
@@ -9,12 +9,12 @@
9
9
  "entity"
10
10
  ],
11
11
  "peerDependencies": {
12
- "@angular/animations": "14",
13
- "@angular/cdk": "14",
14
- "@angular/common": "14",
15
- "@angular/core": "14",
16
- "@angular/forms": "14",
17
- "@angular/material": "14",
12
+ "@angular/animations": "15",
13
+ "@angular/cdk": "15",
14
+ "@angular/common": "15",
15
+ "@angular/core": "15",
16
+ "@angular/forms": "15",
17
+ "@angular/material": "15",
18
18
  "lodash": "4",
19
19
  "reflect-metadata": "^0.1.13",
20
20
  "jszip": "^3.10.1"
package/public-api.d.ts CHANGED
@@ -38,6 +38,8 @@ export * from './decorators/object/object.decorator';
38
38
  export * from './decorators/object/object-decorator.data';
39
39
  export * from './decorators/string/string.decorator';
40
40
  export * from './decorators/string/string-decorator.data';
41
+ export * from './decorators/references-many/references-many.decorator';
42
+ export * from './decorators/references-many/references-many-decorator.data';
41
43
  export * from './decorators/file/file.decorator';
42
44
  export * from './decorators/file/file-decorator.data';
43
45
  export * from './decorators/custom/custom.decorator';