@alfresco/adf-core 8.1.0-16295248176 → 8.1.0-16342534841
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/bundles/assets/adf-core/i18n/de.json +1 -1
- package/bundles/assets/adf-core/i18n/es.json +1 -1
- package/bundles/assets/adf-core/i18n/fr.json +1 -1
- package/bundles/assets/adf-core/i18n/it.json +1 -1
- package/bundles/assets/adf-core/i18n/pl.json +1 -1
- package/bundles/assets/adf-core/i18n/pt.json +1 -1
- package/esm2022/adf-core.mjs +5 -0
- package/esm2022/api/alfresco-adf-core-api.mjs +5 -0
- package/esm2022/api/index.mjs +20 -0
- package/esm2022/api/lib/adf-http-client.service.mjs +311 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.param-encoder.mjs +33 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.response-error.mjs +25 -0
- package/esm2022/api/lib/alfresco-api/alfresco-api.utils.mjs +80 -0
- package/esm2022/api/lib/interfaces.mjs +18 -0
- package/esm2022/api/lib/types.mjs +18 -0
- package/esm2022/auth/alfresco-adf-core-auth.mjs +5 -0
- package/esm2022/auth/authentication-interceptor/authentication.interceptor.mjs +56 -0
- package/esm2022/auth/authentication.mjs +19 -0
- package/esm2022/auth/index.mjs +19 -0
- package/esm2022/breadcrumbs/alfresco-adf-core-breadcrumbs.mjs +5 -0
- package/esm2022/breadcrumbs/components/breadcrumb/breadcrumb.component.mjs +82 -0
- package/esm2022/breadcrumbs/components/breadcrumb-item/breadcrumb-item.component.mjs +42 -0
- package/esm2022/breadcrumbs/directives/breadcrumb-focus.directive.mjs +44 -0
- package/esm2022/breadcrumbs/index.mjs +19 -0
- package/esm2022/feature-flags/alfresco-adf-core-feature-flags.mjs +5 -0
- package/esm2022/feature-flags/index.mjs +29 -0
- package/esm2022/feature-flags/lib/components/feature-flags-wrapper.mjs +36 -0
- package/esm2022/feature-flags/lib/components/feature-override-indicator.component.mjs +56 -0
- package/esm2022/feature-flags/lib/components/flags/flags.component.mjs +129 -0
- package/esm2022/feature-flags/lib/directives/features.directive.mjs +63 -0
- package/esm2022/feature-flags/lib/directives/not-features.directive.mjs +63 -0
- package/esm2022/feature-flags/lib/guards/is-feature-off.guard.mjs +38 -0
- package/esm2022/feature-flags/lib/guards/is-feature-on.guard.mjs +38 -0
- package/esm2022/feature-flags/lib/guards/is-flags-override-on.guard.mjs +40 -0
- package/esm2022/feature-flags/lib/interfaces/features.interface.mjs +24 -0
- package/esm2022/feature-flags/lib/mocks/features-service-mock.factory.mjs +62 -0
- package/esm2022/feature-flags/lib/providers/debug-feature-flags.provider.mjs +51 -0
- package/esm2022/feature-flags/lib/providers/dummy-feature-flags.provider.mjs +36 -0
- package/esm2022/feature-flags/lib/services/debug-features.service.mjs +94 -0
- package/esm2022/feature-flags/lib/services/dummy-features.service.mjs +40 -0
- package/esm2022/feature-flags/lib/services/flagset.parser.mjs +38 -0
- package/esm2022/feature-flags/lib/services/qa-features.helper.mjs +62 -0
- package/esm2022/feature-flags/lib/services/storage-features.service.mjs +126 -0
- package/esm2022/lib/about/about-extension-list/about-extension-list.component.mjs +51 -0
- package/esm2022/lib/about/about-license-list/about-license-list.component.mjs +51 -0
- package/esm2022/lib/about/about-module-list/module-list.component.mjs +51 -0
- package/esm2022/lib/about/about-package/package-list.component.mjs +65 -0
- package/esm2022/lib/about/about-panel.directive.mjs +37 -0
- package/esm2022/lib/about/about-repository-info/about-repository-info.component.mjs +59 -0
- package/esm2022/lib/about/about-repository-info/repository-info.interface.mjs +18 -0
- package/esm2022/lib/about/about-server-settings/about-server-settings.component.mjs +42 -0
- package/esm2022/lib/about/about-status-list/about-status-list.component.mjs +51 -0
- package/esm2022/lib/about/about.component.mjs +35 -0
- package/esm2022/lib/about/about.module.mjs +75 -0
- package/esm2022/lib/about/index.mjs +18 -0
- package/esm2022/lib/about/interfaces.mjs +18 -0
- package/esm2022/lib/about/public-api.mjs +28 -0
- package/esm2022/lib/app-config/app-config-storage-prefix.factory.mjs +51 -0
- package/esm2022/lib/app-config/app-config.loader.mjs +41 -0
- package/esm2022/lib/app-config/app-config.module.mjs +33 -0
- package/esm2022/lib/app-config/app-config.pipe.mjs +38 -0
- package/esm2022/lib/app-config/app-config.service.mjs +243 -0
- package/esm2022/lib/app-config/debug-app-config.service.mjs +44 -0
- package/esm2022/lib/app-config/index.mjs +18 -0
- package/esm2022/lib/app-config/provide-app-config.mjs +44 -0
- package/esm2022/lib/app-config/public-api.mjs +23 -0
- package/esm2022/lib/auth/authentication-interceptor/auth-bearer.interceptor.mjs +67 -0
- package/esm2022/lib/auth/basic-auth/basic-alfresco-auth.service.mjs +356 -0
- package/esm2022/lib/auth/basic-auth/content-auth.mjs +189 -0
- package/esm2022/lib/auth/basic-auth/process-auth.mjs +193 -0
- package/esm2022/lib/auth/guard/auth-guard-bpm.service.mjs +31 -0
- package/esm2022/lib/auth/guard/auth-guard-ecm.service.mjs +31 -0
- package/esm2022/lib/auth/guard/auth-guard-sso-role.service.mjs +57 -0
- package/esm2022/lib/auth/guard/auth-guard.mjs +53 -0
- package/esm2022/lib/auth/guard/auth-guard.service.mjs +113 -0
- package/esm2022/lib/auth/index.mjs +18 -0
- package/esm2022/lib/auth/interfaces/authentication-service.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/authentication.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/identity-group.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/identity-user.service.interface.mjs +18 -0
- package/esm2022/lib/auth/interfaces/openid-configuration.interface.mjs +18 -0
- package/esm2022/lib/auth/models/application-access.model.mjs +18 -0
- package/esm2022/lib/auth/models/identity-group.model.mjs +18 -0
- package/esm2022/lib/auth/models/identity-role.model.mjs +30 -0
- package/esm2022/lib/auth/models/identity-user.model.mjs +18 -0
- package/esm2022/lib/auth/models/oauth-config.model.mjs +18 -0
- package/esm2022/lib/auth/models/redirection.model.mjs +28 -0
- package/esm2022/lib/auth/models/user-access.model.mjs +18 -0
- package/esm2022/lib/auth/oidc/auth-config.mjs +19 -0
- package/esm2022/lib/auth/oidc/auth-config.service.mjs +110 -0
- package/esm2022/lib/auth/oidc/auth-routing.module.mjs +34 -0
- package/esm2022/lib/auth/oidc/auth.module.mjs +112 -0
- package/esm2022/lib/auth/oidc/auth.service.mjs +22 -0
- package/esm2022/lib/auth/oidc/oidc-auth.guard.mjs +37 -0
- package/esm2022/lib/auth/oidc/oidc-authentication.service.mjs +202 -0
- package/esm2022/lib/auth/oidc/public-api.mjs +24 -0
- package/esm2022/lib/auth/oidc/redirect-auth.service.mjs +267 -0
- package/esm2022/lib/auth/oidc/retry-login.service.mjs +66 -0
- package/esm2022/lib/auth/oidc/token.interceptor.mjs +62 -0
- package/esm2022/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.mjs +31 -0
- package/esm2022/lib/auth/public-api.mjs +44 -0
- package/esm2022/lib/auth/services/authentication.service.mjs +190 -0
- package/esm2022/lib/auth/services/base-authentication.service.mjs +99 -0
- package/esm2022/lib/auth/services/identity-group.service.mjs +269 -0
- package/esm2022/lib/auth/services/identity-role.service.mjs +99 -0
- package/esm2022/lib/auth/services/identity-user.service.mjs +443 -0
- package/esm2022/lib/auth/services/jwt-helper.service.mjs +205 -0
- package/esm2022/lib/auth/services/oauth2.service.mjs +69 -0
- package/esm2022/lib/auth/services/time-sync.service.mjs +83 -0
- package/esm2022/lib/auth/services/user-access.service.mjs +110 -0
- package/esm2022/lib/avatar/avatar.component.mjs +51 -0
- package/esm2022/lib/blank-page/blank-page.component.mjs +31 -0
- package/esm2022/lib/blank-page/blank-page.module.mjs +33 -0
- package/esm2022/lib/blank-page/index.mjs +18 -0
- package/esm2022/lib/blank-page/public-api.mjs +19 -0
- package/esm2022/lib/button/button.component.mjs +61 -0
- package/esm2022/lib/card-view/card-view.module.mjs +80 -0
- package/esm2022/lib/card-view/components/base-card-view.mjs +51 -0
- package/esm2022/lib/card-view/components/card-view/card-view.component.mjs +66 -0
- package/esm2022/lib/card-view/components/card-view-arrayitem/card-view-arrayitem.component.mjs +55 -0
- package/esm2022/lib/card-view/components/card-view-boolitem/card-view-boolitem.component.mjs +39 -0
- package/esm2022/lib/card-view/components/card-view-dateitem/card-view-dateitem.component.mjs +182 -0
- package/esm2022/lib/card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component.mjs +108 -0
- package/esm2022/lib/card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component.mjs +64 -0
- package/esm2022/lib/card-view/components/card-view-mapitem/card-view-mapitem.component.mjs +46 -0
- package/esm2022/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.mjs +137 -0
- package/esm2022/lib/card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component.mjs +113 -0
- package/esm2022/lib/card-view/components/card-view-textitem/card-view-textitem.component.mjs +239 -0
- package/esm2022/lib/card-view/components/card-view.components.mjs +28 -0
- package/esm2022/lib/card-view/index.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/base-card-view-update.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-arrayitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-boolitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-dateitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item-validator.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-item.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-keyvaluepairsitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-selectitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-textitem-pipe-property.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view-textitem-properties.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/card-view.interfaces.mjs +29 -0
- package/esm2022/lib/card-view/interfaces/click-notification.interface.mjs +18 -0
- package/esm2022/lib/card-view/interfaces/update-notification.interface.mjs +18 -0
- package/esm2022/lib/card-view/models/card-view-arrayitem.model.mjs +28 -0
- package/esm2022/lib/card-view/models/card-view-baseitem.model.mjs +64 -0
- package/esm2022/lib/card-view/models/card-view-boolitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-dateitem.model.mjs +58 -0
- package/esm2022/lib/card-view/models/card-view-datetimeitem.model.mjs +28 -0
- package/esm2022/lib/card-view/models/card-view-floatitem.model.mjs +33 -0
- package/esm2022/lib/card-view/models/card-view-intitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-keyvaluepairs.model.mjs +27 -0
- package/esm2022/lib/card-view/models/card-view-longitem.model.mjs +36 -0
- package/esm2022/lib/card-view/models/card-view-mapitem.model.mjs +32 -0
- package/esm2022/lib/card-view/models/card-view-selectitem.model.mjs +41 -0
- package/esm2022/lib/card-view/models/card-view-textitem.model.mjs +40 -0
- package/esm2022/lib/card-view/models/card-view.models.mjs +29 -0
- package/esm2022/lib/card-view/public-api.mjs +25 -0
- package/esm2022/lib/card-view/services/card-item-types.service.mjs +54 -0
- package/esm2022/lib/card-view/services/card-view-update.service.mjs +59 -0
- package/esm2022/lib/card-view/services/card-view.services.mjs +19 -0
- package/esm2022/lib/card-view/validators/card-view-item-float.validator.mjs +31 -0
- package/esm2022/lib/card-view/validators/card-view-item-int.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-length.validator.mjs +34 -0
- package/esm2022/lib/card-view/validators/card-view-item-long.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-match.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-minmax.validator.mjs +35 -0
- package/esm2022/lib/card-view/validators/card-view-item-only-positive-int.validator.mjs +32 -0
- package/esm2022/lib/card-view/validators/card-view-item-only-positive-long.validator.mjs +31 -0
- package/esm2022/lib/card-view/validators/card-view.validators.mjs +26 -0
- package/esm2022/lib/card-view/validators/validators.map.mjs +26 -0
- package/esm2022/lib/clipboard/clipboard.directive.mjs +98 -0
- package/esm2022/lib/clipboard/clipboard.module.mjs +34 -0
- package/esm2022/lib/clipboard/clipboard.service.mjs +103 -0
- package/esm2022/lib/clipboard/index.mjs +18 -0
- package/esm2022/lib/clipboard/public-api.mjs +21 -0
- package/esm2022/lib/comments/comment-list/comment-list.component.mjs +52 -0
- package/esm2022/lib/comments/comment-list/comment-list.module.mjs +33 -0
- package/esm2022/lib/comments/comment-list/index.mjs +18 -0
- package/esm2022/lib/comments/comment-list/public-api.mjs +19 -0
- package/esm2022/lib/comments/comments.component.mjs +132 -0
- package/esm2022/lib/comments/comments.module.mjs +33 -0
- package/esm2022/lib/comments/index.mjs +18 -0
- package/esm2022/lib/comments/interfaces/comments-service.interface.mjs +18 -0
- package/esm2022/lib/comments/interfaces/comments.token.mjs +19 -0
- package/esm2022/lib/comments/public-api.mjs +22 -0
- package/esm2022/lib/common/index.mjs +35 -0
- package/esm2022/lib/common/interface/search-component.interface.mjs +18 -0
- package/esm2022/lib/common/mock/app-config.service.mock.mjs +47 -0
- package/esm2022/lib/common/models/default-languages.model.mjs +36 -0
- package/esm2022/lib/common/models/log-levels.model.mjs +33 -0
- package/esm2022/lib/common/models/user-info-mode.enum.mjs +25 -0
- package/esm2022/lib/common/services/cookie.service.mjs +82 -0
- package/esm2022/lib/common/services/download.service.mjs +102 -0
- package/esm2022/lib/common/services/dynamic-component-mapper.service.mjs +89 -0
- package/esm2022/lib/common/services/highlight-transform.service.mjs +61 -0
- package/esm2022/lib/common/services/language-item.interface.mjs +18 -0
- package/esm2022/lib/common/services/log.service.mjs +171 -0
- package/esm2022/lib/common/services/page-title.service.mjs +63 -0
- package/esm2022/lib/common/services/sort-by-category.service.mjs +81 -0
- package/esm2022/lib/common/services/storage.service.mjs +143 -0
- package/esm2022/lib/common/services/thumbnail.service.mjs +194 -0
- package/esm2022/lib/common/services/url.service.mjs +45 -0
- package/esm2022/lib/common/services/user-preferences.service.mjs +238 -0
- package/esm2022/lib/common/utils/date-fns-adapter.mjs +115 -0
- package/esm2022/lib/common/utils/date-fns-utils.mjs +222 -0
- package/esm2022/lib/common/utils/datetime-fns-adapter.mjs +134 -0
- package/esm2022/lib/common/utils/file-utils.mjs +65 -0
- package/esm2022/lib/common/utils/index.mjs +18 -0
- package/esm2022/lib/common/utils/moment-date-adapter.mjs +202 -0
- package/esm2022/lib/common/utils/moment-date-formats.model.mjs +32 -0
- package/esm2022/lib/common/utils/object-utils.mjs +107 -0
- package/esm2022/lib/common/utils/public-api.mjs +25 -0
- package/esm2022/lib/common/utils/string-utils.mjs +45 -0
- package/esm2022/lib/context-menu/animations.mjs +33 -0
- package/esm2022/lib/context-menu/context-menu-list.component.mjs +91 -0
- package/esm2022/lib/context-menu/context-menu-overlay.mjs +25 -0
- package/esm2022/lib/context-menu/context-menu-overlay.service.mjs +109 -0
- package/esm2022/lib/context-menu/context-menu.directive.mjs +63 -0
- package/esm2022/lib/context-menu/context-menu.module.mjs +35 -0
- package/esm2022/lib/context-menu/context-menu.tokens.mjs +19 -0
- package/esm2022/lib/context-menu/index.mjs +18 -0
- package/esm2022/lib/context-menu/interfaces.mjs +18 -0
- package/esm2022/lib/context-menu/public-api.mjs +21 -0
- package/esm2022/lib/core.module.mjs +296 -0
- package/esm2022/lib/datatable/components/amount-cell/amount-cell.component.mjs +45 -0
- package/esm2022/lib/datatable/components/boolean-cell/boolean-cell.component.mjs +65 -0
- package/esm2022/lib/datatable/components/columns-selector/columns-search-filter.pipe.mjs +55 -0
- package/esm2022/lib/datatable/components/columns-selector/columns-selector.component.mjs +113 -0
- package/esm2022/lib/datatable/components/data-cell.event.mjs +31 -0
- package/esm2022/lib/datatable/components/data-row-action.event.mjs +34 -0
- package/esm2022/lib/datatable/components/datatable/datatable.component.mjs +914 -0
- package/esm2022/lib/datatable/components/datatable-cell/datatable-cell.component.mjs +126 -0
- package/esm2022/lib/datatable/components/datatable-row/datatable-row.component.mjs +98 -0
- package/esm2022/lib/datatable/components/date-cell/date-cell.component.mjs +78 -0
- package/esm2022/lib/datatable/components/empty-list/empty-list.component.mjs +60 -0
- package/esm2022/lib/datatable/components/filesize-cell/filesize-cell.component.mjs +49 -0
- package/esm2022/lib/datatable/components/icon-cell/icon-cell.component.mjs +67 -0
- package/esm2022/lib/datatable/components/json-cell/json-cell.component.mjs +86 -0
- package/esm2022/lib/datatable/components/location-cell/location-cell.component.mjs +69 -0
- package/esm2022/lib/datatable/components/mocks/datatable.mock.mjs +153 -0
- package/esm2022/lib/datatable/components/number-cell/number-cell.component.mjs +42 -0
- package/esm2022/lib/datatable/data/data-column.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-row-event.model.mjs +26 -0
- package/esm2022/lib/datatable/data/data-row-update.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-row.model.mjs +18 -0
- package/esm2022/lib/datatable/data/data-sorting.model.mjs +24 -0
- package/esm2022/lib/datatable/data/data-table.schema.mjs +132 -0
- package/esm2022/lib/datatable/data/datatable-adapter.mjs +18 -0
- package/esm2022/lib/datatable/data/object-datacolumn.model.mjs +46 -0
- package/esm2022/lib/datatable/data/object-datarow.model.mjs +41 -0
- package/esm2022/lib/datatable/data/object-datatable-adapter.mjs +134 -0
- package/esm2022/lib/datatable/data-column/data-column-header.component.mjs +45 -0
- package/esm2022/lib/datatable/data-column/data-column-list.component.mjs +36 -0
- package/esm2022/lib/datatable/data-column/data-column.component.mjs +114 -0
- package/esm2022/lib/datatable/data-column/index.mjs +18 -0
- package/esm2022/lib/datatable/data-column/public-api.mjs +20 -0
- package/esm2022/lib/datatable/datatable.module.mjs +161 -0
- package/esm2022/lib/datatable/directives/custom-empty-content-template.directive.mjs +35 -0
- package/esm2022/lib/datatable/directives/custom-loading-template.directive.mjs +30 -0
- package/esm2022/lib/datatable/directives/custom-no-permission-template.directive.mjs +35 -0
- package/esm2022/lib/datatable/directives/drop-zone.directive.mjs +89 -0
- package/esm2022/lib/datatable/directives/header-filter-template.directive.mjs +43 -0
- package/esm2022/lib/datatable/directives/loading-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/main-data-table-action-template.directive.mjs +43 -0
- package/esm2022/lib/datatable/directives/no-content-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/no-permission-template.directive.mjs +46 -0
- package/esm2022/lib/datatable/directives/resizable/resizable.directive.mjs +173 -0
- package/esm2022/lib/datatable/directives/resizable/resize-handle.directive.mjs +72 -0
- package/esm2022/lib/datatable/directives/resizable/types.mjs +18 -0
- package/esm2022/lib/datatable/index.mjs +18 -0
- package/esm2022/lib/datatable/public-api.mjs +55 -0
- package/esm2022/lib/datatable/services/datatable.service.mjs +33 -0
- package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.mjs +50 -0
- package/esm2022/lib/dialogs/confirm-dialog/confirm.dialog.module.mjs +38 -0
- package/esm2022/lib/dialogs/dialog/dialog-data.interface.mjs +18 -0
- package/esm2022/lib/dialogs/dialog/dialog.component.mjs +70 -0
- package/esm2022/lib/dialogs/dialog/dialog.model.mjs +22 -0
- package/esm2022/lib/dialogs/dialog/index.mjs +20 -0
- package/esm2022/lib/dialogs/edit-json/edit-json.dialog.mjs +52 -0
- package/esm2022/lib/dialogs/edit-json/edit-json.dialog.module.mjs +34 -0
- package/esm2022/lib/dialogs/index.mjs +18 -0
- package/esm2022/lib/dialogs/public-api.mjs +25 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.component.mjs +73 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.model.mjs +18 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes-dialog.module.mjs +33 -0
- package/esm2022/lib/dialogs/unsaved-changes-dialog/unsaved-changes.guard.mjs +64 -0
- package/esm2022/lib/directives/directive.module.mjs +56 -0
- package/esm2022/lib/directives/highlight.directive.mjs +67 -0
- package/esm2022/lib/directives/index.mjs +18 -0
- package/esm2022/lib/directives/infinite-select-scroll.directive.mjs +67 -0
- package/esm2022/lib/directives/logout.directive.mjs +72 -0
- package/esm2022/lib/directives/public-api.mjs +24 -0
- package/esm2022/lib/directives/tooltip-card/tooltip-card.component.mjs +60 -0
- package/esm2022/lib/directives/tooltip-card/tooltip-card.directive.mjs +104 -0
- package/esm2022/lib/directives/upload.directive.mjs +241 -0
- package/esm2022/lib/dynamic-chip-list/chip.mjs +18 -0
- package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.component.mjs +204 -0
- package/esm2022/lib/dynamic-chip-list/dynamic-chip-list.module.mjs +33 -0
- package/esm2022/lib/dynamic-chip-list/index.mjs +18 -0
- package/esm2022/lib/dynamic-chip-list/public-api.mjs +20 -0
- package/esm2022/lib/events/base-ui.event.mjs +21 -0
- package/esm2022/lib/events/base.event.mjs +29 -0
- package/esm2022/lib/events/index.mjs +18 -0
- package/esm2022/lib/events/public-api.mjs +19 -0
- package/esm2022/lib/form/components/form-base.component.mjs +212 -0
- package/esm2022/lib/form/components/form-custom-button.directive.mjs +30 -0
- package/esm2022/lib/form/components/form-field/form-field.component.mjs +142 -0
- package/esm2022/lib/form/components/form-renderer.component.mjs +161 -0
- package/esm2022/lib/form/components/form-section/form-section.component.mjs +46 -0
- package/esm2022/lib/form/components/helpers/buttons-visibility.mjs +37 -0
- package/esm2022/lib/form/components/inplace-form-input/inplace-form-input.component.mjs +37 -0
- package/esm2022/lib/form/components/middlewares/decimal-middleware.service.mjs +48 -0
- package/esm2022/lib/form/components/middlewares/middleware.mjs +19 -0
- package/esm2022/lib/form/components/widgets/amount/amount.widget.mjs +77 -0
- package/esm2022/lib/form/components/widgets/base-viewer/base-viewer.widget.mjs +59 -0
- package/esm2022/lib/form/components/widgets/checkbox/checkbox.widget.mjs +52 -0
- package/esm2022/lib/form/components/widgets/core/container-column.model.mjs +28 -0
- package/esm2022/lib/form/components/widgets/core/container.model.mjs +50 -0
- package/esm2022/lib/form/components/widgets/core/content-link.model.mjs +52 -0
- package/esm2022/lib/form/components/widgets/core/displayable-cm-properties.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/error-message.model.mjs +38 -0
- package/esm2022/lib/form/components/widgets/core/external-content-link.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/external-content.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-file-source.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-metadata.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-option.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-rule.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-selected-folder.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-templates.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field-types.mjs +74 -0
- package/esm2022/lib/form/components/widgets/core/form-field-utils.mjs +23 -0
- package/esm2022/lib/form/components/widgets/core/form-field-validator.mjs +268 -0
- package/esm2022/lib/form/components/widgets/core/form-field-variable-options.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-field.model.mjs +490 -0
- package/esm2022/lib/form/components/widgets/core/form-outcome-event.model.mjs +32 -0
- package/esm2022/lib/form/components/widgets/core/form-outcome.model.mjs +38 -0
- package/esm2022/lib/form/components/widgets/core/form-values.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-variable.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/form-widget.model.mjs +33 -0
- package/esm2022/lib/form/components/widgets/core/form.model.mjs +387 -0
- package/esm2022/lib/form/components/widgets/core/group.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/index.mjs +49 -0
- package/esm2022/lib/form/components/widgets/core/predefined-theme.mjs +115 -0
- package/esm2022/lib/form/components/widgets/core/process-form-model.interface.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/process-variable.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/tab.model.mjs +34 -0
- package/esm2022/lib/form/components/widgets/core/theme.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/core/upload-widget-content-link.model.mjs +27 -0
- package/esm2022/lib/form/components/widgets/core/widget-schema.model.mjs +18 -0
- package/esm2022/lib/form/components/widgets/date/date.widget.mjs +162 -0
- package/esm2022/lib/form/components/widgets/date-time/date-time.widget.mjs +153 -0
- package/esm2022/lib/form/components/widgets/decimal/decimal.component.mjs +53 -0
- package/esm2022/lib/form/components/widgets/display-text/display-text.schema.mjs +86 -0
- package/esm2022/lib/form/components/widgets/display-text/display-text.widget.mjs +46 -0
- package/esm2022/lib/form/components/widgets/display-text/index.mjs +19 -0
- package/esm2022/lib/form/components/widgets/error/error.component.mjs +92 -0
- package/esm2022/lib/form/components/widgets/header/header.schema.mjs +86 -0
- package/esm2022/lib/form/components/widgets/header/header.widget.mjs +42 -0
- package/esm2022/lib/form/components/widgets/header/index.mjs +19 -0
- package/esm2022/lib/form/components/widgets/hyperlink/hyperlink.widget.mjs +69 -0
- package/esm2022/lib/form/components/widgets/index.mjs +71 -0
- package/esm2022/lib/form/components/widgets/json/json.widget.mjs +66 -0
- package/esm2022/lib/form/components/widgets/multiline-text/multiline-text.widget.mjs +55 -0
- package/esm2022/lib/form/components/widgets/number/number.widget.mjs +71 -0
- package/esm2022/lib/form/components/widgets/reactive-widget.interface.mjs +18 -0
- package/esm2022/lib/form/components/widgets/text/text-mask.component.mjs +215 -0
- package/esm2022/lib/form/components/widgets/text/text.widget.mjs +65 -0
- package/esm2022/lib/form/components/widgets/unknown/unknown.widget.mjs +63 -0
- package/esm2022/lib/form/components/widgets/widget.component.mjs +110 -0
- package/esm2022/lib/form/events/form-error.event.mjs +24 -0
- package/esm2022/lib/form/events/form-field.event.mjs +24 -0
- package/esm2022/lib/form/events/form-rules.event.mjs +25 -0
- package/esm2022/lib/form/events/form-spinner.event.mjs +23 -0
- package/esm2022/lib/form/events/form.event.mjs +29 -0
- package/esm2022/lib/form/events/index.mjs +24 -0
- package/esm2022/lib/form/events/validate-form-field.event.mjs +24 -0
- package/esm2022/lib/form/events/validate-form.event.mjs +25 -0
- package/esm2022/lib/form/form-base.module.mjs +75 -0
- package/esm2022/lib/form/index.mjs +18 -0
- package/esm2022/lib/form/models/form-rules.model.mjs +77 -0
- package/esm2022/lib/form/models/task-process-variable.model.mjs +19 -0
- package/esm2022/lib/form/models/widget-visibility.model.mjs +104 -0
- package/esm2022/lib/form/pipes/field-style.pipe.mjs +45 -0
- package/esm2022/lib/form/pipes/index.mjs +18 -0
- package/esm2022/lib/form/public-api.mjs +35 -0
- package/esm2022/lib/form/services/form-rendering.service.mjs +53 -0
- package/esm2022/lib/form/services/form-validation-service.interface.mjs +18 -0
- package/esm2022/lib/form/services/form.service.mjs +86 -0
- package/esm2022/lib/form/services/widget-visibility.service.mjs +294 -0
- package/esm2022/lib/header/header.component.mjs +73 -0
- package/esm2022/lib/header/index.mjs +18 -0
- package/esm2022/lib/header/navbar/navbar-item.component.mjs +37 -0
- package/esm2022/lib/header/navbar/navbar.component.mjs +36 -0
- package/esm2022/lib/header/public-api.mjs +20 -0
- package/esm2022/lib/icon/icon.component.mjs +51 -0
- package/esm2022/lib/icon/icon.module.mjs +36 -0
- package/esm2022/lib/icon/index.mjs +18 -0
- package/esm2022/lib/icon/public-api.mjs +19 -0
- package/esm2022/lib/identity-user-info/identity-user-info.component.mjs +86 -0
- package/esm2022/lib/identity-user-info/identity-user-info.module.mjs +33 -0
- package/esm2022/lib/identity-user-info/index.mjs +18 -0
- package/esm2022/lib/identity-user-info/public-api.mjs +19 -0
- package/esm2022/lib/info-drawer/index.mjs +18 -0
- package/esm2022/lib/info-drawer/info-drawer-layout.component.mjs +71 -0
- package/esm2022/lib/info-drawer/info-drawer.component.mjs +113 -0
- package/esm2022/lib/info-drawer/info-drawer.module.mjs +53 -0
- package/esm2022/lib/info-drawer/public-api.mjs +20 -0
- package/esm2022/lib/interface/index.mjs +18 -0
- package/esm2022/lib/interface/injection.tokens.mjs +19 -0
- package/esm2022/lib/interface/public-api.mjs +18 -0
- package/esm2022/lib/language-menu/index.mjs +18 -0
- package/esm2022/lib/language-menu/language-menu.component.mjs +61 -0
- package/esm2022/lib/language-menu/language-menu.module.mjs +35 -0
- package/esm2022/lib/language-menu/language-picker.component.mjs +77 -0
- package/esm2022/lib/language-menu/public-api.mjs +21 -0
- package/esm2022/lib/language-menu/service/language.service.interface.mjs +18 -0
- package/esm2022/lib/language-menu/service/language.service.mjs +34 -0
- package/esm2022/lib/layout/components/header/header.component.mjs +99 -0
- package/esm2022/lib/layout/components/layout-container/layout-container.component.mjs +180 -0
- package/esm2022/lib/layout/components/sidebar-action/sidebar-action-menu.component.mjs +82 -0
- package/esm2022/lib/layout/components/sidenav-layout/sidenav-layout.component.mjs +145 -0
- package/esm2022/lib/layout/directives/sidenav-layout-content.directive.mjs +33 -0
- package/esm2022/lib/layout/directives/sidenav-layout-header.directive.mjs +33 -0
- package/esm2022/lib/layout/directives/sidenav-layout-navigation.directive.mjs +33 -0
- package/esm2022/lib/layout/index.mjs +18 -0
- package/esm2022/lib/layout/layout.module.mjs +72 -0
- package/esm2022/lib/layout/public-api.mjs +25 -0
- package/esm2022/lib/login/components/login/login.component.mjs +367 -0
- package/esm2022/lib/login/components/login-dialog/login-dialog-component-data.interface.mjs +18 -0
- package/esm2022/lib/login/components/login-dialog/login-dialog.component.mjs +57 -0
- package/esm2022/lib/login/components/login-dialog-panel/login-dialog-panel.component.mjs +48 -0
- package/esm2022/lib/login/directives/login-footer.directive.mjs +41 -0
- package/esm2022/lib/login/directives/login-header.directive.mjs +41 -0
- package/esm2022/lib/login/index.mjs +18 -0
- package/esm2022/lib/login/login.module.mjs +54 -0
- package/esm2022/lib/login/models/login-error.event.mjs +22 -0
- package/esm2022/lib/login/models/login-submit.event.mjs +32 -0
- package/esm2022/lib/login/models/login-success.event.mjs +24 -0
- package/esm2022/lib/login/public-api.mjs +27 -0
- package/esm2022/lib/material.module.mjs +254 -0
- package/esm2022/lib/mock/cookie.service.mock.mjs +43 -0
- package/esm2022/lib/mock/data-column.mock.mjs +73 -0
- package/esm2022/lib/mock/event.mock.mjs +39 -0
- package/esm2022/lib/mock/form/form-definition-readonly.mock.mjs +225 -0
- package/esm2022/lib/mock/form/form-definition-visibility.mock.mjs +347 -0
- package/esm2022/lib/mock/form/form-definition.mock.mjs +403 -0
- package/esm2022/lib/mock/form/form.component.mock.mjs +275 -0
- package/esm2022/lib/mock/form/form.service.mock.mjs +248 -0
- package/esm2022/lib/mock/form/widget-visibility.service.mock.mjs +1835 -0
- package/esm2022/lib/mock/index.mjs +18 -0
- package/esm2022/lib/mock/public-api.mjs +27 -0
- package/esm2022/lib/mock/translation.service.mock.mjs +44 -0
- package/esm2022/lib/models/comment.model.mjs +51 -0
- package/esm2022/lib/models/component.model.mjs +24 -0
- package/esm2022/lib/models/decimal-number.model.mjs +26 -0
- package/esm2022/lib/models/general-user.model.mjs +24 -0
- package/esm2022/lib/models/index.mjs +18 -0
- package/esm2022/lib/models/pagination.model.mjs +29 -0
- package/esm2022/lib/models/path.model.mjs +24 -0
- package/esm2022/lib/models/product-version.model.mjs +28 -0
- package/esm2022/lib/models/public-api.mjs +24 -0
- package/esm2022/lib/models/request-pagination.model.mjs +25 -0
- package/esm2022/lib/notifications/components/add-notification.stories.component.mjs +44 -0
- package/esm2022/lib/notifications/components/notification-history.component.mjs +138 -0
- package/esm2022/lib/notifications/helpers/notification.factory.mjs +43 -0
- package/esm2022/lib/notifications/index.mjs +18 -0
- package/esm2022/lib/notifications/models/notification.model.mjs +25 -0
- package/esm2022/lib/notifications/notification-history.module.mjs +35 -0
- package/esm2022/lib/notifications/public-api.mjs +23 -0
- package/esm2022/lib/notifications/services/notification.service.mjs +166 -0
- package/esm2022/lib/pagination/index.mjs +18 -0
- package/esm2022/lib/pagination/infinite-pagination.component.mjs +111 -0
- package/esm2022/lib/pagination/paginated-component.interface.mjs +18 -0
- package/esm2022/lib/pagination/pagination-component.interface.mjs +18 -0
- package/esm2022/lib/pagination/pagination.component.mjs +263 -0
- package/esm2022/lib/pagination/pagination.module.mjs +35 -0
- package/esm2022/lib/pagination/public-api.mjs +22 -0
- package/esm2022/lib/pipes/date-time.pipe.mjs +46 -0
- package/esm2022/lib/pipes/decimal-number.pipe.mjs +78 -0
- package/esm2022/lib/pipes/file-size.pipe.mjs +54 -0
- package/esm2022/lib/pipes/file-type.pipe.mjs +40 -0
- package/esm2022/lib/pipes/format-space.pipe.mjs +39 -0
- package/esm2022/lib/pipes/full-name.pipe.mjs +43 -0
- package/esm2022/lib/pipes/index.mjs +18 -0
- package/esm2022/lib/pipes/localized-date.pipe.mjs +70 -0
- package/esm2022/lib/pipes/multi-value.pipe.mjs +37 -0
- package/esm2022/lib/pipes/pipe.module.mjs +83 -0
- package/esm2022/lib/pipes/public-api.mjs +30 -0
- package/esm2022/lib/pipes/text-highlight.pipe.mjs +39 -0
- package/esm2022/lib/pipes/time-ago.pipe.mjs +65 -0
- package/esm2022/lib/pipes/truncate.pipe.mjs +33 -0
- package/esm2022/lib/pipes/user-initial.pipe.mjs +52 -0
- package/esm2022/lib/pipes/user-like.interface.mjs +18 -0
- package/esm2022/lib/progress/progress.component.mjs +90 -0
- package/esm2022/lib/search-text/animations.mjs +32 -0
- package/esm2022/lib/search-text/index.mjs +18 -0
- package/esm2022/lib/search-text/models/search-text-input.model.mjs +23 -0
- package/esm2022/lib/search-text/public-api.mjs +22 -0
- package/esm2022/lib/search-text/search-text-input.component.mjs +283 -0
- package/esm2022/lib/search-text/search-text-input.module.mjs +35 -0
- package/esm2022/lib/search-text/search-trigger.directive.mjs +181 -0
- package/esm2022/lib/snackbar-content/index.mjs +18 -0
- package/esm2022/lib/snackbar-content/public-api.mjs +20 -0
- package/esm2022/lib/snackbar-content/snack-bar-data.mjs +18 -0
- package/esm2022/lib/snackbar-content/snackbar-content.component.mjs +49 -0
- package/esm2022/lib/snackbar-content/snackbar-content.module.mjs +33 -0
- package/esm2022/lib/sorting-picker/index.mjs +18 -0
- package/esm2022/lib/sorting-picker/public-api.mjs +18 -0
- package/esm2022/lib/sorting-picker/sorting-picker.component.mjs +67 -0
- package/esm2022/lib/templates/empty-content/empty-content.component.mjs +43 -0
- package/esm2022/lib/templates/error-content/error-content.component.mjs +61 -0
- package/esm2022/lib/templates/index.mjs +18 -0
- package/esm2022/lib/templates/public-api.mjs +20 -0
- package/esm2022/lib/templates/template.module.mjs +38 -0
- package/esm2022/lib/testing/core.story.module.mjs +39 -0
- package/esm2022/lib/testing/core.testing.module.mjs +36 -0
- package/esm2022/lib/testing/index.mjs +22 -0
- package/esm2022/lib/testing/noop-auth.module.mjs +80 -0
- package/esm2022/lib/testing/noop-translate.module.mjs +75 -0
- package/esm2022/lib/testing/unit-testing-utils.mjs +364 -0
- package/esm2022/lib/toolbar/index.mjs +18 -0
- package/esm2022/lib/toolbar/public-api.mjs +21 -0
- package/esm2022/lib/toolbar/toolbar-divider.component.mjs +27 -0
- package/esm2022/lib/toolbar/toolbar-title.component.mjs +32 -0
- package/esm2022/lib/toolbar/toolbar.component.mjs +39 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +36 -0
- package/esm2022/lib/translation/index.mjs +18 -0
- package/esm2022/lib/translation/public-api.mjs +19 -0
- package/esm2022/lib/translation/translate-loader.service.mjs +153 -0
- package/esm2022/lib/translation/translation.service.mjs +148 -0
- package/esm2022/lib/viewer/components/download-prompt-dialog/download-prompt-dialog.component.mjs +36 -0
- package/esm2022/lib/viewer/components/img-viewer/img-viewer.component.mjs +220 -0
- package/esm2022/lib/viewer/components/media-player/media-player.component.mjs +64 -0
- package/esm2022/lib/viewer/components/pdf-viewer/pdf-viewer.component.mjs +550 -0
- package/esm2022/lib/viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog.mjs +60 -0
- package/esm2022/lib/viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component.mjs +48 -0
- package/esm2022/lib/viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component.mjs +198 -0
- package/esm2022/lib/viewer/components/txt-viewer/txt-viewer.component.mjs +85 -0
- package/esm2022/lib/viewer/components/unknown-format/unknown-format.component.mjs +32 -0
- package/esm2022/lib/viewer/components/viewer-more-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-open-with.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-render/viewer-render.component.mjs +216 -0
- package/esm2022/lib/viewer/components/viewer-sidebar.component.mjs +46 -0
- package/esm2022/lib/viewer/components/viewer-toolbar-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-toolbar-custom-actions.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer-toolbar.component.mjs +34 -0
- package/esm2022/lib/viewer/components/viewer.component.mjs +486 -0
- package/esm2022/lib/viewer/directives/viewer-extension.directive.mjs +67 -0
- package/esm2022/lib/viewer/index.mjs +18 -0
- package/esm2022/lib/viewer/models/download-prompt.actions.mjs +23 -0
- package/esm2022/lib/viewer/models/viewer.model.mjs +22 -0
- package/esm2022/lib/viewer/public-api.mjs +40 -0
- package/esm2022/lib/viewer/services/rendering-queue.services.mjs +179 -0
- package/esm2022/lib/viewer/services/view-util.service.mjs +149 -0
- package/esm2022/lib/viewer/viewer.module.mjs +110 -0
- package/esm2022/public-api.mjs +60 -0
- package/esm2022/shell/alfresco-adf-core-shell.mjs +5 -0
- package/esm2022/shell/index.mjs +21 -0
- package/esm2022/shell/lib/components/shell/shell.component.mjs +122 -0
- package/esm2022/shell/lib/services/shell-app.service.mjs +22 -0
- package/esm2022/shell/lib/shell.module.mjs +75 -0
- package/esm2022/shell/lib/shell.routes.mjs +50 -0
- package/feature-flags/lib/providers/debug-feature-flags.provider.d.ts +35 -4
- package/fesm2022/adf-core.mjs +1083 -1101
- package/fesm2022/adf-core.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-api.mjs +4 -4
- package/fesm2022/alfresco-adf-core-api.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-auth.mjs +3 -3
- package/fesm2022/alfresco-adf-core-auth.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-breadcrumbs.mjs +11 -11
- package/fesm2022/alfresco-adf-core-breadcrumbs.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-feature-flags.mjs +59 -52
- package/fesm2022/alfresco-adf-core-feature-flags.mjs.map +1 -1
- package/fesm2022/alfresco-adf-core-shell.mjs +14 -68
- package/fesm2022/alfresco-adf-core-shell.mjs.map +1 -1
- package/lib/app-config/provide-app-config.d.ts +2 -2
- package/lib/auth/oidc/auth.module.d.ts +4 -4
- package/lib/auth/oidc/view/authentication-confirmation/authentication-confirmation.component.d.ts +1 -1
- package/lib/card-view/components/base-card-view.d.ts +1 -1
- package/lib/card-view/components/card-view/card-view.component.scss +9 -12
- package/lib/card-view/components/card-view-selectitem/card-view-selectitem.component.scss +2 -1
- package/lib/card-view/components/card-view-textitem/card-view-textitem.component.scss +5 -2
- package/lib/datatable/data/data-table.schema.d.ts +1 -1
- package/lib/dialogs/confirm-dialog/confirm.dialog.d.ts +1 -1
- package/lib/dialogs/confirm-dialog/confirm.dialog.module.d.ts +6 -2
- package/lib/form/components/form-renderer.component.scss +4 -5
- package/lib/translation/public-api.d.ts +0 -1
- package/package.json +15 -3
- package/public-api.d.ts +0 -1
- package/shell/README.md +3 -13
- package/shell/index.d.ts +0 -1
- package/shell/lib/shell.module.d.ts +1 -1
- package/lib/landing-page/index.d.ts +0 -17
- package/lib/landing-page/provider.d.ts +0 -24
- package/lib/landing-page/public-api.d.ts +0 -17
- package/lib/translation/provide-i18n.d.ts +0 -39
- package/shell/lib/providers.d.ts +0 -36
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { NgModule } from '@angular/core';
|
|
18
|
+
import { TranslateLoader, provideTranslateService } from '@ngx-translate/core';
|
|
19
|
+
import { ABOUT_DIRECTIVES } from './about/about.module';
|
|
20
|
+
import { CARD_VIEW_DIRECTIVES } from './card-view/card-view.module';
|
|
21
|
+
import { CONTEXT_MENU_DIRECTIVES } from './context-menu/context-menu.module';
|
|
22
|
+
import { DATATABLE_DIRECTIVES } from './datatable/datatable.module';
|
|
23
|
+
import { INFO_DRAWER_DIRECTIVES } from './info-drawer/info-drawer.module';
|
|
24
|
+
import { LANGUAGE_MENU_DIRECTIVES } from './language-menu/language-menu.module';
|
|
25
|
+
import { LOGIN_DIRECTIVES } from './login/login.module';
|
|
26
|
+
import { PAGINATION_DIRECTIVES } from './pagination/pagination.module';
|
|
27
|
+
import { TOOLBAR_DIRECTIVES } from './toolbar/toolbar.module';
|
|
28
|
+
import { VIEWER_DIRECTIVES } from './viewer/viewer.module';
|
|
29
|
+
import { FormBaseModule } from './form/form-base.module';
|
|
30
|
+
import { LAYOUT_DIRECTIVES } from './layout/layout.module';
|
|
31
|
+
import { CommentsComponent } from './comments/comments.component';
|
|
32
|
+
import { CommentListComponent } from './comments/comment-list/comment-list.component';
|
|
33
|
+
import { TEMPLATE_DIRECTIVES } from './templates/template.module';
|
|
34
|
+
import { CLIPBOARD_DIRECTIVES } from './clipboard/clipboard.module';
|
|
35
|
+
import { NOTIFICATION_HISTORY_DIRECTIVES } from './notifications/notification-history.module';
|
|
36
|
+
import { BlankPageComponent } from './blank-page/blank-page.component';
|
|
37
|
+
import { CORE_DIRECTIVES } from './directives/directive.module';
|
|
38
|
+
import { CORE_PIPES } from './pipes/pipe.module';
|
|
39
|
+
import { TranslateLoaderService } from './translation/translate-loader.service';
|
|
40
|
+
import { SEARCH_TEXT_INPUT_DIRECTIVES } from './search-text/search-text-input.module';
|
|
41
|
+
import { AuthenticationInterceptor, Authentication } from '@alfresco/adf-core/auth';
|
|
42
|
+
import { HTTP_INTERCEPTORS, HttpClient, provideHttpClient, withXsrfConfiguration, withInterceptorsFromDi } from '@angular/common/http';
|
|
43
|
+
import { AuthenticationService } from './auth/services/authentication.service';
|
|
44
|
+
import { MAT_SNACK_BAR_DEFAULT_OPTIONS } from '@angular/material/snack-bar';
|
|
45
|
+
import { AppConfigPipe } from './app-config';
|
|
46
|
+
import { IconComponent } from './icon';
|
|
47
|
+
import { SortingPickerComponent } from './sorting-picker';
|
|
48
|
+
import { DynamicChipListComponent } from './dynamic-chip-list';
|
|
49
|
+
import { IdentityUserInfoComponent } from './identity-user-info';
|
|
50
|
+
import { UnsavedChangesDialogComponent } from './dialogs';
|
|
51
|
+
import { MaterialModule } from './material.module';
|
|
52
|
+
import { DecimalRenderMiddlewareService, FORM_FIELD_MODEL_RENDER_MIDDLEWARE } from './form';
|
|
53
|
+
import { provideAppConfig } from './app-config/provide-app-config';
|
|
54
|
+
import * as i0 from "@angular/core";
|
|
55
|
+
import * as i1 from "./about/about-extension-list/about-extension-list.component";
|
|
56
|
+
import * as i2 from "./about/about-license-list/about-license-list.component";
|
|
57
|
+
import * as i3 from "./about/about-module-list/module-list.component";
|
|
58
|
+
import * as i4 from "./about/about-repository-info/about-repository-info.component";
|
|
59
|
+
import * as i5 from "./about/about-package/package-list.component";
|
|
60
|
+
import * as i6 from "./about/about-status-list/about-status-list.component";
|
|
61
|
+
import * as i7 from "./about/about-server-settings/about-server-settings.component";
|
|
62
|
+
import * as i8 from "./about/about-panel.directive";
|
|
63
|
+
import * as i9 from "./about/about.component";
|
|
64
|
+
import * as i10 from "./viewer/components/pdf-viewer-password-dialog/pdf-viewer-password-dialog";
|
|
65
|
+
import * as i11 from "./viewer/components/viewer-render/viewer-render.component";
|
|
66
|
+
import * as i12 from "./viewer/components/img-viewer/img-viewer.component";
|
|
67
|
+
import * as i13 from "./viewer/components/txt-viewer/txt-viewer.component";
|
|
68
|
+
import * as i14 from "./viewer/components/media-player/media-player.component";
|
|
69
|
+
import * as i15 from "./viewer/components/pdf-viewer/pdf-viewer.component";
|
|
70
|
+
import * as i16 from "./viewer/components/pdf-viewer-thumb/pdf-viewer-thumb.component";
|
|
71
|
+
import * as i17 from "./viewer/components/pdf-viewer-thumbnails/pdf-viewer-thumbnails.component";
|
|
72
|
+
import * as i18 from "./viewer/directives/viewer-extension.directive";
|
|
73
|
+
import * as i19 from "./viewer/components/unknown-format/unknown-format.component";
|
|
74
|
+
import * as i20 from "./viewer/components/viewer-toolbar.component";
|
|
75
|
+
import * as i21 from "./viewer/components/viewer-sidebar.component";
|
|
76
|
+
import * as i22 from "./viewer/components/viewer-open-with.component";
|
|
77
|
+
import * as i23 from "./viewer/components/viewer-more-actions.component";
|
|
78
|
+
import * as i24 from "./viewer/components/viewer-toolbar-actions.component";
|
|
79
|
+
import * as i25 from "./viewer/components/viewer.component";
|
|
80
|
+
import * as i26 from "./viewer/components/viewer-toolbar-custom-actions.component";
|
|
81
|
+
import * as i27 from "./viewer/components/download-prompt-dialog/download-prompt-dialog.component";
|
|
82
|
+
import * as i28 from "./layout/directives/sidenav-layout-header.directive";
|
|
83
|
+
import * as i29 from "./layout/directives/sidenav-layout-content.directive";
|
|
84
|
+
import * as i30 from "./layout/directives/sidenav-layout-navigation.directive";
|
|
85
|
+
import * as i31 from "./layout/components/sidebar-action/sidebar-action-menu.component";
|
|
86
|
+
import * as i32 from "./layout/components/header/header.component";
|
|
87
|
+
import * as i33 from "./layout/components/layout-container/layout-container.component";
|
|
88
|
+
import * as i34 from "./layout/components/sidenav-layout/sidenav-layout.component";
|
|
89
|
+
import * as i35 from "./pipes/localized-date.pipe";
|
|
90
|
+
import * as i36 from "./pipes/time-ago.pipe";
|
|
91
|
+
import * as i37 from "./pipes/file-size.pipe";
|
|
92
|
+
import * as i38 from "./pipes/text-highlight.pipe";
|
|
93
|
+
import * as i39 from "./pipes/full-name.pipe";
|
|
94
|
+
import * as i40 from "./pipes/format-space.pipe";
|
|
95
|
+
import * as i41 from "./pipes/file-type.pipe";
|
|
96
|
+
import * as i42 from "./pipes/multi-value.pipe";
|
|
97
|
+
import * as i43 from "./pipes/decimal-number.pipe";
|
|
98
|
+
import * as i44 from "./pipes/date-time.pipe";
|
|
99
|
+
import * as i45 from "./pipes/user-initial.pipe";
|
|
100
|
+
import * as i46 from "./pipes/truncate.pipe";
|
|
101
|
+
import * as i47 from "./directives/highlight.directive";
|
|
102
|
+
import * as i48 from "./directives/logout.directive";
|
|
103
|
+
import * as i49 from "./directives/upload.directive";
|
|
104
|
+
import * as i50 from "./directives/tooltip-card/tooltip-card.directive";
|
|
105
|
+
import * as i51 from "./directives/tooltip-card/tooltip-card.component";
|
|
106
|
+
import * as i52 from "./directives/infinite-select-scroll.directive";
|
|
107
|
+
import * as i53 from "./pagination/infinite-pagination.component";
|
|
108
|
+
import * as i54 from "./pagination/pagination.component";
|
|
109
|
+
import * as i55 from "./toolbar/toolbar.component";
|
|
110
|
+
import * as i56 from "./toolbar/toolbar-title.component";
|
|
111
|
+
import * as i57 from "./toolbar/toolbar-divider.component";
|
|
112
|
+
import * as i58 from "./context-menu/context-menu-list.component";
|
|
113
|
+
import * as i59 from "./context-menu/context-menu.directive";
|
|
114
|
+
import * as i60 from "./card-view/components/card-view/card-view.component";
|
|
115
|
+
import * as i61 from "./card-view/components/card-view-boolitem/card-view-boolitem.component";
|
|
116
|
+
import * as i62 from "./card-view/components/card-view-dateitem/card-view-dateitem.component";
|
|
117
|
+
import * as i63 from "./card-view/components/card-view-mapitem/card-view-mapitem.component";
|
|
118
|
+
import * as i64 from "./card-view/components/card-view-textitem/card-view-textitem.component";
|
|
119
|
+
import * as i65 from "./card-view/components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component";
|
|
120
|
+
import * as i66 from "./card-view/components/card-view-selectitem/card-view-selectitem.component";
|
|
121
|
+
import * as i67 from "./card-view/components/card-view-item-dispatcher/card-view-item-dispatcher.component";
|
|
122
|
+
import * as i68 from "./card-view/components/card-view-arrayitem/card-view-arrayitem.component";
|
|
123
|
+
import * as i69 from "./card-view/components/card-view-selectitem/select-filter-input/select-filter-input.component";
|
|
124
|
+
import * as i70 from "./clipboard/clipboard.directive";
|
|
125
|
+
import * as i71 from "./login/components/login/login.component";
|
|
126
|
+
import * as i72 from "./login/directives/login-footer.directive";
|
|
127
|
+
import * as i73 from "./login/directives/login-header.directive";
|
|
128
|
+
import * as i74 from "./login/components/login-dialog/login-dialog.component";
|
|
129
|
+
import * as i75 from "./login/components/login-dialog-panel/login-dialog-panel.component";
|
|
130
|
+
import * as i76 from "./language-menu/language-menu.component";
|
|
131
|
+
import * as i77 from "./language-menu/language-picker.component";
|
|
132
|
+
import * as i78 from "./info-drawer/info-drawer-layout.component";
|
|
133
|
+
import * as i79 from "./info-drawer/info-drawer.component";
|
|
134
|
+
import * as i80 from "./datatable/components/boolean-cell/boolean-cell.component";
|
|
135
|
+
import * as i81 from "./datatable/components/amount-cell/amount-cell.component";
|
|
136
|
+
import * as i82 from "./datatable/components/number-cell/number-cell.component";
|
|
137
|
+
import * as i83 from "./datatable/components/location-cell/location-cell.component";
|
|
138
|
+
import * as i84 from "./datatable/components/date-cell/date-cell.component";
|
|
139
|
+
import * as i85 from "./datatable/components/icon-cell/icon-cell.component";
|
|
140
|
+
import * as i86 from "./datatable/components/columns-selector/columns-selector.component";
|
|
141
|
+
import * as i87 from "./datatable/data-column/data-column.component";
|
|
142
|
+
import * as i88 from "./datatable/data-column/data-column-list.component";
|
|
143
|
+
import * as i89 from "./datatable/data-column/data-column-header.component";
|
|
144
|
+
import * as i90 from "./datatable/directives/resizable/resizable.directive";
|
|
145
|
+
import * as i91 from "./datatable/directives/resizable/resize-handle.directive";
|
|
146
|
+
import * as i92 from "./datatable/directives/drop-zone.directive";
|
|
147
|
+
import * as i93 from "./datatable/components/empty-list/empty-list.component";
|
|
148
|
+
import * as i94 from "./datatable/components/filesize-cell/filesize-cell.component";
|
|
149
|
+
import * as i95 from "./datatable/components/json-cell/json-cell.component";
|
|
150
|
+
import * as i96 from "./datatable/directives/no-content-template.directive";
|
|
151
|
+
import * as i97 from "./datatable/directives/no-permission-template.directive";
|
|
152
|
+
import * as i98 from "./datatable/directives/loading-template.directive";
|
|
153
|
+
import * as i99 from "./datatable/directives/header-filter-template.directive";
|
|
154
|
+
import * as i100 from "./datatable/directives/custom-empty-content-template.directive";
|
|
155
|
+
import * as i101 from "./datatable/directives/custom-loading-template.directive";
|
|
156
|
+
import * as i102 from "./datatable/directives/custom-no-permission-template.directive";
|
|
157
|
+
import * as i103 from "./datatable/directives/main-data-table-action-template.directive";
|
|
158
|
+
import * as i104 from "./datatable/components/datatable-row/datatable-row.component";
|
|
159
|
+
import * as i105 from "./datatable/components/datatable-cell/datatable-cell.component";
|
|
160
|
+
import * as i106 from "./datatable/components/datatable/datatable.component";
|
|
161
|
+
import * as i107 from "./templates/error-content/error-content.component";
|
|
162
|
+
import * as i108 from "./templates/empty-content/empty-content.component";
|
|
163
|
+
import * as i109 from "./notifications/components/notification-history.component";
|
|
164
|
+
import * as i110 from "./notifications/components/add-notification.stories.component";
|
|
165
|
+
import * as i111 from "./search-text/search-text-input.component";
|
|
166
|
+
import * as i112 from "./search-text/search-trigger.directive";
|
|
167
|
+
export class CoreModule {
|
|
168
|
+
static forRoot() {
|
|
169
|
+
return {
|
|
170
|
+
ngModule: CoreModule,
|
|
171
|
+
providers: [
|
|
172
|
+
provideTranslateService({
|
|
173
|
+
loader: {
|
|
174
|
+
provide: TranslateLoader,
|
|
175
|
+
useClass: TranslateLoaderService,
|
|
176
|
+
deps: [HttpClient]
|
|
177
|
+
},
|
|
178
|
+
defaultLanguage: 'en'
|
|
179
|
+
}),
|
|
180
|
+
provideAppConfig(),
|
|
181
|
+
provideHttpClient(withInterceptorsFromDi(), withXsrfConfiguration({ cookieName: 'CSRF-TOKEN', headerName: 'X-CSRF-TOKEN' })),
|
|
182
|
+
{ provide: HTTP_INTERCEPTORS, useClass: AuthenticationInterceptor, multi: true },
|
|
183
|
+
{ provide: Authentication, useClass: AuthenticationService },
|
|
184
|
+
{
|
|
185
|
+
provide: MAT_SNACK_BAR_DEFAULT_OPTIONS,
|
|
186
|
+
useValue: {
|
|
187
|
+
duration: 10000
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
provide: FORM_FIELD_MODEL_RENDER_MIDDLEWARE,
|
|
192
|
+
useClass: DecimalRenderMiddlewareService,
|
|
193
|
+
multi: true
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* @deprecated this api is deprecated, import `CoreModule` instead
|
|
200
|
+
* @returns ModuleWithProviders<CoreModule>
|
|
201
|
+
*/
|
|
202
|
+
static forChild() {
|
|
203
|
+
return {
|
|
204
|
+
ngModule: CoreModule
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
208
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: CoreModule, imports: [i1.AboutExtensionListComponent, i2.AboutLicenseListComponent, i3.ModuleListComponent, i4.AboutRepositoryInfoComponent, i5.PackageListComponent, i6.AboutStatusListComponent, i7.AboutServerSettingsComponent, i8.AboutPanelDirective, i9.AboutComponent, i10.PdfPasswordDialogComponent, i11.ViewerRenderComponent, i12.ImgViewerComponent, i13.TxtViewerComponent, i14.MediaPlayerComponent, i15.PdfViewerComponent, i16.PdfThumbComponent, i17.PdfThumbListComponent, i18.ViewerExtensionDirective, i19.UnknownFormatComponent, i20.ViewerToolbarComponent, i21.ViewerSidebarComponent, i22.ViewerOpenWithComponent, i23.ViewerMoreActionsComponent, i24.ViewerToolbarActionsComponent, i25.ViewerComponent, i26.ViewerToolbarCustomActionsComponent, i27.DownloadPromptDialogComponent, i28.SidenavLayoutHeaderDirective, i29.SidenavLayoutContentDirective, i30.SidenavLayoutNavigationDirective, i31.SidebarMenuDirective, i31.SidebarMenuExpandIconDirective, i31.SidebarMenuTitleIconDirective, i32.HeaderLayoutComponent, i31.SidebarActionMenuComponent, i33.LayoutContainerComponent, i34.SidenavLayoutComponent, i35.LocalizedDatePipe, i36.TimeAgoPipe, i37.FileSizePipe, i38.HighlightPipe, i39.FullNamePipe, i40.FormatSpacePipe, i41.FileTypePipe, i42.MultiValuePipe, i43.DecimalNumberPipe, i44.DateTimePipe, i45.InitialUsernamePipe, i46.TruncatePipe, IdentityUserInfoComponent, i47.HighlightDirective, i48.LogoutDirective, i49.UploadDirective, i50.TooltipCardDirective, i51.TooltipCardComponent, i52.InfiniteSelectScrollDirective, AppConfigPipe, i53.InfinitePaginationComponent, i54.PaginationComponent, i55.ToolbarComponent, i56.ToolbarTitleComponent, i57.ToolbarDividerComponent, i58.ContextMenuListComponent, i59.ContextMenuDirective, i60.CardViewComponent, i61.CardViewBoolItemComponent, i62.CardViewDateItemComponent, i63.CardViewMapItemComponent, i64.CardViewTextItemComponent, i65.CardViewKeyValuePairsItemComponent, i66.CardViewSelectItemComponent, i67.CardViewItemDispatcherComponent, i68.CardViewArrayItemComponent, i69.SelectFilterInputComponent, FormBaseModule,
|
|
209
|
+
CommentsComponent,
|
|
210
|
+
CommentListComponent, i70.ClipboardDirective, i70.ClipboardComponent, i71.LoginComponent, i72.LoginFooterDirective, i73.LoginHeaderDirective, i74.LoginDialogComponent, i75.LoginDialogPanelComponent, i76.LanguageMenuComponent, i77.LanguagePickerComponent, i78.InfoDrawerLayoutComponent, i79.InfoDrawerTabComponent, i79.InfoDrawerComponent, i78.InfoDrawerTitleDirective, i78.InfoDrawerButtonsDirective, i78.InfoDrawerContentDirective, i80.BooleanCellComponent, i81.AmountCellComponent, i82.NumberCellComponent, i83.LocationCellComponent, i84.DateCellComponent, i85.IconCellComponent, i86.ColumnsSelectorComponent, i87.DataColumnComponent, i88.DataColumnListComponent, i89.DateColumnHeaderComponent, i35.LocalizedDatePipe, i90.ResizableDirective, i91.ResizeHandleDirective, i92.DropZoneDirective, i93.EmptyListComponent, i93.EmptyListHeaderDirective, i93.EmptyListBodyDirective, i93.EmptyListFooterDirective, i94.FileSizeCellComponent, i95.JsonCellComponent, i96.NoContentTemplateDirective, i97.NoPermissionTemplateDirective, i98.LoadingContentTemplateDirective, i99.HeaderFilterTemplateDirective, i100.CustomEmptyContentTemplateDirective, i101.CustomLoadingContentTemplateDirective, i102.CustomNoPermissionTemplateDirective, i103.MainMenuDataTableTemplateDirective, i104.DataTableRowComponent, i105.DataTableCellComponent, i106.DataTableComponent, i107.ErrorContentComponent, i108.EmptyContentComponent, IconComponent,
|
|
211
|
+
SortingPickerComponent, i109.NotificationHistoryComponent, i110.AddNotificationStorybookComponent, i111.SearchTextInputComponent, i112.SearchTriggerDirective, BlankPageComponent,
|
|
212
|
+
UnsavedChangesDialogComponent,
|
|
213
|
+
DynamicChipListComponent,
|
|
214
|
+
MaterialModule], exports: [i1.AboutExtensionListComponent, i2.AboutLicenseListComponent, i3.ModuleListComponent, i4.AboutRepositoryInfoComponent, i5.PackageListComponent, i6.AboutStatusListComponent, i7.AboutServerSettingsComponent, i8.AboutPanelDirective, i9.AboutComponent, i10.PdfPasswordDialogComponent, i11.ViewerRenderComponent, i12.ImgViewerComponent, i13.TxtViewerComponent, i14.MediaPlayerComponent, i15.PdfViewerComponent, i16.PdfThumbComponent, i17.PdfThumbListComponent, i18.ViewerExtensionDirective, i19.UnknownFormatComponent, i20.ViewerToolbarComponent, i21.ViewerSidebarComponent, i22.ViewerOpenWithComponent, i23.ViewerMoreActionsComponent, i24.ViewerToolbarActionsComponent, i25.ViewerComponent, i26.ViewerToolbarCustomActionsComponent, i27.DownloadPromptDialogComponent, i28.SidenavLayoutHeaderDirective, i29.SidenavLayoutContentDirective, i30.SidenavLayoutNavigationDirective, i31.SidebarMenuDirective, i31.SidebarMenuExpandIconDirective, i31.SidebarMenuTitleIconDirective, i32.HeaderLayoutComponent, i31.SidebarActionMenuComponent, i33.LayoutContainerComponent, i34.SidenavLayoutComponent, i35.LocalizedDatePipe, i36.TimeAgoPipe, i37.FileSizePipe, i38.HighlightPipe, i39.FullNamePipe, i40.FormatSpacePipe, i41.FileTypePipe, i42.MultiValuePipe, i43.DecimalNumberPipe, i44.DateTimePipe, i45.InitialUsernamePipe, i46.TruncatePipe, i47.HighlightDirective, i48.LogoutDirective, i49.UploadDirective, i50.TooltipCardDirective, i51.TooltipCardComponent, i52.InfiniteSelectScrollDirective, i70.ClipboardDirective, i70.ClipboardComponent, IdentityUserInfoComponent,
|
|
215
|
+
AppConfigPipe, i53.InfinitePaginationComponent, i54.PaginationComponent, i55.ToolbarComponent, i56.ToolbarTitleComponent, i57.ToolbarDividerComponent, i58.ContextMenuListComponent, i59.ContextMenuDirective, i60.CardViewComponent, i61.CardViewBoolItemComponent, i62.CardViewDateItemComponent, i63.CardViewMapItemComponent, i64.CardViewTextItemComponent, i65.CardViewKeyValuePairsItemComponent, i66.CardViewSelectItemComponent, i67.CardViewItemDispatcherComponent, i68.CardViewArrayItemComponent, i69.SelectFilterInputComponent, FormBaseModule,
|
|
216
|
+
CommentsComponent,
|
|
217
|
+
CommentListComponent, i71.LoginComponent, i72.LoginFooterDirective, i73.LoginHeaderDirective, i74.LoginDialogComponent, i75.LoginDialogPanelComponent, i76.LanguageMenuComponent, i77.LanguagePickerComponent, i78.InfoDrawerLayoutComponent, i79.InfoDrawerTabComponent, i79.InfoDrawerComponent, i78.InfoDrawerTitleDirective, i78.InfoDrawerButtonsDirective, i78.InfoDrawerContentDirective, i80.BooleanCellComponent, i81.AmountCellComponent, i82.NumberCellComponent, i83.LocationCellComponent, i84.DateCellComponent, i85.IconCellComponent, i86.ColumnsSelectorComponent, i87.DataColumnComponent, i88.DataColumnListComponent, i89.DateColumnHeaderComponent, i35.LocalizedDatePipe, i90.ResizableDirective, i91.ResizeHandleDirective, i92.DropZoneDirective, i93.EmptyListComponent, i93.EmptyListHeaderDirective, i93.EmptyListBodyDirective, i93.EmptyListFooterDirective, i94.FileSizeCellComponent, i95.JsonCellComponent, i96.NoContentTemplateDirective, i97.NoPermissionTemplateDirective, i98.LoadingContentTemplateDirective, i99.HeaderFilterTemplateDirective, i100.CustomEmptyContentTemplateDirective, i101.CustomLoadingContentTemplateDirective, i102.CustomNoPermissionTemplateDirective, i103.MainMenuDataTableTemplateDirective, i104.DataTableRowComponent, i105.DataTableCellComponent, i106.DataTableComponent, i107.ErrorContentComponent, i108.EmptyContentComponent, SortingPickerComponent,
|
|
218
|
+
IconComponent, i109.NotificationHistoryComponent, i110.AddNotificationStorybookComponent, i111.SearchTextInputComponent, i112.SearchTriggerDirective, BlankPageComponent,
|
|
219
|
+
UnsavedChangesDialogComponent,
|
|
220
|
+
DynamicChipListComponent,
|
|
221
|
+
MaterialModule] }); }
|
|
222
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CoreModule, providers: [...CORE_PIPES], imports: [i1.AboutExtensionListComponent, i2.AboutLicenseListComponent, i3.ModuleListComponent, i4.AboutRepositoryInfoComponent, i5.PackageListComponent, i6.AboutStatusListComponent, i7.AboutServerSettingsComponent, i9.AboutComponent, i10.PdfPasswordDialogComponent, i11.ViewerRenderComponent, i12.ImgViewerComponent, i15.PdfViewerComponent, i19.UnknownFormatComponent, i25.ViewerComponent, i27.DownloadPromptDialogComponent, i32.HeaderLayoutComponent, i31.SidebarActionMenuComponent, i33.LayoutContainerComponent, i34.SidenavLayoutComponent, IdentityUserInfoComponent, i51.TooltipCardComponent, PAGINATION_DIRECTIVES, i55.ToolbarComponent, i58.ContextMenuListComponent, i60.CardViewComponent, i61.CardViewBoolItemComponent, i62.CardViewDateItemComponent, i63.CardViewMapItemComponent, i64.CardViewTextItemComponent, i65.CardViewKeyValuePairsItemComponent, i66.CardViewSelectItemComponent, i68.CardViewArrayItemComponent, i69.SelectFilterInputComponent, FormBaseModule,
|
|
223
|
+
CommentsComponent,
|
|
224
|
+
CommentListComponent, i71.LoginComponent, i74.LoginDialogComponent, i75.LoginDialogPanelComponent, LANGUAGE_MENU_DIRECTIVES, i78.InfoDrawerLayoutComponent, i79.InfoDrawerComponent, i80.BooleanCellComponent, i81.AmountCellComponent, i82.NumberCellComponent, i83.LocationCellComponent, i84.DateCellComponent, i85.IconCellComponent, i86.ColumnsSelectorComponent, i94.FileSizeCellComponent, i95.JsonCellComponent, i105.DataTableCellComponent, i106.DataTableComponent, TEMPLATE_DIRECTIVES, IconComponent,
|
|
225
|
+
SortingPickerComponent, NOTIFICATION_HISTORY_DIRECTIVES, i111.SearchTextInputComponent, UnsavedChangesDialogComponent,
|
|
226
|
+
DynamicChipListComponent,
|
|
227
|
+
MaterialModule, FormBaseModule,
|
|
228
|
+
MaterialModule] }); }
|
|
229
|
+
}
|
|
230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CoreModule, decorators: [{
|
|
231
|
+
type: NgModule,
|
|
232
|
+
args: [{
|
|
233
|
+
imports: [
|
|
234
|
+
...ABOUT_DIRECTIVES,
|
|
235
|
+
...VIEWER_DIRECTIVES,
|
|
236
|
+
...LAYOUT_DIRECTIVES,
|
|
237
|
+
...CORE_PIPES,
|
|
238
|
+
IdentityUserInfoComponent,
|
|
239
|
+
...CORE_DIRECTIVES,
|
|
240
|
+
AppConfigPipe,
|
|
241
|
+
...PAGINATION_DIRECTIVES,
|
|
242
|
+
...TOOLBAR_DIRECTIVES,
|
|
243
|
+
...CONTEXT_MENU_DIRECTIVES,
|
|
244
|
+
...CARD_VIEW_DIRECTIVES,
|
|
245
|
+
FormBaseModule,
|
|
246
|
+
CommentsComponent,
|
|
247
|
+
CommentListComponent,
|
|
248
|
+
...CLIPBOARD_DIRECTIVES,
|
|
249
|
+
...LOGIN_DIRECTIVES,
|
|
250
|
+
...LANGUAGE_MENU_DIRECTIVES,
|
|
251
|
+
...INFO_DRAWER_DIRECTIVES,
|
|
252
|
+
...DATATABLE_DIRECTIVES,
|
|
253
|
+
...TEMPLATE_DIRECTIVES,
|
|
254
|
+
IconComponent,
|
|
255
|
+
SortingPickerComponent,
|
|
256
|
+
...NOTIFICATION_HISTORY_DIRECTIVES,
|
|
257
|
+
...SEARCH_TEXT_INPUT_DIRECTIVES,
|
|
258
|
+
BlankPageComponent,
|
|
259
|
+
UnsavedChangesDialogComponent,
|
|
260
|
+
DynamicChipListComponent,
|
|
261
|
+
MaterialModule
|
|
262
|
+
],
|
|
263
|
+
providers: [...CORE_PIPES],
|
|
264
|
+
exports: [
|
|
265
|
+
...ABOUT_DIRECTIVES,
|
|
266
|
+
...VIEWER_DIRECTIVES,
|
|
267
|
+
...LAYOUT_DIRECTIVES,
|
|
268
|
+
...CORE_PIPES,
|
|
269
|
+
...CORE_DIRECTIVES,
|
|
270
|
+
...CLIPBOARD_DIRECTIVES,
|
|
271
|
+
IdentityUserInfoComponent,
|
|
272
|
+
AppConfigPipe,
|
|
273
|
+
...PAGINATION_DIRECTIVES,
|
|
274
|
+
...TOOLBAR_DIRECTIVES,
|
|
275
|
+
...CONTEXT_MENU_DIRECTIVES,
|
|
276
|
+
...CARD_VIEW_DIRECTIVES,
|
|
277
|
+
FormBaseModule,
|
|
278
|
+
CommentsComponent,
|
|
279
|
+
CommentListComponent,
|
|
280
|
+
...LOGIN_DIRECTIVES,
|
|
281
|
+
...LANGUAGE_MENU_DIRECTIVES,
|
|
282
|
+
...INFO_DRAWER_DIRECTIVES,
|
|
283
|
+
...DATATABLE_DIRECTIVES,
|
|
284
|
+
...TEMPLATE_DIRECTIVES,
|
|
285
|
+
SortingPickerComponent,
|
|
286
|
+
IconComponent,
|
|
287
|
+
...NOTIFICATION_HISTORY_DIRECTIVES,
|
|
288
|
+
...SEARCH_TEXT_INPUT_DIRECTIVES,
|
|
289
|
+
BlankPageComponent,
|
|
290
|
+
UnsavedChangesDialogComponent,
|
|
291
|
+
DynamicChipListComponent,
|
|
292
|
+
MaterialModule
|
|
293
|
+
]
|
|
294
|
+
}]
|
|
295
|
+
}] });
|
|
296
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29yZS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWIvY29yZS9zcmMvbGliL2NvcmUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7Ozs7Ozs7R0FlRztBQUVILE9BQU8sRUFBRSxRQUFRLEVBQXVCLE1BQU0sZUFBZSxDQUFDO0FBQzlELE9BQU8sRUFBRSxlQUFlLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUMvRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUM3RSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUMxRSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNoRixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUM5RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUMzRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDekQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sZ0RBQWdELENBQUM7QUFDdEYsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDbEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDcEUsT0FBTyxFQUFFLCtCQUErQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDOUYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sbUNBQW1DLENBQUM7QUFDdkUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNqRCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUNoRixPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUN0RixPQUFPLEVBQUUseUJBQXlCLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDcEYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFVBQVUsRUFBRSxpQkFBaUIsRUFBRSxxQkFBcUIsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ3ZJLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQy9FLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDN0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLFFBQVEsQ0FBQztBQUN2QyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUMxRCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUMvRCxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNqRSxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSxXQUFXLENBQUM7QUFDMUQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ25ELE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLFFBQVEsQ0FBQztBQUM1RixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBaUVuRSxNQUFNLE9BQU8sVUFBVTtJQUNuQixNQUFNLENBQUMsT0FBTztRQUNWLE9BQU87WUFDSCxRQUFRLEVBQUUsVUFBVTtZQUNwQixTQUFTLEVBQUU7Z0JBQ1AsdUJBQXVCLENBQUM7b0JBQ3BCLE1BQU0sRUFBRTt3QkFDSixPQUFPLEVBQUUsZUFBZTt3QkFDeEIsUUFBUSxFQUFFLHNCQUFzQjt3QkFDaEMsSUFBSSxFQUFFLENBQUMsVUFBVSxDQUFDO3FCQUNyQjtvQkFDRCxlQUFlLEVBQUUsSUFBSTtpQkFDeEIsQ0FBQztnQkFDRixnQkFBZ0IsRUFBRTtnQkFDbEIsaUJBQWlCLENBQUMsc0JBQXNCLEVBQUUsRUFBRSxxQkFBcUIsQ0FBQyxFQUFFLFVBQVUsRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLGNBQWMsRUFBRSxDQUFDLENBQUM7Z0JBQzVILEVBQUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFFBQVEsRUFBRSx5QkFBeUIsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFO2dCQUNoRixFQUFFLE9BQU8sRUFBRSxjQUFjLEVBQUUsUUFBUSxFQUFFLHFCQUFxQixFQUFFO2dCQUM1RDtvQkFDSSxPQUFPLEVBQUUsNkJBQTZCO29CQUN0QyxRQUFRLEVBQUU7d0JBQ04sUUFBUSxFQUFFLEtBQUs7cUJBQ2xCO2lCQUNKO2dCQUNEO29CQUNJLE9BQU8sRUFBRSxrQ0FBa0M7b0JBQzNDLFFBQVEsRUFBRSw4QkFBOEI7b0JBQ3hDLEtBQUssRUFBRSxJQUFJO2lCQUNkO2FBQ0o7U0FDSixDQUFDO0lBQ04sQ0FBQztJQUVEOzs7T0FHRztJQUNILE1BQU0sQ0FBQyxRQUFRO1FBQ1gsT0FBTztZQUNILFFBQVEsRUFBRSxVQUFVO1NBQ3ZCLENBQUM7SUFDTixDQUFDOytHQXhDUSxVQUFVO2dIQUFWLFVBQVUsc3pDQXpEZix5QkFBeUIsMkpBRXpCLGFBQWEsa2dCQUtiLGNBQWM7WUFDZCxpQkFBaUI7WUFDakIsb0JBQW9CLHMyQ0FPcEIsYUFBYTtZQUNiLHNCQUFzQix5SUFHdEIsa0JBQWtCO1lBQ2xCLDZCQUE2QjtZQUM3Qix3QkFBd0I7WUFDeEIsY0FBYyxnZ0RBVWQseUJBQXlCO1lBQ3pCLGFBQWEsa2dCQUtiLGNBQWM7WUFDZCxpQkFBaUI7WUFDakIsb0JBQW9CLHN6Q0FNcEIsc0JBQXNCO1lBQ3RCLGFBQWEseUlBR2Isa0JBQWtCO1lBQ2xCLDZCQUE2QjtZQUM3Qix3QkFBd0I7WUFDeEIsY0FBYztnSEFHVCxVQUFVLGFBaENSLENBQUMsR0FBRyxVQUFVLENBQUMsaWlCQXpCdEIseUJBQXlCLDRCQUd0QixxQkFBcUIsaVZBSXhCLGNBQWM7WUFDZCxpQkFBaUI7WUFDakIsb0JBQW9CLCtFQUdqQix3QkFBd0IscVZBR3hCLG1CQUFtQixFQUN0QixhQUFhO1lBQ2Isc0JBQXNCLEVBQ25CLCtCQUErQixpQ0FHbEMsNkJBQTZCO1lBQzdCLHdCQUF3QjtZQUN4QixjQUFjLEVBZ0JkLGNBQWM7WUFlZCxjQUFjOzs0RkFHVCxVQUFVO2tCQS9EdEIsUUFBUTttQkFBQztvQkFDTixPQUFPLEVBQUU7d0JBQ0wsR0FBRyxnQkFBZ0I7d0JBQ25CLEdBQUcsaUJBQWlCO3dCQUNwQixHQUFHLGlCQUFpQjt3QkFDcEIsR0FBRyxVQUFVO3dCQUNiLHlCQUF5Qjt3QkFDekIsR0FBRyxlQUFlO3dCQUNsQixhQUFhO3dCQUNiLEdBQUcscUJBQXFCO3dCQUN4QixHQUFHLGtCQUFrQjt3QkFDckIsR0FBRyx1QkFBdUI7d0JBQzFCLEdBQUcsb0JBQW9CO3dCQUN2QixjQUFjO3dCQUNkLGlCQUFpQjt3QkFDakIsb0JBQW9CO3dCQUNwQixHQUFHLG9CQUFvQjt3QkFDdkIsR0FBRyxnQkFBZ0I7d0JBQ25CLEdBQUcsd0JBQXdCO3dCQUMzQixHQUFHLHNCQUFzQjt3QkFDekIsR0FBRyxvQkFBb0I7d0JBQ3ZCLEdBQUcsbUJBQW1CO3dCQUN0QixhQUFhO3dCQUNiLHNCQUFzQjt3QkFDdEIsR0FBRywrQkFBK0I7d0JBQ2xDLEdBQUcsNEJBQTRCO3dCQUMvQixrQkFBa0I7d0JBQ2xCLDZCQUE2Qjt3QkFDN0Isd0JBQXdCO3dCQUN4QixjQUFjO3FCQUNqQjtvQkFDRCxTQUFTLEVBQUUsQ0FBQyxHQUFHLFVBQVUsQ0FBQztvQkFDMUIsT0FBTyxFQUFFO3dCQUNMLEdBQUcsZ0JBQWdCO3dCQUNuQixHQUFHLGlCQUFpQjt3QkFDcEIsR0FBRyxpQkFBaUI7d0JBQ3BCLEdBQUcsVUFBVTt3QkFDYixHQUFHLGVBQWU7d0JBQ2xCLEdBQUcsb0JBQW9CO3dCQUN2Qix5QkFBeUI7d0JBQ3pCLGFBQWE7d0JBQ2IsR0FBRyxxQkFBcUI7d0JBQ3hCLEdBQUcsa0JBQWtCO3dCQUNyQixHQUFHLHVCQUF1Qjt3QkFDMUIsR0FBRyxvQkFBb0I7d0JBQ3ZCLGNBQWM7d0JBQ2QsaUJBQWlCO3dCQUNqQixvQkFBb0I7d0JBQ3BCLEdBQUcsZ0JBQWdCO3dCQUNuQixHQUFHLHdCQUF3Qjt3QkFDM0IsR0FBRyxzQkFBc0I7d0JBQ3pCLEdBQUcsb0JBQW9CO3dCQUN2QixHQUFHLG1CQUFtQjt3QkFDdEIsc0JBQXNCO3dCQUN0QixhQUFhO3dCQUNiLEdBQUcsK0JBQStCO3dCQUNsQyxHQUFHLDRCQUE0Qjt3QkFDL0Isa0JBQWtCO3dCQUNsQiw2QkFBNkI7d0JBQzdCLHdCQUF3Qjt3QkFDeEIsY0FBYztxQkFDakI7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyIvKiFcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgwqkgMjAwNS0yMDI1IEh5bGFuZCBTb2Z0d2FyZSwgSW5jLiBhbmQgaXRzIGFmZmlsaWF0ZXMuIEFsbCByaWdodHMgcmVzZXJ2ZWQuXG4gKlxuICogTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqICAgICBodHRwOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjBcbiAqXG4gKiBVbmxlc3MgcmVxdWlyZWQgYnkgYXBwbGljYWJsZSBsYXcgb3IgYWdyZWVkIHRvIGluIHdyaXRpbmcsIHNvZnR3YXJlXG4gKiBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiBcIkFTIElTXCIgQkFTSVMsXG4gKiBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC5cbiAqIFNlZSB0aGUgTGljZW5zZSBmb3IgdGhlIHNwZWNpZmljIGxhbmd1YWdlIGdvdmVybmluZyBwZXJtaXNzaW9ucyBhbmRcbiAqIGxpbWl0YXRpb25zIHVuZGVyIHRoZSBMaWNlbnNlLlxuICovXG5cbmltcG9ydCB7IE5nTW9kdWxlLCBNb2R1bGVXaXRoUHJvdmlkZXJzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBUcmFuc2xhdGVMb2FkZXIsIHByb3ZpZGVUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQgeyBBQk9VVF9ESVJFQ1RJVkVTIH0gZnJvbSAnLi9hYm91dC9hYm91dC5tb2R1bGUnO1xuaW1wb3J0IHsgQ0FSRF9WSUVXX0RJUkVDVElWRVMgfSBmcm9tICcuL2NhcmQtdmlldy9jYXJkLXZpZXcubW9kdWxlJztcbmltcG9ydCB7IENPTlRFWFRfTUVOVV9ESVJFQ1RJVkVTIH0gZnJvbSAnLi9jb250ZXh0LW1lbnUvY29udGV4dC1tZW51Lm1vZHVsZSc7XG5pbXBvcnQgeyBEQVRBVEFCTEVfRElSRUNUSVZFUyB9IGZyb20gJy4vZGF0YXRhYmxlL2RhdGF0YWJsZS5tb2R1bGUnO1xuaW1wb3J0IHsgSU5GT19EUkFXRVJfRElSRUNUSVZFUyB9IGZyb20gJy4vaW5mby1kcmF3ZXIvaW5mby1kcmF3ZXIubW9kdWxlJztcbmltcG9ydCB7IExBTkdVQUdFX01FTlVfRElSRUNUSVZFUyB9IGZyb20gJy4vbGFuZ3VhZ2UtbWVudS9sYW5ndWFnZS1tZW51Lm1vZHVsZSc7XG5pbXBvcnQgeyBMT0dJTl9ESVJFQ1RJVkVTIH0gZnJvbSAnLi9sb2dpbi9sb2dpbi5tb2R1bGUnO1xuaW1wb3J0IHsgUEFHSU5BVElPTl9ESVJFQ1RJVkVTIH0gZnJvbSAnLi9wYWdpbmF0aW9uL3BhZ2luYXRpb24ubW9kdWxlJztcbmltcG9ydCB7IFRPT0xCQVJfRElSRUNUSVZFUyB9IGZyb20gJy4vdG9vbGJhci90b29sYmFyLm1vZHVsZSc7XG5pbXBvcnQgeyBWSUVXRVJfRElSRUNUSVZFUyB9IGZyb20gJy4vdmlld2VyL3ZpZXdlci5tb2R1bGUnO1xuaW1wb3J0IHsgRm9ybUJhc2VNb2R1bGUgfSBmcm9tICcuL2Zvcm0vZm9ybS1iYXNlLm1vZHVsZSc7XG5pbXBvcnQgeyBMQVlPVVRfRElSRUNUSVZFUyB9IGZyb20gJy4vbGF5b3V0L2xheW91dC5tb2R1bGUnO1xuaW1wb3J0IHsgQ29tbWVudHNDb21wb25lbnQgfSBmcm9tICcuL2NvbW1lbnRzL2NvbW1lbnRzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDb21tZW50TGlzdENvbXBvbmVudCB9IGZyb20gJy4vY29tbWVudHMvY29tbWVudC1saXN0L2NvbW1lbnQtbGlzdC5jb21wb25lbnQnO1xuaW1wb3J0IHsgVEVNUExBVEVfRElSRUNUSVZFUyB9IGZyb20gJy4vdGVtcGxhdGVzL3RlbXBsYXRlLm1vZHVsZSc7XG5pbXBvcnQgeyBDTElQQk9BUkRfRElSRUNUSVZFUyB9IGZyb20gJy4vY2xpcGJvYXJkL2NsaXBib2FyZC5tb2R1bGUnO1xuaW1wb3J0IHsgTk9USUZJQ0FUSU9OX0hJU1RPUllfRElSRUNUSVZFUyB9IGZyb20gJy4vbm90aWZpY2F0aW9ucy9ub3RpZmljYXRpb24taGlzdG9yeS5tb2R1bGUnO1xuaW1wb3J0IHsgQmxhbmtQYWdlQ29tcG9uZW50IH0gZnJvbSAnLi9ibGFuay1wYWdlL2JsYW5rLXBhZ2UuY29tcG9uZW50JztcbmltcG9ydCB7IENPUkVfRElSRUNUSVZFUyB9IGZyb20gJy4vZGlyZWN0aXZlcy9kaXJlY3RpdmUubW9kdWxlJztcbmltcG9ydCB7IENPUkVfUElQRVMgfSBmcm9tICcuL3BpcGVzL3BpcGUubW9kdWxlJztcbmltcG9ydCB7IFRyYW5zbGF0ZUxvYWRlclNlcnZpY2UgfSBmcm9tICcuL3RyYW5zbGF0aW9uL3RyYW5zbGF0ZS1sb2FkZXIuc2VydmljZSc7XG5pbXBvcnQgeyBTRUFSQ0hfVEVYVF9JTlBVVF9ESVJFQ1RJVkVTIH0gZnJvbSAnLi9zZWFyY2gtdGV4dC9zZWFyY2gtdGV4dC1pbnB1dC5tb2R1bGUnO1xuaW1wb3J0IHsgQXV0aGVudGljYXRpb25JbnRlcmNlcHRvciwgQXV0aGVudGljYXRpb24gfSBmcm9tICdAYWxmcmVzY28vYWRmLWNvcmUvYXV0aCc7XG5pbXBvcnQgeyBIVFRQX0lOVEVSQ0VQVE9SUywgSHR0cENsaWVudCwgcHJvdmlkZUh0dHBDbGllbnQsIHdpdGhYc3JmQ29uZmlndXJhdGlvbiwgd2l0aEludGVyY2VwdG9yc0Zyb21EaSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcbmltcG9ydCB7IEF1dGhlbnRpY2F0aW9uU2VydmljZSB9IGZyb20gJy4vYXV0aC9zZXJ2aWNlcy9hdXRoZW50aWNhdGlvbi5zZXJ2aWNlJztcbmltcG9ydCB7IE1BVF9TTkFDS19CQVJfREVGQVVMVF9PUFRJT05TIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc25hY2stYmFyJztcbmltcG9ydCB7IEFwcENvbmZpZ1BpcGUgfSBmcm9tICcuL2FwcC1jb25maWcnO1xuaW1wb3J0IHsgSWNvbkNvbXBvbmVudCB9IGZyb20gJy4vaWNvbic7XG5pbXBvcnQgeyBTb3J0aW5nUGlja2VyQ29tcG9uZW50IH0gZnJvbSAnLi9zb3J0aW5nLXBpY2tlcic7XG5pbXBvcnQgeyBEeW5hbWljQ2hpcExpc3RDb21wb25lbnQgfSBmcm9tICcuL2R5bmFtaWMtY2hpcC1saXN0JztcbmltcG9ydCB7IElkZW50aXR5VXNlckluZm9Db21wb25lbnQgfSBmcm9tICcuL2lkZW50aXR5LXVzZXItaW5mbyc7XG5pbXBvcnQgeyBVbnNhdmVkQ2hhbmdlc0RpYWxvZ0NvbXBvbmVudCB9IGZyb20gJy4vZGlhbG9ncyc7XG5pbXBvcnQgeyBNYXRlcmlhbE1vZHVsZSB9IGZyb20gJy4vbWF0ZXJpYWwubW9kdWxlJztcbmltcG9ydCB7IERlY2ltYWxSZW5kZXJNaWRkbGV3YXJlU2VydmljZSwgRk9STV9GSUVMRF9NT0RFTF9SRU5ERVJfTUlERExFV0FSRSB9IGZyb20gJy4vZm9ybSc7XG5pbXBvcnQgeyBwcm92aWRlQXBwQ29uZmlnIH0gZnJvbSAnLi9hcHAtY29uZmlnL3Byb3ZpZGUtYXBwLWNvbmZpZyc7XG5cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW1xuICAgICAgICAuLi5BQk9VVF9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5WSUVXRVJfRElSRUNUSVZFUyxcbiAgICAgICAgLi4uTEFZT1VUX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkNPUkVfUElQRVMsXG4gICAgICAgIElkZW50aXR5VXNlckluZm9Db21wb25lbnQsXG4gICAgICAgIC4uLkNPUkVfRElSRUNUSVZFUyxcbiAgICAgICAgQXBwQ29uZmlnUGlwZSxcbiAgICAgICAgLi4uUEFHSU5BVElPTl9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5UT09MQkFSX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkNPTlRFWFRfTUVOVV9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5DQVJEX1ZJRVdfRElSRUNUSVZFUyxcbiAgICAgICAgRm9ybUJhc2VNb2R1bGUsXG4gICAgICAgIENvbW1lbnRzQ29tcG9uZW50LFxuICAgICAgICBDb21tZW50TGlzdENvbXBvbmVudCxcbiAgICAgICAgLi4uQ0xJUEJPQVJEX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkxPR0lOX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkxBTkdVQUdFX01FTlVfRElSRUNUSVZFUyxcbiAgICAgICAgLi4uSU5GT19EUkFXRVJfRElSRUNUSVZFUyxcbiAgICAgICAgLi4uREFUQVRBQkxFX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLlRFTVBMQVRFX0RJUkVDVElWRVMsXG4gICAgICAgIEljb25Db21wb25lbnQsXG4gICAgICAgIFNvcnRpbmdQaWNrZXJDb21wb25lbnQsXG4gICAgICAgIC4uLk5PVElGSUNBVElPTl9ISVNUT1JZX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLlNFQVJDSF9URVhUX0lOUFVUX0RJUkVDVElWRVMsXG4gICAgICAgIEJsYW5rUGFnZUNvbXBvbmVudCxcbiAgICAgICAgVW5zYXZlZENoYW5nZXNEaWFsb2dDb21wb25lbnQsXG4gICAgICAgIER5bmFtaWNDaGlwTGlzdENvbXBvbmVudCxcbiAgICAgICAgTWF0ZXJpYWxNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczogWy4uLkNPUkVfUElQRVNdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgLi4uQUJPVVRfRElSRUNUSVZFUyxcbiAgICAgICAgLi4uVklFV0VSX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkxBWU9VVF9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5DT1JFX1BJUEVTLFxuICAgICAgICAuLi5DT1JFX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkNMSVBCT0FSRF9ESVJFQ1RJVkVTLFxuICAgICAgICBJZGVudGl0eVVzZXJJbmZvQ29tcG9uZW50LFxuICAgICAgICBBcHBDb25maWdQaXBlLFxuICAgICAgICAuLi5QQUdJTkFUSU9OX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLlRPT0xCQVJfRElSRUNUSVZFUyxcbiAgICAgICAgLi4uQ09OVEVYVF9NRU5VX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkNBUkRfVklFV19ESVJFQ1RJVkVTLFxuICAgICAgICBGb3JtQmFzZU1vZHVsZSxcbiAgICAgICAgQ29tbWVudHNDb21wb25lbnQsXG4gICAgICAgIENvbW1lbnRMaXN0Q29tcG9uZW50LFxuICAgICAgICAuLi5MT0dJTl9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5MQU5HVUFHRV9NRU5VX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLklORk9fRFJBV0VSX0RJUkVDVElWRVMsXG4gICAgICAgIC4uLkRBVEFUQUJMRV9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5URU1QTEFURV9ESVJFQ1RJVkVTLFxuICAgICAgICBTb3J0aW5nUGlja2VyQ29tcG9uZW50LFxuICAgICAgICBJY29uQ29tcG9uZW50LFxuICAgICAgICAuLi5OT1RJRklDQVRJT05fSElTVE9SWV9ESVJFQ1RJVkVTLFxuICAgICAgICAuLi5TRUFSQ0hfVEVYVF9JTlBVVF9ESVJFQ1RJVkVTLFxuICAgICAgICBCbGFua1BhZ2VDb21wb25lbnQsXG4gICAgICAgIFVuc2F2ZWRDaGFuZ2VzRGlhbG9nQ29tcG9uZW50LFxuICAgICAgICBEeW5hbWljQ2hpcExpc3RDb21wb25lbnQsXG4gICAgICAgIE1hdGVyaWFsTW9kdWxlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBDb3JlTW9kdWxlIHtcbiAgICBzdGF0aWMgZm9yUm9vdCgpOiBNb2R1bGVXaXRoUHJvdmlkZXJzPENvcmVNb2R1bGU+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5nTW9kdWxlOiBDb3JlTW9kdWxlLFxuICAgICAgICAgICAgcHJvdmlkZXJzOiBbXG4gICAgICAgICAgICAgICAgcHJvdmlkZVRyYW5zbGF0ZVNlcnZpY2Uoe1xuICAgICAgICAgICAgICAgICAgICBsb2FkZXI6IHtcbiAgICAgICAgICAgICAgICAgICAgICAgIHByb3ZpZGU6IFRyYW5zbGF0ZUxvYWRlcixcbiAgICAgICAgICAgICAgICAgICAgICAgIHVzZUNsYXNzOiBUcmFuc2xhdGVMb2FkZXJTZXJ2aWNlLFxuICAgICAgICAgICAgICAgICAgICAgICAgZGVwczogW0h0dHBDbGllbnRdXG4gICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgIGRlZmF1bHRMYW5ndWFnZTogJ2VuJ1xuICAgICAgICAgICAgICAgIH0pLFxuICAgICAgICAgICAgICAgIHByb3ZpZGVBcHBDb25maWcoKSxcbiAgICAgICAgICAgICAgICBwcm92aWRlSHR0cENsaWVudCh3aXRoSW50ZXJjZXB0b3JzRnJvbURpKCksIHdpdGhYc3JmQ29uZmlndXJhdGlvbih7IGNvb2tpZU5hbWU6ICdDU1JGLVRPS0VOJywgaGVhZGVyTmFtZTogJ1gtQ1NSRi1UT0tFTicgfSkpLFxuICAgICAgICAgICAgICAgIHsgcHJvdmlkZTogSFRUUF9JTlRFUkNFUFRPUlMsIHVzZUNsYXNzOiBBdXRoZW50aWNhdGlvbkludGVyY2VwdG9yLCBtdWx0aTogdHJ1ZSB9LFxuICAgICAgICAgICAgICAgIHsgcHJvdmlkZTogQXV0aGVudGljYXRpb24sIHVzZUNsYXNzOiBBdXRoZW50aWNhdGlvblNlcnZpY2UgfSxcbiAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgIHByb3ZpZGU6IE1BVF9TTkFDS19CQVJfREVGQVVMVF9PUFRJT05TLFxuICAgICAgICAgICAgICAgICAgICB1c2VWYWx1ZToge1xuICAgICAgICAgICAgICAgICAgICAgICAgZHVyYXRpb246IDEwMDAwXG4gICAgICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgICAgICB9LFxuICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgcHJvdmlkZTogRk9STV9GSUVMRF9NT0RFTF9SRU5ERVJfTUlERExFV0FSRSxcbiAgICAgICAgICAgICAgICAgICAgdXNlQ2xhc3M6IERlY2ltYWxSZW5kZXJNaWRkbGV3YXJlU2VydmljZSxcbiAgICAgICAgICAgICAgICAgICAgbXVsdGk6IHRydWVcbiAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICBdXG4gICAgICAgIH07XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogQGRlcHJlY2F0ZWQgdGhpcyBhcGkgaXMgZGVwcmVjYXRlZCwgaW1wb3J0IGBDb3JlTW9kdWxlYCBpbnN0ZWFkXG4gICAgICogQHJldHVybnMgTW9kdWxlV2l0aFByb3ZpZGVyczxDb3JlTW9kdWxlPlxuICAgICAqL1xuICAgIHN0YXRpYyBmb3JDaGlsZCgpOiBNb2R1bGVXaXRoUHJvdmlkZXJzPENvcmVNb2R1bGU+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICAgIG5nTW9kdWxlOiBDb3JlTW9kdWxlXG4gICAgICAgIH07XG4gICAgfVxufVxuIl19
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation, Input, DEFAULT_CURRENCY_CODE, inject } from '@angular/core';
|
|
18
|
+
import { DataTableCellComponent } from '../datatable-cell/datatable-cell.component';
|
|
19
|
+
import { CommonModule } from '@angular/common';
|
|
20
|
+
import * as i0 from "@angular/core";
|
|
21
|
+
import * as i1 from "@angular/common";
|
|
22
|
+
export class AmountCellComponent extends DataTableCellComponent {
|
|
23
|
+
constructor() {
|
|
24
|
+
super(...arguments);
|
|
25
|
+
this.defaultCurrencyCode = inject(DEFAULT_CURRENCY_CODE);
|
|
26
|
+
this.defaultCurrencyConfig = {
|
|
27
|
+
code: this.defaultCurrencyCode,
|
|
28
|
+
display: 'symbol',
|
|
29
|
+
digitsInfo: undefined,
|
|
30
|
+
locale: undefined
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
ngOnInit() {
|
|
34
|
+
super.ngOnInit();
|
|
35
|
+
}
|
|
36
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AmountCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
37
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: AmountCellComponent, isStandalone: true, selector: "adf-amount-cell", inputs: { currencyConfig: "currencyConfig" }, host: { classAttribute: "adf-datatable-content-cell" }, usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"value$ | async as amount\">\n <span [title]=\"amount\">\n {{ amount | currency:\n (currencyConfig?.code || defaultCurrencyConfig.code):\n (currencyConfig?.display || defaultCurrencyConfig.display):\n (currencyConfig?.digitsInfo || defaultCurrencyConfig.digitsInfo):\n (currencyConfig?.locale || defaultCurrencyConfig.locale)\n }}\n </span>\n</ng-container>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i1.CurrencyPipe, name: "currency" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
38
|
+
}
|
|
39
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AmountCellComponent, decorators: [{
|
|
40
|
+
type: Component,
|
|
41
|
+
args: [{ standalone: true, imports: [CommonModule], selector: 'adf-amount-cell', host: { class: 'adf-datatable-content-cell' }, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"value$ | async as amount\">\n <span [title]=\"amount\">\n {{ amount | currency:\n (currencyConfig?.code || defaultCurrencyConfig.code):\n (currencyConfig?.display || defaultCurrencyConfig.display):\n (currencyConfig?.digitsInfo || defaultCurrencyConfig.digitsInfo):\n (currencyConfig?.locale || defaultCurrencyConfig.locale)\n }}\n </span>\n</ng-container>\n" }]
|
|
42
|
+
}], propDecorators: { currencyConfig: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}] } });
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW1vdW50LWNlbGwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGliL2NvcmUvc3JjL2xpYi9kYXRhdGFibGUvY29tcG9uZW50cy9hbW91bnQtY2VsbC9hbW91bnQtY2VsbC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvY29yZS9zcmMvbGliL2RhdGF0YWJsZS9jb21wb25lbnRzL2Ftb3VudC1jZWxsL2Ftb3VudC1jZWxsLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7Ozs7Ozs7R0FlRztBQUVILE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUUsS0FBSyxFQUFVLHFCQUFxQixFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwSSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUVwRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7OztBQVcvQyxNQUFNLE9BQU8sbUJBQW9CLFNBQVEsc0JBQXNCO0lBVC9EOztRQWFxQix3QkFBbUIsR0FBVyxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUNwRSwwQkFBcUIsR0FBbUI7WUFDN0MsSUFBSSxFQUFFLElBQUksQ0FBQyxtQkFBbUI7WUFDOUIsT0FBTyxFQUFFLFFBQVE7WUFDakIsVUFBVSxFQUFFLFNBQVM7WUFDckIsTUFBTSxFQUFFLFNBQVM7U0FDcEIsQ0FBQztLQUtMO0lBSEcsUUFBUTtRQUNKLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztJQUNyQixDQUFDOytHQWRRLG1CQUFtQjttR0FBbkIsbUJBQW1CLHdNQy9CaEMsOGJBVUEsMkNEY2MsWUFBWTs7NEZBT2IsbUJBQW1CO2tCQVQvQixTQUFTO2lDQUNNLElBQUksV0FDUCxDQUFDLFlBQVksQ0FBQyxZQUNiLGlCQUFpQixRQUVyQixFQUFFLEtBQUssRUFBRSw0QkFBNEIsRUFBRSxpQkFDOUIsaUJBQWlCLENBQUMsSUFBSSxtQkFDcEIsdUJBQXVCLENBQUMsTUFBTTs4QkFJL0MsY0FBYztzQkFEYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiLyohXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IMKpIDIwMDUtMjAyNSBIeWxhbmQgU29mdHdhcmUsIEluYy4gYW5kIGl0cyBhZmZpbGlhdGVzLiBBbGwgcmlnaHRzIHJlc2VydmVkLlxuICpcbiAqIExpY2Vuc2VkIHVuZGVyIHRoZSBBcGFjaGUgTGljZW5zZSwgVmVyc2lvbiAyLjAgKHRoZSBcIkxpY2Vuc2VcIik7XG4gKiB5b3UgbWF5IG5vdCB1c2UgdGhpcyBmaWxlIGV4Y2VwdCBpbiBjb21wbGlhbmNlIHdpdGggdGhlIExpY2Vuc2UuXG4gKiBZb3UgbWF5IG9idGFpbiBhIGNvcHkgb2YgdGhlIExpY2Vuc2UgYXRcbiAqXG4gKiAgICAgaHR0cDovL3d3dy5hcGFjaGUub3JnL2xpY2Vuc2VzL0xJQ0VOU0UtMi4wXG4gKlxuICogVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZVxuICogZGlzdHJpYnV0ZWQgdW5kZXIgdGhlIExpY2Vuc2UgaXMgZGlzdHJpYnV0ZWQgb24gYW4gXCJBUyBJU1wiIEJBU0lTLFxuICogV0lUSE9VVCBXQVJSQU5USUVTIE9SIENPTkRJVElPTlMgT0YgQU5ZIEtJTkQsIGVpdGhlciBleHByZXNzIG9yIGltcGxpZWQuXG4gKiBTZWUgdGhlIExpY2Vuc2UgZm9yIHRoZSBzcGVjaWZpYyBsYW5ndWFnZSBnb3Zlcm5pbmcgcGVybWlzc2lvbnMgYW5kXG4gKiBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS5cbiAqL1xuXG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiwgSW5wdXQsIE9uSW5pdCwgREVGQVVMVF9DVVJSRU5DWV9DT0RFLCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERhdGFUYWJsZUNlbGxDb21wb25lbnQgfSBmcm9tICcuLi9kYXRhdGFibGUtY2VsbC9kYXRhdGFibGUtY2VsbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ3VycmVuY3lDb25maWcgfSBmcm9tICcuLi8uLi9kYXRhL2RhdGEtY29sdW1uLm1vZGVsJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5cbkBDb21wb25lbnQoe1xuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgc2VsZWN0b3I6ICdhZGYtYW1vdW50LWNlbGwnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9hbW91bnQtY2VsbC5jb21wb25lbnQuaHRtbCcsXG4gICAgaG9zdDogeyBjbGFzczogJ2FkZi1kYXRhdGFibGUtY29udGVudC1jZWxsJyB9LFxuICAgIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgQW1vdW50Q2VsbENvbXBvbmVudCBleHRlbmRzIERhdGFUYWJsZUNlbGxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIEBJbnB1dCgpXG4gICAgY3VycmVuY3lDb25maWc6IEN1cnJlbmN5Q29uZmlnO1xuXG4gICAgcHJpdmF0ZSByZWFkb25seSBkZWZhdWx0Q3VycmVuY3lDb2RlOiBzdHJpbmcgPSBpbmplY3QoREVGQVVMVF9DVVJSRU5DWV9DT0RFKTtcbiAgICByZWFkb25seSBkZWZhdWx0Q3VycmVuY3lDb25maWc6IEN1cnJlbmN5Q29uZmlnID0ge1xuICAgICAgICBjb2RlOiB0aGlzLmRlZmF1bHRDdXJyZW5jeUNvZGUsXG4gICAgICAgIGRpc3BsYXk6ICdzeW1ib2wnLFxuICAgICAgICBkaWdpdHNJbmZvOiB1bmRlZmluZWQsXG4gICAgICAgIGxvY2FsZTogdW5kZWZpbmVkXG4gICAgfTtcblxuICAgIG5nT25Jbml0KCkge1xuICAgICAgICBzdXBlci5uZ09uSW5pdCgpO1xuICAgIH1cbn1cbiIsIjxuZy1jb250YWluZXIgKm5nSWY9XCJ2YWx1ZSQgfCBhc3luYyBhcyBhbW91bnRcIj5cbiAgICA8c3BhbiBbdGl0bGVdPVwiYW1vdW50XCI+XG4gICAgICAgIHt7IGFtb3VudCB8IGN1cnJlbmN5OlxuICAgICAgICAgICAgKGN1cnJlbmN5Q29uZmlnPy5jb2RlIHx8IGRlZmF1bHRDdXJyZW5jeUNvbmZpZy5jb2RlKTpcbiAgICAgICAgICAgIChjdXJyZW5jeUNvbmZpZz8uZGlzcGxheSB8fCBkZWZhdWx0Q3VycmVuY3lDb25maWcuZGlzcGxheSk6XG4gICAgICAgICAgICAoY3VycmVuY3lDb25maWc/LmRpZ2l0c0luZm8gfHwgZGVmYXVsdEN1cnJlbmN5Q29uZmlnLmRpZ2l0c0luZm8pOlxuICAgICAgICAgICAgKGN1cnJlbmN5Q29uZmlnPy5sb2NhbGUgfHwgZGVmYXVsdEN1cnJlbmN5Q29uZmlnLmxvY2FsZSlcbiAgICAgICAgfX1cbiAgICA8L3NwYW4+XG48L25nLWNvbnRhaW5lcj5cbiJdfQ==
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
|
|
18
|
+
import { DataTableCellComponent } from '../datatable-cell/datatable-cell.component';
|
|
19
|
+
import { CommonModule } from '@angular/common';
|
|
20
|
+
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
|
21
|
+
import * as i0 from "@angular/core";
|
|
22
|
+
export class BooleanCellComponent extends DataTableCellComponent {
|
|
23
|
+
constructor() {
|
|
24
|
+
super(...arguments);
|
|
25
|
+
this.boolValue = '';
|
|
26
|
+
}
|
|
27
|
+
ngOnInit() {
|
|
28
|
+
super.ngOnInit();
|
|
29
|
+
this.value$.pipe(takeUntilDestroyed(this.destroyRef)).subscribe((value) => {
|
|
30
|
+
this.boolValue = this.transformBoolean(value);
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
transformBoolean(value) {
|
|
34
|
+
if (value === true || value === 'true') {
|
|
35
|
+
return 'true';
|
|
36
|
+
}
|
|
37
|
+
if (value === false || value === 'false') {
|
|
38
|
+
return 'false';
|
|
39
|
+
}
|
|
40
|
+
return '';
|
|
41
|
+
}
|
|
42
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
43
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: BooleanCellComponent, isStandalone: true, selector: "adf-boolean-cell", host: { classAttribute: "adf-datatable-content-cell" }, usesInheritance: true, ngImport: i0, template: `
|
|
44
|
+
<span [title]="tooltip">
|
|
45
|
+
{{ boolValue }}
|
|
46
|
+
</span>
|
|
47
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
48
|
+
}
|
|
49
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: BooleanCellComponent, decorators: [{
|
|
50
|
+
type: Component,
|
|
51
|
+
args: [{
|
|
52
|
+
standalone: true,
|
|
53
|
+
imports: [CommonModule],
|
|
54
|
+
selector: 'adf-boolean-cell',
|
|
55
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
56
|
+
template: `
|
|
57
|
+
<span [title]="tooltip">
|
|
58
|
+
{{ boolValue }}
|
|
59
|
+
</span>
|
|
60
|
+
`,
|
|
61
|
+
encapsulation: ViewEncapsulation.None,
|
|
62
|
+
host: { class: 'adf-datatable-content-cell' }
|
|
63
|
+
}]
|
|
64
|
+
}] });
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYm9vbGVhbi1jZWxsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYi9jb3JlL3NyYy9saWIvZGF0YXRhYmxlL2NvbXBvbmVudHMvYm9vbGVhbi1jZWxsL2Jvb2xlYW4tY2VsbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7OztHQWVHO0FBRUgsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBVSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNwRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sNEJBQTRCLENBQUM7O0FBZWhFLE1BQU0sT0FBTyxvQkFBcUIsU0FBUSxzQkFBc0I7SUFiaEU7O1FBY0ksY0FBUyxHQUFHLEVBQUUsQ0FBQztLQW1CbEI7SUFqQkcsUUFBUTtRQUNKLEtBQUssQ0FBQyxRQUFRLEVBQUUsQ0FBQztRQUVqQixJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtZQUN0RSxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNsRCxDQUFDLENBQUMsQ0FBQztJQUNQLENBQUM7SUFFTyxnQkFBZ0IsQ0FBQyxLQUFVO1FBQy9CLElBQUksS0FBSyxLQUFLLElBQUksSUFBSSxLQUFLLEtBQUssTUFBTSxFQUFFLENBQUM7WUFDckMsT0FBTyxNQUFNLENBQUM7UUFDbEIsQ0FBQztRQUNELElBQUksS0FBSyxLQUFLLEtBQUssSUFBSSxLQUFLLEtBQUssT0FBTyxFQUFFLENBQUM7WUFDdkMsT0FBTyxPQUFPLENBQUM7UUFDbkIsQ0FBQztRQUNELE9BQU8sRUFBRSxDQUFDO0lBQ2QsQ0FBQzsrR0FuQlEsb0JBQW9CO21HQUFwQixvQkFBb0IsMkpBUm5COzs7O0tBSVQsMkRBUFMsWUFBWTs7NEZBV2Isb0JBQW9CO2tCQWJoQyxTQUFTO21CQUFDO29CQUNQLFVBQVUsRUFBRSxJQUFJO29CQUNoQixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLFFBQVEsRUFBRSxrQkFBa0I7b0JBQzVCLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxRQUFRLEVBQUU7Ozs7S0FJVDtvQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsSUFBSSxFQUFFLEVBQUUsS0FBSyxFQUFFLDRCQUE0QixFQUFFO2lCQUNoRCIsInNvdXJjZXNDb250ZW50IjpbIi8qIVxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCDCqSAyMDA1LTIwMjUgSHlsYW5kIFNvZnR3YXJlLCBJbmMuIGFuZCBpdHMgYWZmaWxpYXRlcy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cbiAqXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogICAgIGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBCQVNJUyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgT25Jbml0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRGF0YVRhYmxlQ2VsbENvbXBvbmVudCB9IGZyb20gJy4uL2RhdGF0YWJsZS1jZWxsL2RhdGF0YWJsZS1jZWxsLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgdGFrZVVudGlsRGVzdHJveWVkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZS9yeGpzLWludGVyb3AnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIHNlbGVjdG9yOiAnYWRmLWJvb2xlYW4tY2VsbCcsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgdGVtcGxhdGU6IGBcbiAgICAgICAgPHNwYW4gW3RpdGxlXT1cInRvb2x0aXBcIj5cbiAgICAgICAgICAgIHt7IGJvb2xWYWx1ZSB9fVxuICAgICAgICA8L3NwYW4+XG4gICAgYCxcbiAgICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICAgIGhvc3Q6IHsgY2xhc3M6ICdhZGYtZGF0YXRhYmxlLWNvbnRlbnQtY2VsbCcgfVxufSlcbmV4cG9ydCBjbGFzcyBCb29sZWFuQ2VsbENvbXBvbmVudCBleHRlbmRzIERhdGFUYWJsZUNlbGxDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAgIGJvb2xWYWx1ZSA9ICcnO1xuXG4gICAgbmdPbkluaXQoKSB7XG4gICAgICAgIHN1cGVyLm5nT25Jbml0KCk7XG5cbiAgICAgICAgdGhpcy52YWx1ZSQucGlwZSh0YWtlVW50aWxEZXN0cm95ZWQodGhpcy5kZXN0cm95UmVmKSkuc3Vic2NyaWJlKCh2YWx1ZSkgPT4ge1xuICAgICAgICAgICAgdGhpcy5ib29sVmFsdWUgPSB0aGlzLnRyYW5zZm9ybUJvb2xlYW4odmFsdWUpO1xuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHRyYW5zZm9ybUJvb2xlYW4odmFsdWU6IGFueSk6IHN0cmluZyB7XG4gICAgICAgIGlmICh2YWx1ZSA9PT0gdHJ1ZSB8fCB2YWx1ZSA9PT0gJ3RydWUnKSB7XG4gICAgICAgICAgICByZXR1cm4gJ3RydWUnO1xuICAgICAgICB9XG4gICAgICAgIGlmICh2YWx1ZSA9PT0gZmFsc2UgfHwgdmFsdWUgPT09ICdmYWxzZScpIHtcbiAgICAgICAgICAgIHJldHVybiAnZmFsc2UnO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiAnJztcbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
* See the License for the specific language governing permissions and
|
|
15
|
+
* limitations under the License.
|
|
16
|
+
*/
|
|
17
|
+
import { inject, Pipe } from '@angular/core';
|
|
18
|
+
import { TranslationService } from '../../../translation';
|
|
19
|
+
import * as i0 from "@angular/core";
|
|
20
|
+
export class ColumnsSearchFilterPipe {
|
|
21
|
+
constructor() {
|
|
22
|
+
this.translationService = inject(TranslationService);
|
|
23
|
+
}
|
|
24
|
+
transform(columns, searchByName) {
|
|
25
|
+
const result = [];
|
|
26
|
+
for (const column of columns) {
|
|
27
|
+
if (!column.title) {
|
|
28
|
+
continue;
|
|
29
|
+
}
|
|
30
|
+
if (!searchByName) {
|
|
31
|
+
result.push(column);
|
|
32
|
+
continue;
|
|
33
|
+
}
|
|
34
|
+
const title = this.translationService.instant(column.title);
|
|
35
|
+
if (this.filterString(title, searchByName)) {
|
|
36
|
+
result.push(column);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
return result;
|
|
40
|
+
}
|
|
41
|
+
filterString(value = '', filterBy = '') {
|
|
42
|
+
const testResult = filterBy ? value.toLowerCase().indexOf(filterBy.toLowerCase()) > -1 : true;
|
|
43
|
+
return testResult ? value : '';
|
|
44
|
+
}
|
|
45
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnsSearchFilterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
46
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ColumnsSearchFilterPipe, isStandalone: true, name: "columnsSearchFilter" }); }
|
|
47
|
+
}
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ColumnsSearchFilterPipe, decorators: [{
|
|
49
|
+
type: Pipe,
|
|
50
|
+
args: [{
|
|
51
|
+
name: 'columnsSearchFilter',
|
|
52
|
+
standalone: true
|
|
53
|
+
}]
|
|
54
|
+
}] });
|
|
55
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1ucy1zZWFyY2gtZmlsdGVyLnBpcGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWIvY29yZS9zcmMvbGliL2RhdGF0YWJsZS9jb21wb25lbnRzL2NvbHVtbnMtc2VsZWN0b3IvY29sdW1ucy1zZWFyY2gtZmlsdGVyLnBpcGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7Ozs7OztHQWVHO0FBRUgsT0FBTyxFQUFFLE1BQU0sRUFBRSxJQUFJLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBRTVELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHNCQUFzQixDQUFDOztBQU0xRCxNQUFNLE9BQU8sdUJBQXVCO0lBSnBDO1FBS1ksdUJBQWtCLEdBQUcsTUFBTSxDQUFDLGtCQUFrQixDQUFDLENBQUM7S0E2QjNEO0lBM0JHLFNBQVMsQ0FBQyxPQUFxQixFQUFFLFlBQW9CO1FBQ2pELE1BQU0sTUFBTSxHQUFHLEVBQUUsQ0FBQztRQUVsQixLQUFLLE1BQU0sTUFBTSxJQUFJLE9BQU8sRUFBRSxDQUFDO1lBQzNCLElBQUksQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQ2hCLFNBQVM7WUFDYixDQUFDO1lBRUQsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO2dCQUNoQixNQUFNLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO2dCQUNwQixTQUFTO1lBQ2IsQ0FBQztZQUVELE1BQU0sS0FBSyxHQUFHLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1lBRTVELElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxLQUFLLEVBQUUsWUFBWSxDQUFDLEVBQUUsQ0FBQztnQkFDekMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUN4QixDQUFDO1FBQ0wsQ0FBQztRQUVELE9BQU8sTUFBTSxDQUFDO0lBQ2xCLENBQUM7SUFFTyxZQUFZLENBQUMsUUFBZ0IsRUFBRSxFQUFFLFdBQW1CLEVBQUU7UUFDMUQsTUFBTSxVQUFVLEdBQUcsUUFBUSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsV0FBVyxFQUFFLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUM7UUFDOUYsT0FBTyxVQUFVLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO0lBQ25DLENBQUM7K0dBN0JRLHVCQUF1Qjs2R0FBdkIsdUJBQXVCOzs0RkFBdkIsdUJBQXVCO2tCQUpuQyxJQUFJO21CQUFDO29CQUNGLElBQUksRUFBRSxxQkFBcUI7b0JBQzNCLFVBQVUsRUFBRSxJQUFJO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbIi8qIVxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCDCqSAyMDA1LTIwMjUgSHlsYW5kIFNvZnR3YXJlLCBJbmMuIGFuZCBpdHMgYWZmaWxpYXRlcy4gQWxsIHJpZ2h0cyByZXNlcnZlZC5cbiAqXG4gKiBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgXCJMaWNlbnNlXCIpO1xuICogeW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLlxuICogWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0XG4gKlxuICogICAgIGh0dHA6Ly93d3cuYXBhY2hlLm9yZy9saWNlbnNlcy9MSUNFTlNFLTIuMFxuICpcbiAqIFVubGVzcyByZXF1aXJlZCBieSBhcHBsaWNhYmxlIGxhdyBvciBhZ3JlZWQgdG8gaW4gd3JpdGluZywgc29mdHdhcmVcbiAqIGRpc3RyaWJ1dGVkIHVuZGVyIHRoZSBMaWNlbnNlIGlzIGRpc3RyaWJ1dGVkIG9uIGFuIFwiQVMgSVNcIiBCQVNJUyxcbiAqIFdJVEhPVVQgV0FSUkFOVElFUyBPUiBDT05ESVRJT05TIE9GIEFOWSBLSU5ELCBlaXRoZXIgZXhwcmVzcyBvciBpbXBsaWVkLlxuICogU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZFxuICogbGltaXRhdGlvbnMgdW5kZXIgdGhlIExpY2Vuc2UuXG4gKi9cblxuaW1wb3J0IHsgaW5qZWN0LCBQaXBlLCBQaXBlVHJhbnNmb3JtIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEYXRhQ29sdW1uIH0gZnJvbSAnLi4vLi4vZGF0YS9kYXRhLWNvbHVtbi5tb2RlbCc7XG5pbXBvcnQgeyBUcmFuc2xhdGlvblNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi90cmFuc2xhdGlvbic7XG5cbkBQaXBlKHtcbiAgICBuYW1lOiAnY29sdW1uc1NlYXJjaEZpbHRlcicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZVxufSlcbmV4cG9ydCBjbGFzcyBDb2x1bW5zU2VhcmNoRmlsdGVyUGlwZSBpbXBsZW1lbnRzIFBpcGVUcmFuc2Zvcm0ge1xuICAgIHByaXZhdGUgdHJhbnNsYXRpb25TZXJ2aWNlID0gaW5qZWN0KFRyYW5zbGF0aW9uU2VydmljZSk7XG5cbiAgICB0cmFuc2Zvcm0oY29sdW1uczogRGF0YUNvbHVtbltdLCBzZWFyY2hCeU5hbWU6IHN0cmluZyk6IERhdGFDb2x1bW5bXSB7XG4gICAgICAgIGNvbnN0IHJlc3VsdCA9IFtdO1xuXG4gICAgICAgIGZvciAoY29uc3QgY29sdW1uIG9mIGNvbHVtbnMpIHtcbiAgICAgICAgICAgIGlmICghY29sdW1uLnRpdGxlKSB7XG4gICAgICAgICAgICAgICAgY29udGludWU7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIGlmICghc2VhcmNoQnlOYW1lKSB7XG4gICAgICAgICAgICAgICAgcmVzdWx0LnB1c2goY29sdW1uKTtcbiAgICAgICAgICAgICAgICBjb250aW51ZTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgY29uc3QgdGl0bGUgPSB0aGlzLnRyYW5zbGF0aW9uU2VydmljZS5pbnN0YW50KGNvbHVtbi50aXRsZSk7XG5cbiAgICAgICAgICAgIGlmICh0aGlzLmZpbHRlclN0cmluZyh0aXRsZSwgc2VhcmNoQnlOYW1lKSkge1xuICAgICAgICAgICAgICAgIHJlc3VsdC5wdXNoKGNvbHVtbik7XG4gICAgICAgICAgICB9XG4gICAgICAgIH1cblxuICAgICAgICByZXR1cm4gcmVzdWx0O1xuICAgIH1cblxuICAgIHByaXZhdGUgZmlsdGVyU3RyaW5nKHZhbHVlOiBzdHJpbmcgPSAnJywgZmlsdGVyQnk6IHN0cmluZyA9ICcnKTogc3RyaW5nIHtcbiAgICAgICAgY29uc3QgdGVzdFJlc3VsdCA9IGZpbHRlckJ5ID8gdmFsdWUudG9Mb3dlckNhc2UoKS5pbmRleE9mKGZpbHRlckJ5LnRvTG93ZXJDYXNlKCkpID4gLTEgOiB0cnVlO1xuICAgICAgICByZXR1cm4gdGVzdFJlc3VsdCA/IHZhbHVlIDogJyc7XG4gICAgfVxufVxuIl19
|