new-front-common-library 16.1.32-ROY-3 → 16.1.32-ROY-4
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 +224 -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 +13 -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 +158 -0
- package/esm2022/lib/util/i18n/fr.mjs +159 -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 +166 -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 +5700 -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 +11 -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 +141 -0
- package/lib/util/i18n/fr.d.ts +142 -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 +18 -1
- 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
package/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ArrayService {
|
|
3
|
+
/** Check if a value is in array */
|
|
4
|
+
inArray(value: any, array: any): boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArrayService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ArrayService>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import { OverlayContainer } from '@angular/cdk/overlay';
|
|
6
|
+
import { PermissionsInterface } from "../../interfaces/permissions.interface";
|
|
7
|
+
import { AuthUserModel } from "../../models";
|
|
8
|
+
import { LocalStorageEventsService } from "../../event/storage/local-storage-events.service";
|
|
9
|
+
import { LocalStorageService } from "../../services/storage/local-storage.service";
|
|
10
|
+
import { ToasterEventsService } from "../../toaster/toaster-events.service";
|
|
11
|
+
import { CommonApiService } from "../../services/api/common-api.service";
|
|
12
|
+
import { SessionStorageService } from "../../services/storage/session-storage.service";
|
|
13
|
+
import { PermissionsService } from "../../permissions/permissions.service";
|
|
14
|
+
import { Config } from "../../config";
|
|
15
|
+
import { LangService } from "../../services/translate-language/lang.service";
|
|
16
|
+
import { ElasticsearchService } from "../../services/elasticsearch/elasticsearch.service";
|
|
17
|
+
import { PurchaseOrderRapidSearchModel } from "../../models/expenditure-commitment/purchase-order-rapid-search.model";
|
|
18
|
+
import { ProductRapidSearchModel } from "../../models/video/product-rapid-search.model";
|
|
19
|
+
import { RapidSearchItemType } from "../../enums/rapid-search-item-type.enum";
|
|
20
|
+
import { FormControl } from '@angular/forms';
|
|
21
|
+
import { WorkVersionRapidSearchModel } from "../../models/referential/work-version-rapid-search.model";
|
|
22
|
+
import { Observable } from 'rxjs';
|
|
23
|
+
import { MatOptionSelectionChange } from '@angular/material/core';
|
|
24
|
+
import { DealRapidSearchModel } from '../../models/commercial/deal-rapid-search-model';
|
|
25
|
+
import { ThirdPartyRapidSearchModel } from "../../models/referential/third-party-rapid-search.model";
|
|
26
|
+
import { WorkRecordRapidSearchModel } from "../../models/commercial/work-record-rapid-search-model";
|
|
27
|
+
import { ContractRapidSearchModel } from "../../models/legal/contract-rapid-search-model";
|
|
28
|
+
import { InvoiceRapidSearchModel } from "../../models/commercial/invoice-rapid-search-model";
|
|
29
|
+
import * as i0 from "@angular/core";
|
|
30
|
+
export declare class HeaderComponent implements OnInit, PermissionsInterface {
|
|
31
|
+
private readonly router;
|
|
32
|
+
private readonly localStorageEvents;
|
|
33
|
+
private readonly localStorage;
|
|
34
|
+
private readonly toasterService;
|
|
35
|
+
private readonly translate;
|
|
36
|
+
private readonly commonApiService;
|
|
37
|
+
private readonly sessionStorageService;
|
|
38
|
+
private readonly permissionsService;
|
|
39
|
+
private readonly overlayContainer;
|
|
40
|
+
private readonly cookieService;
|
|
41
|
+
private readonly langService;
|
|
42
|
+
private readonly elasticsearchService;
|
|
43
|
+
private readonly config;
|
|
44
|
+
theme: string;
|
|
45
|
+
user: AuthUserModel;
|
|
46
|
+
toogleMenuEvent: EventEmitter<any>;
|
|
47
|
+
restrictions: string[];
|
|
48
|
+
lang: string;
|
|
49
|
+
labelLang: string;
|
|
50
|
+
isHide: boolean;
|
|
51
|
+
currentScroll: number;
|
|
52
|
+
env: string;
|
|
53
|
+
historyList: any[];
|
|
54
|
+
private readonly apiUrl;
|
|
55
|
+
activeButton: string;
|
|
56
|
+
RapidSearchItemType: typeof RapidSearchItemType;
|
|
57
|
+
formControlSearch: FormControl<string>;
|
|
58
|
+
documents$: Observable<(PurchaseOrderRapidSearchModel | ProductRapidSearchModel | WorkVersionRapidSearchModel | DealRapidSearchModel | WorkRecordRapidSearchModel | ThirdPartyRapidSearchModel | ContractRapidSearchModel | InvoiceRapidSearchModel)[]>;
|
|
59
|
+
constructor(router: Router, localStorageEvents: LocalStorageEventsService, localStorage: LocalStorageService, toasterService: ToasterEventsService, translate: TranslateService, commonApiService: CommonApiService, sessionStorageService: SessionStorageService, permissionsService: PermissionsService, overlayContainer: OverlayContainer, cookieService: CookieService, langService: LangService, elasticsearchService: ElasticsearchService, config: Config);
|
|
60
|
+
ngOnInit(): void;
|
|
61
|
+
onWindowScroll(): void;
|
|
62
|
+
initPermissionsService(): void;
|
|
63
|
+
switchTheme(): void;
|
|
64
|
+
stopIdentityTheft(): void;
|
|
65
|
+
navigate(module: string, route: string, queryParamString?: string | null): void;
|
|
66
|
+
redirect(route: string): void;
|
|
67
|
+
getHistory(): void;
|
|
68
|
+
switchLang(lang: any): void;
|
|
69
|
+
private updateLabelLang;
|
|
70
|
+
getContractType(type: any): "cess" | "acq" | "auth";
|
|
71
|
+
onSelectSearch($event: MatOptionSelectionChange, doc: any): void;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "sc-header", never, {}, { "toogleMenuEvent": "toogleMenuEvent"; }, never, never, false, never>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { MatMenuTrigger } from '@angular/material/menu';
|
|
3
|
+
import { CommercialApiService } from '../../../services/api/commercial-api.service';
|
|
4
|
+
import { VideoApiService } from '../../../services/api/video-api.service';
|
|
5
|
+
import { OverlayService } from '../../overlay/overlay.service';
|
|
6
|
+
import { MenuLink } from './menu.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class MenuComponent {
|
|
9
|
+
private overlayService;
|
|
10
|
+
private videoApiService;
|
|
11
|
+
private commercialApiService;
|
|
12
|
+
lang: string;
|
|
13
|
+
navigate: EventEmitter<MenuLink>;
|
|
14
|
+
redirect: EventEmitter<MenuLink>;
|
|
15
|
+
activeMenu: string | null;
|
|
16
|
+
readonly menuButtons: import("./menu.model").Menu[];
|
|
17
|
+
private menuTriggerRef;
|
|
18
|
+
onClickOutside(event: MouseEvent): void;
|
|
19
|
+
constructor(overlayService: OverlayService, videoApiService: VideoApiService, commercialApiService: CommercialApiService);
|
|
20
|
+
openMenu(menuTrigger: MatMenuTrigger, menuLabel: string): void;
|
|
21
|
+
forceCloseMenu(): void;
|
|
22
|
+
extractAllProducts(): void;
|
|
23
|
+
extractAccountWrittingDownload(): void;
|
|
24
|
+
performAction(link: MenuLink): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "sc-menu", never, { "lang": { "alias": "lang"; "required": false; }; }, { "navigate": "navigate"; "redirect": "redirect"; }, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface Menu {
|
|
2
|
+
label: string;
|
|
3
|
+
permissions: string[];
|
|
4
|
+
sections: MenuSection[];
|
|
5
|
+
restrictions?: string[];
|
|
6
|
+
}
|
|
7
|
+
export interface MenuSection {
|
|
8
|
+
label: string;
|
|
9
|
+
permissions: string[];
|
|
10
|
+
links: MenuLink[];
|
|
11
|
+
restrictions?: string[];
|
|
12
|
+
}
|
|
13
|
+
export interface MenuLink {
|
|
14
|
+
label: string;
|
|
15
|
+
module: string;
|
|
16
|
+
route: string;
|
|
17
|
+
queryParams?: string;
|
|
18
|
+
actionType: ActionType;
|
|
19
|
+
permissions: string[];
|
|
20
|
+
restrictions?: string[];
|
|
21
|
+
}
|
|
22
|
+
type ActionType = 'navigate' | 'extractProduct' | 'exportAccountWriting' | 'redirect';
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { OverlayService } from './overlay.service';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OverlayComponent implements OnInit {
|
|
7
|
+
private router;
|
|
8
|
+
private translateService;
|
|
9
|
+
private overlayService;
|
|
10
|
+
private cd;
|
|
11
|
+
message: string;
|
|
12
|
+
show: boolean;
|
|
13
|
+
constructor(router: Router, translateService: TranslateService, overlayService: OverlayService, cd: ChangeDetectorRef);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayComponent, "sc-overlay", never, {}, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OverlayService {
|
|
4
|
+
showEvent: EventEmitter<string>;
|
|
5
|
+
hideEvent: EventEmitter<any>;
|
|
6
|
+
setMessageEvent: EventEmitter<string>;
|
|
7
|
+
constructor();
|
|
8
|
+
show(message?: string): void;
|
|
9
|
+
setMessage(message: string): void;
|
|
10
|
+
hide(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OverlayService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { AesService } from '../../../services/jwt-security/aes.service';
|
|
4
|
+
import { Config } from '../../../config';
|
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
|
6
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
8
|
+
import { CookieService } from 'ngx-cookie-service';
|
|
9
|
+
import { CommonApiService } from '../../../services/api/common-api.service';
|
|
10
|
+
import { UserFormModel } from "../../../models/referential/user-form.model";
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class MyDialogPopupLoginComponent implements OnInit {
|
|
13
|
+
dialogRef: MatDialogRef<MyDialogPopupLoginComponent>;
|
|
14
|
+
private aesUtil;
|
|
15
|
+
private config;
|
|
16
|
+
private http;
|
|
17
|
+
private translateService;
|
|
18
|
+
private cookieService;
|
|
19
|
+
data: any;
|
|
20
|
+
private commonApiService;
|
|
21
|
+
private formBuilder;
|
|
22
|
+
username: string;
|
|
23
|
+
password: string;
|
|
24
|
+
loading: boolean;
|
|
25
|
+
errorMessage: string;
|
|
26
|
+
apiUrl: string;
|
|
27
|
+
userForm: FormGroup<UserFormModel>;
|
|
28
|
+
constructor(dialogRef: MatDialogRef<MyDialogPopupLoginComponent>, aesUtil: AesService, config: Config, http: HttpClient, translateService: TranslateService, cookieService: CookieService, data: any, commonApiService: CommonApiService, formBuilder: FormBuilder);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
onLogin(): void;
|
|
31
|
+
private login;
|
|
32
|
+
private buildForm;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyDialogPopupLoginComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MyDialogPopupLoginComponent, "sc-popup-login", never, {}, {}, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SubHeaderComponent implements OnInit {
|
|
4
|
+
private document;
|
|
5
|
+
theme: string;
|
|
6
|
+
isHide: boolean;
|
|
7
|
+
currentScroll: number;
|
|
8
|
+
constructor(document: any);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
onWindowScroll(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubHeaderComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubHeaderComponent, "sc-sub-header", never, {}, {}, never, ["[left]", "[middle]", "[right]"], false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const CUSTOM_DATE_FORMATS: {
|
|
2
|
+
parse: {
|
|
3
|
+
dateInput: {
|
|
4
|
+
month: string;
|
|
5
|
+
year: string;
|
|
6
|
+
day: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
display: {
|
|
10
|
+
dateInput: string;
|
|
11
|
+
monthYearLabel: {
|
|
12
|
+
year: string;
|
|
13
|
+
month: string;
|
|
14
|
+
};
|
|
15
|
+
dateA11yLabel: {
|
|
16
|
+
year: string;
|
|
17
|
+
month: string;
|
|
18
|
+
day: string;
|
|
19
|
+
};
|
|
20
|
+
monthYearA11yLabel: {
|
|
21
|
+
year: string;
|
|
22
|
+
month: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PeriodModel } from './PeriodModel';
|
|
2
|
+
/**
|
|
3
|
+
* Created by dstoian on 27/03/2017.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DateUtil {
|
|
6
|
+
static daysPerMonth: Map<number, number>;
|
|
7
|
+
constructor();
|
|
8
|
+
static formatDate(date: Date, language: any): string;
|
|
9
|
+
static fromStringToDate(stringdate: string): Date;
|
|
10
|
+
static fromStringToDateSecond(stringdate: string): Date;
|
|
11
|
+
static periodBetweenDates(startDate: string, endDate: string): PeriodModel;
|
|
12
|
+
static checkLeapYear(year: number): boolean;
|
|
13
|
+
static initDaysPerMonths(): void;
|
|
14
|
+
static compareLocalDates(first: Date, second: Date): number;
|
|
15
|
+
static preciseDiff(d1: any, d2: any): PeriodModel;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Theme(): (target: any, key: string) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function User(): (target: any, key: string) => void;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { MyNumberPipe } from '../pipes/my-number.pipe';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MyNumberFormatterDirective implements OnInit {
|
|
5
|
+
private elementRef;
|
|
6
|
+
private currencyPipe;
|
|
7
|
+
decimalNumber: number;
|
|
8
|
+
private el;
|
|
9
|
+
constructor(elementRef: ElementRef, currencyPipe: MyNumberPipe);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
onFocus(value: any): void;
|
|
12
|
+
onBlur(value: any): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MyNumberFormatterDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MyNumberFormatterDirective, "[myNumberFormatter]", never, { "decimalNumber": { "alias": "decimalNumber"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MatTooltip } from '@angular/material/tooltip';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ShowIfTruncatedDirective {
|
|
5
|
+
private matTooltip;
|
|
6
|
+
private elementRef;
|
|
7
|
+
constructor(matTooltip: MatTooltip, elementRef: ElementRef<HTMLElement>);
|
|
8
|
+
setTooltipState(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowIfTruncatedDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ShowIfTruncatedDirective, "[matTooltip][appShowIfTruncated]", never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum RapidSearchItemType {
|
|
2
|
+
PURCHASE_ORDER = "PURCHASE_ORDER",
|
|
3
|
+
PRODUCT = "PRODUCT",
|
|
4
|
+
WORK_VERSION = "WORK_VERSION",
|
|
5
|
+
DEAL = "DEAL",
|
|
6
|
+
WORK_RECORD = "WORK_RECORD",
|
|
7
|
+
THIRD_PARTY = "THIRD_PARTY",
|
|
8
|
+
CONTRACT = "CONTRACT",
|
|
9
|
+
INVOICE = "INVOICE",
|
|
10
|
+
ROYALTY_CONTRACT = "ROYALTY_CONTRACT"
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HeaderEventsService {
|
|
4
|
+
toggleMenu: EventEmitter<any>;
|
|
5
|
+
toggleLight: EventEmitter<any>;
|
|
6
|
+
constructor();
|
|
7
|
+
menuSwitch(): void;
|
|
8
|
+
lightSwitch(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderEventsService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HeaderEventsService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LocalStorageEventsService {
|
|
4
|
+
localStorageEvent: EventEmitter<any>;
|
|
5
|
+
constructor();
|
|
6
|
+
emitLocalStorageEvent(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageEventsService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageEventsService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SessionStorageEventsService {
|
|
4
|
+
sessionsStorageUpdateEvent: EventEmitter<any>;
|
|
5
|
+
updateSubscriberEvent: EventEmitter<any>;
|
|
6
|
+
constructor();
|
|
7
|
+
emitUpdate(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageEventsService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageEventsService>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
export declare const de: {
|
|
2
|
+
'COMMON.HEADER.MENU.DASHBOARD': string;
|
|
3
|
+
'COMMON.HEADER.MENU.USER.SECTION_TITLE': string;
|
|
4
|
+
'COMMON.HEADER.MENU.USER.SETTINGS': string;
|
|
5
|
+
'COMMON.HEADER.MENU.REFERENTIAL.SUPPORT': string;
|
|
6
|
+
'COMMON.HEADER.MENU.REFERENTIAL.BATCH': string;
|
|
7
|
+
'COMMON.HEADER.MENU.TV-DATA': string;
|
|
8
|
+
'COMMON.HEADER.MENU.EXPENDITURE_COMMITMENT': string;
|
|
9
|
+
'COMMON.HEADER.MENU.BI.SEARCH': string;
|
|
10
|
+
'COMMON.HEADER.MENU.CALENDAR': string;
|
|
11
|
+
'COMMON.HEADER.MENU.ROYALTY': string;
|
|
12
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ADVANCED': string;
|
|
13
|
+
'COMMON.HEADER.GLOBAL_SEARCH.PLACEHOLDER': string;
|
|
14
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PRODUCT': string;
|
|
15
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.SUPPORT': string;
|
|
16
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.EAN': string;
|
|
17
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.RELEASE_DATE': string;
|
|
18
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PURCHASE_ORDER': string;
|
|
19
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.BASKET_NUMBER': string;
|
|
20
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.WORK': string;
|
|
21
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.MILO_CODE': string;
|
|
22
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.PRODUCTION_YEAR': string;
|
|
23
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.DEAL': string;
|
|
24
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.AMOUNT': string;
|
|
25
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.VALIDATION_DATE': string;
|
|
26
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.THIRD_PARTY': string;
|
|
27
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CODE': string;
|
|
28
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TITLE': string;
|
|
29
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.WORK_RECORD': string;
|
|
30
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CLIENT': string;
|
|
31
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CONTRACT': string;
|
|
32
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.TYPE': string;
|
|
33
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.STATUS': string;
|
|
34
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.CUSTOMER': string;
|
|
35
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.LICENSOR': string;
|
|
36
|
+
'COMMON.HEADER.GLOBAL_SEARCH.ITEM.INVOICE': string;
|
|
37
|
+
'COMMON.HEADER.HISTORY.PRODUCT': string;
|
|
38
|
+
'COMMON.HEADER.HISTORY.PO': string;
|
|
39
|
+
'COMMON.HEADER.HISTORY.WORK_RECORD': string;
|
|
40
|
+
'COMMON.HEADER.HISTORY.DEAL': string;
|
|
41
|
+
'COMMON.HEADER.HISTORY.CONTRACT_ACQ': string;
|
|
42
|
+
'COMMON.HEADER.HISTORY.CONTRACT_CESS': string;
|
|
43
|
+
'COMMON.HEADER.HISTORY.CONTRACT_AUTH': string;
|
|
44
|
+
'COMMON.HEADER.HISTORY.BUDGET': string;
|
|
45
|
+
'COMMON.HEADER.HISTORY.NO_HISTORY_AVAILABLE': string;
|
|
46
|
+
'COMMON.HEADER.CREATION.PRODUCT': string;
|
|
47
|
+
'COMMON.HEADER.CREATION.PO': string;
|
|
48
|
+
'COMMON.HEADER.CREATION.DEAL': string;
|
|
49
|
+
'COMMON.HEADER.CREATION.CREATION_ACQ': string;
|
|
50
|
+
'COMMON.HEADER.CREATION.CREATION_CESS': string;
|
|
51
|
+
'COMMON.HEADER.CREATION.CREATION_AUTH': string;
|
|
52
|
+
'COMMON.HEADER.CREATION.CAMPAIGN': string;
|
|
53
|
+
'COMMON.HEADER.CONNECTED_AS': string;
|
|
54
|
+
'COMMON.HEADER.STOP': string;
|
|
55
|
+
'COMMON.HEADER.PARAMETERS.THEME': string;
|
|
56
|
+
'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES': string;
|
|
57
|
+
'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.FRENCH': string;
|
|
58
|
+
'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.ENGLISH': string;
|
|
59
|
+
'COMMON.HEADER.PARAMETERS.TITLE.LANGUAGES.DEUTCH': string;
|
|
60
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB': string;
|
|
61
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.CALENDAR': string;
|
|
62
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.CALENDAR.CALENDAR': string;
|
|
63
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT': string;
|
|
64
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT.DASHBOARD': string;
|
|
65
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT.CAMPAIGN_CREATE': string;
|
|
66
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT.RELEASE_PLANNING': string;
|
|
67
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT.PA_TO_VALIDATE': string;
|
|
68
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.SLATE_MANAGEMENT.CAMPAIGN_ADVANCED_SEARCH': string;
|
|
69
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.ROYALTY': string;
|
|
70
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.ROYALTY.SEARCH_CONTRACT': string;
|
|
71
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.ROYALTY.INIT_CONTRACT': string;
|
|
72
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.ROYALTY.CREATE_CONTRACT': string;
|
|
73
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.ROYALTY.REPORTING': string;
|
|
74
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.MILKSHAKE': string;
|
|
75
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.MILKSHAKE.MILKSHAKE': string;
|
|
76
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.TV_DATA': string;
|
|
77
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.TV_DATA.TV_DATA': string;
|
|
78
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.REPORTING': string;
|
|
79
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.REPORTING.BI': string;
|
|
80
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.PILOT': string;
|
|
81
|
+
'COMMON.HEADER.MENU.DISTRIBUTION_HUB.PILOT.PILOT': string;
|
|
82
|
+
'COMMON.HEADER.MENU.COMMERCIAL': string;
|
|
83
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH': string;
|
|
84
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH.DEAL': string;
|
|
85
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH.WORK_RECORD': string;
|
|
86
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH.INVOICE': string;
|
|
87
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH.VOD': string;
|
|
88
|
+
'COMMON.HEADER.MENU.COMMERCIAL.SEARCH.VOLUME': string;
|
|
89
|
+
'COMMON.HEADER.MENU.COMMERCIAL.FINANCE': string;
|
|
90
|
+
'COMMON.HEADER.MENU.COMMERCIAL.FINANCE.TURNOVER': string;
|
|
91
|
+
'COMMON.HEADER.MENU.COMMERCIAL.FINANCE.ACCOUNTING_CLOSING': string;
|
|
92
|
+
'COMMON.HEADER.MENU.COMMERCIAL.FINANCE.ACCOUNT_EXTRACTION': string;
|
|
93
|
+
'COMMON.HEADER.MENU.COMMERCIAL.UTILS': string;
|
|
94
|
+
'COMMON.HEADER.MENU.COMMERCIAL.UTILS.DEAL_CREATE': string;
|
|
95
|
+
'COMMON.HEADER.MENU.COMMERCIAL.UTILS.REPORTING': string;
|
|
96
|
+
'COMMON.HEADER.MENU.COMMERCIAL.UTILS.WORK_RECORD_ERROR': string;
|
|
97
|
+
'COMMON.HEADER.MENU.LEGAL': string;
|
|
98
|
+
'COMMON.HEADER.MENU.LEGAL.SEARCH': string;
|
|
99
|
+
'COMMON.HEADER.MENU.LEGAL.SEARCH.LEGAL_DETAILS': string;
|
|
100
|
+
'COMMON.HEADER.MENU.LEGAL.SEARCH.ACQ': string;
|
|
101
|
+
'COMMON.HEADER.MENU.LEGAL.SEARCH.SALE': string;
|
|
102
|
+
'COMMON.HEADER.MENU.LEGAL.SEARCH.ADVANCED_SEARCH': string;
|
|
103
|
+
'COMMON.HEADER.MENU.LEGAL.CONTRACT': string;
|
|
104
|
+
'COMMON.HEADER.MENU.LEGAL.CONTRACT.CREATE_ACQ': string;
|
|
105
|
+
'COMMON.HEADER.MENU.LEGAL.CONTRACT.CREATE_SALE': string;
|
|
106
|
+
'COMMON.HEADER.MENU.LEGAL.CONTRACT.CREATE_AUTHOR': string;
|
|
107
|
+
'COMMON.HEADER.MENU.LEGAL.OTHER': string;
|
|
108
|
+
'COMMON.HEADER.MENU.LEGAL.OTHER.ELECTRONIC_DOCUMENTS': string;
|
|
109
|
+
'COMMON.HEADER.MENU.LEGAL.OTHER.HISTORY': string;
|
|
110
|
+
'COMMON.HEADER.MENU.LEGAL.OTHER.PILOT': string;
|
|
111
|
+
'COMMON.HEADER.MENU.VIDEO': string;
|
|
112
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT': string;
|
|
113
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT.CREATE': string;
|
|
114
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT.EXTRACT_ALL': string;
|
|
115
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT.ADVANCED_SEARCH': string;
|
|
116
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT.SAP_ORDER': string;
|
|
117
|
+
'COMMON.HEADER.MENU.VIDEO.PRODUCT.VALIDATE_PRODUCT': string;
|
|
118
|
+
'COMMON.HEADER.MENU.PO': string;
|
|
119
|
+
'COMMON.HEADER.MENU.PO.PO': string;
|
|
120
|
+
'COMMON.HEADER.MENU.PO.PO.CREATE': string;
|
|
121
|
+
'COMMON.HEADER.MENU.PO.PO.DASHBOARD': string;
|
|
122
|
+
'COMMON.HEADER.MENU.PO.PO.VALIDATE': string;
|
|
123
|
+
'COMMON.HEADER.MENU.PO.PO.DELIVERY': string;
|
|
124
|
+
'COMMON.HEADER.MENU.PO.PO.ADVANCED_SEARCH': string;
|
|
125
|
+
'COMMON.HEADER.MENU.PO.BUDGET': string;
|
|
126
|
+
'COMMON.HEADER.MENU.PO.BUDGET.BUDGET': string;
|
|
127
|
+
'COMMON.HEADER.MENU.BI': string;
|
|
128
|
+
'COMMON.HEADER.MENU.REFERENTIAL': string;
|
|
129
|
+
'COMMON.HEADER.MENU.REFERENTIAL.GLOSSARY': string;
|
|
130
|
+
'COMMON.HEADER.MENU.REFERENTIAL.GLOSSARY.MEDIAS': string;
|
|
131
|
+
'COMMON.HEADER.MENU.REFERENTIAL.GLOSSARY.TERRITORIES': string;
|
|
132
|
+
'COMMON.HEADER.MENU.REFERENTIAL.GLOSSARY.LANGUAGES': string;
|
|
133
|
+
'COMMON.HEADER.MENU.REFERENTIAL.GLOSSARY.ALERTES': string;
|
|
134
|
+
'COMMON.HEADER.MENU.REFERENTIAL.WORK': string;
|
|
135
|
+
'COMMON.HEADER.MENU.REFERENTIAL.WORK.CREATE_WORK': string;
|
|
136
|
+
'COMMON.HEADER.MENU.REFERENTIAL.WORK.CREATE_HEADER': string;
|
|
137
|
+
'COMMON.HEADER.MENU.REFERENTIAL.WORK.MAPPING': string;
|
|
138
|
+
'COMMON.HEADER.MENU.REFERENTIAL.WORK.CREATE_CONTROL_CODE': string;
|
|
139
|
+
'COMMON.HEADER.MENU.REFERENTIAL.PERSON': string;
|
|
140
|
+
'COMMON.HEADER.MENU.REFERENTIAL.PERSON.CREATE_PERSON': string;
|
|
141
|
+
};
|