@sumaris-net/ngx-components 18.0.0 → 18.0.1-0.alpha1

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 (122) hide show
  1. package/doc/build.md +13 -11
  2. package/doc/changelog.md +42 -5
  3. package/esm2022/public_api.mjs +4 -2
  4. package/esm2022/src/app/admin/services/filter/person.filter.mjs +10 -3
  5. package/esm2022/src/app/admin/services/person.service.mjs +11 -5
  6. package/esm2022/src/app/admin/users/users.mjs +2 -2
  7. package/esm2022/src/app/core/about/about.modal.mjs +6 -4
  8. package/esm2022/src/app/core/about/about.module.mjs +5 -4
  9. package/esm2022/src/app/core/account/account.page.mjs +5 -6
  10. package/esm2022/src/app/core/account/token.table.mjs +10 -6
  11. package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +5 -5
  12. package/esm2022/src/app/core/form/properties/properties.form.mjs +110 -57
  13. package/esm2022/src/app/core/form/properties/properties.utils.mjs +264 -32
  14. package/esm2022/src/app/core/form/properties/property.validator.mjs +36 -4
  15. package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +26 -18
  16. package/esm2022/src/app/core/graphql/graphql.service.mjs +1 -1
  17. package/esm2022/src/app/core/home/home.module.mjs +2 -2
  18. package/esm2022/src/app/core/menu/menu.component.mjs +3 -3
  19. package/esm2022/src/app/core/menu/menu.module.mjs +2 -2
  20. package/esm2022/src/app/core/menu/menu.service.mjs +5 -4
  21. package/esm2022/src/app/core/register/register.form.mjs +1 -1
  22. package/esm2022/src/app/core/services/base-entity-service.class.mjs +1 -1
  23. package/esm2022/src/app/core/services/config/core.config.mjs +6 -1
  24. package/esm2022/src/app/core/services/local-settings.service.mjs +17 -8
  25. package/esm2022/src/app/core/services/model/config.model.mjs +1 -1
  26. package/esm2022/src/app/core/services/model/entity.model.mjs +2 -2
  27. package/esm2022/src/app/core/services/model/settings.model.mjs +1 -1
  28. package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +1 -1
  29. package/esm2022/src/app/core/services/storage/entity-store.class.mjs +1 -1
  30. package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +4 -24
  31. package/esm2022/src/app/core/settings/settings.page.mjs +51 -16
  32. package/esm2022/src/app/core/table/column/row-field.component.mjs +1 -1
  33. package/esm2022/src/app/core/table/testing/table.testing.mjs +1 -1
  34. package/esm2022/src/app/core/table/testing/table2.testing.mjs +1 -1
  35. package/esm2022/src/app/shared/debug/debug.component.mjs +10 -6
  36. package/esm2022/src/app/shared/form/field.component.mjs +39 -31
  37. package/esm2022/src/app/shared/form/field.model.mjs +59 -2
  38. package/esm2022/src/app/shared/functions.mjs +6 -3
  39. package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +1 -1
  40. package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +51 -17
  41. package/esm2022/src/app/shared/image/gallery/image-gallery.module.mjs +2 -2
  42. package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +1 -1
  43. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +1 -1
  44. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +11 -4
  45. package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +2 -2
  46. package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +18 -8
  47. package/esm2022/src/app/shared/material/chips/chips.module.mjs +2 -2
  48. package/esm2022/src/app/shared/material/chips/material.chips.mjs +4 -3
  49. package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +33 -10
  50. package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +1 -1
  51. package/esm2022/src/app/shared/pipes/display-with.pipe.mjs +23 -0
  52. package/esm2022/src/app/shared/pipes/pipes.module.mjs +7 -3
  53. package/esm2022/src/app/shared/pipes/property.pipes.mjs +30 -31
  54. package/esm2022/src/app/shared/platforms.mjs +12 -4
  55. package/esm2022/src/app/shared/rx-state/rx-state.decorators.mjs +71 -0
  56. package/esm2022/src/app/shared/rx-state/rx-state.module.mjs +19 -0
  57. package/esm2022/src/app/shared/services/entity-service.class.mjs +1 -1
  58. package/esm2022/src/app/shared/services.mjs +34 -18
  59. package/esm2022/src/app/shared/shared.module.mjs +2 -2
  60. package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +2 -2
  61. package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +2 -2
  62. package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +2 -2
  63. package/esm2022/src/app/shared/types.mjs +1 -1
  64. package/esm2022/src/app/social/user-event/user-event.module.mjs +2 -2
  65. package/esm2022/src/environments/environment.mjs +3 -6
  66. package/fesm2022/sumaris-net.ngx-components.mjs +1429 -805
  67. package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
  68. package/package.json +5 -2
  69. package/public_api.d.ts +3 -1
  70. package/src/app/admin/services/filter/person.filter.d.ts +1 -0
  71. package/src/app/admin/services/person.service.d.ts +8 -6
  72. package/src/app/core/about/about.modal.d.ts +1 -1
  73. package/src/app/core/about/about.module.d.ts +2 -1
  74. package/src/app/core/account/token.table.d.ts +1 -1
  75. package/src/app/core/form/properties/properties.form.d.ts +28 -11
  76. package/src/app/core/form/properties/properties.utils.d.ts +41 -13
  77. package/src/app/core/form/properties/property.validator.d.ts +8 -0
  78. package/src/app/core/form/properties/testing/properties-form.test.d.ts +6 -3
  79. package/src/app/core/graphql/graphql.service.d.ts +2 -2
  80. package/src/app/core/home/home.module.d.ts +1 -1
  81. package/src/app/core/menu/menu.module.d.ts +1 -1
  82. package/src/app/core/services/base-entity-service.class.d.ts +1 -1
  83. package/src/app/core/services/config/core.config.d.ts +1 -0
  84. package/src/app/core/services/local-settings.service.d.ts +3 -1
  85. package/src/app/core/services/model/config.model.d.ts +2 -2
  86. package/src/app/core/services/model/entity.model.d.ts +2 -2
  87. package/src/app/core/services/model/settings.model.d.ts +2 -2
  88. package/src/app/core/services/storage/entities-storage.service.d.ts +4 -4
  89. package/src/app/core/services/storage/entity-store.class.d.ts +4 -4
  90. package/src/app/core/services/validator/local-settings.validator.d.ts +3 -7
  91. package/src/app/core/settings/settings.page.d.ts +4 -1
  92. package/src/app/shared/debug/debug.component.d.ts +2 -1
  93. package/src/app/shared/form/field.component.d.ts +14 -5
  94. package/src/app/shared/form/field.model.d.ts +44 -1
  95. package/src/app/shared/functions.d.ts +1 -0
  96. package/src/app/shared/hotkeys/hotkeys.service.d.ts +10 -3
  97. package/src/app/shared/image/gallery/image-gallery.module.d.ts +1 -1
  98. package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +2 -2
  99. package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +4 -1
  100. package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +1 -1
  101. package/src/app/shared/material/chips/chips.module.d.ts +1 -1
  102. package/src/app/shared/material/chips/material.chips.d.ts +1 -0
  103. package/src/app/shared/material/latlong/material.latlong.d.ts +3 -0
  104. package/src/app/shared/pipes/display-with.pipe.d.ts +8 -0
  105. package/src/app/shared/pipes/pipes.module.d.ts +5 -4
  106. package/src/app/shared/pipes/property.pipes.d.ts +3 -9
  107. package/src/app/shared/platforms.d.ts +3 -0
  108. package/src/app/shared/rx-state/rx-state.decorators.d.ts +7 -0
  109. package/src/app/shared/services/entity-service.class.d.ts +2 -0
  110. package/src/app/shared/services.d.ts +8 -1
  111. package/src/app/shared/shared.module.d.ts +1 -1
  112. package/src/app/shared/storage/storage-explorer.module.d.ts +1 -1
  113. package/src/app/shared/toolbar/toolbar.module.d.ts +1 -1
  114. package/src/app/shared/types.d.ts +11 -6
  115. package/src/app/social/user-event/user-event.module.d.ts +1 -1
  116. package/src/assets/i18n/en-US.json +14 -2
  117. package/src/assets/i18n/en.json +13 -1
  118. package/src/assets/i18n/fr.json +11 -1
  119. package/src/assets/manifest.json +1 -1
  120. package/src/theme/_ngx-components.scss +2 -4
  121. package/esm2022/src/app/shared/rx-state.module.mjs +0 -19
  122. /package/src/app/shared/{rx-state.module.d.ts → rx-state/rx-state.module.d.ts} +0 -0
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "18.0.0",
5
+ "version": "18.0.9",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -429,15 +429,13 @@ ion-list,
429
429
  --ion-grid-column-padding: 0;
430
430
 
431
431
  ion-col {
432
- --ion-padding-start: 8px;
432
+ --padding-start: 8px;
433
433
  padding: 0 !important;
434
- padding-left: var(--ion-padding-start) !important;
434
+ padding-left: var(--padding-start) !important;
435
435
  text-overflow: ellipsis;
436
436
  overflow: hidden;
437
437
  white-space: nowrap;
438
438
  }
439
-
440
-
441
439
  }
442
440
 
443
441
  .odd {
@@ -1,19 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { RxFor } from '@rx-angular/template/for';
3
- import { RxIf } from '@rx-angular/template/if';
4
- import { RxPush } from '@rx-angular/template/push';
5
- import { RxLet } from '@rx-angular/template/let';
6
- import * as i0 from "@angular/core";
7
- export class RxStateModule {
8
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RxStateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
9
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.8", ngImport: i0, type: RxStateModule, imports: [RxPush, RxFor, RxIf, RxLet], exports: [RxPush, RxFor, RxIf, RxLet] });
10
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RxStateModule });
11
- }
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: RxStateModule, decorators: [{
13
- type: NgModule,
14
- args: [{
15
- imports: [RxPush, RxFor, RxIf, RxLet],
16
- exports: [RxPush, RxFor, RxIf, RxLet],
17
- }]
18
- }] });
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicngtc3RhdGUubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9zaGFyZWQvcngtc3RhdGUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2pELE9BQU8sRUFBRSxJQUFJLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDbkQsT0FBTyxFQUFFLEtBQUssRUFBRSxNQUFNLDBCQUEwQixDQUFDOztBQU1qRCxNQUFNLE9BQU8sYUFBYTt1R0FBYixhQUFhO3dHQUFiLGFBQWEsWUFIZCxNQUFNLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxLQUFLLGFBQzFCLE1BQU0sRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFLEtBQUs7d0dBRXpCLGFBQWE7OzJGQUFiLGFBQWE7a0JBSnpCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsTUFBTSxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUUsS0FBSyxDQUFDO29CQUNyQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxLQUFLLENBQUM7aUJBQ3RDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJ4Rm9yIH0gZnJvbSAnQHJ4LWFuZ3VsYXIvdGVtcGxhdGUvZm9yJztcbmltcG9ydCB7IFJ4SWYgfSBmcm9tICdAcngtYW5ndWxhci90ZW1wbGF0ZS9pZic7XG5pbXBvcnQgeyBSeFB1c2ggfSBmcm9tICdAcngtYW5ndWxhci90ZW1wbGF0ZS9wdXNoJztcbmltcG9ydCB7IFJ4TGV0IH0gZnJvbSAnQHJ4LWFuZ3VsYXIvdGVtcGxhdGUvbGV0JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW1J4UHVzaCwgUnhGb3IsIFJ4SWYsIFJ4TGV0XSxcbiAgZXhwb3J0czogW1J4UHVzaCwgUnhGb3IsIFJ4SWYsIFJ4TGV0XSxcbn0pXG5leHBvcnQgY2xhc3MgUnhTdGF0ZU1vZHVsZSB7fVxuIl19