new-front-common-library 0.0.13 → 0.0.17
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/assets/css/_dark-theme.scss +566 -0
- package/assets/css/_global.scss +461 -0
- package/assets/css/_light-theme.scss +566 -0
- package/assets/css/_mat-palettes.scss +95 -0
- package/assets/css/_themes.scss +54 -0
- package/assets/img/unity_logo_48x48.png +0 -0
- package/bundles/new-front-common-library.umd.js +4629 -0
- package/bundles/new-front-common-library.umd.js.map +1 -0
- package/esm2015/lib/util/array.service.js +19 -0
- package/esm2015/lib/util/component/header/header.component.js +158 -0
- package/esm2015/lib/util/component/overlay/overlay.component.js +45 -0
- package/esm2015/lib/util/component/overlay/overlay.service.js +24 -0
- package/esm2015/lib/util/component/popup/popup-login/popup-login.component.js +91 -0
- package/esm2015/lib/util/component/sub-header/sub-header.component.js +48 -0
- package/esm2015/lib/util/config.js +7 -0
- package/esm2015/lib/util/date/PeriodModel.js +8 -0
- package/esm2015/lib/util/date/date-adapter.js +41 -0
- package/esm2015/lib/util/date/date-format-constants.js +12 -0
- package/esm2015/lib/util/date/date.util.js +218 -0
- package/esm2015/lib/util/decorators/theme.decorator.js +22 -0
- package/esm2015/lib/util/decorators/user.decorator.js +25 -0
- package/esm2015/lib/util/directives/my-number-formatter-directive.js +34 -0
- package/esm2015/lib/util/event/header/header-events.service.js +21 -0
- package/esm2015/lib/util/event/storage/local-storage-events.service.js +17 -0
- package/esm2015/lib/util/event/storage/session-storage-events.service.js +18 -0
- package/esm2015/lib/util/interfaces/permissions.interface.js +2 -0
- package/esm2015/lib/util/models/any-line.model.js +37 -0
- package/esm2015/lib/util/models/audio-content.model.js +27 -0
- package/esm2015/lib/util/models/authPermission.model.js +16 -0
- package/esm2015/lib/util/models/authUser.model.js +20 -0
- package/esm2015/lib/util/models/basic.model.js +14 -0
- package/esm2015/lib/util/models/box-set-item.model.js +19 -0
- package/esm2015/lib/util/models/disc-program.model.js +26 -0
- package/esm2015/lib/util/models/disc.model.js +22 -0
- package/esm2015/lib/util/models/eventType.model.js +7 -0
- package/esm2015/lib/util/models/expenditure-commitment/purchase-order-file.model.js +21 -0
- package/esm2015/lib/util/models/index.js +97 -0
- package/esm2015/lib/util/models/lang-line.model.js +27 -0
- package/esm2015/lib/util/models/legal/contract-work.model.js +23 -0
- package/esm2015/lib/util/models/legal/contract-work2.model.js +21 -0
- package/esm2015/lib/util/models/media-line.model.js +18 -0
- package/esm2015/lib/util/models/menu-language.model.js +15 -0
- package/esm2015/lib/util/models/milo/territory.model.js +18 -0
- package/esm2015/lib/util/models/permission.model.js +20 -0
- package/esm2015/lib/util/models/product-box-set.model.js +16 -0
- package/esm2015/lib/util/models/product-disc-detail.model.js +22 -0
- package/esm2015/lib/util/models/product-disc.model.js +27 -0
- package/esm2015/lib/util/models/product-division.model.js +29 -0
- package/esm2015/lib/util/models/product-type.model.js +22 -0
- package/esm2015/lib/util/models/product.model.js +62 -0
- package/esm2015/lib/util/models/program.model.js +28 -0
- package/esm2015/lib/util/models/purchase-order/purchase-order.model.js +53 -0
- package/esm2015/lib/util/models/referential/WorkVersionArticleDto.js +17 -0
- package/esm2015/lib/util/models/referential/adress-type.model.js +14 -0
- package/esm2015/lib/util/models/referential/adress.model.js +28 -0
- package/esm2015/lib/util/models/referential/attached-file.model.js +17 -0
- package/esm2015/lib/util/models/referential/bank-account.model.js +24 -0
- package/esm2015/lib/util/models/referential/bank-accounts.model.js +31 -0
- package/esm2015/lib/util/models/referential/basic-hierarchy.model.js +8 -0
- package/esm2015/lib/util/models/referential/broadcast-list-item.model.js +12 -0
- package/esm2015/lib/util/models/referential/color.model.js +16 -0
- package/esm2015/lib/util/models/referential/company.model.js +16 -0
- package/esm2015/lib/util/models/referential/content-type.model.js +17 -0
- package/esm2015/lib/util/models/referential/content.model.js +21 -0
- package/esm2015/lib/util/models/referential/cost-center-criteria-values.model.js +14 -0
- package/esm2015/lib/util/models/referential/cost-center-criteria.model.js +12 -0
- package/esm2015/lib/util/models/referential/cost-center.model.js +28 -0
- package/esm2015/lib/util/models/referential/coutry.model.js +16 -0
- package/esm2015/lib/util/models/referential/currency.model.js +20 -0
- package/esm2015/lib/util/models/referential/editorial-content.model.js +18 -0
- package/esm2015/lib/util/models/referential/fixing.model.js +16 -0
- package/esm2015/lib/util/models/referential/flat-media.model.js +18 -0
- package/esm2015/lib/util/models/referential/format-image.model.js +16 -0
- package/esm2015/lib/util/models/referential/format-type.model.js +16 -0
- package/esm2015/lib/util/models/referential/format.model.js +17 -0
- package/esm2015/lib/util/models/referential/fsk-index.model.js +20 -0
- package/esm2015/lib/util/models/referential/fsk.model.js +22 -0
- package/esm2015/lib/util/models/referential/function.model.js +23 -0
- package/esm2015/lib/util/models/referential/genre.model.js +17 -0
- package/esm2015/lib/util/models/referential/invoice-product-type.model.js +22 -0
- package/esm2015/lib/util/models/referential/keywords.model.js +2 -0
- package/esm2015/lib/util/models/referential/language.model.js +18 -0
- package/esm2015/lib/util/models/referential/media-filter.model.js +3 -0
- package/esm2015/lib/util/models/referential/media.model.js +20 -0
- package/esm2015/lib/util/models/referential/module.model.js +20 -0
- package/esm2015/lib/util/models/referential/parameter.model.js +2 -0
- package/esm2015/lib/util/models/referential/participant.model.js +19 -0
- package/esm2015/lib/util/models/referential/person.model.js +23 -0
- package/esm2015/lib/util/models/referential/project-status.model.js +16 -0
- package/esm2015/lib/util/models/referential/quota.model.js +17 -0
- package/esm2015/lib/util/models/referential/referential-entity-state.model.js +15 -0
- package/esm2015/lib/util/models/referential/referential-value.model.js +15 -0
- package/esm2015/lib/util/models/referential/referentiel.model.js +26 -0
- package/esm2015/lib/util/models/referential/restriction.model.js +19 -0
- package/esm2015/lib/util/models/referential/sap-order.model.js +19 -0
- package/esm2015/lib/util/models/referential/service-error.model.js +15 -0
- package/esm2015/lib/util/models/referential/sound.model.js +16 -0
- package/esm2015/lib/util/models/referential/territories-languages.model.js +16 -0
- package/esm2015/lib/util/models/referential/territory-filter.model.js +3 -0
- package/esm2015/lib/util/models/referential/territory.model.js +17 -0
- package/esm2015/lib/util/models/referential/theme.model.js +17 -0
- package/esm2015/lib/util/models/referential/third-party-creation-request.model.js +44 -0
- package/esm2015/lib/util/models/referential/third-party-module.model.js +20 -0
- package/esm2015/lib/util/models/referential/third-party.model.js +39 -0
- package/esm2015/lib/util/models/referential/translated-value-model.js +15 -0
- package/esm2015/lib/util/models/referential/tva.model.js +16 -0
- package/esm2015/lib/util/models/referential/type-export.model.js +16 -0
- package/esm2015/lib/util/models/referential/type-tva-company-territory.model.js +32 -0
- package/esm2015/lib/util/models/referential/type-tva.model.js +25 -0
- package/esm2015/lib/util/models/referential/work-addons-model.js +15 -0
- package/esm2015/lib/util/models/referential/work-appartenance.model.js +17 -0
- package/esm2015/lib/util/models/referential/work-genre.model.js +15 -0
- package/esm2015/lib/util/models/referential/work-language.model.js +15 -0
- package/esm2015/lib/util/models/referential/work-milo.model.js +61 -0
- package/esm2015/lib/util/models/referential/work-participant.model.js +20 -0
- package/esm2015/lib/util/models/referential/work-restrictions-model.js +12 -0
- package/esm2015/lib/util/models/referential/work-theme.model.js +15 -0
- package/esm2015/lib/util/models/referential/work-title.model.js +19 -0
- package/esm2015/lib/util/models/referential/work-version-origin.model.js +15 -0
- package/esm2015/lib/util/models/referential/work-versions-used.model.js +18 -0
- package/esm2015/lib/util/models/referential/work-versions.model.js +27 -0
- package/esm2015/lib/util/models/referential/work-year-production.model.js +12 -0
- package/esm2015/lib/util/models/referential/work.model.js +22 -0
- package/esm2015/lib/util/models/referential/zone.model.js +14 -0
- package/esm2015/lib/util/models/referentiel.model.js +26 -0
- package/esm2015/lib/util/models/search-response.model.js +10 -0
- package/esm2015/lib/util/models/section.model.js +8 -0
- package/esm2015/lib/util/models/select/options.model.js +8 -0
- package/esm2015/lib/util/models/select/select.model.js +7 -0
- package/esm2015/lib/util/models/subtitle-content.model.js +28 -0
- package/esm2015/lib/util/models/user-video.model.js +21 -0
- package/esm2015/lib/util/models/user.model.js +34 -0
- package/esm2015/lib/util/models/video-content.model.js +18 -0
- package/esm2015/lib/util/number.validator.js +128 -0
- package/esm2015/lib/util/permissions/permissions.service.js +41 -0
- package/esm2015/lib/util/pipes/capitalizefirst.pipe.js +41 -0
- package/esm2015/lib/util/pipes/comma-separated-number.pipe.js +15 -0
- package/esm2015/lib/util/pipes/display-html.pipe.js +20 -0
- package/esm2015/lib/util/pipes/display-null.pipe.js +24 -0
- package/esm2015/lib/util/pipes/format-number-input.pipe.js +22 -0
- package/esm2015/lib/util/pipes/local-date.pipe.js +27 -0
- package/esm2015/lib/util/pipes/my-number.pipe.js +44 -0
- package/esm2015/lib/util/pipes/trim-string.pipe.js +25 -0
- package/esm2015/lib/util/regex/regex.service.js +94 -0
- package/esm2015/lib/util/services/api/common-api.service.js +98 -0
- package/esm2015/lib/util/services/form-action/form-actions-events.service.js +25 -0
- package/esm2015/lib/util/services/guard/auth.guard.js +43 -0
- package/esm2015/lib/util/services/guard/login.guard.js +34 -0
- package/esm2015/lib/util/services/interceptor/auth.interceptor.js +53 -0
- package/esm2015/lib/util/services/jwt-security/aes.service.js +34 -0
- package/esm2015/lib/util/services/jwt-security/interceptorhttp.service.js +18 -0
- package/esm2015/lib/util/services/jwt-security/jwt.helpher.js +34 -0
- package/esm2015/lib/util/services/storage/local-storage.service.js +36 -0
- package/esm2015/lib/util/services/storage/session-storage.service.js +38 -0
- package/esm2015/lib/util/sort.js +22 -0
- package/esm2015/lib/util/theme/theme-event.service.js +17 -0
- package/esm2015/lib/util/toaster/toaster-events.service.js +32 -0
- package/esm2015/lib/util/util.module.js +256 -0
- package/esm2015/new-front-common-library.js +5 -0
- package/esm2015/public-api.js +46 -0
- package/fesm2015/new-front-common-library.js +3826 -0
- package/fesm2015/new-front-common-library.js.map +1 -0
- package/lib/util/array.service.d.ts +7 -0
- package/lib/util/component/header/header.component.d.ts +51 -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 +32 -0
- package/lib/util/component/sub-header/sub-header.component.d.ts +13 -0
- package/lib/util/config.d.ts +7 -0
- package/lib/util/date/PeriodModel.d.ts +6 -0
- package/lib/util/date/date-adapter.d.ts +8 -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/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/{src/lib/util/interfaces/permissions.interface.ts → lib/util/interfaces/permissions.interface.d.ts} +1 -1
- 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 +14 -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/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/{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-work.model.d.ts +27 -0
- package/lib/util/models/legal/contract-work2.model.d.ts +23 -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/milo/territory.model.d.ts +9 -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/lib/util/models/referential/parameter.model.d.ts +6 -0
- 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 +11 -0
- package/lib/util/models/referential/theme.model.d.ts +7 -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.model.d.ts +43 -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/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-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/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 +25 -0
- package/lib/util/models/video-content.model.d.ts +24 -0
- package/lib/util/number.validator.d.ts +14 -0
- package/lib/util/permissions/permissions.service.d.ts +12 -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/display-html.pipe.d.ts +10 -0
- package/lib/util/pipes/display-null.pipe.d.ts +8 -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/trim-string.pipe.d.ts +7 -0
- package/lib/util/regex/regex.service.d.ts +12 -0
- package/lib/util/services/api/common-api.service.d.ts +28 -0
- package/lib/util/services/form-action/form-actions-events.service.d.ts +14 -0
- package/lib/util/services/guard/auth.guard.d.ts +18 -0
- package/lib/util/services/guard/login.guard.d.ts +18 -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/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 +47 -0
- package/new-front-common-library.d.ts +5 -0
- package/package.json +29 -19
- package/{src/public-api.ts → public-api.d.ts} +2 -18
- package/karma.conf.js +0 -44
- package/ng-package.json +0 -7
- 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 -16
- package/src/lib/new-front-common-library.service.spec.ts +0 -16
- package/src/lib/new-front-common-library.service.ts +0 -9
- 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 -130
- package/src/lib/util/component/header/header.component.scss +0 -87
- package/src/lib/util/component/header/header.component.ts +0 -162
- 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 -41
- package/src/lib/util/component/overlay/overlay.service.ts +0 -22
- 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 -22
- package/src/lib/util/component/popup/popup-login/popup-login.component.ts +0 -89
- 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 -35
- package/src/lib/util/config.ts +0 -14
- package/src/lib/util/date/PeriodModel.ts +0 -7
- package/src/lib/util/date/date-adapter.ts +0 -41
- package/src/lib/util/date/date-format-constants.ts +0 -12
- package/src/lib/util/date/date-format.spec.ts +0 -67
- package/src/lib/util/date/date.util.ts +0 -221
- 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 -38
- 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 -14
- package/src/lib/util/models/any-line.model.ts +0 -43
- package/src/lib/util/models/audio-content.model.ts +0 -39
- package/src/lib/util/models/authPermission.model.ts +0 -16
- package/src/lib/util/models/authUser.model.ts +0 -25
- package/src/lib/util/models/basic-hierarchy.model.ts +0 -7
- package/src/lib/util/models/basic.model.ts +0 -31
- package/src/lib/util/models/box-set-item.model.ts +0 -22
- package/src/lib/util/models/custom-typings.d.ts +0 -154
- package/src/lib/util/models/disc-program.model.ts +0 -28
- package/src/lib/util/models/disc.model.ts +0 -25
- package/src/lib/util/models/eventType.model.ts +0 -7
- package/src/lib/util/models/expenditure-commitment/purchase-order-file.model.ts +0 -26
- package/src/lib/util/models/lang-line.model.ts +0 -30
- package/src/lib/util/models/legal/contract-work.model.ts +0 -42
- package/src/lib/util/models/legal/contract-work2.model.ts +0 -39
- package/src/lib/util/models/media-line.model.ts +0 -19
- package/src/lib/util/models/menu-language.model.ts +0 -15
- package/src/lib/util/models/milo/territory.model.ts +0 -18
- package/src/lib/util/models/module.model.ts +0 -8
- package/src/lib/util/models/permission.model.ts +0 -22
- package/src/lib/util/models/product-box-set.model.ts +0 -18
- package/src/lib/util/models/product-disc-detail.model.ts +0 -24
- package/src/lib/util/models/product-disc.model.ts +0 -30
- package/src/lib/util/models/product-division.model.ts +0 -34
- package/src/lib/util/models/product-type.model.ts +0 -26
- package/src/lib/util/models/product.model.ts +0 -71
- 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 -19
- package/src/lib/util/models/referential/adress-type.model.ts +0 -12
- package/src/lib/util/models/referential/adress.model.ts +0 -30
- package/src/lib/util/models/referential/attached-file.model.ts +0 -20
- package/src/lib/util/models/referential/bank-account.model.ts +0 -24
- package/src/lib/util/models/referential/bank-accounts.model.ts +0 -33
- package/src/lib/util/models/referential/basic-hierarchy.model.ts +0 -7
- package/src/lib/util/models/referential/broadcast-list-item.model.ts +0 -18
- package/src/lib/util/models/referential/color.model.ts +0 -15
- package/src/lib/util/models/referential/company.model.ts +0 -15
- package/src/lib/util/models/referential/content-type.model.ts +0 -21
- package/src/lib/util/models/referential/content.model.ts +0 -25
- package/src/lib/util/models/referential/cost-center-criteria-values.model.ts +0 -16
- package/src/lib/util/models/referential/cost-center-criteria.model.ts +0 -22
- package/src/lib/util/models/referential/cost-center.model.ts +0 -36
- package/src/lib/util/models/referential/coutry.model.ts +0 -16
- package/src/lib/util/models/referential/currency.model.ts +0 -21
- package/src/lib/util/models/referential/editorial-content.model.ts +0 -36
- package/src/lib/util/models/referential/fixing.model.ts +0 -20
- package/src/lib/util/models/referential/flat-media.model.ts +0 -18
- package/src/lib/util/models/referential/format-image.model.ts +0 -16
- package/src/lib/util/models/referential/format-type.model.ts +0 -15
- package/src/lib/util/models/referential/format.model.ts +0 -16
- 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 -24
- package/src/lib/util/models/referential/genre.model.ts +0 -16
- package/src/lib/util/models/referential/invoice-product-type.model.ts +0 -23
- package/src/lib/util/models/referential/keywords.model.ts +0 -6
- package/src/lib/util/models/referential/language.model.ts +0 -21
- package/src/lib/util/models/referential/media-filter.model.ts +0 -10
- package/src/lib/util/models/referential/media.model.ts +0 -20
- package/src/lib/util/models/referential/module.model.ts +0 -20
- package/src/lib/util/models/referential/parameter.model.ts +0 -6
- package/src/lib/util/models/referential/participant.model.ts +0 -30
- package/src/lib/util/models/referential/person.model.ts +0 -29
- package/src/lib/util/models/referential/po/WorkRestrictionPO.ts +0 -10
- package/src/lib/util/models/referential/project-status.model.ts +0 -15
- package/src/lib/util/models/referential/quota.model.ts +0 -16
- package/src/lib/util/models/referential/referential-entity-state.model.ts +0 -21
- package/src/lib/util/models/referential/referential-value.model.ts +0 -20
- package/src/lib/util/models/referential/referentiel.model.ts +0 -28
- package/src/lib/util/models/referential/restriction.model.ts +0 -28
- package/src/lib/util/models/referential/sap-order.model.ts +0 -47
- package/src/lib/util/models/referential/service-error.model.ts +0 -15
- package/src/lib/util/models/referential/sound.model.ts +0 -15
- package/src/lib/util/models/referential/territories-languages.model.ts +0 -18
- package/src/lib/util/models/referential/territory-filter.model.ts +0 -6
- package/src/lib/util/models/referential/territory.model.ts +0 -26
- package/src/lib/util/models/referential/theme.model.ts +0 -16
- package/src/lib/util/models/referential/third-party-creation-request.model.ts +0 -58
- package/src/lib/util/models/referential/third-party-module.model.ts +0 -20
- package/src/lib/util/models/referential/third-party.model.ts +0 -54
- package/src/lib/util/models/referential/translated-value-model.ts +0 -19
- package/src/lib/util/models/referential/tva.model.ts +0 -16
- package/src/lib/util/models/referential/type-export.model.ts +0 -16
- package/src/lib/util/models/referential/type-tva-company-territory.model.ts +0 -35
- package/src/lib/util/models/referential/type-tva.model.ts +0 -27
- package/src/lib/util/models/referential/work-addons-model.ts +0 -35
- package/src/lib/util/models/referential/work-appartenance.model.ts +0 -16
- package/src/lib/util/models/referential/work-genre.model.ts +0 -19
- package/src/lib/util/models/referential/work-language.model.ts +0 -19
- package/src/lib/util/models/referential/work-milo.model.ts +0 -64
- package/src/lib/util/models/referential/work-participant.model.ts +0 -29
- package/src/lib/util/models/referential/work-restrictions-model.ts +0 -33
- package/src/lib/util/models/referential/work-theme.model.ts +0 -19
- package/src/lib/util/models/referential/work-title.model.ts +0 -26
- package/src/lib/util/models/referential/work-version-origin.model.ts +0 -19
- package/src/lib/util/models/referential/work-versions-used.model.ts +0 -21
- package/src/lib/util/models/referential/work-versions.model.ts +0 -48
- package/src/lib/util/models/referential/work-year-production.model.ts +0 -15
- package/src/lib/util/models/referential/work.model.ts +0 -88
- package/src/lib/util/models/referential/zone.model.ts +0 -15
- package/src/lib/util/models/referentiel.model.ts +0 -28
- package/src/lib/util/models/search-response.model.ts +0 -7
- package/src/lib/util/models/section.model.ts +0 -10
- package/src/lib/util/models/select/options.model.ts +0 -7
- package/src/lib/util/models/select/select.model.ts +0 -3
- package/src/lib/util/models/subtitle-content.model.ts +0 -38
- package/src/lib/util/models/user-video.model.ts +0 -28
- package/src/lib/util/models/user.model.ts +0 -38
- package/src/lib/util/models/video-content.model.ts +0 -36
- package/src/lib/util/number.validator.ts +0 -121
- package/src/lib/util/permissions/permissions.service.ts +0 -36
- 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/display-html.pipe.ts +0 -15
- package/src/lib/util/pipes/display-null.pipe.ts +0 -19
- 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/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/common-api.service.ts +0 -121
- package/src/lib/util/services/form-action/form-actions-events.service.ts +0 -25
- package/src/lib/util/services/guard/auth.guard.ts +0 -43
- package/src/lib/util/services/guard/login.guard.ts +0 -31
- package/src/lib/util/services/interceptor/auth.interceptor.ts +0 -65
- 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 -30
- package/src/lib/util/services/storage/local-storage.service.ts +0 -36
- package/src/lib/util/services/storage/session-storage.service.ts +0 -38
- package/src/lib/util/sort.ts +0 -26
- package/src/lib/util/theme/theme-event.service.ts +0 -15
- package/src/lib/util/toaster/toaster-events.service.ts +0 -31
- package/src/lib/util/util.module.ts +0 -171
- package/src/test.ts +0 -28
- package/tsconfig.lib.json +0 -20
- package/tsconfig.lib.prod.json +0 -10
- package/tsconfig.spec.json +0 -17
|
@@ -0,0 +1,566 @@
|
|
|
1
|
+
@import "mat-palettes";
|
|
2
|
+
|
|
3
|
+
.dark-theme {
|
|
4
|
+
//1
|
|
5
|
+
.u-sidenav-container {
|
|
6
|
+
background-color: $background-lvl3;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
//2
|
|
10
|
+
.mat-card {
|
|
11
|
+
padding: 5px !important;
|
|
12
|
+
background: $background-lvl3;
|
|
13
|
+
color: $gray-background-dark;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
//3
|
|
17
|
+
.navigation-menu {
|
|
18
|
+
background-color: $background-lvl2;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
//4
|
|
22
|
+
.mat-table {
|
|
23
|
+
background-color: $background-lvl2;
|
|
24
|
+
border-color: $background-lvl3;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
//5
|
|
28
|
+
.mat-cell {
|
|
29
|
+
color: $gray-light;;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
//6
|
|
33
|
+
mat-row:hover {
|
|
34
|
+
background-color: whitesmoke;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
//7
|
|
38
|
+
/* Table header coloring*/
|
|
39
|
+
.mat-form-field-appearance-legacy .mat-form-field-label {
|
|
40
|
+
color: $gray-strong !important;
|
|
41
|
+
font-weight: bold;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
//9
|
|
45
|
+
/*change color of underline when focused*/
|
|
46
|
+
.mat-form-field-ripple {
|
|
47
|
+
background-color: $background-lvl3 !important;;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
//10
|
|
51
|
+
mat-toolbar-row {
|
|
52
|
+
background-color: $background-lvl2;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
//12
|
|
56
|
+
.mat-expansion-panel-header {
|
|
57
|
+
background-color: $background-lvl2;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
//13
|
|
61
|
+
.mat-expansion-panel-body {
|
|
62
|
+
background-color: $background-lvl2;
|
|
63
|
+
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
//14
|
|
67
|
+
.mat-sort-header-arrow {
|
|
68
|
+
color: $black-bluish !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
//15
|
|
72
|
+
.disable_ripple {
|
|
73
|
+
background-color: #EAEEF4 !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
//16
|
|
77
|
+
.cke_editable {
|
|
78
|
+
font-size: 12px !important;
|
|
79
|
+
font-family: Poppins;
|
|
80
|
+
background-color: $background-lvl2;
|
|
81
|
+
color: $gray-primary;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
//17
|
|
85
|
+
.hide-ckeditor-toolbar {
|
|
86
|
+
.cke_inner .cke_top {
|
|
87
|
+
display: none;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
//18--------------------identity
|
|
92
|
+
mat-label {
|
|
93
|
+
color: $gray-primary !important;
|
|
94
|
+
font-weight: bold;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
//19
|
|
98
|
+
input {
|
|
99
|
+
color: $gray-light;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
textarea {
|
|
103
|
+
color: $gray-light;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.mat-row, row-drop {
|
|
107
|
+
border-radius: 3%;
|
|
108
|
+
border-left-width: 1px;
|
|
109
|
+
border-right-width: 1px;
|
|
110
|
+
border-left-color: $background-lvl3;
|
|
111
|
+
border-right-color: $background-lvl3;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.mat-row .mat-input-element {
|
|
115
|
+
background: $background-lvl3;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.mat-row .mat-select {
|
|
119
|
+
background: $background-lvl3;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.mat-select-value-text {
|
|
123
|
+
color: $gray-light;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.mat-select-placeholder {
|
|
127
|
+
color: $black-bluish !important;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.mat-form-field-disabled .mat-select-value-text {
|
|
131
|
+
color: gray;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.mat-select-arrow {
|
|
135
|
+
color: $blue-primary;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.mat-radio-outer-circle {
|
|
139
|
+
border-color: $blue-primary !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.mat-radio-inner-circle {
|
|
143
|
+
background-color: $blue-primary !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.mat-datepicker-toggle {
|
|
147
|
+
color: $blue-primary;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.mat-form-field .mat-icon {
|
|
151
|
+
color: $blue-primary;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.mat-footer-cell {
|
|
155
|
+
font-style: italic;
|
|
156
|
+
font-weight: normal;
|
|
157
|
+
font-size: 14px;
|
|
158
|
+
//color: $gray-light;
|
|
159
|
+
background-color: $background-lvl2;
|
|
160
|
+
border-color: $background-lvl2;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
mat-footer-row {
|
|
164
|
+
background-color: $background-lvl2;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.contracts-details-page__container {
|
|
168
|
+
margin-top: 30px !important;
|
|
169
|
+
margin-left: 1% !important;
|
|
170
|
+
margin-right: 1% !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.table-header-text {
|
|
174
|
+
color: $gray-strong;
|
|
175
|
+
font-size: 14px;
|
|
176
|
+
padding-bottom:10px;
|
|
177
|
+
font-weight: bold;
|
|
178
|
+
}
|
|
179
|
+
.action-button{
|
|
180
|
+
background-color: $blue-primary !important;
|
|
181
|
+
border-color: $blue-primary !important;
|
|
182
|
+
color: white !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.mat-menu-item {
|
|
186
|
+
color: $gray-light !important;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.cancel-button{
|
|
190
|
+
background-color: $red-primary !important;
|
|
191
|
+
color: white !important;
|
|
192
|
+
border-color: $red-primary !important;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.save-button {
|
|
196
|
+
background-color: $green-primary !important;
|
|
197
|
+
border-color: $green-primary !important;
|
|
198
|
+
color: white !important;
|
|
199
|
+
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.expand-button {
|
|
203
|
+
background-color: $gray-blue-primary !important;
|
|
204
|
+
color: white !important;
|
|
205
|
+
font-family: Sofia Pro;
|
|
206
|
+
font-style: normal;
|
|
207
|
+
font-weight: bold;
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
line-height: 12px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.mat-badge-content {
|
|
213
|
+
color: white;
|
|
214
|
+
background: $red-primary !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.mat-form-field-outline {
|
|
218
|
+
background: transparent;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
|
|
222
|
+
color: $blue-primary;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.btn-table-action .mat-icon {
|
|
226
|
+
color: $blue-primary;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// SCROLL BAR
|
|
230
|
+
::-webkit-scrollbar {
|
|
231
|
+
width: 5px;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
::-webkit-scrollbar-track {
|
|
235
|
+
background: whitesmoke;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
::-webkit-scrollbar-thumb {
|
|
239
|
+
background: $gray-blue-primary;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
::-webkit-scrollbar-thumb:hover {
|
|
243
|
+
background: $blue-primary;
|
|
244
|
+
}
|
|
245
|
+
//END SCROLL BAR
|
|
246
|
+
|
|
247
|
+
.mat-select-panel {
|
|
248
|
+
max-height: 300px !important;
|
|
249
|
+
max-width: 450px !important;
|
|
250
|
+
min-width: auto !important;
|
|
251
|
+
width: auto !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.block-title {
|
|
255
|
+
color: $gray-background-lightest;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.block-title-icon {
|
|
259
|
+
color: $gray-background-lightest;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.mat-header-cell {
|
|
263
|
+
color: $gray-background-lightest;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.mat-header-row {
|
|
267
|
+
background: $background-lvl3;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.consult-info-label {
|
|
271
|
+
color: $gray-primary;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.consult-info-data {
|
|
275
|
+
color: $gray-background-lightest;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.label-consult label {
|
|
279
|
+
color: $gray-primary;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.span-consult span {
|
|
283
|
+
color: $gray-background-lightest;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.sub-toolbar {
|
|
287
|
+
background: $background-lvl2;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.sub-toolbar .title {
|
|
291
|
+
color: $gray-background-lightest;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.sub-toolbar i {
|
|
295
|
+
color: $gray-background-lightest;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.home-button button {
|
|
299
|
+
color: $gray-background-lightest;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.primary {
|
|
303
|
+
background: $blue-primary !important;
|
|
304
|
+
color: #FFFFFF !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.secondary {
|
|
308
|
+
background: $gray-blue-primary !important;
|
|
309
|
+
color: #FFFFFF !important;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.accent {
|
|
313
|
+
background: $purple-primary !important;
|
|
314
|
+
color: #FFFFFF !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.positive {
|
|
318
|
+
background: $green-primary !important;
|
|
319
|
+
color: #FFFFFF !important;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.negative {
|
|
323
|
+
background: $red-primary;
|
|
324
|
+
color: #FFFFFF;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.btn-delete {
|
|
328
|
+
color: $red-primary !important;
|
|
329
|
+
background: transparent !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.mat-chip-remove {
|
|
333
|
+
color: #FFFFFF !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.row-drop {
|
|
337
|
+
background-color: $background-lvl2;
|
|
338
|
+
border-color: $gray-background-lightest;
|
|
339
|
+
color: $gray-background-lightest;
|
|
340
|
+
font-size: 12px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
row-drop:hover {
|
|
344
|
+
background-color: whitesmoke;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.mat-checkbox-checked.mat-accent .mat-checkbox-background {
|
|
348
|
+
background-color: $blue-primary;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.mat-checkbox-frame {
|
|
352
|
+
border-color: $gray-primary;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.mat-drag-panel {
|
|
356
|
+
color: $gray-background-lightest;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.mat-expansion-panel-header-title {
|
|
360
|
+
color: $gray-background-lightest;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// POPUP
|
|
364
|
+
|
|
365
|
+
.mat-dialog-container {
|
|
366
|
+
background: $background-lvl3;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.mat-dialog-container mat-label {
|
|
370
|
+
//color: #FFFFFF !important;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.mat-dialog-container h1 {
|
|
374
|
+
color: $gray-background-lightest !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.mat-dialog-container h2 {
|
|
378
|
+
color: $gray-background-lightest !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.mat-dialog-container h3 {
|
|
382
|
+
color: $gray-background-lightest !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.mat-dialog-container .text {
|
|
386
|
+
color: $gray-background-lightest !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.mat-dialog-container .btn-ok {
|
|
390
|
+
color: white !important;
|
|
391
|
+
background: $blue-primary !important;
|
|
392
|
+
border: none;
|
|
393
|
+
padding: 5px 10px 5px 10px;
|
|
394
|
+
border-radius: 4px;height: 32px;
|
|
395
|
+
min-width: 64px;
|
|
396
|
+
margin-right: 10px;
|
|
397
|
+
cursor: pointer;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.mat-dialog-container .btn-ko {
|
|
401
|
+
color: white !important;
|
|
402
|
+
background: $red-primary !important;
|
|
403
|
+
border: none;
|
|
404
|
+
padding: 5px 10px 5px 10px;
|
|
405
|
+
border-radius: 4px;height: 32px;
|
|
406
|
+
min-width: 64px;
|
|
407
|
+
margin-right: 10px;
|
|
408
|
+
cursor: pointer;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
// END POPUP
|
|
412
|
+
|
|
413
|
+
// PAGINATOR
|
|
414
|
+
|
|
415
|
+
.table-paginator {
|
|
416
|
+
background-color: $background-lvl3 !important;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.mat-paginator-container {
|
|
420
|
+
background-color: $background-lvl3;
|
|
421
|
+
color: $gray-background-lightest;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.mat-paginator-page-size .mat-select-trigger {
|
|
425
|
+
background: $gray-strong;
|
|
426
|
+
padding: 2px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.mat-paginator .mat-select-value-text {
|
|
430
|
+
color: $black-bluish !important;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
//END PAGINATOR
|
|
434
|
+
|
|
435
|
+
.confidential {
|
|
436
|
+
color: $gray-primary;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.separator-line {
|
|
440
|
+
border-color: $gray-background-lightest;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
// DRAG & DROP
|
|
444
|
+
|
|
445
|
+
.drag-drop-box {
|
|
446
|
+
color: $gray-background-lightest;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.drop-list {
|
|
450
|
+
color: $gray-background-lightest;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
// END DRAG & DROP
|
|
454
|
+
|
|
455
|
+
.text {
|
|
456
|
+
color: $gray-background-lightest;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.no-results {
|
|
460
|
+
background: $gray-primary;
|
|
461
|
+
color: white;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.expandable-row .mat-cell {
|
|
465
|
+
background: transparent;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.expandable-row .inner-table-cell {
|
|
469
|
+
background: $background-lvl2;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
// BUDGET
|
|
473
|
+
|
|
474
|
+
.budget-row {
|
|
475
|
+
border-bottom-color: $gray-background-lightest;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.budget-headers {
|
|
479
|
+
color: $gray-background-lightest;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.budget-body {
|
|
483
|
+
color: $gray-background-lightest;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
// END BUDGET
|
|
487
|
+
|
|
488
|
+
.primary-color {
|
|
489
|
+
color: $blue-primary !important;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
// CALENDAR
|
|
493
|
+
|
|
494
|
+
.mat-calendar-body-cell-content, .mat-date-range-input-separator {
|
|
495
|
+
color: $gray-background-lightest !important;
|
|
496
|
+
border-color: transparent;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.mat-calendar-body-selected {
|
|
500
|
+
background: $gray-background-lightest !important;
|
|
501
|
+
color: white !important;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.mat-calendar-body-today {
|
|
505
|
+
background: $blue-primary !important;
|
|
506
|
+
border-color: $blue-primary !important;
|
|
507
|
+
color: white !important;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.mat-datepicker-toggle, .mat-datepicker-content .mat-calendar-next-button, .mat-datepicker-content .mat-calendar-previous-button {
|
|
511
|
+
color: $blue-primary !important;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.mat-datepicker-content {
|
|
515
|
+
color: $blue-primary !important;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.mat-datepicker-content .mat-calendar {
|
|
519
|
+
width: 220px;
|
|
520
|
+
height: auto;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.mat-calendar-controls {
|
|
524
|
+
display: flex;
|
|
525
|
+
margin: 0% calc(33% / 7 - 16px);
|
|
526
|
+
}
|
|
527
|
+
// END CALENDAR
|
|
528
|
+
|
|
529
|
+
.mat-raised-button.mat-accent {
|
|
530
|
+
background: $gray-blue-primary !important;;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
// HEADER
|
|
534
|
+
|
|
535
|
+
.sc-header {
|
|
536
|
+
background: $background-lvl2;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.global-search {
|
|
540
|
+
background: $background-lvl1;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.global-search-input {
|
|
544
|
+
background: $background-lvl1;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.global-search-separator {
|
|
548
|
+
border-right: 2px solid $dark-background-color;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.advanced-button {
|
|
552
|
+
background: $purple-primary;
|
|
553
|
+
color: white;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.sc-header .header-icon {
|
|
557
|
+
color: $dark-work-details-color;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.header-separator {
|
|
561
|
+
border-right: 2px solid $background-lvl5;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
// END HEADER
|
|
565
|
+
|
|
566
|
+
}
|