@onemrvapublic/design-system 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +4 -0
- package/.editorconfig +16 -0
- package/.github/workflows/npm-publish.yml +34 -0
- package/README.md +27 -0
- package/angular.json +214 -0
- package/build.sh +108 -0
- package/cypress.config.ts +40 -0
- package/index.html +10 -0
- package/npm-publish.sh +11 -0
- package/package.json +89 -0
- package/projects/onemrva/design-system/README.md +24 -0
- package/projects/onemrva/design-system/_index.scss +29 -0
- package/projects/onemrva/design-system/_utils.scss +25 -0
- package/projects/onemrva/design-system/layout/assets/logo_de.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_en.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_fr.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_nl.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_onem_rva.svg +32 -0
- package/projects/onemrva/design-system/layout/index.ts +7 -0
- package/projects/onemrva/design-system/layout/ng-package.json +6 -0
- package/projects/onemrva/design-system/layout/src/components/index.ts +31 -0
- package/projects/onemrva/design-system/layout/src/components/layout/_layout-mixin.component.scss +159 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.html +194 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.scss +137 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.ts +187 -0
- package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.ts +23 -0
- package/projects/onemrva/design-system/layout/src/components/layout-footer/layout-footer.component.ts +11 -0
- package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.spec.ts +25 -0
- package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.ts +17 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.html +57 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.ts +56 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.html +104 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.ts +88 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav-title/layout-sidenav-title.component.ts +9 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.html +44 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.ts +35 -0
- package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.spec.ts +25 -0
- package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.ts +17 -0
- package/projects/onemrva/design-system/layout/src/decorators/coerce-boolean-input.decorator.ts +19 -0
- package/projects/onemrva/design-system/layout/src/decorators/observable-content.decorator.ts +13 -0
- package/projects/onemrva/design-system/layout/src/directives/drawer-host.directive.ts +10 -0
- package/projects/onemrva/design-system/layout/src/enums/environment.enum.ts +6 -0
- package/projects/onemrva/design-system/layout/src/layout.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/layout.module.ts +103 -0
- package/projects/onemrva/design-system/layout/src/models/onem-language.model.ts +4 -0
- package/projects/onemrva/design-system/layout/src/models/onemrva-profile.model.ts +57 -0
- package/projects/onemrva/design-system/layout/src/services/drawer.service.ts +28 -0
- package/projects/onemrva/design-system/layout/src/striphtml.pipe.ts +11 -0
- package/projects/onemrva/design-system/layout/src/test.ts +25 -0
- package/projects/onemrva/design-system/mat-avatar/index.ts +2 -0
- package/projects/onemrva/design-system/mat-avatar/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.html +17 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.scss +130 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.ts +421 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.module.ts +17 -0
- package/projects/onemrva/design-system/mat-badge/index.ts +6 -0
- package/projects/onemrva/design-system/mat-badge/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.scss +152 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.ts +291 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.module.ts +8 -0
- package/projects/onemrva/design-system/mat-breadcrumb/index.ts +7 -0
- package/projects/onemrva/design-system/mat-breadcrumb/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.html +37 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.scss +70 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.ts +16 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.model.ts +4 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.module.ts +12 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.service.ts +65 -0
- package/projects/onemrva/design-system/mat-clipboard/index.ts +6 -0
- package/projects/onemrva/design-system/mat-clipboard/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-clipboard/src/_onemrva-mat-spinner.component.scss +62 -0
- package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.component.ts +16 -0
- package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.module.ts +14 -0
- package/projects/onemrva/design-system/mat-datepicker-header/index.ts +5 -0
- package/projects/onemrva/design-system/mat-datepicker-header/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/_onemrva-mat-datepicker-header.component.scss +11 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.html +53 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.ts +285 -0
- package/projects/onemrva/design-system/mat-file-upload/index.ts +11 -0
- package/projects/onemrva/design-system/mat-file-upload/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/index.ts +10 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.html +59 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.scss +24 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.ts +79 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.html +53 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.scss +248 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.ts +185 -0
- package/projects/onemrva/design-system/mat-file-upload/src/directives/dnd.directive.ts +43 -0
- package/projects/onemrva/design-system/mat-file-upload/src/models/action-config.model.ts +10 -0
- package/projects/onemrva/design-system/mat-file-upload/src/models/progress-file.model.ts +94 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload-itf.store.ts +79 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.module.ts +28 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.service.ts +68 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.store.ts +473 -0
- package/projects/onemrva/design-system/mat-input-bank-account/index.ts +5 -0
- package/projects/onemrva/design-system/mat-input-bank-account/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.html +32 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.scss +9 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.ts +125 -0
- package/projects/onemrva/design-system/mat-input-country/index.ts +6 -0
- package/projects/onemrva/design-system/mat-input-country/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-country/src/countries.ts +3182 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.html +29 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.scss +29 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.ts +144 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/index.ts +5 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.html +39 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.scss +25 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.ts +190 -0
- package/projects/onemrva/design-system/mat-input-phone/index.ts +6 -0
- package/projects/onemrva/design-system/mat-input-phone/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.html +43 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.scss +29 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.ts +261 -0
- package/projects/onemrva/design-system/mat-input-phone/src/phone-number.directive.ts +47 -0
- package/projects/onemrva/design-system/mat-message-box/index.ts +2 -0
- package/projects/onemrva/design-system/mat-message-box/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.scss +60 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.ts +134 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.module.ts +12 -0
- package/projects/onemrva/design-system/mat-multi-select/index.ts +2 -0
- package/projects/onemrva/design-system/mat-multi-select/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-multi-select/src/_onemrva-mat-multi-select.component.scss +66 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.html +24 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.ts +152 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.module.ts +31 -0
- package/projects/onemrva/design-system/mat-notification/index.ts +1 -0
- package/projects/onemrva/design-system/mat-notification/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-notification/src/_onemrva-mat-notification.component.scss +71 -0
- package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.html +10 -0
- package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.ts +158 -0
- package/projects/onemrva/design-system/mat-paginator/index.ts +6 -0
- package/projects/onemrva/design-system/mat-paginator/ng-package.json +7 -0
- package/projects/onemrva/design-system/mat-paginator/package.json +7 -0
- package/projects/onemrva/design-system/mat-paginator/src/_onemrva-mat-paginator.component.scss +122 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.html +104 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.spec.ts +184 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.ts +214 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.module.ts +15 -0
- package/projects/onemrva/design-system/mat-panel/index.ts +6 -0
- package/projects/onemrva/design-system/mat-panel/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.component.ts +20 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.html +8 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.html +10 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.scss +100 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.ts +122 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.module.ts +26 -0
- package/projects/onemrva/design-system/mat-pop-over/index.ts +4 -0
- package/projects/onemrva/design-system/mat-pop-over/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-content.component.ts +13 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-trigger.component.ts +13 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.html +29 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.scss +141 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.ts +47 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.module.ts +19 -0
- package/projects/onemrva/design-system/mat-progress-bar/index.ts +1 -0
- package/projects/onemrva/design-system/mat-progress-bar/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/_onemrva-mat-progress-bar-mixin.component.scss +37 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.html +13 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.ts +27 -0
- package/projects/onemrva/design-system/mat-select-search/index.ts +3 -0
- package/projects/onemrva/design-system/mat-select-search/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-select-search/src/default-options.ts +42 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-no-entries-found.directive.ts +15 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search-clear.directive.ts +13 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.html +67 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.scss +126 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.spec.ts +790 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.ts +612 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.module.ts +53 -0
- package/projects/onemrva/design-system/mat-side-menu/index.ts +6 -0
- package/projects/onemrva/design-system/mat-side-menu/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.html +36 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.scss +50 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.spec.ts +66 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.ts +46 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.module.ts +14 -0
- package/projects/onemrva/design-system/mat-skeleton/index.ts +3 -0
- package/projects/onemrva/design-system/mat-skeleton/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton-enums.ts +32 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.html +17 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.scss +216 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.ts +173 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.module.ts +16 -0
- package/projects/onemrva/design-system/mat-spinner/index.ts +6 -0
- package/projects/onemrva/design-system/mat-spinner/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-spinner/src/_onemrva-mat-spinner.component.scss +62 -0
- package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.component.ts +11 -0
- package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.module.ts +8 -0
- package/projects/onemrva/design-system/mat-stepper/index.ts +6 -0
- package/projects/onemrva/design-system/mat-stepper/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-stepper/src/_stepper-variables.scss +29 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.spec.ts +23 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.ts +60 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.html +53 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.module.ts +30 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.scss +106 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-stepper-animations.ts +40 -0
- package/projects/onemrva/design-system/mat-table-of-content/index.ts +8 -0
- package/projects/onemrva/design-system/mat-table-of-content/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/_onemrva-mat-table-of-content.component.scss +79 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.html +23 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.ts +128 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.directive.ts +67 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.service.ts +51 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-toc-anchor.model.ts +24 -0
- package/projects/onemrva/design-system/mat-task-list/index.ts +5 -0
- package/projects/onemrva/design-system/mat-task-list/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.component.ts +12 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.html +5 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.html +1 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.scss +150 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.ts +50 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.module.ts +31 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.component.ts +18 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.html +5 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.html +17 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.scss +0 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.ts +117 -0
- package/projects/onemrva/design-system/mat-timepicker/index.ts +6 -0
- package/projects/onemrva/design-system/mat-timepicker/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.html +42 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.scss +129 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.spec.ts +25 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.ts +273 -0
- package/projects/onemrva/design-system/mat-timepicker/src/interfaces-and-types.ts +16 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.html +0 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.ts +289 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.module.ts +40 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.html +53 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.scss +69 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.spec.ts +25 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.ts +169 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.html +15 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.scss +32 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.ts +135 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker.directive.ts +594 -0
- package/projects/onemrva/design-system/mat-timepicker/src/util.ts +97 -0
- package/projects/onemrva/design-system/mat-toast/index.ts +6 -0
- package/projects/onemrva/design-system/mat-toast/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.scss +54 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.ts +36 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.module.ts +11 -0
- package/projects/onemrva/design-system/mat-tooltip/index.ts +4 -0
- package/projects/onemrva/design-system/mat-tooltip/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.scss +9 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.ts +21 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.directive.ts +119 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.module.ts +11 -0
- package/projects/onemrva/design-system/ng-package.json +20 -0
- package/projects/onemrva/design-system/package.json +27 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Arri/303/250re-plan.svg +22 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Halo.svg +10 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Ombre.svg +3 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Page.svg +21 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Page2.svg +19 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Soucoupe.svg +70 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Yeux.svg +6 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/shape.svg +3 -0
- package/projects/onemrva/design-system/page-not-found/index.ts +5 -0
- package/projects/onemrva/design-system/page-not-found/ng-package.json +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-action.component.ts +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-extra.component.ts +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.scss +16 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.ts +84 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-mixin.component.scss +12 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.html +31 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.scss +206 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.ts +59 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.module.ts +24 -0
- package/projects/onemrva/design-system/src/public-api.ts +5 -0
- package/projects/onemrva/design-system/tsconfig.lib.json +12 -0
- package/projects/onemrva/design-system/tsconfig.lib.prod.json +10 -0
- package/projects/onemrva/design-system/utils/index.ts +2 -0
- package/projects/onemrva/design-system/utils/ng-package.json +6 -0
- package/projects/onemrva/design-system/utils/src/enum.utils.ts +6 -0
- package/projects/onemrva/design-system/utils/src/enums/color.enum.ts +14 -0
- package/projects/onemrva/design-system/utils/src/enums/index.ts +2 -0
- package/projects/onemrva/design-system/utils/src/enums/size.enum.ts +11 -0
- package/projects/schematics/README.md +40 -0
- package/projects/schematics/package.json +25 -0
- package/projects/schematics/src/cmp-demo/schema.json +15 -0
- package/projects/schematics/src/collection.json +17 -0
- package/projects/schematics/src/component/files/root/ng-package.json +6 -0
- package/projects/schematics/src/component/files/src/onemrva-mat-__name__.component.html +4 -0
- package/projects/schematics/src/component/schema.json +11 -0
- package/projects/schematics/src/demo/files/demo/demo-__name__.component.html +2 -0
- package/projects/schematics/src/demo/files/demo/readme.md +26 -0
- package/projects/schematics/src/demo/schema.json +15 -0
- package/projects/schematics/tsconfig.json +24 -0
- package/projects/test/.nycrc +5 -0
- package/projects/test/cypress/coverage.webpack.ts +20 -0
- package/projects/test/cypress/cucumber-json/basictest.cucumber.json +402 -0
- package/projects/test/cypress/fixtures/example.json +5 -0
- package/projects/test/cypress/integration/basictest.feature +53 -0
- package/projects/test/cypress/integration/common/basicTestSteps.ts +54 -0
- package/projects/test/cypress/plugins/index.ts +13 -0
- package/projects/test/cypress/support/commands.ts +44 -0
- package/projects/test/cypress/support/e2e.ts +20 -0
- package/projects/test/cypress/tsconfig.json +10 -0
- package/projects/test/cypress/videos/basictest.feature.mp4 +0 -0
- package/projects/test/karma.conf.js +44 -0
- package/projects/test/src/app/app-routing.module.ts +14 -0
- package/projects/test/src/app/app.component.html +14 -0
- package/projects/test/src/app/app.component.scss +0 -0
- package/projects/test/src/app/app.component.spec.ts +35 -0
- package/projects/test/src/app/app.component.ts +51 -0
- package/projects/test/src/app/app.module.ts +103 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.html +77 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.scss +4 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.ts +13 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.html +389 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.scss +4 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.ts +22 -0
- package/projects/test/src/app/demos/badge/readme.md +30 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.html +20 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.ts +7 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.module.ts +89 -0
- package/projects/test/src/app/demos/breadcrumb/readme.md +29 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.html +10 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.scss +5 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.ts +12 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.module.ts +43 -0
- package/projects/test/src/app/demos/datepicker/readme.md +36 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.component.html +30 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.component.ts +132 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.service.ts +60 -0
- package/projects/test/src/app/demos/file-upload/readme.md +26 -0
- package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.component.ts +19 -0
- package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.module.ts +20 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.component.html +9 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.component.ts +14 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.module.ts +26 -0
- package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.component.ts +13 -0
- package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.module.ts +20 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.component.html +16 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.component.ts +16 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.module.ts +21 -0
- package/projects/test/src/app/demos/message-box/demo-message-box.component.html +32 -0
- package/projects/test/src/app/demos/message-box/demo-message-box.component.ts +12 -0
- package/projects/test/src/app/demos/message-box/readme.md +26 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.html +53 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.scss +23 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.ts +53 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.module.ts +38 -0
- package/projects/test/src/app/demos/multiselect/readme.md +34 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.html +21 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.scss +6 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.ts +50 -0
- package/projects/test/src/app/demos/not-found/readme.md +44 -0
- package/projects/test/src/app/demos/notification/demo-notification.component.html +5 -0
- package/projects/test/src/app/demos/notification/demo-notification.component.ts +10 -0
- package/projects/test/src/app/demos/paginator/demo-paginator.component.html +35 -0
- package/projects/test/src/app/demos/paginator/demo-paginator.component.ts +25 -0
- package/projects/test/src/app/demos/paginator/readme.md +89 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.html +53 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.scss +3 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.ts +20 -0
- package/projects/test/src/app/demos/panel/readme.md +26 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.html +130 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.scss +9 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.ts +13 -0
- package/projects/test/src/app/demos/pop-over/readme.md +26 -0
- package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.html +19 -0
- package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.ts +35 -0
- package/projects/test/src/app/demos/side-menu/demo-side-menu.component.html +5 -0
- package/projects/test/src/app/demos/side-menu/demo-side-menu.component.ts +34 -0
- package/projects/test/src/app/demos/side-menu/readme.md +30 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.html +119 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.scss +0 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.ts +35 -0
- package/projects/test/src/app/demos/spinner/demo-spinner.component.html +1 -0
- package/projects/test/src/app/demos/spinner/demo-spinner.component.ts +10 -0
- package/projects/test/src/app/demos/spinner/readme.md +24 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.html +108 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.scss +3 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.ts +55 -0
- package/projects/test/src/app/demos/summary-stepper/readme.md +26 -0
- package/projects/test/src/app/demos/table/demo-table-datasource.ts +140 -0
- package/projects/test/src/app/demos/table/demo-table.component.html +41 -0
- package/projects/test/src/app/demos/table/demo-table.component.scss +17 -0
- package/projects/test/src/app/demos/table/demo-table.component.ts +51 -0
- package/projects/test/src/app/demos/table/demo-table.module.ts +45 -0
- package/projects/test/src/app/demos/table/readme.md +27 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.html +37 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.scss +3 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.ts +14 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.module.ts +29 -0
- package/projects/test/src/app/demos/task-list/readme.md +26 -0
- package/projects/test/src/app/demos/timepicker/demo-timepicker.component.html +9 -0
- package/projects/test/src/app/demos/timepicker/demo-timepicker.component.ts +31 -0
- package/projects/test/src/app/demos/timepicker/readme.md +26 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.html +8 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.scss +3 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.ts +61 -0
- package/projects/test/src/app/demos/toast/readme.md +30 -0
- package/projects/test/src/app/demos/toc/demo-toc.component.html +288 -0
- package/projects/test/src/app/demos/toc/demo-toc.component.ts +26 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.html +73 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.scss +11 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.ts +14 -0
- package/projects/test/src/app/home.component.ts +54 -0
- package/projects/test/src/app/material.module.ts +39 -0
- package/projects/test/src/app/onemrva-translate-http-loader.ts +35 -0
- package/projects/test/src/app/routes.ts +198 -0
- package/projects/test/src/assets/.gitkeep +0 -0
- package/projects/test/src/assets/i18n/de.json +80 -0
- package/projects/test/src/assets/i18n/en.json +80 -0
- package/projects/test/src/assets/i18n/fr.json +80 -0
- package/projects/test/src/assets/i18n/nl.json +79 -0
- package/projects/test/src/environments/environment.e2e.ts +3 -0
- package/projects/test/src/environments/environment.prod.ts +3 -0
- package/projects/test/src/environments/environment.ts +16 -0
- package/projects/test/src/favicon.ico +0 -0
- package/projects/test/src/index.html +15 -0
- package/projects/test/src/main.ts +12 -0
- package/projects/test/src/polyfills.ts +53 -0
- package/projects/test/src/styles.scss +22 -0
- package/projects/test/src/test.ts +26 -0
- package/projects/test/tsconfig.app.json +15 -0
- package/projects/test/tsconfig.spec.json +18 -0
- package/rva.crt +36 -0
- package/tsconfig.json +44 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="88.471" height="80" viewBox="0 0 88.471 80">
|
|
2
|
+
<path id="Logo_red_NL" d="M6166.018,4806.98a3.866,3.866,0,0,1-3.62,2.071,4.485,4.485,0,0,1-2.2-.479v-9.623h1.69v3.354a4.535,4.535,0,0,1,1.3-.2,3.057,3.057,0,0,1,2.93,1.83,2.861,2.861,0,0,1,2.7-1.83c1.8,0,2.989,1.365,2.989,3.438v.478h-4.3a1.763,1.763,0,0,0,1.873,1.677,3.484,3.484,0,0,0,1.733-.465l.409,1.085a4.274,4.274,0,0,1-2.424.732A3.035,3.035,0,0,1,6166.018,4806.98Zm-4.127-3.255v3.818a2.43,2.43,0,0,0,.829.127,2.042,2.042,0,0,0,1.96-2.2,1.843,1.843,0,0,0-1.845-1.959A2.314,2.314,0,0,0,6161.891,4803.725Zm5.579,1.1h2.593a1.357,1.357,0,0,0-1.282-1.465A1.378,1.378,0,0,0,6167.47,4804.825Zm-12.272,4.143-1.592-4.468h-5.3l-1.551,4.468h-1.985l5.073-14.2h2.324l5.086,14.2Zm-5.029-10-1.452,4.1-.014.015h4.5l-1.48-4.086c-.308-.93-.521-1.774-.745-2.591h-.071C6150.7,4797.217,6150.451,4798.1,6150.168,4798.964Zm-10.89,9.989h-.016l-4.889-14.2h2.114l2.326,6.988c.618,1.916,1.168,3.662,1.592,5.311h.042a53.114,53.114,0,0,1,1.7-5.282l2.522-7.017h2.057l-5.34,14.2Zm-7.314,0a16.785,16.785,0,0,1-.973-3.4c-.437-1.959-1.253-2.7-3-2.761h-1.816v6.156h-1.931v-13.991a21.936,21.936,0,0,1,3.691-.311c2.057,0,3.411.382,4.341,1.186a3.483,3.483,0,0,1,1.168,2.69,3.768,3.768,0,0,1-2.8,3.605v.057a3.659,3.659,0,0,1,2.184,2.861,23.2,23.2,0,0,0,1.127,3.9Zm-5.791-12.694v5.155h1.972c2.044,0,3.354-1.069,3.354-2.69,0-1.832-1.4-2.635-3.424-2.635A8.389,8.389,0,0,0,6126.173,4796.258Zm31.955,11.777a.911.911,0,0,1,.889-.929.893.893,0,0,1,.887.929.871.871,0,0,1-.887.9A.889.889,0,0,1,6158.128,4808.036Zm13.684-2.014v.015Zm1.492-3.226c7.215-3.775,13.978-10.85,13.978-24.024,0-26.628-26.843-28.375-30.759-28.489h-.479a7.131,7.131,0,0,0,0,14.26h.113c1.493.026,15.457.7,15.457,14.215s-14.188,14.132-15.485,14.16h-33.6a36.694,36.694,0,0,1-9.624-24.545c0-20.936,18.346-38.07,41.5-39.322h.014v.224c-7.115.634-29.024,4.27-29.04,27.983,0,26.629,26.841,28.376,30.759,28.489h.479a7.116,7.116,0,0,0,0-14.231h-.111c-1.494-.029-15.458-.649-15.458-14.217,0-13.513,14.172-14.133,15.485-14.16h34.6a36.761,36.761,0,0,1,10.244,25.205c0,16.612-11.737,28.688-28.067,34.492Z" transform="translate(-6112.901 -4729.051)" fill="#eb142a"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 67.99 58.26">
|
|
2
|
+
<defs>
|
|
3
|
+
<style>.cls-1 {
|
|
4
|
+
fill: #e63238;
|
|
5
|
+
}</style>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Calque_2" data-name="Calque 2">
|
|
8
|
+
<g id="Layer_1" data-name="Layer 1">
|
|
9
|
+
<path class="cls-1" d="M58.91,10.14a.65.65,0,1,1,.63-.64A.63.63,0,0,1,58.91,10.14Z"/>
|
|
10
|
+
<path class="cls-1"
|
|
11
|
+
d="M68,8.07h-3a1.25,1.25,0,0,0,1.33,1.19,2.47,2.47,0,0,0,1.23-.33l.29.77a3,3,0,0,1-1.72.52,2.15,2.15,0,0,1-2.19-1.48,2.73,2.73,0,0,1-2.56,1.48,3.21,3.21,0,0,1-1.57-.34V3H61V5.42a3.23,3.23,0,0,1,.92-.14A2.17,2.17,0,0,1,64,6.58a2,2,0,0,1,1.92-1.3A2.16,2.16,0,0,1,68,7.72ZM61.62,6.29a1.62,1.62,0,0,0-.67.15V9.15a1.74,1.74,0,0,0,.59.09,1.45,1.45,0,0,0,1.39-1.56A1.31,1.31,0,0,0,61.62,6.29Zm4.22-.11a1,1,0,0,0-.93,1h1.84A1,1,0,0,0,65.84,6.18Z"/>
|
|
12
|
+
<path class="cls-1"
|
|
13
|
+
d="M35.6,1.14A6.08,6.08,0,0,1,37,1c1.45,0,2.44.56,2.44,1.86S38.46,4.8,37,4.8H35.6Zm-1.36,9H35.6V5.79h1.29c1.24,0,1.82.56,2.14,2a11.09,11.09,0,0,0,.69,2.41h1.41a16.33,16.33,0,0,1-.8-2.77,2.59,2.59,0,0,0-1.56-2v0a2.69,2.69,0,0,0,2-2.56A2.48,2.48,0,0,0,39.94.84,4.52,4.52,0,0,0,36.86,0a15.36,15.36,0,0,0-2.62.22Z"/>
|
|
14
|
+
<path class="cls-1"
|
|
15
|
+
d="M44.89,10.15,41.42.07h1.5l1.64,5c.44,1.36.83,2.6,1.13,3.77h0c.3-1.17.73-2.44,1.21-3.76l1.79-5h1.46L46.4,10.15Z"/>
|
|
16
|
+
<path class="cls-1"
|
|
17
|
+
d="M51.6,6l1-2.91c.21-.61.38-1.24.52-1.82h.05c.15.58.31,1.18.53,1.83L54.79,6Zm3.47,1,1.13,3.17h1.46L54.05.07H52.4L48.8,10.15h1.42L51.32,7Z"/>
|
|
18
|
+
<path class="cls-1"
|
|
19
|
+
d="M32.58,1.38C16.15,2.28,3.14,14.44,3.14,29.3A26,26,0,0,0,10,46.72H33.81c.93,0,11-.46,11-10s-9.92-10.07-11-10.09h-.09a5.06,5.06,0,0,1,0-10.11h.34c2.78.08,21.82,1.32,21.82,20.23,0,9.35-4.79,14.36-9.91,17v0C57.59,49.66,65.92,41.09,65.92,29.3a26.12,26.12,0,0,0-7.26-17.89H34.09c-.93,0-11,.46-11,10.05s9.91,10.07,11,10.09h.09a5.06,5.06,0,0,1,0,10.11h0a.21.21,0,0,1-.08,0h-.26C31,41.58,12,40.34,12,21.44,12,4.58,27.54,2,32.6,1.55Z"/>
|
|
20
|
+
<path class="cls-1"
|
|
21
|
+
d="M33.93,53.65c-.08-1.41-.17-3.12-.17-4.37h0c-.37,1.17-.77,2.45-1.28,3.84L30.67,58h-1L28,53.22c-.48-1.45-.88-2.74-1.16-3.94h0c0,1.26-.11,2.94-.2,4.47l-.27,4.35H25.13L25.83,48H27.5l1.73,4.9c.42,1.25.75,2.36,1,3.41h0c.27-1,.63-2.13,1.08-3.41l1.8-4.9h1.67l.63,10.13H34.17Z"/>
|
|
22
|
+
<path class="cls-1"
|
|
23
|
+
d="M4.6,57.2c-2.06,0-3.23-2-3.23-4.1s1.08-4.23,3.26-4.23S7.86,51,7.86,53c0,2.3-1.18,4.21-3.25,4.21Zm0,1.06c2.57,0,4.68-1.86,4.68-5.33,0-3-1.78-5.12-4.56-5.12S0,49.91,0,53.12s1.86,5.14,4.55,5.14Z"/>
|
|
24
|
+
<path class="cls-1"
|
|
25
|
+
d="M10,58.1V48h1.44l3.23,5.13a25.48,25.48,0,0,1,1.8,3.28h0c-.12-1.35-.15-2.58-.15-4.15V48h1.23V58.1H16.32L13.1,53a31.14,31.14,0,0,1-1.88-3.38h0c.07,1.28.09,2.5.09,4.18V58.1Z"/>
|
|
26
|
+
<path class="cls-1" d="M23.88,53.35H20V57h4.38v1.1h-5.7V48h5.48v1.1H20v3.2h3.92Z"/>
|
|
27
|
+
<path class="cls-1" d="M36.63,58.09a.65.65,0,1,1,.63-.65A.63.63,0,0,1,36.63,58.09Z"/>
|
|
28
|
+
<path class="cls-1"
|
|
29
|
+
d="M45.71,56H42.66A1.25,1.25,0,0,0,44,57.2a2.4,2.4,0,0,0,1.22-.33l.29.77a3,3,0,0,1-1.71.52,2.15,2.15,0,0,1-2.19-1.47A2.75,2.75,0,0,1,39,58.16a3.19,3.19,0,0,1-1.56-.34V51h1.2v2.38a3.22,3.22,0,0,1,.92-.15,2.18,2.18,0,0,1,2.08,1.31,2,2,0,0,1,1.92-1.31,2.16,2.16,0,0,1,2.12,2.44Zm-6.37-1.78a1.62,1.62,0,0,0-.67.15v2.71a1.74,1.74,0,0,0,.59.09,1.45,1.45,0,0,0,1.39-1.56A1.31,1.31,0,0,0,39.34,54.23Zm4.22-.11a1,1,0,0,0-.93,1h1.84A1,1,0,0,0,43.56,54.12Z"/>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './src/components';
|
|
2
|
+
export * from './src/directives/drawer-host.directive';
|
|
3
|
+
export * from './src/enums/environment.enum';
|
|
4
|
+
export * from './src/models/onem-language.model';
|
|
5
|
+
export * from './src/models/onemrva-profile.model';
|
|
6
|
+
export * from './src/services/drawer.service';
|
|
7
|
+
export * from './src/layout.module';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { LayoutComponent } from './layout/layout.component';
|
|
2
|
+
import { LayoutContentComponent } from './layout-content/layout-content.component';
|
|
3
|
+
import { LayoutFooterComponent } from './layout-footer/layout-footer.component';
|
|
4
|
+
import { LayoutRouteComponent } from './layout-route/layout-route.component';
|
|
5
|
+
import { LayoutTitleComponent } from './layout-title/layout-title.component';
|
|
6
|
+
import { LayoutSidenavTitleComponent } from './layout-sidenav-title/layout-sidenav-title.component';
|
|
7
|
+
import { LayoutSidenavComponent } from './layout-sidenav/layout-sidenav.component';
|
|
8
|
+
import { LayoutLoginMenuComponent } from './layout-login-menu/layout-login-menu.component';
|
|
9
|
+
import { LayoutSubrouteComponent } from './layout-subroute/layout-subroute.component';
|
|
10
|
+
|
|
11
|
+
export const components: any[] = [
|
|
12
|
+
LayoutComponent,
|
|
13
|
+
LayoutContentComponent,
|
|
14
|
+
LayoutFooterComponent,
|
|
15
|
+
LayoutRouteComponent,
|
|
16
|
+
LayoutSubrouteComponent,
|
|
17
|
+
LayoutTitleComponent,
|
|
18
|
+
LayoutSidenavTitleComponent,
|
|
19
|
+
LayoutSidenavComponent,
|
|
20
|
+
LayoutLoginMenuComponent,
|
|
21
|
+
];
|
|
22
|
+
|
|
23
|
+
export * from './layout/layout.component';
|
|
24
|
+
export * from './layout-content/layout-content.component';
|
|
25
|
+
export * from './layout-footer/layout-footer.component';
|
|
26
|
+
export * from './layout-route/layout-route.component';
|
|
27
|
+
export * from './layout-subroute/layout-subroute.component';
|
|
28
|
+
export * from './layout-title/layout-title.component';
|
|
29
|
+
export * from './layout-sidenav-title/layout-sidenav-title.component';
|
|
30
|
+
export * from './layout-login-menu/layout-login-menu.component';
|
|
31
|
+
export * from './layout-sidenav/layout-sidenav.component';
|
package/projects/onemrva/design-system/layout/src/components/layout/_layout-mixin.component.scss
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@use "@angular/material" as mat;
|
|
3
|
+
|
|
4
|
+
@mixin layout($theme) {
|
|
5
|
+
$accent: mat.get-color-from-palette(map-get($theme, "accent"));
|
|
6
|
+
$grey300: mat.get-color-from-palette(map-get($theme, "grayscale"), 300);
|
|
7
|
+
$grey900: mat.get-color-from-palette(map-get($theme, "grayscale"), 900);
|
|
8
|
+
$spacer: map-get($theme, "spacer");
|
|
9
|
+
$typography: map.get($theme, typography);
|
|
10
|
+
|
|
11
|
+
.mobile-menu-sidebar {
|
|
12
|
+
min-width: 250px;
|
|
13
|
+
.mobile-menu-item {
|
|
14
|
+
display: flex;
|
|
15
|
+
width: 100%;
|
|
16
|
+
background: #ffffff;
|
|
17
|
+
padding: 16px;
|
|
18
|
+
border: none;
|
|
19
|
+
box-shadow: none;
|
|
20
|
+
font-size: 16px;
|
|
21
|
+
align-items: center;
|
|
22
|
+
text-align: left;
|
|
23
|
+
&:active,
|
|
24
|
+
&.active {
|
|
25
|
+
border-right: 4px solid $accent;
|
|
26
|
+
font-weight: bold !important;
|
|
27
|
+
}
|
|
28
|
+
mat-icon {
|
|
29
|
+
margin-left: 4px;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
mat-drawer {
|
|
34
|
+
background: #ffffff !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
mat-toolbar {
|
|
38
|
+
padding: 0 $spacer * 7;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.application-title {
|
|
42
|
+
color: $accent;
|
|
43
|
+
height: $spacer * 6;
|
|
44
|
+
margin: $spacer * 2.75 0;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.logo {
|
|
48
|
+
height: 42px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.language-tabs {
|
|
52
|
+
align-self: center;
|
|
53
|
+
.mat-tab-labels {
|
|
54
|
+
gap: $spacer * 3;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mat-mdc-tab-header {
|
|
58
|
+
margin-bottom: 0;
|
|
59
|
+
|
|
60
|
+
.mat-mdc-tab-labels {
|
|
61
|
+
gap: 24px;
|
|
62
|
+
|
|
63
|
+
.mdc-tab {
|
|
64
|
+
min-width: 24px;
|
|
65
|
+
padding: 0;
|
|
66
|
+
gap: 0;
|
|
67
|
+
font-size: 14px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.nav-container {
|
|
74
|
+
gap: $spacer * 3;
|
|
75
|
+
padding: 0;
|
|
76
|
+
|
|
77
|
+
nav {
|
|
78
|
+
gap: $spacer * 6;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.mat-mdc-menu-trigger {
|
|
82
|
+
align-self: center;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.account-button {
|
|
86
|
+
padding: 0;
|
|
87
|
+
mat-icon {
|
|
88
|
+
font-size: 32px;
|
|
89
|
+
height: 32px;
|
|
90
|
+
width: 32px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.s-menu {
|
|
96
|
+
padding: $spacer $spacer * 3 0;
|
|
97
|
+
.s-menu-languages {
|
|
98
|
+
gap: $spacer * 3;
|
|
99
|
+
}
|
|
100
|
+
.s-menu-item {
|
|
101
|
+
margin-bottom: $spacer;
|
|
102
|
+
@include mat.typography-level($typography, "body-2");
|
|
103
|
+
|
|
104
|
+
&:hover {
|
|
105
|
+
font-weight: 900;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
//
|
|
111
|
+
// TAB LINK
|
|
112
|
+
//
|
|
113
|
+
.mat-mdc-tab-nav-bar {
|
|
114
|
+
&.onemrva-tab-links {
|
|
115
|
+
align-self: center;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.mat-mdc-tab-links {
|
|
119
|
+
gap: 6 * $spacer;
|
|
120
|
+
|
|
121
|
+
.mat-mdc-tab-link {
|
|
122
|
+
//font-weight: 700;
|
|
123
|
+
min-width: 24px;
|
|
124
|
+
padding: 0;
|
|
125
|
+
font-weight: 400;
|
|
126
|
+
align-items: center;
|
|
127
|
+
text-transform: uppercase;
|
|
128
|
+
color: $grey900;
|
|
129
|
+
font-family: Poppins, sans-serif;
|
|
130
|
+
font-size: 14px;
|
|
131
|
+
|
|
132
|
+
&.mdc-tab--active {
|
|
133
|
+
.mdc-tab__text-label {
|
|
134
|
+
text-shadow: 0px 0px 1px $grey900; // THC HACK
|
|
135
|
+
//font-weight: 700; // for some cosmic reason, this breaks the tab animation (but not with languages)
|
|
136
|
+
color: $grey900;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.mdc-tab-indicator__content--underline {
|
|
144
|
+
border: 2px solid $accent !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
onemrva-layout {
|
|
148
|
+
.onemrva-footer {
|
|
149
|
+
color: $grey900;
|
|
150
|
+
border-top: 1px solid $grey300;
|
|
151
|
+
@include mat.typography-level($typography, "label-smallbutton");
|
|
152
|
+
font-family: mat.font-family($typography, "label-smallbutton");
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.language-tabs .mat-mdc-tab-label-container {
|
|
157
|
+
padding: 0 12px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
<mat-drawer-container
|
|
2
|
+
class="example-container"
|
|
3
|
+
[hasBackdrop]="drawerService.hasBackdrop"
|
|
4
|
+
autosize
|
|
5
|
+
>
|
|
6
|
+
<div class="app-content">
|
|
7
|
+
<ng-container
|
|
8
|
+
*ngIf="
|
|
9
|
+
environment && (environment === env.LOCAL || environment === env.TEST)
|
|
10
|
+
"
|
|
11
|
+
>
|
|
12
|
+
<div class="environment" [class]="environment">
|
|
13
|
+
{{ environment }}
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<button
|
|
17
|
+
id="accessibility_fab"
|
|
18
|
+
mat-fab
|
|
19
|
+
color="accent"
|
|
20
|
+
aria-label="Accessibility check"
|
|
21
|
+
matTooltip="Accessibility check"
|
|
22
|
+
onclick="javascript:(function() {var _p='//openfed.github.io/AccessibilityCheck/build/';var _i=function(s,cb) {var sc=document.createElement('script');sc.onload = function() {sc.onload = null;sc.onreadystatechange = null;cb.call(this);};sc.onreadystatechange = function(){if(/^(complete|loaded)$/.test(this.readyState) === true){sc.onreadystatechange = null;sc.onload();}};sc.src=s;if (document.head) {document.head.appendChild(sc);} else {document.getElementsByTagName('head')[0].appendChild(sc);}}; var options={path:_p};_i(_p+'HTMLCS.js',function(){HTMLCSAuditor.run('WCAG2AA',null,options);});})();"
|
|
23
|
+
>
|
|
24
|
+
<mat-icon>accessibility</mat-icon>
|
|
25
|
+
</button>
|
|
26
|
+
</ng-container>
|
|
27
|
+
<mat-toolbar class="mat-elevation-z4">
|
|
28
|
+
<div
|
|
29
|
+
[class.container]="!fluid"
|
|
30
|
+
[class.container-fluid]="fluid"
|
|
31
|
+
class="nav-container"
|
|
32
|
+
style="display: flex; align-items: center"
|
|
33
|
+
>
|
|
34
|
+
{{ logoRedictionUrl }}
|
|
35
|
+
<img
|
|
36
|
+
class="logo"
|
|
37
|
+
[src]="logo"
|
|
38
|
+
[attr.data-cy]="'onemrva_logo_' + translateService.currentLang"
|
|
39
|
+
alt="Logo ONEM/RVA"
|
|
40
|
+
[routerLink]="
|
|
41
|
+
logoRedictionUrl !== null ? logoRedictionUrl : undefined
|
|
42
|
+
"
|
|
43
|
+
[ngStyle]="{
|
|
44
|
+
cursor: logoRedictionUrl !== null ? 'pointer' : 'default'
|
|
45
|
+
}"
|
|
46
|
+
/>
|
|
47
|
+
<div class="application-title" [ngClass]="{ 'small-screen': isSmall }">
|
|
48
|
+
<ng-container *ngIf="title?.template as titleTpl">
|
|
49
|
+
<ng-container *ngTemplateOutlet="titleTpl"></ng-container>
|
|
50
|
+
</ng-container>
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
<div style="flex: 1"></div>
|
|
54
|
+
<nav
|
|
55
|
+
mat-tab-nav-bar
|
|
56
|
+
style="display: flex; align-items: center"
|
|
57
|
+
[tabPanel]="tabPanel"
|
|
58
|
+
*ngIf="!isSmall"
|
|
59
|
+
>
|
|
60
|
+
<ng-container *ngFor="let e of routes?.toArray(); let i = index">
|
|
61
|
+
<a
|
|
62
|
+
mat-tab-link
|
|
63
|
+
[routerLink]="e.routerLink"
|
|
64
|
+
[routerLinkActiveOptions]="{ exact: !e.hasSubroutes() }"
|
|
65
|
+
#rla="routerLinkActive"
|
|
66
|
+
routerLinkActive="mdc-tab--active"
|
|
67
|
+
[active]="rla.isActive || e.isRouteActive()"
|
|
68
|
+
>
|
|
69
|
+
<ng-container *ngIf="e.template as routeTemplate">
|
|
70
|
+
<ng-container *ngTemplateOutlet="routeTemplate"> </ng-container>
|
|
71
|
+
</ng-container>
|
|
72
|
+
</a>
|
|
73
|
+
</ng-container>
|
|
74
|
+
</nav>
|
|
75
|
+
<mat-tab-nav-panel #tabPanel></mat-tab-nav-panel>
|
|
76
|
+
|
|
77
|
+
<mat-divider
|
|
78
|
+
vertical
|
|
79
|
+
style="height: 1em; align-self: center"
|
|
80
|
+
*ngIf="!isSmall && routes?.toArray()?.length"
|
|
81
|
+
></mat-divider>
|
|
82
|
+
|
|
83
|
+
<mat-tab-group
|
|
84
|
+
class="language-tabs"
|
|
85
|
+
[selectedIndex]="selectedIndex"
|
|
86
|
+
(selectedIndexChange)="changeLanguage($event)"
|
|
87
|
+
*ngIf="!isSmall"
|
|
88
|
+
>
|
|
89
|
+
<mat-tab *ngFor="let lang of languages">
|
|
90
|
+
<div *matTabLabel [attr.data-cy]="'language_' + lang.code">
|
|
91
|
+
{{ lang.label }}
|
|
92
|
+
</div>
|
|
93
|
+
</mat-tab>
|
|
94
|
+
</mat-tab-group>
|
|
95
|
+
|
|
96
|
+
<ng-container *ngIf="profile !== null">
|
|
97
|
+
<mat-divider
|
|
98
|
+
vertical
|
|
99
|
+
style="height: 1em; align-self: center"
|
|
100
|
+
*ngIf="!isSmall"
|
|
101
|
+
></mat-divider>
|
|
102
|
+
<button
|
|
103
|
+
disableRipple
|
|
104
|
+
data-cy="accountMenu"
|
|
105
|
+
class="account-button"
|
|
106
|
+
[matMenuTriggerFor]="menu"
|
|
107
|
+
mat-icon-button
|
|
108
|
+
attr.aria-label="{{ 'layout.profile' | translate }}"
|
|
109
|
+
>
|
|
110
|
+
<mat-icon *ngIf="!profile.isLoggedIn" class="large"
|
|
111
|
+
>account_circle</mat-icon
|
|
112
|
+
>
|
|
113
|
+
|
|
114
|
+
<onemrva-mat-avatar
|
|
115
|
+
*ngIf="profile.isLoggedIn"
|
|
116
|
+
initials="{{ profile.initials() }}"
|
|
117
|
+
color="accent"
|
|
118
|
+
size="extrasmall"
|
|
119
|
+
></onemrva-mat-avatar>
|
|
120
|
+
</button>
|
|
121
|
+
<mat-menu #menu="matMenu">
|
|
122
|
+
<ng-container *ngIf="profile.isLoggedIn; else notConnected">
|
|
123
|
+
<p class="accountName">
|
|
124
|
+
{{ profile.firstName }} {{ profile.lastName }}
|
|
125
|
+
</p>
|
|
126
|
+
<mat-divider style="align-self: stretch"></mat-divider>
|
|
127
|
+
|
|
128
|
+
<ng-container *ngIf="loginMenu?.template as menuLoginTpl">
|
|
129
|
+
<ng-container *ngTemplateOutlet="menuLoginTpl"></ng-container>
|
|
130
|
+
</ng-container>
|
|
131
|
+
|
|
132
|
+
<button
|
|
133
|
+
type="button"
|
|
134
|
+
class="mat-mdc-menu-item"
|
|
135
|
+
mat-menu-itemMrzapoie
|
|
136
|
+
data-cy="logoutButton"
|
|
137
|
+
(click)="doLogout()"
|
|
138
|
+
attr.aria-label="{{ 'layout.logout' | translate }}"
|
|
139
|
+
>
|
|
140
|
+
<mat-icon>logout</mat-icon>{{ "layout.logout" | translate }}
|
|
141
|
+
</button>
|
|
142
|
+
</ng-container>
|
|
143
|
+
<ng-template #notConnected>
|
|
144
|
+
<button
|
|
145
|
+
type="button"
|
|
146
|
+
mat-menu-item
|
|
147
|
+
data-cy="loginButton"
|
|
148
|
+
(click)="doLogin()"
|
|
149
|
+
attr.aria-label="{{ 'layout.login' | translate }}"
|
|
150
|
+
>
|
|
151
|
+
<mat-icon>login</mat-icon>{{ "layout.login" | translate }}
|
|
152
|
+
</button>
|
|
153
|
+
</ng-template>
|
|
154
|
+
</mat-menu>
|
|
155
|
+
</ng-container>
|
|
156
|
+
<ng-container
|
|
157
|
+
*ngIf="
|
|
158
|
+
isSmall &&
|
|
159
|
+
(routes?.toArray()?.length || (languages && languages.length > 1))
|
|
160
|
+
"
|
|
161
|
+
>
|
|
162
|
+
<button
|
|
163
|
+
type="button"
|
|
164
|
+
mat-icon-button
|
|
165
|
+
class="menu-button"
|
|
166
|
+
data-cy="smallDeviceMenu"
|
|
167
|
+
(click)="toggleSideNav()"
|
|
168
|
+
attr.aria-label="{{ 'layout.menu' | translate }}"
|
|
169
|
+
>
|
|
170
|
+
<mat-icon>menu</mat-icon>
|
|
171
|
+
</button>
|
|
172
|
+
</ng-container>
|
|
173
|
+
</div>
|
|
174
|
+
</mat-toolbar>
|
|
175
|
+
|
|
176
|
+
<ng-container>
|
|
177
|
+
<div [id]="id" [attr.role]="role" class="onemrva-layout-content" *ngIf="content?.template as tpl">
|
|
178
|
+
<ng-container *ngTemplateOutlet="tpl"></ng-container>
|
|
179
|
+
</div>
|
|
180
|
+
|
|
181
|
+
<footer class="onemrva-footer" *ngIf="footer?.template as footer">
|
|
182
|
+
<ng-container *ngTemplateOutlet="footer"></ng-container>
|
|
183
|
+
</footer>
|
|
184
|
+
</ng-container>
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
<mat-drawer
|
|
188
|
+
class="onemrva-drawer mobile-menu-sidebar"
|
|
189
|
+
mode="over"
|
|
190
|
+
position="end"
|
|
191
|
+
>
|
|
192
|
+
<ng-template drawerhost></ng-template>
|
|
193
|
+
</mat-drawer>
|
|
194
|
+
</mat-drawer-container>
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
|
|
3
|
+
$navbar-height: 90px;
|
|
4
|
+
|
|
5
|
+
.mat-mdc-tab-nav-bar {
|
|
6
|
+
.mat-mdc-tab-header {
|
|
7
|
+
height: 42px !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.logo {
|
|
12
|
+
align-self: center;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.application-title {
|
|
17
|
+
font-size: 1rem;
|
|
18
|
+
font-weight: 700;
|
|
19
|
+
font-size: 20px;
|
|
20
|
+
height: 42px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:host .mat-toolbar {
|
|
24
|
+
background: white;
|
|
25
|
+
position: fixed;
|
|
26
|
+
top: 0;
|
|
27
|
+
height: $navbar-height;
|
|
28
|
+
|
|
29
|
+
z-index: 400;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.accountName {
|
|
33
|
+
margin: 16px;
|
|
34
|
+
line-height: 16px;
|
|
35
|
+
font-weight: bold;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
:host {
|
|
39
|
+
position: relative;
|
|
40
|
+
|
|
41
|
+
router-outlet {
|
|
42
|
+
display: block;
|
|
43
|
+
margin-bottom: 90px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.environment {
|
|
47
|
+
position: fixed;
|
|
48
|
+
top: 0;
|
|
49
|
+
left: 0;
|
|
50
|
+
z-index: 24000;
|
|
51
|
+
width: 60px;
|
|
52
|
+
height: 50px;
|
|
53
|
+
padding: 15px 20px;
|
|
54
|
+
|
|
55
|
+
border-radius: 0 0 100% 0;
|
|
56
|
+
color: white;
|
|
57
|
+
display: none;
|
|
58
|
+
|
|
59
|
+
&.LOCAL {
|
|
60
|
+
background-color: hsla(0, 100%, 50%, 0.5);
|
|
61
|
+
display: block;
|
|
62
|
+
}
|
|
63
|
+
&.TEST {
|
|
64
|
+
background-color: hsla(220, 60%, 50%, 0.5);
|
|
65
|
+
display: block;
|
|
66
|
+
}
|
|
67
|
+
&.VAL {
|
|
68
|
+
background-color: hsla(140, 100%, 30%, 0.5);
|
|
69
|
+
display: block;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
a {
|
|
74
|
+
&:active {
|
|
75
|
+
outline: none;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.s-menu {
|
|
81
|
+
.s-menu-languages {
|
|
82
|
+
display: flex;
|
|
83
|
+
}
|
|
84
|
+
.s-menu-item {
|
|
85
|
+
&.active {
|
|
86
|
+
font-weight: bold !important;
|
|
87
|
+
}
|
|
88
|
+
&:hover {
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
font-weight: 700;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
onemrva-layout {
|
|
96
|
+
.onemrva-layout-content {
|
|
97
|
+
padding-top: $navbar-height;
|
|
98
|
+
min-height: calc(100vh - #{$navbar-height});
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.onemrva-footer {
|
|
102
|
+
text-align: center;
|
|
103
|
+
padding: 9.5px;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
onemrva-mat-avatar.clickable {
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.mat-mdc-menu-content {
|
|
112
|
+
button {
|
|
113
|
+
&.active > * {
|
|
114
|
+
font-weight: bold !important;
|
|
115
|
+
}
|
|
116
|
+
mat-icon {
|
|
117
|
+
font-size: 18px !important;
|
|
118
|
+
height: 18px;
|
|
119
|
+
width: 18px;
|
|
120
|
+
}
|
|
121
|
+
span {
|
|
122
|
+
font-size: 14px !important;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
#accessibility_fab {
|
|
127
|
+
position: fixed;
|
|
128
|
+
bottom: 16px;
|
|
129
|
+
right: 16px;
|
|
130
|
+
}
|
|
131
|
+
nav a.disabled {
|
|
132
|
+
pointer-events: none;
|
|
133
|
+
}
|
|
134
|
+
.menu-close-button {
|
|
135
|
+
float:right;
|
|
136
|
+
}
|
|
137
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { LayoutComponent } from './layout.component';
|
|
4
|
+
|
|
5
|
+
describe('LayoutComponent', () => {
|
|
6
|
+
let component: LayoutComponent;
|
|
7
|
+
let fixture: ComponentFixture<LayoutComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [LayoutComponent],
|
|
12
|
+
}).compileComponents();
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
beforeEach(() => {
|
|
16
|
+
fixture = TestBed.createComponent(LayoutComponent);
|
|
17
|
+
component = fixture.componentInstance;
|
|
18
|
+
fixture.detectChanges();
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it('should create', () => {
|
|
22
|
+
expect(component).toBeTruthy();
|
|
23
|
+
});
|
|
24
|
+
});
|