@sumaris-net/ngx-components 18.11.0 → 18.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +24 -0
- package/.eslintrc.json +95 -0
- package/.gitattribute +1 -0
- package/.github/CONTRIBUTING.md +10 -0
- package/.github/ISSUE_TEMPLATE.md +6 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +10 -0
- package/.github/github_disclaimer.md +14 -0
- package/.gitlab-ci.yml +46 -0
- package/.graphqlconfig +15 -0
- package/.prettierignore +9 -0
- package/.prettierrc.json +17 -0
- package/angular.json +236 -0
- package/capacitor.config.ts +49 -0
- package/doc/changelog.md +4 -0
- package/graphql.config.yml +13 -0
- package/ionic.config.json +7 -0
- package/karma.conf.js +38 -0
- package/ng-package.json +21 -0
- package/ngcc.config.js +9 -0
- package/package.json +132 -19
- package/public_api.ts +426 -0
- package/resources/README.md +7 -0
- package/resources/icon/TODO.md +11 -0
- package/resources/icon.png +0 -0
- package/resources/icon.png.md5 +1 -0
- package/resources/icon.xcf +0 -0
- package/resources/ios/icon/icon-1024.png +0 -0
- package/resources/ios/icon/icon-108@2x.png +0 -0
- package/resources/ios/icon/icon-20.png +0 -0
- package/resources/ios/icon/icon-20@2x.png +0 -0
- package/resources/ios/icon/icon-20@3x.png +0 -0
- package/resources/ios/icon/icon-24@2x.png +0 -0
- package/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/resources/ios/icon/icon-29.png +0 -0
- package/resources/ios/icon/icon-29@2x.png +0 -0
- package/resources/ios/icon/icon-29@3x.png +0 -0
- package/resources/ios/icon/icon-40.png +0 -0
- package/resources/ios/icon/icon-40@2x.png +0 -0
- package/resources/ios/icon/icon-40@3x.png +0 -0
- package/resources/ios/icon/icon-44@2x.png +0 -0
- package/resources/ios/icon/icon-50.png +0 -0
- package/resources/ios/icon/icon-50@2x.png +0 -0
- package/resources/ios/icon/icon-60.png +0 -0
- package/resources/ios/icon/icon-60@2x.png +0 -0
- package/resources/ios/icon/icon-60@3x.png +0 -0
- package/resources/ios/icon/icon-72.png +0 -0
- package/resources/ios/icon/icon-72@2x.png +0 -0
- package/resources/ios/icon/icon-76.png +0 -0
- package/resources/ios/icon/icon-76@2x.png +0 -0
- package/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/resources/ios/icon/icon-86@2x.png +0 -0
- package/resources/ios/icon/icon-98@2x.png +0 -0
- package/resources/ios/icon/icon-small.png +0 -0
- package/resources/ios/icon/icon-small@2x.png +0 -0
- package/resources/ios/icon/icon-small@3x.png +0 -0
- package/resources/ios/icon/icon.png +0 -0
- package/resources/ios/icon/icon@2x.png +0 -0
- package/resources/ios/splash/Default-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-2436h.png +0 -0
- package/resources/ios/splash/Default-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/resources/ios/splash/Default-667h.png +0 -0
- package/resources/ios/splash/Default-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/resources/ios/splash/Default-Landscape-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/resources/ios/splash/Default~iphone.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash.png.md5 +1 -0
- package/scripts/build-android.sh +18 -0
- package/scripts/docker-start.sh +6 -0
- package/scripts/emulate-android.sh +17 -0
- package/scripts/env-android.sh +83 -0
- package/scripts/env-clean.sh +23 -0
- package/scripts/env-global.sh +154 -0
- package/scripts/install-android-sdk-tools.sh +73 -0
- package/scripts/ionic-update.sh +24 -0
- package/scripts/node/build-i18n.js +37 -0
- package/scripts/node/playground.ts +9 -0
- package/scripts/node/resources.js +108 -0
- package/scripts/release.sh +162 -0
- package/scripts/run-android.sh +59 -0
- package/scripts/test.sh +19 -0
- package/src/app/admin/admin-routing.module.ts +26 -0
- package/src/app/admin/admin.module.ts +20 -0
- package/src/app/admin/services/filter/person.filter.ts +86 -0
- package/src/app/admin/services/person.service.ts +244 -0
- package/src/app/admin/services/validator/person.validator.ts +86 -0
- package/src/app/admin/users/users.html +613 -0
- package/src/app/admin/users/users.module.ts +32 -0
- package/src/app/admin/users/users.scss +80 -0
- package/src/app/admin/users/users.ts +387 -0
- package/src/app/app-routing.module.ts +165 -0
- package/src/app/app.component.html +14 -0
- package/src/app/app.component.scss +4 -0
- package/src/app/app.component.ts +252 -0
- package/src/app/app.module.ts +355 -0
- package/src/app/core/about/about.modal.html +145 -0
- package/src/app/core/about/about.modal.scss +22 -0
- package/src/app/core/about/about.modal.ts +69 -0
- package/src/app/core/about/about.module.ts +14 -0
- package/src/app/core/account/account.module.ts +43 -0
- package/src/app/core/account/account.page.html +329 -0
- package/src/app/core/account/account.page.scss +20 -0
- package/src/app/core/account/account.page.ts +389 -0
- package/src/app/core/account/new-token.form.html +90 -0
- package/src/app/core/account/new-token.form.ts +99 -0
- package/src/app/core/account/new-token.modal.html +52 -0
- package/src/app/core/account/new-token.modal.ts +68 -0
- package/src/app/core/account/password/change-password.form.html +62 -0
- package/src/app/core/account/password/change-password.form.scss +0 -0
- package/src/app/core/account/password/change-password.form.ts +58 -0
- package/src/app/core/account/password/change-password.module.ts +14 -0
- package/src/app/core/account/password/change-password.page.html +41 -0
- package/src/app/core/account/password/change-password.page.scss +49 -0
- package/src/app/core/account/password/change-password.page.ts +158 -0
- package/src/app/core/account/token.table.html +160 -0
- package/src/app/core/account/token.table.scss +7 -0
- package/src/app/core/account/token.table.ts +160 -0
- package/src/app/core/auth/auth.form.html +108 -0
- package/src/app/core/auth/auth.form.scss +0 -0
- package/src/app/core/auth/auth.form.ts +165 -0
- package/src/app/core/auth/auth.modal.html +50 -0
- package/src/app/core/auth/auth.modal.scss +0 -0
- package/src/app/core/auth/auth.modal.ts +78 -0
- package/src/app/core/auth/auth.module.ts +35 -0
- package/src/app/core/auth/reset-password.modal.html +59 -0
- package/src/app/core/auth/reset-password.modal.ts +83 -0
- package/src/app/core/core.module.ts +72 -0
- package/src/app/core/core.testing.module.ts +80 -0
- package/src/app/core/form/array/form-array.ts +409 -0
- package/src/app/core/form/array/testing/form-array-test.module.ts +15 -0
- package/src/app/core/form/array/testing/form-array.test.html +196 -0
- package/src/app/core/form/array/testing/form-array.test.ts +119 -0
- package/src/app/core/form/buttons/form-buttons-bar.component.html +82 -0
- package/src/app/core/form/buttons/form-buttons-bar.component.scss +19 -0
- package/src/app/core/form/buttons/form-buttons-bar.component.ts +89 -0
- package/src/app/core/form/buttons/form-buttons-bar.module.ts +20 -0
- package/src/app/core/form/entity/editor.class.ts +295 -0
- package/src/app/core/form/entity/entity-editor-modal.class.ts +494 -0
- package/src/app/core/form/entity/entity-editor.class.ts +894 -0
- package/src/app/core/form/entity/entity-metadata.component.html +57 -0
- package/src/app/core/form/entity/entity-metadata.component.scss +40 -0
- package/src/app/core/form/entity/entity-metadata.component.ts +18 -0
- package/src/app/core/form/entity/entity.module.ts +20 -0
- package/src/app/core/form/entity/tab-editor.class.ts +224 -0
- package/src/app/core/form/form-container.class.ts +380 -0
- package/src/app/core/form/form.class.ts +377 -0
- package/src/app/core/form/form.module.ts +38 -0
- package/src/app/core/form/form.utils.ts +305 -0
- package/src/app/core/form/list/list.form.html +68 -0
- package/src/app/core/form/list/list.form.scss +40 -0
- package/src/app/core/form/list/list.form.ts +266 -0
- package/src/app/core/form/list/list.module.ts +20 -0
- package/src/app/core/form/properties/properties.form.html +160 -0
- package/src/app/core/form/properties/properties.form.scss +21 -0
- package/src/app/core/form/properties/properties.form.ts +331 -0
- package/src/app/core/form/properties/properties.module.ts +24 -0
- package/src/app/core/form/properties/properties.table.html +228 -0
- package/src/app/core/form/properties/properties.table.scss +0 -0
- package/src/app/core/form/properties/properties.table.ts +275 -0
- package/src/app/core/form/properties/properties.utils.ts +391 -0
- package/src/app/core/form/properties/property.validator.ts +82 -0
- package/src/app/core/form/properties/testing/properties-form.test.html +23 -0
- package/src/app/core/form/properties/testing/properties-form.test.ts +109 -0
- package/src/app/core/form/properties/testing/properties-form.testing.module.ts +14 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.html +50 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.ts +21 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.ts +76 -0
- package/src/app/core/form/text-popover/text-popover.component.html +89 -0
- package/src/app/core/form/text-popover/text-popover.component.scss +7 -0
- package/src/app/core/form/text-popover/text-popover.component.ts +176 -0
- package/src/app/core/form/text-popover/text-popover.module.ts +19 -0
- package/src/app/core/form/username/username.form.html +27 -0
- package/src/app/core/form/username/username.form.ts +44 -0
- package/src/app/core/form/username/username.module.ts +12 -0
- package/src/app/core/graphql/graphql.module.ts +7 -0
- package/src/app/core/graphql/graphql.service.ts +962 -0
- package/src/app/core/graphql/graphql.utils.ts +166 -0
- package/src/app/core/home/home.html +295 -0
- package/src/app/core/home/home.module.ts +27 -0
- package/src/app/core/home/home.scss +279 -0
- package/src/app/core/home/home.ts +422 -0
- package/src/app/core/icon/icon.component.html +19 -0
- package/src/app/core/icon/icon.component.ts +22 -0
- package/src/app/core/icon/icon.module.ts +13 -0
- package/src/app/core/install/install-upgrade-card.component.html +144 -0
- package/src/app/core/install/install-upgrade-card.component.scss +3 -0
- package/src/app/core/install/install-upgrade-card.component.ts +445 -0
- package/src/app/core/install/install-upgrade-card.module.ts +18 -0
- package/src/app/core/menu/menu.component.html +219 -0
- package/src/app/core/menu/menu.component.scss +304 -0
- package/src/app/core/menu/menu.component.ts +251 -0
- package/src/app/core/menu/menu.filter.ts +28 -0
- package/src/app/core/menu/menu.model.ts +356 -0
- package/src/app/core/menu/menu.module.ts +27 -0
- package/src/app/core/menu/menu.service.ts +727 -0
- package/src/app/core/menu/sub-menu-tab.directive.ts +99 -0
- package/src/app/core/menu/testing/menu-other.testing.ts +57 -0
- package/src/app/core/menu/testing/menu.testing.html +143 -0
- package/src/app/core/menu/testing/menu.testing.module.ts +52 -0
- package/src/app/core/menu/testing/menu.testing.scss +5 -0
- package/src/app/core/menu/testing/menu.testing.ts +175 -0
- package/src/app/core/offline/update-offline-mode-card.component.html +39 -0
- package/src/app/core/offline/update-offline-mode-card.component.scss +3 -0
- package/src/app/core/offline/update-offline-mode-card.component.ts +23 -0
- package/src/app/core/offline/update-offline-mode-card.module.ts +20 -0
- package/src/app/core/peer/select-peer.modal.html +317 -0
- package/src/app/core/peer/select-peer.modal.scss +41 -0
- package/src/app/core/peer/select-peer.modal.ts +366 -0
- package/src/app/core/peer/select-peer.module.ts +23 -0
- package/src/app/core/register/register-confirm.page.html +51 -0
- package/src/app/core/register/register-confirm.page.scss +56 -0
- package/src/app/core/register/register-confirm.page.ts +90 -0
- package/src/app/core/register/register.form.html +143 -0
- package/src/app/core/register/register.form.scss +10 -0
- package/src/app/core/register/register.form.ts +218 -0
- package/src/app/core/register/register.modal.html +66 -0
- package/src/app/core/register/register.modal.ts +50 -0
- package/src/app/core/register/register.module.ts +15 -0
- package/src/app/core/services/account.service.ts +1567 -0
- package/src/app/core/services/auth-guard.service.ts +70 -0
- package/src/app/core/services/base-entity-service.class.ts +659 -0
- package/src/app/core/services/base-graphql-service.class.ts +319 -0
- package/src/app/core/services/base58.ts +90 -0
- package/src/app/core/services/config/core.config.ts +263 -0
- package/src/app/core/services/config.service.ts +425 -0
- package/src/app/core/services/crypto.service.ts +126 -0
- package/src/app/core/services/errors.ts +80 -0
- package/src/app/core/services/local-settings.service.spec.ts +39 -0
- package/src/app/core/services/local-settings.service.ts +605 -0
- package/src/app/core/services/model/account.model.ts +188 -0
- package/src/app/core/services/model/config.model.ts +116 -0
- package/src/app/core/services/model/department.model.ts +34 -0
- package/src/app/core/services/model/entity.decorators.ts +110 -0
- package/src/app/core/services/model/entity.model.ts +409 -0
- package/src/app/core/services/model/filter.model.ts +127 -0
- package/src/app/core/services/model/history.model.ts +25 -0
- package/src/app/core/services/model/model.enum.ts +10 -0
- package/src/app/core/services/model/node-feature.model.ts +31 -0
- package/src/app/core/services/model/peer.model.ts +119 -0
- package/src/app/core/services/model/person.model.ts +122 -0
- package/src/app/core/services/model/referential.model.ts +253 -0
- package/src/app/core/services/model/settings.model.ts +37 -0
- package/src/app/core/services/model/token.model.ts +60 -0
- package/src/app/core/services/model/tree-item-entity.model.ts +230 -0
- package/src/app/core/services/network.service.spec.ts +47 -0
- package/src/app/core/services/network.service.ts +761 -0
- package/src/app/core/services/network.types.ts +7 -0
- package/src/app/core/services/network.utils.ts +83 -0
- package/src/app/core/services/pipes/account.pipes.ts +22 -0
- package/src/app/core/services/pipes/department-to-string.pipe.ts +13 -0
- package/src/app/core/services/pipes/person-to-string.pipe.ts +13 -0
- package/src/app/core/services/pipes/pipes.module.ts +30 -0
- package/src/app/core/services/pipes/referential-to-string.pipe.ts +18 -0
- package/src/app/core/services/pipes/usage-mode.pipes.ts +23 -0
- package/src/app/core/services/platform.service.spec.ts +50 -0
- package/src/app/core/services/platform.service.ts +694 -0
- package/src/app/core/services/storage/entities-storage.service.ts +557 -0
- package/src/app/core/services/storage/entity-store.class.ts +589 -0
- package/src/app/core/services/testing/local-settings.config.ts +35 -0
- package/src/app/core/services/testing/referential-filter.model.ts +28 -0
- package/src/app/core/services/testing/referential.validator.ts +58 -0
- package/src/app/core/services/testing/user-settings.config.ts +77 -0
- package/src/app/core/services/validator/account.validator.ts +50 -0
- package/src/app/core/services/validator/base.validator.class.ts +51 -0
- package/src/app/core/services/validator/local-settings.validator.ts +59 -0
- package/src/app/core/services/validator/user-settings.validator.ts +22 -0
- package/src/app/core/services/validator/user-token.validator.ts +54 -0
- package/src/app/core/settings/settings.module.ts +15 -0
- package/src/app/core/settings/settings.page.html +300 -0
- package/src/app/core/settings/settings.page.ts +455 -0
- package/src/app/core/table/async-table.class.ts +2019 -0
- package/src/app/core/table/column/actions-column.component.html +219 -0
- package/src/app/core/table/column/actions-column.component.scss +17 -0
- package/src/app/core/table/column/actions-column.component.ts +83 -0
- package/src/app/core/table/column/nav-actions-column.component.html +119 -0
- package/src/app/core/table/column/nav-actions-column.component.ts +108 -0
- package/src/app/core/table/column/row-field.component.html +43 -0
- package/src/app/core/table/column/row-field.component.scss +0 -0
- package/src/app/core/table/column/row-field.component.ts +63 -0
- package/src/app/core/table/entities-async-table-datasource.class.ts +501 -0
- package/src/app/core/table/entities-table-datasource.class.ts +499 -0
- package/src/app/core/table/memory-table.class.ts +56 -0
- package/src/app/core/table/table-select-columns.component.html +56 -0
- package/src/app/core/table/table-select-columns.component.ts +49 -0
- package/src/app/core/table/table.class.ts +2080 -0
- package/src/app/core/table/table.model.ts +39 -0
- package/src/app/core/table/table.module.ts +28 -0
- package/src/app/core/table/table.pipes.ts +87 -0
- package/src/app/core/table/table.utils.ts +42 -0
- package/src/app/core/table/testing/multi-table.testing.html +456 -0
- package/src/app/core/table/testing/multi-table.testing.ts +263 -0
- package/src/app/core/table/testing/table-validator.service.ts +29 -0
- package/src/app/core/table/testing/table.testing.html +556 -0
- package/src/app/core/table/testing/table.testing.module.ts +16 -0
- package/src/app/core/table/testing/table.testing.scss +32 -0
- package/src/app/core/table/testing/table.testing.ts +329 -0
- package/src/app/core/table/testing/table2-validator.service.ts +19 -0
- package/src/app/core/table/testing/table2.testing.html +470 -0
- package/src/app/core/table/testing/table2.testing.scss +25 -0
- package/src/app/core/table/testing/table2.testing.ts +274 -0
- package/src/app/shared/alerts.ts +296 -0
- package/src/app/shared/audio/audio.testing.html +29 -0
- package/src/app/shared/audio/audio.testing.module.ts +21 -0
- package/src/app/shared/audio/audio.testing.ts +27 -0
- package/src/app/shared/audio/audio.ts +273 -0
- package/src/app/shared/base64.utils.ts +66 -0
- package/src/app/shared/capacitor/keyboard.ts +38 -0
- package/src/app/shared/capacitor/plugins.ts +12 -0
- package/src/app/shared/constants.ts +19 -0
- package/src/app/shared/dates.ts +206 -0
- package/src/app/shared/debug/debug-service.class.ts +7 -0
- package/src/app/shared/debug/debug.component.html +13 -0
- package/src/app/shared/debug/debug.component.scss +21 -0
- package/src/app/shared/debug/debug.component.spec.ts +24 -0
- package/src/app/shared/debug/debug.component.ts +25 -0
- package/src/app/shared/debug/debug.module.ts +14 -0
- package/src/app/shared/directives/autofocus.directive.ts +93 -0
- package/src/app/shared/directives/autoresize.directive.ts +67 -0
- package/src/app/shared/directives/autotitle.directive.ts +17 -0
- package/src/app/shared/directives/directives.module.ts +16 -0
- package/src/app/shared/directives/drag-and-drop.directive.ts +46 -0
- package/src/app/shared/directives/ng-var.directive.ts +31 -0
- package/src/app/shared/directives/resizable/resizable.component.ts +48 -0
- package/src/app/shared/directives/resizable/resizable.directive.ts +43 -0
- package/src/app/shared/directives/resizable/resizable.module.ts +9 -0
- package/src/app/shared/directives/resizable/resizable.style.scss +37 -0
- package/src/app/shared/directives/resizable/resizable.template.html +6 -0
- package/src/app/shared/directives/throttled-click.directive.ts +36 -0
- package/src/app/shared/events.ts +93 -0
- package/src/app/shared/file/csv.utils.ts +123 -0
- package/src/app/shared/file/file.service.ts +129 -0
- package/src/app/shared/file/file.utils.ts +142 -0
- package/src/app/shared/file/images.utils.ts +214 -0
- package/src/app/shared/file/json.utils.ts +82 -0
- package/src/app/shared/file/uri.utils.ts +31 -0
- package/src/app/shared/file/url.utils.ts +163 -0
- package/src/app/shared/focusable.ts +8 -0
- package/src/app/shared/form/field.component.html +380 -0
- package/src/app/shared/form/field.component.scss +7 -0
- package/src/app/shared/form/field.component.ts +344 -0
- package/src/app/shared/form/field.model.ts +158 -0
- package/src/app/shared/form/loading-spinner.ts +16 -0
- package/src/app/shared/forms.ts +577 -0
- package/src/app/shared/functions.spec.ts +197 -0
- package/src/app/shared/functions.ts +694 -0
- package/src/app/shared/geolocation/geolocation.utils.ts +105 -0
- package/src/app/shared/gesture/gesture-config.ts +43 -0
- package/src/app/shared/gesture/hammer.utils.ts +14 -0
- package/src/app/shared/graph/colors.utils.ts +69 -0
- package/src/app/shared/graph/graph-colors.ts +270 -0
- package/src/app/shared/guard/component-dirty.guard.ts +67 -0
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.html +11 -0
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.scss +37 -0
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.ts +14 -0
- package/src/app/shared/hotkeys/hotkeys.service.ts +165 -0
- package/src/app/shared/hotkeys/shared-hotkeys.module.ts +15 -0
- package/src/app/shared/http/http.utils.ts +95 -0
- package/src/app/shared/image/gallery/image-gallery.component.html +282 -0
- package/src/app/shared/image/gallery/image-gallery.component.scss +218 -0
- package/src/app/shared/image/gallery/image-gallery.component.ts +434 -0
- package/src/app/shared/image/gallery/image-gallery.module.ts +35 -0
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.ts +23 -0
- package/src/app/shared/image/gallery/testing/gallery.service.testing.ts +99 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.html +27 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.module.ts +39 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.ts +34 -0
- package/src/app/shared/image/image.model.ts +8 -0
- package/src/app/shared/image/image.module.ts +12 -0
- package/src/app/shared/image/image.service.ts +111 -0
- package/src/app/shared/image/image.testing.module.ts +16 -0
- package/src/app/shared/inputs.ts +330 -0
- package/src/app/shared/interceptors/progess.interceptor.ts +24 -0
- package/src/app/shared/logging/log-level.model.ts +53 -0
- package/src/app/shared/logging/logger.model.ts +117 -0
- package/src/app/shared/logging/logging-service.class.ts +131 -0
- package/src/app/shared/logging/logging-service.config.ts +29 -0
- package/src/app/shared/logging/logging-service.module.ts +19 -0
- package/src/app/shared/markdown/markdown.component.html +55 -0
- package/src/app/shared/markdown/markdown.component.scss +75 -0
- package/src/app/shared/markdown/markdown.component.ts +350 -0
- package/src/app/shared/markdown/markdown.directive.ts +28 -0
- package/src/app/shared/markdown/markdown.modal.html +42 -0
- package/src/app/shared/markdown/markdown.modal.ts +91 -0
- package/src/app/shared/markdown/markdown.module.ts +65 -0
- package/src/app/shared/markdown/markdown.service.ts +234 -0
- package/src/app/shared/markdown/markdown.utils.ts +90 -0
- package/src/app/shared/markdown/testing/markdown.test.html +50 -0
- package/src/app/shared/markdown/testing/markdown.test.ts +49 -0
- package/src/app/shared/markdown/testing/markdown.testing.module.ts +22 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.config.ts +127 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.html +400 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.module.ts +41 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.scss +54 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.ts +1375 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.ts +21 -0
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.html +1164 -0
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.spec.ts +33 -0
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.ts +272 -0
- package/src/app/shared/material/badge/badge.directive.ts +217 -0
- package/src/app/shared/material/badge/badge.module.ts +12 -0
- package/src/app/shared/material/badge/badge.test.html +275 -0
- package/src/app/shared/material/badge/badge.test.ts +34 -0
- package/src/app/shared/material/boolean/boolean.module.ts +36 -0
- package/src/app/shared/material/boolean/material.boolean.html +271 -0
- package/src/app/shared/material/boolean/material.boolean.scss +27 -0
- package/src/app/shared/material/boolean/material.boolean.ts +343 -0
- package/src/app/shared/material/boolean/testing/boolean.test.page.html +469 -0
- package/src/app/shared/material/boolean/testing/boolean.test.page.ts +66 -0
- package/src/app/shared/material/chips/chips.module.ts +38 -0
- package/src/app/shared/material/chips/material.chips.html +233 -0
- package/src/app/shared/material/chips/material.chips.scss +67 -0
- package/src/app/shared/material/chips/material.chips.ts +834 -0
- package/src/app/shared/material/chips/testing/chips.test.html +207 -0
- package/src/app/shared/material/chips/testing/chips.test.ts +169 -0
- package/src/app/shared/material/datetime/datetime.module.ts +42 -0
- package/src/app/shared/material/datetime/material.date.html +186 -0
- package/src/app/shared/material/datetime/material.date.scss +17 -0
- package/src/app/shared/material/datetime/material.date.ts +512 -0
- package/src/app/shared/material/datetime/material.dateshort.html +194 -0
- package/src/app/shared/material/datetime/material.dateshort.scss +23 -0
- package/src/app/shared/material/datetime/material.dateshort.ts +497 -0
- package/src/app/shared/material/datetime/material.datetime.html +325 -0
- package/src/app/shared/material/datetime/material.datetime.scss +87 -0
- package/src/app/shared/material/datetime/material.datetime.ts +758 -0
- package/src/app/shared/material/datetime/testing/mat-date-time.test.html +794 -0
- package/src/app/shared/material/datetime/testing/mat-date-time.test.ts +155 -0
- package/src/app/shared/material/datetime/testing/mat-date.test.html +564 -0
- package/src/app/shared/material/datetime/testing/mat-date.test.ts +145 -0
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.html +530 -0
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.ts +133 -0
- package/src/app/shared/material/duration/duration.module.ts +33 -0
- package/src/app/shared/material/duration/duration.utils.ts +18 -0
- package/src/app/shared/material/duration/material.duration.html +116 -0
- package/src/app/shared/material/duration/material.duration.scss +28 -0
- package/src/app/shared/material/duration/material.duration.ts +308 -0
- package/src/app/shared/material/duration/testing/mat-duration.test.html +170 -0
- package/src/app/shared/material/duration/testing/mat-duration.test.ts +88 -0
- package/src/app/shared/material/latlong/latlong.utils.ts +376 -0
- package/src/app/shared/material/latlong/material.latlong-input.html +95 -0
- package/src/app/shared/material/latlong/material.latlong-input.scss +66 -0
- package/src/app/shared/material/latlong/material.latlong-input.ts +445 -0
- package/src/app/shared/material/latlong/material.latlong.html +90 -0
- package/src/app/shared/material/latlong/material.latlong.module.ts +37 -0
- package/src/app/shared/material/latlong/material.latlong.scss +0 -0
- package/src/app/shared/material/latlong/material.latlong.ts +203 -0
- package/src/app/shared/material/latlong/testing/latlong.test.html +1008 -0
- package/src/app/shared/material/latlong/testing/latlong.test.ts +144 -0
- package/src/app/shared/material/material.animations.ts +269 -0
- package/src/app/shared/material/material.config.ts +5 -0
- package/src/app/shared/material/material.module.ts +94 -0
- package/src/app/shared/material/material.testing.module.ts +192 -0
- package/src/app/shared/material/memory/memory.utils.ts +57 -0
- package/src/app/shared/material/numpad/numpad.animation.ts +1 -0
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.ts +110 -0
- package/src/app/shared/material/numpad/numpad.component.ts +73 -0
- package/src/app/shared/material/numpad/numpad.container.html +37 -0
- package/src/app/shared/material/numpad/numpad.container.scss +55 -0
- package/src/app/shared/material/numpad/numpad.container.ts +152 -0
- package/src/app/shared/material/numpad/numpad.content.html +13 -0
- package/src/app/shared/material/numpad/numpad.content.ts +10 -0
- package/src/app/shared/material/numpad/numpad.directive.ts +159 -0
- package/src/app/shared/material/numpad/numpad.dom-service.ts +35 -0
- package/src/app/shared/material/numpad/numpad.model.ts +53 -0
- package/src/app/shared/material/numpad/numpad.module.ts +18 -0
- package/src/app/shared/material/numpad/testing/numpad.test.html +146 -0
- package/src/app/shared/material/numpad/testing/numpad.test.ts +44 -0
- package/src/app/shared/material/paginator/material.paginator-i18n.ts +47 -0
- package/src/app/shared/material/stepper/material.stepper-i18n.ts +17 -0
- package/src/app/shared/material/swipe/material.swipe.html +85 -0
- package/src/app/shared/material/swipe/material.swipe.scss +55 -0
- package/src/app/shared/material/swipe/material.swipe.ts +366 -0
- package/src/app/shared/material/swipe/swipe.module.ts +29 -0
- package/src/app/shared/material/swipe/testing/swipe.test.html +112 -0
- package/src/app/shared/material/swipe/testing/swipe.test.ts +74 -0
- package/src/app/shared/material/test/test-component.css +22 -0
- package/src/app/shared/material/test/test-component.html +40 -0
- package/src/app/shared/material/test/test-component.ts +295 -0
- package/src/app/shared/material/testing/common.test.html +227 -0
- package/src/app/shared/material/testing/common.test.ts +126 -0
- package/src/app/shared/material/text/testing/text-form.testing.html +213 -0
- package/src/app/shared/material/text/testing/text-form.testing.ts +30 -0
- package/src/app/shared/material/text/text-form.component.html +63 -0
- package/src/app/shared/material/text/text-form.component.scss +8 -0
- package/src/app/shared/material/text/text-form.component.ts +177 -0
- package/src/app/shared/material/text/text-form.module.ts +36 -0
- package/src/app/shared/modules.ts +12 -0
- package/src/app/shared/named-filter/named-filter-selector.component.html +77 -0
- package/src/app/shared/named-filter/named-filter-selector.component.scss +3 -0
- package/src/app/shared/named-filter/named-filter-selector.component.ts +287 -0
- package/src/app/shared/named-filter/named-filter.model.ts +64 -0
- package/src/app/shared/named-filter/named-filter.module.ts +15 -0
- package/src/app/shared/named-filter/named-filter.service.ts +100 -0
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.html +61 -0
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.ts +80 -0
- package/src/app/shared/named-filter/testing/named-filter.testing.module.ts +20 -0
- package/src/app/shared/named-filter/testing/named-filter.testing.service.ts +83 -0
- package/src/app/shared/observables.ts +139 -0
- package/src/app/shared/pipes/arrays.pipe.ts +153 -0
- package/src/app/shared/pipes/badge.pipes.ts +17 -0
- package/src/app/shared/pipes/colors.pipe.ts +24 -0
- package/src/app/shared/pipes/date-diff-duration.pipe.ts +53 -0
- package/src/app/shared/pipes/date-format.pipe.ts +73 -0
- package/src/app/shared/pipes/date-from-now.pipe.ts +17 -0
- package/src/app/shared/pipes/dates.pipe.ts +13 -0
- package/src/app/shared/pipes/display-with.pipe.ts +13 -0
- package/src/app/shared/pipes/duration.pipe.spec.ts +41 -0
- package/src/app/shared/pipes/duration.pipe.ts +28 -0
- package/src/app/shared/pipes/file-size.pipe.ts +50 -0
- package/src/app/shared/pipes/form.pipes.ts +209 -0
- package/src/app/shared/pipes/highlight.pipe.ts +41 -0
- package/src/app/shared/pipes/html.pipes.ts +49 -0
- package/src/app/shared/pipes/latlong-format.pipe.ts +28 -0
- package/src/app/shared/pipes/maps.pipe.ts +41 -0
- package/src/app/shared/pipes/maskito.pipe.ts +68 -0
- package/src/app/shared/pipes/math.pipes.ts +46 -0
- package/src/app/shared/pipes/ng-init.pipe.ts +13 -0
- package/src/app/shared/pipes/number-format.pipe.ts +11 -0
- package/src/app/shared/pipes/observable.pipes.ts +45 -0
- package/src/app/shared/pipes/pipes.module.ts +162 -0
- package/src/app/shared/pipes/property.pipes.ts +115 -0
- package/src/app/shared/pipes/selection.pipes.ts +165 -0
- package/src/app/shared/pipes/string.pipes.ts +128 -0
- package/src/app/shared/pipes/translate-context.pipe.ts +27 -0
- package/src/app/shared/pipes/types.pipes.ts +52 -0
- package/src/app/shared/pipes/url.pipes.ts +36 -0
- package/src/app/shared/platforms.ts +99 -0
- package/src/app/shared/print/print.service.ts +337 -0
- package/src/app/shared/regexps.ts +112 -0
- package/src/app/shared/rx-state/rx-state.decorators.ts +281 -0
- package/src/app/shared/rx-state/rx-state.module.ts +11 -0
- package/src/app/shared/rx-state/rx-state.types.ts +5 -0
- package/src/app/shared/services/entity-service.class.ts +120 -0
- package/src/app/shared/services/job.utils.ts +124 -0
- package/src/app/shared/services/memory-entity-service.class.ts +435 -0
- package/src/app/shared/services/progress-bar.service.ts +40 -0
- package/src/app/shared/services/startable-observable-service.class.ts +129 -0
- package/src/app/shared/services/startable-service.class.ts +120 -0
- package/src/app/shared/services/storage.utils.ts +53 -0
- package/src/app/shared/services/translate-context.service.ts +112 -0
- package/src/app/shared/services/validator-service.class.ts +13 -0
- package/src/app/shared/services.ts +134 -0
- package/src/app/shared/shared-routing.module.ts +69 -0
- package/src/app/shared/shared.module.spec.ts +13 -0
- package/src/app/shared/shared.module.ts +168 -0
- package/src/app/shared/shared.testing.module.ts +61 -0
- package/src/app/shared/storage/storage-explorer.component.html +160 -0
- package/src/app/shared/storage/storage-explorer.component.scss +37 -0
- package/src/app/shared/storage/storage-explorer.component.spec.ts +24 -0
- package/src/app/shared/storage/storage-explorer.component.ts +268 -0
- package/src/app/shared/storage/storage-explorer.module.ts +24 -0
- package/src/app/shared/storage/storage-explorer.testing-routing.module.ts +19 -0
- package/src/app/shared/storage/storage-explorer.testing.module.ts +19 -0
- package/src/app/shared/storage/storage.service.ts +131 -0
- package/src/app/shared/storage/storage.utils.ts +25 -0
- package/src/app/shared/testing/maskito.test.html +40 -0
- package/src/app/shared/testing/maskito.test.ts +33 -0
- package/src/app/shared/testing/observable.test.html +53 -0
- package/src/app/shared/testing/observable.test.scss +3 -0
- package/src/app/shared/testing/observable.test.ts +101 -0
- package/src/app/shared/testing/tests.page.html +22 -0
- package/src/app/shared/testing/tests.page.ts +32 -0
- package/src/app/shared/toast/toast.testing.html +50 -0
- package/src/app/shared/toast/toast.testing.module.ts +22 -0
- package/src/app/shared/toast/toast.testing.ts +52 -0
- package/src/app/shared/toast/toasts.ts +161 -0
- package/src/app/shared/toolbar/modal-toolbar.html +30 -0
- package/src/app/shared/toolbar/modal-toolbar.scss +0 -0
- package/src/app/shared/toolbar/modal-toolbar.ts +64 -0
- package/src/app/shared/toolbar/toolbar.html +68 -0
- package/src/app/shared/toolbar/toolbar.module.ts +18 -0
- package/src/app/shared/toolbar/toolbar.scss +0 -0
- package/src/app/shared/toolbar/toolbar.ts +262 -0
- package/src/app/shared/types.ts +44 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.html +30 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.module.ts +21 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.ts +65 -0
- package/src/app/shared/upload-file/upload-file-popover.component.html +46 -0
- package/src/app/shared/upload-file/upload-file-popover.component.scss +6 -0
- package/src/app/shared/upload-file/upload-file-popover.component.ts +115 -0
- package/src/app/shared/upload-file/upload-file.component.html +57 -0
- package/src/app/shared/upload-file/upload-file.component.scss +60 -0
- package/src/app/shared/upload-file/upload-file.component.ts +222 -0
- package/src/app/shared/upload-file/upload-file.model.ts +40 -0
- package/src/app/shared/validator/form-error-adapter.class.ts +136 -0
- package/src/app/shared/validator/validators.ts +725 -0
- package/src/app/shared/version/versions.ts +89 -0
- package/src/app/social/job/job.module.ts +14 -0
- package/src/app/social/job/progression/job-progression.component.html +19 -0
- package/src/app/social/job/progression/job-progression.component.scss +15 -0
- package/src/app/social/job/progression/job-progression.component.ts +39 -0
- package/src/app/social/job/progression/job-progression.icon.html +30 -0
- package/src/app/social/job/progression/job-progression.icon.scss +7 -0
- package/src/app/social/job/progression/job-progression.icon.ts +276 -0
- package/src/app/social/job/progression/job-progression.list.html +25 -0
- package/src/app/social/job/progression/job-progression.list.scss +17 -0
- package/src/app/social/job/progression/job-progression.list.ts +40 -0
- package/src/app/social/job/progression/job-progression.model.ts +26 -0
- package/src/app/social/job/progression/job-progression.service.ts +97 -0
- package/src/app/social/job/testing/job-progression.testing.html +11 -0
- package/src/app/social/job/testing/job-progression.testing.service.ts +33 -0
- package/src/app/social/job/testing/job-progression.testing.ts +28 -0
- package/src/app/social/job/testing/job.testing.module.ts +13 -0
- package/src/app/social/message/message.form.html +71 -0
- package/src/app/social/message/message.form.scss +6 -0
- package/src/app/social/message/message.form.ts +128 -0
- package/src/app/social/message/message.modal.html +68 -0
- package/src/app/social/message/message.modal.ts +117 -0
- package/src/app/social/message/message.model.ts +78 -0
- package/src/app/social/message/message.module.ts +14 -0
- package/src/app/social/message/message.service.ts +104 -0
- package/src/app/social/social.errors.ts +10 -0
- package/src/app/social/social.module.ts +23 -0
- package/src/app/social/social.testing.module.ts +33 -0
- package/src/app/social/user-event/notification/user-event-notification.icon.html +17 -0
- package/src/app/social/user-event/notification/user-event-notification.icon.ts +112 -0
- package/src/app/social/user-event/notification/user-event-notification.list.html +142 -0
- package/src/app/social/user-event/notification/user-event-notification.list.scss +73 -0
- package/src/app/social/user-event/notification/user-event-notification.list.ts +270 -0
- package/src/app/social/user-event/testing/user-event.testing.html +26 -0
- package/src/app/social/user-event/testing/user-event.testing.model.ts +142 -0
- package/src/app/social/user-event/testing/user-event.testing.module.ts +13 -0
- package/src/app/social/user-event/testing/user-event.testing.service.ts +161 -0
- package/src/app/social/user-event/testing/user-event.testing.ts +282 -0
- package/src/app/social/user-event/user-event.model.ts +55 -0
- package/src/app/social/user-event/user-event.module.ts +15 -0
- package/src/app/social/user-event/user-event.service.ts +686 -0
- package/src/assets/manifest.json +1 -1
- package/src/browserslist +9 -0
- package/src/environments/environment.class.ts +106 -0
- package/src/environments/environment.loader.ts +90 -0
- package/src/environments/environment.prod.ts +49 -0
- package/src/environments/environment.test.ts +92 -0
- package/src/environments/environment.ts +126 -0
- package/src/favicon.ico +0 -0
- package/src/global.scss +13 -0
- package/src/index.html +76 -0
- package/src/main.ts +18 -0
- package/src/polyfills.ts +34 -0
- package/src/schema.graphql +4381 -0
- package/src/service-worker.js +31 -0
- package/src/test.ts +30 -0
- package/tsconfig.app.json +15 -0
- package/tsconfig.json +47 -0
- package/tsconfig.spec.json +18 -0
- package/esm2022/public_api.mjs +0 -380
- package/esm2022/src/app/admin/admin-routing.module.mjs +0 -34
- package/esm2022/src/app/admin/admin.module.mjs +0 -32
- package/esm2022/src/app/admin/services/filter/person.filter.mjs +0 -76
- package/esm2022/src/app/admin/services/person.service.mjs +0 -184
- package/esm2022/src/app/admin/services/validator/person.validator.mjs +0 -72
- package/esm2022/src/app/admin/users/users.mjs +0 -379
- package/esm2022/src/app/admin/users/users.module.mjs +0 -56
- package/esm2022/src/app/core/about/about.modal.mjs +0 -86
- package/esm2022/src/app/core/about/about.module.mjs +0 -22
- package/esm2022/src/app/core/account/account.module.mjs +0 -75
- package/esm2022/src/app/core/account/account.page.mjs +0 -364
- package/esm2022/src/app/core/account/new-token.form.mjs +0 -106
- package/esm2022/src/app/core/account/new-token.modal.mjs +0 -66
- package/esm2022/src/app/core/account/password/change-password.form.mjs +0 -63
- package/esm2022/src/app/core/account/password/change-password.module.mjs +0 -22
- package/esm2022/src/app/core/account/password/change-password.page.mjs +0 -150
- package/esm2022/src/app/core/account/token.table.mjs +0 -157
- package/esm2022/src/app/core/auth/auth.form.mjs +0 -159
- package/esm2022/src/app/core/auth/auth.modal.mjs +0 -76
- package/esm2022/src/app/core/auth/auth.module.mjs +0 -56
- package/esm2022/src/app/core/auth/reset-password.modal.mjs +0 -89
- package/esm2022/src/app/core/core.module.mjs +0 -151
- package/esm2022/src/app/core/core.testing.module.mjs +0 -107
- package/esm2022/src/app/core/form/array/form-array.mjs +0 -328
- package/esm2022/src/app/core/form/array/testing/form-array-test.module.mjs +0 -23
- package/esm2022/src/app/core/form/array/testing/form-array.test.mjs +0 -94
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +0 -108
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.module.mjs +0 -31
- package/esm2022/src/app/core/form/entity/editor.class.mjs +0 -268
- package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +0 -420
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +0 -741
- package/esm2022/src/app/core/form/entity/entity-metadata.component.mjs +0 -24
- package/esm2022/src/app/core/form/entity/entity.module.mjs +0 -32
- package/esm2022/src/app/core/form/entity/tab-editor.class.mjs +0 -190
- package/esm2022/src/app/core/form/form-container.class.mjs +0 -340
- package/esm2022/src/app/core/form/form.class.mjs +0 -337
- package/esm2022/src/app/core/form/form.module.mjs +0 -70
- package/esm2022/src/app/core/form/form.utils.mjs +0 -205
- package/esm2022/src/app/core/form/list/list.form.mjs +0 -235
- package/esm2022/src/app/core/form/list/list.module.mjs +0 -31
- package/esm2022/src/app/core/form/properties/properties.form.mjs +0 -317
- package/esm2022/src/app/core/form/properties/properties.module.mjs +0 -37
- package/esm2022/src/app/core/form/properties/properties.table.mjs +0 -264
- package/esm2022/src/app/core/form/properties/properties.utils.mjs +0 -304
- package/esm2022/src/app/core/form/properties/property.validator.mjs +0 -70
- package/esm2022/src/app/core/form/properties/testing/properties-form.test.mjs +0 -104
- package/esm2022/src/app/core/form/properties/testing/properties-form.testing.module.mjs +0 -23
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.mjs +0 -73
- package/esm2022/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +0 -30
- package/esm2022/src/app/core/form/text-popover/text-popover.component.mjs +0 -161
- package/esm2022/src/app/core/form/text-popover/text-popover.module.mjs +0 -31
- package/esm2022/src/app/core/form/username/username.form.mjs +0 -55
- package/esm2022/src/app/core/form/username/username.module.mjs +0 -20
- package/esm2022/src/app/core/graphql/graphql.module.mjs +0 -14
- package/esm2022/src/app/core/graphql/graphql.service.mjs +0 -781
- package/esm2022/src/app/core/graphql/graphql.utils.mjs +0 -119
- package/esm2022/src/app/core/home/home.mjs +0 -382
- package/esm2022/src/app/core/home/home.module.mjs +0 -46
- package/esm2022/src/app/core/icon/icon.component.mjs +0 -40
- package/esm2022/src/app/core/icon/icon.module.mjs +0 -20
- package/esm2022/src/app/core/install/install-upgrade-card.component.mjs +0 -394
- package/esm2022/src/app/core/install/install-upgrade-card.module.mjs +0 -31
- package/esm2022/src/app/core/menu/menu.component.mjs +0 -258
- package/esm2022/src/app/core/menu/menu.model.mjs +0 -272
- package/esm2022/src/app/core/menu/menu.module.mjs +0 -47
- package/esm2022/src/app/core/menu/menu.service.mjs +0 -666
- package/esm2022/src/app/core/menu/sub-menu-tab.directive.mjs +0 -109
- package/esm2022/src/app/core/menu/testing/menu-other.testing.mjs +0 -50
- package/esm2022/src/app/core/menu/testing/menu.testing.mjs +0 -158
- package/esm2022/src/app/core/menu/testing/menu.testing.module.mjs +0 -60
- package/esm2022/src/app/core/offline/update-offline-mode-card.component.mjs +0 -28
- package/esm2022/src/app/core/offline/update-offline-mode-card.module.mjs +0 -31
- package/esm2022/src/app/core/peer/select-peer.modal.mjs +0 -344
- package/esm2022/src/app/core/peer/select-peer.module.mjs +0 -36
- package/esm2022/src/app/core/register/register-confirm.page.mjs +0 -90
- package/esm2022/src/app/core/register/register.form.mjs +0 -194
- package/esm2022/src/app/core/register/register.modal.mjs +0 -55
- package/esm2022/src/app/core/register/register.module.mjs +0 -23
- package/esm2022/src/app/core/services/account.service.mjs +0 -1358
- package/esm2022/src/app/core/services/auth-guard.service.mjs +0 -74
- package/esm2022/src/app/core/services/base-entity-service.class.mjs +0 -485
- package/esm2022/src/app/core/services/base-graphql-service.class.mjs +0 -230
- package/esm2022/src/app/core/services/base58.mjs +0 -83
- package/esm2022/src/app/core/services/config/core.config.mjs +0 -258
- package/esm2022/src/app/core/services/config.service.mjs +0 -384
- package/esm2022/src/app/core/services/crypto.service.mjs +0 -107
- package/esm2022/src/app/core/services/errors.mjs +0 -54
- package/esm2022/src/app/core/services/local-settings.service.mjs +0 -516
- package/esm2022/src/app/core/services/model/account.model.mjs +0 -178
- package/esm2022/src/app/core/services/model/config.model.mjs +0 -107
- package/esm2022/src/app/core/services/model/department.model.mjs +0 -35
- package/esm2022/src/app/core/services/model/entity.decorators.mjs +0 -97
- package/esm2022/src/app/core/services/model/entity.model.mjs +0 -338
- package/esm2022/src/app/core/services/model/filter.model.mjs +0 -93
- package/esm2022/src/app/core/services/model/history.model.mjs +0 -2
- package/esm2022/src/app/core/services/model/model.enum.mjs +0 -11
- package/esm2022/src/app/core/services/model/node-feature.model.mjs +0 -31
- package/esm2022/src/app/core/services/model/peer.model.mjs +0 -113
- package/esm2022/src/app/core/services/model/person.model.mjs +0 -114
- package/esm2022/src/app/core/services/model/referential.model.mjs +0 -205
- package/esm2022/src/app/core/services/model/settings.model.mjs +0 -6
- package/esm2022/src/app/core/services/model/token.model.mjs +0 -57
- package/esm2022/src/app/core/services/model/tree-item-entity.model.mjs +0 -195
- package/esm2022/src/app/core/services/network.service.mjs +0 -638
- package/esm2022/src/app/core/services/network.types.mjs +0 -2
- package/esm2022/src/app/core/services/network.utils.mjs +0 -35
- package/esm2022/src/app/core/services/pipes/account.pipes.mjs +0 -38
- package/esm2022/src/app/core/services/pipes/department-to-string.pipe.mjs +0 -23
- package/esm2022/src/app/core/services/pipes/person-to-string.pipe.mjs +0 -23
- package/esm2022/src/app/core/services/pipes/pipes.module.mjs +0 -54
- package/esm2022/src/app/core/services/pipes/referential-to-string.pipe.mjs +0 -21
- package/esm2022/src/app/core/services/pipes/usage-mode.pipes.mjs +0 -37
- package/esm2022/src/app/core/services/platform.service.mjs +0 -627
- package/esm2022/src/app/core/services/storage/entities-storage.service.mjs +0 -427
- package/esm2022/src/app/core/services/storage/entity-store.class.mjs +0 -450
- package/esm2022/src/app/core/services/testing/referential-filter.model.mjs +0 -25
- package/esm2022/src/app/core/services/testing/referential.validator.mjs +0 -46
- package/esm2022/src/app/core/services/validator/account.validator.mjs +0 -45
- package/esm2022/src/app/core/services/validator/base.validator.class.mjs +0 -49
- package/esm2022/src/app/core/services/validator/local-settings.validator.mjs +0 -57
- package/esm2022/src/app/core/services/validator/user-settings.validator.mjs +0 -27
- package/esm2022/src/app/core/services/validator/user-token.validator.mjs +0 -55
- package/esm2022/src/app/core/settings/settings.module.mjs +0 -23
- package/esm2022/src/app/core/settings/settings.page.mjs +0 -403
- package/esm2022/src/app/core/table/async-table.class.mjs +0 -1811
- package/esm2022/src/app/core/table/column/actions-column.component.mjs +0 -130
- package/esm2022/src/app/core/table/column/nav-actions-column.component.mjs +0 -117
- package/esm2022/src/app/core/table/column/row-field.component.mjs +0 -116
- package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +0 -404
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +0 -405
- package/esm2022/src/app/core/table/memory-table.class.mjs +0 -57
- package/esm2022/src/app/core/table/table-select-columns.component.mjs +0 -46
- package/esm2022/src/app/core/table/table.class.mjs +0 -1867
- package/esm2022/src/app/core/table/table.model.mjs +0 -21
- package/esm2022/src/app/core/table/table.module.mjs +0 -51
- package/esm2022/src/app/core/table/table.pipes.mjs +0 -77
- package/esm2022/src/app/core/table/table.utils.mjs +0 -34
- package/esm2022/src/app/core/table/testing/table-validator.service.mjs +0 -32
- package/esm2022/src/app/core/table/testing/table.testing.mjs +0 -329
- package/esm2022/src/app/core/table/testing/table.testing.module.mjs +0 -25
- package/esm2022/src/app/core/table/testing/table2-validator.service.mjs +0 -25
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +0 -273
- package/esm2022/src/app/shared/alerts.mjs +0 -243
- package/esm2022/src/app/shared/audio/audio.mjs +0 -255
- package/esm2022/src/app/shared/audio/audio.testing.mjs +0 -32
- package/esm2022/src/app/shared/audio/audio.testing.module.mjs +0 -30
- package/esm2022/src/app/shared/capacitor/keyboard.mjs +0 -42
- package/esm2022/src/app/shared/capacitor/plugins.mjs +0 -9
- package/esm2022/src/app/shared/constants.mjs +0 -16
- package/esm2022/src/app/shared/dates.mjs +0 -180
- package/esm2022/src/app/shared/debug/debug-service.class.mjs +0 -3
- package/esm2022/src/app/shared/debug/debug.component.mjs +0 -44
- package/esm2022/src/app/shared/debug/debug.module.mjs +0 -23
- package/esm2022/src/app/shared/directives/autofocus.directive.mjs +0 -91
- package/esm2022/src/app/shared/directives/autoresize.directive.mjs +0 -75
- package/esm2022/src/app/shared/directives/autotitle.directive.mjs +0 -30
- package/esm2022/src/app/shared/directives/directives.module.mjs +0 -24
- package/esm2022/src/app/shared/directives/drag-and-drop.directive.mjs +0 -52
- package/esm2022/src/app/shared/directives/ng-var.directive.mjs +0 -33
- package/esm2022/src/app/shared/directives/resizable/resizable.component.mjs +0 -62
- package/esm2022/src/app/shared/directives/resizable/resizable.directive.mjs +0 -45
- package/esm2022/src/app/shared/directives/resizable/resizable.module.mjs +0 -17
- package/esm2022/src/app/shared/directives/throttled-click.directive.mjs +0 -43
- package/esm2022/src/app/shared/events.mjs +0 -64
- package/esm2022/src/app/shared/file/csv.utils.mjs +0 -97
- package/esm2022/src/app/shared/file/file.service.mjs +0 -118
- package/esm2022/src/app/shared/file/file.utils.mjs +0 -117
- package/esm2022/src/app/shared/file/images.utils.mjs +0 -186
- package/esm2022/src/app/shared/file/json.utils.mjs +0 -58
- package/esm2022/src/app/shared/file/uri.utils.mjs +0 -29
- package/esm2022/src/app/shared/file/url.utils.mjs +0 -164
- package/esm2022/src/app/shared/focusable.mjs +0 -6
- package/esm2022/src/app/shared/form/field.component.mjs +0 -393
- package/esm2022/src/app/shared/form/field.model.mjs +0 -82
- package/esm2022/src/app/shared/form/loading-spinner.mjs +0 -35
- package/esm2022/src/app/shared/forms.mjs +0 -510
- package/esm2022/src/app/shared/functions.mjs +0 -672
- package/esm2022/src/app/shared/geolocation/geolocation.utils.mjs +0 -86
- package/esm2022/src/app/shared/gesture/gesture-config.mjs +0 -46
- package/esm2022/src/app/shared/gesture/hammer.utils.mjs +0 -2
- package/esm2022/src/app/shared/graph/colors.utils.mjs +0 -60
- package/esm2022/src/app/shared/graph/graph-colors.mjs +0 -214
- package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +0 -65
- package/esm2022/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +0 -23
- package/esm2022/src/app/shared/hotkeys/hotkeys.service.mjs +0 -147
- package/esm2022/src/app/shared/hotkeys/shared-hotkeys.module.mjs +0 -24
- package/esm2022/src/app/shared/http/http.utils.mjs +0 -56
- package/esm2022/src/app/shared/image/gallery/image-gallery.component.mjs +0 -443
- package/esm2022/src/app/shared/image/gallery/image-gallery.module.mjs +0 -62
- package/esm2022/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +0 -26
- package/esm2022/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +0 -87
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.mjs +0 -37
- package/esm2022/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +0 -59
- package/esm2022/src/app/shared/image/image.model.mjs +0 -2
- package/esm2022/src/app/shared/image/image.module.mjs +0 -24
- package/esm2022/src/app/shared/image/image.service.mjs +0 -109
- package/esm2022/src/app/shared/inputs.mjs +0 -279
- package/esm2022/src/app/shared/interceptors/progess.interceptor.mjs +0 -27
- package/esm2022/src/app/shared/logging/log-level.model.mjs +0 -48
- package/esm2022/src/app/shared/logging/logger.model.mjs +0 -47
- package/esm2022/src/app/shared/logging/logging-service.class.mjs +0 -125
- package/esm2022/src/app/shared/logging/logging-service.config.mjs +0 -2
- package/esm2022/src/app/shared/logging/logging-service.module.mjs +0 -30
- package/esm2022/src/app/shared/markdown/markdown.component.mjs +0 -321
- package/esm2022/src/app/shared/markdown/markdown.directive.mjs +0 -34
- package/esm2022/src/app/shared/markdown/markdown.modal.mjs +0 -99
- package/esm2022/src/app/shared/markdown/markdown.module.mjs +0 -87
- package/esm2022/src/app/shared/markdown/markdown.service.mjs +0 -204
- package/esm2022/src/app/shared/markdown/markdown.utils.mjs +0 -87
- package/esm2022/src/app/shared/markdown/testing/markdown.test.mjs +0 -55
- package/esm2022/src/app/shared/markdown/testing/markdown.testing.module.mjs +0 -30
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +0 -46
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +0 -1313
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +0 -79
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +0 -18
- package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +0 -242
- package/esm2022/src/app/shared/material/badge/badge.directive.mjs +0 -251
- package/esm2022/src/app/shared/material/badge/badge.module.mjs +0 -20
- package/esm2022/src/app/shared/material/badge/badge.test.mjs +0 -42
- package/esm2022/src/app/shared/material/boolean/boolean.module.mjs +0 -67
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +0 -371
- package/esm2022/src/app/shared/material/boolean/testing/boolean.test.page.mjs +0 -72
- package/esm2022/src/app/shared/material/chips/chips.module.mjs +0 -71
- package/esm2022/src/app/shared/material/chips/material.chips.mjs +0 -836
- package/esm2022/src/app/shared/material/chips/testing/chips.test.mjs +0 -151
- package/esm2022/src/app/shared/material/datetime/datetime.module.mjs +0 -76
- package/esm2022/src/app/shared/material/datetime/material.date.mjs +0 -471
- package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +0 -457
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +0 -693
- package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +0 -136
- package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +0 -127
- package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +0 -118
- package/esm2022/src/app/shared/material/duration/duration.module.mjs +0 -61
- package/esm2022/src/app/shared/material/duration/duration.utils.mjs +0 -16
- package/esm2022/src/app/shared/material/duration/material.duration.mjs +0 -283
- package/esm2022/src/app/shared/material/duration/testing/mat-duration.test.mjs +0 -85
- package/esm2022/src/app/shared/material/latlong/latlong.utils.mjs +0 -319
- package/esm2022/src/app/shared/material/latlong/material.latlong-input.mjs +0 -432
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +0 -231
- package/esm2022/src/app/shared/material/latlong/material.latlong.module.mjs +0 -68
- package/esm2022/src/app/shared/material/latlong/testing/latlong.test.mjs +0 -137
- package/esm2022/src/app/shared/material/material.animations.mjs +0 -200
- package/esm2022/src/app/shared/material/material.config.mjs +0 -3
- package/esm2022/src/app/shared/material/material.module.mjs +0 -229
- package/esm2022/src/app/shared/material/material.testing.module.mjs +0 -245
- package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +0 -51
- package/esm2022/src/app/shared/material/stepper/material.stepper-i18n.mjs +0 -23
- package/esm2022/src/app/shared/material/swipe/material.swipe.mjs +0 -379
- package/esm2022/src/app/shared/material/swipe/swipe.module.mjs +0 -52
- package/esm2022/src/app/shared/material/swipe/testing/swipe.test.mjs +0 -67
- package/esm2022/src/app/shared/material/test/test-component.mjs +0 -264
- package/esm2022/src/app/shared/material/testing/common.test.mjs +0 -111
- package/esm2022/src/app/shared/material/text/testing/text-form.testing.mjs +0 -42
- package/esm2022/src/app/shared/material/text/text-form.component.mjs +0 -205
- package/esm2022/src/app/shared/material/text/text-form.module.mjs +0 -63
- package/esm2022/src/app/shared/modules.mjs +0 -12
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +0 -303
- package/esm2022/src/app/shared/named-filter/named-filter.model.mjs +0 -49
- package/esm2022/src/app/shared/named-filter/named-filter.module.mjs +0 -24
- package/esm2022/src/app/shared/named-filter/named-filter.service.mjs +0 -69
- package/esm2022/src/app/shared/named-filter/testing/named-filter-selector.testing.mjs +0 -74
- package/esm2022/src/app/shared/named-filter/testing/named-filter.testing.module.mjs +0 -28
- package/esm2022/src/app/shared/observables.mjs +0 -100
- package/esm2022/src/app/shared/pipes/arrays.pipe.mjs +0 -217
- package/esm2022/src/app/shared/pipes/badge.pipes.mjs +0 -24
- package/esm2022/src/app/shared/pipes/colors.pipe.mjs +0 -29
- package/esm2022/src/app/shared/pipes/date-diff-duration.pipe.mjs +0 -50
- package/esm2022/src/app/shared/pipes/date-format.pipe.mjs +0 -72
- package/esm2022/src/app/shared/pipes/date-from-now.pipe.mjs +0 -28
- package/esm2022/src/app/shared/pipes/dates.pipe.mjs +0 -18
- package/esm2022/src/app/shared/pipes/display-with.pipe.mjs +0 -23
- package/esm2022/src/app/shared/pipes/duration.pipe.mjs +0 -34
- package/esm2022/src/app/shared/pipes/file-size.pipe.mjs +0 -53
- package/esm2022/src/app/shared/pipes/form.pipes.mjs +0 -219
- package/esm2022/src/app/shared/pipes/highlight.pipe.mjs +0 -50
- package/esm2022/src/app/shared/pipes/html.pipes.mjs +0 -69
- package/esm2022/src/app/shared/pipes/latlong-format.pipe.mjs +0 -42
- package/esm2022/src/app/shared/pipes/maps.pipe.mjs +0 -65
- package/esm2022/src/app/shared/pipes/maskito.pipe.mjs +0 -67
- package/esm2022/src/app/shared/pipes/math.pipes.mjs +0 -77
- package/esm2022/src/app/shared/pipes/ng-init.pipe.mjs +0 -19
- package/esm2022/src/app/shared/pipes/number-format.pipe.mjs +0 -17
- package/esm2022/src/app/shared/pipes/observable.pipes.mjs +0 -61
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +0 -285
- package/esm2022/src/app/shared/pipes/property.pipes.mjs +0 -135
- package/esm2022/src/app/shared/pipes/selection.pipes.mjs +0 -179
- package/esm2022/src/app/shared/pipes/string.pipes.mjs +0 -183
- package/esm2022/src/app/shared/pipes/translate-context.pipe.mjs +0 -44
- package/esm2022/src/app/shared/pipes/types.pipes.mjs +0 -74
- package/esm2022/src/app/shared/pipes/url.pipes.mjs +0 -43
- package/esm2022/src/app/shared/platforms.mjs +0 -81
- package/esm2022/src/app/shared/print/print.service.mjs +0 -305
- package/esm2022/src/app/shared/regexps.mjs +0 -96
- package/esm2022/src/app/shared/rx-state/rx-state.decorators.mjs +0 -71
- package/esm2022/src/app/shared/rx-state/rx-state.module.mjs +0 -19
- package/esm2022/src/app/shared/rx-state/rx-state.types.mjs +0 -2
- package/esm2022/src/app/shared/services/entity-service.class.mjs +0 -10
- package/esm2022/src/app/shared/services/job.utils.mjs +0 -92
- package/esm2022/src/app/shared/services/memory-entity-service.class.mjs +0 -353
- package/esm2022/src/app/shared/services/progress-bar.service.mjs +0 -31
- package/esm2022/src/app/shared/services/startable-observable-service.class.mjs +0 -118
- package/esm2022/src/app/shared/services/startable-service.class.mjs +0 -107
- package/esm2022/src/app/shared/services/translate-context.service.mjs +0 -107
- package/esm2022/src/app/shared/services/validator-service.class.mjs +0 -2
- package/esm2022/src/app/shared/services.mjs +0 -85
- package/esm2022/src/app/shared/shared-routing.module.mjs +0 -72
- package/esm2022/src/app/shared/shared.module.mjs +0 -229
- package/esm2022/src/app/shared/shared.testing.module.mjs +0 -108
- package/esm2022/src/app/shared/storage/storage-explorer.component.mjs +0 -279
- package/esm2022/src/app/shared/storage/storage-explorer.module.mjs +0 -42
- package/esm2022/src/app/shared/storage/storage-explorer.testing-routing.module.mjs +0 -27
- package/esm2022/src/app/shared/storage/storage-explorer.testing.module.mjs +0 -25
- package/esm2022/src/app/shared/storage/storage.service.mjs +0 -134
- package/esm2022/src/app/shared/storage/storage.utils.mjs +0 -13
- package/esm2022/src/app/shared/testing/maskito.test.mjs +0 -41
- package/esm2022/src/app/shared/testing/observable.test.mjs +0 -94
- package/esm2022/src/app/shared/testing/tests.page.mjs +0 -37
- package/esm2022/src/app/shared/toast/toast.testing.mjs +0 -54
- package/esm2022/src/app/shared/toast/toast.testing.module.mjs +0 -31
- package/esm2022/src/app/shared/toast/toasts.mjs +0 -134
- package/esm2022/src/app/shared/toolbar/modal-toolbar.mjs +0 -62
- package/esm2022/src/app/shared/toolbar/toolbar.mjs +0 -267
- package/esm2022/src/app/shared/toolbar/toolbar.module.mjs +0 -26
- package/esm2022/src/app/shared/types.mjs +0 -2
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.mjs +0 -59
- package/esm2022/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +0 -30
- package/esm2022/src/app/shared/upload-file/upload-file-popover.component.mjs +0 -109
- package/esm2022/src/app/shared/upload-file/upload-file.component.mjs +0 -216
- package/esm2022/src/app/shared/upload-file/upload-file.model.mjs +0 -26
- package/esm2022/src/app/shared/validator/form-error-adapter.class.mjs +0 -114
- package/esm2022/src/app/shared/validator/validators.mjs +0 -621
- package/esm2022/src/app/shared/version/versions.mjs +0 -81
- package/esm2022/src/app/social/job/job.module.mjs +0 -23
- package/esm2022/src/app/social/job/progression/job-progression.component.mjs +0 -35
- package/esm2022/src/app/social/job/progression/job-progression.icon.mjs +0 -235
- package/esm2022/src/app/social/job/progression/job-progression.list.mjs +0 -47
- package/esm2022/src/app/social/job/progression/job-progression.model.mjs +0 -29
- package/esm2022/src/app/social/job/progression/job-progression.service.mjs +0 -91
- package/esm2022/src/app/social/job/testing/job-progression.testing.mjs +0 -38
- package/esm2022/src/app/social/job/testing/job-progression.testing.service.mjs +0 -34
- package/esm2022/src/app/social/job/testing/job.testing.module.mjs +0 -22
- package/esm2022/src/app/social/message/message.form.mjs +0 -141
- package/esm2022/src/app/social/message/message.modal.mjs +0 -110
- package/esm2022/src/app/social/message/message.model.mjs +0 -75
- package/esm2022/src/app/social/message/message.module.mjs +0 -22
- package/esm2022/src/app/social/message/message.service.mjs +0 -110
- package/esm2022/src/app/social/social.errors.mjs +0 -10
- package/esm2022/src/app/social/social.module.mjs +0 -22
- package/esm2022/src/app/social/social.testing.module.mjs +0 -40
- package/esm2022/src/app/social/user-event/notification/user-event-notification.icon.mjs +0 -127
- package/esm2022/src/app/social/user-event/notification/user-event-notification.list.mjs +0 -260
- package/esm2022/src/app/social/user-event/testing/user-event.testing.mjs +0 -257
- package/esm2022/src/app/social/user-event/testing/user-event.testing.model.mjs +0 -129
- package/esm2022/src/app/social/user-event/testing/user-event.testing.module.mjs +0 -22
- package/esm2022/src/app/social/user-event/testing/user-event.testing.service.mjs +0 -128
- package/esm2022/src/app/social/user-event/user-event.model.mjs +0 -2
- package/esm2022/src/app/social/user-event/user-event.module.mjs +0 -23
- package/esm2022/src/app/social/user-event/user-event.service.mjs +0 -512
- package/esm2022/src/environments/environment.class.mjs +0 -65
- package/esm2022/src/environments/environment.loader.mjs +0 -77
- package/esm2022/src/environments/environment.mjs +0 -109
- package/esm2022/sumaris-net.ngx-components.mjs +0 -5
- package/fesm2022/sumaris-net.ngx-components.mjs +0 -48596
- package/fesm2022/sumaris-net.ngx-components.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/public_api.d.ts +0 -344
- package/src/app/admin/admin-routing.module.d.ts +0 -9
- package/src/app/admin/admin.module.d.ts +0 -10
- package/src/app/admin/services/filter/person.filter.d.ts +0 -22
- package/src/app/admin/services/person.service.d.ts +0 -37
- package/src/app/admin/services/validator/person.validator.d.ts +0 -23
- package/src/app/admin/users/users.d.ts +0 -61
- package/src/app/admin/users/users.module.d.ts +0 -14
- package/src/app/core/about/about.modal.d.ts +0 -32
- package/src/app/core/about/about.module.d.ts +0 -11
- package/src/app/core/account/account.module.d.ts +0 -18
- package/src/app/core/account/account.page.d.ts +0 -83
- package/src/app/core/account/new-token.form.d.ts +0 -29
- package/src/app/core/account/new-token.modal.d.ts +0 -29
- package/src/app/core/account/password/change-password.form.d.ts +0 -19
- package/src/app/core/account/password/change-password.module.d.ts +0 -11
- package/src/app/core/account/password/change-password.page.d.ts +0 -36
- package/src/app/core/account/token.table.d.ts +0 -27
- package/src/app/core/auth/auth.form.d.ts +0 -38
- package/src/app/core/auth/auth.modal.d.ts +0 -24
- package/src/app/core/auth/auth.module.d.ts +0 -13
- package/src/app/core/auth/reset-password.modal.d.ts +0 -29
- package/src/app/core/core.module.d.ts +0 -28
- package/src/app/core/core.testing.module.d.ts +0 -15
- package/src/app/core/form/array/form-array.d.ts +0 -137
- package/src/app/core/form/array/testing/form-array-test.module.d.ts +0 -12
- package/src/app/core/form/array/testing/form-array.test.d.ts +0 -26
- package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +0 -37
- package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +0 -9
- package/src/app/core/form/entity/editor.class.d.ts +0 -84
- package/src/app/core/form/entity/entity-editor-modal.class.d.ts +0 -126
- package/src/app/core/form/entity/entity-editor.class.d.ts +0 -204
- package/src/app/core/form/entity/entity-metadata.component.d.ts +0 -13
- package/src/app/core/form/entity/entity.module.d.ts +0 -10
- package/src/app/core/form/entity/tab-editor.class.d.ts +0 -66
- package/src/app/core/form/form-container.class.d.ts +0 -127
- package/src/app/core/form/form.class.d.ts +0 -144
- package/src/app/core/form/form.module.d.ts +0 -14
- package/src/app/core/form/form.utils.d.ts +0 -260
- package/src/app/core/form/list/list.form.d.ts +0 -81
- package/src/app/core/form/list/list.module.d.ts +0 -9
- package/src/app/core/form/properties/properties.form.d.ts +0 -92
- package/src/app/core/form/properties/properties.module.d.ts +0 -11
- package/src/app/core/form/properties/properties.table.d.ts +0 -72
- package/src/app/core/form/properties/properties.utils.d.ts +0 -59
- package/src/app/core/form/properties/property.validator.d.ts +0 -27
- package/src/app/core/form/properties/testing/properties-form.test.d.ts +0 -22
- package/src/app/core/form/properties/testing/properties-form.testing.module.d.ts +0 -12
- package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +0 -16
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.d.ts +0 -11
- package/src/app/core/form/text-popover/text-popover.component.d.ts +0 -80
- package/src/app/core/form/text-popover/text-popover.module.d.ts +0 -9
- package/src/app/core/form/username/username.form.d.ts +0 -19
- package/src/app/core/form/username/username.module.d.ts +0 -9
- package/src/app/core/graphql/graphql.module.d.ts +0 -7
- package/src/app/core/graphql/graphql.service.d.ts +0 -142
- package/src/app/core/graphql/graphql.utils.d.ts +0 -47
- package/src/app/core/home/home.d.ts +0 -109
- package/src/app/core/home/home.module.d.ts +0 -14
- package/src/app/core/icon/icon.component.d.ts +0 -13
- package/src/app/core/icon/icon.module.d.ts +0 -9
- package/src/app/core/install/install-upgrade-card.component.d.ts +0 -63
- package/src/app/core/install/install-upgrade-card.module.d.ts +0 -9
- package/src/app/core/menu/menu.component.d.ts +0 -66
- package/src/app/core/menu/menu.model.d.ts +0 -144
- package/src/app/core/menu/menu.module.d.ts +0 -12
- package/src/app/core/menu/menu.service.d.ts +0 -93
- package/src/app/core/menu/sub-menu-tab.directive.d.ts +0 -29
- package/src/app/core/menu/testing/menu-other.testing.d.ts +0 -15
- package/src/app/core/menu/testing/menu.testing.d.ts +0 -51
- package/src/app/core/menu/testing/menu.testing.module.d.ts +0 -12
- package/src/app/core/offline/update-offline-mode-card.component.d.ts +0 -11
- package/src/app/core/offline/update-offline-mode-card.module.d.ts +0 -9
- package/src/app/core/peer/select-peer.modal.d.ts +0 -101
- package/src/app/core/peer/select-peer.module.d.ts +0 -12
- package/src/app/core/register/register-confirm.page.d.ts +0 -24
- package/src/app/core/register/register.form.d.ts +0 -49
- package/src/app/core/register/register.modal.d.ts +0 -14
- package/src/app/core/register/register.module.d.ts +0 -12
- package/src/app/core/services/account.service.d.ts +0 -207
- package/src/app/core/services/auth-guard.service.d.ts +0 -17
- package/src/app/core/services/base-entity-service.class.d.ts +0 -135
- package/src/app/core/services/base-graphql-service.class.d.ts +0 -77
- package/src/app/core/services/base58.d.ts +0 -7
- package/src/app/core/services/config/core.config.d.ts +0 -46
- package/src/app/core/services/config.service.d.ts +0 -63
- package/src/app/core/services/crypto.service.d.ts +0 -44
- package/src/app/core/services/errors.d.ts +0 -65
- package/src/app/core/services/local-settings.service.d.ts +0 -99
- package/src/app/core/services/model/account.model.d.ts +0 -56
- package/src/app/core/services/model/config.model.d.ts +0 -36
- package/src/app/core/services/model/department.model.d.ts +0 -11
- package/src/app/core/services/model/entity.decorators.d.ts +0 -17
- package/src/app/core/services/model/entity.model.d.ts +0 -133
- package/src/app/core/services/model/filter.model.d.ts +0 -37
- package/src/app/core/services/model/history.model.d.ts +0 -20
- package/src/app/core/services/model/model.enum.d.ts +0 -7
- package/src/app/core/services/model/node-feature.model.d.ts +0 -14
- package/src/app/core/services/model/peer.model.d.ts +0 -35
- package/src/app/core/services/model/person.model.d.ts +0 -37
- package/src/app/core/services/model/referential.model.d.ts +0 -84
- package/src/app/core/services/model/settings.model.d.ts +0 -29
- package/src/app/core/services/model/token.model.d.ts +0 -22
- package/src/app/core/services/model/tree-item-entity.model.d.ts +0 -53
- package/src/app/core/services/network.service.d.ts +0 -159
- package/src/app/core/services/network.types.d.ts +0 -4
- package/src/app/core/services/network.utils.d.ts +0 -38
- package/src/app/core/services/pipes/account.pipes.d.ts +0 -15
- package/src/app/core/services/pipes/department-to-string.pipe.d.ts +0 -9
- package/src/app/core/services/pipes/person-to-string.pipe.d.ts +0 -11
- package/src/app/core/services/pipes/pipes.module.d.ts +0 -11
- package/src/app/core/services/pipes/referential-to-string.pipe.d.ts +0 -13
- package/src/app/core/services/pipes/usage-mode.pipes.d.ts +0 -15
- package/src/app/core/services/platform.service.d.ts +0 -110
- package/src/app/core/services/storage/entities-storage.service.d.ts +0 -108
- package/src/app/core/services/storage/entity-store.class.d.ts +0 -113
- package/src/app/core/services/testing/referential-filter.model.d.ts +0 -9
- package/src/app/core/services/testing/referential.validator.d.ts +0 -22
- package/src/app/core/services/validator/account.validator.d.ts +0 -24
- package/src/app/core/services/validator/base.validator.class.d.ts +0 -21
- package/src/app/core/services/validator/local-settings.validator.d.ts +0 -18
- package/src/app/core/services/validator/user-settings.validator.d.ts +0 -10
- package/src/app/core/services/validator/user-token.validator.d.ts +0 -13
- package/src/app/core/settings/settings.module.d.ts +0 -12
- package/src/app/core/settings/settings.page.d.ts +0 -88
- package/src/app/core/table/async-table.class.d.ts +0 -395
- package/src/app/core/table/column/actions-column.component.d.ts +0 -62
- package/src/app/core/table/column/nav-actions-column.component.d.ts +0 -46
- package/src/app/core/table/column/row-field.component.d.ts +0 -40
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +0 -100
- package/src/app/core/table/entities-table-datasource.class.d.ts +0 -103
- package/src/app/core/table/memory-table.class.d.ts +0 -25
- package/src/app/core/table/table-select-columns.component.d.ts +0 -22
- package/src/app/core/table/table.class.d.ts +0 -400
- package/src/app/core/table/table.model.d.ts +0 -31
- package/src/app/core/table/table.module.d.ts +0 -14
- package/src/app/core/table/table.pipes.d.ts +0 -29
- package/src/app/core/table/table.utils.d.ts +0 -13
- package/src/app/core/table/testing/table-validator.service.d.ts +0 -17
- package/src/app/core/table/testing/table.testing.d.ts +0 -54
- package/src/app/core/table/testing/table.testing.module.d.ts +0 -14
- package/src/app/core/table/testing/table2-validator.service.d.ts +0 -15
- package/src/app/core/table/testing/table2.testing.d.ts +0 -48
- package/src/app/shared/alerts.d.ts +0 -55
- package/src/app/shared/audio/audio.d.ts +0 -45
- package/src/app/shared/audio/audio.testing.d.ts +0 -13
- package/src/app/shared/audio/audio.testing.module.d.ts +0 -11
- package/src/app/shared/capacitor/keyboard.d.ts +0 -16
- package/src/app/shared/capacitor/plugins.d.ts +0 -7
- package/src/app/shared/constants.d.ts +0 -13
- package/src/app/shared/dates.d.ts +0 -61
- package/src/app/shared/debug/debug-service.class.d.ts +0 -5
- package/src/app/shared/debug/debug.component.d.ts +0 -14
- package/src/app/shared/debug/debug.module.d.ts +0 -12
- package/src/app/shared/directives/autofocus.directive.d.ts +0 -18
- package/src/app/shared/directives/autoresize.directive.d.ts +0 -20
- package/src/app/shared/directives/autotitle.directive.d.ts +0 -11
- package/src/app/shared/directives/directives.module.d.ts +0 -14
- package/src/app/shared/directives/drag-and-drop.directive.d.ts +0 -17
- package/src/app/shared/directives/ng-var.directive.d.ts +0 -12
- package/src/app/shared/directives/resizable/resizable.component.d.ts +0 -21
- package/src/app/shared/directives/resizable/resizable.directive.d.ts +0 -12
- package/src/app/shared/directives/resizable/resizable.module.d.ts +0 -8
- package/src/app/shared/directives/throttled-click.directive.d.ts +0 -16
- package/src/app/shared/events.d.ts +0 -29
- package/src/app/shared/file/csv.utils.d.ts +0 -30
- package/src/app/shared/file/file.service.d.ts +0 -23
- package/src/app/shared/file/file.utils.d.ts +0 -20
- package/src/app/shared/file/images.utils.d.ts +0 -36
- package/src/app/shared/file/json.utils.d.ts +0 -19
- package/src/app/shared/file/uri.utils.d.ts +0 -8
- package/src/app/shared/file/url.utils.d.ts +0 -77
- package/src/app/shared/focusable.d.ts +0 -4
- package/src/app/shared/form/field.component.d.ts +0 -85
- package/src/app/shared/form/field.model.d.ts +0 -82
- package/src/app/shared/form/loading-spinner.d.ts +0 -8
- package/src/app/shared/forms.d.ts +0 -135
- package/src/app/shared/functions.d.ts +0 -206
- package/src/app/shared/geolocation/geolocation.utils.d.ts +0 -19
- package/src/app/shared/gesture/gesture-config.d.ts +0 -15
- package/src/app/shared/gesture/hammer.utils.d.ts +0 -16
- package/src/app/shared/graph/colors.utils.d.ts +0 -17
- package/src/app/shared/graph/graph-colors.d.ts +0 -63
- package/src/app/shared/guard/component-dirty.guard.d.ts +0 -14
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +0 -8
- package/src/app/shared/hotkeys/hotkeys.service.d.ts +0 -48
- package/src/app/shared/hotkeys/shared-hotkeys.module.d.ts +0 -11
- package/src/app/shared/http/http.utils.d.ts +0 -28
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +0 -137
- package/src/app/shared/image/gallery/image-gallery.module.d.ts +0 -15
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.d.ts +0 -12
- package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +0 -33
- package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +0 -16
- package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +0 -13
- package/src/app/shared/image/image.model.d.ts +0 -7
- package/src/app/shared/image/image.module.d.ts +0 -8
- package/src/app/shared/image/image.service.d.ts +0 -36
- package/src/app/shared/inputs.d.ts +0 -36
- package/src/app/shared/interceptors/progess.interceptor.d.ts +0 -8
- package/src/app/shared/logging/log-level.model.d.ts +0 -38
- package/src/app/shared/logging/logger.model.d.ts +0 -68
- package/src/app/shared/logging/logging-service.class.d.ts +0 -39
- package/src/app/shared/logging/logging-service.config.d.ts +0 -25
- package/src/app/shared/logging/logging-service.module.d.ts +0 -9
- package/src/app/shared/markdown/markdown.component.d.ts +0 -86
- package/src/app/shared/markdown/markdown.directive.d.ts +0 -13
- package/src/app/shared/markdown/markdown.modal.d.ts +0 -49
- package/src/app/shared/markdown/markdown.module.d.ts +0 -17
- package/src/app/shared/markdown/markdown.service.d.ts +0 -37
- package/src/app/shared/markdown/markdown.utils.d.ts +0 -26
- package/src/app/shared/markdown/testing/markdown.test.d.ts +0 -18
- package/src/app/shared/markdown/testing/markdown.testing.module.d.ts +0 -12
- package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +0 -74
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +0 -211
- package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +0 -22
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.d.ts +0 -5
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +0 -48
- package/src/app/shared/material/badge/badge.directive.d.ts +0 -43
- package/src/app/shared/material/badge/badge.module.d.ts +0 -10
- package/src/app/shared/material/badge/badge.test.d.ts +0 -21
- package/src/app/shared/material/boolean/boolean.module.d.ts +0 -20
- package/src/app/shared/material/boolean/material.boolean.d.ts +0 -93
- package/src/app/shared/material/boolean/testing/boolean.test.page.d.ts +0 -26
- package/src/app/shared/material/chips/chips.module.d.ts +0 -21
- package/src/app/shared/material/chips/material.chips.d.ts +0 -164
- package/src/app/shared/material/chips/testing/chips.test.d.ts +0 -32
- package/src/app/shared/material/datetime/datetime.module.d.ts +0 -24
- package/src/app/shared/material/datetime/material.date.d.ts +0 -90
- package/src/app/shared/material/datetime/material.dateshort.d.ts +0 -89
- package/src/app/shared/material/datetime/material.datetime.d.ts +0 -116
- package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +0 -37
- package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +0 -32
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +0 -31
- package/src/app/shared/material/duration/duration.module.d.ts +0 -18
- package/src/app/shared/material/duration/duration.utils.d.ts +0 -2
- package/src/app/shared/material/duration/material.duration.d.ts +0 -64
- package/src/app/shared/material/duration/testing/mat-duration.test.d.ts +0 -23
- package/src/app/shared/material/latlong/latlong.utils.d.ts +0 -59
- package/src/app/shared/material/latlong/material.latlong-input.d.ts +0 -85
- package/src/app/shared/material/latlong/material.latlong.d.ts +0 -90
- package/src/app/shared/material/latlong/material.latlong.module.d.ts +0 -21
- package/src/app/shared/material/latlong/testing/latlong.test.d.ts +0 -28
- package/src/app/shared/material/material.animations.d.ts +0 -8
- package/src/app/shared/material/material.config.d.ts +0 -3
- package/src/app/shared/material/material.module.d.ts +0 -45
- package/src/app/shared/material/material.testing.module.d.ts +0 -32
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +0 -12
- package/src/app/shared/material/stepper/material.stepper-i18n.d.ts +0 -10
- package/src/app/shared/material/swipe/material.swipe.d.ts +0 -89
- package/src/app/shared/material/swipe/swipe.module.d.ts +0 -16
- package/src/app/shared/material/swipe/testing/swipe.test.d.ts +0 -22
- package/src/app/shared/material/test/test-component.d.ts +0 -75
- package/src/app/shared/material/testing/common.test.d.ts +0 -25
- package/src/app/shared/material/text/testing/text-form.testing.d.ts +0 -19
- package/src/app/shared/material/text/text-form.component.d.ts +0 -66
- package/src/app/shared/material/text/text-form.module.d.ts +0 -16
- package/src/app/shared/modules.d.ts +0 -9
- package/src/app/shared/named-filter/named-filter-selector.component.d.ts +0 -62
- package/src/app/shared/named-filter/named-filter.model.d.ts +0 -32
- package/src/app/shared/named-filter/named-filter.module.d.ts +0 -13
- package/src/app/shared/named-filter/named-filter.service.d.ts +0 -32
- package/src/app/shared/named-filter/testing/named-filter-selector.testing.d.ts +0 -34
- package/src/app/shared/named-filter/testing/named-filter.testing.module.d.ts +0 -10
- package/src/app/shared/observables.d.ts +0 -30
- package/src/app/shared/pipes/arrays.pipe.d.ts +0 -82
- package/src/app/shared/pipes/badge.pipes.d.ts +0 -7
- package/src/app/shared/pipes/colors.pipe.d.ts +0 -9
- package/src/app/shared/pipes/date-diff-duration.pipe.d.ts +0 -25
- package/src/app/shared/pipes/date-format.pipe.d.ts +0 -35
- package/src/app/shared/pipes/date-from-now.pipe.d.ts +0 -12
- package/src/app/shared/pipes/dates.pipe.d.ts +0 -10
- package/src/app/shared/pipes/display-with.pipe.d.ts +0 -8
- package/src/app/shared/pipes/duration.pipe.d.ts +0 -23
- package/src/app/shared/pipes/file-size.pipe.d.ts +0 -30
- package/src/app/shared/pipes/form.pipes.d.ts +0 -69
- package/src/app/shared/pipes/highlight.pipe.d.ts +0 -11
- package/src/app/shared/pipes/html.pipes.d.ts +0 -22
- package/src/app/shared/pipes/latlong-format.pipe.d.ts +0 -20
- package/src/app/shared/pipes/maps.pipe.d.ts +0 -23
- package/src/app/shared/pipes/maskito.pipe.d.ts +0 -14
- package/src/app/shared/pipes/math.pipes.d.ts +0 -26
- package/src/app/shared/pipes/ng-init.pipe.d.ts +0 -8
- package/src/app/shared/pipes/number-format.pipe.d.ts +0 -9
- package/src/app/shared/pipes/observable.pipes.d.ts +0 -25
- package/src/app/shared/pipes/pipes.module.d.ts +0 -35
- package/src/app/shared/pipes/property.pipes.d.ts +0 -41
- package/src/app/shared/pipes/selection.pipes.d.ts +0 -62
- package/src/app/shared/pipes/string.pipes.d.ts +0 -68
- package/src/app/shared/pipes/translate-context.pipe.d.ts +0 -17
- package/src/app/shared/pipes/types.pipes.d.ts +0 -30
- package/src/app/shared/pipes/url.pipes.d.ts +0 -27
- package/src/app/shared/platforms.d.ts +0 -16
- package/src/app/shared/print/print.service.d.ts +0 -94
- package/src/app/shared/regexps.d.ts +0 -32
- package/src/app/shared/rx-state/rx-state.decorators.d.ts +0 -7
- package/src/app/shared/rx-state/rx-state.module.d.ts +0 -10
- package/src/app/shared/rx-state/rx-state.types.d.ts +0 -4
- package/src/app/shared/services/entity-service.class.d.ts +0 -75
- package/src/app/shared/services/job.utils.d.ts +0 -20
- package/src/app/shared/services/memory-entity-service.class.d.ts +0 -79
- package/src/app/shared/services/progress-bar.service.d.ts +0 -20
- package/src/app/shared/services/startable-observable-service.class.d.ts +0 -36
- package/src/app/shared/services/startable-service.class.d.ts +0 -37
- package/src/app/shared/services/translate-context.service.d.ts +0 -29
- package/src/app/shared/services/validator-service.class.d.ts +0 -11
- package/src/app/shared/services.d.ts +0 -17
- package/src/app/shared/shared-routing.module.d.ts +0 -23
- package/src/app/shared/shared.module.d.ts +0 -33
- package/src/app/shared/shared.testing.module.d.ts +0 -20
- package/src/app/shared/storage/storage-explorer.component.d.ts +0 -59
- package/src/app/shared/storage/storage-explorer.module.d.ts +0 -13
- package/src/app/shared/storage/storage-explorer.testing-routing.module.d.ts +0 -9
- package/src/app/shared/storage/storage-explorer.testing.module.d.ts +0 -10
- package/src/app/shared/storage/storage.service.d.ts +0 -22
- package/src/app/shared/storage/storage.utils.d.ts +0 -19
- package/src/app/shared/testing/maskito.test.d.ts +0 -10
- package/src/app/shared/testing/observable.test.d.ts +0 -25
- package/src/app/shared/testing/tests.page.d.ts +0 -20
- package/src/app/shared/toast/toast.testing.d.ts +0 -15
- package/src/app/shared/toast/toast.testing.module.d.ts +0 -12
- package/src/app/shared/toast/toasts.d.ts +0 -16
- package/src/app/shared/toolbar/modal-toolbar.d.ts +0 -21
- package/src/app/shared/toolbar/toolbar.d.ts +0 -70
- package/src/app/shared/toolbar/toolbar.module.d.ts +0 -16
- package/src/app/shared/types.d.ts +0 -36
- package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +0 -21
- package/src/app/shared/upload-file/testing/upload-file.testing.module.d.ts +0 -11
- package/src/app/shared/upload-file/upload-file-popover.component.d.ts +0 -41
- package/src/app/shared/upload-file/upload-file.component.d.ts +0 -50
- package/src/app/shared/upload-file/upload-file.model.d.ts +0 -30
- package/src/app/shared/validator/form-error-adapter.class.d.ts +0 -33
- package/src/app/shared/validator/validators.d.ts +0 -139
- package/src/app/shared/version/versions.d.ts +0 -26
- package/src/app/social/job/job.module.d.ts +0 -12
- package/src/app/social/job/progression/job-progression.component.d.ts +0 -23
- package/src/app/social/job/progression/job-progression.icon.d.ts +0 -62
- package/src/app/social/job/progression/job-progression.list.d.ts +0 -19
- package/src/app/social/job/progression/job-progression.model.d.ts +0 -10
- package/src/app/social/job/progression/job-progression.service.d.ts +0 -33
- package/src/app/social/job/testing/job-progression.testing.d.ts +0 -13
- package/src/app/social/job/testing/job-progression.testing.service.d.ts +0 -9
- package/src/app/social/job/testing/job.testing.module.d.ts +0 -11
- package/src/app/social/message/message.form.d.ts +0 -36
- package/src/app/social/message/message.modal.d.ts +0 -43
- package/src/app/social/message/message.model.d.ts +0 -33
- package/src/app/social/message/message.module.d.ts +0 -12
- package/src/app/social/message/message.service.d.ts +0 -32
- package/src/app/social/social.errors.d.ts +0 -9
- package/src/app/social/social.module.d.ts +0 -20
- package/src/app/social/social.testing.module.d.ts +0 -13
- package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +0 -32
- package/src/app/social/user-event/notification/user-event-notification.list.d.ts +0 -71
- package/src/app/social/user-event/testing/user-event.testing.d.ts +0 -35
- package/src/app/social/user-event/testing/user-event.testing.model.d.ts +0 -42
- package/src/app/social/user-event/testing/user-event.testing.module.d.ts +0 -11
- package/src/app/social/user-event/testing/user-event.testing.service.d.ts +0 -42
- package/src/app/social/user-event/user-event.model.d.ts +0 -44
- package/src/app/social/user-event/user-event.module.d.ts +0 -13
- package/src/app/social/user-event/user-event.service.d.ts +0 -124
- package/src/environments/environment.class.d.ts +0 -75
- package/src/environments/environment.d.ts +0 -2
- package/src/environments/environment.loader.d.ts +0 -24
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { noHtml } from '../functions';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/platform-browser";
|
|
5
|
-
/**
|
|
6
|
-
* Remove all HTML tags, from an input string
|
|
7
|
-
*/
|
|
8
|
-
export class NoHtmlPipe {
|
|
9
|
-
transform(value) {
|
|
10
|
-
return noHtml(value);
|
|
11
|
-
}
|
|
12
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoHtmlPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
13
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NoHtmlPipe, name: "noHtml" });
|
|
14
|
-
}
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoHtmlPipe, decorators: [{
|
|
16
|
-
type: Pipe,
|
|
17
|
-
args: [{
|
|
18
|
-
name: 'noHtml',
|
|
19
|
-
}]
|
|
20
|
-
}] });
|
|
21
|
-
/**
|
|
22
|
-
* SafeHtmlPipe is a custom Angular pipe designed to sanitize and transform
|
|
23
|
-
* potentially unsafe HTML content into safe HTML. It leverages the noHtml
|
|
24
|
-
* function to strip away any HTML tags from the input string, ensuring that
|
|
25
|
-
* the output string is safe for display in the frontend without risking
|
|
26
|
-
* security vulnerabilities like Cross-Site Scripting (XSS) attacks.
|
|
27
|
-
*
|
|
28
|
-
* This pipe can be used when there is a need to render user-generated or
|
|
29
|
-
* dynamically fetched HTML content safely within an Angular application.
|
|
30
|
-
*
|
|
31
|
-
* Methods:
|
|
32
|
-
* - transform: Accepts a string as input and returns a sanitized version
|
|
33
|
-
* of the string with HTML tags removed.
|
|
34
|
-
*/
|
|
35
|
-
export class SafeHtmlPipe {
|
|
36
|
-
sanitized;
|
|
37
|
-
constructor(sanitized) {
|
|
38
|
-
this.sanitized = sanitized;
|
|
39
|
-
}
|
|
40
|
-
transform(value) {
|
|
41
|
-
return this.sanitized.bypassSecurityTrustHtml(value);
|
|
42
|
-
}
|
|
43
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
44
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SafeHtmlPipe, name: "safeHtml" });
|
|
45
|
-
}
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SafeHtmlPipe, decorators: [{
|
|
47
|
-
type: Pipe,
|
|
48
|
-
args: [{
|
|
49
|
-
name: 'safeHtml',
|
|
50
|
-
}]
|
|
51
|
-
}], ctorParameters: () => [{ type: i1.DomSanitizer }] });
|
|
52
|
-
export class SafeStylePipe {
|
|
53
|
-
sanitized;
|
|
54
|
-
constructor(sanitized) {
|
|
55
|
-
this.sanitized = sanitized;
|
|
56
|
-
}
|
|
57
|
-
transform(value) {
|
|
58
|
-
return this.sanitized.bypassSecurityTrustStyle(value);
|
|
59
|
-
}
|
|
60
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SafeStylePipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
61
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: SafeStylePipe, name: "safeStyle" });
|
|
62
|
-
}
|
|
63
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SafeStylePipe, decorators: [{
|
|
64
|
-
type: Pipe,
|
|
65
|
-
args: [{
|
|
66
|
-
name: 'safeStyle',
|
|
67
|
-
}]
|
|
68
|
-
}], ctorParameters: () => [{ type: i1.DomSanitizer }] });
|
|
69
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHRtbC5waXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvc2hhcmVkL3BpcGVzL2h0bWwucGlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLGNBQWMsQ0FBQzs7O0FBTXRDOztHQUVHO0FBQ0gsTUFBTSxPQUFPLFVBQVU7SUFDckIsU0FBUyxDQUFDLEtBQWE7UUFDckIsT0FBTyxNQUFNLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDdkIsQ0FBQzt3R0FIVSxVQUFVO3NHQUFWLFVBQVU7OzRGQUFWLFVBQVU7a0JBTnRCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLFFBQVE7aUJBQ2Y7O0FBYUQ7Ozs7Ozs7Ozs7Ozs7R0FhRztBQUNILE1BQU0sT0FBTyxZQUFZO0lBQ0g7SUFBcEIsWUFBb0IsU0FBdUI7UUFBdkIsY0FBUyxHQUFULFNBQVMsQ0FBYztJQUFHLENBQUM7SUFDL0MsU0FBUyxDQUFDLEtBQWE7UUFDckIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLHVCQUF1QixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3ZELENBQUM7d0dBSlUsWUFBWTtzR0FBWixZQUFZOzs0RkFBWixZQUFZO2tCQWpCeEIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsVUFBVTtpQkFDakI7O0FBeUJELE1BQU0sT0FBTyxhQUFhO0lBQ0o7SUFBcEIsWUFBb0IsU0FBdUI7UUFBdkIsY0FBUyxHQUFULFNBQVMsQ0FBYztJQUFHLENBQUM7SUFDL0MsU0FBUyxDQUFDLEtBQWE7UUFDckIsT0FBTyxJQUFJLENBQUMsU0FBUyxDQUFDLHdCQUF3QixDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ3hELENBQUM7d0dBSlUsYUFBYTtzR0FBYixhQUFhOzs0RkFBYixhQUFhO2tCQUh6QixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxXQUFXO2lCQUNsQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFBpcGUsIFBpcGVUcmFuc2Zvcm0gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IG5vSHRtbCB9IGZyb20gJy4uL2Z1bmN0aW9ucyc7XG5pbXBvcnQgeyBEb21TYW5pdGl6ZXIsIFNhZmVIdG1sIH0gZnJvbSAnQGFuZ3VsYXIvcGxhdGZvcm0tYnJvd3Nlcic7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ25vSHRtbCcsXG59KVxuLyoqXG4gKiBSZW1vdmUgYWxsIEhUTUwgdGFncywgZnJvbSBhbiBpbnB1dCBzdHJpbmdcbiAqL1xuZXhwb3J0IGNsYXNzIE5vSHRtbFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKHZhbHVlOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiBub0h0bWwodmFsdWUpO1xuICB9XG59XG5cbkBQaXBlKHtcbiAgbmFtZTogJ3NhZmVIdG1sJyxcbn0pXG4vKipcbiAqIFNhZmVIdG1sUGlwZSBpcyBhIGN1c3RvbSBBbmd1bGFyIHBpcGUgZGVzaWduZWQgdG8gc2FuaXRpemUgYW5kIHRyYW5zZm9ybVxuICogcG90ZW50aWFsbHkgdW5zYWZlIEhUTUwgY29udGVudCBpbnRvIHNhZmUgSFRNTC4gSXQgbGV2ZXJhZ2VzIHRoZSBub0h0bWxcbiAqIGZ1bmN0aW9uIHRvIHN0cmlwIGF3YXkgYW55IEhUTUwgdGFncyBmcm9tIHRoZSBpbnB1dCBzdHJpbmcsIGVuc3VyaW5nIHRoYXRcbiAqIHRoZSBvdXRwdXQgc3RyaW5nIGlzIHNhZmUgZm9yIGRpc3BsYXkgaW4gdGhlIGZyb250ZW5kIHdpdGhvdXQgcmlza2luZ1xuICogc2VjdXJpdHkgdnVsbmVyYWJpbGl0aWVzIGxpa2UgQ3Jvc3MtU2l0ZSBTY3JpcHRpbmcgKFhTUykgYXR0YWNrcy5cbiAqXG4gKiBUaGlzIHBpcGUgY2FuIGJlIHVzZWQgd2hlbiB0aGVyZSBpcyBhIG5lZWQgdG8gcmVuZGVyIHVzZXItZ2VuZXJhdGVkIG9yXG4gKiBkeW5hbWljYWxseSBmZXRjaGVkIEhUTUwgY29udGVudCBzYWZlbHkgd2l0aGluIGFuIEFuZ3VsYXIgYXBwbGljYXRpb24uXG4gKlxuICogTWV0aG9kczpcbiAqIC0gdHJhbnNmb3JtOiBBY2NlcHRzIGEgc3RyaW5nIGFzIGlucHV0IGFuZCByZXR1cm5zIGEgc2FuaXRpemVkIHZlcnNpb25cbiAqICAgICAgICAgICAgICBvZiB0aGUgc3RyaW5nIHdpdGggSFRNTCB0YWdzIHJlbW92ZWQuXG4gKi9cbmV4cG9ydCBjbGFzcyBTYWZlSHRtbFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSBzYW5pdGl6ZWQ6IERvbVNhbml0aXplcikge31cbiAgdHJhbnNmb3JtKHZhbHVlOiBzdHJpbmcpOiBTYWZlSHRtbCB7XG4gICAgcmV0dXJuIHRoaXMuc2FuaXRpemVkLmJ5cGFzc1NlY3VyaXR5VHJ1c3RIdG1sKHZhbHVlKTtcbiAgfVxufVxuXG5AUGlwZSh7XG4gIG5hbWU6ICdzYWZlU3R5bGUnLFxufSlcbmV4cG9ydCBjbGFzcyBTYWZlU3R5bGVQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgc2FuaXRpemVkOiBEb21TYW5pdGl6ZXIpIHt9XG4gIHRyYW5zZm9ybSh2YWx1ZTogc3RyaW5nKTogU2FmZUh0bWwge1xuICAgIHJldHVybiB0aGlzLnNhbml0aXplZC5ieXBhc3NTZWN1cml0eVRydXN0U3R5bGUodmFsdWUpO1xuICB9XG59XG4iXX0=
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { formatLatitude, formatLongitude } from '../material/latlong/latlong.utils';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class LatitudeFormatPipe {
|
|
5
|
-
transform = formatLatitude;
|
|
6
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LatitudeFormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
7
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: LatitudeFormatPipe, name: "latitudeFormat" });
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LatitudeFormatPipe, decorators: [{
|
|
10
|
-
type: Pipe,
|
|
11
|
-
args: [{
|
|
12
|
-
name: 'latitudeFormat',
|
|
13
|
-
}]
|
|
14
|
-
}] });
|
|
15
|
-
export class LongitudeFormatPipe {
|
|
16
|
-
transform = formatLongitude;
|
|
17
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LongitudeFormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
18
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: LongitudeFormatPipe, name: "longitudeFormat" });
|
|
19
|
-
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LongitudeFormatPipe, decorators: [{
|
|
21
|
-
type: Pipe,
|
|
22
|
-
args: [{
|
|
23
|
-
name: 'longitudeFormat',
|
|
24
|
-
}]
|
|
25
|
-
}] });
|
|
26
|
-
/**
|
|
27
|
-
* @deprecated use 'latitudeFormat' or 'longitudeFormat' instead
|
|
28
|
-
*/
|
|
29
|
-
export class LatLongFormatPipe {
|
|
30
|
-
transform(value, opts) {
|
|
31
|
-
return (!opts || opts?.type === 'latitude' ? formatLatitude : formatLongitude)(value, opts);
|
|
32
|
-
}
|
|
33
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LatLongFormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
34
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: LatLongFormatPipe, name: "latLongFormat" });
|
|
35
|
-
}
|
|
36
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LatLongFormatPipe, decorators: [{
|
|
37
|
-
type: Pipe,
|
|
38
|
-
args: [{
|
|
39
|
-
name: 'latLongFormat',
|
|
40
|
-
}]
|
|
41
|
-
}] });
|
|
42
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGF0bG9uZy1mb3JtYXQucGlwZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvc2hhcmVkL3BpcGVzL2xhdGxvbmctZm9ybWF0LnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLGNBQWMsRUFBRSxlQUFlLEVBQXdCLE1BQU0sbUNBQW1DLENBQUM7O0FBSzFHLE1BQU0sT0FBTyxrQkFBa0I7SUFDN0IsU0FBUyxHQUFHLGNBQWMsQ0FBQzt3R0FEaEIsa0JBQWtCO3NHQUFsQixrQkFBa0I7OzRGQUFsQixrQkFBa0I7a0JBSDlCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLGdCQUFnQjtpQkFDdkI7O0FBUUQsTUFBTSxPQUFPLG1CQUFtQjtJQUM5QixTQUFTLEdBQUcsZUFBZSxDQUFDO3dHQURqQixtQkFBbUI7c0dBQW5CLG1CQUFtQjs7NEZBQW5CLG1CQUFtQjtrQkFIL0IsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsaUJBQWlCO2lCQUN4Qjs7QUFRRDs7R0FFRztBQUNILE1BQU0sT0FBTyxpQkFBaUI7SUFDNUIsU0FBUyxDQUFDLEtBQWEsRUFBRSxJQUF5RTtRQUNoRyxPQUFPLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxFQUFFLElBQUksS0FBSyxVQUFVLENBQUMsQ0FBQyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQzlGLENBQUM7d0dBSFUsaUJBQWlCO3NHQUFqQixpQkFBaUI7OzRGQUFqQixpQkFBaUI7a0JBTjdCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLGVBQWU7aUJBQ3RCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgZm9ybWF0TGF0aXR1ZGUsIGZvcm1hdExvbmdpdHVkZSwgTGF0TG9uZ0Zvcm1hdE9wdGlvbnMgfSBmcm9tICcuLi9tYXRlcmlhbC9sYXRsb25nL2xhdGxvbmcudXRpbHMnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdsYXRpdHVkZUZvcm1hdCcsXG59KVxuZXhwb3J0IGNsYXNzIExhdGl0dWRlRm9ybWF0UGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm0gPSBmb3JtYXRMYXRpdHVkZTtcbn1cblxuQFBpcGUoe1xuICBuYW1lOiAnbG9uZ2l0dWRlRm9ybWF0Jyxcbn0pXG5leHBvcnQgY2xhc3MgTG9uZ2l0dWRlRm9ybWF0UGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm0gPSBmb3JtYXRMb25naXR1ZGU7XG59XG5cbkBQaXBlKHtcbiAgbmFtZTogJ2xhdExvbmdGb3JtYXQnLFxufSlcbi8qKlxuICogQGRlcHJlY2F0ZWQgdXNlICdsYXRpdHVkZUZvcm1hdCcgb3IgJ2xvbmdpdHVkZUZvcm1hdCcgaW5zdGVhZFxuICovXG5leHBvcnQgY2xhc3MgTGF0TG9uZ0Zvcm1hdFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKHZhbHVlOiBudW1iZXIsIG9wdHM/OiBQYXJ0aWFsPExhdExvbmdGb3JtYXRPcHRpb25zPiAmIHsgdHlwZTogJ2xhdGl0dWRlJyB8ICdsb25naXR1ZGUnIH0pOiBzdHJpbmcgfCBQcm9taXNlPHN0cmluZz4ge1xuICAgIHJldHVybiAoIW9wdHMgfHwgb3B0cz8udHlwZSA9PT0gJ2xhdGl0dWRlJyA/IGZvcm1hdExhdGl0dWRlIDogZm9ybWF0TG9uZ2l0dWRlKSh2YWx1ZSwgb3B0cyk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { Injectable, Pipe } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class MapGetPipe {
|
|
4
|
-
transform(val, args) {
|
|
5
|
-
// No map: return default value (or undefined)
|
|
6
|
-
if (!val)
|
|
7
|
-
return args && args?.defaultValue;
|
|
8
|
-
const key = (args && typeof args === 'object' ? args.key : args);
|
|
9
|
-
// No key: return default value (or undefined)
|
|
10
|
-
if (key === null || key === undefined)
|
|
11
|
-
return args && args?.defaultValue;
|
|
12
|
-
return val[key];
|
|
13
|
-
}
|
|
14
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapGetPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
15
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MapGetPipe, name: "mapGet" });
|
|
16
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapGetPipe, providedIn: 'root' });
|
|
17
|
-
}
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapGetPipe, decorators: [{
|
|
19
|
-
type: Pipe,
|
|
20
|
-
args: [{
|
|
21
|
-
name: 'mapGet',
|
|
22
|
-
}]
|
|
23
|
-
}, {
|
|
24
|
-
type: Injectable,
|
|
25
|
-
args: [{ providedIn: 'root' }]
|
|
26
|
-
}] });
|
|
27
|
-
export class MapKeysPipe {
|
|
28
|
-
transform(map, defaultValue) {
|
|
29
|
-
if (!map)
|
|
30
|
-
return defaultValue;
|
|
31
|
-
return Object.keys(map);
|
|
32
|
-
}
|
|
33
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapKeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
34
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MapKeysPipe, name: "mapKeys" });
|
|
35
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapKeysPipe, providedIn: 'root' });
|
|
36
|
-
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapKeysPipe, decorators: [{
|
|
38
|
-
type: Pipe,
|
|
39
|
-
args: [{
|
|
40
|
-
name: 'mapKeys',
|
|
41
|
-
}]
|
|
42
|
-
}, {
|
|
43
|
-
type: Injectable,
|
|
44
|
-
args: [{ providedIn: 'root' }]
|
|
45
|
-
}] });
|
|
46
|
-
export class MapValuesPipe {
|
|
47
|
-
transform(map, defaultValue) {
|
|
48
|
-
if (!map)
|
|
49
|
-
return defaultValue;
|
|
50
|
-
return Object.values(map);
|
|
51
|
-
}
|
|
52
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapValuesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
53
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MapValuesPipe, name: "mapValues" });
|
|
54
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapValuesPipe, providedIn: 'root' });
|
|
55
|
-
}
|
|
56
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapValuesPipe, decorators: [{
|
|
57
|
-
type: Pipe,
|
|
58
|
-
args: [{
|
|
59
|
-
name: 'mapValues',
|
|
60
|
-
}]
|
|
61
|
-
}, {
|
|
62
|
-
type: Injectable,
|
|
63
|
-
args: [{ providedIn: 'root' }]
|
|
64
|
-
}] });
|
|
65
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFwcy5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9zaGFyZWQvcGlwZXMvbWFwcy5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFpQixNQUFNLGVBQWUsQ0FBQzs7QUFNaEUsTUFBTSxPQUFPLFVBQVU7SUFDckIsU0FBUyxDQUFtQixHQUFNLEVBQUUsSUFBd0Y7UUFDMUgsOENBQThDO1FBQzlDLElBQUksQ0FBQyxHQUFHO1lBQUUsT0FBTyxJQUFJLElBQUssSUFBWSxFQUFFLFlBQVksQ0FBQztRQUVyRCxNQUFNLEdBQUcsR0FBRyxDQUFDLElBQUksSUFBSSxPQUFPLElBQUksS0FBSyxRQUFRLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBUSxDQUFDO1FBRXhFLDhDQUE4QztRQUM5QyxJQUFJLEdBQUcsS0FBSyxJQUFJLElBQUksR0FBRyxLQUFLLFNBQVM7WUFBRSxPQUFPLElBQUksSUFBSyxJQUFZLEVBQUUsWUFBWSxDQUFDO1FBRWxGLE9BQU8sR0FBRyxDQUFDLEdBQUcsQ0FBTSxDQUFDO0lBQ3ZCLENBQUM7d0dBWFUsVUFBVTtzR0FBVixVQUFVOzRHQUFWLFVBQVUsY0FERyxNQUFNOzs0RkFDbkIsVUFBVTtrQkFKdEIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsUUFBUTtpQkFDZjs7a0JBQ0EsVUFBVTttQkFBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUU7O0FBbUJsQyxNQUFNLE9BQU8sV0FBVztJQUN0QixTQUFTLENBQUMsR0FBUSxFQUFFLFlBQW9CO1FBQ3RDLElBQUksQ0FBQyxHQUFHO1lBQUUsT0FBTyxZQUFZLENBQUM7UUFDOUIsT0FBTyxNQUFNLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQzFCLENBQUM7d0dBSlUsV0FBVztzR0FBWCxXQUFXOzRHQUFYLFdBQVcsY0FERSxNQUFNOzs0RkFDbkIsV0FBVztrQkFKdkIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsU0FBUztpQkFDaEI7O2tCQUNBLFVBQVU7bUJBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFOztBQVlsQyxNQUFNLE9BQU8sYUFBYTtJQUN4QixTQUFTLENBQW1CLEdBQW9CLEVBQUUsWUFBa0I7UUFDbEUsSUFBSSxDQUFDLEdBQUc7WUFBRSxPQUFPLFlBQVksQ0FBQztRQUM5QixPQUFPLE1BQU0sQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDNUIsQ0FBQzt3R0FKVSxhQUFhO3NHQUFiLGFBQWE7NEdBQWIsYUFBYSxjQURBLE1BQU07OzRGQUNuQixhQUFhO2tCQUp6QixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxXQUFXO2lCQUNsQjs7a0JBQ0EsVUFBVTttQkFBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlLCBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ21hcEdldCcsXG59KVxuQEluamVjdGFibGUoeyBwcm92aWRlZEluOiAncm9vdCcgfSlcbmV4cG9ydCBjbGFzcyBNYXBHZXRQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybTxUID0gYW55LCBSID0gYW55Pih2YWw6IFQsIGFyZ3M6IGtleW9mIFQgfCBzdHJpbmcgfCBudW1iZXIgfCB7IGtleToga2V5b2YgVCB8IHN0cmluZyB8IG51bWJlcjsgZGVmYXVsdFZhbHVlPzogYW55IH0pOiBSIHtcbiAgICAvLyBObyBtYXA6IHJldHVybiBkZWZhdWx0IHZhbHVlIChvciB1bmRlZmluZWQpXG4gICAgaWYgKCF2YWwpIHJldHVybiBhcmdzICYmIChhcmdzIGFzIGFueSk/LmRlZmF1bHRWYWx1ZTtcblxuICAgIGNvbnN0IGtleSA9IChhcmdzICYmIHR5cGVvZiBhcmdzID09PSAnb2JqZWN0JyA/IGFyZ3Mua2V5IDogYXJncykgYXMgYW55O1xuXG4gICAgLy8gTm8ga2V5OiByZXR1cm4gZGVmYXVsdCB2YWx1ZSAob3IgdW5kZWZpbmVkKVxuICAgIGlmIChrZXkgPT09IG51bGwgfHwga2V5ID09PSB1bmRlZmluZWQpIHJldHVybiBhcmdzICYmIChhcmdzIGFzIGFueSk/LmRlZmF1bHRWYWx1ZTtcblxuICAgIHJldHVybiB2YWxba2V5XSBhcyBSO1xuICB9XG59XG5cbkBQaXBlKHtcbiAgbmFtZTogJ21hcEtleXMnLFxufSlcbkBJbmplY3RhYmxlKHsgcHJvdmlkZWRJbjogJ3Jvb3QnIH0pXG5leHBvcnQgY2xhc3MgTWFwS2V5c1BpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKG1hcDogYW55LCBkZWZhdWx0VmFsdWU/OiBhbnlbXSk6IGFueVtdIHtcbiAgICBpZiAoIW1hcCkgcmV0dXJuIGRlZmF1bHRWYWx1ZTtcbiAgICByZXR1cm4gT2JqZWN0LmtleXMobWFwKTtcbiAgfVxufVxuXG5AUGlwZSh7XG4gIG5hbWU6ICdtYXBWYWx1ZXMnLFxufSlcbkBJbmplY3RhYmxlKHsgcHJvdmlkZWRJbjogJ3Jvb3QnIH0pXG5leHBvcnQgY2xhc3MgTWFwVmFsdWVzUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm08SyA9IGFueSwgViA9IGFueT4obWFwOiBhbnkgfCBNYXA8SywgVj4sIGRlZmF1bHRWYWx1ZT86IFZbXSk6IFZbXSB7XG4gICAgaWYgKCFtYXApIHJldHVybiBkZWZhdWx0VmFsdWU7XG4gICAgcmV0dXJuIE9iamVjdC52YWx1ZXMobWFwKTtcbiAgfVxufVxuIl19
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { isNilOrBlank, isNotNil } from '../functions';
|
|
3
|
-
import { maskitoEventHandler, maskitoWithPlaceholder } from '@maskito/kit';
|
|
4
|
-
import { getCaretPosition, getInputRangeFromCaretIndex, getInputSelectionRangesFromMask, selectInputRange } from '../inputs';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class MaskitoPlaceholderPipe {
|
|
7
|
-
transform(placeholder, mask, opts) {
|
|
8
|
-
if (isNilOrBlank(placeholder))
|
|
9
|
-
return { mask };
|
|
10
|
-
const plugins = [];
|
|
11
|
-
const preprocessors = [];
|
|
12
|
-
const postprocessors = [];
|
|
13
|
-
if (!opts?.noDefaults) {
|
|
14
|
-
const placeholderOptions = maskitoWithPlaceholder(placeholder, true);
|
|
15
|
-
plugins.push(...placeholderOptions.plugins);
|
|
16
|
-
preprocessors.push(...placeholderOptions.preprocessors);
|
|
17
|
-
postprocessors.push(...placeholderOptions.postprocessors);
|
|
18
|
-
}
|
|
19
|
-
plugins.push(...(opts?.plugins || []));
|
|
20
|
-
preprocessors.push(...(opts?.preprocessors || []));
|
|
21
|
-
postprocessors.push(...(opts?.postprocessors || []));
|
|
22
|
-
if (isNotNil(opts?.defaultPrefix)) {
|
|
23
|
-
plugins.push(maskitoPrefixPlugin(opts.defaultPrefix, placeholder));
|
|
24
|
-
}
|
|
25
|
-
plugins.push(maskitoAutoSelectByMaskPattern());
|
|
26
|
-
return {
|
|
27
|
-
overwriteMode: opts?.overwriteMode || 'replace',
|
|
28
|
-
plugins,
|
|
29
|
-
preprocessors,
|
|
30
|
-
postprocessors,
|
|
31
|
-
mask,
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MaskitoPlaceholderPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
35
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MaskitoPlaceholderPipe, name: "maskitoPlaceholder" });
|
|
36
|
-
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MaskitoPlaceholderPipe, decorators: [{
|
|
38
|
-
type: Pipe,
|
|
39
|
-
args: [{
|
|
40
|
-
name: 'maskitoPlaceholder',
|
|
41
|
-
}]
|
|
42
|
-
}] });
|
|
43
|
-
export function maskitoPrefixPlugin(prefix, placeholder) {
|
|
44
|
-
return maskitoEventHandler('focus', (element, options) => {
|
|
45
|
-
if (element.value === '') {
|
|
46
|
-
element.value = prefix;
|
|
47
|
-
element.dispatchEvent(new Event('input'));
|
|
48
|
-
}
|
|
49
|
-
else if (element.value === placeholder) {
|
|
50
|
-
element.value = prefix + placeholder.substring(prefix.length);
|
|
51
|
-
element.dispatchEvent(new Event('input'));
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
|
-
export function maskitoAutoSelectByMaskPattern() {
|
|
56
|
-
return maskitoEventHandler('click', (element, options) => {
|
|
57
|
-
if (options?.mask instanceof Array) {
|
|
58
|
-
const caretIndex = getCaretPosition(element);
|
|
59
|
-
const maskPatternInputRanges = getInputSelectionRangesFromMask(options.mask);
|
|
60
|
-
const selectedInputRange = getInputRangeFromCaretIndex(caretIndex, maskPatternInputRanges);
|
|
61
|
-
if (isNotNil(selectedInputRange)) {
|
|
62
|
-
selectInputRange(element, selectedInputRange[0], selectedInputRange[1] + 1);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
}
|
|
67
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFza2l0by5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9zaGFyZWQvcGlwZXMvbWFza2l0by5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3BELE9BQU8sRUFBRSxZQUFZLEVBQUUsUUFBUSxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBRXRELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsMkJBQTJCLEVBQUUsK0JBQStCLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxXQUFXLENBQUM7O0FBTzdILE1BQU0sT0FBTyxzQkFBc0I7SUFDakMsU0FBUyxDQUFDLFdBQW1CLEVBQUUsSUFBaUIsRUFBRSxJQUFvQztRQUNwRixJQUFJLFlBQVksQ0FBQyxXQUFXLENBQUM7WUFBRSxPQUFPLEVBQUUsSUFBSSxFQUFFLENBQUM7UUFFL0MsTUFBTSxPQUFPLEdBQUcsRUFBRSxDQUFDO1FBQ25CLE1BQU0sYUFBYSxHQUFHLEVBQUUsQ0FBQztRQUN6QixNQUFNLGNBQWMsR0FBRyxFQUFFLENBQUM7UUFFMUIsSUFBSSxDQUFDLElBQUksRUFBRSxVQUFVLEVBQUUsQ0FBQztZQUN0QixNQUFNLGtCQUFrQixHQUFHLHNCQUFzQixDQUFDLFdBQVcsRUFBRSxJQUFJLENBQUMsQ0FBQztZQUNyRSxPQUFPLENBQUMsSUFBSSxDQUFDLEdBQUcsa0JBQWtCLENBQUMsT0FBTyxDQUFDLENBQUM7WUFDNUMsYUFBYSxDQUFDLElBQUksQ0FBQyxHQUFHLGtCQUFrQixDQUFDLGFBQWEsQ0FBQyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxJQUFJLENBQUMsR0FBRyxrQkFBa0IsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUM1RCxDQUFDO1FBQ0QsT0FBTyxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMsSUFBSSxFQUFFLE9BQU8sSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQ3ZDLGFBQWEsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksRUFBRSxhQUFhLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQztRQUNuRCxjQUFjLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLEVBQUUsY0FBYyxJQUFJLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFFckQsSUFBSSxRQUFRLENBQUMsSUFBSSxFQUFFLGFBQWEsQ0FBQyxFQUFFLENBQUM7WUFDbEMsT0FBTyxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFLFdBQVcsQ0FBQyxDQUFDLENBQUM7UUFDckUsQ0FBQztRQUNELE9BQU8sQ0FBQyxJQUFJLENBQUMsOEJBQThCLEVBQUUsQ0FBQyxDQUFDO1FBRS9DLE9BQU87WUFDTCxhQUFhLEVBQUUsSUFBSSxFQUFFLGFBQWEsSUFBSSxTQUFTO1lBQy9DLE9BQU87WUFDUCxhQUFhO1lBQ2IsY0FBYztZQUNkLElBQUk7U0FDTCxDQUFDO0lBQ0osQ0FBQzt3R0E5QlUsc0JBQXNCO3NHQUF0QixzQkFBc0I7OzRGQUF0QixzQkFBc0I7a0JBSGxDLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLG9CQUFvQjtpQkFDM0I7O0FBa0NELE1BQU0sVUFBVSxtQkFBbUIsQ0FBQyxNQUFjLEVBQUUsV0FBb0I7SUFDdEUsT0FBTyxtQkFBbUIsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxPQUErQyxFQUFFLE9BQWlDLEVBQUUsRUFBRTtRQUN6SCxJQUFJLE9BQU8sQ0FBQyxLQUFLLEtBQUssRUFBRSxFQUFFLENBQUM7WUFDekIsT0FBTyxDQUFDLEtBQUssR0FBRyxNQUFNLENBQUM7WUFDdkIsT0FBTyxDQUFDLGFBQWEsQ0FBQyxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDO1FBQzVDLENBQUM7YUFBTSxJQUFJLE9BQU8sQ0FBQyxLQUFLLEtBQUssV0FBVyxFQUFFLENBQUM7WUFDekMsT0FBTyxDQUFDLEtBQUssR0FBRyxNQUFNLEdBQUcsV0FBVyxDQUFDLFNBQVMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDOUQsT0FBTyxDQUFDLGFBQWEsQ0FBQyxJQUFJLEtBQUssQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDO1FBQzVDLENBQUM7SUFDSCxDQUFDLENBQUMsQ0FBQztBQUNMLENBQUM7QUFFRCxNQUFNLFVBQVUsOEJBQThCO0lBQzVDLE9BQU8sbUJBQW1CLENBQUMsT0FBTyxFQUFFLENBQUMsT0FBK0MsRUFBRSxPQUFpQyxFQUFFLEVBQUU7UUFDekgsSUFBSSxPQUFPLEVBQUUsSUFBSSxZQUFZLEtBQUssRUFBRSxDQUFDO1lBQ25DLE1BQU0sVUFBVSxHQUFHLGdCQUFnQixDQUFDLE9BQU8sQ0FBQyxDQUFDO1lBQzdDLE1BQU0sc0JBQXNCLEdBQUcsK0JBQStCLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDO1lBQzdFLE1BQU0sa0JBQWtCLEdBQUcsMkJBQTJCLENBQUMsVUFBVSxFQUFFLHNCQUFzQixDQUFDLENBQUM7WUFDM0YsSUFBSSxRQUFRLENBQUMsa0JBQWtCLENBQUMsRUFBRSxDQUFDO2dCQUNqQyxnQkFBZ0IsQ0FBQyxPQUFPLEVBQUUsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLEVBQUUsa0JBQWtCLENBQUMsQ0FBQyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUM7WUFDOUUsQ0FBQztRQUNILENBQUM7SUFDSCxDQUFDLENBQUMsQ0FBQztBQUNMLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBpc05pbE9yQmxhbmssIGlzTm90TmlsIH0gZnJvbSAnLi4vZnVuY3Rpb25zJztcbmltcG9ydCB7IE1hc2tpdG9NYXNrLCBNYXNraXRvT3B0aW9ucywgTWFza2l0b1BsdWdpbiB9IGZyb20gJ0BtYXNraXRvL2NvcmUnO1xuaW1wb3J0IHsgbWFza2l0b0V2ZW50SGFuZGxlciwgbWFza2l0b1dpdGhQbGFjZWhvbGRlciB9IGZyb20gJ0BtYXNraXRvL2tpdCc7XG5pbXBvcnQgeyBnZXRDYXJldFBvc2l0aW9uLCBnZXRJbnB1dFJhbmdlRnJvbUNhcmV0SW5kZXgsIGdldElucHV0U2VsZWN0aW9uUmFuZ2VzRnJvbU1hc2ssIHNlbGVjdElucHV0UmFuZ2UgfSBmcm9tICcuLi9pbnB1dHMnO1xuXG5leHBvcnQgdHlwZSBNYXNraXRvUGxhY2Vob2xkZXJQaXBlT3B0aW9ucyA9IHsgZGVmYXVsdFByZWZpeD86IHN0cmluZzsgbm9EZWZhdWx0cz86IGJvb2xlYW4gfSAmIFBhcnRpYWw8TWFza2l0b09wdGlvbnM+O1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdtYXNraXRvUGxhY2Vob2xkZXInLFxufSlcbmV4cG9ydCBjbGFzcyBNYXNraXRvUGxhY2Vob2xkZXJQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybShwbGFjZWhvbGRlcjogc3RyaW5nLCBtYXNrOiBNYXNraXRvTWFzaywgb3B0cz86IE1hc2tpdG9QbGFjZWhvbGRlclBpcGVPcHRpb25zKTogTWFza2l0b09wdGlvbnMge1xuICAgIGlmIChpc05pbE9yQmxhbmsocGxhY2Vob2xkZXIpKSByZXR1cm4geyBtYXNrIH07XG5cbiAgICBjb25zdCBwbHVnaW5zID0gW107XG4gICAgY29uc3QgcHJlcHJvY2Vzc29ycyA9IFtdO1xuICAgIGNvbnN0IHBvc3Rwcm9jZXNzb3JzID0gW107XG5cbiAgICBpZiAoIW9wdHM/Lm5vRGVmYXVsdHMpIHtcbiAgICAgIGNvbnN0IHBsYWNlaG9sZGVyT3B0aW9ucyA9IG1hc2tpdG9XaXRoUGxhY2Vob2xkZXIocGxhY2Vob2xkZXIsIHRydWUpO1xuICAgICAgcGx1Z2lucy5wdXNoKC4uLnBsYWNlaG9sZGVyT3B0aW9ucy5wbHVnaW5zKTtcbiAgICAgIHByZXByb2Nlc3NvcnMucHVzaCguLi5wbGFjZWhvbGRlck9wdGlvbnMucHJlcHJvY2Vzc29ycyk7XG4gICAgICBwb3N0cHJvY2Vzc29ycy5wdXNoKC4uLnBsYWNlaG9sZGVyT3B0aW9ucy5wb3N0cHJvY2Vzc29ycyk7XG4gICAgfVxuICAgIHBsdWdpbnMucHVzaCguLi4ob3B0cz8ucGx1Z2lucyB8fCBbXSkpO1xuICAgIHByZXByb2Nlc3NvcnMucHVzaCguLi4ob3B0cz8ucHJlcHJvY2Vzc29ycyB8fCBbXSkpO1xuICAgIHBvc3Rwcm9jZXNzb3JzLnB1c2goLi4uKG9wdHM/LnBvc3Rwcm9jZXNzb3JzIHx8IFtdKSk7XG5cbiAgICBpZiAoaXNOb3ROaWwob3B0cz8uZGVmYXVsdFByZWZpeCkpIHtcbiAgICAgIHBsdWdpbnMucHVzaChtYXNraXRvUHJlZml4UGx1Z2luKG9wdHMuZGVmYXVsdFByZWZpeCwgcGxhY2Vob2xkZXIpKTtcbiAgICB9XG4gICAgcGx1Z2lucy5wdXNoKG1hc2tpdG9BdXRvU2VsZWN0QnlNYXNrUGF0dGVybigpKTtcblxuICAgIHJldHVybiB7XG4gICAgICBvdmVyd3JpdGVNb2RlOiBvcHRzPy5vdmVyd3JpdGVNb2RlIHx8ICdyZXBsYWNlJyxcbiAgICAgIHBsdWdpbnMsXG4gICAgICBwcmVwcm9jZXNzb3JzLFxuICAgICAgcG9zdHByb2Nlc3NvcnMsXG4gICAgICBtYXNrLFxuICAgIH07XG4gIH1cbn1cblxuZXhwb3J0IGZ1bmN0aW9uIG1hc2tpdG9QcmVmaXhQbHVnaW4ocHJlZml4OiBzdHJpbmcsIHBsYWNlaG9sZGVyPzogc3RyaW5nKTogTWFza2l0b1BsdWdpbiB7XG4gIHJldHVybiBtYXNraXRvRXZlbnRIYW5kbGVyKCdmb2N1cycsIChlbGVtZW50OiBIVE1MSW5wdXRFbGVtZW50IHwgSFRNTFRleHRBcmVhRWxlbWVudCwgb3B0aW9uczogUmVxdWlyZWQ8TWFza2l0b09wdGlvbnM+KSA9PiB7XG4gICAgaWYgKGVsZW1lbnQudmFsdWUgPT09ICcnKSB7XG4gICAgICBlbGVtZW50LnZhbHVlID0gcHJlZml4O1xuICAgICAgZWxlbWVudC5kaXNwYXRjaEV2ZW50KG5ldyBFdmVudCgnaW5wdXQnKSk7XG4gICAgfSBlbHNlIGlmIChlbGVtZW50LnZhbHVlID09PSBwbGFjZWhvbGRlcikge1xuICAgICAgZWxlbWVudC52YWx1ZSA9IHByZWZpeCArIHBsYWNlaG9sZGVyLnN1YnN0cmluZyhwcmVmaXgubGVuZ3RoKTtcbiAgICAgIGVsZW1lbnQuZGlzcGF0Y2hFdmVudChuZXcgRXZlbnQoJ2lucHV0JykpO1xuICAgIH1cbiAgfSk7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBtYXNraXRvQXV0b1NlbGVjdEJ5TWFza1BhdHRlcm4oKTogTWFza2l0b1BsdWdpbiB7XG4gIHJldHVybiBtYXNraXRvRXZlbnRIYW5kbGVyKCdjbGljaycsIChlbGVtZW50OiBIVE1MSW5wdXRFbGVtZW50IHwgSFRNTFRleHRBcmVhRWxlbWVudCwgb3B0aW9uczogUmVxdWlyZWQ8TWFza2l0b09wdGlvbnM+KSA9PiB7XG4gICAgaWYgKG9wdGlvbnM/Lm1hc2sgaW5zdGFuY2VvZiBBcnJheSkge1xuICAgICAgY29uc3QgY2FyZXRJbmRleCA9IGdldENhcmV0UG9zaXRpb24oZWxlbWVudCk7XG4gICAgICBjb25zdCBtYXNrUGF0dGVybklucHV0UmFuZ2VzID0gZ2V0SW5wdXRTZWxlY3Rpb25SYW5nZXNGcm9tTWFzayhvcHRpb25zLm1hc2spO1xuICAgICAgY29uc3Qgc2VsZWN0ZWRJbnB1dFJhbmdlID0gZ2V0SW5wdXRSYW5nZUZyb21DYXJldEluZGV4KGNhcmV0SW5kZXgsIG1hc2tQYXR0ZXJuSW5wdXRSYW5nZXMpO1xuICAgICAgaWYgKGlzTm90TmlsKHNlbGVjdGVkSW5wdXRSYW5nZSkpIHtcbiAgICAgICAgc2VsZWN0SW5wdXRSYW5nZShlbGVtZW50LCBzZWxlY3RlZElucHV0UmFuZ2VbMF0sIHNlbGVjdGVkSW5wdXRSYW5nZVsxXSArIDEpO1xuICAgICAgfVxuICAgIH1cbiAgfSk7XG59XG4iXX0=
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { Injectable, Pipe } from '@angular/core';
|
|
2
|
-
import { round } from '../functions';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class MathAbsPipe {
|
|
5
|
-
transform(val) {
|
|
6
|
-
if (val !== undefined && val !== null) {
|
|
7
|
-
return Math.abs(val);
|
|
8
|
-
}
|
|
9
|
-
else {
|
|
10
|
-
return val;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MathAbsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
14
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MathAbsPipe, name: "mathAbs" });
|
|
15
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MathAbsPipe, providedIn: 'root' });
|
|
16
|
-
}
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MathAbsPipe, decorators: [{
|
|
18
|
-
type: Pipe,
|
|
19
|
-
args: [{
|
|
20
|
-
name: 'mathAbs',
|
|
21
|
-
}]
|
|
22
|
-
}, {
|
|
23
|
-
type: Injectable,
|
|
24
|
-
args: [{ providedIn: 'root' }]
|
|
25
|
-
}] });
|
|
26
|
-
export class EvenPipe {
|
|
27
|
-
transform(val) {
|
|
28
|
-
return val % 2 === 0;
|
|
29
|
-
}
|
|
30
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EvenPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
31
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: EvenPipe, name: "even" });
|
|
32
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EvenPipe, providedIn: 'root' });
|
|
33
|
-
}
|
|
34
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EvenPipe, decorators: [{
|
|
35
|
-
type: Pipe,
|
|
36
|
-
args: [{
|
|
37
|
-
name: 'even',
|
|
38
|
-
}]
|
|
39
|
-
}, {
|
|
40
|
-
type: Injectable,
|
|
41
|
-
args: [{ providedIn: 'root' }]
|
|
42
|
-
}] });
|
|
43
|
-
export class OddPipe {
|
|
44
|
-
transform(val) {
|
|
45
|
-
return val % 2 !== 0;
|
|
46
|
-
}
|
|
47
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OddPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
48
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: OddPipe, name: "odd" });
|
|
49
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OddPipe, providedIn: 'root' });
|
|
50
|
-
}
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OddPipe, decorators: [{
|
|
52
|
-
type: Pipe,
|
|
53
|
-
args: [{
|
|
54
|
-
name: 'odd',
|
|
55
|
-
}]
|
|
56
|
-
}, {
|
|
57
|
-
type: Injectable,
|
|
58
|
-
args: [{ providedIn: 'root' }]
|
|
59
|
-
}] });
|
|
60
|
-
export class RoundPipe {
|
|
61
|
-
transform(val, nbDecimal) {
|
|
62
|
-
return round(val, nbDecimal);
|
|
63
|
-
}
|
|
64
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RoundPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
65
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: RoundPipe, name: "round" });
|
|
66
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RoundPipe, providedIn: 'root' });
|
|
67
|
-
}
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RoundPipe, decorators: [{
|
|
69
|
-
type: Pipe,
|
|
70
|
-
args: [{
|
|
71
|
-
name: 'round',
|
|
72
|
-
}]
|
|
73
|
-
}, {
|
|
74
|
-
type: Injectable,
|
|
75
|
-
args: [{ providedIn: 'root' }]
|
|
76
|
-
}] });
|
|
77
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWF0aC5waXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvc2hhcmVkL3BpcGVzL21hdGgucGlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ2hFLE9BQU8sRUFBRSxLQUFLLEVBQUUsTUFBTSxjQUFjLENBQUM7O0FBTXJDLE1BQU0sT0FBTyxXQUFXO0lBQ3RCLFNBQVMsQ0FBQyxHQUFXO1FBQ25CLElBQUksR0FBRyxLQUFLLFNBQVMsSUFBSSxHQUFHLEtBQUssSUFBSSxFQUFFLENBQUM7WUFDdEMsT0FBTyxJQUFJLENBQUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxDQUFDO1FBQ3ZCLENBQUM7YUFBTSxDQUFDO1lBQ04sT0FBTyxHQUFHLENBQUM7UUFDYixDQUFDO0lBQ0gsQ0FBQzt3R0FQVSxXQUFXO3NHQUFYLFdBQVc7NEdBQVgsV0FBVyxjQURFLE1BQU07OzRGQUNuQixXQUFXO2tCQUp2QixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxTQUFTO2lCQUNoQjs7a0JBQ0EsVUFBVTttQkFBQyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUU7O0FBZWxDLE1BQU0sT0FBTyxRQUFRO0lBQ25CLFNBQVMsQ0FBQyxHQUFXO1FBQ25CLE9BQU8sR0FBRyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDdkIsQ0FBQzt3R0FIVSxRQUFRO3NHQUFSLFFBQVE7NEdBQVIsUUFBUSxjQURLLE1BQU07OzRGQUNuQixRQUFRO2tCQUpwQixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxNQUFNO2lCQUNiOztrQkFDQSxVQUFVO21CQUFDLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRTs7QUFXbEMsTUFBTSxPQUFPLE9BQU87SUFDbEIsU0FBUyxDQUFDLEdBQVc7UUFDbkIsT0FBTyxHQUFHLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN2QixDQUFDO3dHQUhVLE9BQU87c0dBQVAsT0FBTzs0R0FBUCxPQUFPLGNBRE0sTUFBTTs7NEZBQ25CLE9BQU87a0JBSm5CLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLEtBQUs7aUJBQ1o7O2tCQUNBLFVBQVU7bUJBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFOztBQVdsQyxNQUFNLE9BQU8sU0FBUztJQUNwQixTQUFTLENBQUMsR0FBVyxFQUFFLFNBQWtCO1FBQ3ZDLE9BQU8sS0FBSyxDQUFDLEdBQUcsRUFBRSxTQUFTLENBQUMsQ0FBQztJQUMvQixDQUFDO3dHQUhVLFNBQVM7c0dBQVQsU0FBUzs0R0FBVCxTQUFTLGNBREksTUFBTTs7NEZBQ25CLFNBQVM7a0JBSnJCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLE9BQU87aUJBQ2Q7O2tCQUNBLFVBQVU7bUJBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSwgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgcm91bmQgfSBmcm9tICcuLi9mdW5jdGlvbnMnO1xuXG5AUGlwZSh7XG4gIG5hbWU6ICdtYXRoQWJzJyxcbn0pXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIE1hdGhBYnNQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybSh2YWw6IG51bWJlcik6IGFueSB7XG4gICAgaWYgKHZhbCAhPT0gdW5kZWZpbmVkICYmIHZhbCAhPT0gbnVsbCkge1xuICAgICAgcmV0dXJuIE1hdGguYWJzKHZhbCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB2YWw7XG4gICAgfVxuICB9XG59XG5cbkBQaXBlKHtcbiAgbmFtZTogJ2V2ZW4nLFxufSlcbkBJbmplY3RhYmxlKHsgcHJvdmlkZWRJbjogJ3Jvb3QnIH0pXG5leHBvcnQgY2xhc3MgRXZlblBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKHZhbDogbnVtYmVyKTogYW55IHtcbiAgICByZXR1cm4gdmFsICUgMiA9PT0gMDtcbiAgfVxufVxuXG5AUGlwZSh7XG4gIG5hbWU6ICdvZGQnLFxufSlcbkBJbmplY3RhYmxlKHsgcHJvdmlkZWRJbjogJ3Jvb3QnIH0pXG5leHBvcnQgY2xhc3MgT2RkUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm0odmFsOiBudW1iZXIpOiBhbnkge1xuICAgIHJldHVybiB2YWwgJSAyICE9PSAwO1xuICB9XG59XG5cbkBQaXBlKHtcbiAgbmFtZTogJ3JvdW5kJyxcbn0pXG5ASW5qZWN0YWJsZSh7IHByb3ZpZGVkSW46ICdyb290JyB9KVxuZXhwb3J0IGNsYXNzIFJvdW5kUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm0odmFsOiBudW1iZXIsIG5iRGVjaW1hbD86IG51bWJlcik6IGFueSB7XG4gICAgcmV0dXJuIHJvdW5kKHZhbCwgbmJEZWNpbWFsKTtcbiAgfVxufVxuIl19
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Directive, Output, EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class NgInitDirective {
|
|
4
|
-
ngInit = new EventEmitter();
|
|
5
|
-
ngOnInit() {
|
|
6
|
-
this.ngInit.emit();
|
|
7
|
-
}
|
|
8
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgInitDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
9
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: NgInitDirective, selector: "[ngInit]", outputs: { ngInit: "ngInit" }, ngImport: i0 });
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NgInitDirective, decorators: [{
|
|
12
|
-
type: Directive,
|
|
13
|
-
args: [{
|
|
14
|
-
selector: '[ngInit]',
|
|
15
|
-
}]
|
|
16
|
-
}], propDecorators: { ngInit: [{
|
|
17
|
-
type: Output
|
|
18
|
-
}] } });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctaW5pdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9zaGFyZWQvcGlwZXMvbmctaW5pdC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFLeEUsTUFBTSxPQUFPLGVBQWU7SUFFMUIsTUFBTSxHQUFHLElBQUksWUFBWSxFQUFPLENBQUM7SUFFakMsUUFBUTtRQUNOLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDckIsQ0FBQzt3R0FOVSxlQUFlOzRGQUFmLGVBQWU7OzRGQUFmLGVBQWU7a0JBSDNCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFVBQVU7aUJBQ3JCOzhCQUdDLE1BQU07c0JBREwsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgT25Jbml0LCBPdXRwdXQsIEV2ZW50RW1pdHRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbbmdJbml0XScsXG59KVxuZXhwb3J0IGNsYXNzIE5nSW5pdERpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIEBPdXRwdXQoKVxuICBuZ0luaXQgPSBuZXcgRXZlbnRFbWl0dGVyPGFueT4oKTtcblxuICBuZ09uSW5pdCgpIHtcbiAgICB0aGlzLm5nSW5pdC5lbWl0KCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { numberToString } from '../functions';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class NumberFormatPipe {
|
|
5
|
-
transform(val, opts) {
|
|
6
|
-
return numberToString(val, opts);
|
|
7
|
-
}
|
|
8
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumberFormatPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
9
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NumberFormatPipe, name: "numberFormat" });
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumberFormatPipe, decorators: [{
|
|
12
|
-
type: Pipe,
|
|
13
|
-
args: [{
|
|
14
|
-
name: 'numberFormat',
|
|
15
|
-
}]
|
|
16
|
-
}] });
|
|
17
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibnVtYmVyLWZvcm1hdC5waXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9zaGFyZWQvcGlwZXMvbnVtYmVyLWZvcm1hdC5waXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3BELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxjQUFjLENBQUM7O0FBSzlDLE1BQU0sT0FBTyxnQkFBZ0I7SUFDM0IsU0FBUyxDQUFDLEdBQVcsRUFBRSxJQUE0RDtRQUNqRixPQUFPLGNBQWMsQ0FBQyxHQUFHLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDbkMsQ0FBQzt3R0FIVSxnQkFBZ0I7c0dBQWhCLGdCQUFnQjs7NEZBQWhCLGdCQUFnQjtrQkFINUIsSUFBSTttQkFBQztvQkFDSixJQUFJLEVBQUUsY0FBYztpQkFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBudW1iZXJUb1N0cmluZyB9IGZyb20gJy4uL2Z1bmN0aW9ucyc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ251bWJlckZvcm1hdCcsXG59KVxuZXhwb3J0IGNsYXNzIE51bWJlckZvcm1hdFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKHZhbDogbnVtYmVyLCBvcHRzPzogSW50bC5OdW1iZXJGb3JtYXRPcHRpb25zICYgeyBmaXhlZERlY2ltYWxzPzogbnVtYmVyIH0pOiBzdHJpbmcgfCBQcm9taXNlPHN0cmluZz4ge1xuICAgIHJldHVybiBudW1iZXJUb1N0cmluZyh2YWwsIG9wdHMpO1xuICB9XG59XG4iXX0=
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { Pipe } from '@angular/core';
|
|
2
|
-
import { isObservable } from 'rxjs';
|
|
3
|
-
import { firstFalse, firstTrue } from '../observables';
|
|
4
|
-
import { first, map } from 'rxjs/operators';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class FirstTruePipe {
|
|
7
|
-
transform(value, opts) {
|
|
8
|
-
return firstTrue(value, opts, true);
|
|
9
|
-
}
|
|
10
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstTruePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
11
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: FirstTruePipe, name: "firstTrue" });
|
|
12
|
-
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstTruePipe, decorators: [{
|
|
14
|
-
type: Pipe,
|
|
15
|
-
args: [{
|
|
16
|
-
name: 'firstTrue',
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
export class FirstFalsePipe {
|
|
20
|
-
transform(value, opts) {
|
|
21
|
-
return firstFalse(value, opts, false);
|
|
22
|
-
}
|
|
23
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstFalsePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
24
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: FirstFalsePipe, name: "firstFalse" });
|
|
25
|
-
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstFalsePipe, decorators: [{
|
|
27
|
-
type: Pipe,
|
|
28
|
-
args: [{
|
|
29
|
-
name: 'firstFalse',
|
|
30
|
-
}]
|
|
31
|
-
}] });
|
|
32
|
-
export class FirstPipe {
|
|
33
|
-
transform(value) {
|
|
34
|
-
return value.pipe(first());
|
|
35
|
-
}
|
|
36
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
37
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: FirstPipe, name: "first" });
|
|
38
|
-
}
|
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FirstPipe, decorators: [{
|
|
40
|
-
type: Pipe,
|
|
41
|
-
args: [{
|
|
42
|
-
name: 'first',
|
|
43
|
-
}]
|
|
44
|
-
}] });
|
|
45
|
-
export class MapPipe {
|
|
46
|
-
transform(value, mapFn) {
|
|
47
|
-
if (isObservable(value)) {
|
|
48
|
-
return value.pipe(map(mapFn));
|
|
49
|
-
}
|
|
50
|
-
return mapFn(value);
|
|
51
|
-
}
|
|
52
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
53
|
-
static ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MapPipe, name: "map" });
|
|
54
|
-
}
|
|
55
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MapPipe, decorators: [{
|
|
56
|
-
type: Pipe,
|
|
57
|
-
args: [{
|
|
58
|
-
name: 'map',
|
|
59
|
-
}]
|
|
60
|
-
}] });
|
|
61
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YWJsZS5waXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvc2hhcmVkL3BpcGVzL29ic2VydmFibGUucGlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLElBQUksRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDcEQsT0FBTyxFQUFFLFlBQVksRUFBYyxNQUFNLE1BQU0sQ0FBQztBQUNoRCxPQUFPLEVBQUUsVUFBVSxFQUFnQixTQUFTLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNyRSxPQUFPLEVBQUUsS0FBSyxFQUFFLEdBQUcsRUFBRSxNQUFNLGdCQUFnQixDQUFDOztBQUs1QyxNQUFNLE9BQU8sYUFBYTtJQUN4QixTQUFTLENBQUMsS0FBMEIsRUFBRSxJQUFtQjtRQUN2RCxPQUFPLFNBQVMsQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ3RDLENBQUM7d0dBSFUsYUFBYTtzR0FBYixhQUFhOzs0RkFBYixhQUFhO2tCQUh6QixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxXQUFXO2lCQUNsQjs7QUFVRCxNQUFNLE9BQU8sY0FBYztJQUN6QixTQUFTLENBQUMsS0FBMEIsRUFBRSxJQUFtQjtRQUN2RCxPQUFPLFVBQVUsQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ3hDLENBQUM7d0dBSFUsY0FBYztzR0FBZCxjQUFjOzs0RkFBZCxjQUFjO2tCQUgxQixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxZQUFZO2lCQUNuQjs7QUFVRCxNQUFNLE9BQU8sU0FBUztJQUNwQixTQUFTLENBQVUsS0FBb0I7UUFDckMsT0FBTyxLQUFLLENBQUMsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7SUFDN0IsQ0FBQzt3R0FIVSxTQUFTO3NHQUFULFNBQVM7OzRGQUFULFNBQVM7a0JBSHJCLElBQUk7bUJBQUM7b0JBQ0osSUFBSSxFQUFFLE9BQU87aUJBQ2Q7O0FBVUQsTUFBTSxPQUFPLE9BQU87SUFHbEIsU0FBUyxDQUFPLEtBQXdCLEVBQUUsS0FBc0I7UUFDOUQsSUFBSSxZQUFZLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQztZQUN4QixPQUFPLEtBQUssQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUM7UUFDaEMsQ0FBQztRQUNELE9BQU8sS0FBSyxDQUFDLEtBQVUsQ0FBQyxDQUFDO0lBQzNCLENBQUM7d0dBUlUsT0FBTztzR0FBUCxPQUFPOzs0RkFBUCxPQUFPO2tCQUhuQixJQUFJO21CQUFDO29CQUNKLElBQUksRUFBRSxLQUFLO2lCQUNaIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGlwZSwgUGlwZVRyYW5zZm9ybSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgaXNPYnNlcnZhYmxlLCBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBmaXJzdEZhbHNlLCBGaXJzdE9wdGlvbnMsIGZpcnN0VHJ1ZSB9IGZyb20gJy4uL29ic2VydmFibGVzJztcbmltcG9ydCB7IGZpcnN0LCBtYXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBQaXBlKHtcbiAgbmFtZTogJ2ZpcnN0VHJ1ZScsXG59KVxuZXhwb3J0IGNsYXNzIEZpcnN0VHJ1ZVBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtKHZhbHVlOiBPYnNlcnZhYmxlPGJvb2xlYW4+LCBvcHRzPzogRmlyc3RPcHRpb25zKTogT2JzZXJ2YWJsZTxib29sZWFuPiB7XG4gICAgcmV0dXJuIGZpcnN0VHJ1ZSh2YWx1ZSwgb3B0cywgdHJ1ZSk7XG4gIH1cbn1cblxuQFBpcGUoe1xuICBuYW1lOiAnZmlyc3RGYWxzZScsXG59KVxuZXhwb3J0IGNsYXNzIEZpcnN0RmFsc2VQaXBlIGltcGxlbWVudHMgUGlwZVRyYW5zZm9ybSB7XG4gIHRyYW5zZm9ybSh2YWx1ZTogT2JzZXJ2YWJsZTxib29sZWFuPiwgb3B0cz86IEZpcnN0T3B0aW9ucyk6IE9ic2VydmFibGU8Ym9vbGVhbj4ge1xuICAgIHJldHVybiBmaXJzdEZhbHNlKHZhbHVlLCBvcHRzLCBmYWxzZSk7XG4gIH1cbn1cblxuQFBpcGUoe1xuICBuYW1lOiAnZmlyc3QnLFxufSlcbmV4cG9ydCBjbGFzcyBGaXJzdFBpcGUgaW1wbGVtZW50cyBQaXBlVHJhbnNmb3JtIHtcbiAgdHJhbnNmb3JtPFQgPSBhbnk+KHZhbHVlOiBPYnNlcnZhYmxlPFQ+KTogT2JzZXJ2YWJsZTxUPiB7XG4gICAgcmV0dXJuIHZhbHVlLnBpcGUoZmlyc3QoKSk7XG4gIH1cbn1cblxuQFBpcGUoe1xuICBuYW1lOiAnbWFwJyxcbn0pXG5leHBvcnQgY2xhc3MgTWFwUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICB0cmFuc2Zvcm08VCwgUj4odmFsdWU6IE9ic2VydmFibGU8VD4sIG1hcEZuOiAodmFsdWU6IFQpID0+IFIpOiBPYnNlcnZhYmxlPFI+O1xuICB0cmFuc2Zvcm08VCwgUj4odmFsdWU6IFQsIG1hcEZuOiAodmFsdWU6IFQpID0+IFIpOiBSO1xuICB0cmFuc2Zvcm08VCwgUj4odmFsdWU6IE9ic2VydmFibGU8VD4gfCBULCBtYXBGbjogKHZhbHVlOiBUKSA9PiBSKTogT2JzZXJ2YWJsZTxSPiB8IFIge1xuICAgIGlmIChpc09ic2VydmFibGUodmFsdWUpKSB7XG4gICAgICByZXR1cm4gdmFsdWUucGlwZShtYXAobWFwRm4pKTtcbiAgICB9XG4gICAgcmV0dXJuIG1hcEZuKHZhbHVlIGFzIFQpO1xuICB9XG59XG4iXX0=
|