@sumaris-net/ngx-components 2.7.2-rc9 → 2.7.3-rc2
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/doc/changelog.md +36 -0
- package/esm2022/public_api.mjs +11 -9
- package/esm2022/src/app/admin/admin-routing.module.mjs +10 -17
- package/esm2022/src/app/admin/admin.module.mjs +7 -9
- package/esm2022/src/app/admin/services/filter/person.filter.mjs +3 -3
- package/esm2022/src/app/admin/services/person.service.mjs +31 -31
- package/esm2022/src/app/admin/services/validator/person.validator.mjs +10 -10
- package/esm2022/src/app/admin/users/users.mjs +14 -7
- package/esm2022/src/app/admin/users/users.module.mjs +8 -10
- package/esm2022/src/app/core/about/about.modal.mjs +7 -7
- package/esm2022/src/app/core/about/about.module.mjs +8 -21
- package/esm2022/src/app/core/account/account.module.mjs +9 -15
- package/esm2022/src/app/core/account/account.page.mjs +5 -5
- package/esm2022/src/app/core/account/new-token.modal.mjs +9 -8
- package/esm2022/src/app/core/account/token.table.mjs +5 -5
- package/esm2022/src/app/core/auth/auth.form.mjs +9 -9
- package/esm2022/src/app/core/auth/auth.modal.mjs +6 -6
- package/esm2022/src/app/core/auth/auth.module.mjs +9 -9
- package/esm2022/src/app/core/core.module.mjs +17 -46
- package/esm2022/src/app/core/core.testing.module.mjs +15 -15
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +16 -15
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.module.mjs +9 -13
- package/esm2022/src/app/core/form/entity/editor.class.mjs +87 -89
- package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +12 -17
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +31 -32
- package/esm2022/src/app/core/form/entity/entity-metadata.component.mjs +5 -5
- package/esm2022/src/app/core/form/entity/entity.module.mjs +8 -14
- package/esm2022/src/app/core/form/form.class.mjs +12 -12
- package/esm2022/src/app/core/form/form.module.mjs +8 -8
- package/esm2022/src/app/core/form/form.utils.mjs +25 -23
- package/esm2022/src/app/core/form/list/list.form.mjs +13 -12
- package/esm2022/src/app/core/form/list/list.module.mjs +8 -12
- package/esm2022/src/app/core/form/properties/properties.form.mjs +12 -15
- package/esm2022/src/app/core/form/properties/properties.module.mjs +9 -15
- package/esm2022/src/app/core/form/properties/properties.table.mjs +24 -26
- package/esm2022/src/app/core/form/properties/property.validator.mjs +6 -6
- package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +18 -18
- package/esm2022/src/app/core/form/properties/testing/properties-form.testing.module.mjs +8 -24
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.mjs +9 -8
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +10 -25
- package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +6 -6
- package/esm2022/src/app/core/form/text-popover/text-popover.module.mjs +9 -13
- package/esm2022/src/app/core/graphql/graphql.module.mjs +8 -13
- package/esm2022/src/app/core/graphql/graphql.service.mjs +71 -95
- package/esm2022/src/app/core/graphql/graphql.utils.mjs +12 -11
- package/esm2022/src/app/core/home/home.mjs +26 -27
- package/esm2022/src/app/core/home/home.module.mjs +10 -19
- package/esm2022/src/app/core/icon/icon.component.mjs +5 -5
- package/esm2022/src/app/core/icon/icon.module.mjs +8 -17
- package/esm2022/src/app/core/install/install-upgrade-card.component.mjs +33 -37
- package/esm2022/src/app/core/install/install-upgrade-card.module.mjs +9 -13
- package/esm2022/src/app/core/menu/menu.component.mjs +5 -6
- package/esm2022/src/app/core/menu/menu.model.mjs +21 -18
- package/esm2022/src/app/core/menu/menu.module.mjs +7 -12
- package/esm2022/src/app/core/menu/menu.service.mjs +44 -60
- package/esm2022/src/app/core/menu/sub-menu-tab.directive.mjs +4 -4
- package/esm2022/src/app/core/menu/testing/menu-other.testing.mjs +5 -5
- package/esm2022/src/app/core/menu/testing/menu.testing.mjs +5 -5
- package/esm2022/src/app/core/menu/testing/menu.testing.module.mjs +8 -27
- package/esm2022/src/app/core/offline/update-offline-mode-card.component.mjs +6 -7
- package/esm2022/src/app/core/offline/update-offline-mode-card.module.mjs +9 -13
- package/esm2022/src/app/core/peer/select-peer.modal.mjs +8 -9
- package/esm2022/src/app/core/peer/select-peer.module.mjs +10 -19
- package/esm2022/src/app/core/register/register-confirm.page.mjs +12 -12
- package/esm2022/src/app/core/register/register.form.mjs +5 -5
- package/esm2022/src/app/core/register/register.modal.mjs +6 -6
- package/esm2022/src/app/core/register/register.module.mjs +8 -29
- package/esm2022/src/app/core/services/account.service.mjs +172 -160
- package/esm2022/src/app/core/services/auth-guard.service.mjs +13 -15
- package/esm2022/src/app/core/services/base-entity-service.class.mjs +51 -60
- package/esm2022/src/app/core/services/base-graphql-service.class.mjs +39 -33
- package/esm2022/src/app/core/services/base58.mjs +8 -4
- package/esm2022/src/app/core/services/config/core.config.mjs +37 -37
- package/esm2022/src/app/core/services/config.service.mjs +51 -49
- package/esm2022/src/app/core/services/crypto.service.mjs +11 -11
- package/esm2022/src/app/core/services/errors.mjs +3 -3
- package/esm2022/src/app/core/services/local-settings.service.mjs +36 -37
- package/esm2022/src/app/core/services/model/account.model.mjs +12 -17
- package/esm2022/src/app/core/services/model/config.model.mjs +5 -5
- package/esm2022/src/app/core/services/model/department.model.mjs +3 -2
- package/esm2022/src/app/core/services/model/entity.decorators.mjs +6 -6
- package/esm2022/src/app/core/services/model/entity.model.mjs +25 -25
- package/esm2022/src/app/core/services/model/filter.model.mjs +12 -15
- package/esm2022/src/app/core/services/model/history.model.mjs +1 -1
- package/esm2022/src/app/core/services/model/model.enum.mjs +2 -2
- package/esm2022/src/app/core/services/model/peer.model.mjs +9 -8
- package/esm2022/src/app/core/services/model/person.model.mjs +18 -17
- package/esm2022/src/app/core/services/model/referential.model.mjs +13 -13
- package/esm2022/src/app/core/services/model/settings.model.mjs +1 -1
- package/esm2022/src/app/core/services/model/token.model.mjs +2 -3
- package/esm2022/src/app/core/services/model/tree-item-entity.model.mjs +2 -6
- package/esm2022/src/app/core/services/network.service.mjs +42 -43
- package/esm2022/src/app/core/services/network.types.mjs +1 -1
- package/esm2022/src/app/core/services/network.utils.mjs +3 -3
- package/esm2022/src/app/core/services/pipes/account.pipes.mjs +11 -11
- package/esm2022/src/app/core/services/pipes/department-to-string.pipe.mjs +6 -6
- package/esm2022/src/app/core/services/pipes/person-to-string.pipe.mjs +6 -6
- package/esm2022/src/app/core/services/pipes/pipes.module.mjs +54 -0
- package/esm2022/src/app/core/services/pipes/referential-to-string.pipe.mjs +21 -0
- package/esm2022/src/app/core/services/pipes/usage-mode.pipes.mjs +11 -11
- package/esm2022/src/app/core/services/platform.service.mjs +45 -49
- package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +32 -39
- package/esm2022/src/app/core/services/storage/entity-store.class.mjs +36 -45
- package/esm2022/src/app/core/services/testing/referential-filter.model.mjs +1 -1
- package/esm2022/src/app/core/services/testing/referential.validator.mjs +14 -14
- package/esm2022/src/app/core/services/validator/account.validator.mjs +5 -5
- package/esm2022/src/app/core/services/validator/base.validator.class.mjs +4 -4
- package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +13 -13
- package/esm2022/src/app/core/services/validator/user-settings.validator.mjs +5 -5
- package/esm2022/src/app/core/services/validator/user-token.validator.mjs +12 -9
- package/esm2022/src/app/core/settings/settings.module.mjs +8 -21
- package/esm2022/src/app/core/settings/settings.page.mjs +12 -17
- package/esm2022/src/app/core/table/actions-column.component.mjs +13 -5
- package/esm2022/src/app/core/table/async-table.class.mjs +106 -112
- package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +21 -26
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +26 -29
- package/esm2022/src/app/core/table/memory-table.class.mjs +4 -4
- package/esm2022/src/app/core/table/table-select-columns.component.mjs +8 -8
- package/esm2022/src/app/core/table/table.class.mjs +107 -110
- package/esm2022/src/app/core/table/table.model.mjs +1 -1
- package/esm2022/src/app/core/table/table.module.mjs +8 -12
- package/esm2022/src/app/core/table/table.utils.mjs +2 -4
- package/esm2022/src/app/core/table/testing/table-validator.service.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table.testing.mjs +9 -9
- package/esm2022/src/app/core/table/testing/table.testing.module.mjs +8 -33
- package/esm2022/src/app/core/table/testing/table2-validator.service.mjs +4 -4
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +28 -26
- package/esm2022/src/app/shared/alerts.mjs +37 -35
- package/esm2022/src/app/shared/audio/audio.mjs +25 -27
- package/esm2022/src/app/shared/audio/audio.testing.mjs +5 -5
- package/esm2022/src/app/shared/audio/audio.testing.module.mjs +10 -25
- package/esm2022/src/app/shared/capacitor/keyboard.mjs +5 -5
- package/esm2022/src/app/shared/capacitor/plugins.mjs +1 -1
- package/esm2022/src/app/shared/constants.mjs +2 -3
- package/esm2022/src/app/shared/dates.mjs +5 -8
- package/esm2022/src/app/shared/debug/debug-service.class.mjs +1 -1
- package/esm2022/src/app/shared/debug/debug.component.mjs +5 -5
- package/esm2022/src/app/shared/debug/debug.module.mjs +8 -29
- package/esm2022/src/app/shared/directives/autofocus.directive.mjs +8 -12
- package/esm2022/src/app/shared/directives/autotitle.directive.mjs +3 -3
- package/esm2022/src/app/shared/directives/directives.module.mjs +8 -29
- package/esm2022/src/app/shared/directives/drag-and-drop.directive.mjs +4 -4
- package/esm2022/src/app/shared/directives/ng-var.directive.mjs +4 -4
- package/esm2022/src/app/shared/directives/resizable/resizable.component.mjs +3 -3
- package/esm2022/src/app/shared/directives/resizable/resizable.directive.mjs +4 -4
- package/esm2022/src/app/shared/directives/resizable/resizable.module.mjs +4 -4
- package/esm2022/src/app/shared/events.mjs +6 -8
- package/esm2022/src/app/shared/file/csv.utils.mjs +22 -18
- package/esm2022/src/app/shared/file/file.service.mjs +11 -15
- package/esm2022/src/app/shared/file/file.utils.mjs +13 -11
- package/esm2022/src/app/shared/file/images.utils.mjs +4 -4
- package/esm2022/src/app/shared/file/json.utils.mjs +3 -4
- package/esm2022/src/app/shared/file/uri.utils.mjs +1 -1
- package/esm2022/src/app/shared/focusable.mjs +1 -1
- package/esm2022/src/app/shared/form/field.component.mjs +33 -30
- package/esm2022/src/app/shared/form/field.model.mjs +4 -4
- package/esm2022/src/app/shared/form/loading-spinner.mjs +5 -5
- package/esm2022/src/app/shared/forms.mjs +30 -33
- package/esm2022/src/app/shared/functions.mjs +70 -65
- package/esm2022/src/app/shared/geolocation/geolocation.utils.mjs +14 -14
- package/esm2022/src/app/shared/gesture/gesture-config.mjs +9 -9
- package/esm2022/src/app/shared/gesture/hammer.utils.mjs +1 -1
- package/esm2022/src/app/shared/graph/colors.utils.mjs +14 -18
- package/esm2022/src/app/shared/graph/graph-colors.mjs +16 -22
- package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +4 -4
- package/esm2022/src/app/shared/help/help.modal.mjs +6 -6
- package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +5 -5
- package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +10 -11
- package/esm2022/src/app/shared/hotkeys/shared-hotkeys.module.mjs +9 -27
- package/esm2022/src/app/shared/http/http.utils.mjs +1 -1
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +28 -27
- package/esm2022/src/app/shared/image/gallery/image-gallery.module.mjs +13 -10
- package/esm2022/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +1 -1
- package/esm2022/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +14 -17
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +9 -13
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +14 -11
- package/esm2022/src/app/shared/image/image.model.mjs +1 -1
- package/esm2022/src/app/shared/image/image.module.mjs +8 -13
- package/esm2022/src/app/shared/image/image.service.mjs +14 -12
- package/esm2022/src/app/shared/inputs.mjs +19 -20
- package/esm2022/src/app/shared/interceptors/progess.interceptor.mjs +2 -3
- package/esm2022/src/app/shared/logging/log-level.model.mjs +1 -1
- package/esm2022/src/app/shared/logging/logger.model.mjs +2 -2
- package/esm2022/src/app/shared/logging/logging-service.class.mjs +17 -20
- package/esm2022/src/app/shared/logging/logging-service.module.mjs +6 -6
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +7 -10
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +87 -96
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +9 -15
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +2 -2
- package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +27 -26
- package/esm2022/src/app/shared/material/badge/badge.directive.mjs +45 -19
- package/esm2022/src/app/shared/material/badge/badge.module.mjs +8 -20
- package/esm2022/src/app/shared/material/badge/badge.test.mjs +5 -5
- package/esm2022/src/app/shared/material/boolean/boolean.module.mjs +9 -13
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +262 -0
- package/esm2022/src/app/shared/material/boolean/testing/boolean.test.page.mjs +6 -6
- package/esm2022/src/app/shared/material/chips/chips.module.mjs +7 -11
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +69 -70
- package/esm2022/src/app/shared/material/chips/testing/chips.test.mjs +17 -17
- package/esm2022/src/app/shared/material/datetime/datetime.module.mjs +5 -5
- package/esm2022/src/app/shared/material/datetime/material.date.mjs +37 -36
- package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +26 -33
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +42 -38
- package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +20 -17
- package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +22 -20
- package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +18 -17
- package/esm2022/src/app/shared/material/duration/duration.module.mjs +5 -5
- package/esm2022/src/app/shared/material/duration/duration.utils.mjs +3 -6
- package/esm2022/src/app/shared/material/duration/material.duration.mjs +23 -24
- package/esm2022/src/app/shared/material/duration/testing/mat-duration.test.mjs +17 -15
- package/esm2022/src/app/shared/material/latlong/latlong.utils.mjs +22 -24
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +46 -41
- package/esm2022/src/app/shared/material/latlong/material.latlong.module.mjs +5 -5
- package/esm2022/src/app/shared/material/latlong/testing/latlong.test.mjs +5 -5
- package/esm2022/src/app/shared/material/material.animations.mjs +22 -22
- package/esm2022/src/app/shared/material/material.module.mjs +11 -11
- package/esm2022/src/app/shared/material/material.testing.module.mjs +26 -27
- package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +8 -14
- package/esm2022/src/app/shared/material/stepper/material.stepper-i18n.mjs +4 -4
- package/esm2022/src/app/shared/material/swipe/material.swipe.mjs +15 -11
- package/esm2022/src/app/shared/material/swipe/swipe.module.mjs +7 -11
- package/esm2022/src/app/shared/material/swipe/testing/swipe.test.mjs +8 -8
- package/esm2022/src/app/shared/material/testing/common.test.mjs +17 -15
- package/esm2022/src/app/shared/material/text/testing/text-form.testing.mjs +6 -6
- package/esm2022/src/app/shared/material/text/text-form.component.mjs +17 -16
- package/esm2022/src/app/shared/material/text/text-form.module.mjs +8 -8
- package/esm2022/src/app/shared/modules.mjs +1 -1
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +6 -7
- package/esm2022/src/app/shared/named-filter/named-filter.model.mjs +1 -1
- package/esm2022/src/app/shared/named-filter/named-filter.module.mjs +5 -5
- package/esm2022/src/app/shared/named-filter/named-filter.service.mjs +6 -6
- package/esm2022/src/app/shared/observables.mjs +14 -18
- package/esm2022/src/app/shared/pipes/arrays.pipe.mjs +38 -38
- package/esm2022/src/app/shared/pipes/colors.pipe.mjs +5 -5
- package/esm2022/src/app/shared/pipes/date-diff-duration.pipe.mjs +8 -10
- package/esm2022/src/app/shared/pipes/date-format.pipe.mjs +14 -14
- package/esm2022/src/app/shared/pipes/date-from-now.pipe.mjs +6 -6
- package/esm2022/src/app/shared/pipes/duration.pipe.mjs +6 -6
- package/esm2022/src/app/shared/pipes/file-size.pipe.mjs +6 -13
- package/esm2022/src/app/shared/pipes/form.pipes.mjs +25 -25
- package/esm2022/src/app/shared/pipes/highlight.pipe.mjs +14 -14
- package/esm2022/src/app/shared/pipes/latlong-format.pipe.mjs +14 -14
- package/esm2022/src/app/shared/pipes/maps.pipe.mjs +17 -17
- package/esm2022/src/app/shared/pipes/maskito.pipe.mjs +11 -14
- package/esm2022/src/app/shared/pipes/math.pipes.mjs +16 -16
- package/esm2022/src/app/shared/pipes/ng-init.pipe.mjs +5 -5
- package/esm2022/src/app/shared/pipes/number-format.pipe.mjs +6 -6
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +14 -22
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +23 -25
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +47 -48
- package/esm2022/src/app/shared/pipes/translate-context.pipe.mjs +11 -11
- package/esm2022/src/app/shared/pipes/types.pipes.mjs +17 -17
- package/esm2022/src/app/shared/platforms.mjs +7 -5
- package/esm2022/src/app/shared/rx-state.module.mjs +7 -11
- package/esm2022/src/app/shared/services/entity-service.class.mjs +2 -2
- package/esm2022/src/app/shared/services/job.utils.mjs +7 -7
- package/esm2022/src/app/shared/services/memory-entity-service.class.mjs +37 -35
- package/esm2022/src/app/shared/services/progress-bar.service.mjs +4 -4
- package/esm2022/src/app/shared/services/startable-observable-service.class.mjs +11 -14
- package/esm2022/src/app/shared/services/startable-service.class.mjs +11 -17
- package/esm2022/src/app/shared/services/translate-context.service.mjs +17 -14
- package/esm2022/src/app/shared/services/validator-service.class.mjs +1 -1
- package/esm2022/src/app/shared/services.mjs +10 -10
- package/esm2022/src/app/shared/shared-routing.module.mjs +19 -18
- package/esm2022/src/app/shared/shared.module.mjs +30 -27
- package/esm2022/src/app/shared/shared.testing.module.mjs +6 -6
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +26 -28
- package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +8 -12
- package/esm2022/src/app/shared/storage/storage-explorer.testing-routing.module.mjs +9 -17
- package/esm2022/src/app/shared/storage/storage-explorer.testing.module.mjs +10 -18
- package/esm2022/src/app/shared/storage/storage.service.mjs +4 -4
- package/esm2022/src/app/shared/storage/storage.utils.mjs +2 -2
- package/esm2022/src/app/shared/testing/observable.test.mjs +11 -13
- package/esm2022/src/app/shared/testing/tests.page.mjs +6 -6
- package/esm2022/src/app/shared/toast/toast.testing.mjs +10 -10
- package/esm2022/src/app/shared/toast/toast.testing.module.mjs +10 -25
- package/esm2022/src/app/shared/toast/toasts.mjs +9 -9
- package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +9 -7
- package/esm2022/src/app/shared/toolbar/toolbar.mjs +10 -15
- package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +8 -39
- package/esm2022/src/app/shared/types.mjs +1 -1
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +8 -9
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +10 -25
- package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +7 -8
- package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +17 -18
- package/esm2022/src/app/shared/upload-file/upload-file.model.mjs +2 -3
- package/esm2022/src/app/shared/validator/form-error-adapter.class.mjs +52 -50
- package/esm2022/src/app/shared/validator/validators.mjs +30 -30
- package/esm2022/src/app/shared/version/versions.mjs +2 -2
- package/esm2022/src/app/social/job/job.module.mjs +8 -27
- package/esm2022/src/app/social/job/progression/job-progression.component.mjs +9 -9
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +27 -24
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +5 -7
- package/esm2022/src/app/social/job/progression/job-progression.model.mjs +1 -1
- package/esm2022/src/app/social/job/progression/job-progression.service.mjs +21 -17
- package/esm2022/src/app/social/job/testing/job-progression.testing.mjs +5 -5
- package/esm2022/src/app/social/job/testing/job-progression.testing.service.mjs +7 -7
- package/esm2022/src/app/social/job/testing/job.testing.module.mjs +8 -21
- package/esm2022/src/app/social/message/message.form.mjs +5 -5
- package/esm2022/src/app/social/message/message.modal.mjs +8 -8
- package/esm2022/src/app/social/message/message.model.mjs +8 -8
- package/esm2022/src/app/social/message/message.module.mjs +4 -4
- package/esm2022/src/app/social/message/message.service.mjs +7 -7
- package/esm2022/src/app/social/social.errors.mjs +2 -2
- package/esm2022/src/app/social/social.module.mjs +7 -32
- package/esm2022/src/app/social/social.testing.module.mjs +9 -20
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +17 -14
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +19 -22
- package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +47 -23
- package/esm2022/src/app/social/user-event/testing/user-event.testing.model.mjs +8 -8
- package/esm2022/src/app/social/user-event/testing/user-event.testing.module.mjs +8 -21
- package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +27 -15
- package/esm2022/src/app/social/user-event/user-event.model.mjs +1 -1
- package/esm2022/src/app/social/user-event/user-event.module.mjs +8 -28
- package/esm2022/src/app/social/user-event/user-event.service.mjs +56 -61
- package/esm2022/src/environments/environment.class.mjs +2 -1
- package/esm2022/src/environments/environment.loader.mjs +4 -4
- package/esm2022/src/environments/environment.mjs +2 -2
- package/fesm2022/sumaris-net.ngx-components.mjs +6263 -7492
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +12 -7
- package/public_api.d.ts +3 -8
- package/src/app/admin/users/users.d.ts +3 -2
- package/src/app/core/core.module.d.ts +21 -24
- package/src/app/core/form/form.utils.d.ts +1 -1
- package/src/app/core/services/config/core.config.d.ts +1 -1
- package/src/app/core/services/config.service.d.ts +3 -3
- package/src/app/core/services/local-settings.service.d.ts +2 -3
- package/src/app/core/services/model/entity.model.d.ts +3 -2
- package/src/app/core/services/model/settings.model.d.ts +2 -2
- package/src/app/core/services/pipes/department-to-string.pipe.d.ts +1 -1
- package/src/app/core/services/pipes/pipes.module.d.ts +11 -0
- package/src/app/core/services/pipes/referential-to-string.pipe.d.ts +12 -0
- package/src/app/core/table/actions-column.component.d.ts +3 -1
- package/src/app/shared/events.d.ts +1 -1
- package/src/app/shared/functions.d.ts +6 -5
- package/src/app/shared/graph/graph-colors.d.ts +1 -1
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +10 -10
- package/src/app/shared/image/gallery/image-gallery.module.d.ts +2 -1
- package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +2 -2
- package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +2 -1
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +1 -1
- package/src/app/shared/material/boolean/boolean.module.d.ts +1 -1
- package/src/app/shared/material/boolean/{material-boolean.d.ts → material.boolean.d.ts} +2 -2
- package/src/app/shared/material/material.module.d.ts +5 -6
- package/src/app/shared/material/material.testing.module.d.ts +14 -15
- package/src/app/shared/material/swipe/material.swipe.d.ts +1 -1
- package/src/app/shared/pipes/pipes.module.d.ts +1 -1
- package/src/app/shared/pipes/string.pipes.d.ts +4 -5
- package/src/app/shared/validator/validators.d.ts +13 -4
- package/src/app/social/job/progression/job-progression.list.d.ts +1 -3
- package/src/app/social/message/message.modal.d.ts +2 -2
- package/src/app/social/user-event/testing/user-event.testing.d.ts +1 -0
- package/src/app/social/user-event/testing/user-event.testing.service.d.ts +1 -0
- package/src/assets/manifest.json +1 -1
- package/src/environments/environment.class.d.ts +1 -0
- package/src/theme/_ngx-components.scss +1 -25
- package/src/theme/_ngx-components.tabs.scss +361 -0
- package/src/theme/_theme.scss +1 -0
- package/esm2022/src/app/shared/material/boolean/material-boolean.mjs +0 -262
- package/esm2022/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +0 -104
- package/esm2022/src/app/shared/material/numpad/numpad.component.mjs +0 -83
- package/esm2022/src/app/shared/material/numpad/numpad.container.mjs +0 -203
- package/esm2022/src/app/shared/material/numpad/numpad.content.mjs +0 -19
- package/esm2022/src/app/shared/material/numpad/numpad.directive.mjs +0 -168
- package/esm2022/src/app/shared/material/numpad/numpad.dom-service.mjs +0 -36
- package/esm2022/src/app/shared/material/numpad/numpad.model.mjs +0 -16
- package/esm2022/src/app/shared/material/numpad/numpad.module.mjs +0 -60
- package/esm2022/src/app/shared/material/numpad/testing/numpad.test.mjs +0 -48
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.d.ts +0 -22
- package/src/app/shared/material/numpad/numpad.component.d.ts +0 -26
- package/src/app/shared/material/numpad/numpad.container.d.ts +0 -40
- package/src/app/shared/material/numpad/numpad.content.d.ts +0 -7
- package/src/app/shared/material/numpad/numpad.directive.d.ts +0 -35
- package/src/app/shared/material/numpad/numpad.dom-service.d.ts +0 -16
- package/src/app/shared/material/numpad/numpad.model.d.ts +0 -30
- package/src/app/shared/material/numpad/numpad.module.d.ts +0 -16
- package/src/app/shared/material/numpad/testing/numpad.test.d.ts +0 -13
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sumaris-net/ngx-components",
|
|
3
3
|
"description": "SUMARiS Angular components",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.3-rc2",
|
|
5
5
|
"author": "contact@e-is.pro",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
7
7
|
"readmeFilename": "README.md",
|
|
8
|
+
"lint-staged": {
|
|
9
|
+
"src/**/*.{ts,html}": [
|
|
10
|
+
"prettier --write",
|
|
11
|
+
"eslint --fix --quiet"
|
|
12
|
+
],
|
|
13
|
+
"src/**/*.{css,json,md,scss}": "prettier --write"
|
|
14
|
+
},
|
|
8
15
|
"publishConfig": {
|
|
9
16
|
"access": "public"
|
|
10
17
|
},
|
|
@@ -22,22 +29,20 @@
|
|
|
22
29
|
"@maskito/kit": "~2.0.0"
|
|
23
30
|
},
|
|
24
31
|
"peerDependencies": {
|
|
25
|
-
"@apollo/client": "~3.8.
|
|
32
|
+
"@apollo/client": "~3.8.10",
|
|
26
33
|
"@ionic/storage": "~4.0.0",
|
|
27
34
|
"d3": "~7.6.1",
|
|
28
35
|
"localforage": "~1.10.0",
|
|
29
|
-
"rxjs": "
|
|
36
|
+
"rxjs": "~7.5.7"
|
|
30
37
|
},
|
|
31
38
|
"optionalDependencies": {
|
|
32
39
|
"@awesome-cordova-plugins/core": "~6.4.0",
|
|
33
|
-
"@awesome-cordova-plugins/
|
|
34
|
-
"@
|
|
35
|
-
"@capacitor-community/native-audio": "^4.0.0-0",
|
|
40
|
+
"@awesome-cordova-plugins/network": "~6.4.0",
|
|
41
|
+
"@capacitor-community/native-audio": "~4.0.0-0",
|
|
36
42
|
"@capacitor/android": "~4.8.1",
|
|
37
43
|
"@capacitor/app": "~4.1.1",
|
|
38
44
|
"@capacitor/browser": "~4.1.1",
|
|
39
45
|
"@capacitor/camera": "~4.1.5",
|
|
40
|
-
"@capacitor/cli": "~4.7.3",
|
|
41
46
|
"@capacitor/clipboard": "~4.1.0",
|
|
42
47
|
"@capacitor/core": "~4.8.1",
|
|
43
48
|
"@capacitor/geolocation": "~4.1.0",
|
package/public_api.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export * from './src/app/shared/material/material.module';
|
|
|
8
8
|
export * from './src/app/shared/material/material.config';
|
|
9
9
|
export * from './src/app/shared/material/material.animations';
|
|
10
10
|
export * from './src/app/shared/material/boolean/boolean.module';
|
|
11
|
-
export { MatBooleanField } from './src/app/shared/material/boolean/material
|
|
11
|
+
export { MatBooleanField } from './src/app/shared/material/boolean/material.boolean';
|
|
12
12
|
export * from './src/app/shared/material/autocomplete/material.autocomplete.module';
|
|
13
13
|
export * from './src/app/shared/material/autocomplete/material.autocomplete';
|
|
14
14
|
export * from './src/app/shared/material/autocomplete/material.autocomplete.config';
|
|
@@ -25,12 +25,6 @@ export { MatLatLongField } from './src/app/shared/material/latlong/material.latl
|
|
|
25
25
|
export * from './src/app/shared/material/latlong/material.latlong.module';
|
|
26
26
|
export * from './src/app/shared/material/duration/duration.module';
|
|
27
27
|
export { MatDuration } from './src/app/shared/material/duration/material.duration';
|
|
28
|
-
export * from './src/app/shared/material/numpad/numpad.module';
|
|
29
|
-
export * from './src/app/shared/material/numpad/numpad.directive';
|
|
30
|
-
export * from './src/app/shared/material/numpad/numpad.append-to-input.directive';
|
|
31
|
-
export * from './src/app/shared/material/numpad/numpad.container';
|
|
32
|
-
export * from './src/app/shared/material/numpad/numpad.content';
|
|
33
|
-
export * from './src/app/shared/material/numpad/numpad.component';
|
|
34
28
|
export * from './src/app/shared/material/swipe/swipe.module';
|
|
35
29
|
export * from './src/app/shared/material/swipe/material.swipe';
|
|
36
30
|
export * from './src/app/shared/material/badge/badge.module';
|
|
@@ -157,6 +151,8 @@ export * from './src/app/core/services/pipes/account.pipes';
|
|
|
157
151
|
export * from './src/app/core/services/pipes/department-to-string.pipe';
|
|
158
152
|
export * from './src/app/core/services/pipes/person-to-string.pipe';
|
|
159
153
|
export * from './src/app/core/services/pipes/usage-mode.pipes';
|
|
154
|
+
export * from './src/app/core/services/pipes/referential-to-string.pipe';
|
|
155
|
+
export * from './src/app/core/services/pipes/pipes.module';
|
|
160
156
|
export * from './src/app/core/services/platform.service';
|
|
161
157
|
export * from './src/app/core/services/network.service';
|
|
162
158
|
export * from './src/app/core/services/network.types';
|
|
@@ -265,7 +261,6 @@ export * from './src/app/shared/material/datetime/testing/mat-date-time.test';
|
|
|
265
261
|
export * from './src/app/shared/material/datetime/testing/mat-date.test';
|
|
266
262
|
export * from './src/app/shared/material/datetime/testing/mat-dateshort.test';
|
|
267
263
|
export * from './src/app/shared/material/chips/testing/chips.test';
|
|
268
|
-
export * from './src/app/shared/material/numpad/testing/numpad.test';
|
|
269
264
|
export * from './src/app/shared/material/text/testing/text-form.testing';
|
|
270
265
|
export * from './src/app/shared/testing/observable.test';
|
|
271
266
|
export * from './src/app/shared/material/badge/badge.test';
|
|
@@ -30,7 +30,8 @@ export declare class UsersPage extends AppTable<Person, PersonFilter> implements
|
|
|
30
30
|
filterCriteriaCount: number;
|
|
31
31
|
set showUsernameColumn(value: boolean);
|
|
32
32
|
set showUsernameExtranetColumn(value: boolean);
|
|
33
|
-
|
|
33
|
+
sticky: boolean;
|
|
34
|
+
stickyEnd: boolean;
|
|
34
35
|
constructor(injector: Injector, formBuilder: UntypedFormBuilder, accountService: AccountService, validatorService: ValidatorService, configService: ConfigService, dataService: PersonService, messageService: MessageService, menuService: MenuService, cd: ChangeDetectorRef, environment: any);
|
|
35
36
|
filterExpansionPanel: MatExpansionPanel;
|
|
36
37
|
get firstUserColumn(): string;
|
|
@@ -42,5 +43,5 @@ export declare class UsersPage extends AppTable<Person, PersonFilter> implements
|
|
|
42
43
|
openComposeMessageModal(event?: Event): Promise<any>;
|
|
43
44
|
protected markForCheck(): void;
|
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<UsersPage, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UsersPage, "app-users-table", never, { "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UsersPage, "app-users-table", never, { "sticky": { "alias": "sticky"; "required": false; }; "stickyEnd": { "alias": "stickyEnd"; "required": false; }; }, {}, never, never, false, never>;
|
|
46
47
|
}
|
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
import { ModuleWithProviders } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "
|
|
4
|
-
import * as i2 from "
|
|
5
|
-
import * as i3 from "
|
|
6
|
-
import * as i4 from "
|
|
7
|
-
import * as i5 from "
|
|
8
|
-
import * as i6 from "
|
|
9
|
-
import * as i7 from "
|
|
10
|
-
import * as i8 from "
|
|
11
|
-
import * as i9 from "
|
|
12
|
-
import * as i10 from "./
|
|
13
|
-
import * as i11 from "./
|
|
14
|
-
import * as i12 from "./
|
|
15
|
-
import * as i13 from "./
|
|
16
|
-
import * as i14 from "./
|
|
17
|
-
import * as i15 from "./
|
|
18
|
-
import * as i16 from "./
|
|
19
|
-
import * as i17 from "./
|
|
20
|
-
import * as i18 from "./
|
|
21
|
-
import * as i19 from "./
|
|
22
|
-
import * as i20 from "./
|
|
23
|
-
import * as i21 from "./table/table.module";
|
|
24
|
-
import * as i22 from "./install/install-upgrade-card.module";
|
|
25
|
-
import * as i23 from "./offline/update-offline-mode-card.module";
|
|
3
|
+
import * as i1 from "../shared/shared.module";
|
|
4
|
+
import * as i2 from "@angular/router";
|
|
5
|
+
import * as i3 from "@angular/common/http";
|
|
6
|
+
import * as i4 from "ionic-cache";
|
|
7
|
+
import * as i5 from "@ionic/storage-angular";
|
|
8
|
+
import * as i6 from "./graphql/graphql.module";
|
|
9
|
+
import * as i7 from "./menu/menu.module";
|
|
10
|
+
import * as i8 from "./icon/icon.module";
|
|
11
|
+
import * as i9 from "./account/account.module";
|
|
12
|
+
import * as i10 from "./register/register.module";
|
|
13
|
+
import * as i11 from "./auth/auth.module";
|
|
14
|
+
import * as i12 from "./home/home.module";
|
|
15
|
+
import * as i13 from "./about/about.module";
|
|
16
|
+
import * as i14 from "./settings/settings.module";
|
|
17
|
+
import * as i15 from "./peer/select-peer.module";
|
|
18
|
+
import * as i16 from "./form/form.module";
|
|
19
|
+
import * as i17 from "./table/table.module";
|
|
20
|
+
import * as i18 from "./install/install-upgrade-card.module";
|
|
21
|
+
import * as i19 from "./offline/update-offline-mode-card.module";
|
|
22
|
+
import * as i20 from "./services/pipes/pipes.module";
|
|
26
23
|
export declare class CoreModule {
|
|
27
24
|
static forRoot(): ModuleWithProviders<CoreModule>;
|
|
28
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<CoreModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule,
|
|
26
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CoreModule, never, [typeof i1.SharedModule, typeof i2.RouterModule, typeof i3.HttpClientModule, typeof i4.CacheModule, typeof i5.IonicStorageModule, typeof i6.AppGraphQLModule, typeof i7.AppMenuModule, typeof i8.AppIconModule, typeof i9.AppAccountModule, typeof i10.AppRegisterModule, typeof i11.AppAuthModule, typeof i12.AppHomePageModule, typeof i13.AppAboutModalModule, typeof i14.AppSettingsPageModule, typeof i15.AppSelectPeerModule, typeof i16.AppFormModule, typeof i17.AppTableModule, typeof i18.AppInstallUpgradeCardModule, typeof i19.AppUpdateOfflineModeCardModule, typeof i20.CorePipesModule], [typeof i1.SharedModule, typeof i2.RouterModule, typeof i6.AppGraphQLModule, typeof i7.AppMenuModule, typeof i10.AppRegisterModule, typeof i11.AppAuthModule, typeof i12.AppHomePageModule, typeof i13.AppAboutModalModule, typeof i14.AppSettingsPageModule, typeof i8.AppIconModule, typeof i15.AppSelectPeerModule, typeof i16.AppFormModule, typeof i17.AppTableModule, typeof i18.AppInstallUpgradeCardModule, typeof i19.AppUpdateOfflineModeCardModule, typeof i20.CorePipesModule]>;
|
|
30
27
|
static ɵinj: i0.ɵɵInjectorDeclaration<CoreModule>;
|
|
31
28
|
}
|
|
@@ -289,7 +289,7 @@ export declare class AppFormArray<T extends Entity<T>, C extends AbstractControl
|
|
|
289
289
|
}): void;
|
|
290
290
|
removeAt(index: number, options?: {
|
|
291
291
|
emitEvent: boolean;
|
|
292
|
-
}):
|
|
292
|
+
}): boolean;
|
|
293
293
|
clearAt(index: number, options?: {
|
|
294
294
|
emitEvent: boolean;
|
|
295
295
|
}): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormFieldDefinition } from
|
|
1
|
+
import { FormFieldDefinition } from '../../../shared/form/field.model';
|
|
2
2
|
export declare const CORE_CONFIG_OPTIONS: Readonly<{
|
|
3
3
|
LOGO: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any>;
|
|
4
4
|
FAVICON: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any>;
|
|
@@ -39,7 +39,7 @@ export declare class ConfigService extends BaseGraphqlService<Configuration, any
|
|
|
39
39
|
query?: any;
|
|
40
40
|
variables?: any;
|
|
41
41
|
}): Promise<Configuration>;
|
|
42
|
-
canUserWrite(data: Configuration
|
|
42
|
+
canUserWrite(data: Configuration): boolean;
|
|
43
43
|
/**
|
|
44
44
|
* Save a configuration
|
|
45
45
|
*
|
|
@@ -50,8 +50,8 @@ export declare class ConfigService extends BaseGraphqlService<Configuration, any
|
|
|
50
50
|
clearCache(opts?: {
|
|
51
51
|
cacheName?: string;
|
|
52
52
|
}): Promise<true>;
|
|
53
|
-
delete(data: Configuration
|
|
54
|
-
listenChanges(id: number
|
|
53
|
+
delete(data: Configuration): Promise<any>;
|
|
54
|
+
listenChanges(id: number): Observable<Configuration | undefined>;
|
|
55
55
|
get optionDefs(): FormFieldDefinition[];
|
|
56
56
|
private loadOrRestoreLocally;
|
|
57
57
|
private restoreLocally;
|
|
@@ -26,7 +26,6 @@ export declare const APP_LOCAL_SETTINGS: InjectionToken<Partial<LocalSettings>>;
|
|
|
26
26
|
export declare const APP_LOCAL_SETTINGS_OPTIONS: InjectionToken<LocalSettingsOptions>;
|
|
27
27
|
export declare class LocalSettingsService extends StartableService<LocalSettings> {
|
|
28
28
|
private translate;
|
|
29
|
-
private platform;
|
|
30
29
|
private storage;
|
|
31
30
|
protected readonly environment: Environment;
|
|
32
31
|
private readonly defaultSettings;
|
|
@@ -41,7 +40,7 @@ export declare class LocalSettingsService extends StartableService<LocalSettings
|
|
|
41
40
|
get mobile(): boolean;
|
|
42
41
|
set mobile(value: boolean);
|
|
43
42
|
get pageHistory(): HistoryPageReference[];
|
|
44
|
-
constructor(
|
|
43
|
+
constructor(platform: Platform, translate: TranslateService, storage: Storage, environment: Environment, defaultSettings: LocalSettings, options: LocalSettingsOptions);
|
|
45
44
|
ngOnStart(): Promise<LocalSettings>;
|
|
46
45
|
isUsageMode(mode: UsageMode): boolean;
|
|
47
46
|
isOnFieldMode(value?: UsageMode): boolean;
|
|
@@ -66,7 +65,7 @@ export declare class LocalSettingsService extends StartableService<LocalSettings
|
|
|
66
65
|
}): Promise<void>;
|
|
67
66
|
getPageSettings<T = any>(pageId: string, propertyName?: string): T;
|
|
68
67
|
savePageSetting(pageId: string, value: any, propertyName?: string): Promise<void>;
|
|
69
|
-
getOfflineFeature(featureName: string): OfflineFeature
|
|
68
|
+
getOfflineFeature<F = any>(featureName: string): OfflineFeature<F>;
|
|
70
69
|
getOfflineFeatureLastSyncDate(featureName: string): Moment;
|
|
71
70
|
hasOfflineFeature(featureName?: string): boolean;
|
|
72
71
|
saveOfflineFeature(feature: OfflineFeature): void;
|
|
@@ -4,6 +4,7 @@ import { FilterFn } from '../../../shared/services/entity-service.class';
|
|
|
4
4
|
import { ObjectMap, ObjectMapEntry, PropertiesArray, PropertiesMap } from '../../../shared/types';
|
|
5
5
|
import { StoreObject } from '@apollo/client/core';
|
|
6
6
|
import { TreeItemEntityUtils } from './tree-item-entity.model';
|
|
7
|
+
import { SortDirection } from '@angular/material/sort';
|
|
7
8
|
export declare interface Cloneable<T> {
|
|
8
9
|
clone(): T;
|
|
9
10
|
}
|
|
@@ -54,8 +55,8 @@ export declare abstract class EntityUtils {
|
|
|
54
55
|
static fillLocalIds<T extends IEntity<T>>(items: T[], sequenceFactory: (firstEntity: T, incrementSize: number) => Promise<number>): Promise<void>;
|
|
55
56
|
static cleanIdAndUpdateDate<T extends IEntity<T>>(source: T): void;
|
|
56
57
|
static cleanIdsAndUpdateDates<T extends IEntity<T>>(items: T[]): void;
|
|
57
|
-
static sort<T extends IEntity<T> | any>(data: T[], sortBy?: string, sortDirection?:
|
|
58
|
-
static sortComparator<T extends IEntity<T> | any>(sortBy?: string, sortDirection?:
|
|
58
|
+
static sort<T extends IEntity<T> | any>(data: T[], sortBy?: string, sortDirection?: SortDirection): T[];
|
|
59
|
+
static sortComparator<T extends IEntity<T> | any>(sortBy?: string, sortDirection?: SortDirection): (a: T, b: T) => number;
|
|
59
60
|
static compare<T extends IEntity<any>>(value1: T, value2: T, direction: 1 | -1, checkAttribute?: keyof T): number;
|
|
60
61
|
static compareValue<T>(value1: T, value2: T, direction: 1 | -1): number;
|
|
61
62
|
static filter<T extends IEntity<T> | any>(data: T[], searchAttribute: string, searchText: string): T[];
|
|
@@ -6,10 +6,10 @@ export declare interface LocaleConfig extends Property {
|
|
|
6
6
|
country?: string;
|
|
7
7
|
}
|
|
8
8
|
export declare const APP_LOCALES: InjectionToken<LocaleConfig[]>;
|
|
9
|
-
export declare interface OfflineFeature {
|
|
9
|
+
export declare interface OfflineFeature<F = any> {
|
|
10
10
|
name: string;
|
|
11
11
|
lastSyncDate?: string;
|
|
12
|
-
filter?:
|
|
12
|
+
filter?: F;
|
|
13
13
|
}
|
|
14
14
|
export declare interface LocalSettings {
|
|
15
15
|
pages?: any;
|
|
@@ -2,7 +2,7 @@ import { PipeTransform } from '@angular/core';
|
|
|
2
2
|
import { Department } from '../model/department.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DepartmentToStringPipe implements PipeTransform {
|
|
5
|
-
transform(value: Department |
|
|
5
|
+
transform(value: Department | Department[], separator?: string): string;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DepartmentToStringPipe, never>;
|
|
7
7
|
static ɵpipe: i0.ɵɵPipeDeclaration<DepartmentToStringPipe, "departmentToString", false>;
|
|
8
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<DepartmentToStringPipe>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./usage-mode.pipes";
|
|
3
|
+
import * as i2 from "./person-to-string.pipe";
|
|
4
|
+
import * as i3 from "./account.pipes";
|
|
5
|
+
import * as i4 from "./department-to-string.pipe";
|
|
6
|
+
import * as i5 from "./referential-to-string.pipe";
|
|
7
|
+
export declare class CorePipesModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CorePipesModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CorePipesModule, [typeof i1.IsOnFieldPipe, typeof i1.IsOnDeskPipe, typeof i2.PersonToStringPipe, typeof i3.IsLoginAccountPipe, typeof i3.AccountToStringPipe, typeof i4.DepartmentToStringPipe, typeof i5.ReferentialToStringPipe], never, [typeof i1.IsOnFieldPipe, typeof i1.IsOnDeskPipe, typeof i2.PersonToStringPipe, typeof i3.IsLoginAccountPipe, typeof i3.AccountToStringPipe, typeof i4.DepartmentToStringPipe, typeof i5.ReferentialToStringPipe]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CorePipesModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { IReferentialRef, Referential, ReferentialRef } from '../model/referential.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ReferentialToStringPipe implements PipeTransform {
|
|
5
|
+
constructor();
|
|
6
|
+
transform(value: Referential | ReferentialRef | IReferentialRef | any, opts?: string[] | {
|
|
7
|
+
properties?: string[];
|
|
8
|
+
separator?: string;
|
|
9
|
+
}): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReferentialToStringPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReferentialToStringPipe, "referentialToString", false>;
|
|
12
|
+
}
|
|
@@ -8,6 +8,8 @@ export declare class ActionsColumnComponent implements OnInit, OnDestroy {
|
|
|
8
8
|
private cd;
|
|
9
9
|
columnDef: MatColumnDef;
|
|
10
10
|
matMenuTrigger: MatMenuTrigger;
|
|
11
|
+
matColumnDef: string;
|
|
12
|
+
style: 'table' | 'mat-table';
|
|
11
13
|
stickyEnd: boolean;
|
|
12
14
|
canCancel: boolean;
|
|
13
15
|
canConfirm: boolean;
|
|
@@ -44,5 +46,5 @@ export declare class ActionsColumnComponent implements OnInit, OnDestroy {
|
|
|
44
46
|
ngOnInit(): void;
|
|
45
47
|
ngOnDestroy(): void;
|
|
46
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionsColumnComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsColumnComponent, "app-actions-column", never, { "stickyEnd": { "alias": "stickyEnd"; "required": false; }; "canCancel": { "alias": "canCancel"; "required": false; }; "canConfirm": { "alias": "canConfirm"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "canBackward": { "alias": "canBackward"; "required": false; }; "canForward": { "alias": "canForward"; "required": false; }; "canConfirmAndAdd": { "alias": "canConfirmAndAdd"; "required": false; }; "dirtyIcon": { "alias": "dirtyIcon"; "required": false; }; "optionsTitle": { "alias": "optionsTitle"; "required": false; }; "classList": { "alias": "class"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; }, { "optionsClick": "optionsClick"; "cancelOrDeleteClick": "cancelOrDeleteClick"; "confirmEditCreateClick": "confirmEditCreateClick"; "confirmAndAddClick": "confirmAndAddClick"; "backward": "backward"; "forward": "forward"; }, never, ["[matHeader]", "[matFooter]"], false, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsColumnComponent, "app-actions-column", never, { "matColumnDef": { "alias": "matColumnDef"; "required": false; }; "style": { "alias": "style"; "required": false; }; "stickyEnd": { "alias": "stickyEnd"; "required": false; }; "canCancel": { "alias": "canCancel"; "required": false; }; "canConfirm": { "alias": "canConfirm"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "canBackward": { "alias": "canBackward"; "required": false; }; "canForward": { "alias": "canForward"; "required": false; }; "canConfirmAndAdd": { "alias": "canConfirmAndAdd"; "required": false; }; "dirtyIcon": { "alias": "dirtyIcon"; "required": false; }; "optionsTitle": { "alias": "optionsTitle"; "required": false; }; "classList": { "alias": "class"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; }, { "optionsClick": "optionsClick"; "cancelOrDeleteClick": "cancelOrDeleteClick"; "confirmEditCreateClick": "confirmEditCreateClick"; "confirmAndAddClick": "confirmAndAddClick"; "backward": "backward"; "forward": "forward"; }, never, ["[matHeader]", "[matFooter]", "[matHeader]", "[matFooter]"], false, never>;
|
|
48
50
|
}
|
|
@@ -7,7 +7,7 @@ export interface PromiseEventPayload<R = any> {
|
|
|
7
7
|
export type PromiseEvent<R = any, D = void> = CustomEvent<PromiseEventPayload<R> & D>;
|
|
8
8
|
export declare function createPromiseEventEmitter<R = any, D = void>(): EventEmitter<PromiseEvent<R, D>>;
|
|
9
9
|
export declare function createPromiseEvent<T = void, D = void>(eventType: string, promise: PromiseEventPayload<T>, initArg?: CustomEventInit<D>): PromiseEvent<T, D>;
|
|
10
|
-
export declare function emitPromiseEvent<
|
|
10
|
+
export declare function emitPromiseEvent<R = any, D = void>(emitter: EventEmitter<PromiseEvent<R, D>>, eventType: string, initArg?: CustomEventInit<D>): Promise<R>;
|
|
11
11
|
export interface CompletableEvent extends Event {
|
|
12
12
|
target: EventTarget & {
|
|
13
13
|
complete?: () => void;
|
|
@@ -13,11 +13,6 @@ export declare function isNotNilString(obj: any | null | undefined): obj is stri
|
|
|
13
13
|
export declare function isBlankString(obj: any | null | undefined): obj is string;
|
|
14
14
|
export declare function notNilOrDefault<T>(obj: T | null | undefined, defaultValue: T): T;
|
|
15
15
|
export declare function arraySize<T>(obj: T[] | null | undefined): number;
|
|
16
|
-
export declare function arrayGroupBy<T = any, K extends keyof T = any, M extends {
|
|
17
|
-
[key: string]: T[];
|
|
18
|
-
} = {
|
|
19
|
-
[key: string]: T[];
|
|
20
|
-
}>(obj: T[], key: keyof T): M;
|
|
21
16
|
/**
|
|
22
17
|
* Remove duplicated value, in array. Will compute a unique key (from given properties, or given function).
|
|
23
18
|
* If propertiesOrKeyFn is nil or undefined, will use all object properties
|
|
@@ -52,6 +47,12 @@ export declare function removeEnd(value: string, end: string): string;
|
|
|
52
47
|
* @param value
|
|
53
48
|
*/
|
|
54
49
|
export declare function changeCaseToUnderscore(value: string): string;
|
|
50
|
+
/**
|
|
51
|
+
* Replace underscore by a change case (.e.g 'MY_STRING' becomes 'MyString')
|
|
52
|
+
*
|
|
53
|
+
* @param value
|
|
54
|
+
*/
|
|
55
|
+
export declare function underscoreToChangeCase(value: string): string;
|
|
55
56
|
export declare function removeDiacritics(text: string): string;
|
|
56
57
|
export declare function suggestFromStringArray(values: string[], value: any, options?: {
|
|
57
58
|
searchAttribute?: string;
|
|
@@ -45,7 +45,7 @@ export declare class ColorScale {
|
|
|
45
45
|
static custom: (count: number, options?: ColorScaleOptions) => ColorScale;
|
|
46
46
|
static default(): ColorScale;
|
|
47
47
|
/**
|
|
48
|
-
* Create
|
|
48
|
+
* Create an array with the given color
|
|
49
49
|
**/
|
|
50
50
|
static fix(length?: number, colorName?: ColorName): any[];
|
|
51
51
|
private _min;
|
|
@@ -4,7 +4,7 @@ import { TableDataSource, TableElement } from '@e-is/ngx-material-table';
|
|
|
4
4
|
import { Environment } from '../../../../environments/environment.class';
|
|
5
5
|
import { ImageService } from '../image.service';
|
|
6
6
|
import { Image } from '../image.model';
|
|
7
|
-
import { AlertController, IonModal, IonPopover, Platform
|
|
7
|
+
import { AlertController, IonModal, IonPopover, Platform } from '@ionic/angular';
|
|
8
8
|
import { CollectionViewer, ListRange } from '@angular/cdk/collections';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import { AppColors } from '../../types';
|
|
@@ -21,24 +21,23 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
21
21
|
protected image: ImageService;
|
|
22
22
|
protected platform: Platform;
|
|
23
23
|
protected alterCtrl: AlertController;
|
|
24
|
-
protected popoverCtrl: PopoverController;
|
|
25
24
|
protected translate: TranslateService;
|
|
26
25
|
protected cd: ChangeDetectorRef;
|
|
27
26
|
protected _destroySubject: Subject<void>;
|
|
28
27
|
protected _renderChangeSubscription: Subscription;
|
|
29
28
|
protected _subscription: Subscription;
|
|
30
29
|
protected _dataSource: TableDataSource<T>;
|
|
31
|
-
protected _data
|
|
30
|
+
protected _data$: BehaviorSubject<readonly TableElement<T>[] | TableElement<T>[]>;
|
|
32
31
|
protected _colSize: number;
|
|
33
32
|
protected _selectedRowIndex: number;
|
|
34
33
|
protected _presentingElement: Element;
|
|
35
34
|
protected _titleForm: FormGroup;
|
|
36
35
|
protected _titleAutofocus: boolean;
|
|
37
36
|
protected _slidesSubscription: Subscription;
|
|
38
|
-
protected swiperModules: ((opts: any) => void)[];
|
|
39
37
|
protected _swiper: Swiper;
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
protected swiperModules: ((opts: any) => void)[];
|
|
39
|
+
protected zoomActive: boolean;
|
|
40
|
+
protected zoomScale: number;
|
|
42
41
|
viewChange: BehaviorSubject<ListRange>;
|
|
43
42
|
cardColor: string | PredefinedColors;
|
|
44
43
|
debug: boolean;
|
|
@@ -55,7 +54,7 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
55
54
|
set dataSource(dataSource: TableDataSource<T, any, any, any>);
|
|
56
55
|
get dataSource(): TableDataSource<T, any, any, any>;
|
|
57
56
|
get enabled(): boolean;
|
|
58
|
-
get rows(): TableElement<T>[]
|
|
57
|
+
get rows(): TableElement<T>[] | ReadonlyArray<TableElement<T>>;
|
|
59
58
|
get rowCount(): number;
|
|
60
59
|
get activeIndex(): number;
|
|
61
60
|
zoomModal: IonModal;
|
|
@@ -65,7 +64,8 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
65
64
|
rows: TableElement<T>[];
|
|
66
65
|
}>>;
|
|
67
66
|
onAfterAddRows: EventEmitter<TableElement<T>[]>;
|
|
68
|
-
|
|
67
|
+
onAfterEditRow: EventEmitter<TableElement<T>>;
|
|
68
|
+
constructor(image: ImageService, platform: Platform, alterCtrl: AlertController, translate: TranslateService, cd: ChangeDetectorRef, environment?: Environment);
|
|
69
69
|
ngOnInit(): void;
|
|
70
70
|
ngAfterContentChecked(): void;
|
|
71
71
|
ngOnDestroy(): void;
|
|
@@ -93,6 +93,6 @@ export declare class AppImageGalleryComponent<T extends Image> implements OnInit
|
|
|
93
93
|
interactive?: boolean;
|
|
94
94
|
}): Promise<boolean>;
|
|
95
95
|
protected markForCheck(): void;
|
|
96
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null,
|
|
97
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; }, never, never, false, never>;
|
|
96
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppImageGalleryComponent<any>, [null, null, null, null, null, { optional: true; }]>;
|
|
97
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppImageGalleryComponent<any>, "app-image-gallery", never, { "cardColor": { "alias": "cardColor"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "mobile": { "alias": "mobile"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "confirmBeforeDelete": { "alias": "confirmBeforeDelete"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "showFabButton": { "alias": "showFabButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "showAddCardButton": { "alias": "showAddCardButton"; "required": false; }; "addButtonColor": { "alias": "addButtonColor"; "required": false; }; "dataSource": { "alias": "dataSource"; "required": false; }; }, { "onBeforeDeleteRows": "onBeforeDeleteRows"; "onAfterAddRows": "onAfterAddRows"; "onAfterEditRow": "onAfterEditRow"; }, never, never, false, never>;
|
|
98
98
|
}
|
|
@@ -7,8 +7,9 @@ import * as i5 from "../../material/material.module";
|
|
|
7
7
|
import * as i6 from "../../pipes/pipes.module";
|
|
8
8
|
import * as i7 from "../../directives/directives.module";
|
|
9
9
|
import * as i8 from "@ngx-translate/core";
|
|
10
|
+
import * as i9 from "../../rx-state.module";
|
|
10
11
|
export declare class ImageGalleryModule {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageGalleryModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryModule, [typeof i1.AppImageGalleryComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.ReactiveFormsModule, typeof i5.SharedMaterialModule, typeof i6.SharedPipesModule, typeof i7.SharedDirectivesModule, typeof i8.TranslateModule], [typeof i3.IonicModule, typeof i8.TranslateModule, typeof i1.AppImageGalleryComponent]>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryModule, [typeof i1.AppImageGalleryComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.ReactiveFormsModule, typeof i5.SharedMaterialModule, typeof i6.SharedPipesModule, typeof i7.SharedDirectivesModule, typeof i8.TranslateModule, typeof i9.RxStateModule], [typeof i3.IonicModule, typeof i8.TranslateModule, typeof i1.AppImageGalleryComponent]>;
|
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<ImageGalleryModule>;
|
|
14
15
|
}
|
|
@@ -25,8 +25,8 @@ export declare class ImageAttachmentService extends StartableService implements
|
|
|
25
25
|
watchAll(offset: number, size: number, sortBy?: string, sortDirection?: SortDirection, filter?: ImageAttachmentFilter, opts?: EntitiesServiceWatchOptions & {
|
|
26
26
|
query?: any;
|
|
27
27
|
}): Observable<LoadResult<ImageAttachment>>;
|
|
28
|
-
saveAll(entities: ImageAttachment[]
|
|
29
|
-
deleteAll(entities: ImageAttachment[]
|
|
28
|
+
saveAll(entities: ImageAttachment[]): Promise<any[]>;
|
|
29
|
+
deleteAll(entities: ImageAttachment[]): Promise<any>;
|
|
30
30
|
asFilter(filter: any): ImageAttachmentFilter;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageAttachmentService, never>;
|
|
32
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<ImageAttachmentService>;
|
|
@@ -5,8 +5,9 @@ import * as i3 from "@ionic/angular";
|
|
|
5
5
|
import * as i4 from "../image-gallery.module";
|
|
6
6
|
import * as i5 from "@ngx-translate/core";
|
|
7
7
|
import * as i6 from "@angular/router";
|
|
8
|
+
import * as i7 from "../../../debug/debug.module";
|
|
8
9
|
export declare class ImageGalleryTestingModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageGalleryTestingModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryTestingModule, [typeof i1.GalleryTestPage], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.ImageGalleryModule, typeof i5.TranslateModule, typeof i6.RouterModule, typeof i5.TranslateModule], [typeof i6.RouterModule, typeof i1.GalleryTestPage]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ImageGalleryTestingModule, [typeof i1.GalleryTestPage], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.ImageGalleryModule, typeof i5.TranslateModule, typeof i6.RouterModule, typeof i5.TranslateModule, typeof i7.SharedDebugModule], [typeof i6.RouterModule, typeof i1.GalleryTestPage]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<ImageGalleryTestingModule>;
|
|
12
13
|
}
|
|
@@ -3,7 +3,7 @@ import { ControlValueAccessor, FormGroupDirective, UntypedFormControl } from '@a
|
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
4
|
import { SuggestFn } from '../../services/entity-service.class';
|
|
5
5
|
import { InputElement } from '../../inputs';
|
|
6
|
-
import { DisplayFn, EqualsFn
|
|
6
|
+
import { AppFloatLabelType, DisplayFn, EqualsFn } from '../../form/field.model';
|
|
7
7
|
import { MatFormFieldAppearance } from '@angular/material/form-field';
|
|
8
8
|
import { MatSelect } from '@angular/material/select';
|
|
9
9
|
import { MatAutocomplete, MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
@@ -33,8 +33,8 @@ export declare class MatBooleanField implements OnInit, ControlValueAccessor, In
|
|
|
33
33
|
onPressEnter: EventEmitter<any>;
|
|
34
34
|
onBlur: EventEmitter<FocusEvent>;
|
|
35
35
|
showRadio: boolean;
|
|
36
|
-
_value: boolean;
|
|
37
|
-
_tabindex: number;
|
|
36
|
+
protected _value: boolean;
|
|
37
|
+
protected _tabindex: number;
|
|
38
38
|
private _onChangeCallback;
|
|
39
39
|
private _onTouchedCallback;
|
|
40
40
|
private _writing;
|
|
@@ -34,13 +34,12 @@ import * as i32 from "./latlong/material.latlong.module";
|
|
|
34
34
|
import * as i33 from "./datetime/datetime.module";
|
|
35
35
|
import * as i34 from "./duration/duration.module";
|
|
36
36
|
import * as i35 from "./boolean/boolean.module";
|
|
37
|
-
import * as i36 from "./
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./
|
|
40
|
-
import * as i39 from "./
|
|
41
|
-
import * as i40 from "./text/text-form.module";
|
|
37
|
+
import * as i36 from "./swipe/swipe.module";
|
|
38
|
+
import * as i37 from "./chips/chips.module";
|
|
39
|
+
import * as i38 from "./badge/badge.module";
|
|
40
|
+
import * as i39 from "./text/text-form.module";
|
|
42
41
|
export declare class SharedMaterialModule {
|
|
43
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedMaterialModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedMaterialModule, never, [typeof i1.MatCommonModule, typeof i2.MatTableModule, typeof i3.MatSortModule, typeof i4.MatPaginatorModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.CdkTableModule, typeof i8.MatCheckboxModule, typeof i9.MatExpansionModule, typeof i10.MatToolbarModule, typeof i11.MatDialogModule, typeof i12.MatIconModule, typeof i13.MatButtonModule, typeof i14.MatMenuModule, typeof i15.MatSelectModule, typeof i16.MatCardModule, typeof i17.MatTabsModule, typeof i18.MatListModule, typeof i19.MatStepperModule, typeof i20.MatButtonToggleModule, typeof i21.MatProgressSpinnerModule, typeof i22.MatProgressBarModule, typeof i23.MatRadioModule, typeof i24.MatBadgeModule, typeof i25.MatSlideToggleModule, typeof i26.A11yModule, typeof i27.OverlayModule, typeof i28.ScrollingModule, typeof i1.MatRippleModule, typeof i29.MatDividerModule, typeof i30.MatTooltipModule, typeof i31.SharedMatAutocompleteModule, typeof i32.SharedMatLatLongModule, typeof i33.SharedMatDateTimeModule, typeof i34.SharedMatDurationModule, typeof i35.SharedMatBooleanModule, typeof i36.
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedMaterialModule, never, [typeof i1.MatCommonModule, typeof i2.MatTableModule, typeof i3.MatSortModule, typeof i4.MatPaginatorModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.CdkTableModule, typeof i8.MatCheckboxModule, typeof i9.MatExpansionModule, typeof i10.MatToolbarModule, typeof i11.MatDialogModule, typeof i12.MatIconModule, typeof i13.MatButtonModule, typeof i14.MatMenuModule, typeof i15.MatSelectModule, typeof i16.MatCardModule, typeof i17.MatTabsModule, typeof i18.MatListModule, typeof i19.MatStepperModule, typeof i20.MatButtonToggleModule, typeof i21.MatProgressSpinnerModule, typeof i22.MatProgressBarModule, typeof i23.MatRadioModule, typeof i24.MatBadgeModule, typeof i25.MatSlideToggleModule, typeof i26.A11yModule, typeof i27.OverlayModule, typeof i28.ScrollingModule, typeof i1.MatRippleModule, typeof i29.MatDividerModule, typeof i30.MatTooltipModule, typeof i31.SharedMatAutocompleteModule, typeof i32.SharedMatLatLongModule, typeof i33.SharedMatDateTimeModule, typeof i34.SharedMatDurationModule, typeof i35.SharedMatBooleanModule, typeof i36.SharedMatSwipeModule, typeof i37.SharedMatChipsModule, typeof i38.SharedBadgeModule, typeof i39.SharedTextFormModule], [typeof i1.MatCommonModule, typeof i2.MatTableModule, typeof i3.MatSortModule, typeof i4.MatPaginatorModule, typeof i5.MatFormFieldModule, typeof i6.MatInputModule, typeof i7.CdkTableModule, typeof i8.MatCheckboxModule, typeof i9.MatExpansionModule, typeof i10.MatToolbarModule, typeof i11.MatDialogModule, typeof i12.MatIconModule, typeof i13.MatButtonModule, typeof i14.MatMenuModule, typeof i15.MatSelectModule, typeof i16.MatCardModule, typeof i17.MatTabsModule, typeof i18.MatListModule, typeof i19.MatStepperModule, typeof i20.MatButtonToggleModule, typeof i21.MatProgressSpinnerModule, typeof i22.MatProgressBarModule, typeof i23.MatRadioModule, typeof i24.MatBadgeModule, typeof i25.MatSlideToggleModule, typeof i26.A11yModule, typeof i27.OverlayModule, typeof i28.ScrollingModule, typeof i1.MatRippleModule, typeof i29.MatDividerModule, typeof i30.MatTooltipModule, typeof i31.SharedMatAutocompleteModule, typeof i32.SharedMatLatLongModule, typeof i33.SharedMatDateTimeModule, typeof i34.SharedMatDurationModule, typeof i35.SharedMatBooleanModule, typeof i36.SharedMatSwipeModule, typeof i37.SharedMatChipsModule, typeof i38.SharedBadgeModule, typeof i39.SharedTextFormModule]>;
|
|
45
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedMaterialModule>;
|
|
46
45
|
}
|
|
@@ -8,23 +8,22 @@ import * as i5 from "./duration/testing/mat-duration.test";
|
|
|
8
8
|
import * as i6 from "./autocomplete/testing/autocomplete.test";
|
|
9
9
|
import * as i7 from "./boolean/testing/boolean.test.page";
|
|
10
10
|
import * as i8 from "./latlong/testing/latlong.test";
|
|
11
|
-
import * as i9 from "./
|
|
12
|
-
import * as i10 from "./
|
|
13
|
-
import * as i11 from "./
|
|
14
|
-
import * as i12 from "./
|
|
15
|
-
import * as i13 from "
|
|
16
|
-
import * as i14 from "
|
|
17
|
-
import * as i15 from "@angular
|
|
18
|
-
import * as i16 from "@
|
|
19
|
-
import * as i17 from "
|
|
20
|
-
import * as i18 from "
|
|
21
|
-
import * as i19 from "@
|
|
22
|
-
import * as i20 from "
|
|
23
|
-
import * as i21 from "
|
|
24
|
-
import * as i22 from "./badge/badge.module";
|
|
11
|
+
import * as i9 from "./text/testing/text-form.testing";
|
|
12
|
+
import * as i10 from "./swipe/testing/swipe.test";
|
|
13
|
+
import * as i11 from "./chips/testing/chips.test";
|
|
14
|
+
import * as i12 from "./badge/badge.test";
|
|
15
|
+
import * as i13 from "../testing/observable.test";
|
|
16
|
+
import * as i14 from "@angular/common";
|
|
17
|
+
import * as i15 from "@ionic/angular";
|
|
18
|
+
import * as i16 from "@angular/forms";
|
|
19
|
+
import * as i17 from "./material.module";
|
|
20
|
+
import * as i18 from "@ngx-translate/core";
|
|
21
|
+
import * as i19 from "@angular/router";
|
|
22
|
+
import * as i20 from "../pipes/pipes.module";
|
|
23
|
+
import * as i21 from "./badge/badge.module";
|
|
25
24
|
export declare const SHARED_MATERIAL_TESTING_PAGES: TestingPage[];
|
|
26
25
|
export declare class MaterialTestingModule {
|
|
27
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTestingModule, never>;
|
|
28
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialTestingModule, [typeof i1.MatCommonTestPage, typeof i2.DateTimeTestPage, typeof i3.DateTestPage, typeof i4.DateShortTestPage, typeof i5.DurationTestPage, typeof i6.AutocompleteTestPage, typeof i7.BooleanTestPage, typeof i8.LatLongTestPage, typeof i9.
|
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialTestingModule, [typeof i1.MatCommonTestPage, typeof i2.DateTimeTestPage, typeof i3.DateTestPage, typeof i4.DateShortTestPage, typeof i5.DurationTestPage, typeof i6.AutocompleteTestPage, typeof i7.BooleanTestPage, typeof i8.LatLongTestPage, typeof i9.TextFormTestingPage, typeof i10.SwipeTestPage, typeof i11.ChipsTestPage, typeof i12.MatBadgeTestPage, typeof i13.ObservableTestPage], [typeof i14.CommonModule, typeof i15.IonicModule, typeof i16.ReactiveFormsModule, typeof i17.SharedMaterialModule, typeof i18.TranslateModule, typeof i19.RouterModule, typeof i20.SharedPipesModule, typeof i21.SharedBadgeModule, typeof i16.FormsModule], [typeof i17.SharedMaterialModule, typeof i19.RouterModule, typeof i1.MatCommonTestPage, typeof i2.DateTimeTestPage, typeof i3.DateTestPage, typeof i4.DateShortTestPage, typeof i5.DurationTestPage, typeof i6.AutocompleteTestPage, typeof i7.BooleanTestPage, typeof i8.LatLongTestPage, typeof i9.TextFormTestingPage, typeof i10.SwipeTestPage, typeof i11.ChipsTestPage, typeof i12.MatBadgeTestPage, typeof i13.ObservableTestPage]>;
|
|
29
28
|
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialTestingModule>;
|
|
30
29
|
}
|
|
@@ -2,7 +2,7 @@ import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit } from '
|
|
|
2
2
|
import { ControlValueAccessor, FormGroupDirective, UntypedFormControl } from '@angular/forms';
|
|
3
3
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
4
4
|
import { InputElement, selectInputContent } from '../../inputs';
|
|
5
|
-
import { DisplayFn, EqualsFn
|
|
5
|
+
import { AppFloatLabelType, DisplayFn, EqualsFn } from '../../form/field.model';
|
|
6
6
|
import { Swiper } from 'swiper/types';
|
|
7
7
|
import { MatFormFieldAppearance } from '@angular/material/form-field';
|
|
8
8
|
import { MatButton } from '@angular/material/button';
|