@sumaris-net/ngx-components 2.6.17 → 4.0.0-rc1
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.
- package/esm2022/public_api.mjs +337 -0
- package/{esm2020 → esm2022}/src/app/admin/admin-routing.module.mjs +8 -8
- package/{esm2020 → esm2022}/src/app/admin/admin.module.mjs +11 -11
- package/esm2022/src/app/admin/services/filter/person.filter.mjs +68 -0
- package/esm2022/src/app/admin/services/person.service.mjs +174 -0
- package/esm2022/src/app/admin/services/validator/person.validator.mjs +72 -0
- package/esm2022/src/app/admin/users/users.mjs +273 -0
- package/esm2022/src/app/admin/users/users.module.mjs +58 -0
- package/esm2022/src/app/core/about/about.modal.mjs +84 -0
- package/{esm2020 → esm2022}/src/app/core/about/about.module.mjs +9 -9
- package/{esm2020 → esm2022}/src/app/core/account/account.module.mjs +22 -22
- package/esm2022/src/app/core/account/account.page.mjs +335 -0
- package/esm2022/src/app/core/account/new-token.modal.mjs +125 -0
- package/esm2022/src/app/core/account/token.table.mjs +141 -0
- package/esm2022/src/app/core/auth/auth.form.mjs +140 -0
- package/esm2022/src/app/core/auth/auth.modal.mjs +76 -0
- package/{esm2020 → esm2022}/src/app/core/auth/auth.module.mjs +16 -16
- package/{esm2020 → esm2022}/src/app/core/core.module.mjs +87 -87
- package/esm2022/src/app/core/core.testing.module.mjs +93 -0
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +109 -0
- package/{esm2020 → esm2022}/src/app/core/form/buttons/form-buttons-bar.module.mjs +10 -10
- package/esm2022/src/app/core/form/entity/editor.class.mjs +713 -0
- package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +436 -0
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +724 -0
- package/esm2022/src/app/core/form/entity/entity-metadata.component.mjs +24 -0
- package/{esm2020 → esm2022}/src/app/core/form/entity/entity.module.mjs +11 -11
- package/esm2022/src/app/core/form/form.class.mjs +353 -0
- package/{esm2020 → esm2022}/src/app/core/form/form.module.mjs +30 -30
- package/{esm2020 → esm2022}/src/app/core/form/form.utils.mjs +69 -60
- package/esm2022/src/app/core/form/list/list.form.mjs +233 -0
- package/{esm2020 → esm2022}/src/app/core/form/list/list.module.mjs +10 -10
- package/esm2022/src/app/core/form/properties/properties.form.mjs +143 -0
- package/{esm2020 → esm2022}/src/app/core/form/properties/properties.module.mjs +13 -13
- package/esm2022/src/app/core/form/properties/properties.table.mjs +269 -0
- package/esm2022/src/app/core/form/properties/property.validator.mjs +24 -0
- package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +95 -0
- package/{esm2020 → esm2022}/src/app/core/form/properties/testing/properties-form.testing.module.mjs +11 -11
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.mjs +73 -0
- package/{esm2020 → esm2022}/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +10 -10
- package/esm2022/src/app/core/form/text-popover/text-form.component.mjs +97 -0
- package/{esm2020 → esm2022}/src/app/core/form/text-popover/text-popover.component.mjs +26 -20
- package/{esm2020 → esm2022}/src/app/core/form/text-popover/text-popover.module.mjs +12 -12
- package/{esm2020 → esm2022}/src/app/core/graphql/graphql.module.mjs +5 -5
- package/esm2022/src/app/core/graphql/graphql.service.mjs +787 -0
- package/{esm2020 → esm2022}/src/app/core/graphql/graphql.utils.mjs +2 -1
- package/esm2022/src/app/core/home/home.mjs +283 -0
- package/esm2022/src/app/core/home/home.module.mjs +51 -0
- package/esm2022/src/app/core/icon/icon.component.mjs +40 -0
- package/{esm2020 → esm2022}/src/app/core/icon/icon.module.mjs +7 -7
- package/esm2022/src/app/core/install/install-upgrade-card.component.mjs +358 -0
- package/{esm2020 → esm2022}/src/app/core/install/install-upgrade-card.module.mjs +10 -10
- package/esm2022/src/app/core/menu/menu.component.mjs +260 -0
- package/esm2022/src/app/core/menu/menu.model.mjs +268 -0
- package/esm2022/src/app/core/menu/menu.module.mjs +52 -0
- package/esm2022/src/app/core/menu/menu.service.mjs +665 -0
- package/esm2022/src/app/core/menu/sub-menu-tab.directive.mjs +109 -0
- package/{esm2020 → esm2022}/src/app/core/menu/testing/menu-other.testing.mjs +4 -4
- package/esm2022/src/app/core/menu/testing/menu.testing.mjs +122 -0
- package/{esm2020 → esm2022}/src/app/core/menu/testing/menu.testing.module.mjs +12 -12
- package/esm2022/src/app/core/offline/update-offline-mode-card.component.mjs +29 -0
- package/{esm2020 → esm2022}/src/app/core/offline/update-offline-mode-card.module.mjs +10 -10
- package/esm2022/src/app/core/peer/select-peer.modal.mjs +192 -0
- package/{esm2020 → esm2022}/src/app/core/peer/select-peer.module.mjs +13 -13
- package/esm2022/src/app/core/register/register-confirm.page.mjs +88 -0
- package/esm2022/src/app/core/register/register.form.mjs +194 -0
- package/esm2022/src/app/core/register/register.modal.mjs +55 -0
- package/{esm2020 → esm2022}/src/app/core/register/register.module.mjs +13 -13
- package/esm2022/src/app/core/services/account.service.mjs +1217 -0
- package/esm2022/src/app/core/services/auth-guard.service.mjs +76 -0
- package/esm2022/src/app/core/services/base-entity-service.class.mjs +482 -0
- package/esm2022/src/app/core/services/base-graphql-service.class.mjs +224 -0
- package/esm2022/src/app/core/services/base58.mjs +79 -0
- package/{esm2020 → esm2022}/src/app/core/services/config/core.config.mjs +4 -4
- package/esm2022/src/app/core/services/config.service.mjs +365 -0
- package/esm2022/src/app/core/services/crypto.service.mjs +107 -0
- package/esm2022/src/app/core/services/local-settings.service.mjs +468 -0
- package/esm2022/src/app/core/services/model/account.model.mjs +153 -0
- package/esm2022/src/app/core/services/model/config.model.mjs +105 -0
- package/esm2022/src/app/core/services/model/department.model.mjs +33 -0
- package/esm2022/src/app/core/services/model/entity.decorators.mjs +97 -0
- package/esm2022/src/app/core/services/model/entity.model.mjs +228 -0
- package/esm2022/src/app/core/services/model/peer.model.mjs +82 -0
- package/esm2022/src/app/core/services/model/person.model.mjs +109 -0
- package/esm2022/src/app/core/services/model/referential.model.mjs +185 -0
- package/esm2022/src/app/core/services/model/token.model.mjs +52 -0
- package/esm2022/src/app/core/services/network.service.mjs +608 -0
- package/{esm2020 → esm2022}/src/app/core/services/pipes/account.pipes.mjs +9 -9
- package/{esm2020 → esm2022}/src/app/core/services/pipes/department-to-string.pipe.mjs +5 -5
- package/{esm2020 → esm2022}/src/app/core/services/pipes/person-to-string.pipe.mjs +5 -5
- package/{esm2020 → esm2022}/src/app/core/services/pipes/usage-mode.pipes.mjs +9 -9
- package/esm2022/src/app/core/services/platform.service.mjs +546 -0
- package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +434 -0
- package/esm2022/src/app/core/services/storage/entity-store.class.mjs +458 -0
- package/esm2022/src/app/core/services/testing/referential-filter.model.mjs +25 -0
- package/esm2022/src/app/core/services/testing/referential.validator.mjs +46 -0
- package/esm2022/src/app/core/services/validator/account.validator.mjs +45 -0
- package/esm2022/src/app/core/services/validator/base.validator.class.mjs +49 -0
- package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +67 -0
- package/{esm2020 → esm2022}/src/app/core/services/validator/user-settings.validator.mjs +4 -4
- package/{esm2020 → esm2022}/src/app/core/services/validator/user-token.validator.mjs +4 -4
- package/{esm2020 → esm2022}/src/app/core/settings/settings.module.mjs +9 -9
- package/esm2022/src/app/core/settings/settings.page.mjs +328 -0
- package/esm2022/src/app/core/table/actions-column.component.mjs +115 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +1735 -0
- package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +386 -0
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +401 -0
- package/esm2022/src/app/core/table/memory-table.class.mjs +57 -0
- package/esm2022/src/app/core/table/table-select-columns.component.mjs +46 -0
- package/esm2022/src/app/core/table/table.class.mjs +1771 -0
- package/esm2022/src/app/core/table/table.model.mjs +16 -0
- package/{esm2020 → esm2022}/src/app/core/table/table.module.mjs +12 -12
- package/esm2022/src/app/core/table/testing/table-validator.service.mjs +28 -0
- package/esm2022/src/app/core/table/testing/table.testing.mjs +291 -0
- package/esm2022/src/app/core/table/testing/table.testing.module.mjs +50 -0
- package/esm2022/src/app/core/table/testing/table2-validator.service.mjs +25 -0
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +250 -0
- package/esm2022/src/app/shared/audio/audio.mjs +251 -0
- package/esm2022/src/app/shared/audio/audio.testing.mjs +32 -0
- package/{esm2020 → esm2022}/src/app/shared/audio/audio.testing.module.mjs +10 -10
- package/esm2022/src/app/shared/capacitor/keyboard.mjs +42 -0
- package/esm2022/src/app/shared/capacitor/plugins.mjs +9 -0
- package/esm2022/src/app/shared/dates.mjs +149 -0
- package/esm2022/src/app/shared/debug/debug.component.mjs +40 -0
- package/{esm2020 → esm2022}/src/app/shared/debug/debug.module.mjs +14 -14
- package/esm2022/src/app/shared/directives/autofocus.directive.mjs +98 -0
- package/esm2022/src/app/shared/directives/autotitle.directive.mjs +32 -0
- package/{esm2020 → esm2022}/src/app/shared/directives/directives.module.mjs +13 -13
- package/esm2022/src/app/shared/directives/drag-and-drop.directive.mjs +52 -0
- package/esm2022/src/app/shared/directives/ng-var.directive.mjs +33 -0
- package/esm2022/src/app/shared/directives/resizable/resizable.component.mjs +62 -0
- package/esm2022/src/app/shared/directives/resizable/resizable.directive.mjs +45 -0
- package/{esm2020 → esm2022}/src/app/shared/directives/resizable/resizable.module.mjs +5 -5
- package/esm2022/src/app/shared/file/file.service.mjs +122 -0
- package/{esm2020 → esm2022}/src/app/shared/file/file.utils.mjs +2 -2
- package/esm2022/src/app/shared/form/field.component.mjs +353 -0
- package/{esm2020 → esm2022}/src/app/shared/form/field.model.mjs +1 -1
- package/esm2022/src/app/shared/form/loading-spinner.mjs +35 -0
- package/{esm2020 → esm2022}/src/app/shared/functions.mjs +5 -4
- package/esm2022/src/app/shared/geolocation/geolocation.utils.mjs +82 -0
- package/esm2022/src/app/shared/gesture/gesture-config.mjs +46 -0
- package/esm2022/src/app/shared/graph/graph-colors.mjs +219 -0
- package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +59 -0
- package/esm2022/src/app/shared/help/help.modal.mjs +63 -0
- package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +24 -0
- package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +85 -0
- package/{esm2020 → esm2022}/src/app/shared/hotkeys/shared-hotkeys.module.mjs +13 -13
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +388 -0
- package/{esm2020 → esm2022}/src/app/shared/image/gallery/image-gallery.module.mjs +22 -22
- package/esm2022/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +26 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +90 -0
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +41 -0
- package/{esm2020 → esm2022}/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +16 -16
- package/{esm2020 → esm2022}/src/app/shared/image/image.module.mjs +11 -11
- package/esm2022/src/app/shared/image/image.service.mjs +104 -0
- package/esm2022/src/app/shared/inputs.mjs +231 -0
- package/esm2022/src/app/shared/interceptors/progess.interceptor.mjs +28 -0
- package/esm2022/src/app/shared/logging/logging-service.class.mjs +128 -0
- package/{esm2020 → esm2022}/src/app/shared/logging/logging-service.module.mjs +8 -8
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +49 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +961 -0
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +82 -0
- package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +217 -0
- package/esm2022/src/app/shared/material/badge/badge.directive.mjs +209 -0
- package/{esm2020 → esm2022}/src/app/shared/material/badge/badge.module.mjs +9 -9
- package/esm2022/src/app/shared/material/badge/badge.test.mjs +42 -0
- package/esm2022/src/app/shared/material/boolean/boolean.module.mjs +72 -0
- package/esm2022/src/app/shared/material/boolean/material-boolean2.mjs +266 -0
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +271 -0
- package/esm2022/src/app/shared/material/boolean/testing/boolean.test.page.mjs +54 -0
- package/esm2022/src/app/shared/material/chips/chips.module.mjs +76 -0
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +719 -0
- package/esm2022/src/app/shared/material/chips/testing/chips.test.mjs +148 -0
- package/{esm2020 → esm2022}/src/app/shared/material/datetime/datetime.module.mjs +38 -38
- package/esm2022/src/app/shared/material/datetime/material.date.mjs +396 -0
- package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +406 -0
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +523 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +125 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +122 -0
- package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +115 -0
- package/esm2022/src/app/shared/material/duration/duration.module.mjs +70 -0
- package/{esm2020 → esm2022}/src/app/shared/material/duration/duration.utils.mjs +2 -2
- package/esm2022/src/app/shared/material/duration/material.duration.mjs +273 -0
- package/esm2022/src/app/shared/material/duration/testing/mat-duration.test.mjs +79 -0
- package/{esm2020 → esm2022}/src/app/shared/material/latlong/latlong.utils.mjs +3 -3
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +415 -0
- package/esm2022/src/app/shared/material/latlong/material.latlong.module.mjs +72 -0
- package/esm2022/src/app/shared/material/latlong/testing/latlong.test.mjs +113 -0
- package/esm2022/src/app/shared/material/material.module.mjs +224 -0
- package/esm2022/src/app/shared/material/material.testing.module.mjs +210 -0
- package/esm2022/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +104 -0
- package/esm2022/src/app/shared/material/numpad/numpad.component.mjs +83 -0
- package/esm2022/src/app/shared/material/numpad/numpad.container.mjs +203 -0
- package/esm2022/src/app/shared/material/numpad/numpad.content.mjs +19 -0
- package/esm2022/src/app/shared/material/numpad/numpad.directive.mjs +168 -0
- package/esm2022/src/app/shared/material/numpad/numpad.dom-service.mjs +36 -0
- package/esm2022/src/app/shared/material/numpad/numpad.model.mjs +16 -0
- package/{esm2020 → esm2022}/src/app/shared/material/numpad/numpad.module.mjs +21 -21
- package/esm2022/src/app/shared/material/numpad/testing/numpad.test.mjs +48 -0
- package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +48 -0
- package/esm2022/src/app/shared/material/stepper/material.stepper-i18n.mjs +23 -0
- package/esm2022/src/app/shared/material/swipe/material.swipe.mjs +368 -0
- package/esm2022/src/app/shared/material/swipe/swipe.module.mjs +56 -0
- package/esm2022/src/app/shared/material/swipe/testing/swipe.test.mjs +67 -0
- package/esm2022/src/app/shared/material/testing/common.test.mjs +105 -0
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +212 -0
- package/esm2022/src/app/shared/named-filter/named-filter.model.mjs +49 -0
- package/{esm2020 → esm2022}/src/app/shared/named-filter/named-filter.module.mjs +5 -5
- package/esm2022/src/app/shared/named-filter/named-filter.service.mjs +69 -0
- package/{esm2020 → esm2022}/src/app/shared/pipes/arrays.pipe.mjs +25 -25
- package/esm2022/src/app/shared/pipes/colors.pipe.mjs +27 -0
- package/esm2022/src/app/shared/pipes/date-diff-duration.pipe.mjs +51 -0
- package/esm2022/src/app/shared/pipes/date-format.pipe.mjs +72 -0
- package/esm2022/src/app/shared/pipes/date-from-now.pipe.mjs +28 -0
- package/esm2022/src/app/shared/pipes/duration.pipe.mjs +36 -0
- package/esm2022/src/app/shared/pipes/file-size.pipe.mjs +60 -0
- package/esm2022/src/app/shared/pipes/form.pipes.mjs +194 -0
- package/{esm2020 → esm2022}/src/app/shared/pipes/highlight.pipe.mjs +5 -5
- package/esm2022/src/app/shared/pipes/latlong-format.pipe.mjs +42 -0
- package/{esm2020 → esm2022}/src/app/shared/pipes/maps.pipe.mjs +13 -13
- package/esm2022/src/app/shared/pipes/maskito.pipe.mjs +118 -0
- package/{esm2020 → esm2022}/src/app/shared/pipes/math.pipes.mjs +13 -13
- package/esm2022/src/app/shared/pipes/ng-init.pipe.mjs +19 -0
- package/{esm2020 → esm2022}/src/app/shared/pipes/number-format.pipe.mjs +5 -5
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +256 -0
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +97 -0
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +135 -0
- package/esm2022/src/app/shared/pipes/translate-context.pipe.mjs +44 -0
- package/esm2022/src/app/shared/pipes/types.pipes.mjs +58 -0
- package/esm2022/src/app/shared/rx-state.module.mjs +23 -0
- package/esm2022/src/app/shared/services/entity-service.class.mjs +7 -0
- package/esm2022/src/app/shared/services/memory-entity-service.class.mjs +347 -0
- package/esm2022/src/app/shared/services/progress-bar.service.mjs +31 -0
- package/esm2022/src/app/shared/services/startable-observable-service.class.mjs +121 -0
- package/esm2022/src/app/shared/services/startable-service.class.mjs +113 -0
- package/esm2022/src/app/shared/services/translate-context.service.mjs +104 -0
- package/{esm2020 → esm2022}/src/app/shared/shared-routing.module.mjs +11 -11
- package/esm2022/src/app/shared/shared.module.mjs +217 -0
- package/{esm2020 → esm2022}/src/app/shared/shared.testing.module.mjs +40 -40
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +286 -0
- package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +46 -0
- package/{esm2020 → esm2022}/src/app/shared/storage/storage-explorer.testing-routing.module.mjs +7 -7
- package/{esm2020 → esm2022}/src/app/shared/storage/storage-explorer.testing.module.mjs +6 -6
- package/esm2022/src/app/shared/storage/storage.service.mjs +134 -0
- package/{esm2020 → esm2022}/src/app/shared/storage/storage.utils.mjs +1 -1
- package/esm2022/src/app/shared/testing/observable.test.mjs +96 -0
- package/esm2022/src/app/shared/testing/tests.page.mjs +37 -0
- package/esm2022/src/app/shared/toast/toast.testing.mjs +52 -0
- package/{esm2020 → esm2022}/src/app/shared/toast/toast.testing.module.mjs +10 -10
- package/esm2022/src/app/shared/toast/toasts.mjs +144 -0
- package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +60 -0
- package/esm2022/src/app/shared/toolbar/toolbar.mjs +264 -0
- package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +57 -0
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +59 -0
- package/{esm2020 → esm2022}/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +10 -10
- package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +107 -0
- package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +211 -0
- package/esm2022/src/app/shared/upload-file/upload-file.model.mjs +27 -0
- package/esm2022/src/app/shared/validator/form-error-adapter.class.mjs +106 -0
- package/esm2022/src/app/shared/validator/validators.mjs +580 -0
- package/esm2022/src/app/shared/version/versions.mjs +81 -0
- package/esm2022/src/app/social/job/job.module.mjs +42 -0
- package/esm2022/src/app/social/job/progression/job-progression.component.mjs +35 -0
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +232 -0
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +50 -0
- package/esm2022/src/app/social/job/progression/job-progression.model.mjs +28 -0
- package/esm2022/src/app/social/job/progression/job-progression.service.mjs +73 -0
- package/esm2022/src/app/social/job/testing/job-progression.testing.mjs +43 -0
- package/esm2022/src/app/social/job/testing/job-progression.testing.service.mjs +53 -0
- package/{esm2020 → esm2022}/src/app/social/job/testing/job.testing.module.mjs +9 -9
- package/esm2022/src/app/social/message/message.form.mjs +88 -0
- package/esm2022/src/app/social/message/message.modal.mjs +102 -0
- package/esm2022/src/app/social/message/message.model.mjs +71 -0
- package/esm2022/src/app/social/message/message.module.mjs +35 -0
- package/esm2022/src/app/social/message/message.service.mjs +88 -0
- package/{esm2020 → esm2022}/src/app/social/social.module.mjs +19 -19
- package/{esm2020 → esm2022}/src/app/social/social.testing.module.mjs +10 -10
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +123 -0
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +263 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +233 -0
- package/esm2022/src/app/social/user-event/testing/user-event.testing.model.mjs +128 -0
- package/{esm2020 → esm2022}/src/app/social/user-event/testing/user-event.testing.module.mjs +9 -9
- package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +116 -0
- package/esm2022/src/app/social/user-event/user-event.module.mjs +43 -0
- package/esm2022/src/app/social/user-event/user-event.service.mjs +498 -0
- package/esm2022/src/environments/environment.class.mjs +47 -0
- package/esm2022/src/environments/environment.mjs +94 -0
- package/{fesm2020 → fesm2022}/sumaris-net.ngx-components.mjs +12191 -10087
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -0
- package/package.json +11 -16
- package/public_api.d.ts +12 -5
- package/src/app/admin/users/users.d.ts +1 -1
- package/src/app/admin/users/users.module.d.ts +2 -1
- package/src/app/core/about/about.modal.d.ts +1 -1
- package/src/app/core/account/account.page.d.ts +3 -4
- package/src/app/core/account/new-token.modal.d.ts +1 -1
- package/src/app/core/account/token.table.d.ts +1 -1
- package/src/app/core/auth/auth.form.d.ts +1 -1
- package/src/app/core/auth/auth.modal.d.ts +1 -1
- package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +2 -2
- package/src/app/core/form/entity/editor.class.d.ts +4 -4
- package/src/app/core/form/entity/entity-editor-modal.class.d.ts +1 -1
- package/src/app/core/form/entity/entity-editor.class.d.ts +6 -10
- package/src/app/core/form/entity/entity-metadata.component.d.ts +1 -1
- package/src/app/core/form/form.class.d.ts +1 -1
- package/src/app/core/form/list/list.form.d.ts +1 -1
- package/src/app/core/form/properties/properties.form.d.ts +1 -1
- package/src/app/core/form/properties/properties.table.d.ts +2 -3
- package/src/app/core/form/properties/property.validator.d.ts +1 -1
- package/src/app/core/form/properties/testing/properties-form.test.d.ts +1 -1
- package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +1 -1
- package/src/app/core/form/text-popover/text-form.component.d.ts +1 -1
- package/src/app/core/form/text-popover/text-popover.component.d.ts +1 -1
- package/src/app/core/home/home.d.ts +1 -1
- package/src/app/core/home/home.module.d.ts +4 -3
- package/src/app/core/icon/icon.component.d.ts +1 -1
- package/src/app/core/install/install-upgrade-card.component.d.ts +1 -1
- package/src/app/core/menu/menu.component.d.ts +4 -8
- package/src/app/core/menu/menu.model.d.ts +0 -1
- package/src/app/core/menu/menu.module.d.ts +3 -5
- package/src/app/core/menu/menu.service.d.ts +1 -3
- package/src/app/core/menu/sub-menu-tab.directive.d.ts +1 -1
- package/src/app/core/menu/testing/menu-other.testing.d.ts +1 -1
- package/src/app/core/menu/testing/menu.testing.d.ts +1 -1
- package/src/app/core/offline/update-offline-mode-card.component.d.ts +1 -1
- package/src/app/core/peer/select-peer.modal.d.ts +1 -1
- package/src/app/core/register/register-confirm.page.d.ts +1 -1
- package/src/app/core/register/register.form.d.ts +1 -1
- package/src/app/core/register/register.modal.d.ts +1 -1
- package/src/app/core/services/account.service.d.ts +0 -4
- package/src/app/core/services/base-entity-service.class.d.ts +2 -2
- package/src/app/core/services/base-graphql-service.class.d.ts +1 -1
- package/src/app/core/services/config/core.config.d.ts +1 -1
- package/src/app/core/services/model/person.model.d.ts +1 -1
- package/src/app/core/services/model/referential.model.d.ts +1 -2
- package/src/app/core/services/model/settings.model.d.ts +1 -1
- package/src/app/core/services/network.types.d.ts +2 -2
- package/src/app/core/services/storage/entity-store.class.d.ts +1 -1
- package/src/app/core/services/validator/base.validator.class.d.ts +1 -1
- package/src/app/core/settings/settings.page.d.ts +1 -1
- package/src/app/core/table/actions-column.component.d.ts +2 -2
- package/src/app/core/table/async-table.class.d.ts +1 -1
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +1 -1
- package/src/app/core/table/entities-table-datasource.class.d.ts +1 -1
- package/src/app/core/table/memory-table.class.d.ts +3 -3
- package/src/app/core/table/table-select-columns.component.d.ts +1 -1
- package/src/app/core/table/table.class.d.ts +3 -3
- package/src/app/core/table/table.model.d.ts +1 -1
- package/src/app/core/table/testing/table.testing.d.ts +5 -4
- package/src/app/core/table/testing/table.testing.module.d.ts +8 -5
- package/src/app/core/table/testing/table2-validator.service.d.ts +15 -0
- package/src/app/core/table/testing/table2.testing.d.ts +45 -0
- package/src/app/shared/audio/audio.d.ts +1 -1
- package/src/app/shared/audio/audio.testing.d.ts +1 -1
- package/src/app/shared/debug/debug.component.d.ts +1 -1
- package/src/app/shared/directives/autofocus.directive.d.ts +1 -1
- package/src/app/shared/directives/autotitle.directive.d.ts +1 -1
- package/src/app/shared/directives/drag-and-drop.directive.d.ts +1 -1
- package/src/app/shared/directives/ng-var.directive.d.ts +1 -1
- package/src/app/shared/directives/resizable/resizable.component.d.ts +1 -1
- package/src/app/shared/directives/resizable/resizable.directive.d.ts +1 -1
- package/src/app/shared/events.d.ts +1 -1
- package/src/app/shared/form/field.component.d.ts +4 -5
- package/src/app/shared/form/field.model.d.ts +2 -0
- package/src/app/shared/form/loading-spinner.d.ts +1 -1
- package/src/app/shared/functions.d.ts +2 -2
- package/src/app/shared/help/help.modal.d.ts +2 -2
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +1 -1
- package/src/app/shared/hotkeys/hotkeys.service.d.ts +3 -3
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +3 -3
- package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +2 -2
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +9 -9
- package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +10 -9
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +1 -1
- package/src/app/shared/material/badge/badge.directive.d.ts +1 -1
- package/src/app/shared/material/badge/badge.test.d.ts +1 -1
- package/src/app/shared/material/boolean/boolean.module.d.ts +12 -11
- package/src/app/shared/material/boolean/material-boolean2.d.ts +66 -0
- package/src/app/shared/material/boolean/material.boolean.d.ts +5 -4
- package/src/app/shared/material/boolean/testing/boolean.test.page.d.ts +21 -0
- package/src/app/shared/material/chips/material.chips.d.ts +8 -9
- package/src/app/shared/material/chips/testing/chips.test.d.ts +2 -2
- package/src/app/shared/material/datetime/datetime.module.d.ts +2 -2
- package/src/app/shared/material/datetime/material.date.d.ts +5 -4
- package/src/app/shared/material/datetime/material.dateshort.d.ts +8 -7
- package/src/app/shared/material/datetime/material.datetime.d.ts +8 -6
- package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +7 -1
- package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +3 -1
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +3 -1
- package/src/app/shared/material/duration/duration.module.d.ts +6 -5
- package/src/app/shared/material/duration/material.duration.d.ts +6 -5
- package/src/app/shared/material/duration/testing/mat-duration.test.d.ts +22 -0
- package/src/app/shared/material/latlong/material.latlong.d.ts +8 -7
- package/src/app/shared/material/latlong/material.latlong.module.d.ts +9 -8
- package/src/app/shared/material/latlong/testing/latlong.test.d.ts +3 -1
- package/src/app/shared/material/material.testing.module.d.ts +22 -18
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.d.ts +1 -1
- package/src/app/shared/material/numpad/numpad.component.d.ts +1 -1
- package/src/app/shared/material/numpad/numpad.container.d.ts +1 -1
- package/src/app/shared/material/numpad/numpad.content.d.ts +1 -1
- package/src/app/shared/material/numpad/numpad.directive.d.ts +1 -1
- package/src/app/shared/material/numpad/numpad.dom-service.d.ts +3 -3
- package/src/app/shared/material/numpad/testing/numpad.test.d.ts +1 -1
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +0 -3
- package/src/app/shared/material/swipe/material.swipe.d.ts +6 -6
- package/src/app/shared/material/swipe/swipe.module.d.ts +2 -1
- package/src/app/shared/material/swipe/testing/swipe.test.d.ts +1 -1
- package/src/app/shared/material/testing/common.test.d.ts +25 -0
- package/src/app/shared/named-filter/named-filter-selector.component.d.ts +1 -1
- package/src/app/shared/named-filter/named-filter.service.d.ts +1 -1
- package/src/app/shared/pipes/maskito.pipe.d.ts +16 -0
- package/src/app/shared/pipes/ng-init.pipe.d.ts +1 -1
- package/src/app/shared/pipes/pipes.module.d.ts +5 -4
- package/src/app/shared/pipes/string.pipes.d.ts +6 -0
- package/src/app/shared/pipes/types.pipes.d.ts +7 -0
- package/src/app/shared/rx-state.module.d.ts +10 -0
- package/src/app/shared/services/entity-service.class.d.ts +1 -1
- package/src/app/shared/services/job.utils.d.ts +1 -1
- package/src/app/shared/services/memory-entity-service.class.d.ts +1 -1
- package/src/app/shared/services/startable-observable-service.class.d.ts +3 -0
- package/src/app/shared/services/startable-service.class.d.ts +3 -0
- package/src/app/shared/shared.module.d.ts +7 -9
- package/src/app/shared/storage/storage-explorer.component.d.ts +1 -1
- package/src/app/shared/storage/storage-explorer.module.d.ts +3 -3
- package/src/app/shared/storage/storage.service.d.ts +1 -1
- package/src/app/shared/storage/storage.utils.d.ts +1 -1
- package/src/app/shared/testing/observable.test.d.ts +1 -1
- package/src/app/shared/testing/tests.page.d.ts +1 -1
- package/src/app/shared/toast/toast.testing.d.ts +1 -1
- package/src/app/shared/toolbar/modal-toolbar.d.ts +1 -1
- package/src/app/shared/toolbar/toolbar.d.ts +1 -1
- package/src/app/shared/toolbar/toolbar.module.d.ts +4 -3
- package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +1 -1
- package/src/app/shared/upload-file/upload-file-popover.component.d.ts +1 -1
- package/src/app/shared/upload-file/upload-file.component.d.ts +1 -1
- package/src/app/shared/upload-file/upload-file.model.d.ts +2 -2
- package/src/app/social/job/progression/job-progression.component.d.ts +17 -3
- package/src/app/social/job/progression/job-progression.icon.d.ts +24 -10
- package/src/app/social/job/progression/job-progression.list.d.ts +3 -3
- package/src/app/social/job/progression/job-progression.model.d.ts +0 -1
- package/src/app/social/job/testing/job-progression.testing.d.ts +3 -6
- package/src/app/social/message/message.form.d.ts +2 -8
- package/src/app/social/message/message.modal.d.ts +1 -5
- package/src/app/social/message/message.model.d.ts +0 -2
- package/src/app/social/message/message.module.d.ts +1 -2
- package/src/app/social/message/message.service.d.ts +3 -8
- package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +4 -3
- package/src/app/social/user-event/notification/user-event-notification.list.d.ts +1 -1
- package/src/app/social/user-event/testing/user-event.testing.d.ts +1 -1
- package/src/app/social/user-event/testing/user-event.testing.model.d.ts +0 -1
- package/src/app/social/user-event/user-event.model.d.ts +2 -2
- package/src/app/social/user-event/user-event.module.d.ts +3 -2
- package/src/app/social/user-event/user-event.service.d.ts +1 -6
- package/src/assets/i18n/en-US.json +17 -15
- package/src/assets/i18n/en.json +17 -15
- package/src/assets/i18n/fr.json +7 -6
- package/src/assets/img/logo/logo-eis.png +0 -0
- package/src/assets/manifest.json +1 -1
- package/src/environments/environment.class.d.ts +0 -1
- package/src/theme/_material.globals.scss +51 -19
- package/src/theme/_material.scss +15 -15
- package/src/theme/_mixins.scss +3 -3
- package/src/theme/_ngx-components.globals.scss +6 -1
- package/src/theme/_ngx-components.scss +262 -534
- package/src/theme/_ngx-components.table.scss +599 -0
- package/src/theme/_theme.scss +1 -0
- package/esm2020/public_api.mjs +0 -330
- package/esm2020/src/app/admin/services/filter/person.filter.mjs +0 -59
- package/esm2020/src/app/admin/services/person.service.mjs +0 -170
- package/esm2020/src/app/admin/services/validator/person.validator.mjs +0 -71
- package/esm2020/src/app/admin/users/users.mjs +0 -250
- package/esm2020/src/app/admin/users/users.module.mjs +0 -54
- package/esm2020/src/app/core/about/about.modal.mjs +0 -71
- package/esm2020/src/app/core/account/account.page.mjs +0 -319
- package/esm2020/src/app/core/account/new-token.modal.mjs +0 -115
- package/esm2020/src/app/core/account/token.table.mjs +0 -137
- package/esm2020/src/app/core/auth/auth.form.mjs +0 -131
- package/esm2020/src/app/core/auth/auth.modal.mjs +0 -72
- package/esm2020/src/app/core/core.testing.module.mjs +0 -86
- package/esm2020/src/app/core/form/buttons/form-buttons-bar.component.mjs +0 -107
- package/esm2020/src/app/core/form/entity/editor.class.mjs +0 -683
- package/esm2020/src/app/core/form/entity/entity-editor-modal.class.mjs +0 -422
- package/esm2020/src/app/core/form/entity/entity-editor.class.mjs +0 -696
- package/esm2020/src/app/core/form/entity/entity-metadata.component.mjs +0 -25
- package/esm2020/src/app/core/form/form.class.mjs +0 -345
- package/esm2020/src/app/core/form/list/list.form.mjs +0 -222
- package/esm2020/src/app/core/form/properties/properties.form.mjs +0 -132
- package/esm2020/src/app/core/form/properties/properties.table.mjs +0 -267
- package/esm2020/src/app/core/form/properties/property.validator.mjs +0 -23
- package/esm2020/src/app/core/form/properties/testing/properties-form.test.mjs +0 -90
- package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.mjs +0 -70
- package/esm2020/src/app/core/form/text-popover/text-form.component.mjs +0 -89
- package/esm2020/src/app/core/graphql/graphql.service.mjs +0 -778
- package/esm2020/src/app/core/home/home.mjs +0 -257
- package/esm2020/src/app/core/home/home.module.mjs +0 -48
- package/esm2020/src/app/core/icon/icon.component.mjs +0 -41
- package/esm2020/src/app/core/install/install-upgrade-card.component.mjs +0 -344
- package/esm2020/src/app/core/menu/menu.component.mjs +0 -242
- package/esm2020/src/app/core/menu/menu.model.mjs +0 -247
- package/esm2020/src/app/core/menu/menu.module.mjs +0 -57
- package/esm2020/src/app/core/menu/menu.service.mjs +0 -660
- package/esm2020/src/app/core/menu/sub-menu-tab.directive.mjs +0 -98
- package/esm2020/src/app/core/menu/testing/menu.testing.mjs +0 -121
- package/esm2020/src/app/core/offline/update-offline-mode-card.component.mjs +0 -27
- package/esm2020/src/app/core/peer/select-peer.modal.mjs +0 -183
- package/esm2020/src/app/core/register/register-confirm.page.mjs +0 -81
- package/esm2020/src/app/core/register/register.form.mjs +0 -183
- package/esm2020/src/app/core/register/register.modal.mjs +0 -52
- package/esm2020/src/app/core/services/account.service.mjs +0 -1233
- package/esm2020/src/app/core/services/auth-guard.service.mjs +0 -71
- package/esm2020/src/app/core/services/base-entity-service.class.mjs +0 -468
- package/esm2020/src/app/core/services/base-graphql-service.class.mjs +0 -221
- package/esm2020/src/app/core/services/base58.mjs +0 -78
- package/esm2020/src/app/core/services/config.service.mjs +0 -355
- package/esm2020/src/app/core/services/crypto.service.mjs +0 -107
- package/esm2020/src/app/core/services/local-settings.service.mjs +0 -460
- package/esm2020/src/app/core/services/model/account.model.mjs +0 -147
- package/esm2020/src/app/core/services/model/config.model.mjs +0 -92
- package/esm2020/src/app/core/services/model/department.model.mjs +0 -30
- package/esm2020/src/app/core/services/model/entity.decorators.mjs +0 -97
- package/esm2020/src/app/core/services/model/entity.model.mjs +0 -225
- package/esm2020/src/app/core/services/model/peer.model.mjs +0 -68
- package/esm2020/src/app/core/services/model/person.model.mjs +0 -97
- package/esm2020/src/app/core/services/model/referential.model.mjs +0 -167
- package/esm2020/src/app/core/services/model/token.model.mjs +0 -48
- package/esm2020/src/app/core/services/network.service.mjs +0 -590
- package/esm2020/src/app/core/services/platform.service.mjs +0 -534
- package/esm2020/src/app/core/services/storage/entities-storage.service.mjs +0 -428
- package/esm2020/src/app/core/services/storage/entity-store.class.mjs +0 -449
- package/esm2020/src/app/core/services/testing/referential-filter.model.mjs +0 -23
- package/esm2020/src/app/core/services/testing/referential.validator.mjs +0 -45
- package/esm2020/src/app/core/services/validator/account.validator.mjs +0 -41
- package/esm2020/src/app/core/services/validator/base.validator.class.mjs +0 -47
- package/esm2020/src/app/core/services/validator/local-settings.validator.mjs +0 -66
- package/esm2020/src/app/core/settings/settings.page.mjs +0 -312
- package/esm2020/src/app/core/table/actions-column.component.mjs +0 -102
- package/esm2020/src/app/core/table/async-table.class.mjs +0 -1698
- package/esm2020/src/app/core/table/entities-async-table-datasource.class.mjs +0 -384
- package/esm2020/src/app/core/table/entities-table-datasource.class.mjs +0 -399
- package/esm2020/src/app/core/table/memory-table.class.mjs +0 -53
- package/esm2020/src/app/core/table/table-select-columns.component.mjs +0 -43
- package/esm2020/src/app/core/table/table.class.mjs +0 -1733
- package/esm2020/src/app/core/table/table.model.mjs +0 -12
- package/esm2020/src/app/core/table/testing/table-validator.service.mjs +0 -27
- package/esm2020/src/app/core/table/testing/table.testing.mjs +0 -281
- package/esm2020/src/app/core/table/testing/table.testing.module.mjs +0 -38
- package/esm2020/src/app/shared/audio/audio.mjs +0 -248
- package/esm2020/src/app/shared/audio/audio.testing.mjs +0 -31
- package/esm2020/src/app/shared/capacitor/keyboard.mjs +0 -40
- package/esm2020/src/app/shared/capacitor/plugins.mjs +0 -9
- package/esm2020/src/app/shared/dates.mjs +0 -149
- package/esm2020/src/app/shared/debug/debug.component.mjs +0 -39
- package/esm2020/src/app/shared/directives/autofocus.directive.mjs +0 -93
- package/esm2020/src/app/shared/directives/autotitle.directive.mjs +0 -30
- package/esm2020/src/app/shared/directives/drag-and-drop.directive.mjs +0 -53
- package/esm2020/src/app/shared/directives/ng-var.directive.mjs +0 -31
- package/esm2020/src/app/shared/directives/resizable/resizable.component.mjs +0 -59
- package/esm2020/src/app/shared/directives/resizable/resizable.directive.mjs +0 -40
- package/esm2020/src/app/shared/file/file.service.mjs +0 -117
- package/esm2020/src/app/shared/form/field.component.mjs +0 -332
- package/esm2020/src/app/shared/form/loading-spinner.mjs +0 -36
- package/esm2020/src/app/shared/geolocation/geolocation.utils.mjs +0 -80
- package/esm2020/src/app/shared/gesture/gesture-config.mjs +0 -49
- package/esm2020/src/app/shared/graph/graph-colors.mjs +0 -212
- package/esm2020/src/app/shared/guard/component-dirty.guard.mjs +0 -57
- package/esm2020/src/app/shared/help/help.modal.mjs +0 -53
- package/esm2020/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +0 -23
- package/esm2020/src/app/shared/hotkeys/hotkeys.service.mjs +0 -84
- package/esm2020/src/app/shared/image/gallery/image-gallery.component.mjs +0 -368
- package/esm2020/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +0 -27
- package/esm2020/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +0 -90
- package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.mjs +0 -39
- package/esm2020/src/app/shared/image/image.service.mjs +0 -98
- package/esm2020/src/app/shared/inputs.mjs +0 -231
- package/esm2020/src/app/shared/interceptors/progess.interceptor.mjs +0 -27
- package/esm2020/src/app/shared/logging/logging-service.class.mjs +0 -121
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +0 -47
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +0 -920
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +0 -78
- package/esm2020/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +0 -209
- package/esm2020/src/app/shared/material/badge/badge.directive.mjs +0 -199
- package/esm2020/src/app/shared/material/badge/badge.test.mjs +0 -41
- package/esm2020/src/app/shared/material/boolean/boolean.module.mjs +0 -68
- package/esm2020/src/app/shared/material/boolean/material.boolean.mjs +0 -253
- package/esm2020/src/app/shared/material/chips/chips.module.mjs +0 -76
- package/esm2020/src/app/shared/material/chips/material.chips.mjs +0 -696
- package/esm2020/src/app/shared/material/chips/testing/chips.test.mjs +0 -143
- package/esm2020/src/app/shared/material/datetime/material.date.mjs +0 -376
- package/esm2020/src/app/shared/material/datetime/material.dateshort.mjs +0 -385
- package/esm2020/src/app/shared/material/datetime/material.datetime.mjs +0 -499
- package/esm2020/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +0 -108
- package/esm2020/src/app/shared/material/datetime/testing/mat-date.test.mjs +0 -110
- package/esm2020/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +0 -103
- package/esm2020/src/app/shared/material/duration/duration.module.mjs +0 -67
- package/esm2020/src/app/shared/material/duration/material.duration.mjs +0 -257
- package/esm2020/src/app/shared/material/latlong/material.latlong.mjs +0 -382
- package/esm2020/src/app/shared/material/latlong/material.latlong.module.mjs +0 -67
- package/esm2020/src/app/shared/material/latlong/testing/latlong.test.mjs +0 -102
- package/esm2020/src/app/shared/material/material.module.mjs +0 -224
- package/esm2020/src/app/shared/material/material.testing.module.mjs +0 -168
- package/esm2020/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +0 -98
- package/esm2020/src/app/shared/material/numpad/numpad.component.mjs +0 -80
- package/esm2020/src/app/shared/material/numpad/numpad.container.mjs +0 -190
- package/esm2020/src/app/shared/material/numpad/numpad.content.mjs +0 -17
- package/esm2020/src/app/shared/material/numpad/numpad.directive.mjs +0 -162
- package/esm2020/src/app/shared/material/numpad/numpad.dom-service.mjs +0 -37
- package/esm2020/src/app/shared/material/numpad/numpad.model.mjs +0 -15
- package/esm2020/src/app/shared/material/numpad/testing/numpad.test.mjs +0 -46
- package/esm2020/src/app/shared/material/paginator/material.paginator-i18n.mjs +0 -46
- package/esm2020/src/app/shared/material/stepper/material.stepper-i18n.mjs +0 -22
- package/esm2020/src/app/shared/material/swipe/material.swipe.mjs +0 -344
- package/esm2020/src/app/shared/material/swipe/swipe.module.mjs +0 -52
- package/esm2020/src/app/shared/material/swipe/testing/swipe.test.mjs +0 -64
- package/esm2020/src/app/shared/named-filter/named-filter-selector.component.mjs +0 -202
- package/esm2020/src/app/shared/named-filter/named-filter.model.mjs +0 -45
- package/esm2020/src/app/shared/named-filter/named-filter.service.mjs +0 -63
- package/esm2020/src/app/shared/pipes/colors.pipe.mjs +0 -25
- package/esm2020/src/app/shared/pipes/date-diff-duration.pipe.mjs +0 -48
- package/esm2020/src/app/shared/pipes/date-format.pipe.mjs +0 -66
- package/esm2020/src/app/shared/pipes/date-from-now.pipe.mjs +0 -27
- package/esm2020/src/app/shared/pipes/duration.pipe.mjs +0 -34
- package/esm2020/src/app/shared/pipes/file-size.pipe.mjs +0 -62
- package/esm2020/src/app/shared/pipes/form.pipes.mjs +0 -187
- package/esm2020/src/app/shared/pipes/latlong-format.pipe.mjs +0 -46
- package/esm2020/src/app/shared/pipes/ng-init.pipe.mjs +0 -21
- package/esm2020/src/app/shared/pipes/pipes.module.mjs +0 -239
- package/esm2020/src/app/shared/pipes/property.pipes.mjs +0 -93
- package/esm2020/src/app/shared/pipes/string.pipes.mjs +0 -121
- package/esm2020/src/app/shared/pipes/translate-context.pipe.mjs +0 -43
- package/esm2020/src/app/shared/pipes/types.pipes.mjs +0 -45
- package/esm2020/src/app/shared/services/entity-service.class.mjs +0 -7
- package/esm2020/src/app/shared/services/memory-entity-service.class.mjs +0 -339
- package/esm2020/src/app/shared/services/progress-bar.service.mjs +0 -33
- package/esm2020/src/app/shared/services/startable-observable-service.class.mjs +0 -118
- package/esm2020/src/app/shared/services/startable-service.class.mjs +0 -110
- package/esm2020/src/app/shared/services/translate-context.service.mjs +0 -103
- package/esm2020/src/app/shared/shared.module.mjs +0 -231
- package/esm2020/src/app/shared/storage/storage-explorer.component.mjs +0 -268
- package/esm2020/src/app/shared/storage/storage-explorer.module.mjs +0 -47
- package/esm2020/src/app/shared/storage/storage.service.mjs +0 -132
- package/esm2020/src/app/shared/testing/observable.test.mjs +0 -95
- package/esm2020/src/app/shared/testing/tests.page.mjs +0 -33
- package/esm2020/src/app/shared/toast/toast.testing.mjs +0 -51
- package/esm2020/src/app/shared/toast/toasts.mjs +0 -144
- package/esm2020/src/app/shared/toolbar/modal-toolbar.mjs +0 -58
- package/esm2020/src/app/shared/toolbar/toolbar.mjs +0 -251
- package/esm2020/src/app/shared/toolbar/toolbar.module.mjs +0 -53
- package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.mjs +0 -58
- package/esm2020/src/app/shared/upload-file/upload-file-popover.component.mjs +0 -97
- package/esm2020/src/app/shared/upload-file/upload-file.component.mjs +0 -204
- package/esm2020/src/app/shared/upload-file/upload-file.model.mjs +0 -20
- package/esm2020/src/app/shared/validator/form-error-adapter.class.mjs +0 -104
- package/esm2020/src/app/shared/validator/validators.mjs +0 -580
- package/esm2020/src/app/shared/version/versions.mjs +0 -81
- package/esm2020/src/app/social/job/job.module.mjs +0 -42
- package/esm2020/src/app/social/job/progression/job-progression.component.mjs +0 -20
- package/esm2020/src/app/social/job/progression/job-progression.icon.mjs +0 -216
- package/esm2020/src/app/social/job/progression/job-progression.list.mjs +0 -43
- package/esm2020/src/app/social/job/progression/job-progression.model.mjs +0 -23
- package/esm2020/src/app/social/job/progression/job-progression.service.mjs +0 -71
- package/esm2020/src/app/social/job/testing/job-progression.testing.mjs +0 -52
- package/esm2020/src/app/social/job/testing/job-progression.testing.service.mjs +0 -55
- package/esm2020/src/app/social/message/message.form.mjs +0 -136
- package/esm2020/src/app/social/message/message.modal.mjs +0 -99
- package/esm2020/src/app/social/message/message.model.mjs +0 -67
- package/esm2020/src/app/social/message/message.module.mjs +0 -22
- package/esm2020/src/app/social/message/message.service.mjs +0 -105
- package/esm2020/src/app/social/user-event/notification/user-event-notification.icon.mjs +0 -114
- package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +0 -246
- package/esm2020/src/app/social/user-event/testing/user-event.testing.mjs +0 -227
- package/esm2020/src/app/social/user-event/testing/user-event.testing.model.mjs +0 -112
- package/esm2020/src/app/social/user-event/testing/user-event.testing.service.mjs +0 -111
- package/esm2020/src/app/social/user-event/user-event.module.mjs +0 -39
- package/esm2020/src/app/social/user-event/user-event.service.mjs +0 -501
- package/esm2020/src/environments/environment.class.mjs +0 -5
- package/esm2020/src/environments/environment.loader.mjs +0 -79
- package/esm2020/src/environments/environment.mjs +0 -97
- package/fesm2015/sumaris-net.ngx-components.mjs +0 -40966
- package/fesm2015/sumaris-net.ngx-components.mjs.map +0 -1
- package/fesm2020/sumaris-net.ngx-components.mjs.map +0 -1
- package/resources/README.md +0 -7
- package/src/assets/environments/environment-test.json +0 -6
- package/src/environments/environment.loader.d.ts +0 -26
- /package/{esm2020 → esm2022}/src/app/core/services/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/model/filter.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/model/history.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/model/model.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/model/settings.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/model/tree-item-entity.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/network.types.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/services/network.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/core/table/table.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/alerts.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/debug/debug-service.class.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/events.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/file/csv.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/file/images.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/file/json.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/file/uri.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/focusable.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/forms.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/gesture/hammer.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/graph/colors.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/http/http.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/image/image.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/logging/log-level.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/logging/logger.model.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/logging/logging-service.config.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/material/material.animations.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/modules.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/observables.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/platforms.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/services/job.utils.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/services/validator-service.class.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/services.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/shared/types.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/social/social.errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/app/social/user-event/user-event.model.mjs +0 -0
- /package/{esm2020 → esm2022}/sumaris-net.ngx-components.mjs +0 -0
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
import { GraphqlService } from '../../core/graphql/graphql.service';
|
|
2
|
-
import {
|
|
2
|
+
import { ToastController } from '@ionic/angular';
|
|
3
3
|
import { TranslateService } from '@ngx-translate/core';
|
|
4
4
|
import { BaseGraphqlService } from '../../core/services/base-graphql-service.class';
|
|
5
5
|
import { Environment } from '../../../environments/environment.class';
|
|
6
6
|
import { Message, MessageFilter } from './message.model';
|
|
7
7
|
import { ShowToastOptions } from '../../shared/toast/toasts';
|
|
8
|
-
import { MessageModalOptions } from './message.modal';
|
|
9
8
|
import * as i0 from "@angular/core";
|
|
10
9
|
export declare class MessageService extends BaseGraphqlService<Message, MessageFilter> {
|
|
11
10
|
protected graphql: GraphqlService;
|
|
12
11
|
protected translate: TranslateService;
|
|
13
|
-
protected modalCtrl: ModalController;
|
|
14
12
|
protected toastController: ToastController;
|
|
15
13
|
protected environment: Environment;
|
|
16
|
-
constructor(graphql: GraphqlService, translate: TranslateService,
|
|
14
|
+
constructor(graphql: GraphqlService, translate: TranslateService, toastController: ToastController, environment: Environment);
|
|
17
15
|
/**
|
|
18
16
|
* Send a message to recipient(s)
|
|
19
17
|
*
|
|
@@ -23,10 +21,7 @@ export declare class MessageService extends BaseGraphqlService<Message, MessageF
|
|
|
23
21
|
send(entity: Message, opts?: {
|
|
24
22
|
showToast?: boolean;
|
|
25
23
|
}): Promise<boolean>;
|
|
26
|
-
openComposeModal(options: MessageModalOptions & {
|
|
27
|
-
showToast?: boolean;
|
|
28
|
-
}): Promise<any>;
|
|
29
24
|
protected showToast(opts: ShowToastOptions): Promise<import("@ionic/core").OverlayEventDetail<any>>;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, [null, null, null,
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MessageService, [null, null, null, { optional: true; }]>;
|
|
31
26
|
static ɵprov: i0.ɵɵInjectableDeclaration<MessageService>;
|
|
32
27
|
}
|
|
@@ -17,8 +17,8 @@ export declare class UserEventNotificationIcon implements OnInit, OnDestroy {
|
|
|
17
17
|
autoHide: boolean;
|
|
18
18
|
headerActions: IUserEventAction[];
|
|
19
19
|
footerActions: IUserEventAction[];
|
|
20
|
-
visible: boolean;
|
|
21
|
-
|
|
20
|
+
protected visible: boolean;
|
|
21
|
+
protected readonly countChanges$: Observable<number>;
|
|
22
22
|
private _logPrefix;
|
|
23
23
|
private _readEvent;
|
|
24
24
|
private _readEvents;
|
|
@@ -26,6 +26,7 @@ export declare class UserEventNotificationIcon implements OnInit, OnDestroy {
|
|
|
26
26
|
ngOnInit(): Promise<void>;
|
|
27
27
|
showList(event: Event): Promise<void>;
|
|
28
28
|
ngOnDestroy(): void;
|
|
29
|
+
protected setVisible(value: boolean): void;
|
|
29
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventNotificationIcon, [{ optional: true; }, null, null, null]>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventNotificationIcon, "app-user-event-notification-icon", never, { "debug": "debug"; "titleI18n": "titleI18n"; "disabled": "disabled"; "filter": "filter"; "autoHide": "autoHide"; "headerActions": "headerActions"; "footerActions": "footerActions"; }, {}, never, never, false>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventNotificationIcon, "app-user-event-notification-icon", never, { "debug": { "alias": "debug"; "required": false; }; "titleI18n": { "alias": "titleI18n"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "autoHide": { "alias": "autoHide"; "required": false; }; "headerActions": { "alias": "headerActions"; "required": false; }; "footerActions": { "alias": "footerActions"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
32
|
}
|
|
@@ -67,5 +67,5 @@ export declare class UserEventNotificationList<E extends IUserEvent<any> = IUser
|
|
|
67
67
|
protected markForCheck(): void;
|
|
68
68
|
protected getPanelElement(): Promise<HTMLElement>;
|
|
69
69
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventNotificationList<any, any>, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventNotificationList<any, any>, "app-user-event-notification-list", never, { "debug": "debug"; "mobile": "mobile"; "titleI18n": "titleI18n"; "sortBy": "sortBy"; "sortDirection": "sortDirection"; "filter": "filter"; "enableInfiniteScroll": "enableInfiniteScroll"; "infiniteScrollThreshold": "infiniteScrollThreshold"; "headerActions": "headerActions"; "footerActions": "footerActions"; "pageSize": "pageSize"; }, { "readEvent": "readEvent"; "readEvents": "readEvents"; }, never, never, false>;
|
|
70
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventNotificationList<any, any>, "app-user-event-notification-list", never, { "debug": { "alias": "debug"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "titleI18n": { "alias": "titleI18n"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "filter": { "alias": "filter"; "required": false; }; "enableInfiniteScroll": { "alias": "enableInfiniteScroll"; "required": false; }; "infiniteScrollThreshold": { "alias": "infiniteScrollThreshold"; "required": false; }; "headerActions": { "alias": "headerActions"; "required": false; }; "footerActions": { "alias": "footerActions"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "readEvent": "readEvent"; "readEvents": "readEvents"; }, never, never, false, never>;
|
|
71
71
|
}
|
|
@@ -30,5 +30,5 @@ export declare class UserEventTestingPage implements OnDestroy {
|
|
|
30
30
|
addNotificationWithDefaultAction(): void;
|
|
31
31
|
protected showMessage(text: string): Promise<void>;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventTestingPage, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventTestingPage, "job-progression-testing", never, {}, {}, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserEventTestingPage, "job-progression-testing", never, {}, {}, never, never, false, never>;
|
|
34
34
|
}
|
|
@@ -2,7 +2,7 @@ import { Moment } from 'moment';
|
|
|
2
2
|
import { Entity, IEntity } from '../../core/services/model/entity.model';
|
|
3
3
|
import { IEntityFilter } from '../../core/services/model/filter.model';
|
|
4
4
|
import { AppColors, IconRef } from '../../shared/types';
|
|
5
|
-
export
|
|
5
|
+
export type EventLevel = 'ERROR' | 'WARNING' | 'INFO' | 'DEBUG';
|
|
6
6
|
export interface IUserEvent<E extends Entity<E, ID>, ID = number, U = string, L = EventLevel> extends IEntity<E, ID> {
|
|
7
7
|
issuer: U;
|
|
8
8
|
recipient: U;
|
|
@@ -41,4 +41,4 @@ export interface IUserEventAction {
|
|
|
41
41
|
/**
|
|
42
42
|
* @deprecated use IUserEventAction instead
|
|
43
43
|
*/
|
|
44
|
-
export
|
|
44
|
+
export type UserEventAction = IUserEventAction;
|
|
@@ -4,9 +4,10 @@ import * as i2 from "./notification/user-event-notification.list";
|
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "../../shared/shared.module";
|
|
6
6
|
import * as i5 from "../../core/icon/icon.module";
|
|
7
|
-
import * as i6 from "
|
|
7
|
+
import * as i6 from "../../shared/rx-state.module";
|
|
8
|
+
import * as i7 from "ngx-jdenticon";
|
|
8
9
|
export declare class UserEventModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserEventModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UserEventModule, [typeof i1.UserEventNotificationIcon, typeof i2.UserEventNotificationList], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.AppIconModule, typeof i6.NgxJdenticonModule], [typeof i1.UserEventNotificationIcon]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UserEventModule, [typeof i1.UserEventNotificationIcon, typeof i2.UserEventNotificationList], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.AppIconModule, typeof i6.RxStateModule, typeof i7.NgxJdenticonModule], [typeof i1.UserEventNotificationIcon]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<UserEventModule>;
|
|
12
13
|
}
|
|
@@ -11,8 +11,6 @@ import { NetworkService } from '../../core/services/network.service';
|
|
|
11
11
|
import { BaseGraphqlService, BaseGraphqlServiceOptions } from '../../core/services/base-graphql-service.class';
|
|
12
12
|
import { Moment } from 'moment';
|
|
13
13
|
import { IStartableService } from '../../shared/services/startable-service.class';
|
|
14
|
-
import { DocumentNode } from 'graphql/index';
|
|
15
|
-
import { MutableWatchQueriesUpdatePolicy } from '../../core/services/base-entity-service.class';
|
|
16
14
|
import * as i0 from "@angular/core";
|
|
17
15
|
export declare const APP_USER_EVENT_SERVICE: InjectionToken<IUserEventService<any, any, number, UserEventWatchOptions, UserEventLoadOptions>>;
|
|
18
16
|
export declare interface UserEventLoadOptions extends EntitiesServiceLoadOptions {
|
|
@@ -44,7 +42,6 @@ export interface UserEventServiceOptions<Q extends IUserEventQueries = IUserEven
|
|
|
44
42
|
queries: Q;
|
|
45
43
|
mutations?: Partial<M>;
|
|
46
44
|
subscriptions?: Partial<S>;
|
|
47
|
-
watchQueriesUpdatePolicy?: MutableWatchQueriesUpdatePolicy;
|
|
48
45
|
}
|
|
49
46
|
export interface IUserEventService<E extends IUserEvent<E, ID>, F extends IUserEventFilter<E, ID>, ID = number, WO extends UserEventWatchOptions = UserEventWatchOptions, LO extends UserEventLoadOptions = UserEventLoadOptions> extends IEntitiesService<E, F, WO>, IStartableService {
|
|
50
47
|
countSubject: Observable<number>;
|
|
@@ -77,7 +74,6 @@ export declare abstract class AbstractUserEventService<E extends IUserEvent<E, I
|
|
|
77
74
|
protected readonly mutations: Partial<M>;
|
|
78
75
|
protected readonly subscriptions: Partial<S>;
|
|
79
76
|
protected readonly _countSubject: BehaviorSubject<number>;
|
|
80
|
-
protected readonly watchQueriesUpdatePolicy: MutableWatchQueriesUpdatePolicy;
|
|
81
77
|
protected resetCountDate: Moment;
|
|
82
78
|
protected listeners: IUserEventListener<E, ID>[];
|
|
83
79
|
private _subscriptions;
|
|
@@ -123,7 +119,6 @@ export declare abstract class AbstractUserEventService<E extends IUserEvent<E, I
|
|
|
123
119
|
protected fillDefaultProperties(entity: E): void;
|
|
124
120
|
protected unreadEvents(events: E[]): number;
|
|
125
121
|
protected copyIdAndUpdateDate(source: E, target: E): void;
|
|
126
|
-
protected getLoadQueries(): DocumentNode[];
|
|
127
122
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractUserEventService<any, any, any, any, any, any, any, any>, never>;
|
|
128
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractUserEventService<any, any, any, any, any, any, any, any>, never, never, {}, {}, never, never, false>;
|
|
123
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractUserEventService<any, any, any, any, any, any, any, any>, never, never, {}, {}, never, never, false, never>;
|
|
129
124
|
}
|
|
@@ -33,8 +33,6 @@
|
|
|
33
33
|
"BTN_SAVE": "Save",
|
|
34
34
|
"BTN_SAVE_WITH_SHORTCUT": "<u>S</u>ave",
|
|
35
35
|
"BTN_SAVE_WITH_SHORTCUT_HELP": "Save (Ctrl+S)",
|
|
36
|
-
"BTN_SAVE_AND_CLOSE": "Save and close",
|
|
37
|
-
"BTN_SAVE_AND_NEXT": "Save and next",
|
|
38
36
|
"BTN_FILTER": "Filter",
|
|
39
37
|
"BTN_RELOAD": "Reload",
|
|
40
38
|
"BTN_REFRESH": "Refresh",
|
|
@@ -106,7 +104,6 @@
|
|
|
106
104
|
|
|
107
105
|
"YES": "Yes",
|
|
108
106
|
"NO": "No",
|
|
109
|
-
"DEBUG": "Debug",
|
|
110
107
|
|
|
111
108
|
"UPDATED_ON": "Last modification on",
|
|
112
109
|
"RECORDER": "Recorder",
|
|
@@ -116,8 +113,10 @@
|
|
|
116
113
|
"PLEASE_WAIT": "Please wait...",
|
|
117
114
|
"NO_DATA": "No data",
|
|
118
115
|
"MISSING": "Missing",
|
|
116
|
+
|
|
119
117
|
"DISPLAYED_COLUMNS": "Displayed columns",
|
|
120
118
|
"DISPLAYED_COLUMNS_DOTS": "Displayed columns...",
|
|
119
|
+
|
|
121
120
|
"FORM": {
|
|
122
121
|
"HAS_ERROR": "Please correct errors in the form"
|
|
123
122
|
},
|
|
@@ -182,8 +181,8 @@
|
|
|
182
181
|
"LOCATION_LEVEL_COUNTRY_ID": "Referential > Location level de lieu > Country",
|
|
183
182
|
"LOCATION_LEVEL_PORT_ID": "Referential > Location level > Port",
|
|
184
183
|
"LOCATION_LEVEL_AUCTION_ID": "Referential > Location level > Sale auction",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
184
|
+
"LOCATION_LEVEL_ICES_RECTANGLE_ID": "Referential > Location level > CIEM/ICES Statistical Rectangle",
|
|
185
|
+
"LOCATION_LEVEL_ICES_DIVISION_ID": "Referential > Location level > CIEM/ICES Division",
|
|
187
186
|
"TAXONOMIC_LEVEL_FAMILY_ID": "Referential > Taxonomic level > Family",
|
|
188
187
|
"TAXONOMIC_LEVEL_GENUS_ID": "Referential > Taxonomic level > Genus",
|
|
189
188
|
"TAXONOMIC_LEVEL_SPECIES_ID": "Referential > Taxonomic level > Species",
|
|
@@ -199,7 +198,9 @@
|
|
|
199
198
|
"TOKEN": "Crypto",
|
|
200
199
|
"BASIC_AND_TOKEN": "Basic and crypto"
|
|
201
200
|
},
|
|
202
|
-
"
|
|
201
|
+
"ACCOUNT": {
|
|
202
|
+
"ENABLE_AUTH_TOKENS": "Activer les jetons d'authentifications"
|
|
203
|
+
}
|
|
203
204
|
}
|
|
204
205
|
},
|
|
205
206
|
"MENU": {
|
|
@@ -213,12 +214,7 @@
|
|
|
213
214
|
"LOCAL_SETTINGS": "Settings",
|
|
214
215
|
"LOGOUT": "Logout",
|
|
215
216
|
"ABOUT": "About",
|
|
216
|
-
"BTN_MY_ACCOUNT": "My account"
|
|
217
|
-
|
|
218
|
-
"TRIPS": "Trips",
|
|
219
|
-
"LOGBOOKS": "Logbooks",
|
|
220
|
-
"OCCASIONS": "Occasions",
|
|
221
|
-
"AUCTION_OCCASIONS": "Auction occasions"
|
|
217
|
+
"BTN_MY_ACCOUNT": "My account"
|
|
222
218
|
},
|
|
223
219
|
"ABOUT": {
|
|
224
220
|
"TITLE": "About",
|
|
@@ -464,6 +460,14 @@
|
|
|
464
460
|
"NOT_COMPATIBLE_PEER": "The application works in <b>offline mode</b>, because the node <b>use a too old version</b>.<br/><small>If the problem persists, please <b>contact your administrator</b>, or select a node v{{version}} or superior.</small>"
|
|
465
461
|
}
|
|
466
462
|
},
|
|
463
|
+
"MAP": {
|
|
464
|
+
"ZOOM_IN": "Zoom in",
|
|
465
|
+
"ZOOM_OUT": "Zoom out",
|
|
466
|
+
"ENTER_FULLSCREEN": "Fullscreen mode",
|
|
467
|
+
"EXIT_FULLSCREEN": "Exit fullscreen mode",
|
|
468
|
+
"SHOW_GRATICULE": "Show graticule",
|
|
469
|
+
"HIDE_GRATICULE": "Hide graticule"
|
|
470
|
+
},
|
|
467
471
|
"SOCIAL": {
|
|
468
472
|
"USER_EVENT": {
|
|
469
473
|
"NOTIFICATION": {
|
|
@@ -482,8 +486,7 @@
|
|
|
482
486
|
"TYPE_ENUM": {
|
|
483
487
|
"DEBUG_DATA": "Debug data",
|
|
484
488
|
"INBOX_MESSAGE": "Inbox message",
|
|
485
|
-
"FEED": "Feed"
|
|
486
|
-
"JOB": "{{name}}<br/><b>{{status}}</b>"
|
|
489
|
+
"FEED": "Feed"
|
|
487
490
|
}
|
|
488
491
|
},
|
|
489
492
|
"JOB": {
|
|
@@ -495,7 +498,6 @@
|
|
|
495
498
|
"MESSAGE": {
|
|
496
499
|
"TYPE": "Message type",
|
|
497
500
|
"RECIPIENTS": "Recipients",
|
|
498
|
-
"RECIPIENT_FILTER_COUNT": "{{count}} filtered users",
|
|
499
501
|
"SUBJECT": "Object",
|
|
500
502
|
"BODY_HELP": "Your message...",
|
|
501
503
|
"NEW": {
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -33,8 +33,6 @@
|
|
|
33
33
|
"BTN_SAVE": "Save",
|
|
34
34
|
"BTN_SAVE_WITH_SHORTCUT": "<u>S</u>ave",
|
|
35
35
|
"BTN_SAVE_WITH_SHORTCUT_HELP": "Save (Ctrl+S)",
|
|
36
|
-
"BTN_SAVE_AND_CLOSE": "Save and close",
|
|
37
|
-
"BTN_SAVE_AND_NEXT": "Save and next",
|
|
38
36
|
"BTN_FILTER": "Filter",
|
|
39
37
|
"BTN_RELOAD": "Reload",
|
|
40
38
|
"BTN_REFRESH": "Refresh",
|
|
@@ -106,7 +104,6 @@
|
|
|
106
104
|
|
|
107
105
|
"YES": "Yes",
|
|
108
106
|
"NO": "No",
|
|
109
|
-
"DEBUG": "Debug",
|
|
110
107
|
|
|
111
108
|
"UPDATED_ON": "Last modification on",
|
|
112
109
|
"RECORDER": "Recorder",
|
|
@@ -116,8 +113,10 @@
|
|
|
116
113
|
"PLEASE_WAIT": "Please wait...",
|
|
117
114
|
"NO_DATA": "No data",
|
|
118
115
|
"MISSING": "Missing",
|
|
116
|
+
|
|
119
117
|
"DISPLAYED_COLUMNS": "Displayed columns",
|
|
120
118
|
"DISPLAYED_COLUMNS_DOTS": "Displayed columns...",
|
|
119
|
+
|
|
121
120
|
"FORM": {
|
|
122
121
|
"HAS_ERROR": "Please correct errors in the form"
|
|
123
122
|
},
|
|
@@ -182,8 +181,8 @@
|
|
|
182
181
|
"LOCATION_LEVEL_COUNTRY_ID": "Referential > Location level de lieu > Country",
|
|
183
182
|
"LOCATION_LEVEL_PORT_ID": "Referential > Location level > Port",
|
|
184
183
|
"LOCATION_LEVEL_AUCTION_ID": "Referential > Location level > Sale auction",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
184
|
+
"LOCATION_LEVEL_ICES_RECTANGLE_ID": "Referential > Location level > CIEM/ICES Statistical Rectangle",
|
|
185
|
+
"LOCATION_LEVEL_ICES_DIVISION_ID": "Referential > Location level > CIEM/ICES Division",
|
|
187
186
|
"TAXONOMIC_LEVEL_FAMILY_ID": "Referential > Taxonomic level > Family",
|
|
188
187
|
"TAXONOMIC_LEVEL_GENUS_ID": "Referential > Taxonomic level > Genus",
|
|
189
188
|
"TAXONOMIC_LEVEL_SPECIES_ID": "Referential > Taxonomic level > Species",
|
|
@@ -199,7 +198,9 @@
|
|
|
199
198
|
"TOKEN": "Crypto",
|
|
200
199
|
"BASIC_AND_TOKEN": "Basic and crypto"
|
|
201
200
|
},
|
|
202
|
-
"
|
|
201
|
+
"ACCOUNT": {
|
|
202
|
+
"ENABLE_AUTH_TOKENS": "Enable auth tokens"
|
|
203
|
+
}
|
|
203
204
|
}
|
|
204
205
|
},
|
|
205
206
|
"MENU": {
|
|
@@ -213,12 +214,7 @@
|
|
|
213
214
|
"LOCAL_SETTINGS": "Settings",
|
|
214
215
|
"LOGOUT": "Logout",
|
|
215
216
|
"ABOUT": "About",
|
|
216
|
-
"BTN_MY_ACCOUNT": "My account"
|
|
217
|
-
|
|
218
|
-
"TRIPS": "Trips",
|
|
219
|
-
"LOGBOOKS": "Logbooks",
|
|
220
|
-
"OCCASIONS": "Occasions",
|
|
221
|
-
"AUCTION_OCCASIONS": "Auction occasions"
|
|
217
|
+
"BTN_MY_ACCOUNT": "My account"
|
|
222
218
|
},
|
|
223
219
|
"ABOUT": {
|
|
224
220
|
"TITLE": "About",
|
|
@@ -464,6 +460,14 @@
|
|
|
464
460
|
"NOT_COMPATIBLE_PEER": "The application works in <b>offline mode</b>, because the node <b>use a too old version</b>.<br/><small>If the problem persists, please <b>contact your administrator</b>, or select a node v{{version}} or superior.</small>"
|
|
465
461
|
}
|
|
466
462
|
},
|
|
463
|
+
"MAP": {
|
|
464
|
+
"ZOOM_IN": "Zoom in",
|
|
465
|
+
"ZOOM_OUT": "Zoom out",
|
|
466
|
+
"ENTER_FULLSCREEN": "Fullscreen mode",
|
|
467
|
+
"EXIT_FULLSCREEN": "Exit fullscreen mode",
|
|
468
|
+
"SHOW_GRATICULE": "Show graticule",
|
|
469
|
+
"HIDE_GRATICULE": "Hide graticule"
|
|
470
|
+
},
|
|
467
471
|
"SOCIAL": {
|
|
468
472
|
"USER_EVENT": {
|
|
469
473
|
"NOTIFICATION": {
|
|
@@ -482,8 +486,7 @@
|
|
|
482
486
|
"TYPE_ENUM": {
|
|
483
487
|
"DEBUG_DATA": "Debug data",
|
|
484
488
|
"INBOX_MESSAGE": "Inbox message",
|
|
485
|
-
"FEED": "Feed"
|
|
486
|
-
"JOB": "{{name}}<br/><b>{{status}}</b>"
|
|
489
|
+
"FEED": "Feed"
|
|
487
490
|
}
|
|
488
491
|
},
|
|
489
492
|
"JOB": {
|
|
@@ -495,7 +498,6 @@
|
|
|
495
498
|
"MESSAGE": {
|
|
496
499
|
"TYPE": "Message type",
|
|
497
500
|
"RECIPIENTS": "Recipients",
|
|
498
|
-
"RECIPIENT_FILTER_COUNT": "{{count}} filtered users",
|
|
499
501
|
"SUBJECT": "Object",
|
|
500
502
|
"BODY_HELP": "Your message...",
|
|
501
503
|
"NEW": {
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -81,10 +81,10 @@
|
|
|
81
81
|
"LAT_LONG": {
|
|
82
82
|
"DDMMSS_PLACEHOLDER": "DD° MM' SS\"",
|
|
83
83
|
"DDMM_PLACEHOLDER": "DD° MM.MMM'",
|
|
84
|
-
"DD_PLACEHOLDER": "
|
|
84
|
+
"DD_PLACEHOLDER": "± DD.DDDDDDD°",
|
|
85
85
|
"DDDMMSS_PLACEHOLDER": "DDD° MM' SS\"",
|
|
86
86
|
"DDDMM_PLACEHOLDER": "DDD° MM.MMM'",
|
|
87
|
-
"DDD_PLACEHOLDER": "
|
|
87
|
+
"DDD_PLACEHOLDER": "±DDD.DDDDDDD°",
|
|
88
88
|
"LAT_SIGN_PLACEHOLDER": "N|S",
|
|
89
89
|
"LAT_SIGN_N": "N",
|
|
90
90
|
"LAT_SIGN_S": "S",
|
|
@@ -182,8 +182,8 @@
|
|
|
182
182
|
"LOCATION_LEVEL_COUNTRY_ID": "Référentiel > Niveau de lieu > Pays",
|
|
183
183
|
"LOCATION_LEVEL_PORT_ID": "Référentiel > Niveau de lieu > Port",
|
|
184
184
|
"LOCATION_LEVEL_AUCTION_ID": "Référentiel > Niveau de lieu > Criée",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
185
|
+
"LOCATION_LEVEL_ICES_RECTANGLE_ID": "Référentiel > Niveau de lieu > Rectangle statistique CIEM/ICES",
|
|
186
|
+
"LOCATION_LEVEL_ICES_DIVISION_ID": "Référentiel > Niveau de lieu > Division CIEM/ICES",
|
|
187
187
|
"TAXONOMIC_LEVEL_FAMILY_ID": "Référentiel > Niveau taxinomique > Famille",
|
|
188
188
|
"TAXONOMIC_LEVEL_GENUS_ID": "Référentiel > Niveau taxinomique > Genre",
|
|
189
189
|
"TAXONOMIC_LEVEL_SPECIES_ID": "Référentiel > Niveau taxinomique > Espèce",
|
|
@@ -199,7 +199,9 @@
|
|
|
199
199
|
"TOKEN": "Cryptographique",
|
|
200
200
|
"BASIC_AND_TOKEN": "Basique et cryptographique"
|
|
201
201
|
},
|
|
202
|
-
"
|
|
202
|
+
"ACCOUNT": {
|
|
203
|
+
"ENABLE_AUTH_TOKENS": "Activer les jetons d'authentification"
|
|
204
|
+
}
|
|
203
205
|
}
|
|
204
206
|
},
|
|
205
207
|
"MENU": {
|
|
@@ -495,7 +497,6 @@
|
|
|
495
497
|
"MESSAGE": {
|
|
496
498
|
"TYPE": "Type d'envoi",
|
|
497
499
|
"RECIPIENTS": "Destinataires",
|
|
498
|
-
"RECIPIENT_FILTER_COUNT": "{{count}} utilisateurs filtrés",
|
|
499
500
|
"SUBJECT": "Objet",
|
|
500
501
|
"BODY_HELP": "Votre message...",
|
|
501
502
|
"NEW": {
|
|
File without changes
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "2.6.
|
|
5
|
+
"version": "2.6.6-rc5",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// Import material theme
|
|
3
3
|
// --------------------------------------------------
|
|
4
4
|
@use '@angular/material' as mat;
|
|
5
|
+
@include mat.core();
|
|
5
6
|
|
|
6
7
|
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
|
7
8
|
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
|
@@ -39,22 +40,22 @@ $mat-indigo-app: (
|
|
|
39
40
|
A700: white
|
|
40
41
|
)
|
|
41
42
|
);
|
|
42
|
-
mat.$light-theme-background-palette: (
|
|
43
|
-
status-bar: map_get(mat.$grey-palette, 300),
|
|
44
|
-
app-bar: map_get(mat.$grey-palette, 100),
|
|
45
|
-
background: var(--background, map_get(mat.$grey-palette, 50)),
|
|
46
|
-
hover: rgba(black, 0.04), // TODO(kara): check style with Material Design UX
|
|
47
|
-
card: white,
|
|
48
|
-
dialog: white,
|
|
49
|
-
disabled-button: rgba(black, 0.12),
|
|
50
|
-
raised-button: white,
|
|
51
|
-
focused-button: rgba(black, 0.12),
|
|
52
|
-
selected-button: map_get(mat.$grey-palette, 300),
|
|
53
|
-
selected-disabled-button: map_get(mat.$grey-palette, 400),
|
|
54
|
-
disabled-button-toggle: map_get(mat.$grey-palette, 200),
|
|
55
|
-
unselected-chip: map_get(mat.$grey-palette, 300),
|
|
56
|
-
disabled-list-option: map_get(mat.$grey-palette, 200),
|
|
57
|
-
);
|
|
43
|
+
//mat.$light-theme-background-palette: (
|
|
44
|
+
// status-bar: map_get(mat.$grey-palette, 300),
|
|
45
|
+
// app-bar: map_get(mat.$grey-palette, 100),
|
|
46
|
+
// background: var(--background, map_get(mat.$grey-palette, 50)),
|
|
47
|
+
// hover: rgba(black, 0.04), // TODO(kara): check style with Material Design UX
|
|
48
|
+
// card: white,
|
|
49
|
+
// dialog: white,
|
|
50
|
+
// disabled-button: rgba(black, 0.12),
|
|
51
|
+
// raised-button: white,
|
|
52
|
+
// focused-button: rgba(black, 0.12),
|
|
53
|
+
// selected-button: map_get(mat.$grey-palette, 300),
|
|
54
|
+
// selected-disabled-button: map_get(mat.$grey-palette, 400),
|
|
55
|
+
// disabled-button-toggle: map_get(mat.$grey-palette, 200),
|
|
56
|
+
// unselected-chip: map_get(mat.$grey-palette, 300),
|
|
57
|
+
// disabled-list-option: map_get(mat.$grey-palette, 200),
|
|
58
|
+
//);
|
|
58
59
|
|
|
59
60
|
// FIXME: Why loader toolbar is so dark ?
|
|
60
61
|
$candy-app-primary: mat.define-palette($mat-indigo-app, 500, 100, 900);
|
|
@@ -63,12 +64,43 @@ $candy-app-accent: mat.define-palette($mat-indigo-app, A200, A100, A400);
|
|
|
63
64
|
// The warn palette is optional (defaults to red).
|
|
64
65
|
$candy-app-warn: mat.define-palette(mat.$red-palette);
|
|
65
66
|
// Create the theme object (a Sass map containing all of the palettes).
|
|
66
|
-
$candy-app-theme: mat.define-light-theme(
|
|
67
|
+
$candy-app-theme: mat.define-light-theme((
|
|
68
|
+
color: (
|
|
69
|
+
primary: $candy-app-primary,
|
|
70
|
+
accent: $candy-app-accent,
|
|
71
|
+
warn: $candy-app-warn,
|
|
72
|
+
),
|
|
73
|
+
typography: mat.define-typography-config(),
|
|
74
|
+
density: 0,
|
|
75
|
+
|
|
76
|
+
));
|
|
77
|
+
|
|
78
|
+
@include mat.all-component-themes($candy-app-theme);
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
// --------------------------------------------------
|
|
82
|
+
// Material theme
|
|
83
|
+
// --------------------------------------------------
|
|
84
|
+
//$primary: mat.define-palette(mat.$indigo-palette, 500);
|
|
85
|
+
//$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
86
|
+
//$warn: mat.define-palette(mat.$red-palette);
|
|
87
|
+
//
|
|
88
|
+
//$theme: mat.define-light-theme((
|
|
89
|
+
// color: (
|
|
90
|
+
// primary: $primary,
|
|
91
|
+
// accent: $accent,
|
|
92
|
+
// warn: $warn,
|
|
93
|
+
// ),
|
|
94
|
+
// typography: mat.define-typography-config(),
|
|
95
|
+
// density: 0,
|
|
96
|
+
//));
|
|
97
|
+
//@include mat.all-component-themes($theme);
|
|
98
|
+
|
|
67
99
|
|
|
68
100
|
|
|
69
101
|
// Expose some variables
|
|
70
102
|
$mat-tab-link-height: 48px !default;
|
|
71
103
|
$mat-tab-bar-height: 48px !default;
|
|
72
104
|
$mat-tab-animation-duration: 200ms !default;
|
|
73
|
-
$mat-
|
|
74
|
-
$mat-
|
|
105
|
+
$mat-toolbar-height-desktop: 64px !default;
|
|
106
|
+
$mat-toolbar-height-mobile: 56px !default;
|
package/src/theme/_material.scss
CHANGED
|
@@ -1,16 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
// Plus imports for other components in your app.
|
|
3
|
-
@use '@angular/material' as mat;
|
|
4
|
-
// Include the common styles for Angular Material. We include this here so that you only
|
|
5
|
-
// have to load a single css file for Angular Material in your app.
|
|
6
|
-
// Be sure that you only ever include this mixin once!
|
|
7
|
-
@include mat.core();
|
|
8
|
-
|
|
9
|
-
// Include theme styles for core and each component used in your app.
|
|
10
|
-
// Alternatively, you can import and @include the theme mixins for each component
|
|
11
|
-
// that you are using.
|
|
12
|
-
@include mat.all-component-themes($candy-app-theme);
|
|
13
|
-
|
|
14
1
|
// --------------------------------------------------
|
|
15
2
|
// Override material style
|
|
16
3
|
// --------------------------------------------------
|
|
@@ -18,6 +5,7 @@
|
|
|
18
5
|
background-color: var(--ion-color-secondary, $secondary);
|
|
19
6
|
.mat-tab-link {
|
|
20
7
|
color: var(--ion-color-secondary-contrast);
|
|
8
|
+
--mat-tab-header-label-text-tracking: normal;
|
|
21
9
|
}
|
|
22
10
|
}
|
|
23
11
|
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
|
|
@@ -42,6 +30,9 @@
|
|
|
42
30
|
.mat-stroked-button.mat-accent {
|
|
43
31
|
color: var(--ion-color-accent);
|
|
44
32
|
}
|
|
33
|
+
.mdc-button {
|
|
34
|
+
--mdc-typography-button-letter-spacing: normal;
|
|
35
|
+
}
|
|
45
36
|
|
|
46
37
|
// Badge
|
|
47
38
|
.mat-badge-primary .mat-badge-content {
|
|
@@ -96,7 +87,7 @@
|
|
|
96
87
|
|
|
97
88
|
}
|
|
98
89
|
|
|
99
|
-
.mat-option {
|
|
90
|
+
.mat-option, .mat-mdc-option {
|
|
100
91
|
padding-top: var(--padding-top, 0) !important;
|
|
101
92
|
padding-right: var(--padding-end, 16px) !important;
|
|
102
93
|
padding-bottom: var(--padding-bottom, 0) !important;
|
|
@@ -134,7 +125,7 @@ mat-icon[slot] {
|
|
|
134
125
|
}
|
|
135
126
|
|
|
136
127
|
|
|
137
|
-
.mat-form-field-errors {
|
|
128
|
+
.mat-mdc-form-field-errors {
|
|
138
129
|
margin-top: -20px;
|
|
139
130
|
|
|
140
131
|
mat-hint,
|
|
@@ -144,3 +135,12 @@ mat-icon[slot] {
|
|
|
144
135
|
font-size: 75%;
|
|
145
136
|
}
|
|
146
137
|
}
|
|
138
|
+
|
|
139
|
+
.mat-mdc-form-field-infix {
|
|
140
|
+
label {
|
|
141
|
+
width: 100% !important;
|
|
142
|
+
mat-label {
|
|
143
|
+
text-overflow: ellipsis;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
package/src/theme/_mixins.scss
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
1
2
|
|
|
2
3
|
@mixin font-size($size) {
|
|
3
4
|
font-size: calculateRem($size);
|
|
@@ -82,7 +83,6 @@
|
|
|
82
83
|
}
|
|
83
84
|
|
|
84
85
|
@mixin css-variables-to-root() {
|
|
85
|
-
|
|
86
86
|
@each $color-name,
|
|
87
87
|
$value in $colors {
|
|
88
88
|
.ion-color-#{""+$color-name} {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
--expansion-panel-padding: var(--ion-padding);
|
|
103
103
|
--expansion-panel-header-padding: var(--ion-padding);
|
|
104
104
|
|
|
105
|
-
--mat-toolbar-height: #{$mat-
|
|
105
|
+
--mat-toolbar-height: #{$mat-toolbar-height-desktop};
|
|
106
106
|
--mat-paginator-height: mat.$paginator-height;
|
|
107
107
|
--ion-toolbar-height: #{$ion-toolbar-height};
|
|
108
108
|
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
@mixin css-variables-to-root-mobile() {
|
|
119
|
-
--mat-toolbar-height: #{$mat-
|
|
119
|
+
--mat-toolbar-height: #{$mat-toolbar-height-mobile};
|
|
120
120
|
|
|
121
121
|
// Disable form footer, in mobile
|
|
122
122
|
--app-form-buttons-bar-height: 0px;
|
|
@@ -6,7 +6,7 @@ $app-form-color: rgba(0, 0, 0, 0.87) !default;
|
|
|
6
6
|
$app-form-color-disabled: rgba(0, 0, 0, 0.55) !default;
|
|
7
7
|
|
|
8
8
|
$app-table-header-height: 44px !default;
|
|
9
|
-
$app-table-cell-
|
|
9
|
+
$app-table-cell-horizontal-padding: 8px !default;
|
|
10
10
|
$app-table-row-height: 48px !default;
|
|
11
11
|
$app-table-row-max-height: 52px !default;
|
|
12
12
|
|
|
@@ -15,3 +15,8 @@ $app-form-buttons-bar-height: 56px !default;
|
|
|
15
15
|
|
|
16
16
|
$app-select-option-border-color: rgba(0, 0, 0, 0.12) !default;
|
|
17
17
|
$app-table-border-color: rgba(0, 0, 0, 0.08) !default;
|
|
18
|
+
|
|
19
|
+
$app-form-field-background-color: rgba(0,0,0,0) !default;
|
|
20
|
+
//$app-form-field-background-color: whitesmoke !default;
|
|
21
|
+
$app-form-field-focus-background-color: rgba(0, 0, 0, 0) !default;
|
|
22
|
+
//$app-form-field-focus-background-color: rgba(0, 0, 0, 0.87) !default;
|