@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
package/.dockerignore
ADDED
package/.editorconfig
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Editor configuration, see https://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 2
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.ts]
|
|
12
|
+
quote_type = single
|
|
13
|
+
|
|
14
|
+
[*.md]
|
|
15
|
+
max_line_length = off
|
|
16
|
+
trim_trailing_whitespace = false
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
|
3
|
+
|
|
4
|
+
name: Node.js Package
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
release:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v3
|
|
15
|
+
- uses: actions/setup-node@v3
|
|
16
|
+
with:
|
|
17
|
+
node-version: 16
|
|
18
|
+
- run: date
|
|
19
|
+
- run: npm i
|
|
20
|
+
- run: npm run build:prod
|
|
21
|
+
|
|
22
|
+
publish-npm:
|
|
23
|
+
needs: build
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
steps:
|
|
26
|
+
- uses: actions/checkout@v3
|
|
27
|
+
- uses: actions/setup-node@v3
|
|
28
|
+
with:
|
|
29
|
+
node-version: 16
|
|
30
|
+
registry-url: https://registry.npmjs.org/
|
|
31
|
+
- run: npm i
|
|
32
|
+
- run: npm publish
|
|
33
|
+
env:
|
|
34
|
+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @onemrvapublic/design-system
|
|
2
|
+
|
|
3
|
+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.0.
|
|
4
|
+
|
|
5
|
+
## Development server
|
|
6
|
+
|
|
7
|
+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
|
|
8
|
+
|
|
9
|
+
## Code scaffolding
|
|
10
|
+
|
|
11
|
+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
|
12
|
+
|
|
13
|
+
## Build
|
|
14
|
+
|
|
15
|
+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
16
|
+
|
|
17
|
+
## Running unit tests
|
|
18
|
+
|
|
19
|
+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
20
|
+
|
|
21
|
+
## Running end-to-end tests
|
|
22
|
+
|
|
23
|
+
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
|
|
24
|
+
|
|
25
|
+
## Further help
|
|
26
|
+
|
|
27
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/angular.json
ADDED
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
+
"version": 1,
|
|
4
|
+
"newProjectRoot": "projects",
|
|
5
|
+
"projects": {
|
|
6
|
+
"@onemrvapublic/design-system": {
|
|
7
|
+
"projectType": "library",
|
|
8
|
+
"root": "projects/onemrva/design-system",
|
|
9
|
+
"sourceRoot": "projects/onemrva/design-system/src",
|
|
10
|
+
"prefix": "lib",
|
|
11
|
+
"architect": {
|
|
12
|
+
"build": {
|
|
13
|
+
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
14
|
+
"options": {
|
|
15
|
+
"project": "projects/onemrva/design-system/ng-package.json"
|
|
16
|
+
},
|
|
17
|
+
"configurations": {
|
|
18
|
+
"production": {
|
|
19
|
+
"tsConfig": "projects/onemrva/design-system/tsconfig.lib.prod.json"
|
|
20
|
+
},
|
|
21
|
+
"development": {
|
|
22
|
+
"tsConfig": "projects/onemrva/design-system/tsconfig.lib.json"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"defaultConfiguration": "production"
|
|
26
|
+
},
|
|
27
|
+
"test": {
|
|
28
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
29
|
+
"options": {
|
|
30
|
+
"main": "projects/onemrva/design-system/src/test.ts",
|
|
31
|
+
"tsConfig": "projects/onemrva/design-system/tsconfig.spec.json",
|
|
32
|
+
"karmaConfig": "projects/onemrva/design-system/karma.conf.js"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"test": {
|
|
38
|
+
"projectType": "application",
|
|
39
|
+
"schematics": {
|
|
40
|
+
"@schematics/angular:component": {
|
|
41
|
+
"style": "scss"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"root": "projects/test",
|
|
45
|
+
"sourceRoot": "projects/test/src",
|
|
46
|
+
"prefix": "app",
|
|
47
|
+
"architect": {
|
|
48
|
+
"build": {
|
|
49
|
+
"builder": "@angular-builders/custom-webpack:browser",
|
|
50
|
+
"options": {
|
|
51
|
+
"outputPath": "dist/test",
|
|
52
|
+
"index": "projects/test/src/index.html",
|
|
53
|
+
"main": "projects/test/src/main.ts",
|
|
54
|
+
"polyfills": "projects/test/src/polyfills.ts",
|
|
55
|
+
"tsConfig": "projects/test/tsconfig.app.json",
|
|
56
|
+
"inlineStyleLanguage": "scss",
|
|
57
|
+
"assets": [
|
|
58
|
+
"projects/test/src/favicon.ico",
|
|
59
|
+
"projects/test/src/assets",
|
|
60
|
+
{
|
|
61
|
+
"glob": "**/*",
|
|
62
|
+
"input": "node_modules/@onemrvapublic/theme/assets",
|
|
63
|
+
"output": "assets/"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"glob": "**/*",
|
|
67
|
+
"input": "projects/onemrva/design-system/page-not-found/assets",
|
|
68
|
+
"output": "/assets/"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"styles": ["projects/test/src/styles.scss"],
|
|
72
|
+
"scripts": []
|
|
73
|
+
},
|
|
74
|
+
"configurations": {
|
|
75
|
+
"production": {
|
|
76
|
+
"budgets": [
|
|
77
|
+
{
|
|
78
|
+
"type": "initial",
|
|
79
|
+
"maximumWarning": "500kb",
|
|
80
|
+
"maximumError": "2mb"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "anyComponentStyle",
|
|
84
|
+
"maximumWarning": "2kb",
|
|
85
|
+
"maximumError": "32kb"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"fileReplacements": [
|
|
89
|
+
{
|
|
90
|
+
"replace": "projects/test/src/environments/environment.ts",
|
|
91
|
+
"with": "projects/test/src/environments/environment.prod.ts"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"outputHashing": "all"
|
|
95
|
+
},
|
|
96
|
+
"development": {
|
|
97
|
+
"buildOptimizer": false,
|
|
98
|
+
"optimization": false,
|
|
99
|
+
"vendorChunk": true,
|
|
100
|
+
"extractLicenses": false,
|
|
101
|
+
"sourceMap": true,
|
|
102
|
+
"namedChunks": true
|
|
103
|
+
},
|
|
104
|
+
"e2e": {
|
|
105
|
+
"extractLicenses": false,
|
|
106
|
+
"sourceMap": true,
|
|
107
|
+
"namedChunks": true,
|
|
108
|
+
"vendorChunk": true,
|
|
109
|
+
"budgets": [],
|
|
110
|
+
"customWebpackConfig": {
|
|
111
|
+
"path": "projects/test/cypress/coverage.webpack.ts"
|
|
112
|
+
},
|
|
113
|
+
"fileReplacements": [
|
|
114
|
+
{
|
|
115
|
+
"replace": "projects/test/src/environments/environment.ts",
|
|
116
|
+
"with": "projects/test/src/environments/environment.e2e.ts"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"defaultConfiguration": "production"
|
|
122
|
+
},
|
|
123
|
+
"serve": {
|
|
124
|
+
"builder": "@angular-devkit/build-angular:dev-server",
|
|
125
|
+
"configurations": {
|
|
126
|
+
"production": {
|
|
127
|
+
"browserTarget": "test:build:production"
|
|
128
|
+
},
|
|
129
|
+
"development": {
|
|
130
|
+
"browserTarget": "test:build:development"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"defaultConfiguration": "development"
|
|
134
|
+
},
|
|
135
|
+
"extract-i18n": {
|
|
136
|
+
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
137
|
+
"options": {
|
|
138
|
+
"browserTarget": "test:build"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"test": {
|
|
142
|
+
"builder": "@angular-devkit/build-angular:karma",
|
|
143
|
+
"options": {
|
|
144
|
+
"main": "projects/test/src/test.ts",
|
|
145
|
+
"polyfills": "projects/test/src/polyfills.ts",
|
|
146
|
+
"tsConfig": "projects/test/tsconfig.spec.json",
|
|
147
|
+
"karmaConfig": "projects/test/karma.conf.js",
|
|
148
|
+
"inlineStyleLanguage": "scss",
|
|
149
|
+
"assets": [
|
|
150
|
+
"projects/test/src/favicon.ico",
|
|
151
|
+
"projects/test/src/assets"
|
|
152
|
+
],
|
|
153
|
+
"styles": ["projects/test/src/styles.scss"],
|
|
154
|
+
"scripts": []
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"e2e": {
|
|
158
|
+
"builder": "@cypress/schematic:cypress",
|
|
159
|
+
"options": {
|
|
160
|
+
"devServerTarget": "test:serve-coverage",
|
|
161
|
+
"watch": true,
|
|
162
|
+
"headless": false
|
|
163
|
+
},
|
|
164
|
+
"configurations": {
|
|
165
|
+
"production": {
|
|
166
|
+
"devServerTarget": "test:serve-coverage:production"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"serve-coverage": {
|
|
171
|
+
"builder": "@angular-builders/custom-webpack:dev-server",
|
|
172
|
+
"options": {
|
|
173
|
+
"browserTarget": "test:build:e2e",
|
|
174
|
+
"host": "0.0.0.0"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"cypress-run": {
|
|
178
|
+
"builder": "@cypress/schematic:cypress",
|
|
179
|
+
"options": {
|
|
180
|
+
"devServerTarget": "test:serve"
|
|
181
|
+
},
|
|
182
|
+
"configurations": {
|
|
183
|
+
"production": {
|
|
184
|
+
"devServerTarget": "test:serve:production"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"cypress-open": {
|
|
189
|
+
"builder": "@cypress/schematic:cypress",
|
|
190
|
+
"options": {
|
|
191
|
+
"watch": true,
|
|
192
|
+
"headless": false
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"e2e-ci": {
|
|
196
|
+
"builder": "@cypress/schematic:cypress",
|
|
197
|
+
"options": {
|
|
198
|
+
"devServerTarget": "test:serve-coverage",
|
|
199
|
+
"headless": true,
|
|
200
|
+
"watch": false
|
|
201
|
+
},
|
|
202
|
+
"configurations": {
|
|
203
|
+
"production": {
|
|
204
|
+
"devServerTarget": "test:serve-coverage:production"
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"cli": {
|
|
212
|
+
"analytics": "d50720cb-daca-48a0-b6d0-10062a4d6d8b"
|
|
213
|
+
}
|
|
214
|
+
}
|
package/build.sh
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
set -ex
|
|
4
|
+
|
|
5
|
+
## Change to correct directory
|
|
6
|
+
pushd "$(dirname -- "${BASH_SOURCE[0]}")" >/dev/null
|
|
7
|
+
trap "popd >/dev/null" TERM EXIT
|
|
8
|
+
|
|
9
|
+
source <(curl -s http://bitbucket.onemrva.priv/projects/ARCHI/repos/bamboo-config/raw/tools/toolsrc?at=refs%2Fheads%2Fmaster)
|
|
10
|
+
source <(curl -s http://bitbucket.onemrva.priv/projects/ARCHI/repos/bamboo-config/raw/tools/gitrc?at=refs%2Fheads%2Fmaster)
|
|
11
|
+
source <(curl -s http://bitbucket.onemrva.priv/projects/ARCHI/repos/bamboo-config/raw/tools/dockerrc?at=refs%2Fheads%2Fmaster)
|
|
12
|
+
|
|
13
|
+
ProgName=$(basename "$0")
|
|
14
|
+
|
|
15
|
+
#<editor-fold desc="Profiles">
|
|
16
|
+
|
|
17
|
+
profile_local() {
|
|
18
|
+
echo "Profile LOCAL activated"
|
|
19
|
+
NPM_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-staging-group"
|
|
20
|
+
NPM_PUBLISH_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-staging"
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
profile_ci() {
|
|
24
|
+
echo "Profile CI activated"
|
|
25
|
+
tools__init_path && docker_init
|
|
26
|
+
NPM_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-staging-group"
|
|
27
|
+
NPM_PUBLISH_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-staging"
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
profile_prod() {
|
|
31
|
+
echo "Profile PROD activated"
|
|
32
|
+
tools__init_path && docker_init
|
|
33
|
+
NPM_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-group"
|
|
34
|
+
NPM_PUBLISH_REGISTRY="https://nexusprod.onemrva.priv/repository/npm-private"
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#</editor-fold>
|
|
38
|
+
|
|
39
|
+
#<editor-fold desc="Commands">
|
|
40
|
+
|
|
41
|
+
sub_help() {
|
|
42
|
+
echo "Usage: $ProgName -[p|--profile <profile>] <subcommand> [options]"
|
|
43
|
+
echo "Subcommands:"
|
|
44
|
+
echo " build Compiles everything and publish the packages"
|
|
45
|
+
echo ""
|
|
46
|
+
echo "For help with each subcommand run:"
|
|
47
|
+
echo "$ProgName <subcommand> -h|--help"
|
|
48
|
+
echo ""
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
sub_build() {
|
|
52
|
+
user=${1:-${bamboo_nexus_user}}
|
|
53
|
+
password=${2:-${bamboo_nexus_secret}}
|
|
54
|
+
echo "Building the library"
|
|
55
|
+
local build_number
|
|
56
|
+
build_number=$(git_commit_number)
|
|
57
|
+
docker build --build-arg nexus_user="${user}" \
|
|
58
|
+
--build-arg nexus_secret="${password}" \
|
|
59
|
+
--build-arg build_number="${build_number}" \
|
|
60
|
+
--build-arg npm_registry=${NPM_REGISTRY} \
|
|
61
|
+
--build-arg npm_publish_registry=${NPM_PUBLISH_REGISTRY} .
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
#</editor-fold>
|
|
65
|
+
|
|
66
|
+
#<editor-fold desc="Main entry point">
|
|
67
|
+
|
|
68
|
+
POSITIONAL_ARGS=()
|
|
69
|
+
|
|
70
|
+
PROFILE="local"
|
|
71
|
+
while [[ $# -gt 0 ]]; do
|
|
72
|
+
case $1 in
|
|
73
|
+
-p | --profile)
|
|
74
|
+
PROFILE="$2"
|
|
75
|
+
shift 2 # past argument & value
|
|
76
|
+
;;
|
|
77
|
+
*)
|
|
78
|
+
POSITIONAL_ARGS+=("$1") # save positional arg
|
|
79
|
+
shift # past argument
|
|
80
|
+
;;
|
|
81
|
+
esac
|
|
82
|
+
done
|
|
83
|
+
|
|
84
|
+
profile_"${PROFILE}"
|
|
85
|
+
if [ $? = 127 ]; then
|
|
86
|
+
echo "Error: '$PROFILE' is not a known profile." >&2
|
|
87
|
+
exit 1
|
|
88
|
+
fi
|
|
89
|
+
|
|
90
|
+
set -- "${POSITIONAL_ARGS[@]}"
|
|
91
|
+
|
|
92
|
+
subcommand=$1
|
|
93
|
+
case $subcommand in
|
|
94
|
+
"" | "-h" | "--help")
|
|
95
|
+
sub_help
|
|
96
|
+
;;
|
|
97
|
+
*)
|
|
98
|
+
shift
|
|
99
|
+
sub_"${subcommand}" "$@"
|
|
100
|
+
if [ $? = 127 ]; then
|
|
101
|
+
echo "Error: '$subcommand' is not a known subcommand." >&2
|
|
102
|
+
echo " Run '$ProgName --help' for a list of known subcommands." >&2
|
|
103
|
+
exit 1
|
|
104
|
+
fi
|
|
105
|
+
;;
|
|
106
|
+
esac
|
|
107
|
+
|
|
108
|
+
#</editor-fold>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import {defineConfig} from 'cypress'
|
|
2
|
+
const { pa11y, prepareAudit } = require("@cypress-audit/pa11y");
|
|
3
|
+
|
|
4
|
+
export default defineConfig({
|
|
5
|
+
videosFolder: 'projects/test/cypress/videos',
|
|
6
|
+
screenshotsFolder: 'projects/test/cypress/screenshots',
|
|
7
|
+
fixturesFolder: 'projects/test/cypress/fixtures',
|
|
8
|
+
chromeWebSecurity: false,
|
|
9
|
+
viewportWidth: 1920,
|
|
10
|
+
viewportHeight: 1080,
|
|
11
|
+
env: {
|
|
12
|
+
},
|
|
13
|
+
e2e: {
|
|
14
|
+
// We've imported your old cypress plugins here.
|
|
15
|
+
// You may want to clean this up later by importing these.
|
|
16
|
+
setupNodeEvents(on, config) {
|
|
17
|
+
on("before:browser:launch", (browser = {
|
|
18
|
+
name: '',
|
|
19
|
+
family: 'chromium',
|
|
20
|
+
channel: '',
|
|
21
|
+
displayName: '',
|
|
22
|
+
version: '',
|
|
23
|
+
majorVersion: '',
|
|
24
|
+
path: '',
|
|
25
|
+
isHeaded: false,
|
|
26
|
+
isHeadless: false
|
|
27
|
+
}, launchOptions) => {
|
|
28
|
+
prepareAudit(launchOptions);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
on("task", {
|
|
32
|
+
pa11y: pa11y(console.log.bind(console)),
|
|
33
|
+
});
|
|
34
|
+
return require('projects/test/cypress/plugins/index.ts')(on, config)
|
|
35
|
+
},
|
|
36
|
+
specPattern: 'projects/test/cypress/integration/**/*.feature',
|
|
37
|
+
supportFile: 'projects/test/cypress/support/e2e.ts',
|
|
38
|
+
baseUrl: 'http://localhost:4200'
|
|
39
|
+
},
|
|
40
|
+
})
|
package/index.html
ADDED
package/npm-publish.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
echo "Built packages:"
|
|
2
|
+
ls dist
|
|
3
|
+
|
|
4
|
+
npx ts-node --project tools/tsconfig.json tools/update-dist-versions.ts --build-number="$BUILD_NUMBER"
|
|
5
|
+
|
|
6
|
+
npm-cli-adduser -r "$NPM_REGISTRY"
|
|
7
|
+
shopt -s globstar nullglob
|
|
8
|
+
for package in dist/**/package.json; do
|
|
9
|
+
pushd "$(dirname "$package")" || exit
|
|
10
|
+
npm publish
|
|
11
|
+
done
|
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@onemrvapublic/design-system",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"scripts": {
|
|
8
|
+
"ng": "ng",
|
|
9
|
+
"start": "ng serve test",
|
|
10
|
+
"build": "ng build @onemrvapublic/design-system",
|
|
11
|
+
"build:prod": "ng build -c production @onemrvapublic/design-system",
|
|
12
|
+
"watch": "ng build --watch --configuration development",
|
|
13
|
+
"test": "ng test",
|
|
14
|
+
"publish": "bash npm-publish.sh",
|
|
15
|
+
"e2e": "ng e2e",
|
|
16
|
+
"e2e:ci": "ng run test:e2e-ci",
|
|
17
|
+
"e2e:coverage": "npx nyc report --reporter=lcov --reporter=text-summary",
|
|
18
|
+
"cypress:open": "cypress open",
|
|
19
|
+
"cypress:run": "cypress run",
|
|
20
|
+
"unit:coverage": "echo 'unit test'",
|
|
21
|
+
"cucumber:report": "node cucumber-html-report.js"
|
|
22
|
+
},
|
|
23
|
+
"private": false,
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@angular/animations": "^16.1.1",
|
|
26
|
+
"@angular/common": "^16.1.1",
|
|
27
|
+
"@angular/compiler": "^16.1.1",
|
|
28
|
+
"@angular/core": "^16.1.1",
|
|
29
|
+
"@angular/forms": "^16.1.1",
|
|
30
|
+
"@angular/material": "^16.0.0",
|
|
31
|
+
"@angular/material-moment-adapter": "^16.2.9",
|
|
32
|
+
"@angular/platform-browser": "^16.1.1",
|
|
33
|
+
"@angular/platform-browser-dynamic": "^16.1.1",
|
|
34
|
+
"@angular/router": "^16.1.1",
|
|
35
|
+
"@ngrx/component-store": "^16.0.0",
|
|
36
|
+
"@ngx-translate/core": "^15.0.0",
|
|
37
|
+
"flag-icons": "^6.7.0",
|
|
38
|
+
"google-libphonenumber": "^3.2.32",
|
|
39
|
+
"mime-wrapper": "^2.0.0",
|
|
40
|
+
"ngx-mask": "^15.1.5",
|
|
41
|
+
"rxjs": "~7.5.0",
|
|
42
|
+
"tslib": "^2.3.0",
|
|
43
|
+
"zone.js": "~0.13.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@angular-builders/custom-webpack": "^16.0.0",
|
|
47
|
+
"@angular-devkit/build-angular": "^16.1.0",
|
|
48
|
+
"@angular/cdk": "^16.0.0",
|
|
49
|
+
"@angular/cli": "~16.1.0",
|
|
50
|
+
"@angular/compiler-cli": "^16.1.1",
|
|
51
|
+
"@angular/elements": "^16.2.4",
|
|
52
|
+
"@cypress-audit/pa11y": "^1.4.2",
|
|
53
|
+
"@cypress/code-coverage": "^3.9.12",
|
|
54
|
+
"@cypress/schematic": "^1.6.0",
|
|
55
|
+
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
56
|
+
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
|
|
57
|
+
"@types/glob": "^8.0.0",
|
|
58
|
+
"@types/google-libphonenumber": "^7.4.23",
|
|
59
|
+
"@types/jasmine": "~4.0.0",
|
|
60
|
+
"@types/semver": "^7.3.13",
|
|
61
|
+
"@types/yargs": "^17.0.17",
|
|
62
|
+
"chalk": "^4.1.2",
|
|
63
|
+
"cypress": "^13.0.0",
|
|
64
|
+
"cypress-cucumber-preprocessor": "^4.3.1",
|
|
65
|
+
"cypress-keycloak-commands": "^1.2.0",
|
|
66
|
+
"cypress-wait-until": "^1.7.2",
|
|
67
|
+
"istanbul-lib-coverage": "^3.2.0",
|
|
68
|
+
"jasmine-core": "~4.2.0",
|
|
69
|
+
"karma": "~6.4.0",
|
|
70
|
+
"karma-chrome-launcher": "~3.1.0",
|
|
71
|
+
"karma-coverage": "~2.2.0",
|
|
72
|
+
"karma-jasmine": "~5.1.0",
|
|
73
|
+
"karma-jasmine-html-reporter": "~2.0.0",
|
|
74
|
+
"multiple-cucumber-html-reporter": "^1.19.0",
|
|
75
|
+
"ng-packagr": "^16.1.0",
|
|
76
|
+
"semver": "^7.3.8",
|
|
77
|
+
"ts-node": "^10.9.1",
|
|
78
|
+
"typescript": "~5.1.3",
|
|
79
|
+
"yargs": "^17.6.2"
|
|
80
|
+
},
|
|
81
|
+
"cypress-cucumber-preprocessor": {
|
|
82
|
+
"nonGlobalStepDefinitions": true,
|
|
83
|
+
"stepDefinitions": "projects/test/cypress/integration/",
|
|
84
|
+
"cucumberJson": {
|
|
85
|
+
"generate": true,
|
|
86
|
+
"outputFolder": "projects/test/cypress/cucumber-json"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Material
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project material` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project material`.
|
|
8
|
+
> Note: Don't forget to add `--project material` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build material` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build material`, go to the dist folder `cd dist/material` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test material` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
@use "@angular/material" as mat;
|
|
2
|
+
@use "sass:map";
|
|
3
|
+
|
|
4
|
+
@forward "./mat-avatar/src/onemrva-mat-avatar.component" show avatar;
|
|
5
|
+
@forward "./layout/src/components/layout/layout-mixin.component" show layout;
|
|
6
|
+
@forward "./mat-badge/src/onemrva-mat-badge.component" show badge;
|
|
7
|
+
@forward "./mat-breadcrumb/src/onemrva-mat-breadcrumb.component" show breadcrumb;
|
|
8
|
+
@forward "./mat-datepicker-header/src/onemrva-mat-datepicker-header.component"
|
|
9
|
+
show datepickerHeader;
|
|
10
|
+
@forward "./mat-message-box/src/onemrva-mat-message-box.component" show
|
|
11
|
+
messageBox;
|
|
12
|
+
@forward "./mat-multi-select/src/onemrva-mat-multi-select.component" show
|
|
13
|
+
multiselect;
|
|
14
|
+
@forward "./mat-notification/src/onemrva-mat-notification.component" show
|
|
15
|
+
notification;
|
|
16
|
+
@forward "./mat-paginator/src/onemrva-mat-paginator.component" show paginator;
|
|
17
|
+
@forward "./mat-panel/src/onemrva-mat-panel.component" show panel;
|
|
18
|
+
@forward "./mat-side-menu/src/onemrva-mat-side-menu.component" show sideMenu;
|
|
19
|
+
@forward "./mat-spinner/src/onemrva-mat-spinner.component" show spinner;
|
|
20
|
+
@forward "./mat-toast/src/onemrva-mat-toast.component" show toast;
|
|
21
|
+
@forward "./page-not-found/src/page-not-found-mixin.component" show pageNotFound;
|
|
22
|
+
@forward "./mat-progress-bar/src/onemrva-mat-progress-bar-mixin.component" show
|
|
23
|
+
progressBar;
|
|
24
|
+
@forward "./mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component"
|
|
25
|
+
show fileUpload;
|
|
26
|
+
@forward "./mat-skeleton/src/onemrva-mat-skeleton.component" show skeleton;
|
|
27
|
+
@forward "./mat-task-list/src/onemrva-mat-task-list.component" show taskList;
|
|
28
|
+
@forward "./mat-table-of-content/src/onemrva-mat-table-of-content.component"
|
|
29
|
+
show toc;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
4
|
+
@function palette($theme, $palette, $hue: default, $opacity: null) {
|
|
5
|
+
$theme-palette: map.get(
|
|
6
|
+
(
|
|
7
|
+
primary: map.get($theme, 'primary'),
|
|
8
|
+
warn: map.get($theme, 'warn'),
|
|
9
|
+
accent: map.get($theme, 'accent'),
|
|
10
|
+
grayscale: map.get($theme, 'grayscale'),
|
|
11
|
+
info: map.get($theme, 'info'),
|
|
12
|
+
success: map.get($theme, 'success'),
|
|
13
|
+
error: map.get($theme, 'error'),
|
|
14
|
+
),
|
|
15
|
+
$palette
|
|
16
|
+
);
|
|
17
|
+
@return mat.get-color-from-palette($theme-palette, $hue, $opacity);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@function gradient($theme) {
|
|
21
|
+
@return map.get($theme, 'gradient');
|
|
22
|
+
}
|
|
23
|
+
@function breakpoints($theme) {
|
|
24
|
+
@return map.get($theme, 'breakpoints');
|
|
25
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="88.481" height="80" viewBox="0 0 88.481 80">
|
|
2
|
+
<path id="Logo_red_DE" d="M6620.777,4807.018a3.864,3.864,0,0,1-3.617,2.071,4.516,4.516,0,0,1-2.2-.478v-9.624h1.691v3.353a4.584,4.584,0,0,1,1.3-.2,3.062,3.062,0,0,1,2.932,1.831,2.845,2.845,0,0,1,2.7-1.831c1.8,0,2.987,1.366,2.987,3.438v.481h-4.3a1.765,1.765,0,0,0,1.875,1.674,3.469,3.469,0,0,0,1.731-.465l.41,1.086a4.28,4.28,0,0,1-2.425.731A3.034,3.034,0,0,1,6620.777,4807.018Zm-4.127-3.254v3.818a2.406,2.406,0,0,0,.83.126,2.043,2.043,0,0,0,1.961-2.2,1.843,1.843,0,0,0-1.846-1.958A2.291,2.291,0,0,0,6616.65,4803.764Zm5.581,1.1h2.591a1.354,1.354,0,0,0-1.283-1.466A1.377,1.377,0,0,0,6622.231,4804.864Zm-9.328,3.213a.911.911,0,0,1,.886-.932.9.9,0,0,1,.889.932.868.868,0,0,1-.889.9A.877.877,0,0,1,6612.9,4808.077Zm-3.227.9-1.677-4.464h-5.551l-1.62,4.464h-2.087l5.314-14.2h2.436l5.34,14.2Zm-2.1-5.9-1.551-4.086c-.326-.929-.564-1.775-.79-2.592h-.07c-.2.816-.464,1.7-.759,2.563l-1.537,4.115Zm-16.471,5.9v-14.2h8.425v1.534h-6.383v4.721h5.9v1.521h-5.9v6.425Zm-11.019-.014v-14.187h2.042v12.651h6.692v1.537Zm46.48-2.9v.012Zm2.734-3.215c7.228-3.775,13.976-10.848,13.976-24.021,0-26.63-26.84-28.376-30.759-28.489h-.478a7.131,7.131,0,0,0,0,14.26h.112c1.493.029,15.456.7,15.456,14.216s-14.187,14.132-15.484,14.161h-33.6a36.738,36.738,0,0,1-9.624-24.559c0-20.936,18.345-38.07,41.494-39.325h.014v.228c-7.114.633-29.023,4.269-29.037,27.994,0,26.628,26.84,28.376,30.756,28.488h.481a7.115,7.115,0,0,0,0-14.229h-.115c-1.494-.028-15.456-.7-15.456-14.217s14.175-14.13,15.483-14.159h34.618a36.748,36.748,0,0,1,10.243,25.207c0,16.611-11.751,28.686-28.078,34.491Z" transform="translate(-6568.9 -4729.089)" fill="#eb142a"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="88.295" height="80" viewBox="0 0 88.295 80">
|
|
2
|
+
<path id="Logo_red_EN" d="M6533.1,4808.99c-3.754,0-6.353-2.938-6.353-7.3s2.768-7.549,6.535-7.549,6.369,3.008,6.369,7.269c0,4.92-2.953,7.579-6.538,7.579Zm-4.458-7.354c0,3.108,1.632,5.82,4.514,5.82h.017l.014.014c2.9,0,4.526-2.712,4.526-5.976,0-2.853-1.463-5.848-4.513-5.848S6528.644,4798.528,6528.644,4801.636Zm-23.069-7.03h2.009l4.515,7.271a38.636,38.636,0,0,1,2.516,4.668l.056-.028c-.167-1.928-.209-3.671-.209-5.892v-6.033h1.715v14.383h-1.842l-4.485-7.3a42.134,42.134,0,0,1-2.614-4.793h-.072c.1,1.828.127,3.558.127,5.945v6.145h-1.714v-14.369Zm12.344,14.327V4794.55h7.662v1.56h-5.807v4.542h5.469v1.533h-5.469v5.188h6.117v1.56Zm29.749-2.181a3.858,3.858,0,0,1-3.612,2.069,4.5,4.5,0,0,1-2.194-.479v-9.6h1.689v3.346a4.489,4.489,0,0,1,1.292-.2,3.052,3.052,0,0,1,2.925,1.829,2.844,2.844,0,0,1,2.7-1.829c1.8,0,2.98,1.366,2.98,3.433v.479h-4.288a1.762,1.762,0,0,0,1.873,1.671,3.438,3.438,0,0,0,1.726-.463l.41,1.083a4.259,4.259,0,0,1-2.419.731A3.026,3.026,0,0,1,6547.667,4806.752Zm-4.117-3.246v3.812a2.481,2.481,0,0,0,.829.125,2.038,2.038,0,0,0,1.953-2.191,1.84,1.84,0,0,0-1.842-1.956A2.27,2.27,0,0,0,6543.55,4803.506Zm5.566,1.1h2.587a1.353,1.353,0,0,0-1.28-1.463A1.375,1.375,0,0,0,6549.117,4804.6Zm-9.309,3.205a.911.911,0,0,1,.887-.928.894.894,0,0,1,.887.928.887.887,0,1,1-1.773,0Zm13.638-2.009v.012Zm2.729-3.205c7.212-3.77,13.948-10.829,13.948-23.973,0-26.572-26.785-28.316-30.693-28.428h-.479a7.115,7.115,0,0,0,0,14.228h.113c1.49.028,15.425.7,15.425,14.186s-14.158,14.1-15.452,14.13H6505.5a36.644,36.644,0,0,1-9.6-24.507c0-20.89,18.306-37.988,41.406-39.24h.014v.227c-7.1.632-28.965,4.259-28.977,27.935,0,26.572,26.783,28.314,30.691,28.428h.479a7.1,7.1,0,0,0,0-14.2h-.113c-1.49-.028-15.422-.7-15.422-14.187s14.143-14.1,15.45-14.128h34.544a36.677,36.677,0,0,1,10.223,25.152c0,16.577-11.727,28.627-28.021,34.419Z" transform="translate(-6495.901 -4728.99)" fill="#eb142a"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="92.715" height="80" viewBox="0 0 92.715 80">
|
|
2
|
+
<path id="Logo_red_FR" d="M6181.882,4657.72c-3.783,0-6.4-2.7-6.4-7.229s2.687-7.482,6.6-7.482,6.426,2.982,6.426,7.2c0,4.879-2.98,7.5-6.6,7.5v.014Zm-4.472-7.271c0,3,1.646,5.767,4.543,5.767v.013h.027c2.911,0,4.557-2.685,4.557-5.921,0-2.841-1.477-5.794-4.543-5.794S6177.41,4647.453,6177.41,4650.449Zm56.582,5.064a3.866,3.866,0,0,1-3.615,2.067,4.5,4.5,0,0,1-2.2-.478V4647.5h1.689v3.347a4.555,4.555,0,0,1,1.293-.2,3.051,3.051,0,0,1,2.926,1.828,2.846,2.846,0,0,1,2.7-1.828c1.8,0,2.981,1.365,2.981,3.432v.492l-.014-.014h-4.276a1.763,1.763,0,0,0,1.871,1.673,3.464,3.464,0,0,0,1.73-.464l.408,1.083a4.273,4.273,0,0,1-2.42.731A3.027,3.027,0,0,1,6233.992,4655.513Zm-4.121-3.25v3.812a2.475,2.475,0,0,0,.829.126,2.04,2.04,0,0,0,1.955-2.194,1.84,1.84,0,0,0-1.841-1.955A2.285,2.285,0,0,0,6229.871,4652.263Zm5.556,1.1h2.587a1.353,1.353,0,0,0-1.279-1.463A1.376,1.376,0,0,0,6235.427,4653.361ZM6201.7,4657.5v-14.234h7.707v1.534h-5.851v4.5h5.513v1.519h-5.513v5.134h6.175v1.547Zm21.844-.014-.339-6.258c-.1-1.984-.225-4.389-.225-6.146h-.042c-.507,1.645-1.084,3.445-1.8,5.414l-2.518,6.906h-1.392l-2.32-6.779c-.677-2.025-1.224-3.854-1.632-5.541h-.043c-.041,1.772-.141,4.134-.281,6.3l-.379,6.1h-1.76l1-14.234h2.349l2.434,6.892c.59,1.744,1.054,3.32,1.434,4.8h.042c.381-1.435.887-3,1.52-4.8l2.532-6.892h2.349l.886,14.234Zm-25.12,0-4.516-7.229a40.56,40.56,0,0,1-2.644-4.755h-.071c.1,1.814.126,3.531.126,5.894v6.09H6189.6v-14.234h2.025l4.542,7.2a36.972,36.972,0,0,1,2.532,4.628l.056-.028c-.168-1.9-.211-3.628-.211-5.823v-5.978h1.73v14.234Zm-8.834,0h.016Zm36.513-.914a.9.9,0,0,1,.9-.914.907.907,0,1,1-.9.914Zm14.078-5.232c7.2-3.771,13.953-10.831,13.953-23.981,0-26.582-26.794-28.327-30.7-28.439h-.479a7.118,7.118,0,0,0,0,14.234h.112c1.491.028,15.43.7,15.43,14.191s-14.163,14.107-15.458,14.135h-33.529a36.625,36.625,0,0,1-9.607-24.5c0-20.9,18.3-38,41.407-39.253l.028.225c-7.117.633-28.988,4.262-29,27.947,0,26.582,26.794,28.327,30.7,28.439h.479a7.111,7.111,0,0,0,0-14.22h-.113c-1.49-.028-15.428-.646-15.428-14.19,0-13.489,14.149-14.107,15.457-14.136h34.557a36.743,36.743,0,0,1,10.211,25.162c0,16.583-11.716,28.635-28.018,34.43Z" transform="translate(-6175.482 -4577.72)" fill="#eb142a"/>
|
|
3
|
+
</svg>
|