ngx-material-entity 16.0.9 → 16.1.1

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 (91) hide show
  1. package/README.md +4 -3
  2. package/components/create-page/create-page.component.d.ts +7 -7
  3. package/components/create-page/page-create-data.builder.d.ts +1 -1
  4. package/components/edit-page/edit-page.component.d.ts +5 -11
  5. package/components/form/form.component.d.ts +59 -0
  6. package/components/input/array/array-date-input/array-date-input.component.d.ts +1 -1
  7. package/components/input/array/array-date-range-input/array-date-range-input.component.d.ts +1 -1
  8. package/components/input/array/array-date-time-input/array-date-time-input.component.d.ts +1 -1
  9. package/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.d.ts +1 -1
  10. package/components/input/array/array-string-chips-input/array-string-chips-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/file-input.component.d.ts +1 -1
  21. package/components/input/input.component.d.ts +3 -5
  22. package/components/input/number/number-dropdown-input/number-dropdown-input.component.d.ts +1 -1
  23. package/components/input/number/number-input/number-input.component.d.ts +1 -1
  24. package/components/input/number/number-slider-input/number-slider-input.component.d.ts +1 -1
  25. package/components/input/relations/references-many-input/references-many-input.component.d.ts +1 -1
  26. package/components/input/string/string-autocomplete-input/string-autocomplete-input.component.d.ts +1 -1
  27. package/components/input/string/string-dropdown-input/string-dropdown-input.component.d.ts +1 -1
  28. package/components/input/string/string-input/string-input.component.d.ts +1 -1
  29. package/components/input/string/string-password-input/string-password-input.component.d.ts +1 -1
  30. package/components/input/string/string-textbox-input/string-textbox-input.component.d.ts +1 -1
  31. package/components/table/create-dialog/{create-entity-dialog-data.builder.d.ts → create-entity-data.builder.d.ts} +1 -1
  32. package/components/table/create-dialog/create-entity-dialog.component.d.ts +3 -7
  33. package/components/table/table.component.d.ts +2 -4
  34. package/default-global-configuration-values.d.ts +0 -5
  35. package/directives/drag-drop.directive.d.ts +1 -1
  36. package/directives/tooltip.directive.d.ts +2 -1
  37. package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +4 -4
  38. package/esm2022/components/create-page/create-page.component.mjs +20 -24
  39. package/esm2022/components/create-page/page-create-data.builder.mjs +1 -1
  40. package/esm2022/components/edit-page/edit-page.component.mjs +19 -37
  41. package/esm2022/components/form/form.component.mjs +99 -0
  42. package/esm2022/components/input/array/array-date-input/array-date-input.component.mjs +30 -14
  43. package/esm2022/components/input/array/array-date-range-input/array-date-range-input.component.mjs +28 -14
  44. package/esm2022/components/input/array/array-date-time-input/array-date-time-input.component.mjs +34 -15
  45. package/esm2022/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.mjs +22 -10
  46. package/esm2022/components/input/array/array-string-chips-input/array-string-chips-input.component.mjs +18 -9
  47. package/esm2022/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.mjs +14 -6
  48. package/esm2022/components/input/boolean/boolean-dropdown-input/boolean-dropdown-input.component.mjs +19 -11
  49. package/esm2022/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.mjs +16 -8
  50. package/esm2022/components/input/custom/custom.component.mjs +3 -4
  51. package/esm2022/components/input/date/date-input/date-input.component.mjs +15 -7
  52. package/esm2022/components/input/date/date-range-input/date-range-input.component.mjs +19 -11
  53. package/esm2022/components/input/date/date-time-input/date-time-input.component.mjs +26 -14
  54. package/esm2022/components/input/file/file-default-input/file-default-input.component.mjs +6 -5
  55. package/esm2022/components/input/file/file-image-input/file-image-input.component.mjs +8 -7
  56. package/esm2022/components/input/file/file-input/file-input.component.mjs +23 -13
  57. package/esm2022/components/input/input.component.mjs +122 -80
  58. package/esm2022/components/input/number/number-dropdown-input/number-dropdown-input.component.mjs +18 -8
  59. package/esm2022/components/input/number/number-input/number-input.component.mjs +12 -7
  60. package/esm2022/components/input/number/number-slider-input/number-slider-input.component.mjs +14 -8
  61. package/esm2022/components/input/relations/references-many-input/references-many-input.component.mjs +32 -17
  62. package/esm2022/components/input/string/string-autocomplete-input/string-autocomplete-input.component.mjs +22 -11
  63. package/esm2022/components/input/string/string-dropdown-input/string-dropdown-input.component.mjs +21 -11
  64. package/esm2022/components/input/string/string-input/string-input.component.mjs +12 -6
  65. package/esm2022/components/input/string/string-password-input/string-password-input.component.mjs +19 -9
  66. package/esm2022/components/input/string/string-textbox-input/string-textbox-input.component.mjs +12 -6
  67. package/esm2022/components/table/create-dialog/create-entity-data.builder.mjs +32 -0
  68. package/esm2022/components/table/create-dialog/create-entity-data.mjs +2 -0
  69. package/esm2022/components/table/create-dialog/create-entity-dialog.component.mjs +12 -24
  70. package/esm2022/components/table/edit-dialog/edit-data.builder.mjs +4 -4
  71. package/esm2022/components/table/edit-dialog/edit-entity-dialog.component.mjs +12 -19
  72. package/esm2022/components/table/table-data.builder.mjs +5 -5
  73. package/esm2022/components/table/table.component.mjs +9 -14
  74. package/esm2022/default-global-configuration-values.mjs +1 -17
  75. package/esm2022/directives/drag-drop.directive.mjs +4 -3
  76. package/esm2022/directives/tooltip.directive.mjs +10 -6
  77. package/esm2022/global-configuration-values.mjs +16 -2
  78. package/esm2022/public-api.mjs +3 -4
  79. package/esm2022/services/entity.service.mjs +1 -1
  80. package/esm2022/utilities/entity.utilities.mjs +6 -6
  81. package/fesm2022/ngx-material-entity.mjs +2304 -2222
  82. package/fesm2022/ngx-material-entity.mjs.map +1 -1
  83. package/global-configuration-values.d.ts +4 -0
  84. package/package.json +1 -1
  85. package/public-api.d.ts +2 -3
  86. package/utilities/entity.utilities.d.ts +2 -2
  87. package/components/input/input.module.d.ts +0 -58
  88. package/esm2022/components/input/input.module.mjs +0 -192
  89. package/esm2022/components/table/create-dialog/create-entity-dialog-data.builder.mjs +0 -32
  90. package/esm2022/components/table/create-dialog/create-entity-dialog-data.mjs +0 -2
  91. /package/components/table/create-dialog/{create-entity-dialog-data.d.ts → create-entity-data.d.ts} +0 -0

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.