new-front-common-library 16.1.32-ROY-3 → 16.1.32-ROY-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/util/array.service.mjs +19 -0
- package/esm2022/lib/util/component/header/header.component.mjs +230 -0
- package/esm2022/lib/util/component/header/menu/menu.component.mjs +96 -0
- package/esm2022/lib/util/component/header/menu/menu.const.mjs +544 -0
- package/esm2022/lib/util/component/header/menu/menu.model.mjs +2 -0
- package/esm2022/lib/util/component/overlay/overlay.component.mjs +40 -0
- package/esm2022/lib/util/component/overlay/overlay.service.mjs +24 -0
- package/esm2022/lib/util/component/popup/popup-login/popup-login.component.mjs +90 -0
- package/esm2022/lib/util/component/sub-header/sub-header.component.mjs +44 -0
- package/esm2022/lib/util/config.mjs +8 -0
- package/esm2022/lib/util/date/PeriodModel.mjs +8 -0
- package/esm2022/lib/util/date/date-format-constants.mjs +12 -0
- package/esm2022/lib/util/date/date.util.mjs +218 -0
- package/esm2022/lib/util/decorators/theme.decorator.mjs +22 -0
- package/esm2022/lib/util/decorators/user.decorator.mjs +25 -0
- package/esm2022/lib/util/directives/my-number-formatter-directive.mjs +34 -0
- package/esm2022/lib/util/directives/show-if-truncated.directive.mjs +25 -0
- package/esm2022/lib/util/enums/family.enum.mjs +6 -0
- package/esm2022/lib/util/enums/rapid-search-item-type.enum.mjs +15 -0
- package/esm2022/lib/util/enums/status-color.enum.mjs +11 -0
- package/esm2022/lib/util/event/header/header-events.service.mjs +21 -0
- package/esm2022/lib/util/event/storage/local-storage-events.service.mjs +17 -0
- package/esm2022/lib/util/event/storage/session-storage-events.service.mjs +18 -0
- package/esm2022/lib/util/http/http-params.builder.mjs +27 -0
- package/esm2022/lib/util/i18n/de.mjs +158 -0
- package/esm2022/lib/util/i18n/en.mjs +162 -0
- package/esm2022/lib/util/i18n/fr.mjs +162 -0
- package/esm2022/lib/util/i18n/multi-translate-http-loader.mjs +21 -0
- package/esm2022/lib/util/interfaces/permissions.interface.mjs +2 -0
- package/esm2022/lib/util/models/any-line.model.mjs +37 -0
- package/esm2022/lib/util/models/audio-content.model.mjs +27 -0
- package/esm2022/lib/util/models/authPermission.model.mjs +16 -0
- package/esm2022/lib/util/models/authUser.model.mjs +21 -0
- package/esm2022/lib/util/models/basic.model.mjs +14 -0
- package/esm2022/lib/util/models/box-set-item.model.mjs +19 -0
- package/esm2022/lib/util/models/commercial/deal-rapid-search-model.mjs +3 -0
- package/esm2022/lib/util/models/commercial/invoice-rapid-search-model.mjs +9 -0
- package/esm2022/lib/util/models/commercial/work-record-rapid-search-model.mjs +13 -0
- package/esm2022/lib/util/models/disc-program.model.mjs +26 -0
- package/esm2022/lib/util/models/disc.model.mjs +22 -0
- package/esm2022/lib/util/models/eventType.model.mjs +7 -0
- package/esm2022/lib/util/models/expenditure-commitment/purchase-order-file.model.mjs +22 -0
- package/esm2022/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/family.model.mjs +7 -0
- package/esm2022/lib/util/models/index.mjs +101 -0
- package/esm2022/lib/util/models/lang-line.model.mjs +27 -0
- package/esm2022/lib/util/models/legal/contract-rapid-search-model.mjs +3 -0
- package/esm2022/lib/util/models/legal/contract-work.model.mjs +23 -0
- package/esm2022/lib/util/models/legal/contract-work2.model.mjs +21 -0
- package/esm2022/lib/util/models/legal/type-status-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/media-line.model.mjs +18 -0
- package/esm2022/lib/util/models/menu-language.model.mjs +15 -0
- package/esm2022/lib/util/models/permission.model.mjs +20 -0
- package/esm2022/lib/util/models/product-box-set.model.mjs +16 -0
- package/esm2022/lib/util/models/product-disc-detail.model.mjs +22 -0
- package/esm2022/lib/util/models/product-disc.model.mjs +27 -0
- package/esm2022/lib/util/models/product-division.model.mjs +29 -0
- package/esm2022/lib/util/models/product-type.model.mjs +22 -0
- package/esm2022/lib/util/models/product.model.mjs +62 -0
- package/esm2022/lib/util/models/program.model.mjs +28 -0
- package/esm2022/lib/util/models/purchase-order/purchase-order.model.mjs +53 -0
- package/esm2022/lib/util/models/referential/WorkVersionArticleDto.mjs +17 -0
- package/esm2022/lib/util/models/referential/adress-type.model.mjs +14 -0
- package/esm2022/lib/util/models/referential/adress.model.mjs +28 -0
- package/esm2022/lib/util/models/referential/attached-file.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/bank-account.model.mjs +24 -0
- package/esm2022/lib/util/models/referential/bank-accounts.model.mjs +31 -0
- package/esm2022/lib/util/models/referential/basic-hierarchy.model.mjs +8 -0
- package/esm2022/lib/util/models/referential/broadcast-list-item.model.mjs +13 -0
- package/esm2022/lib/util/models/referential/color.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/company.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/content-type.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/content.model.mjs +22 -0
- package/esm2022/lib/util/models/referential/cost-center-criteria-values.model.mjs +14 -0
- package/esm2022/lib/util/models/referential/cost-center-criteria.model.mjs +13 -0
- package/esm2022/lib/util/models/referential/cost-center.model.mjs +28 -0
- package/esm2022/lib/util/models/referential/coutry.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/currency.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/editorial-content.model.mjs +18 -0
- package/esm2022/lib/util/models/referential/fixing.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/flat-media.model.mjs +18 -0
- package/esm2022/lib/util/models/referential/format-image.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/format-type.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/format.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/fsk-index.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/fsk.model.mjs +22 -0
- package/esm2022/lib/util/models/referential/function.model.mjs +23 -0
- package/esm2022/lib/util/models/referential/genre.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/invoice-product-type.model.mjs +22 -0
- package/esm2022/lib/util/models/referential/keywords.model.mjs +13 -0
- package/esm2022/lib/util/models/referential/language.model.mjs +18 -0
- package/esm2022/lib/util/models/referential/media-filter.model.mjs +3 -0
- package/esm2022/lib/util/models/referential/media.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/module.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/parameter.model.mjs +2 -0
- package/esm2022/lib/util/models/referential/participant.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/person.model.mjs +23 -0
- package/esm2022/lib/util/models/referential/project-status.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/quota.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/referential-entity-state.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/referential-value.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/referentiel.model.mjs +26 -0
- package/esm2022/lib/util/models/referential/restriction.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/sap-order.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/service-error.model.mjs +15 -0
- package/esm2022/lib/util/models/referential/sound.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/territories-languages.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/territory-filter.model.mjs +3 -0
- package/esm2022/lib/util/models/referential/territory.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/theme.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/third-party-address-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/referential/third-party-creation-request.model.mjs +44 -0
- package/esm2022/lib/util/models/referential/third-party-module.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/third-party-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/referential/third-party.model.mjs +83 -0
- package/esm2022/lib/util/models/referential/translated-value-model.mjs +16 -0
- package/esm2022/lib/util/models/referential/tva.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/type-export.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/type-tva-company-territory.model.mjs +32 -0
- package/esm2022/lib/util/models/referential/type-tva.model.mjs +25 -0
- package/esm2022/lib/util/models/referential/user-form.model.mjs +2 -0
- package/esm2022/lib/util/models/referential/work-addons-model.mjs +16 -0
- package/esm2022/lib/util/models/referential/work-appartenance.model.mjs +17 -0
- package/esm2022/lib/util/models/referential/work-genre.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/work-language.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/work-milo.model.mjs +61 -0
- package/esm2022/lib/util/models/referential/work-participant.model.mjs +21 -0
- package/esm2022/lib/util/models/referential/work-restrictions-model.mjs +13 -0
- package/esm2022/lib/util/models/referential/work-theme.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/work-title.model.mjs +20 -0
- package/esm2022/lib/util/models/referential/work-version-origin.model.mjs +16 -0
- package/esm2022/lib/util/models/referential/work-version-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/referential/work-versions-used.model.mjs +19 -0
- package/esm2022/lib/util/models/referential/work-versions.model.mjs +27 -0
- package/esm2022/lib/util/models/referential/work-year-production.model.mjs +13 -0
- package/esm2022/lib/util/models/referential/work.model.mjs +22 -0
- package/esm2022/lib/util/models/referential/zone.model.mjs +14 -0
- package/esm2022/lib/util/models/referentiel.model.mjs +26 -0
- package/esm2022/lib/util/models/search-response.model.mjs +10 -0
- package/esm2022/lib/util/models/section.model.mjs +8 -0
- package/esm2022/lib/util/models/select/options.model.mjs +8 -0
- package/esm2022/lib/util/models/select/select.model.mjs +7 -0
- package/esm2022/lib/util/models/subsidiary.model.mjs +8 -0
- package/esm2022/lib/util/models/subtitle-content.model.mjs +28 -0
- package/esm2022/lib/util/models/user-video.model.mjs +22 -0
- package/esm2022/lib/util/models/user.model.mjs +35 -0
- package/esm2022/lib/util/models/video/product-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/video/support-rapid-search.model.mjs +3 -0
- package/esm2022/lib/util/models/video-content.model.mjs +18 -0
- package/esm2022/lib/util/number.validator.mjs +129 -0
- package/esm2022/lib/util/paginator/custom-paginator-configuration.mjs +59 -0
- package/esm2022/lib/util/permissions/permissions.service.mjs +49 -0
- package/esm2022/lib/util/pipes/capitalizefirst.pipe.mjs +41 -0
- package/esm2022/lib/util/pipes/comma-separated-number.pipe.mjs +15 -0
- package/esm2022/lib/util/pipes/common-translate.pipe.mjs +38 -0
- package/esm2022/lib/util/pipes/display-html.pipe.mjs +20 -0
- package/esm2022/lib/util/pipes/display-null.pipe.mjs +24 -0
- package/esm2022/lib/util/pipes/format-currency.pipe.mjs +31 -0
- package/esm2022/lib/util/pipes/format-duration.pipe.mjs +23 -0
- package/esm2022/lib/util/pipes/format-number-input.pipe.mjs +22 -0
- package/esm2022/lib/util/pipes/local-date.pipe.mjs +27 -0
- package/esm2022/lib/util/pipes/my-number.pipe.mjs +44 -0
- package/esm2022/lib/util/pipes/third-party-address-search.pipe.mjs +15 -0
- package/esm2022/lib/util/pipes/third-party-address.pipe.mjs +16 -0
- package/esm2022/lib/util/pipes/trim-string.pipe.mjs +25 -0
- package/esm2022/lib/util/regex/regex.service.mjs +94 -0
- package/esm2022/lib/util/services/api/commercial-api.service.mjs +28 -0
- package/esm2022/lib/util/services/api/common-api.service.mjs +98 -0
- package/esm2022/lib/util/services/api/legal-api.service.mjs +32 -0
- package/esm2022/lib/util/services/api/video-api.service.mjs +45 -0
- package/esm2022/lib/util/services/auth/auth.service.mjs +18 -0
- package/esm2022/lib/util/services/elasticsearch/elasticsearch.service.mjs +180 -0
- package/esm2022/lib/util/services/elasticsearch/subsidiaries.service.mjs +48 -0
- package/esm2022/lib/util/services/form-action/form-actions-events.service.mjs +25 -0
- package/esm2022/lib/util/services/guard/auth.guard.mjs +32 -0
- package/esm2022/lib/util/services/guard/login.guard.mjs +23 -0
- package/esm2022/lib/util/services/history/history.service.mjs +39 -0
- package/esm2022/lib/util/services/interceptor/auth.interceptor.mjs +53 -0
- package/esm2022/lib/util/services/jwt-security/aes.service.mjs +34 -0
- package/esm2022/lib/util/services/jwt-security/interceptorhttp.service.mjs +18 -0
- package/esm2022/lib/util/services/jwt-security/jwt.helpher.mjs +34 -0
- package/esm2022/lib/util/services/storage/local-storage.service.mjs +36 -0
- package/esm2022/lib/util/services/storage/session-storage.service.mjs +38 -0
- package/esm2022/lib/util/services/translate-language/lang.service.mjs +31 -0
- package/esm2022/lib/util/services/user/user-subsidiary.service.mjs +22 -0
- package/esm2022/lib/util/sort.mjs +22 -0
- package/esm2022/lib/util/theme/theme-event.service.mjs +17 -0
- package/esm2022/lib/util/toaster/toaster-events.service.mjs +32 -0
- package/esm2022/lib/util/util.module.mjs +281 -0
- package/esm2022/new-front-common-library.mjs +5 -0
- package/esm2022/public-api.mjs +59 -0
- package/fesm2022/new-front-common-library.mjs +5729 -0
- package/fesm2022/new-front-common-library.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/util/array.service.d.ts +7 -0
- package/lib/util/component/header/header.component.d.ts +74 -0
- package/lib/util/component/header/menu/menu.component.d.ts +27 -0
- package/lib/util/component/header/menu/menu.const.d.ts +2 -0
- package/lib/util/component/header/menu/menu.model.d.ts +23 -0
- package/lib/util/component/overlay/overlay.component.d.ts +17 -0
- package/lib/util/component/overlay/overlay.service.d.ts +13 -0
- package/lib/util/component/popup/popup-login/popup-login.component.d.ts +35 -0
- package/lib/util/component/sub-header/sub-header.component.d.ts +13 -0
- package/lib/util/config.d.ts +8 -0
- package/lib/util/date/PeriodModel.d.ts +6 -0
- package/lib/util/date/date-format-constants.d.ts +25 -0
- package/lib/util/date/date.util.d.ts +16 -0
- package/lib/util/decorators/theme.decorator.d.ts +1 -0
- package/lib/util/decorators/user.decorator.d.ts +1 -0
- package/lib/util/directives/my-number-formatter-directive.d.ts +15 -0
- package/lib/util/directives/show-if-truncated.directive.d.ts +11 -0
- package/lib/util/enums/family.enum.d.ts +4 -0
- package/lib/util/enums/rapid-search-item-type.enum.d.ts +13 -0
- package/lib/util/enums/status-color.enum.d.ts +9 -0
- package/lib/util/event/header/header-events.service.d.ts +11 -0
- package/lib/util/event/storage/local-storage-events.service.d.ts +9 -0
- package/lib/util/event/storage/session-storage-events.service.d.ts +10 -0
- package/lib/util/http/http-params.builder.d.ts +9 -0
- package/lib/util/i18n/de.d.ts +141 -0
- package/lib/util/i18n/en.d.ts +145 -0
- package/lib/util/i18n/fr.d.ts +145 -0
- package/lib/util/i18n/multi-translate-http-loader.d.ts +14 -0
- package/lib/util/models/any-line.model.d.ts +24 -0
- package/lib/util/models/audio-content.model.d.ts +27 -0
- package/lib/util/models/authPermission.model.d.ts +7 -0
- package/lib/util/models/authUser.model.d.ts +16 -0
- package/lib/util/models/basic.model.d.ts +11 -0
- package/lib/util/models/box-set-item.model.d.ts +12 -0
- package/lib/util/models/commercial/deal-rapid-search-model.d.ts +10 -0
- package/lib/util/models/commercial/invoice-rapid-search-model.d.ts +18 -0
- package/lib/util/models/commercial/work-record-rapid-search-model.d.ts +21 -0
- package/lib/util/models/disc-program.model.d.ts +9 -0
- package/lib/util/models/disc.model.d.ts +15 -0
- package/lib/util/models/eventType.model.d.ts +5 -0
- package/lib/util/models/expenditure-commitment/purchase-order-file.model.d.ts +8 -0
- package/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.d.ts +10 -0
- package/lib/util/models/family.model.d.ts +5 -0
- package/{src/lib/util/models/index.ts → lib/util/models/index.d.ts} +0 -1
- package/lib/util/models/lang-line.model.d.ts +18 -0
- package/lib/util/models/legal/contract-rapid-search-model.d.ts +10 -0
- package/lib/util/models/legal/contract-work.model.d.ts +27 -0
- package/lib/util/models/legal/contract-work2.model.d.ts +23 -0
- package/lib/util/models/legal/type-status-rapid-search.model.d.ts +5 -0
- package/lib/util/models/media-line.model.d.ts +9 -0
- package/lib/util/models/menu-language.model.d.ts +6 -0
- package/lib/util/models/permission.model.d.ts +12 -0
- package/lib/util/models/product-box-set.model.d.ts +8 -0
- package/lib/util/models/product-disc-detail.model.d.ts +14 -0
- package/lib/util/models/product-disc.model.d.ts +11 -0
- package/lib/util/models/product-division.model.d.ts +15 -0
- package/lib/util/models/product-type.model.d.ts +7 -0
- package/lib/util/models/product.model.d.ts +52 -0
- package/lib/util/models/program.model.d.ts +21 -0
- package/lib/util/models/purchase-order/purchase-order.model.d.ts +40 -0
- package/lib/util/models/referential/WorkVersionArticleDto.d.ts +10 -0
- package/lib/util/models/referential/adress-type.model.d.ts +5 -0
- package/lib/util/models/referential/adress.model.d.ts +20 -0
- package/lib/util/models/referential/attached-file.model.d.ts +11 -0
- package/lib/util/models/referential/bank-account.model.d.ts +15 -0
- package/lib/util/models/referential/bank-accounts.model.d.ts +17 -0
- package/lib/util/models/referential/basic-hierarchy.model.d.ts +6 -0
- package/lib/util/models/referential/broadcast-list-item.model.d.ts +8 -0
- package/lib/util/models/referential/color.model.d.ts +6 -0
- package/lib/util/models/referential/company.model.d.ts +7 -0
- package/lib/util/models/referential/content-type.model.d.ts +12 -0
- package/lib/util/models/referential/content.model.d.ts +7 -0
- package/lib/util/models/referential/cost-center-criteria-values.model.d.ts +7 -0
- package/lib/util/models/referential/cost-center-criteria.model.d.ts +12 -0
- package/lib/util/models/referential/cost-center.model.d.ts +18 -0
- package/lib/util/models/referential/coutry.model.d.ts +7 -0
- package/lib/util/models/referential/currency.model.d.ts +11 -0
- package/lib/util/models/referential/editorial-content.model.d.ts +25 -0
- package/lib/util/models/referential/fixing.model.d.ts +10 -0
- package/lib/util/models/referential/flat-media.model.d.ts +9 -0
- package/lib/util/models/referential/format-image.model.d.ts +7 -0
- package/lib/util/models/referential/format-type.model.d.ts +6 -0
- package/lib/util/models/referential/format.model.d.ts +7 -0
- package/lib/util/models/referential/fsk-index.model.d.ts +22 -0
- package/lib/util/models/referential/fsk.model.d.ts +37 -0
- package/lib/util/models/referential/function.model.d.ts +8 -0
- package/lib/util/models/referential/genre.model.d.ts +7 -0
- package/lib/util/models/referential/invoice-product-type.model.d.ts +7 -0
- package/lib/util/models/referential/keywords.model.d.ts +6 -0
- package/lib/util/models/referential/language.model.d.ts +11 -0
- package/lib/util/models/referential/media-filter.model.d.ts +10 -0
- package/lib/util/models/referential/media.model.d.ts +11 -0
- package/lib/util/models/referential/module.model.d.ts +11 -0
- package/{src/lib/util/models/referential/parameter.model.ts → lib/util/models/referential/parameter.model.d.ts} +0 -2
- package/lib/util/models/referential/participant.model.d.ts +11 -0
- package/lib/util/models/referential/person.model.d.ts +13 -0
- package/lib/util/models/referential/project-status.model.d.ts +6 -0
- package/lib/util/models/referential/quota.model.d.ts +7 -0
- package/lib/util/models/referential/referential-entity-state.model.d.ts +11 -0
- package/lib/util/models/referential/referential-value.model.d.ts +11 -0
- package/lib/util/models/referential/referentiel.model.d.ts +12 -0
- package/lib/util/models/referential/restriction.model.d.ts +9 -0
- package/lib/util/models/referential/sap-order.model.d.ts +27 -0
- package/lib/util/models/referential/service-error.model.d.ts +13 -0
- package/lib/util/models/referential/sound.model.d.ts +6 -0
- package/lib/util/models/referential/territories-languages.model.d.ts +8 -0
- package/lib/util/models/referential/territory-filter.model.d.ts +6 -0
- package/lib/util/models/referential/territory.model.d.ts +12 -0
- package/lib/util/models/referential/theme.model.d.ts +7 -0
- package/lib/util/models/referential/third-party-address-rapid-search.model.d.ts +8 -0
- package/lib/util/models/referential/third-party-creation-request.model.d.ts +48 -0
- package/lib/util/models/referential/third-party-module.model.d.ts +11 -0
- package/lib/util/models/referential/third-party-rapid-search.model.d.ts +8 -0
- package/lib/util/models/referential/third-party.model.d.ts +45 -0
- package/lib/util/models/referential/translated-value-model.d.ts +10 -0
- package/lib/util/models/referential/tva.model.d.ts +7 -0
- package/lib/util/models/referential/type-export.model.d.ts +7 -0
- package/lib/util/models/referential/type-tva-company-territory.model.d.ts +18 -0
- package/lib/util/models/referential/type-tva.model.d.ts +10 -0
- package/{src/lib/util/models/referential/user-form.model.ts → lib/util/models/referential/user-form.model.d.ts} +0 -2
- package/lib/util/models/referential/work-addons-model.d.ts +25 -0
- package/lib/util/models/referential/work-appartenance.model.d.ts +7 -0
- package/lib/util/models/referential/work-genre.model.d.ts +11 -0
- package/lib/util/models/referential/work-language.model.d.ts +11 -0
- package/lib/util/models/referential/work-milo.model.d.ts +46 -0
- package/lib/util/models/referential/work-participant.model.d.ts +10 -0
- package/lib/util/models/referential/work-restrictions-model.d.ts +18 -0
- package/lib/util/models/referential/work-theme.model.d.ts +11 -0
- package/lib/util/models/referential/work-title.model.d.ts +10 -0
- package/lib/util/models/referential/work-version-origin.model.d.ts +10 -0
- package/lib/util/models/referential/work-version-rapid-search.model.d.ts +9 -0
- package/lib/util/models/referential/work-versions-used.model.d.ts +12 -0
- package/lib/util/models/referential/work-versions.model.d.ts +29 -0
- package/lib/util/models/referential/work-year-production.model.d.ts +6 -0
- package/lib/util/models/referential/work.model.d.ts +74 -0
- package/lib/util/models/referential/zone.model.d.ts +6 -0
- package/lib/util/models/referentiel.model.d.ts +12 -0
- package/lib/util/models/search-response.model.d.ts +7 -0
- package/lib/util/models/section.model.d.ts +7 -0
- package/lib/util/models/select/options.model.d.ts +6 -0
- package/lib/util/models/select/select.model.d.ts +5 -0
- package/lib/util/models/subsidiary.model.d.ts +7 -0
- package/lib/util/models/subtitle-content.model.d.ts +26 -0
- package/lib/util/models/user-video.model.d.ts +10 -0
- package/lib/util/models/user.model.d.ts +27 -0
- package/lib/util/models/video/product-rapid-search.model.d.ts +8 -0
- package/lib/util/models/video/support-rapid-search.model.d.ts +6 -0
- package/lib/util/models/video-content.model.d.ts +24 -0
- package/lib/util/number.validator.d.ts +14 -0
- package/lib/util/paginator/custom-paginator-configuration.d.ts +16 -0
- package/lib/util/permissions/permissions.service.d.ts +15 -0
- package/lib/util/pipes/capitalizefirst.pipe.d.ts +8 -0
- package/lib/util/pipes/comma-separated-number.pipe.d.ts +7 -0
- package/lib/util/pipes/common-translate.pipe.d.ts +12 -0
- package/lib/util/pipes/display-html.pipe.d.ts +10 -0
- package/lib/util/pipes/display-null.pipe.d.ts +8 -0
- package/lib/util/pipes/format-currency.pipe.d.ts +10 -0
- package/lib/util/pipes/format-duration.pipe.d.ts +7 -0
- package/lib/util/pipes/format-number-input.pipe.d.ts +7 -0
- package/lib/util/pipes/local-date.pipe.d.ts +9 -0
- package/lib/util/pipes/my-number.pipe.d.ts +11 -0
- package/lib/util/pipes/third-party-address-search.pipe.d.ts +8 -0
- package/lib/util/pipes/third-party-address.pipe.d.ts +8 -0
- package/lib/util/pipes/trim-string.pipe.d.ts +7 -0
- package/lib/util/regex/regex.service.d.ts +12 -0
- package/lib/util/services/api/commercial-api.service.d.ts +12 -0
- package/lib/util/services/api/common-api.service.d.ts +27 -0
- package/lib/util/services/api/legal-api.service.d.ts +15 -0
- package/lib/util/services/api/video-api.service.d.ts +17 -0
- package/lib/util/services/auth/auth.service.d.ts +9 -0
- package/lib/util/services/elasticsearch/elasticsearch.service.d.ts +35 -0
- package/lib/util/services/elasticsearch/subsidiaries.service.d.ts +12 -0
- package/lib/util/services/form-action/form-actions-events.service.d.ts +14 -0
- package/lib/util/services/guard/auth.guard.d.ts +2 -0
- package/lib/util/services/guard/login.guard.d.ts +1 -0
- package/lib/util/services/history/history.service.d.ts +10 -0
- package/lib/util/services/interceptor/auth.interceptor.d.ts +16 -0
- package/lib/util/services/jwt-security/aes.service.d.ts +12 -0
- package/lib/util/services/jwt-security/interceptorhttp.service.d.ts +8 -0
- package/lib/util/services/jwt-security/jwt.helpher.d.ts +4 -0
- package/lib/util/services/storage/local-storage.service.d.ts +13 -0
- package/lib/util/services/storage/session-storage.service.d.ts +13 -0
- package/lib/util/services/translate-language/lang.service.d.ts +14 -0
- package/lib/util/services/user/user-subsidiary.service.d.ts +9 -0
- package/lib/util/sort.d.ts +4 -0
- package/lib/util/theme/theme-event.service.d.ts +9 -0
- package/lib/util/toaster/toaster-events.service.d.ts +15 -0
- package/lib/util/util.module.d.ts +49 -0
- package/package.json +19 -2
- package/{src/public-api.ts → public-api.d.ts} +2 -17
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -10
- package/src/lib/new-front-common-library.component.spec.ts +0 -25
- package/src/lib/new-front-common-library.component.ts +0 -20
- package/src/lib/new-front-common-library.module.ts +0 -26
- package/src/lib/new-front-common-library.service.spec.ts +0 -16
- package/src/lib/new-front-common-library.service.ts +0 -10
- package/src/lib/util/animations/actions.animation.ts +0 -16
- package/src/lib/util/animations/fade.animation.ts +0 -16
- package/src/lib/util/array.service.ts +0 -14
- package/src/lib/util/component/header/header.component.html +0 -389
- package/src/lib/util/component/header/header.component.scss +0 -265
- package/src/lib/util/component/header/header.component.ts +0 -245
- package/src/lib/util/component/header/menu/menu.component.html +0 -52
- package/src/lib/util/component/header/menu/menu.component.scss +0 -127
- package/src/lib/util/component/header/menu/menu.component.spec.ts +0 -21
- package/src/lib/util/component/header/menu/menu.component.ts +0 -94
- package/src/lib/util/component/header/menu/menu.const.ts +0 -546
- package/src/lib/util/component/header/menu/menu.model.ts +0 -26
- package/src/lib/util/component/overlay/overlay.component.css +0 -20
- package/src/lib/util/component/overlay/overlay.component.html +0 -10
- package/src/lib/util/component/overlay/overlay.component.ts +0 -42
- package/src/lib/util/component/overlay/overlay.service.ts +0 -23
- package/src/lib/util/component/popup/popup-login/popup-login.component.css +0 -3
- package/src/lib/util/component/popup/popup-login/popup-login.component.html +0 -29
- package/src/lib/util/component/popup/popup-login/popup-login.component.ts +0 -96
- package/src/lib/util/component/sub-header/sub-header.component.css +0 -136
- package/src/lib/util/component/sub-header/sub-header.component.html +0 -20
- package/src/lib/util/component/sub-header/sub-header.component.spec.ts +0 -25
- package/src/lib/util/component/sub-header/sub-header.component.ts +0 -37
- package/src/lib/util/config.ts +0 -15
- package/src/lib/util/date/PeriodModel.ts +0 -7
- package/src/lib/util/date/date-format-constants.ts +0 -12
- package/src/lib/util/date/date.util.ts +0 -222
- package/src/lib/util/decorators/theme.decorator.ts +0 -24
- package/src/lib/util/decorators/user.decorator.ts +0 -30
- package/src/lib/util/directives/my-number-formatter-directive.ts +0 -32
- package/src/lib/util/directives/show-if-truncated.directive.ts +0 -19
- package/src/lib/util/enums/family.enum.ts +0 -4
- package/src/lib/util/enums/rapid-search-item-type.enum.ts +0 -11
- package/src/lib/util/enums/status-color.enum.ts +0 -9
- package/src/lib/util/event/header/header-events.service.ts +0 -20
- package/src/lib/util/event/storage/local-storage-events.service.ts +0 -15
- package/src/lib/util/event/storage/session-storage-events.service.ts +0 -15
- package/src/lib/util/http/http-params.builder.ts +0 -33
- package/src/lib/util/i18n/de.ts +0 -173
- package/src/lib/util/i18n/en.ts +0 -173
- package/src/lib/util/i18n/fr.ts +0 -174
- package/src/lib/util/i18n/multi-translate-http-loader.ts +0 -31
- package/src/lib/util/models/any-line.model.ts +0 -45
- package/src/lib/util/models/audio-content.model.ts +0 -40
- package/src/lib/util/models/authPermission.model.ts +0 -17
- package/src/lib/util/models/authUser.model.ts +0 -28
- package/src/lib/util/models/basic-hierarchy.model.ts +0 -8
- package/src/lib/util/models/basic.model.ts +0 -31
- package/src/lib/util/models/box-set-item.model.ts +0 -23
- package/src/lib/util/models/commercial/deal-rapid-search-model.ts +0 -10
- package/src/lib/util/models/commercial/invoice-rapid-search-model.ts +0 -25
- package/src/lib/util/models/commercial/work-record-rapid-search-model.ts +0 -28
- package/src/lib/util/models/custom-typings.d.ts +0 -166
- package/src/lib/util/models/disc-program.model.ts +0 -29
- package/src/lib/util/models/disc.model.ts +0 -26
- package/src/lib/util/models/eventType.model.ts +0 -7
- package/src/lib/util/models/expenditure-commitment/purchase-order-file.model.ts +0 -27
- package/src/lib/util/models/expenditure-commitment/purchase-order-rapid-search.model.ts +0 -10
- package/src/lib/util/models/family.model.ts +0 -6
- package/src/lib/util/models/lang-line.model.ts +0 -31
- package/src/lib/util/models/legal/contract-rapid-search-model.ts +0 -13
- package/src/lib/util/models/legal/contract-work.model.ts +0 -43
- package/src/lib/util/models/legal/contract-work2.model.ts +0 -39
- package/src/lib/util/models/legal/type-status-rapid-search.model.ts +0 -5
- package/src/lib/util/models/media-line.model.ts +0 -20
- package/src/lib/util/models/menu-language.model.ts +0 -16
- package/src/lib/util/models/milo/territory.model.ts +0 -19
- package/src/lib/util/models/module.model.ts +0 -9
- package/src/lib/util/models/permission.model.ts +0 -21
- package/src/lib/util/models/product-box-set.model.ts +0 -19
- package/src/lib/util/models/product-disc-detail.model.ts +0 -25
- package/src/lib/util/models/product-disc.model.ts +0 -31
- package/src/lib/util/models/product-division.model.ts +0 -35
- package/src/lib/util/models/product-type.model.ts +0 -26
- package/src/lib/util/models/product.model.ts +0 -73
- package/src/lib/util/models/program.model.ts +0 -34
- package/src/lib/util/models/purchase-order/purchase-order.model.ts +0 -61
- package/src/lib/util/models/referential/WorkVersionArticleDto.ts +0 -20
- package/src/lib/util/models/referential/adress-type.model.ts +0 -13
- package/src/lib/util/models/referential/adress.model.ts +0 -31
- package/src/lib/util/models/referential/attached-file.model.ts +0 -21
- package/src/lib/util/models/referential/bank-account.model.ts +0 -25
- package/src/lib/util/models/referential/bank-accounts.model.ts +0 -34
- package/src/lib/util/models/referential/basic-hierarchy.model.ts +0 -8
- package/src/lib/util/models/referential/broadcast-list-item.model.ts +0 -19
- package/src/lib/util/models/referential/color.model.ts +0 -16
- package/src/lib/util/models/referential/company.model.ts +0 -17
- package/src/lib/util/models/referential/content-type.model.ts +0 -22
- package/src/lib/util/models/referential/content.model.ts +0 -26
- package/src/lib/util/models/referential/cost-center-criteria-values.model.ts +0 -17
- package/src/lib/util/models/referential/cost-center-criteria.model.ts +0 -23
- package/src/lib/util/models/referential/cost-center.model.ts +0 -37
- package/src/lib/util/models/referential/coutry.model.ts +0 -17
- package/src/lib/util/models/referential/currency.model.ts +0 -22
- package/src/lib/util/models/referential/editorial-content.model.ts +0 -37
- package/src/lib/util/models/referential/fixing.model.ts +0 -21
- package/src/lib/util/models/referential/flat-media.model.ts +0 -19
- package/src/lib/util/models/referential/format-image.model.ts +0 -17
- package/src/lib/util/models/referential/format-type.model.ts +0 -16
- package/src/lib/util/models/referential/format.model.ts +0 -17
- package/src/lib/util/models/referential/fsk-index.model.ts +0 -36
- package/src/lib/util/models/referential/fsk.model.ts +0 -53
- package/src/lib/util/models/referential/function.model.ts +0 -25
- package/src/lib/util/models/referential/genre.model.ts +0 -17
- package/src/lib/util/models/referential/invoice-product-type.model.ts +0 -24
- package/src/lib/util/models/referential/keywords.model.ts +0 -16
- package/src/lib/util/models/referential/language.model.ts +0 -22
- package/src/lib/util/models/referential/media-filter.model.ts +0 -10
- package/src/lib/util/models/referential/media.model.ts +0 -21
- package/src/lib/util/models/referential/module.model.ts +0 -21
- package/src/lib/util/models/referential/participant.model.ts +0 -31
- package/src/lib/util/models/referential/person.model.ts +0 -30
- package/src/lib/util/models/referential/po/WorkRestrictionPO.ts +0 -11
- package/src/lib/util/models/referential/project-status.model.ts +0 -16
- package/src/lib/util/models/referential/quota.model.ts +0 -17
- package/src/lib/util/models/referential/referential-entity-state.model.ts +0 -22
- package/src/lib/util/models/referential/referential-value.model.ts +0 -21
- package/src/lib/util/models/referential/referentiel.model.ts +0 -29
- package/src/lib/util/models/referential/restriction.model.ts +0 -26
- package/src/lib/util/models/referential/sap-order.model.ts +0 -48
- package/src/lib/util/models/referential/service-error.model.ts +0 -16
- package/src/lib/util/models/referential/sound.model.ts +0 -16
- package/src/lib/util/models/referential/territories-languages.model.ts +0 -19
- package/src/lib/util/models/referential/territory-filter.model.ts +0 -6
- package/src/lib/util/models/referential/territory.model.ts +0 -27
- package/src/lib/util/models/referential/theme.model.ts +0 -17
- package/src/lib/util/models/referential/third-party-address-rapid-search.model.ts +0 -8
- package/src/lib/util/models/referential/third-party-creation-request.model.ts +0 -59
- package/src/lib/util/models/referential/third-party-module.model.ts +0 -21
- package/src/lib/util/models/referential/third-party-rapid-search.model.ts +0 -10
- package/src/lib/util/models/referential/third-party.model.ts +0 -100
- package/src/lib/util/models/referential/translated-value-model.ts +0 -20
- package/src/lib/util/models/referential/tva.model.ts +0 -17
- package/src/lib/util/models/referential/type-export.model.ts +0 -17
- package/src/lib/util/models/referential/type-tva-company-territory.model.ts +0 -36
- package/src/lib/util/models/referential/type-tva.model.ts +0 -29
- package/src/lib/util/models/referential/work-addons-model.ts +0 -36
- package/src/lib/util/models/referential/work-appartenance.model.ts +0 -17
- package/src/lib/util/models/referential/work-genre.model.ts +0 -21
- package/src/lib/util/models/referential/work-language.model.ts +0 -21
- package/src/lib/util/models/referential/work-milo.model.ts +0 -65
- package/src/lib/util/models/referential/work-participant.model.ts +0 -28
- package/src/lib/util/models/referential/work-restrictions-model.ts +0 -34
- package/src/lib/util/models/referential/work-theme.model.ts +0 -21
- package/src/lib/util/models/referential/work-title.model.ts +0 -27
- package/src/lib/util/models/referential/work-version-origin.model.ts +0 -20
- package/src/lib/util/models/referential/work-version-rapid-search.model.ts +0 -10
- package/src/lib/util/models/referential/work-versions-used.model.ts +0 -22
- package/src/lib/util/models/referential/work-versions.model.ts +0 -47
- package/src/lib/util/models/referential/work-year-production.model.ts +0 -16
- package/src/lib/util/models/referential/work.model.ts +0 -88
- package/src/lib/util/models/referential/zone.model.ts +0 -16
- package/src/lib/util/models/referentiel.model.ts +0 -29
- package/src/lib/util/models/search-response.model.ts +0 -7
- package/src/lib/util/models/section.model.ts +0 -11
- package/src/lib/util/models/select/options.model.ts +0 -8
- package/src/lib/util/models/select/select.model.ts +0 -4
- package/src/lib/util/models/subsidiary.model.ts +0 -10
- package/src/lib/util/models/subtitle-content.model.ts +0 -39
- package/src/lib/util/models/user-video.model.ts +0 -29
- package/src/lib/util/models/user.model.ts +0 -41
- package/src/lib/util/models/video/product-rapid-search.model.ts +0 -10
- package/src/lib/util/models/video/support-rapid-search.model.ts +0 -7
- package/src/lib/util/models/video-content.model.ts +0 -37
- package/src/lib/util/number.validator.ts +0 -123
- package/src/lib/util/paginator/custom-paginator-configuration.ts +0 -68
- package/src/lib/util/permissions/permissions.service.ts +0 -47
- package/src/lib/util/pipes/capitalizefirst.pipe.ts +0 -39
- package/src/lib/util/pipes/comma-separated-number.pipe.ts +0 -9
- package/src/lib/util/pipes/common-translate.pipe.ts +0 -37
- package/src/lib/util/pipes/display-html.pipe.ts +0 -15
- package/src/lib/util/pipes/display-null.pipe.ts +0 -19
- package/src/lib/util/pipes/format-currency.pipe.ts +0 -26
- package/src/lib/util/pipes/format-duration.pipe.ts +0 -16
- package/src/lib/util/pipes/format-number-input.pipe.ts +0 -19
- package/src/lib/util/pipes/local-date.pipe.ts +0 -29
- package/src/lib/util/pipes/my-number.pipe.ts +0 -51
- package/src/lib/util/pipes/third-party-address-search.pipe.ts +0 -12
- package/src/lib/util/pipes/third-party-address.pipe.ts +0 -13
- package/src/lib/util/pipes/trim-string.pipe.ts +0 -24
- package/src/lib/util/regex/regex.service.ts +0 -94
- package/src/lib/util/regex/regex.spec.ts +0 -45
- package/src/lib/util/services/api/commercial-api.service.ts +0 -23
- package/src/lib/util/services/api/common-api.service.ts +0 -121
- package/src/lib/util/services/api/legal-api.service.ts +0 -27
- package/src/lib/util/services/api/video-api.service.ts +0 -45
- package/src/lib/util/services/auth/auth.service.spec.ts +0 -16
- package/src/lib/util/services/auth/auth.service.ts +0 -14
- package/src/lib/util/services/elasticsearch/elasticsearch.service.ts +0 -179
- package/src/lib/util/services/elasticsearch/subsidiaries.service.ts +0 -48
- package/src/lib/util/services/form-action/form-actions-events.service.ts +0 -25
- package/src/lib/util/services/guard/auth.guard.ts +0 -44
- package/src/lib/util/services/guard/login.guard.ts +0 -26
- package/src/lib/util/services/history/history.service.ts +0 -38
- package/src/lib/util/services/interceptor/auth.interceptor.ts +0 -66
- package/src/lib/util/services/jwt-security/aes.service.ts +0 -48
- package/src/lib/util/services/jwt-security/interceptorhttp.service.ts +0 -98
- package/src/lib/util/services/jwt-security/jwt.helpher.ts +0 -38
- package/src/lib/util/services/storage/local-storage.service.ts +0 -36
- package/src/lib/util/services/storage/session-storage.service.ts +0 -39
- package/src/lib/util/services/translate-language/lang.service.ts +0 -26
- package/src/lib/util/services/user/user-subsidiary.service.spec.ts +0 -207
- package/src/lib/util/services/user/user-subsidiary.service.ts +0 -21
- package/src/lib/util/sort.ts +0 -27
- package/src/lib/util/theme/theme-event.service.ts +0 -15
- package/src/lib/util/toaster/toaster-events.service.ts +0 -32
- package/src/lib/util/util.module.ts +0 -185
- package/src/test.ts +0 -13
- package/tsconfig.lib.json +0 -19
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
- /package/{src/lib/util/interfaces/permissions.interface.ts → lib/util/interfaces/permissions.interface.d.ts} +0 -0
|
@@ -1,389 +0,0 @@
|
|
|
1
|
-
<mat-toolbar class="d-flex align-items-center toolbar-header toolbar-padding">
|
|
2
|
-
<span class="d-flex align-items-end">
|
|
3
|
-
<a
|
|
4
|
-
[href]="env === 'prod' ? 'https://unity.studiocanal.com/dashboard' : (env === 'sbx' ? 'https://unity-sbx.cplus/dashboard' : 'https://unity-' + env + '.studiocanal.com/dashboard')">
|
|
5
|
-
<img class="logo-unity" src="./assets/img/unity_logo_48x48.png">
|
|
6
|
-
</a>
|
|
7
|
-
<span *ngIf="env != 'prod'" [attr.id]="'env-' + env" class="env">{{ env }}</span>
|
|
8
|
-
</span>
|
|
9
|
-
|
|
10
|
-
<sc-menu [lang]="lang" (navigate)="navigate($event.module, $event.route, $event.queryParams)"
|
|
11
|
-
(redirect)="redirect($event.route)" class="menu-header" />
|
|
12
|
-
|
|
13
|
-
<div class="global-search">
|
|
14
|
-
<mat-icon class="header-icon">search</mat-icon>
|
|
15
|
-
<span class="global-search-separator"></span>
|
|
16
|
-
<mat-form-field class="max-width-100" subscriptSizing="dynamic">
|
|
17
|
-
<input [formControl]="formControlSearch"
|
|
18
|
-
[matAutocomplete]="autoSearch"
|
|
19
|
-
class="global-search-input max-width-85"
|
|
20
|
-
matInput
|
|
21
|
-
placeholder="search ..." />
|
|
22
|
-
|
|
23
|
-
<button (click)="navigate(null, '/advanced-search')"
|
|
24
|
-
matSuffix
|
|
25
|
-
class="btn advanced-button" mat-raised-button>
|
|
26
|
-
<mat-icon>flash_on</mat-icon>
|
|
27
|
-
{{ 'COMMON.HEADER.GLOBAL_SEARCH.ADVANCED' | commonTranslate: lang }}
|
|
28
|
-
</button>
|
|
29
|
-
|
|
30
|
-
<mat-autocomplete #autoSearch="matAutocomplete" class="mat-autocomplete-global-search" panelWidth="54vw">
|
|
31
|
-
<mat-option (onSelectionChange)="onSelectSearch($event, doc)"
|
|
32
|
-
*ngFor="let doc of documents$ | async"
|
|
33
|
-
class="mat-option-global-search">
|
|
34
|
-
<!--PURCHASE_ORDER-->
|
|
35
|
-
<div *ngIf="doc.docType === RapidSearchItemType.PURCHASE_ORDER" class="d-flex align-items-center">
|
|
36
|
-
<div class="max-width-5">
|
|
37
|
-
<span class="material-icons-outlined rapid-search-type-icon">receipt_long</span>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="d-flex max-width-95">
|
|
40
|
-
<div class="d-flex flex-column max-width-70">
|
|
41
|
-
<span
|
|
42
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PURCHASE_ORDER' | commonTranslate: lang }}</span>
|
|
43
|
-
<span>{{ doc.poNumber }}
|
|
44
|
-
- {{ doc.totalAmount | currency: doc.currencyCode:'symbol':undefined:'fr-FR' }}</span>
|
|
45
|
-
</div>
|
|
46
|
-
<div class="d-flex flex-column max-width-15">
|
|
47
|
-
<span
|
|
48
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.BASKET_NUMBER' | commonTranslate: lang }}</span>
|
|
49
|
-
<span>{{ doc?.basketNumber ? doc.basketNumber : '-' }}</span>
|
|
50
|
-
</div>
|
|
51
|
-
<div class="d-flex flex-column max-width-15">
|
|
52
|
-
<span
|
|
53
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.EAN' | commonTranslate: lang }}</span>
|
|
54
|
-
<span>{{ doc?.ean ? doc.ean : '-' }}</span>
|
|
55
|
-
</div>
|
|
56
|
-
</div>
|
|
57
|
-
</div>
|
|
58
|
-
<!--PRODUCT-->
|
|
59
|
-
<div *ngIf="doc.docType === RapidSearchItemType.PRODUCT" class="d-flex align-items-center">
|
|
60
|
-
<div class="max-width-5">
|
|
61
|
-
<span class="material-icons-outlined rapid-search-type-icon">movie</span>
|
|
62
|
-
</div>
|
|
63
|
-
<div class="d-flex max-width-95">
|
|
64
|
-
<div class="ellipsis d-flex flex-column max-width-60">
|
|
65
|
-
<span
|
|
66
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PRODUCT' | commonTranslate: lang }}</span>
|
|
67
|
-
<span class="ellipsis">{{ doc.title }}</span>
|
|
68
|
-
</div>
|
|
69
|
-
<div class="d-flex flex-column max-width-10">
|
|
70
|
-
<span
|
|
71
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.SUPPORT' | commonTranslate: lang }}</span>
|
|
72
|
-
<span>{{ doc.support[labelLang] }}</span>
|
|
73
|
-
</div>
|
|
74
|
-
<div class="d-flex flex-column max-width-15">
|
|
75
|
-
<span
|
|
76
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.EAN' | commonTranslate: lang }}</span>
|
|
77
|
-
<span>{{ doc.ean }}</span>
|
|
78
|
-
</div>
|
|
79
|
-
<div class="d-flex flex-column max-width-15">
|
|
80
|
-
<span
|
|
81
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.RELEASE_DATE' | commonTranslate: lang }}</span>
|
|
82
|
-
<span>{{ doc?.releaseDate ? doc.releaseDate : '-' }}</span>
|
|
83
|
-
</div>
|
|
84
|
-
</div>
|
|
85
|
-
</div>
|
|
86
|
-
<!--WORK-->
|
|
87
|
-
<div *ngIf="doc.docType === RapidSearchItemType.WORK_VERSION" class="d-flex align-items-center">
|
|
88
|
-
<div class="max-width-5">
|
|
89
|
-
<span class="material-icons-outlined rapid-search-type-icon">theaters</span>
|
|
90
|
-
</div>
|
|
91
|
-
<div class="d-flex max-width-95">
|
|
92
|
-
<div class="d-flex flex-column max-width-75 ellipsis">
|
|
93
|
-
<span
|
|
94
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.WORK' | commonTranslate: lang }}</span>
|
|
95
|
-
<span class="ellipsis">{{ doc.title }} ({{ doc.codeIso }})</span>
|
|
96
|
-
</div>
|
|
97
|
-
<div class="d-flex flex-column max-width-10">
|
|
98
|
-
<span
|
|
99
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.MILO_CODE' | commonTranslate: lang }}</span>
|
|
100
|
-
<span>{{ doc.miloCode }}</span>
|
|
101
|
-
</div>
|
|
102
|
-
<div class="d-flex flex-column max-width-15">
|
|
103
|
-
<span
|
|
104
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PRODUCTION_YEAR' | commonTranslate: lang }}</span>
|
|
105
|
-
<span>{{ doc.yearOfProduction }}</span>
|
|
106
|
-
</div>
|
|
107
|
-
</div>
|
|
108
|
-
</div>
|
|
109
|
-
<!--DEAL-->
|
|
110
|
-
<div *ngIf="doc.docType === RapidSearchItemType.DEAL" class="d-flex align-items-center">
|
|
111
|
-
<div class="max-width-5">
|
|
112
|
-
<span class="material-icons-outlined rapid-search-type-icon">local_offer</span>
|
|
113
|
-
</div>
|
|
114
|
-
<div class="d-flex max-width-95">
|
|
115
|
-
<div class="d-flex flex-column max-width-70 ellipsis">
|
|
116
|
-
<span
|
|
117
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.DEAL' | commonTranslate: lang }}</span>
|
|
118
|
-
<span class="ellipsis">{{ doc.dealNumber }} - {{ doc.thirdPartyClientName }}
|
|
119
|
-
({{ doc.thirdPartyClientSap }})</span>
|
|
120
|
-
</div>
|
|
121
|
-
<div class="d-flex flex-column max-width-15">
|
|
122
|
-
<span class="auto-complete-label">{{
|
|
123
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.AMOUNT' | commonTranslate: lang
|
|
124
|
-
}}</span>
|
|
125
|
-
<span>{{ doc.calculatedAmount | currency: doc.currencyCode:'symbol' }}</span>
|
|
126
|
-
</div>
|
|
127
|
-
<div class="d-flex flex-column max-width-15">
|
|
128
|
-
<span class="auto-complete-label">{{
|
|
129
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.VALIDATION_DATE' | commonTranslate: lang
|
|
130
|
-
}}</span>
|
|
131
|
-
<span>{{ doc.validationDate }}</span>
|
|
132
|
-
</div>
|
|
133
|
-
</div>
|
|
134
|
-
</div>
|
|
135
|
-
<!--WORK_RECORD-->
|
|
136
|
-
<div *ngIf="doc.docType === RapidSearchItemType.WORK_RECORD" class="d-flex align-items-center">
|
|
137
|
-
<div class="max-width-5">
|
|
138
|
-
<span class="material-icons-outlined rapid-search-type-icon">assignment</span>
|
|
139
|
-
</div>
|
|
140
|
-
<div class="d-flex max-width-95">
|
|
141
|
-
<div class="d-flex flex-column max-width-10 ellipsis">
|
|
142
|
-
<span
|
|
143
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.WORK_RECORD' | commonTranslate: lang }}</span>
|
|
144
|
-
<span class="ellipsis">{{ doc.id }}</span>
|
|
145
|
-
</div>
|
|
146
|
-
<div class="d-flex flex-column max-width-10 ellipsis">
|
|
147
|
-
<span
|
|
148
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.DEAL' | commonTranslate: lang }}</span>
|
|
149
|
-
<span class="ellipsis">{{ doc.dealNumber }}</span>
|
|
150
|
-
</div>
|
|
151
|
-
<div class="d-flex flex-column max-width-30 ellipsis">
|
|
152
|
-
<span
|
|
153
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CLIENT' | commonTranslate: lang }}</span>
|
|
154
|
-
<span class="ellipsis">{{ doc.thirdPartyClientName }}</span>
|
|
155
|
-
</div>
|
|
156
|
-
<div class="d-flex flex-column max-width-35">
|
|
157
|
-
<span class="auto-complete-label">
|
|
158
|
-
{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TITLE' | commonTranslate: lang }}
|
|
159
|
-
({{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.MILO_CODE' | commonTranslate: lang }})
|
|
160
|
-
</span>
|
|
161
|
-
<span class="ellipsis">{{ doc.getTitle(lang) }} ({{ doc.miloCode }})</span>
|
|
162
|
-
</div>
|
|
163
|
-
<div class="d-flex flex-column max-width-15">
|
|
164
|
-
<span class="auto-complete-label">{{
|
|
165
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.AMOUNT' | commonTranslate: lang
|
|
166
|
-
}}</span>
|
|
167
|
-
<span>{{ doc.amount | currency: doc.currencyCode:'symbol' }}</span>
|
|
168
|
-
</div>
|
|
169
|
-
</div>
|
|
170
|
-
</div>
|
|
171
|
-
<!--INVOICE-->
|
|
172
|
-
<div *ngIf="doc.docType === RapidSearchItemType.INVOICE" class="d-flex align-items-center">
|
|
173
|
-
<div class="max-width-5">
|
|
174
|
-
<span class="material-icons-outlined rapid-search-type-icon">receipt</span>
|
|
175
|
-
</div>
|
|
176
|
-
<div class="d-flex max-width-95">
|
|
177
|
-
<div class="d-flex flex-column max-width-15 ellipsis">
|
|
178
|
-
<span
|
|
179
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.INVOICE' | commonTranslate: lang }}</span>
|
|
180
|
-
<span class="ellipsis">{{ doc.number }}</span>
|
|
181
|
-
</div>
|
|
182
|
-
<div class="d-flex flex-column max-width-15 ellipsis">
|
|
183
|
-
<span
|
|
184
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.DEAL' | commonTranslate: lang }}</span>
|
|
185
|
-
<span class="ellipsis">{{ doc.dealNumber }}</span>
|
|
186
|
-
</div>
|
|
187
|
-
<div class="d-flex flex-column max-width-20 ellipsis">
|
|
188
|
-
<span
|
|
189
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CLIENT' | commonTranslate: lang }}</span>
|
|
190
|
-
<span class="ellipsis">{{ doc.thirdPartyClientName }}</span>
|
|
191
|
-
</div>
|
|
192
|
-
<div class="d-flex flex-column max-width-35">
|
|
193
|
-
<span class="auto-complete-label">
|
|
194
|
-
{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TITLE' | commonTranslate: lang }}
|
|
195
|
-
({{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.MILO_CODE' | commonTranslate: lang }})
|
|
196
|
-
</span>
|
|
197
|
-
<span class="ellipsis">{{ doc.getTitle(lang) }} ({{ doc.miloCode }})</span>
|
|
198
|
-
</div>
|
|
199
|
-
<div class="d-flex flex-column max-width-15">
|
|
200
|
-
<span class="auto-complete-label">{{
|
|
201
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.AMOUNT' | commonTranslate: lang
|
|
202
|
-
}}</span>
|
|
203
|
-
<span>{{ doc.amount | currency: doc.currencyCode:'symbol' }}</span>
|
|
204
|
-
</div>
|
|
205
|
-
</div>
|
|
206
|
-
</div>
|
|
207
|
-
<!--THIRD_PARTY-->
|
|
208
|
-
<div *ngIf="doc.docType === RapidSearchItemType.THIRD_PARTY" class="d-flex align-items-center">
|
|
209
|
-
<div class="max-width-5">
|
|
210
|
-
<span class="material-icons-outlined rapid-search-type-icon">person</span>
|
|
211
|
-
</div>
|
|
212
|
-
<div class="d-flex max-width-95">
|
|
213
|
-
<div class="d-flex flex-column max-width-85 ellipsis">
|
|
214
|
-
<span
|
|
215
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.THIRD_PARTY' | commonTranslate: lang }}</span>
|
|
216
|
-
<span class="ellipsis">{{ doc.companyOrPersonName }} ({{ doc.address | thirdPartyAddressSearch: lang }}
|
|
217
|
-
)</span>
|
|
218
|
-
</div>
|
|
219
|
-
<div class="d-flex flex-column max-width-15">
|
|
220
|
-
<span
|
|
221
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CODE' | commonTranslate: lang }}</span>
|
|
222
|
-
<span>{{ doc.code }}</span>
|
|
223
|
-
</div>
|
|
224
|
-
</div>
|
|
225
|
-
</div>
|
|
226
|
-
<!--CONTRACT-->
|
|
227
|
-
<div *ngIf="doc.docType === RapidSearchItemType.CONTRACT" class="d-flex align-items-center">
|
|
228
|
-
<div class="max-width-5">
|
|
229
|
-
<span *ngIf="getContractType(doc.type.labelEn) === 'cess'"
|
|
230
|
-
class="material-icons-outlined rapid-search-type-icon">receipt</span>
|
|
231
|
-
<span *ngIf="getContractType(doc.type.labelEn) === 'acq'"
|
|
232
|
-
class="material-icons-outlined rapid-search-type-icon">shop_two</span>
|
|
233
|
-
<span *ngIf="getContractType(doc.type.labelEn) === 'auth'"
|
|
234
|
-
class="material-icons-outlined rapid-search-type-icon">account_circle</span>
|
|
235
|
-
</div>
|
|
236
|
-
<div class="d-flex max-width-95">
|
|
237
|
-
<div class="d-flex flex-column max-width-10 ellipsis">
|
|
238
|
-
<span
|
|
239
|
-
class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CONTRACT' | commonTranslate: lang }}</span>
|
|
240
|
-
<span class="ellipsis">{{ doc.lisaId }} </span>
|
|
241
|
-
</div>
|
|
242
|
-
<div class="d-flex flex-column max-width-10">
|
|
243
|
-
<span class="auto-complete-label">{{
|
|
244
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TYPE' | commonTranslate: lang
|
|
245
|
-
}}</span>
|
|
246
|
-
<span>{{ doc.type[labelLang] }}</span>
|
|
247
|
-
</div>
|
|
248
|
-
<div class="d-flex flex-column max-width-30">
|
|
249
|
-
<span class="auto-complete-label">{{
|
|
250
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.STATUS' | commonTranslate: lang
|
|
251
|
-
}}</span>
|
|
252
|
-
<span>{{ doc.status[labelLang] }}</span>
|
|
253
|
-
</div>
|
|
254
|
-
<div *ngIf="doc.type.labelEn !== 'Sale'" class="d-flex flex-column max-width-40 ellipsis">
|
|
255
|
-
<span class="auto-complete-label">{{
|
|
256
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.LICENSOR' | commonTranslate: lang
|
|
257
|
-
}}</span>
|
|
258
|
-
<span>{{ doc.licensor ? doc.licensor : '-' }}</span>
|
|
259
|
-
</div>
|
|
260
|
-
<div *ngIf="doc.type.labelEn === 'Sale'" class="d-flex flex-column max-width-40 ellipsis">
|
|
261
|
-
<span class="auto-complete-label">{{
|
|
262
|
-
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CUSTOMER' | commonTranslate: lang
|
|
263
|
-
}}</span>
|
|
264
|
-
<span>{{ doc.customer ? doc.customer : '-' }}</span>
|
|
265
|
-
</div>
|
|
266
|
-
</div>
|
|
267
|
-
</div>
|
|
268
|
-
<!--CONTRACT ROYALTY-->
|
|
269
|
-
<div *ngIf="doc.docType === RapidSearchItemType.ROYALTY_CONTRACT" class="d-flex align-items-center">
|
|
270
|
-
<div class="max-width-5">
|
|
271
|
-
<span class="material-icons-outlined rapid-search-type-icon">savings</span>
|
|
272
|
-
</div>
|
|
273
|
-
<div class="d-flex max-width-95">
|
|
274
|
-
<div class="d-flex flex-column max-width-20 ellipsis">
|
|
275
|
-
<span class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CONTRACT' | commonTranslate: lang }}</span>
|
|
276
|
-
<span class="ellipsis">{{ doc.contractNumber }}</span>
|
|
277
|
-
</div>
|
|
278
|
-
<div class="d-flex flex-column max-width-80 ellipsis">
|
|
279
|
-
<span class="auto-complete-label">{{ 'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TITLES' | commonTranslate: lang }}</span>
|
|
280
|
-
<span class="ellipsis">{{ doc.works.join(', ') }}</span>
|
|
281
|
-
</div>
|
|
282
|
-
</div>
|
|
283
|
-
</div>
|
|
284
|
-
</mat-option>
|
|
285
|
-
</mat-autocomplete>
|
|
286
|
-
|
|
287
|
-
</mat-form-field>
|
|
288
|
-
</div>
|
|
289
|
-
|
|
290
|
-
<div *ngIf="user && user.secondary" class="connected-as d-flex justify-content-between align-items-center">
|
|
291
|
-
<span style="margin-right: 10px">
|
|
292
|
-
{{ 'COMMON.HEADER.CONNECTED_AS' | commonTranslate: lang }} {{ user.login + ' - ' + user.firstName + ' ' + user.name }}
|
|
293
|
-
</span>
|
|
294
|
-
|
|
295
|
-
<button (click)="stopIdentityTheft()" *ngIf="user.secondary" color="warn" mat-raised-button>
|
|
296
|
-
{{ 'CORE.STOP' | commonTranslate: lang }}
|
|
297
|
-
</button>
|
|
298
|
-
</div>
|
|
299
|
-
|
|
300
|
-
<span (click)="getHistory()" [matMenuTriggerFor]="menuHistory"
|
|
301
|
-
class="material-icons header-icon max-width-5">history</span>
|
|
302
|
-
<mat-menu #menuHistory="matMenu" class="action-menu">
|
|
303
|
-
<ng-container *ngFor="let history of historyList" [ngSwitch]="history.type">
|
|
304
|
-
<button (click)="navigate('expenditure-commitment', '/purchase-orders/' + history.id)" *ngSwitchCase="'PRODUCT'"
|
|
305
|
-
mat-menu-item>
|
|
306
|
-
<mat-icon class="material-icons-outlined">theaters</mat-icon>
|
|
307
|
-
{{ 'COMMON.HEADER.HISTORY.PRODUCT' | commonTranslate : lang }}{{ history.type }} {{ history.ref }}
|
|
308
|
-
</button>
|
|
309
|
-
<button (click)="navigate('expenditure-commitment', '/purchase-orders/' + history.id)" *ngSwitchCase="'PO'"
|
|
310
|
-
mat-menu-item>
|
|
311
|
-
<mat-icon class="material-icons-outlined">receipt_long</mat-icon>
|
|
312
|
-
{{ 'COMMON.HEADER.HISTORY.PO' | commonTranslate : lang }} {{ history.ref }}
|
|
313
|
-
</button>
|
|
314
|
-
<button (click)="navigate('commercial', '/deal/consult/' + history.id)" *ngSwitchCase="'DEAL'"
|
|
315
|
-
mat-menu-item>
|
|
316
|
-
<mat-icon class="material-icons-outlined">local_offer</mat-icon>
|
|
317
|
-
{{ 'COMMON.HEADER.HISTORY.DEAL' | commonTranslate : lang }} {{ history.ref }}
|
|
318
|
-
</button>
|
|
319
|
-
<button (click)="navigate('commercial', '/work-record/consult/'+ history.id +'/general')" *ngSwitchCase="'WORK'"
|
|
320
|
-
mat-menu-item>
|
|
321
|
-
<mat-icon class="material-icons-outlined">assignment</mat-icon>
|
|
322
|
-
{{ 'COMMON.HEADER.HISTORY.WORK_RECORD' | commonTranslate : lang }} {{ history.ref }}
|
|
323
|
-
</button>
|
|
324
|
-
<button (click)="navigate('legal', '/contracts-details/acq/' + history.id)"
|
|
325
|
-
*ngSwitchCase="'CONTRACT_ACQ'"
|
|
326
|
-
mat-menu-item>
|
|
327
|
-
<mat-icon class="material-icons-outlined">shop_two</mat-icon>
|
|
328
|
-
{{ 'COMMON.HEADER.HISTORY.CONTRACT_ACQ' | commonTranslate : lang }} {{ history.ref }}
|
|
329
|
-
</button>
|
|
330
|
-
<button (click)="navigate('legal', '/contracts-details/cess/' + history.id)"
|
|
331
|
-
*ngSwitchCase="'CONTRACT_CESS'"
|
|
332
|
-
mat-menu-item>
|
|
333
|
-
<mat-icon class="material-icons-outlined">receipt</mat-icon>
|
|
334
|
-
{{ 'COMMON.HEADER.HISTORY.CONTRACT_CESS' | commonTranslate : lang }} {{ history.ref }}
|
|
335
|
-
</button>
|
|
336
|
-
<button (click)="navigate('legal', '/contracts-details/auth/' + history.id)"
|
|
337
|
-
*ngSwitchCase="'CONTRACT_AUTH'"
|
|
338
|
-
mat-menu-item>
|
|
339
|
-
<mat-icon class="material-icons-outlined">account_circle</mat-icon>
|
|
340
|
-
{{ 'COMMON.HEADER.HISTORY.CONTRACT_AUTH' | commonTranslate : lang }} {{ history.ref }}
|
|
341
|
-
</button>
|
|
342
|
-
<button (click)="navigate('expenditure-commitment', '/budget/form/' + history.id)" *ngSwitchCase="'BUDGET'"
|
|
343
|
-
mat-menu-item>
|
|
344
|
-
<mat-icon class="material-icons-outlined">payments</mat-icon>
|
|
345
|
-
{{ 'COMMON.HEADER.HISTORY.BUDGET' | commonTranslate : lang }} {{ history.ref }}
|
|
346
|
-
</button>
|
|
347
|
-
<button *ngSwitchCase="'NO_HISTORY_AVAILABLE'" mat-menu-item>
|
|
348
|
-
<mat-icon class="material-icons-outlined">not_interested</mat-icon>
|
|
349
|
-
{{ 'COMMON.HEADER.HISTORY.NO_HISTORY_AVAILABLE' | commonTranslate : lang }}
|
|
350
|
-
</button>
|
|
351
|
-
</ng-container>
|
|
352
|
-
</mat-menu>
|
|
353
|
-
<span class="header-separator"></span>
|
|
354
|
-
|
|
355
|
-
<span [matMenuTriggerFor]="settings" class="material-icons-outlined header-icon max-width-5">settings</span>
|
|
356
|
-
|
|
357
|
-
<!-- #enddocregion mat-menu-trigger-for -->
|
|
358
|
-
<mat-menu #settings="matMenu" class="settings-menu">
|
|
359
|
-
<button (click)="switchTheme()" mat-menu-item>
|
|
360
|
-
<mat-icon class="theme-icon">toggle_on</mat-icon>
|
|
361
|
-
<span>{{ 'COMMON.HEADER.PARAMETERS.THEME' | commonTranslate: lang }}</span>
|
|
362
|
-
</button>
|
|
363
|
-
<button class="img-btn" (click)='switchLang("en")' *ngIf='lang !== "en"' mat-menu-item>
|
|
364
|
-
<img class="mat-icon" src="assets/img/flag/en-flag.png">
|
|
365
|
-
<span>{{ 'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.ENGLISH' | commonTranslate: lang }}</span>
|
|
366
|
-
</button>
|
|
367
|
-
<button class="img-btn" (click)='switchLang("fr")' *ngIf='lang !== "fr"' mat-menu-item>
|
|
368
|
-
<img class="mat-icon" src="assets/img/flag/fr-flag.png">
|
|
369
|
-
<span>{{ 'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.FRENCH' | commonTranslate: lang }}</span>
|
|
370
|
-
</button>
|
|
371
|
-
<button class="img-btn" (click)='switchLang("de")' *ngIf='lang !== "de"' mat-menu-item>
|
|
372
|
-
<img class="mat-icon" src="assets/img/flag/de-flag.png">
|
|
373
|
-
<span>{{ 'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.DEUTCH' | commonTranslate: lang }}</span>
|
|
374
|
-
</button>
|
|
375
|
-
<ng-container *ngxPermissionsExcept="restrictions">
|
|
376
|
-
<!--USER-->
|
|
377
|
-
<button (click)="navigate('user', '/account/authorization/search')" *ngIf="user && user.admin" mat-menu-item>
|
|
378
|
-
<mat-icon class="material-icons-outlined">manage_accounts</mat-icon>
|
|
379
|
-
<span>{{ 'COMMON.HEADER.MENU.USER.SECTION_TITLE' | commonTranslate: lang }}</span>
|
|
380
|
-
</button>
|
|
381
|
-
</ng-container>
|
|
382
|
-
<!--MY PREFERENCES-->
|
|
383
|
-
<button (click)="navigate('user', '/account/settings')" mat-menu-item>
|
|
384
|
-
<mat-icon class="material-icons-outlined">settings</mat-icon>
|
|
385
|
-
<span>{{ 'COMMON.HEADER.MENU.USER.SETTINGS' | commonTranslate: lang }}</span>
|
|
386
|
-
</button>
|
|
387
|
-
</mat-menu>
|
|
388
|
-
</mat-toolbar>
|
|
389
|
-
|
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
@import "../../../../../assets/css/mat-palettes";
|
|
2
|
-
|
|
3
|
-
.header-icon {
|
|
4
|
-
color: $blue-primary;
|
|
5
|
-
cursor: pointer;
|
|
6
|
-
text-align: center;
|
|
7
|
-
margin: 0 4px;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.header-separator {
|
|
11
|
-
display: inline-block;
|
|
12
|
-
height: 25%;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.global-search-separator {
|
|
16
|
-
display: inline-block;
|
|
17
|
-
height: 70%;
|
|
18
|
-
border-right: 2px solid $gray-strong;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
:host-context(.dark-theme) {
|
|
22
|
-
background-color: $background-lvl2;
|
|
23
|
-
|
|
24
|
-
.global-search {
|
|
25
|
-
background: $background-lvl1;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.global-search-input {
|
|
29
|
-
background: $background-lvl1;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.global-search-separator {
|
|
33
|
-
border-right: 2px solid $dark-background-color;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.header-separator {
|
|
37
|
-
border-right: 2px solid $background-lvl5;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
::ng-deep .dark-theme {
|
|
43
|
-
.mat-autocomplete-global-search {
|
|
44
|
-
background: $background-lvl2 !important;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.mat-mdc-option.mat-option-global-search:focus:not(.mat-option-disabled) {
|
|
48
|
-
background: $background-lvl3 !important;
|
|
49
|
-
color: white !important;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.mat-mdc-option.mat-option-global-search,
|
|
53
|
-
.mat-mdc-option.mat-option-global-search {
|
|
54
|
-
color: white !important;
|
|
55
|
-
}
|
|
56
|
-
.global-search-input::placeholder {
|
|
57
|
-
color: $gray-light !important;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
:host-context(.light-theme) {
|
|
62
|
-
background-color: white;
|
|
63
|
-
|
|
64
|
-
.global-search {
|
|
65
|
-
background: #EFF3F6;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.global-search-input {
|
|
69
|
-
background: #EFF3F6;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.global-search-separator {
|
|
73
|
-
border-right: 2px solid $gray-strong;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.header-separator {
|
|
77
|
-
border-right: 2px solid $gray-strong;
|
|
78
|
-
}
|
|
79
|
-
.global-search-input::placeholder {
|
|
80
|
-
color: $black-bluish !important;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.mat-toolbar {
|
|
84
|
-
background-color: white;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
::ng-deep .light-theme .mat-mdc-option.mat-option-global-search:hover:not(.mdc-list-item--disabled) {
|
|
89
|
-
background: $gray-strong !important;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.logo-unity {
|
|
93
|
-
height: 48px;
|
|
94
|
-
width: 48px;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.global-search .header-icon {
|
|
98
|
-
margin: 0 10px;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.global-search {
|
|
102
|
-
display: flex;
|
|
103
|
-
align-items: center;
|
|
104
|
-
height: 40px;
|
|
105
|
-
background: #EFF3F6;
|
|
106
|
-
margin-left: 5px;
|
|
107
|
-
border-radius: 8px;
|
|
108
|
-
flex: 1 1 0;
|
|
109
|
-
width: auto;
|
|
110
|
-
min-width: 0;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.global-search-input {
|
|
114
|
-
background: $gray-background-lightest;
|
|
115
|
-
border: none;
|
|
116
|
-
margin-left: 10px;
|
|
117
|
-
font-size: 14px !important;
|
|
118
|
-
|
|
119
|
-
:focus {
|
|
120
|
-
outline: none;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.rapid-search-type-icon {
|
|
125
|
-
font-size: 1.4em;
|
|
126
|
-
vertical-align: middle;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.advanced-button {
|
|
130
|
-
background: $purple-primary !important;
|
|
131
|
-
color: white !important;
|
|
132
|
-
width: 90px;
|
|
133
|
-
min-width: 90px !important;
|
|
134
|
-
height: 24px !important;
|
|
135
|
-
box-shadow: 0px 2px 6px rgba(68, 93, 123, 0.16), inset 0px 2px 6px rgba(255, 255, 255, 0.08), inset 0px -2px 4px rgba(68, 93, 123, 0.06);
|
|
136
|
-
margin-right: 5px;
|
|
137
|
-
padding: 0;
|
|
138
|
-
|
|
139
|
-
.mat-icon {
|
|
140
|
-
color: white !important;
|
|
141
|
-
font-size: 14px !important;
|
|
142
|
-
height: unset;
|
|
143
|
-
width: unset;
|
|
144
|
-
margin-right: 0;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.connected-as {
|
|
149
|
-
font-size: 12px;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.user-thumb {
|
|
153
|
-
margin-right: 16px;
|
|
154
|
-
width: 40px;
|
|
155
|
-
height: 40px;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
#env-dev, #env-uat, #env-sbx {
|
|
159
|
-
background-color: #809ec1;
|
|
160
|
-
color: white;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.env {
|
|
164
|
-
color: #fff;
|
|
165
|
-
font-size: 10px;
|
|
166
|
-
border-radius: 1px;
|
|
167
|
-
padding: 0px 5px;
|
|
168
|
-
line-height: 16px;
|
|
169
|
-
height: 16px;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.global-search-input::placeholder {
|
|
173
|
-
font-style: italic !important;
|
|
174
|
-
font-weight: bold !important;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.mat-option-global-search {
|
|
178
|
-
height: 30px !important;
|
|
179
|
-
line-height: 15px !important;
|
|
180
|
-
padding: 0 8px;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.auto-complete-label {
|
|
184
|
-
font-size: 8px;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
::ng-deep .global-search {
|
|
188
|
-
.mat-mdc-form-field-subscript-wrapper {
|
|
189
|
-
display: none !important;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.mat-mdc-form-field .mat-mdc-text-field-wrapper {
|
|
193
|
-
background-color: transparent !important;
|
|
194
|
-
}
|
|
195
|
-
.mat-mdc-form-field.mat-form-field-appearance-fill .mat-mdc-form-field-focus-overlay {
|
|
196
|
-
opacity: 0 !important;
|
|
197
|
-
}
|
|
198
|
-
.mdc-line-ripple {
|
|
199
|
-
display: none !important;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.mat-mdc-form-field-infix {
|
|
203
|
-
min-height: 40px !important;
|
|
204
|
-
padding-top: 8px !important;
|
|
205
|
-
padding-bottom: 8px !important;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
@for $i from 0 through 20 {
|
|
210
|
-
$step: $i * 5;
|
|
211
|
-
$width: $i * 5%;
|
|
212
|
-
|
|
213
|
-
.max-width-#{$step} {
|
|
214
|
-
flex: 1 1 $width;
|
|
215
|
-
max-width: $width;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.spacer {
|
|
221
|
-
flex: 1 1 auto;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
.toolbar-header {
|
|
225
|
-
height: 64px;
|
|
226
|
-
position: absolute;
|
|
227
|
-
padding: 0 16px !important;
|
|
228
|
-
z-index: 999;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.menu-header {
|
|
232
|
-
max-width: 70%;
|
|
233
|
-
overflow: hidden;
|
|
234
|
-
max-height: 60px;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
::ng-deep .settings-menu.mat-mdc-menu-panel .mat-mdc-menu-item .mat-icon {
|
|
238
|
-
height: 24px;
|
|
239
|
-
width: 24px;
|
|
240
|
-
display: flex;
|
|
241
|
-
justify-content: center;
|
|
242
|
-
align-items: center;
|
|
243
|
-
margin-right: 15px;
|
|
244
|
-
font-size: 18px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
::ng-deep .settings-menu.mat-mdc-menu-panel .img-btn {
|
|
248
|
-
.mat-mdc-menu-item-text {
|
|
249
|
-
display: flex;
|
|
250
|
-
justify-content: start;
|
|
251
|
-
align-items: center;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
img {
|
|
255
|
-
height: 12px !important;
|
|
256
|
-
width: auto !important;
|
|
257
|
-
display: block !important;
|
|
258
|
-
padding-left: 3px;
|
|
259
|
-
margin-right: 17px !important;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.theme-icon {
|
|
264
|
-
font-size: 24px !important;
|
|
265
|
-
}
|