ngx-material-entity 15.2.8 → 15.3.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 (56) hide show
  1. package/README.md +1 -1
  2. package/classes/base.builder.d.ts +0 -2
  3. package/components/input/input.component.d.ts +1 -2
  4. package/components/table/edit-dialog/edit-data.builder.d.ts +2 -1
  5. package/components/table/table-data.builder.d.ts +4 -2
  6. package/components/table/table-data.d.ts +3 -3
  7. package/decorators/base/property-decorator-internal.data.d.ts +10 -4
  8. package/decorators/base/property-decorator.data.d.ts +1 -1
  9. package/esm2020/classes/base.builder.mjs +1 -3
  10. package/esm2020/components/edit-page/edit-page.component.mjs +4 -3
  11. package/esm2020/components/edit-page/page-edit-data.builder.mjs +3 -2
  12. package/esm2020/components/input/array/array-date-input/array-date-input.component.mjs +3 -3
  13. package/esm2020/components/input/array/array-date-range-input/array-date-range-input.component.mjs +3 -3
  14. package/esm2020/components/input/array/array-date-time-input/array-date-time-input.component.mjs +3 -3
  15. package/esm2020/components/input/array/array-string-autocomplete-chips/array-string-autocomplete-chips.component.mjs +3 -3
  16. package/esm2020/components/input/array/array-string-chips-input/array-string-chips-input.component.mjs +3 -3
  17. package/esm2020/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.mjs +3 -3
  18. package/esm2020/components/input/boolean/boolean-dropdown-input/boolean-dropdown-input.component.mjs +3 -3
  19. package/esm2020/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.mjs +3 -3
  20. package/esm2020/components/input/date/date-input/date-input.component.mjs +3 -3
  21. package/esm2020/components/input/date/date-range-input/date-range-input.component.mjs +3 -3
  22. package/esm2020/components/input/date/date-time-input/date-time-input.component.mjs +3 -3
  23. package/esm2020/components/input/file/file-input/file-input.component.mjs +3 -3
  24. package/esm2020/components/input/input.component.mjs +24 -14
  25. package/esm2020/components/input/number/number-dropdown-input/number-dropdown-input.component.mjs +3 -3
  26. package/esm2020/components/input/number/number-input/number-input.component.mjs +3 -3
  27. package/esm2020/components/input/number/number-slider-input/number-slider-input.component.mjs +3 -3
  28. package/esm2020/components/input/string/string-autocomplete-input/string-autocomplete-input.component.mjs +3 -3
  29. package/esm2020/components/input/string/string-dropdown-input/string-dropdown-input.component.mjs +3 -3
  30. package/esm2020/components/input/string/string-input/string-input.component.mjs +3 -3
  31. package/esm2020/components/input/string/string-password-input/string-password-input.component.mjs +5 -4
  32. package/esm2020/components/input/string/string-textbox-input/string-textbox-input.component.mjs +3 -3
  33. package/esm2020/components/table/edit-dialog/edit-data.builder.mjs +21 -3
  34. package/esm2020/components/table/edit-dialog/edit-entity-dialog.component.mjs +4 -3
  35. package/esm2020/components/table/edit-dialog/edit-entity.builder.mjs +3 -2
  36. package/esm2020/components/table/table-data.builder.mjs +36 -4
  37. package/esm2020/components/table/table-data.mjs +1 -1
  38. package/esm2020/components/table/table.component.mjs +6 -6
  39. package/esm2020/decorators/base/property-decorator-internal.data.mjs +13 -10
  40. package/esm2020/decorators/base/property-decorator.data.mjs +1 -1
  41. package/esm2020/decorators/boolean/boolean-decorator-internal.data.mjs +3 -3
  42. package/esm2020/decorators/custom/custom-decorator-internal.data.mjs +2 -2
  43. package/esm2020/decorators/string/string-decorator-internal.data.mjs +2 -1
  44. package/esm2020/functions/default-false.function.mjs +10 -0
  45. package/esm2020/functions/default-true.function.mjs +10 -0
  46. package/esm2020/functions/is-async-function.function.mjs +10 -0
  47. package/esm2020/utilities/date.utilities.mjs +2 -2
  48. package/esm2020/utilities/entity.utilities.mjs +24 -27
  49. package/fesm2015/ngx-material-entity.mjs +519 -435
  50. package/fesm2015/ngx-material-entity.mjs.map +1 -1
  51. package/fesm2020/ngx-material-entity.mjs +518 -435
  52. package/fesm2020/ngx-material-entity.mjs.map +1 -1
  53. package/functions/default-false.function.d.ts +7 -0
  54. package/functions/default-true.function.d.ts +7 -0
  55. package/functions/is-async-function.function.d.ts +7 -0
  56. package/package.json +1 -1
@@ -0,0 +1,7 @@
1
+ /**
2
+ * The default false function.
3
+ * A boolean false is resolved to this.
4
+ *
5
+ * @returns False.
6
+ */
7
+ export declare function defaultFalse(): boolean;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * The default true function.
3
+ * A boolean true is resolved to this.
4
+ *
5
+ * @returns True.
6
+ */
7
+ export declare function defaultTrue(): boolean;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Checks if the given function is async or not.
3
+ *
4
+ * @param originalFunction - The function to check.
5
+ * @returns True when the constructor name is 'AsyncFunction' and false otherwise.
6
+ */
7
+ export declare function isAsyncFunction(originalFunction: Function): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-material-entity",
3
- "version": "15.2.8",
3
+ "version": "15.3.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "angular",