ngx-material-entity 16.1.4 → 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 (121) hide show
  1. package/components/create-page/create-page.component.d.ts +2 -2
  2. package/components/edit-page/edit-page.component.d.ts +4 -4
  3. package/components/form/form.component.d.ts +7 -2
  4. package/components/input/array/array-date-time-input/array-date-time-input.component.d.ts +1 -2
  5. package/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.d.ts +1 -1
  6. package/components/input/base-input.component.d.ts +2 -2
  7. package/components/input/date/date-time-input/date-time-input.component.d.ts +1 -2
  8. package/components/input/file/file-input/file-input.component.d.ts +3 -3
  9. package/components/input/input.component.d.ts +70 -38
  10. package/components/input/number/number-dropdown-input/number-dropdown-input.component.d.ts +1 -1
  11. package/components/input/relations/references-many-input/references-many-input.component.d.ts +1 -1
  12. package/components/input/string/string-autocomplete-input/string-autocomplete-input.component.d.ts +1 -1
  13. package/components/input/string/string-dropdown-input/string-dropdown-input.component.d.ts +1 -1
  14. package/components/table/create-dialog/create-entity-dialog.component.d.ts +1 -1
  15. package/components/table/display-column-value/base-display-column-value.component.d.ts +2 -5
  16. package/components/table/display-column-value/display-column-value.component.d.ts +1 -1
  17. package/components/table/edit-dialog/edit-entity-dialog.component.d.ts +4 -4
  18. package/components/table/table.component.d.ts +3 -3
  19. package/components/tooltip/tooltip.component.d.ts +1 -1
  20. package/decorators/array/array-decorator-internal.data.d.ts +1 -1
  21. package/decorators/array/array-decorator.data.d.ts +1 -1
  22. package/decorators/date/date-decorator-internal.data.d.ts +1 -1
  23. package/decorators/date/date-decorator.data.d.ts +1 -1
  24. package/directives/drag-drop.directive.d.ts +1 -1
  25. package/directives/tooltip.directive.d.ts +1 -1
  26. package/esm2022/classes/base.builder.mjs +2 -2
  27. package/esm2022/classes/entity.model.mjs +1 -1
  28. package/esm2022/components/confirm-dialog/confirm-dialog-data.builder.mjs +2 -2
  29. package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +7 -7
  30. package/esm2022/components/create-page/create-data.route.mjs +2 -1
  31. package/esm2022/components/create-page/create-page.component.mjs +26 -23
  32. package/esm2022/components/create-page/page-create-data.builder.mjs +2 -1
  33. package/esm2022/components/edit-page/edit-data.route.mjs +2 -1
  34. package/esm2022/components/edit-page/edit-page.component.mjs +55 -54
  35. package/esm2022/components/edit-page/page-edit-data.builder.mjs +2 -1
  36. package/esm2022/components/form/form.component.mjs +14 -6
  37. package/esm2022/components/input/array/array-date-input/array-date-input.component.mjs +7 -7
  38. package/esm2022/components/input/array/array-date-range-input/array-date-range-input.component.mjs +7 -7
  39. package/esm2022/components/input/array/array-date-time-input/array-date-time-input.component.mjs +8 -8
  40. package/esm2022/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.mjs +8 -8
  41. package/esm2022/components/input/array/array-string-chips-input/array-string-chips-input.component.mjs +5 -5
  42. package/esm2022/components/input/array/array-table.class.mjs +21 -20
  43. package/esm2022/components/input/base-input.component.mjs +14 -9
  44. package/esm2022/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.mjs +5 -5
  45. package/esm2022/components/input/boolean/boolean-dropdown-input/boolean-dropdown-input.component.mjs +6 -6
  46. package/esm2022/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.mjs +5 -5
  47. package/esm2022/components/input/custom/custom.component.mjs +4 -4
  48. package/esm2022/components/input/date/date-input/date-input.component.mjs +3 -3
  49. package/esm2022/components/input/date/date-range-input/date-range-input.component.mjs +7 -7
  50. package/esm2022/components/input/date/date-time-input/date-time-input.component.mjs +9 -12
  51. package/esm2022/components/input/file/file-default-input/file-default-input.component.mjs +5 -7
  52. package/esm2022/components/input/file/file-image-input/file-image-input.component.mjs +6 -6
  53. package/esm2022/components/input/file/file-input/file-input.component.mjs +22 -24
  54. package/esm2022/components/input/input.component.mjs +199 -147
  55. package/esm2022/components/input/number/number-dropdown-input/number-dropdown-input.component.mjs +10 -10
  56. package/esm2022/components/input/number/number-input/number-input.component.mjs +3 -3
  57. package/esm2022/components/input/number/number-slider-input/number-slider-input.component.mjs +3 -3
  58. package/esm2022/components/input/relations/references-many-input/references-many-input.component.mjs +21 -21
  59. package/esm2022/components/input/string/string-autocomplete-input/string-autocomplete-input.component.mjs +10 -11
  60. package/esm2022/components/input/string/string-dropdown-input/string-dropdown-input.component.mjs +9 -9
  61. package/esm2022/components/input/string/string-input/string-input.component.mjs +3 -3
  62. package/esm2022/components/input/string/string-password-input/string-password-input.component.mjs +8 -11
  63. package/esm2022/components/input/string/string-textbox-input/string-textbox-input.component.mjs +3 -3
  64. package/esm2022/components/table/create-dialog/create-data.builder.mjs +3 -1
  65. package/esm2022/components/table/create-dialog/create-entity-dialog.component.mjs +9 -7
  66. package/esm2022/components/table/default.actions.mjs +4 -3
  67. package/esm2022/components/table/display-column-value/base-display-column-value.component.mjs +8 -13
  68. package/esm2022/components/table/display-column-value/display-column-value.component.mjs +9 -13
  69. package/esm2022/components/table/edit-dialog/edit-data.builder.mjs +9 -3
  70. package/esm2022/components/table/edit-dialog/edit-entity-dialog.component.mjs +37 -34
  71. package/esm2022/components/table/table-data.builder.mjs +12 -5
  72. package/esm2022/components/table/table-data.mjs +1 -1
  73. package/esm2022/components/table/table.component.mjs +25 -24
  74. package/esm2022/components/tooltip/tooltip.component.mjs +7 -8
  75. package/esm2022/decorators/array/array-decorator-internal.data.mjs +1 -1
  76. package/esm2022/decorators/array/array-decorator.data.mjs +1 -1
  77. package/esm2022/decorators/array/array.decorator.mjs +1 -1
  78. package/esm2022/decorators/base/base-property.decorator.mjs +1 -1
  79. package/esm2022/decorators/base/decorator-types.enum.mjs +1 -1
  80. package/esm2022/decorators/base/property-decorator-internal.data.mjs +6 -6
  81. package/esm2022/decorators/boolean/boolean-decorator-internal.data.mjs +2 -1
  82. package/esm2022/decorators/boolean/boolean.decorator.mjs +1 -1
  83. package/esm2022/decorators/custom/custom-decorator-internal.data.mjs +1 -1
  84. package/esm2022/decorators/custom/custom-decorator.data.mjs +1 -1
  85. package/esm2022/decorators/date/date-decorator-internal.data.mjs +1 -1
  86. package/esm2022/decorators/date/date-decorator.data.mjs +1 -1
  87. package/esm2022/decorators/date/date.decorator.mjs +1 -1
  88. package/esm2022/decorators/file/file-decorator-internal.data.mjs +8 -4
  89. package/esm2022/decorators/file/file.decorator.mjs +1 -1
  90. package/esm2022/decorators/has-many/has-many-decorator-internal.data.mjs +2 -1
  91. package/esm2022/decorators/number/number-decorator.data.mjs +1 -1
  92. package/esm2022/decorators/number/number.decorator.mjs +1 -1
  93. package/esm2022/decorators/object/object-decorator.data.mjs +1 -1
  94. package/esm2022/decorators/object/object.decorator.mjs +2 -1
  95. package/esm2022/decorators/string/string-decorator-internal.data.mjs +1 -1
  96. package/esm2022/decorators/string/string-decorator.data.mjs +1 -1
  97. package/esm2022/decorators/string/string.decorator.mjs +1 -1
  98. package/esm2022/directives/drag-drop.directive.mjs +5 -5
  99. package/esm2022/directives/dynamic-style-class.directive.mjs +5 -5
  100. package/esm2022/directives/included-in.directive.mjs +6 -5
  101. package/esm2022/directives/number.directive.mjs +6 -6
  102. package/esm2022/directives/password-match.directive.mjs +5 -5
  103. package/esm2022/directives/tooltip.directive.mjs +22 -20
  104. package/esm2022/encapsulation/reflect.utilities.mjs +2 -2
  105. package/esm2022/functions/dropdown-values-to-function.function.mjs +1 -1
  106. package/esm2022/functions/get-config-value.function.mjs +2 -2
  107. package/esm2022/functions/get-validation-error-message.function.mjs +1 -1
  108. package/esm2022/functions/get-validation-errors-tooltip-content.function.ts.mjs +1 -1
  109. package/esm2022/global-configuration-values.mjs +2 -1
  110. package/esm2022/mocks/placeholder-data.png.mjs +2 -2
  111. package/esm2022/services/entity.service.mjs +10 -11
  112. package/esm2022/services/unsaved-changes.guard.mjs +1 -1
  113. package/esm2022/utilities/date.utilities.mjs +10 -25
  114. package/esm2022/utilities/entity.utilities.mjs +15 -19
  115. package/esm2022/utilities/file.utilities.mjs +8 -10
  116. package/esm2022/utilities/selection.utilities.mjs +6 -4
  117. package/esm2022/utilities/validation.utilities.mjs +35 -38
  118. package/fesm2022/ngx-material-entity.mjs +728 -671
  119. package/fesm2022/ngx-material-entity.mjs.map +1 -1
  120. package/package.json +8 -8
  121. package/utilities/date.utilities.d.ts +29 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.