@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.
Files changed (434) hide show
  1. package/.dockerignore +4 -0
  2. package/.editorconfig +16 -0
  3. package/.github/workflows/npm-publish.yml +34 -0
  4. package/README.md +27 -0
  5. package/angular.json +214 -0
  6. package/build.sh +108 -0
  7. package/cypress.config.ts +40 -0
  8. package/index.html +10 -0
  9. package/npm-publish.sh +11 -0
  10. package/package.json +89 -0
  11. package/projects/onemrva/design-system/README.md +24 -0
  12. package/projects/onemrva/design-system/_index.scss +29 -0
  13. package/projects/onemrva/design-system/_utils.scss +25 -0
  14. package/projects/onemrva/design-system/layout/assets/logo_de.svg +3 -0
  15. package/projects/onemrva/design-system/layout/assets/logo_en.svg +3 -0
  16. package/projects/onemrva/design-system/layout/assets/logo_fr.svg +3 -0
  17. package/projects/onemrva/design-system/layout/assets/logo_nl.svg +3 -0
  18. package/projects/onemrva/design-system/layout/assets/logo_onem_rva.svg +32 -0
  19. package/projects/onemrva/design-system/layout/index.ts +7 -0
  20. package/projects/onemrva/design-system/layout/ng-package.json +6 -0
  21. package/projects/onemrva/design-system/layout/src/components/index.ts +31 -0
  22. package/projects/onemrva/design-system/layout/src/components/layout/_layout-mixin.component.scss +159 -0
  23. package/projects/onemrva/design-system/layout/src/components/layout/layout.component.html +194 -0
  24. package/projects/onemrva/design-system/layout/src/components/layout/layout.component.scss +137 -0
  25. package/projects/onemrva/design-system/layout/src/components/layout/layout.component.spec.ts +24 -0
  26. package/projects/onemrva/design-system/layout/src/components/layout/layout.component.ts +187 -0
  27. package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.spec.ts +24 -0
  28. package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.ts +23 -0
  29. package/projects/onemrva/design-system/layout/src/components/layout-footer/layout-footer.component.ts +11 -0
  30. package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.spec.ts +25 -0
  31. package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.ts +17 -0
  32. package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.html +57 -0
  33. package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.spec.ts +24 -0
  34. package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.ts +56 -0
  35. package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.html +104 -0
  36. package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.ts +88 -0
  37. package/projects/onemrva/design-system/layout/src/components/layout-sidenav-title/layout-sidenav-title.component.ts +9 -0
  38. package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.html +44 -0
  39. package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.spec.ts +24 -0
  40. package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.ts +35 -0
  41. package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.spec.ts +25 -0
  42. package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.ts +17 -0
  43. package/projects/onemrva/design-system/layout/src/decorators/coerce-boolean-input.decorator.ts +19 -0
  44. package/projects/onemrva/design-system/layout/src/decorators/observable-content.decorator.ts +13 -0
  45. package/projects/onemrva/design-system/layout/src/directives/drawer-host.directive.ts +10 -0
  46. package/projects/onemrva/design-system/layout/src/enums/environment.enum.ts +6 -0
  47. package/projects/onemrva/design-system/layout/src/layout.component.spec.ts +24 -0
  48. package/projects/onemrva/design-system/layout/src/layout.module.ts +103 -0
  49. package/projects/onemrva/design-system/layout/src/models/onem-language.model.ts +4 -0
  50. package/projects/onemrva/design-system/layout/src/models/onemrva-profile.model.ts +57 -0
  51. package/projects/onemrva/design-system/layout/src/services/drawer.service.ts +28 -0
  52. package/projects/onemrva/design-system/layout/src/striphtml.pipe.ts +11 -0
  53. package/projects/onemrva/design-system/layout/src/test.ts +25 -0
  54. package/projects/onemrva/design-system/mat-avatar/index.ts +2 -0
  55. package/projects/onemrva/design-system/mat-avatar/ng-package.json +6 -0
  56. package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.html +17 -0
  57. package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.scss +130 -0
  58. package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.ts +421 -0
  59. package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.module.ts +17 -0
  60. package/projects/onemrva/design-system/mat-badge/index.ts +6 -0
  61. package/projects/onemrva/design-system/mat-badge/ng-package.json +6 -0
  62. package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.scss +152 -0
  63. package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.ts +291 -0
  64. package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.module.ts +8 -0
  65. package/projects/onemrva/design-system/mat-breadcrumb/index.ts +7 -0
  66. package/projects/onemrva/design-system/mat-breadcrumb/ng-package.json +6 -0
  67. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.html +37 -0
  68. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.scss +70 -0
  69. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.ts +16 -0
  70. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.model.ts +4 -0
  71. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.module.ts +12 -0
  72. package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.service.ts +65 -0
  73. package/projects/onemrva/design-system/mat-clipboard/index.ts +6 -0
  74. package/projects/onemrva/design-system/mat-clipboard/ng-package.json +6 -0
  75. package/projects/onemrva/design-system/mat-clipboard/src/_onemrva-mat-spinner.component.scss +62 -0
  76. package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.component.ts +16 -0
  77. package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.module.ts +14 -0
  78. package/projects/onemrva/design-system/mat-datepicker-header/index.ts +5 -0
  79. package/projects/onemrva/design-system/mat-datepicker-header/ng-package.json +6 -0
  80. package/projects/onemrva/design-system/mat-datepicker-header/src/_onemrva-mat-datepicker-header.component.scss +11 -0
  81. package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.html +53 -0
  82. package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.ts +285 -0
  83. package/projects/onemrva/design-system/mat-file-upload/index.ts +11 -0
  84. package/projects/onemrva/design-system/mat-file-upload/ng-package.json +6 -0
  85. package/projects/onemrva/design-system/mat-file-upload/src/components/index.ts +10 -0
  86. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.html +59 -0
  87. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.scss +24 -0
  88. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.ts +79 -0
  89. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.html +53 -0
  90. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.scss +248 -0
  91. package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.ts +185 -0
  92. package/projects/onemrva/design-system/mat-file-upload/src/directives/dnd.directive.ts +43 -0
  93. package/projects/onemrva/design-system/mat-file-upload/src/models/action-config.model.ts +10 -0
  94. package/projects/onemrva/design-system/mat-file-upload/src/models/progress-file.model.ts +94 -0
  95. package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload-itf.store.ts +79 -0
  96. package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.module.ts +28 -0
  97. package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.service.ts +68 -0
  98. package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.store.ts +473 -0
  99. package/projects/onemrva/design-system/mat-input-bank-account/index.ts +5 -0
  100. package/projects/onemrva/design-system/mat-input-bank-account/ng-package.json +6 -0
  101. package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.html +32 -0
  102. package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.scss +9 -0
  103. package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.ts +125 -0
  104. package/projects/onemrva/design-system/mat-input-country/index.ts +6 -0
  105. package/projects/onemrva/design-system/mat-input-country/ng-package.json +6 -0
  106. package/projects/onemrva/design-system/mat-input-country/src/countries.ts +3182 -0
  107. package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.html +29 -0
  108. package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.scss +29 -0
  109. package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.ts +144 -0
  110. package/projects/onemrva/design-system/mat-input-enterprise-number/index.ts +5 -0
  111. package/projects/onemrva/design-system/mat-input-enterprise-number/ng-package.json +6 -0
  112. package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.html +39 -0
  113. package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.scss +25 -0
  114. package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.ts +190 -0
  115. package/projects/onemrva/design-system/mat-input-phone/index.ts +6 -0
  116. package/projects/onemrva/design-system/mat-input-phone/ng-package.json +6 -0
  117. package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.html +43 -0
  118. package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.scss +29 -0
  119. package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.ts +261 -0
  120. package/projects/onemrva/design-system/mat-input-phone/src/phone-number.directive.ts +47 -0
  121. package/projects/onemrva/design-system/mat-message-box/index.ts +2 -0
  122. package/projects/onemrva/design-system/mat-message-box/ng-package.json +6 -0
  123. package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.scss +60 -0
  124. package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.ts +134 -0
  125. package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.module.ts +12 -0
  126. package/projects/onemrva/design-system/mat-multi-select/index.ts +2 -0
  127. package/projects/onemrva/design-system/mat-multi-select/ng-package.json +6 -0
  128. package/projects/onemrva/design-system/mat-multi-select/src/_onemrva-mat-multi-select.component.scss +66 -0
  129. package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.html +24 -0
  130. package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.ts +152 -0
  131. package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.module.ts +31 -0
  132. package/projects/onemrva/design-system/mat-notification/index.ts +1 -0
  133. package/projects/onemrva/design-system/mat-notification/ng-package.json +6 -0
  134. package/projects/onemrva/design-system/mat-notification/src/_onemrva-mat-notification.component.scss +71 -0
  135. package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.html +10 -0
  136. package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.ts +158 -0
  137. package/projects/onemrva/design-system/mat-paginator/index.ts +6 -0
  138. package/projects/onemrva/design-system/mat-paginator/ng-package.json +7 -0
  139. package/projects/onemrva/design-system/mat-paginator/package.json +7 -0
  140. package/projects/onemrva/design-system/mat-paginator/src/_onemrva-mat-paginator.component.scss +122 -0
  141. package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.html +104 -0
  142. package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.spec.ts +184 -0
  143. package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.ts +214 -0
  144. package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.module.ts +15 -0
  145. package/projects/onemrva/design-system/mat-panel/index.ts +6 -0
  146. package/projects/onemrva/design-system/mat-panel/ng-package.json +6 -0
  147. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.component.ts +12 -0
  148. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.html +5 -0
  149. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.component.ts +12 -0
  150. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.html +5 -0
  151. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.component.ts +12 -0
  152. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.html +5 -0
  153. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.component.ts +20 -0
  154. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.html +8 -0
  155. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.html +10 -0
  156. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.scss +100 -0
  157. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.ts +122 -0
  158. package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.module.ts +26 -0
  159. package/projects/onemrva/design-system/mat-pop-over/index.ts +4 -0
  160. package/projects/onemrva/design-system/mat-pop-over/ng-package.json +6 -0
  161. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-content.component.ts +13 -0
  162. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-trigger.component.ts +13 -0
  163. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.html +29 -0
  164. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.scss +141 -0
  165. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.ts +47 -0
  166. package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.module.ts +19 -0
  167. package/projects/onemrva/design-system/mat-progress-bar/index.ts +1 -0
  168. package/projects/onemrva/design-system/mat-progress-bar/ng-package.json +6 -0
  169. package/projects/onemrva/design-system/mat-progress-bar/src/_onemrva-mat-progress-bar-mixin.component.scss +37 -0
  170. package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.html +13 -0
  171. package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.ts +27 -0
  172. package/projects/onemrva/design-system/mat-select-search/index.ts +3 -0
  173. package/projects/onemrva/design-system/mat-select-search/ng-package.json +6 -0
  174. package/projects/onemrva/design-system/mat-select-search/src/default-options.ts +42 -0
  175. package/projects/onemrva/design-system/mat-select-search/src/mat-select-no-entries-found.directive.ts +15 -0
  176. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search-clear.directive.ts +13 -0
  177. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.html +67 -0
  178. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.scss +126 -0
  179. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.spec.ts +790 -0
  180. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.ts +612 -0
  181. package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.module.ts +53 -0
  182. package/projects/onemrva/design-system/mat-side-menu/index.ts +6 -0
  183. package/projects/onemrva/design-system/mat-side-menu/ng-package.json +6 -0
  184. package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.html +36 -0
  185. package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.scss +50 -0
  186. package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.spec.ts +66 -0
  187. package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.ts +46 -0
  188. package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.module.ts +14 -0
  189. package/projects/onemrva/design-system/mat-skeleton/index.ts +3 -0
  190. package/projects/onemrva/design-system/mat-skeleton/ng-package.json +6 -0
  191. package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton-enums.ts +32 -0
  192. package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.html +17 -0
  193. package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.scss +216 -0
  194. package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.ts +173 -0
  195. package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.module.ts +16 -0
  196. package/projects/onemrva/design-system/mat-spinner/index.ts +6 -0
  197. package/projects/onemrva/design-system/mat-spinner/ng-package.json +6 -0
  198. package/projects/onemrva/design-system/mat-spinner/src/_onemrva-mat-spinner.component.scss +62 -0
  199. package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.component.ts +11 -0
  200. package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.module.ts +8 -0
  201. package/projects/onemrva/design-system/mat-stepper/index.ts +6 -0
  202. package/projects/onemrva/design-system/mat-stepper/ng-package.json +6 -0
  203. package/projects/onemrva/design-system/mat-stepper/src/_stepper-variables.scss +29 -0
  204. package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.spec.ts +23 -0
  205. package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.ts +60 -0
  206. package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.html +53 -0
  207. package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.module.ts +30 -0
  208. package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.scss +106 -0
  209. package/projects/onemrva/design-system/mat-stepper/src/onemrva-stepper-animations.ts +40 -0
  210. package/projects/onemrva/design-system/mat-table-of-content/index.ts +8 -0
  211. package/projects/onemrva/design-system/mat-table-of-content/ng-package.json +6 -0
  212. package/projects/onemrva/design-system/mat-table-of-content/src/_onemrva-mat-table-of-content.component.scss +79 -0
  213. package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.html +23 -0
  214. package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.ts +128 -0
  215. package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.directive.ts +67 -0
  216. package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.service.ts +51 -0
  217. package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-toc-anchor.model.ts +24 -0
  218. package/projects/onemrva/design-system/mat-task-list/index.ts +5 -0
  219. package/projects/onemrva/design-system/mat-task-list/ng-package.json +6 -0
  220. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.component.ts +12 -0
  221. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.html +5 -0
  222. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.html +1 -0
  223. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.scss +150 -0
  224. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.ts +50 -0
  225. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.module.ts +31 -0
  226. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.component.ts +18 -0
  227. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.html +5 -0
  228. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.html +17 -0
  229. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.scss +0 -0
  230. package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.ts +117 -0
  231. package/projects/onemrva/design-system/mat-timepicker/index.ts +6 -0
  232. package/projects/onemrva/design-system/mat-timepicker/ng-package.json +6 -0
  233. package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.html +42 -0
  234. package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.scss +129 -0
  235. package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.spec.ts +25 -0
  236. package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.ts +273 -0
  237. package/projects/onemrva/design-system/mat-timepicker/src/interfaces-and-types.ts +16 -0
  238. package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.html +0 -0
  239. package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.ts +289 -0
  240. package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.module.ts +40 -0
  241. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.html +53 -0
  242. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.scss +69 -0
  243. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.spec.ts +25 -0
  244. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.ts +169 -0
  245. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.html +15 -0
  246. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.scss +32 -0
  247. package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.ts +135 -0
  248. package/projects/onemrva/design-system/mat-timepicker/src/timepicker.directive.ts +594 -0
  249. package/projects/onemrva/design-system/mat-timepicker/src/util.ts +97 -0
  250. package/projects/onemrva/design-system/mat-toast/index.ts +6 -0
  251. package/projects/onemrva/design-system/mat-toast/ng-package.json +6 -0
  252. package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.scss +54 -0
  253. package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.ts +36 -0
  254. package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.module.ts +11 -0
  255. package/projects/onemrva/design-system/mat-tooltip/index.ts +4 -0
  256. package/projects/onemrva/design-system/mat-tooltip/ng-package.json +6 -0
  257. package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.scss +9 -0
  258. package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.ts +21 -0
  259. package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.directive.ts +119 -0
  260. package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.module.ts +11 -0
  261. package/projects/onemrva/design-system/ng-package.json +20 -0
  262. package/projects/onemrva/design-system/package.json +27 -0
  263. package/projects/onemrva/design-system/page-not-found/assets/404/Arri/303/250re-plan.svg +22 -0
  264. package/projects/onemrva/design-system/page-not-found/assets/404/Halo.svg +10 -0
  265. package/projects/onemrva/design-system/page-not-found/assets/404/Ombre.svg +3 -0
  266. package/projects/onemrva/design-system/page-not-found/assets/404/Page.svg +21 -0
  267. package/projects/onemrva/design-system/page-not-found/assets/404/Page2.svg +19 -0
  268. package/projects/onemrva/design-system/page-not-found/assets/404/Soucoupe.svg +70 -0
  269. package/projects/onemrva/design-system/page-not-found/assets/404/Yeux.svg +6 -0
  270. package/projects/onemrva/design-system/page-not-found/assets/404/shape.svg +3 -0
  271. package/projects/onemrva/design-system/page-not-found/index.ts +5 -0
  272. package/projects/onemrva/design-system/page-not-found/ng-package.json +9 -0
  273. package/projects/onemrva/design-system/page-not-found/src/page-not-found-action.component.ts +9 -0
  274. package/projects/onemrva/design-system/page-not-found/src/page-not-found-extra.component.ts +9 -0
  275. package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.scss +16 -0
  276. package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.ts +84 -0
  277. package/projects/onemrva/design-system/page-not-found/src/page-not-found-mixin.component.scss +12 -0
  278. package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.html +31 -0
  279. package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.scss +206 -0
  280. package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.ts +59 -0
  281. package/projects/onemrva/design-system/page-not-found/src/page-not-found.module.ts +24 -0
  282. package/projects/onemrva/design-system/src/public-api.ts +5 -0
  283. package/projects/onemrva/design-system/tsconfig.lib.json +12 -0
  284. package/projects/onemrva/design-system/tsconfig.lib.prod.json +10 -0
  285. package/projects/onemrva/design-system/utils/index.ts +2 -0
  286. package/projects/onemrva/design-system/utils/ng-package.json +6 -0
  287. package/projects/onemrva/design-system/utils/src/enum.utils.ts +6 -0
  288. package/projects/onemrva/design-system/utils/src/enums/color.enum.ts +14 -0
  289. package/projects/onemrva/design-system/utils/src/enums/index.ts +2 -0
  290. package/projects/onemrva/design-system/utils/src/enums/size.enum.ts +11 -0
  291. package/projects/schematics/README.md +40 -0
  292. package/projects/schematics/package.json +25 -0
  293. package/projects/schematics/src/cmp-demo/schema.json +15 -0
  294. package/projects/schematics/src/collection.json +17 -0
  295. package/projects/schematics/src/component/files/root/ng-package.json +6 -0
  296. package/projects/schematics/src/component/files/src/onemrva-mat-__name__.component.html +4 -0
  297. package/projects/schematics/src/component/schema.json +11 -0
  298. package/projects/schematics/src/demo/files/demo/demo-__name__.component.html +2 -0
  299. package/projects/schematics/src/demo/files/demo/readme.md +26 -0
  300. package/projects/schematics/src/demo/schema.json +15 -0
  301. package/projects/schematics/tsconfig.json +24 -0
  302. package/projects/test/.nycrc +5 -0
  303. package/projects/test/cypress/coverage.webpack.ts +20 -0
  304. package/projects/test/cypress/cucumber-json/basictest.cucumber.json +402 -0
  305. package/projects/test/cypress/fixtures/example.json +5 -0
  306. package/projects/test/cypress/integration/basictest.feature +53 -0
  307. package/projects/test/cypress/integration/common/basicTestSteps.ts +54 -0
  308. package/projects/test/cypress/plugins/index.ts +13 -0
  309. package/projects/test/cypress/support/commands.ts +44 -0
  310. package/projects/test/cypress/support/e2e.ts +20 -0
  311. package/projects/test/cypress/tsconfig.json +10 -0
  312. package/projects/test/cypress/videos/basictest.feature.mp4 +0 -0
  313. package/projects/test/karma.conf.js +44 -0
  314. package/projects/test/src/app/app-routing.module.ts +14 -0
  315. package/projects/test/src/app/app.component.html +14 -0
  316. package/projects/test/src/app/app.component.scss +0 -0
  317. package/projects/test/src/app/app.component.spec.ts +35 -0
  318. package/projects/test/src/app/app.component.ts +51 -0
  319. package/projects/test/src/app/app.module.ts +103 -0
  320. package/projects/test/src/app/demos/avatar/demo-avatar.component.html +77 -0
  321. package/projects/test/src/app/demos/avatar/demo-avatar.component.scss +4 -0
  322. package/projects/test/src/app/demos/avatar/demo-avatar.component.ts +13 -0
  323. package/projects/test/src/app/demos/badge/demo-badge.component.html +389 -0
  324. package/projects/test/src/app/demos/badge/demo-badge.component.scss +4 -0
  325. package/projects/test/src/app/demos/badge/demo-badge.component.ts +22 -0
  326. package/projects/test/src/app/demos/badge/readme.md +30 -0
  327. package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.html +20 -0
  328. package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.ts +7 -0
  329. package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.module.ts +89 -0
  330. package/projects/test/src/app/demos/breadcrumb/readme.md +29 -0
  331. package/projects/test/src/app/demos/datepicker/demo-datepicker.component.html +10 -0
  332. package/projects/test/src/app/demos/datepicker/demo-datepicker.component.scss +5 -0
  333. package/projects/test/src/app/demos/datepicker/demo-datepicker.component.ts +12 -0
  334. package/projects/test/src/app/demos/datepicker/demo-datepicker.module.ts +43 -0
  335. package/projects/test/src/app/demos/datepicker/readme.md +36 -0
  336. package/projects/test/src/app/demos/file-upload/demo-file-upload.component.html +30 -0
  337. package/projects/test/src/app/demos/file-upload/demo-file-upload.component.ts +132 -0
  338. package/projects/test/src/app/demos/file-upload/demo-file-upload.service.ts +60 -0
  339. package/projects/test/src/app/demos/file-upload/readme.md +26 -0
  340. package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.component.ts +19 -0
  341. package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.module.ts +20 -0
  342. package/projects/test/src/app/demos/input-country/demo-input-country.component.html +9 -0
  343. package/projects/test/src/app/demos/input-country/demo-input-country.component.ts +14 -0
  344. package/projects/test/src/app/demos/input-country/demo-input-country.module.ts +26 -0
  345. package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.component.ts +13 -0
  346. package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.module.ts +20 -0
  347. package/projects/test/src/app/demos/input-phone/demo-input-phone.component.html +16 -0
  348. package/projects/test/src/app/demos/input-phone/demo-input-phone.component.ts +16 -0
  349. package/projects/test/src/app/demos/input-phone/demo-input-phone.module.ts +21 -0
  350. package/projects/test/src/app/demos/message-box/demo-message-box.component.html +32 -0
  351. package/projects/test/src/app/demos/message-box/demo-message-box.component.ts +12 -0
  352. package/projects/test/src/app/demos/message-box/readme.md +26 -0
  353. package/projects/test/src/app/demos/multiselect/demo-multiselect.component.html +53 -0
  354. package/projects/test/src/app/demos/multiselect/demo-multiselect.component.scss +23 -0
  355. package/projects/test/src/app/demos/multiselect/demo-multiselect.component.ts +53 -0
  356. package/projects/test/src/app/demos/multiselect/demo-multiselect.module.ts +38 -0
  357. package/projects/test/src/app/demos/multiselect/readme.md +34 -0
  358. package/projects/test/src/app/demos/not-found/demo-not-found.component.html +21 -0
  359. package/projects/test/src/app/demos/not-found/demo-not-found.component.scss +6 -0
  360. package/projects/test/src/app/demos/not-found/demo-not-found.component.ts +50 -0
  361. package/projects/test/src/app/demos/not-found/readme.md +44 -0
  362. package/projects/test/src/app/demos/notification/demo-notification.component.html +5 -0
  363. package/projects/test/src/app/demos/notification/demo-notification.component.ts +10 -0
  364. package/projects/test/src/app/demos/paginator/demo-paginator.component.html +35 -0
  365. package/projects/test/src/app/demos/paginator/demo-paginator.component.ts +25 -0
  366. package/projects/test/src/app/demos/paginator/readme.md +89 -0
  367. package/projects/test/src/app/demos/panel/demo-panel.component.html +53 -0
  368. package/projects/test/src/app/demos/panel/demo-panel.component.scss +3 -0
  369. package/projects/test/src/app/demos/panel/demo-panel.component.ts +20 -0
  370. package/projects/test/src/app/demos/panel/readme.md +26 -0
  371. package/projects/test/src/app/demos/pop-over/demo-pop-over.component.html +130 -0
  372. package/projects/test/src/app/demos/pop-over/demo-pop-over.component.scss +9 -0
  373. package/projects/test/src/app/demos/pop-over/demo-pop-over.component.ts +13 -0
  374. package/projects/test/src/app/demos/pop-over/readme.md +26 -0
  375. package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.html +19 -0
  376. package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.ts +35 -0
  377. package/projects/test/src/app/demos/side-menu/demo-side-menu.component.html +5 -0
  378. package/projects/test/src/app/demos/side-menu/demo-side-menu.component.ts +34 -0
  379. package/projects/test/src/app/demos/side-menu/readme.md +30 -0
  380. package/projects/test/src/app/demos/skeleton/demo-skeleton.component.html +119 -0
  381. package/projects/test/src/app/demos/skeleton/demo-skeleton.component.scss +0 -0
  382. package/projects/test/src/app/demos/skeleton/demo-skeleton.component.ts +35 -0
  383. package/projects/test/src/app/demos/spinner/demo-spinner.component.html +1 -0
  384. package/projects/test/src/app/demos/spinner/demo-spinner.component.ts +10 -0
  385. package/projects/test/src/app/demos/spinner/readme.md +24 -0
  386. package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.html +108 -0
  387. package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.scss +3 -0
  388. package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.ts +55 -0
  389. package/projects/test/src/app/demos/summary-stepper/readme.md +26 -0
  390. package/projects/test/src/app/demos/table/demo-table-datasource.ts +140 -0
  391. package/projects/test/src/app/demos/table/demo-table.component.html +41 -0
  392. package/projects/test/src/app/demos/table/demo-table.component.scss +17 -0
  393. package/projects/test/src/app/demos/table/demo-table.component.ts +51 -0
  394. package/projects/test/src/app/demos/table/demo-table.module.ts +45 -0
  395. package/projects/test/src/app/demos/table/readme.md +27 -0
  396. package/projects/test/src/app/demos/task-list/demo-task-list.component.html +37 -0
  397. package/projects/test/src/app/demos/task-list/demo-task-list.component.scss +3 -0
  398. package/projects/test/src/app/demos/task-list/demo-task-list.component.ts +14 -0
  399. package/projects/test/src/app/demos/task-list/demo-task-list.module.ts +29 -0
  400. package/projects/test/src/app/demos/task-list/readme.md +26 -0
  401. package/projects/test/src/app/demos/timepicker/demo-timepicker.component.html +9 -0
  402. package/projects/test/src/app/demos/timepicker/demo-timepicker.component.ts +31 -0
  403. package/projects/test/src/app/demos/timepicker/readme.md +26 -0
  404. package/projects/test/src/app/demos/toast/demo-toast.component.html +8 -0
  405. package/projects/test/src/app/demos/toast/demo-toast.component.scss +3 -0
  406. package/projects/test/src/app/demos/toast/demo-toast.component.ts +61 -0
  407. package/projects/test/src/app/demos/toast/readme.md +30 -0
  408. package/projects/test/src/app/demos/toc/demo-toc.component.html +288 -0
  409. package/projects/test/src/app/demos/toc/demo-toc.component.ts +26 -0
  410. package/projects/test/src/app/demos/tooltip/demo-tooltip.component.html +73 -0
  411. package/projects/test/src/app/demos/tooltip/demo-tooltip.component.scss +11 -0
  412. package/projects/test/src/app/demos/tooltip/demo-tooltip.component.ts +14 -0
  413. package/projects/test/src/app/home.component.ts +54 -0
  414. package/projects/test/src/app/material.module.ts +39 -0
  415. package/projects/test/src/app/onemrva-translate-http-loader.ts +35 -0
  416. package/projects/test/src/app/routes.ts +198 -0
  417. package/projects/test/src/assets/.gitkeep +0 -0
  418. package/projects/test/src/assets/i18n/de.json +80 -0
  419. package/projects/test/src/assets/i18n/en.json +80 -0
  420. package/projects/test/src/assets/i18n/fr.json +80 -0
  421. package/projects/test/src/assets/i18n/nl.json +79 -0
  422. package/projects/test/src/environments/environment.e2e.ts +3 -0
  423. package/projects/test/src/environments/environment.prod.ts +3 -0
  424. package/projects/test/src/environments/environment.ts +16 -0
  425. package/projects/test/src/favicon.ico +0 -0
  426. package/projects/test/src/index.html +15 -0
  427. package/projects/test/src/main.ts +12 -0
  428. package/projects/test/src/polyfills.ts +53 -0
  429. package/projects/test/src/styles.scss +22 -0
  430. package/projects/test/src/test.ts +26 -0
  431. package/projects/test/tsconfig.app.json +15 -0
  432. package/projects/test/tsconfig.spec.json +18 -0
  433. package/rva.crt +36 -0
  434. package/tsconfig.json +44 -0
@@ -0,0 +1,140 @@
1
+ import { DataSource } from '@angular/cdk/collections';
2
+ import { MatSort } from '@angular/material/sort';
3
+ import { map } from 'rxjs/operators';
4
+ import { BehaviorSubject, merge, Observable } from 'rxjs';
5
+ import {OnemrvaMatPaginatorComponent} from "../../../../../onemrva/design-system/mat-paginator";
6
+
7
+ // TODO: Replace this with your own data model type
8
+ export interface ListItem {
9
+ name: string;
10
+ id: number;
11
+ }
12
+
13
+ // TODO: replace this with real data from your application
14
+ const EXAMPLE_DATA: ListItem[] = [
15
+ { id: 1, name: 'Hydrogen' },
16
+ { id: 2, name: 'Helium' },
17
+ { id: 3, name: 'Lithium' },
18
+ { id: 4, name: 'Beryllium' },
19
+ { id: 5, name: 'Boron' },
20
+ { id: 6, name: 'Carbon' },
21
+ { id: 7, name: 'Nitrogen' },
22
+ { id: 8, name: 'Oxygen' },
23
+ { id: 9, name: 'Fluorine' },
24
+ { id: 10, name: 'Neon' },
25
+ { id: 11, name: 'Sodium' },
26
+ { id: 12, name: 'Magnesium' },
27
+ { id: 13, name: 'Aluminum' },
28
+ { id: 14, name: 'Silicon' },
29
+ { id: 15, name: 'Phosphorus' },
30
+ { id: 16, name: 'Sulfur' },
31
+ { id: 17, name: 'Chlorine' },
32
+ { id: 18, name: 'Argon' },
33
+ { id: 19, name: 'Potassium' },
34
+ { id: 20, name: 'Calcium' },
35
+ { id: 21, name: 'Scandium' },
36
+ { id: 22, name: 'Titanium' },
37
+ { id: 23, name: 'Vanadium' },
38
+ { id: 24, name: 'Chromium' },
39
+ ];
40
+
41
+ /**
42
+ * Data source for the List view. This class should
43
+ * encapsulate all logic for fetching and manipulating the displayed data
44
+ * (including sorting, pagination, and filtering).
45
+ */
46
+ export class ListDataSource extends DataSource<ListItem> {
47
+ data: ListItem[] = EXAMPLE_DATA;
48
+ paginator!: OnemrvaMatPaginatorComponent;
49
+ sort: MatSort | undefined;
50
+ data$: BehaviorSubject<ListItem[]> = new BehaviorSubject<ListItem[]>([]);
51
+
52
+ constructor() {
53
+ super();
54
+ this.data$.next(this.data);
55
+ }
56
+
57
+ /**
58
+ * Connect this data source to the table. The table will only update when
59
+ * the returned stream emits new items.
60
+ * @returns A stream of the items to be rendered.
61
+ */
62
+ connect(): Observable<ListItem[]> {
63
+ if (this.sort) {
64
+ // Combine everything that affects the rendered data into one update
65
+ // stream for the data-table to consume.
66
+ return merge(this.data$, this.sort.sortChange).pipe(
67
+ map(() => {
68
+ return this.getPagedData(this.getSortedData([...this.data]));
69
+ })
70
+ );
71
+ } else {
72
+ throw Error('Please set the sort on the data source before connecting.');
73
+ }
74
+ }
75
+
76
+ /**
77
+ * Called when the table is being destroyed. Use this function, to clean up
78
+ * any open connections or free any held resources that were set up during connect.
79
+ */
80
+ disconnect(): void {}
81
+
82
+ /**
83
+ * Paginate the data (client-side). If you're using server-side pagination,
84
+ * this would be replaced by requesting the appropriate data from the server.
85
+ */
86
+ private getPagedData(data: ListItem[]): ListItem[] {
87
+ if (this.paginator) {
88
+ const startIndex = this.paginator.pageIndex * this.paginator.pageSize;
89
+ return data.splice(startIndex, this.paginator.pageSize);
90
+ } else {
91
+ return data;
92
+ }
93
+ }
94
+
95
+ /**
96
+ * Sort the data (client-side). If you're using server-side sorting,
97
+ * this would be replaced by requesting the appropriate data from the server.
98
+ */
99
+ private getSortedData(data: ListItem[]): ListItem[] {
100
+ if (!this.sort || !this.sort.active || this.sort.direction === '') {
101
+ return data;
102
+ }
103
+
104
+ return data.sort((a, b) => {
105
+ const isAsc = this.sort?.direction === 'asc';
106
+ switch (this.sort?.active) {
107
+ case 'name':
108
+ return compare(a.name, b.name, isAsc);
109
+ case 'id':
110
+ return compare(+a.id, +b.id, isAsc);
111
+ default:
112
+ return 0;
113
+ }
114
+ });
115
+ }
116
+
117
+ /**
118
+ * @param row
119
+ */
120
+ public remove(row: ListItem) {
121
+ let idx = this.data.indexOf(row);
122
+ if (idx >= 0) {
123
+ this.data.splice(idx, 1);
124
+ this.paginator.length = this.data.length;
125
+ }
126
+ this.data$.next(this.data);
127
+ }
128
+
129
+ /**
130
+ *
131
+ */
132
+ public touch() {
133
+ this.data$.next(this.data);
134
+ }
135
+ }
136
+
137
+ /** Simple sort comparator for example ID/Name columns (for client-side sorting). */
138
+ function compare(a: string | number, b: string | number, isAsc: boolean): number {
139
+ return (a < b ? -1 : 1) * (isAsc ? 1 : -1);
140
+ }
@@ -0,0 +1,41 @@
1
+ <table mat-table class="full-width-table" matSort aria-label="Elements">
2
+ <!-- Id Column -->
3
+ <ng-container matColumnDef="id">
4
+ <th mat-header-cell *matHeaderCellDef mat-sort-header>Id</th>
5
+ <td mat-cell *matCellDef="let row">{{ row.id }}</td>
6
+ </ng-container>
7
+
8
+ <!-- Name Column -->
9
+ <ng-container matColumnDef="name">
10
+ <th mat-header-cell *matHeaderCellDef mat-sort-header>Name</th>
11
+ <td mat-cell *matCellDef="let row">{{ row.name }}</td>
12
+ </ng-container>
13
+
14
+ <!-- Star Column -->
15
+ <ng-container matColumnDef="more">
16
+ <th mat-header-cell *matHeaderCellDef></th>
17
+ <td mat-cell *matCellDef="let row">
18
+ <button mat-icon-button [matMenuTriggerFor]="menu" aria-label="More"><mat-icon>more_vert</mat-icon></button>
19
+ <mat-menu #menu="matMenu">
20
+ <button mat-menu-item (click)="edit(row)" aria-label="Edit"><mat-icon>edit</mat-icon>Edit</button>
21
+ <button mat-menu-item (click)="delete(row)" aria-label="Delete"><mat-icon>delete</mat-icon>Delete</button>
22
+ <button mat-menu-item (click)="share(row)" aria-label="Share"><mat-icon>share</mat-icon>Share</button>
23
+ </mat-menu>
24
+ </td>
25
+ </ng-container>
26
+
27
+ <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
28
+ <tr mat-row *matRowDef="let row; columns: displayedColumns"></tr>
29
+ </table>
30
+ <p>
31
+ <onemrva-mat-paginator
32
+ [pageSize]="10"
33
+ [pageIndex]="0"
34
+ [length]="dataSource.data.length"
35
+ (page)="changePage($event)"
36
+ previousKey="Previous"
37
+ nextKey="Next"
38
+ #paginator
39
+ ></onemrva-mat-paginator>
40
+ <br />
41
+ </p>
@@ -0,0 +1,17 @@
1
+ .full-width-table {
2
+ width: 100%;
3
+ }
4
+ .cdk-column-more {
5
+ width: 100px;
6
+ }
7
+ .cdk-column-id {
8
+ width: 60px;
9
+ }
10
+ onemrva-mat-paginator {
11
+ margin: 8px;
12
+ float: right;
13
+ }
14
+ //.onemrva-mat-paginator {
15
+ // text-align: center !important;
16
+ // display: block !important;
17
+ //}
@@ -0,0 +1,51 @@
1
+ import { AfterViewInit, Component, ViewChild } from '@angular/core';
2
+ import { MatSort } from '@angular/material/sort';
3
+ import { MatTable } from '@angular/material/table';
4
+ import { ListDataSource, ListItem } from './demo-table-datasource';
5
+ import {OnemrvaMatPaginatorComponent} from "../../../../../onemrva/design-system/mat-paginator";
6
+ import {PageEvent} from "@angular/material/paginator";
7
+
8
+ @Component({
9
+ selector: 'app-demo-table',
10
+ templateUrl: './demo-table.component.html',
11
+ styleUrls: ['./demo-table.component.scss'],
12
+ })
13
+ export class DemoTableComponent implements AfterViewInit {
14
+ @ViewChild(OnemrvaMatPaginatorComponent) paginator!: OnemrvaMatPaginatorComponent;
15
+ @ViewChild(MatSort) sort!: MatSort;
16
+ @ViewChild(MatTable) table!: MatTable<ListItem>;
17
+ dataSource: ListDataSource;
18
+
19
+ /** Columns displayed in the table. Columns IDs can be added, removed, or reordered. */
20
+ displayedColumns = ['id', 'name', 'more'];
21
+
22
+ constructor() {
23
+ this.dataSource = new ListDataSource();
24
+ }
25
+
26
+ ngAfterViewInit(): void {
27
+ this.dataSource.sort = this.sort;
28
+ this.dataSource.paginator = this.paginator;
29
+ this.table.dataSource = this.dataSource;
30
+ }
31
+
32
+ edit(row: ListItem) {
33
+ alert(`Edit row n°${row.id}: ${row.name}`);
34
+ }
35
+
36
+ delete(row: ListItem) {
37
+ this.dataSource.remove(row);
38
+ }
39
+
40
+ share(row: ListItem) {
41
+ alert(`Share row n°${row.id}: ${row.name}`);
42
+ }
43
+
44
+ changePage(event: PageEvent) {
45
+ if (this.dataSource.paginator !== undefined) {
46
+ this.dataSource.paginator.pageSize = event.pageSize;
47
+ this.dataSource.paginator.pageIndex = event.pageIndex;
48
+ this.dataSource.touch();
49
+ }
50
+ }
51
+ }
@@ -0,0 +1,45 @@
1
+ import { NgModule} from '@angular/core';
2
+ import { CommonModule} from "@angular/common";
3
+
4
+ import {MatCardModule} from "@angular/material/card";
5
+ import {MatChipsModule} from "@angular/material/chips";
6
+ import {MatTableModule} from "@angular/material/table";
7
+ import {MatSortModule} from "@angular/material/sort";
8
+ import {MatIconModule} from "@angular/material/icon";
9
+ import {MatMenuModule} from "@angular/material/menu";
10
+ import {MatButtonModule} from "@angular/material/button";
11
+ import {DemoTableComponent} from "./demo-table.component";
12
+ import {OnemrvaMatPaginatorModule} from "../../../../../onemrva/design-system/mat-paginator";
13
+ import {Route, RouterModule} from "@angular/router";
14
+ import {DemoPanelComponent} from "../panel/demo-panel.component";
15
+ const routes: Route[] = [
16
+ {
17
+ path: '',
18
+ pathMatch: 'full',
19
+ component: DemoTableComponent,
20
+ },
21
+ ];
22
+ @NgModule({
23
+ declarations: [
24
+ DemoTableComponent
25
+ ],
26
+ imports: [
27
+ CommonModule,
28
+ MatCardModule,
29
+ MatChipsModule,
30
+ MatTableModule,
31
+ MatSortModule,
32
+ MatIconModule,
33
+ MatMenuModule,
34
+ MatButtonModule,
35
+ OnemrvaMatPaginatorModule,
36
+ RouterModule.forChild(routes),
37
+ ],
38
+ providers: [],
39
+ bootstrap: [
40
+ DemoTableComponent
41
+ ],
42
+ })
43
+ export class DemoTableModule {
44
+
45
+ }
@@ -0,0 +1,27 @@
1
+ # Installation
2
+
3
+ ```bash
4
+ npm install --save @onemrvapublic/theme
5
+ ```
6
+
7
+ In style.scss:
8
+
9
+ ```scss
10
+ @use '@onemrvapublic/theme' as theme;
11
+
12
+ @include theme.reset();
13
+
14
+ .onemrva-theme {
15
+ @include theme.onemrva();
16
+ }
17
+ ```
18
+
19
+ # Changelog
20
+
21
+ ## @onemrvapublic/theme 15.0.38
22
+
23
+ Upgrade to Angular 15
24
+
25
+ ## 14.1.441
26
+
27
+ Compliant version with DS4
@@ -0,0 +1,37 @@
1
+ <onemrva-mat-task-list>
2
+ <onemrva-mat-task color="" icon="home">
3
+ <onemrva-mat-task-title> Go home</onemrva-mat-task-title>
4
+ <onemrva-mat-task-content>
5
+ <p>
6
+ Just call a cab...
7
+ </p>
8
+ </onemrva-mat-task-content>
9
+ </onemrva-mat-task>
10
+
11
+ <onemrva-mat-task color="" bubble="2">
12
+ <onemrva-mat-task-title> Drink some water</onemrva-mat-task-title>
13
+ <onemrva-mat-task-content>
14
+ <p>
15
+ Stay hydrated...
16
+ </p>
17
+ </onemrva-mat-task-content>
18
+ </onemrva-mat-task>
19
+
20
+ <onemrva-mat-task [disabled]="disabled" [form]="formControl">
21
+ <onemrva-mat-task-title> Don't do this</onemrva-mat-task-title>
22
+ <onemrva-mat-task-content>
23
+ <p>
24
+ This is why it is disabled...
25
+ </p>
26
+ </onemrva-mat-task-content>
27
+ </onemrva-mat-task>
28
+
29
+ <onemrva-mat-task color="error" [form]="formControl1">
30
+ <onemrva-mat-task-title> Did you fail this task ?</onemrva-mat-task-title>
31
+ <onemrva-mat-task-content>
32
+ <p>
33
+ Dunno? It is red !
34
+ </p>
35
+ </onemrva-mat-task-content>
36
+ </onemrva-mat-task>
37
+ </onemrva-mat-task-list>
@@ -0,0 +1,3 @@
1
+ onemrva-mat-task-list {
2
+ margin: 8px 0;
3
+ }
@@ -0,0 +1,14 @@
1
+ import { Component } from '@angular/core';
2
+ import {FormControl} from "@angular/forms";
3
+
4
+ @Component({
5
+ selector: 'app-demo-task-list',
6
+ styleUrls: ['demo-task-list.component.scss'],
7
+ templateUrl: 'demo-task-list.component.html',
8
+ })
9
+ export class DemoTaskListComponent {
10
+ checkbox: any;
11
+ disabled: boolean = true;
12
+ formControl: FormControl = new FormControl(false);
13
+ formControl1: FormControl = new FormControl(false);
14
+ }
@@ -0,0 +1,29 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { DemoTaskListComponent } from './demo-task-list.component';
4
+ import { MatButtonModule } from '@angular/material/button';
5
+ import { MatIconModule } from '@angular/material/icon';
6
+ import { Route, RouterModule } from '@angular/router';
7
+ import { OnemrvaMatTaskListModule } from '../../../../../onemrva/design-system/mat-task-list';
8
+ import {ReactiveFormsModule} from "@angular/forms";
9
+
10
+ const routes: Route[] = [
11
+ {
12
+ path: '',
13
+ pathMatch: 'full',
14
+ component: DemoTaskListComponent,
15
+ },
16
+ ];
17
+
18
+ @NgModule({
19
+ declarations: [DemoTaskListComponent],
20
+ imports: [
21
+ CommonModule,
22
+ OnemrvaMatTaskListModule,
23
+ MatButtonModule,
24
+ MatIconModule,
25
+ RouterModule.forChild(routes),
26
+ ReactiveFormsModule,
27
+ ],
28
+ })
29
+ export class DemoTaskListModule {}
@@ -0,0 +1,26 @@
1
+ # Installation
2
+
3
+ ```bash
4
+ npm install --save @onemrvapublic/theme
5
+ npm install --save @onemrvapublic/design-system
6
+ ```
7
+
8
+ In style.scss:
9
+
10
+ ```scss
11
+ @use '@onemrvapublic/theme' as theme;
12
+ @use '@onemrvapublic/design-system' as onemrvaMat;
13
+
14
+ @include theme.reset();
15
+
16
+ .onemrva-theme {
17
+ @include theme.onemrva();
18
+ @include onemrvaMat.task-list(theme.$onemrva-theme);
19
+ }
20
+ ```
21
+
22
+ # Changelog
23
+
24
+ ## 14.1.604
25
+
26
+ TaskLists initial version
@@ -0,0 +1,9 @@
1
+ <form [formGroup]="form">
2
+ <mat-form-field class="example-full-width">
3
+ <mat-label>Time</mat-label>
4
+ <input formControlName="time" matInput [matTimepicker]="timepicker">
5
+ <mat-timepicker-toggle aria-label="Pick a time" matSuffix [for]="timepicker"></mat-timepicker-toggle>
6
+ <mat-timepicker color="accent" #timepicker></mat-timepicker>
7
+ </mat-form-field>
8
+ <div>Reactive Form Value: {{form.value.time?.toLocaleTimeString() | json}}</div>
9
+ </form>
@@ -0,0 +1,31 @@
1
+ import { Component, OnInit } from '@angular/core';
2
+ import { FormControl, FormGroup } from '@angular/forms';
3
+
4
+ import { CommonModule } from '@angular/common';
5
+ import { MatFormFieldModule } from '@angular/material/form-field';
6
+ import { ReactiveFormsModule } from '@angular/forms';
7
+ import { MatInputModule } from '@angular/material/input';
8
+ import { OnemrvaMatTimepickerModule } from '../../../../../onemrva/design-system/mat-timepicker';
9
+
10
+ @Component({
11
+ selector: 'app-demo-timepicker',
12
+ standalone: true,
13
+ imports: [
14
+ CommonModule,
15
+ MatFormFieldModule,
16
+ ReactiveFormsModule,
17
+ MatInputModule,
18
+ OnemrvaMatTimepickerModule,
19
+ ],
20
+ templateUrl: 'demo-timepicker.component.html',
21
+ })
22
+ export class DemoTimepickerComponent implements OnInit {
23
+ public form = new FormGroup({
24
+ time: new FormControl(),
25
+ time2: new FormControl(),
26
+ });
27
+
28
+ ngOnInit(): void {
29
+ this.form.get('time')?.setValue(new Date());
30
+ }
31
+ }
@@ -0,0 +1,26 @@
1
+ # Installation
2
+
3
+ ```bash
4
+ npm install --save @onemrvapublic/theme
5
+ npm install --save @onemrvapublic/design-system
6
+ ```
7
+
8
+ In style.scss:
9
+
10
+ ```scss
11
+ @use '@onemrvapublic/theme' as theme;
12
+ @use '@onemrvapublic/design-system' as onemrvaMat;
13
+
14
+ @include theme.reset();
15
+
16
+ .onemrva-theme {
17
+ @include theme.onemrva();
18
+ @include onemrvaMat.timepicker(theme.$onemrva-theme);
19
+ }
20
+ ```
21
+
22
+ # Changelog
23
+
24
+ ## 14.1.XXX
25
+
26
+ Thibaut, tu as oublié de mettre à jour le changeLog
@@ -0,0 +1,8 @@
1
+ <p><a (click)="joke1()">How do celebrities stay cool?</a></p>
2
+ <button mat-flat-button color="accent" (click)="yes()" data-cy="like">
3
+ Like
4
+ </button>
5
+ <button mat-stroked-button color="primary" (click)="no()">
6
+ Send complaint
7
+ </button>
8
+ <button mat-stroked-button color="error" (click)="error()">Error</button>
@@ -0,0 +1,3 @@
1
+ button {
2
+ margin: 8px;
3
+ }
@@ -0,0 +1,61 @@
1
+ import { Component } from '@angular/core';
2
+ import { MatButtonModule } from '@angular/material/button';
3
+ import { MatSnackBar } from '@angular/material/snack-bar';
4
+
5
+ import { CommonModule } from '@angular/common';
6
+ import {
7
+ OnemrvaMatToastComponent,
8
+ ToastType,
9
+ } from '../../../../../onemrva/design-system/mat-toast';
10
+
11
+ @Component({
12
+ selector: 'app-demo-toast',
13
+ standalone: true,
14
+ imports: [CommonModule, MatButtonModule],
15
+ styleUrls: ['demo-toast.component.scss'],
16
+ templateUrl: 'demo-toast.component.html',
17
+ })
18
+ export class DemoToastComponent {
19
+ constructor(private snackBar: MatSnackBar) {}
20
+
21
+ joke1() {
22
+ this.snackBar.openFromComponent(OnemrvaMatToastComponent, {
23
+ data: {
24
+ type: ToastType.info,
25
+ message: 'They have many fans.',
26
+ },
27
+ politeness: 'off',
28
+ duration: 5000,
29
+ });
30
+ }
31
+
32
+ yes() {
33
+ this.snackBar.openFromComponent(OnemrvaMatToastComponent, {
34
+ data: {
35
+ type: ToastType.success,
36
+ message: 'Feedback sent!',
37
+ },
38
+ politeness: 'polite',
39
+ });
40
+ }
41
+
42
+ no() {
43
+ this.snackBar.openFromComponent(OnemrvaMatToastComponent, {
44
+ data: {
45
+ type: ToastType.warn,
46
+ message: 'Technical issue. Please try again later',
47
+ },
48
+ politeness: 'assertive',
49
+ });
50
+ }
51
+
52
+ error() {
53
+ this.snackBar.openFromComponent(OnemrvaMatToastComponent, {
54
+ data: {
55
+ type: ToastType.error,
56
+ message: "Technical error. Please don't try again",
57
+ },
58
+ politeness: 'assertive',
59
+ });
60
+ }
61
+ }
@@ -0,0 +1,30 @@
1
+ # Installation
2
+
3
+ ```bash
4
+ npm install --save @onemrvapublic/theme
5
+ npm install --save @onemrvapublic/design-system
6
+ ```
7
+
8
+ In style.scss:
9
+
10
+ ```scss
11
+ @use '@onemrvapublic/theme' as theme;
12
+ @use '@onemrvapublic/design-system' as onemrvaMat;
13
+
14
+ @include theme.reset();
15
+
16
+ .onemrva-theme {
17
+ @include theme.onemrva();
18
+ @include onemrvaMat.toast(theme.$onemrva-theme);
19
+ }
20
+ ```
21
+
22
+ # Changelog
23
+
24
+ ## 14.1.604
25
+
26
+ Migration to @onemrvapublic/design-system library
27
+
28
+ ## 14.1.439
29
+
30
+ Initial version of ONEM/RVA toasts