@colijnit/sharedcomponents 1.0.23 → 1.0.25

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 (293) hide show
  1. package/.browserslistrc +16 -0
  2. package/.editorconfig +16 -0
  3. package/.vscode/extensions.json +4 -0
  4. package/.vscode/launch.json +20 -0
  5. package/.vscode/tasks.json +42 -0
  6. package/README.md +11 -8
  7. package/Sharedcomponents.iml +11 -0
  8. package/angular.json +133 -0
  9. package/karma.conf.js +44 -0
  10. package/move-assets.js +14 -0
  11. package/package.json +74 -26
  12. package/projects/sharedcomponents/.browserslistrc +16 -0
  13. package/projects/sharedcomponents/README.md +24 -0
  14. package/projects/sharedcomponents/karma.conf.js +44 -0
  15. package/projects/sharedcomponents/ng-package.json +17 -0
  16. package/projects/sharedcomponents/package.json +18 -0
  17. package/projects/sharedcomponents/src/lib/assets/dictionary/text.properties.ts +8 -0
  18. package/projects/sharedcomponents/src/lib/assets/icons/angle_left_solid.svg +1 -0
  19. package/projects/sharedcomponents/src/lib/assets/icons/angle_right_solid.svg +1 -0
  20. package/projects/sharedcomponents/src/lib/assets/icons/arrow_fat_right.svg +1 -0
  21. package/projects/sharedcomponents/src/lib/assets/icons/arrow_point_left.svg +8 -0
  22. package/projects/sharedcomponents/src/lib/assets/icons/arrow_point_right.svg +4 -0
  23. package/projects/sharedcomponents/src/lib/assets/icons/bring_forward_regular.svg +1 -0
  24. package/projects/sharedcomponents/src/lib/assets/icons/check_round.svg +1 -0
  25. package/projects/sharedcomponents/src/lib/assets/icons/delete_left_regular.svg +1 -0
  26. package/projects/sharedcomponents/src/lib/assets/icons/delivery_truck.svg +12 -0
  27. package/projects/sharedcomponents/src/lib/assets/icons/email.svg +5 -0
  28. package/projects/sharedcomponents/src/lib/assets/icons/pdf.svg +15 -0
  29. package/projects/sharedcomponents/src/lib/assets/icons/print.svg +10 -0
  30. package/projects/sharedcomponents/src/lib/assets/icons/signature_field.svg +9 -0
  31. package/projects/sharedcomponents/src/lib/assets/icons/xml.svg +9 -0
  32. package/projects/sharedcomponents/src/lib/components/circular-gauge/co-circular-gauge.component.ts +139 -0
  33. package/projects/sharedcomponents/src/lib/components/circular-gauge/co-circular-gauge.module.ts +19 -0
  34. package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_layout.scss +0 -0
  35. package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_material-definition.scss +0 -0
  36. package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/_theme.scss +0 -0
  37. package/{lib → projects/sharedcomponents/src/lib}/components/circular-gauge/style/material.scss +0 -0
  38. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-base-view.component.ts +68 -0
  39. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-day-view.component.ts +31 -0
  40. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-event.component.ts +67 -0
  41. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-events.component.ts +48 -0
  42. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-half-hour-cell.component.ts +81 -0
  43. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-header.component.ts +265 -0
  44. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-cell.component.ts +38 -0
  45. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-view-labels.component.ts +50 -0
  46. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-hour-view.component.ts +46 -0
  47. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-month-view.component.ts +65 -0
  48. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-view.component.ts +38 -0
  49. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-week-select-view.component.ts +63 -0
  50. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/agenda-week-view.component.ts +46 -0
  51. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_layout.scss +443 -0
  52. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_material-definition.scss +11 -0
  53. package/projects/sharedcomponents/src/lib/components/date-planning/component/agenda/style/_theme.scss +7 -0
  54. package/{lib/components/layout-switcher → projects/sharedcomponents/src/lib/components/date-planning/component/agenda}/style/material.scss +0 -0
  55. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-all-months.component.ts +37 -0
  56. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-all-years.component.ts +52 -0
  57. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-header.component.ts +124 -0
  58. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar-view.component.ts +201 -0
  59. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/calendar.component.ts +35 -0
  60. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_layout.scss +167 -0
  61. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_material-definition.scss +7 -0
  62. package/projects/sharedcomponents/src/lib/components/date-planning/component/calendar/style/_theme.scss +7 -0
  63. package/{lib/components/linear-gauge → projects/sharedcomponents/src/lib/components/date-planning/component/calendar}/style/material.scss +0 -0
  64. package/projects/sharedcomponents/src/lib/components/date-planning/date-planning.component.ts +133 -0
  65. package/projects/sharedcomponents/src/lib/components/date-planning/date-planning.module.ts +56 -0
  66. package/projects/sharedcomponents/src/lib/components/date-planning/style/_layout.scss +47 -0
  67. package/projects/sharedcomponents/src/lib/components/date-planning/style/_material-definition.scss +0 -0
  68. package/projects/sharedcomponents/src/lib/components/date-planning/style/_theme.scss +7 -0
  69. package/projects/sharedcomponents/src/lib/components/date-planning/style/material.scss +5 -0
  70. package/projects/sharedcomponents/src/lib/components/docsign/component/signature/signature.component.ts +82 -0
  71. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_layout.scss +0 -0
  72. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_material-definition.scss +0 -0
  73. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/_theme.scss +0 -0
  74. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signature/style/material.scss +0 -0
  75. package/projects/sharedcomponents/src/lib/components/docsign/component/signatures/signatures.component.ts +50 -0
  76. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_layout.scss +0 -0
  77. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_material-definition.scss +0 -0
  78. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/_theme.scss +0 -0
  79. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/component/signatures/style/material.scss +0 -0
  80. package/projects/sharedcomponents/src/lib/components/docsign/docsign.component.ts +252 -0
  81. package/projects/sharedcomponents/src/lib/components/docsign/docsign.module.ts +22 -0
  82. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_layout.scss +0 -0
  83. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_material-definition.scss +0 -0
  84. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/_theme.scss +0 -0
  85. package/{lib → projects/sharedcomponents/src/lib}/components/docsign/style/material.scss +0 -0
  86. package/projects/sharedcomponents/src/lib/components/key-pad/key-pad.component.ts +205 -0
  87. package/projects/sharedcomponents/src/lib/components/key-pad/key-pad.module.ts +19 -0
  88. package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_layout.scss +0 -0
  89. package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_material-definition.scss +0 -0
  90. package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/_theme.scss +0 -0
  91. package/{lib → projects/sharedcomponents/src/lib}/components/key-pad/style/material.scss +0 -0
  92. package/projects/sharedcomponents/src/lib/components/layout-switcher/layout-switcher.component.ts +98 -0
  93. package/projects/sharedcomponents/src/lib/components/layout-switcher/layout-switcher.module.ts +21 -0
  94. package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_layout.scss +0 -0
  95. package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_material-definition.scss +0 -0
  96. package/{lib → projects/sharedcomponents/src/lib}/components/layout-switcher/style/_theme.scss +0 -0
  97. package/projects/sharedcomponents/src/lib/components/layout-switcher/style/material.scss +5 -0
  98. package/projects/sharedcomponents/src/lib/components/linear-gauge/co-linear-gauge.component.ts +56 -0
  99. package/projects/sharedcomponents/src/lib/components/linear-gauge/co-linear-gauge.module.ts +17 -0
  100. package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_layout.scss +0 -0
  101. package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_material-definition.scss +0 -0
  102. package/{lib → projects/sharedcomponents/src/lib}/components/linear-gauge/style/_theme.scss +0 -0
  103. package/projects/sharedcomponents/src/lib/components/linear-gauge/style/material.scss +5 -0
  104. package/projects/sharedcomponents/src/lib/components/send-method-dialog/enums/send-option.ts +6 -0
  105. package/projects/sharedcomponents/src/lib/components/send-method-dialog/send-method-dialog.component.ts +342 -0
  106. package/projects/sharedcomponents/src/lib/components/send-method-dialog/send-method-dialog.module.ts +33 -0
  107. package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_layout.scss +0 -0
  108. package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_material-definition.scss +0 -0
  109. package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/_theme.scss +0 -0
  110. package/{lib → projects/sharedcomponents/src/lib}/components/send-method-dialog/style/material.scss +0 -0
  111. package/projects/sharedcomponents/src/lib/components/statusbar/statusbar.component.ts +97 -0
  112. package/projects/sharedcomponents/src/lib/components/statusbar/statusbar.module.ts +21 -0
  113. package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_layout.scss +0 -0
  114. package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_material-definition.scss +0 -0
  115. package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/_theme.scss +0 -0
  116. package/{lib → projects/sharedcomponents/src/lib}/components/statusbar/style/material.scss +0 -0
  117. package/projects/sharedcomponents/src/lib/components/stock/stock-in-order/stock-in-order.component.ts +0 -0
  118. package/projects/sharedcomponents/src/lib/components/stock/stock-information/stock-information.component.ts +64 -0
  119. package/projects/sharedcomponents/src/lib/components/stock/stock-information-grid/stock-information-grid.component.ts +384 -0
  120. package/projects/sharedcomponents/src/lib/components/stock/stock-location/stock-location.component.ts +84 -0
  121. package/{lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.d.ts → projects/sharedcomponents/src/lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.ts} +2 -2
  122. package/projects/sharedcomponents/src/lib/components/stock/stock-transfer/stock-change-amount.component.ts +73 -0
  123. package/projects/sharedcomponents/src/lib/components/stock/stock-transfer/stock-transfer.component.ts +153 -0
  124. package/projects/sharedcomponents/src/lib/components/stock/stock.component.ts +165 -0
  125. package/projects/sharedcomponents/src/lib/components/stock/stock.module.ts +51 -0
  126. package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_layout.scss +0 -0
  127. package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_material-definition.scss +0 -0
  128. package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/_theme.scss +0 -0
  129. package/{lib → projects/sharedcomponents/src/lib}/components/stock/style/material.scss +0 -0
  130. package/projects/sharedcomponents/src/lib/enum/calendar-view.enum.ts +6 -0
  131. package/{lib/enum/icon.enum.d.ts → projects/sharedcomponents/src/lib/enum/icon.enum.ts} +5 -2
  132. package/projects/sharedcomponents/src/lib/enum/keyboard-code.enum.ts +30 -0
  133. package/projects/sharedcomponents/src/lib/enum/language-code.enum.ts +6 -0
  134. package/projects/sharedcomponents/src/lib/enum/month.enum.ts +15 -0
  135. package/projects/sharedcomponents/src/lib/enum/time-period.enum.ts +9 -0
  136. package/projects/sharedcomponents/src/lib/factory/business-object-factory.ts +120 -0
  137. package/projects/sharedcomponents/src/lib/factory/decorators/boolean.decorator.ts +113 -0
  138. package/projects/sharedcomponents/src/lib/factory/decorators/complex-array.decorator.ts +61 -0
  139. package/projects/sharedcomponents/src/lib/factory/decorators/complex-field.decorator.ts +63 -0
  140. package/projects/sharedcomponents/src/lib/factory/decorators/date-field.decorator.ts +41 -0
  141. package/projects/sharedcomponents/src/lib/factory/decorators/string-number.decorator.ts +48 -0
  142. package/projects/sharedcomponents/src/lib/model/agenda-event-per-day.model.ts +6 -0
  143. package/projects/sharedcomponents/src/lib/model/agenda-event.model.ts +17 -0
  144. package/projects/sharedcomponents/src/lib/model/agenda-null-objects.ts +11 -0
  145. package/projects/sharedcomponents/src/lib/model/business-object.ts +85 -0
  146. package/projects/sharedcomponents/src/lib/model/constant/all-months.ts +17 -0
  147. package/projects/sharedcomponents/src/lib/model/date-range.ts +10 -0
  148. package/projects/sharedcomponents/src/lib/model/day.model.ts +9 -0
  149. package/projects/sharedcomponents/src/lib/model/icon-svg.ts +18 -0
  150. package/projects/sharedcomponents/src/lib/model/month.model.ts +11 -0
  151. package/projects/sharedcomponents/src/lib/model/time-window.bo.ts +21 -0
  152. package/projects/sharedcomponents/src/lib/model/week.model.ts +5 -0
  153. package/projects/sharedcomponents/src/lib/model/weekday.model.ts +17 -0
  154. package/projects/sharedcomponents/src/lib/pipe/array-number.pipe.ts +14 -0
  155. package/projects/sharedcomponents/src/lib/pipe/master-pipes.ts +7 -0
  156. package/projects/sharedcomponents/src/lib/pipe/ucfirst.pipe.ts +14 -0
  157. package/projects/sharedcomponents/src/lib/service/dictionary.service.ts +86 -0
  158. package/projects/sharedcomponents/src/lib/service/icon-cache.service.ts +51 -0
  159. package/projects/sharedcomponents/src/lib/service/options.service.ts +66 -0
  160. package/projects/sharedcomponents/src/lib/service/shared-connector.service.ts +258 -0
  161. package/projects/sharedcomponents/src/lib/service/shared-initializer.service.ts +29 -0
  162. package/projects/sharedcomponents/src/lib/service/shared.service.ts +21 -0
  163. package/projects/sharedcomponents/src/lib/service/stock.service.ts +95 -0
  164. package/{lib → projects/sharedcomponents/src/lib}/style/_mixin.scss +0 -0
  165. package/{lib → projects/sharedcomponents/src/lib}/style/_variables.scss +0 -0
  166. package/{lib → projects/sharedcomponents/src/lib}/style/sharedcomponents-globals.scss +0 -0
  167. package/projects/sharedcomponents/src/lib/utils/array-utils.ts +202 -0
  168. package/projects/sharedcomponents/src/lib/utils/calendar.utils.ts +75 -0
  169. package/projects/sharedcomponents/src/lib/utils/date-utils.ts +302 -0
  170. package/projects/sharedcomponents/src/lib/utils/function/not-nill.function.ts +4 -0
  171. package/projects/sharedcomponents/src/lib/utils/is-nill.function.ts +4 -0
  172. package/projects/sharedcomponents/src/lib/utils/string-utils.ts +67 -0
  173. package/{public-api.d.ts → projects/sharedcomponents/src/public-api.ts} +5 -0
  174. package/projects/sharedcomponents/src/test.ts +27 -0
  175. package/projects/sharedcomponents/tsconfig.lib.json +18 -0
  176. package/projects/sharedcomponents/tsconfig.lib.prod.json +10 -0
  177. package/projects/sharedcomponents/tsconfig.spec.json +17 -0
  178. package/script/merge-icons.js +39 -0
  179. package/src/app/app.component.scss +9 -0
  180. package/src/app/app.component.spec.ts +31 -0
  181. package/src/app/app.component.ts +156 -0
  182. package/src/app/app.module.ts +60 -0
  183. package/src/assets/.gitkeep +0 -0
  184. package/src/environments/environment.prod.ts +3 -0
  185. package/src/environments/environment.ts +16 -0
  186. package/src/favicon.ico +0 -0
  187. package/src/index.html +13 -0
  188. package/src/main.ts +12 -0
  189. package/src/polyfills.ts +53 -0
  190. package/src/styles.scss +40 -0
  191. package/src/test.ts +26 -0
  192. package/tsconfig.app.json +15 -0
  193. package/tsconfig.json +65 -0
  194. package/tsconfig.spec.json +18 -0
  195. package/bundles/colijnit-sharedcomponents.umd.js +0 -3701
  196. package/bundles/colijnit-sharedcomponents.umd.js.map +0 -1
  197. package/colijnit-sharedcomponents-1.0.23.tgz +0 -0
  198. package/colijnit-sharedcomponents.d.ts +0 -16
  199. package/colijnit-sharedcomponents.metadata.json +0 -1
  200. package/esm2015/colijnit-sharedcomponents.js +0 -17
  201. package/esm2015/lib/assets/dictionary/text.properties.js +0 -11
  202. package/esm2015/lib/components/circular-gauge/co-circular-gauge.component.js +0 -125
  203. package/esm2015/lib/components/circular-gauge/co-circular-gauge.module.js +0 -21
  204. package/esm2015/lib/components/docsign/component/signature/signature.component.js +0 -75
  205. package/esm2015/lib/components/docsign/component/signatures/signatures.component.js +0 -44
  206. package/esm2015/lib/components/docsign/docsign.component.js +0 -225
  207. package/esm2015/lib/components/docsign/docsign.module.js +0 -23
  208. package/esm2015/lib/components/key-pad/key-pad.component.js +0 -191
  209. package/esm2015/lib/components/key-pad/key-pad.module.js +0 -21
  210. package/esm2015/lib/components/layout-switcher/layout-switcher.component.js +0 -74
  211. package/esm2015/lib/components/layout-switcher/layout-switcher.module.js +0 -21
  212. package/esm2015/lib/components/linear-gauge/co-linear-gauge.component.js +0 -55
  213. package/esm2015/lib/components/linear-gauge/co-linear-gauge.module.js +0 -19
  214. package/esm2015/lib/components/send-method-dialog/enums/send-option.js +0 -8
  215. package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +0 -309
  216. package/esm2015/lib/components/send-method-dialog/send-method-dialog.module.js +0 -31
  217. package/esm2015/lib/components/statusbar/statusbar.component.js +0 -81
  218. package/esm2015/lib/components/statusbar/statusbar.module.js +0 -23
  219. package/esm2015/lib/components/stock/stock-information/stock-information.component.js +0 -54
  220. package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +0 -350
  221. package/esm2015/lib/components/stock/stock-location/stock-location.component.js +0 -62
  222. package/esm2015/lib/components/stock/stock-transfer/co-drop-down-list-fields.interface.js +0 -2
  223. package/esm2015/lib/components/stock/stock-transfer/stock-change-amount.component.js +0 -68
  224. package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +0 -130
  225. package/esm2015/lib/components/stock/stock.component.js +0 -140
  226. package/esm2015/lib/components/stock/stock.module.js +0 -48
  227. package/esm2015/lib/enum/icon.enum.js +0 -17
  228. package/esm2015/lib/enum/keyboard-code.enum.js +0 -32
  229. package/esm2015/lib/enum/language-code.enum.js +0 -8
  230. package/esm2015/lib/factory/business-object-factory.js +0 -120
  231. package/esm2015/lib/factory/decorators/boolean.decorator.js +0 -102
  232. package/esm2015/lib/factory/decorators/complex-array.decorator.js +0 -55
  233. package/esm2015/lib/factory/decorators/complex-field.decorator.js +0 -57
  234. package/esm2015/lib/factory/decorators/date-field.decorator.js +0 -36
  235. package/esm2015/lib/factory/decorators/string-number.decorator.js +0 -43
  236. package/esm2015/lib/model/business-object.js +0 -81
  237. package/esm2015/lib/model/icon-svg.js +0 -16
  238. package/esm2015/lib/service/dictionary.service.js +0 -76
  239. package/esm2015/lib/service/icon-cache.service.js +0 -51
  240. package/esm2015/lib/service/options.service.js +0 -71
  241. package/esm2015/lib/service/shared-connector.service.js +0 -278
  242. package/esm2015/lib/service/shared.service.js +0 -30
  243. package/esm2015/lib/service/stock.service.js +0 -95
  244. package/esm2015/lib/utils/array-utils.js +0 -183
  245. package/esm2015/lib/utils/is-nill.function.js +0 -5
  246. package/esm2015/lib/utils/string-utils.js +0 -64
  247. package/esm2015/public-api.js +0 -21
  248. package/fesm2015/colijnit-sharedcomponents.js +0 -3511
  249. package/fesm2015/colijnit-sharedcomponents.js.map +0 -1
  250. package/lib/assets/dictionary/text.properties.d.ts +0 -3
  251. package/lib/components/circular-gauge/co-circular-gauge.component.d.ts +0 -20
  252. package/lib/components/circular-gauge/co-circular-gauge.module.d.ts +0 -2
  253. package/lib/components/docsign/component/signature/signature.component.d.ts +0 -16
  254. package/lib/components/docsign/component/signatures/signatures.component.d.ts +0 -12
  255. package/lib/components/docsign/docsign.component.d.ts +0 -92
  256. package/lib/components/docsign/docsign.module.d.ts +0 -2
  257. package/lib/components/key-pad/key-pad.component.d.ts +0 -36
  258. package/lib/components/key-pad/key-pad.module.d.ts +0 -2
  259. package/lib/components/layout-switcher/layout-switcher.component.d.ts +0 -16
  260. package/lib/components/layout-switcher/layout-switcher.module.d.ts +0 -2
  261. package/lib/components/linear-gauge/co-linear-gauge.component.d.ts +0 -16
  262. package/lib/components/linear-gauge/co-linear-gauge.module.d.ts +0 -2
  263. package/lib/components/send-method-dialog/enums/send-option.d.ts +0 -6
  264. package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +0 -62
  265. package/lib/components/send-method-dialog/send-method-dialog.module.d.ts +0 -2
  266. package/lib/components/statusbar/statusbar.component.d.ts +0 -23
  267. package/lib/components/statusbar/statusbar.module.d.ts +0 -2
  268. package/lib/components/stock/stock-information/stock-information.component.d.ts +0 -10
  269. package/lib/components/stock/stock-information-grid/stock-information-grid.component.d.ts +0 -60
  270. package/lib/components/stock/stock-location/stock-location.component.d.ts +0 -15
  271. package/lib/components/stock/stock-transfer/stock-change-amount.component.d.ts +0 -18
  272. package/lib/components/stock/stock-transfer/stock-transfer.component.d.ts +0 -36
  273. package/lib/components/stock/stock.component.d.ts +0 -42
  274. package/lib/components/stock/stock.module.d.ts +0 -2
  275. package/lib/enum/keyboard-code.enum.d.ts +0 -30
  276. package/lib/enum/language-code.enum.d.ts +0 -6
  277. package/lib/factory/business-object-factory.d.ts +0 -23
  278. package/lib/factory/decorators/boolean.decorator.d.ts +0 -43
  279. package/lib/factory/decorators/complex-array.decorator.d.ts +0 -25
  280. package/lib/factory/decorators/complex-field.decorator.d.ts +0 -25
  281. package/lib/factory/decorators/date-field.decorator.d.ts +0 -17
  282. package/lib/factory/decorators/string-number.decorator.d.ts +0 -22
  283. package/lib/model/business-object.d.ts +0 -7
  284. package/lib/model/icon-svg.d.ts +0 -4
  285. package/lib/service/dictionary.service.d.ts +0 -21
  286. package/lib/service/icon-cache.service.d.ts +0 -18
  287. package/lib/service/options.service.d.ts +0 -13
  288. package/lib/service/shared-connector.service.d.ts +0 -43
  289. package/lib/service/shared.service.d.ts +0 -8
  290. package/lib/service/stock.service.d.ts +0 -38
  291. package/lib/utils/array-utils.d.ts +0 -57
  292. package/lib/utils/is-nill.function.d.ts +0 -1
  293. package/lib/utils/string-utils.d.ts +0 -22
@@ -0,0 +1,16 @@
1
+ # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2
+ # For additional information regarding the format and rule options, please see:
3
+ # https://github.com/browserslist/browserslist#queries
4
+
5
+ # For the full list of supported browsers by the Angular framework, please see:
6
+ # https://angular.io/guide/browser-support
7
+
8
+ # You can see what browsers were selected by your queries by running:
9
+ # npx browserslist
10
+
11
+ last 1 Chrome version
12
+ last 1 Firefox version
13
+ last 2 Edge major versions
14
+ last 2 Safari major versions
15
+ last 2 iOS major versions
16
+ Firefox ESR
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,4 @@
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3
+ "recommendations": ["angular.ng-template"]
4
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3
+ "version": "0.2.0",
4
+ "configurations": [
5
+ {
6
+ "name": "ng serve",
7
+ "type": "pwa-chrome",
8
+ "request": "launch",
9
+ "preLaunchTask": "npm: start",
10
+ "url": "http://localhost:4200/"
11
+ },
12
+ {
13
+ "name": "ng test",
14
+ "type": "chrome",
15
+ "request": "launch",
16
+ "preLaunchTask": "npm: test",
17
+ "url": "http://localhost:9876/debug.html"
18
+ }
19
+ ]
20
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3
+ "version": "2.0.0",
4
+ "tasks": [
5
+ {
6
+ "type": "npm",
7
+ "script": "start",
8
+ "isBackground": true,
9
+ "problemMatcher": {
10
+ "owner": "typescript",
11
+ "pattern": "$tsc",
12
+ "background": {
13
+ "activeOnStart": true,
14
+ "beginsPattern": {
15
+ "regexp": "(.*?)"
16
+ },
17
+ "endsPattern": {
18
+ "regexp": "bundle generation complete"
19
+ }
20
+ }
21
+ }
22
+ },
23
+ {
24
+ "type": "npm",
25
+ "script": "test",
26
+ "isBackground": true,
27
+ "problemMatcher": {
28
+ "owner": "typescript",
29
+ "pattern": "$tsc",
30
+ "background": {
31
+ "activeOnStart": true,
32
+ "beginsPattern": {
33
+ "regexp": "(.*?)"
34
+ },
35
+ "endsPattern": {
36
+ "regexp": "bundle generation complete"
37
+ }
38
+ }
39
+ }
40
+ }
41
+ ]
42
+ }
package/README.md CHANGED
@@ -1,23 +1,26 @@
1
1
  # Sharedcomponents
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0.
3
+ This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.4.
4
+
5
+ ## Development server
6
+
7
+ Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
4
8
 
5
9
  ## Code scaffolding
6
10
 
7
- Run `ng generate component component-name --project sharedcomponents` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project sharedcomponents`.
8
- > Note: Don't forget to add `--project sharedcomponents` or else it will be added to the default project in your `angular.json` file.
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`.
9
12
 
10
13
  ## Build
11
14
 
12
- Run `ng build sharedcomponents` to build the project. The build artifacts will be stored in the `dist/` directory.
15
+ Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
13
16
 
14
- ## Publishing
17
+ ## Running unit tests
15
18
 
16
- After building your library with `ng build sharedcomponents`, go to the dist folder `cd dist/sharedcomponents` and run `npm publish`.
19
+ Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
17
20
 
18
- ## Running unit tests
21
+ ## Running end-to-end tests
19
22
 
20
- Run `ng test sharedcomponents` to execute the unit tests via [Karma](https://karma-runner.github.io).
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.
21
24
 
22
25
  ## Further help
23
26
 
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+ <exclude-output />
5
+ <content url="file://$MODULE_DIR$">
6
+ <excludeFolder url="file://$MODULE_DIR$/dist" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="sourceFolder" forTests="false" />
10
+ </component>
11
+ </module>
package/angular.json ADDED
@@ -0,0 +1,133 @@
1
+ {
2
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
+ "version": 1,
4
+ "newProjectRoot": "projects",
5
+ "projects": {
6
+ "Sharedcomponents": {
7
+ "projectType": "application",
8
+ "schematics": {
9
+ "@schematics/angular:application": {
10
+ "strict": true,
11
+ "style": "scss"
12
+ }
13
+ },
14
+ "root": "",
15
+ "sourceRoot": "src",
16
+ "prefix": "app",
17
+ "architect": {
18
+ "build": {
19
+ "builder": "@angular-devkit/build-angular:browser",
20
+ "options": {
21
+ "outputPath": "dist/sharedcomponents",
22
+ "index": "src/index.html",
23
+ "main": "src/main.ts",
24
+ "polyfills": "src/polyfills.ts",
25
+ "tsConfig": "tsconfig.app.json",
26
+ "assets": [
27
+ "src/favicon.ico",
28
+ "src/assets"
29
+ ],
30
+ "styles": [
31
+ "src/styles.scss"
32
+ ],
33
+ "stylePreprocessorOptions": {
34
+ "includePaths": [
35
+ "node_modules/@syncfusion",
36
+ "node_modules/@colijnit",
37
+ "projects/sharedcomponents/src/lib"
38
+ ]
39
+ },
40
+ "scripts": []
41
+ },
42
+ "configurations": {
43
+ "production": {
44
+ "fileReplacements": [
45
+ {
46
+ "replace": "src/environments/environment.ts",
47
+ "with": "src/environments/environment.prod.ts"
48
+ }
49
+ ],
50
+ "outputHashing": "all"
51
+ },
52
+ "development": {
53
+ "buildOptimizer": false,
54
+ "optimization": false,
55
+ "vendorChunk": true,
56
+ "extractLicenses": false,
57
+ "sourceMap": true,
58
+ "namedChunks": true
59
+ }
60
+ },
61
+ "defaultConfiguration": "production"
62
+ },
63
+ "serve": {
64
+ "builder": "@angular-devkit/build-angular:dev-server",
65
+ "configurations": {
66
+ "production": {
67
+ "browserTarget": "Sharedcomponents:build:production"
68
+ },
69
+ "development": {
70
+ "browserTarget": "Sharedcomponents:build:development"
71
+ }
72
+ },
73
+ "defaultConfiguration": "development"
74
+ },
75
+ "extract-i18n": {
76
+ "builder": "@angular-devkit/build-angular:extract-i18n",
77
+ "options": {
78
+ "browserTarget": "Sharedcomponents:build"
79
+ }
80
+ },
81
+ "test": {
82
+ "builder": "@angular-devkit/build-angular:karma",
83
+ "options": {
84
+ "main": "src/test.ts",
85
+ "polyfills": "src/polyfills.ts",
86
+ "tsConfig": "tsconfig.spec.json",
87
+ "karmaConfig": "karma.conf.js",
88
+ "assets": [
89
+ "src/favicon.ico",
90
+ "src/assets"
91
+ ],
92
+ "styles": [
93
+ "src/styles.scss"
94
+ ],
95
+ "scripts": []
96
+ }
97
+ }
98
+ }
99
+ },
100
+ "sharedcomponents": {
101
+ "projectType": "library",
102
+ "root": "projects/sharedcomponents",
103
+ "sourceRoot": "projects/sharedcomponents/src",
104
+ "prefix": "lib",
105
+ "architect": {
106
+ "build": {
107
+ "builder": "@angular-devkit/build-angular:ng-packagr",
108
+ "options": {
109
+ "project": "projects/sharedcomponents/ng-package.json"
110
+ },
111
+ "configurations": {
112
+ "production": {
113
+ "tsConfig": "projects/sharedcomponents/tsconfig.lib.prod.json"
114
+ },
115
+ "development": {
116
+ "tsConfig": "projects/sharedcomponents/tsconfig.lib.json"
117
+ }
118
+ },
119
+ "defaultConfiguration": "production"
120
+ },
121
+ "test": {
122
+ "builder": "@angular-devkit/build-angular:karma",
123
+ "options": {
124
+ "main": "projects/sharedcomponents/src/test.ts",
125
+ "tsConfig": "projects/sharedcomponents/tsconfig.spec.json",
126
+ "karmaConfig": "projects/sharedcomponents/karma.conf.js"
127
+ }
128
+ }
129
+ }
130
+ }
131
+ },
132
+ "defaultProject": "Sharedcomponents"
133
+ }
package/karma.conf.js ADDED
@@ -0,0 +1,44 @@
1
+ // Karma configuration file, see link for more information
2
+ // https://karma-runner.github.io/1.0/config/configuration-file.html
3
+
4
+ module.exports = function (config) {
5
+ config.set({
6
+ basePath: '',
7
+ frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
+ plugins: [
9
+ require('karma-jasmine'),
10
+ require('karma-chrome-launcher'),
11
+ require('karma-jasmine-html-reporter'),
12
+ require('karma-coverage'),
13
+ require('@angular-devkit/build-angular/plugins/karma')
14
+ ],
15
+ client: {
16
+ jasmine: {
17
+ // you can add configuration options for Jasmine here
18
+ // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
+ // for example, you can disable the random execution with `random: false`
20
+ // or set a specific seed with `seed: 4321`
21
+ },
22
+ clearContext: false // leave Jasmine Spec Runner output visible in browser
23
+ },
24
+ jasmineHtmlReporter: {
25
+ suppressAll: true // removes the duplicated traces
26
+ },
27
+ coverageReporter: {
28
+ dir: require('path').join(__dirname, './coverage/sharedcomponents'),
29
+ subdir: '.',
30
+ reporters: [
31
+ { type: 'html' },
32
+ { type: 'text-summary' }
33
+ ]
34
+ },
35
+ reporters: ['progress', 'kjhtml'],
36
+ port: 9876,
37
+ colors: true,
38
+ logLevel: config.LOG_INFO,
39
+ autoWatch: true,
40
+ browsers: ['Chrome'],
41
+ singleRun: false,
42
+ restartOnFileChange: true
43
+ });
44
+ };
package/move-assets.js ADDED
@@ -0,0 +1,14 @@
1
+ var fs = require('fs-extra')
2
+
3
+ var oldSrcPath = 'dist/sharedcomponents/src';
4
+ var oldPath = 'dist/sharedcomponents/src/lib';
5
+ var newPath = 'dist/sharedcomponents/lib';
6
+
7
+ const copyLibFolder = async () => {
8
+ await fs.copy(oldPath, newPath, function (err) {
9
+ if (err) throw err;
10
+ fs.rmSync(oldSrcPath, { recursive: true, force: true });
11
+ console.log('Successfully moved assets!')
12
+ });
13
+ }
14
+ copyLibFolder();
package/package.json CHANGED
@@ -1,26 +1,74 @@
1
- {
2
- "name": "@colijnit/sharedcomponents",
3
- "version": "1.0.23",
4
- "private": false,
5
- "dependencies": {
6
- "@colijnit/sharedapi": "^1.0.1",
7
- "tslib": "^2.3.0"
8
- },
9
- "peerDependencies": {
10
- "@angular/common": "^12.2.0",
11
- "@angular/core": "^12.2.0",
12
- "pdf-lib": "^1.17.1",
13
- "pdfjs-dist": "^2.12.313",
14
- "rxjs": "~7.4.0",
15
- "signature_pad": "^4.0.2",
16
- "zone.js": "~0.11.4"
17
- },
18
- "main": "bundles/colijnit-sharedcomponents.umd.js",
19
- "module": "fesm2015/colijnit-sharedcomponents.js",
20
- "es2015": "fesm2015/colijnit-sharedcomponents.js",
21
- "esm2015": "esm2015/colijnit-sharedcomponents.js",
22
- "fesm2015": "fesm2015/colijnit-sharedcomponents.js",
23
- "typings": "colijnit-sharedcomponents.d.ts",
24
- "metadata": "colijnit-sharedcomponents.metadata.json",
25
- "sideEffects": false
26
- }
1
+ {
2
+ "name": "@colijnit/sharedcomponents",
3
+ "version": "1.0.25",
4
+ "scripts": {
5
+ "ng": "ng",
6
+ "start": "ng serve",
7
+ "build": "ng build",
8
+ "watch": "ng build --watch --configuration development",
9
+ "package": "ng build && ng-packagr -p projects/sharedcomponents/ng-package.json && npm run postPackage",
10
+ "postPackage": "node move-assets",
11
+ "test": "ng test"
12
+ },
13
+ "private": false,
14
+ "dependencies": {
15
+ "@angular/animations": "^12.2.0",
16
+ "@angular/cdk": "^12.2.0",
17
+ "@angular/common": "^12.2.0",
18
+ "@angular/compiler": "^12.2.0",
19
+ "@angular/core": "^12.2.0",
20
+ "@angular/forms": "^12.2.0",
21
+ "@angular/platform-browser": "^12.2.0",
22
+ "@angular/platform-browser-dynamic": "^12.2.0",
23
+ "@angular/router": "^12.2.0",
24
+ "@colijnit/articleapi": "^1.0.15",
25
+ "@colijnit/sharedapi": "^1.0.7",
26
+ "@colijnit/corecomponents_v12": "^12.0.66",
27
+ "@syncfusion/ej2-angular-buttons": "~19.3.44",
28
+ "@syncfusion/ej2-angular-calendars": "~19.3.44",
29
+ "@syncfusion/ej2-angular-circulargauge": "^19.3.45",
30
+ "@syncfusion/ej2-angular-dropdowns": "~19.3.45",
31
+ "@syncfusion/ej2-angular-grids": "~19.3.45",
32
+ "@syncfusion/ej2-angular-inputs": "~19.3.44",
33
+ "@syncfusion/ej2-angular-kanban": "~19.3.45",
34
+ "@syncfusion/ej2-angular-lists": "~19.3.45",
35
+ "@syncfusion/ej2-angular-navigations": "~19.3.45",
36
+ "@syncfusion/ej2-angular-pivotview": "~19.3.44",
37
+ "@syncfusion/ej2-angular-popups": "~19.3.43",
38
+ "@syncfusion/ej2-angular-richtexteditor": "~19.3.45",
39
+ "@syncfusion/ej2-angular-schedule": "~19.3.44",
40
+ "@syncfusion/ej2-angular-splitbuttons": "~19.3.45",
41
+ "@syncfusion/ej2-base": "~19.3.43",
42
+ "@syncfusion/ej2-popups": "~19.3.43",
43
+ "@types/hammerjs": "2.0.35",
44
+ "@types/three": "0.126.0",
45
+ "@tweenjs/tween.js": "^17.2.0",
46
+ "hammerjs": "^2.0.8",
47
+ "three": "0.126.0",
48
+ "moment": "^2.22.2",
49
+ "pdf-lib": "^1.17.1",
50
+ "pdfjs-dist": "^2.12.313",
51
+ "rxjs": "~7.4.0",
52
+ "signature_pad": "^4.0.2",
53
+ "tslib": "^2.3.0",
54
+ "zone.js": "~0.11.4"
55
+ },
56
+ "devDependencies": {
57
+ "@angular-devkit/build-angular": "^12.2.0",
58
+ "@angular/cli": "^12.2.0",
59
+ "@angular/compiler-cli": "^12.2.0",
60
+ "@types/jasmine": "~3.10.0",
61
+ "@types/node": "^12.11.1",
62
+ "jasmine-core": "~3.10.0",
63
+ "karma": "~6.3.0",
64
+ "karma-chrome-launcher": "~3.1.0",
65
+ "karma-coverage": "~2.1.0",
66
+ "karma-jasmine": "~4.0.0",
67
+ "karma-jasmine-html-reporter": "~1.7.0",
68
+ "ng-packagr": "^12.1.1",
69
+ "typescript": "~4.3.5"
70
+ },
71
+ "peerDependencies": {
72
+ "@colijnit/corecomponents_v12": "^12.0.21"
73
+ }
74
+ }
@@ -0,0 +1,16 @@
1
+ # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2
+ # For additional information regarding the format and rule options, please see:
3
+ # https://github.com/browserslist/browserslist#queries
4
+
5
+ # For the full list of supported browsers by the Angular framework, please see:
6
+ # https://angular.io/guide/browser-support
7
+
8
+ # You can see what browsers were selected by your queries by running:
9
+ # npx browserslist
10
+
11
+ last 1 Chrome version
12
+ last 1 Firefox version
13
+ last 2 Edge major versions
14
+ last 2 Safari major versions
15
+ last 2 iOS major versions
16
+ Firefox ESR
@@ -0,0 +1,24 @@
1
+ # Sharedcomponents
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project sharedcomponents` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project sharedcomponents`.
8
+ > Note: Don't forget to add `--project sharedcomponents` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build sharedcomponents` 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 sharedcomponents`, go to the dist folder `cd dist/sharedcomponents` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test sharedcomponents` 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,44 @@
1
+ // Karma configuration file, see link for more information
2
+ // https://karma-runner.github.io/1.0/config/configuration-file.html
3
+
4
+ module.exports = function (config) {
5
+ config.set({
6
+ basePath: '',
7
+ frameworks: ['jasmine', '@angular-devkit/build-angular'],
8
+ plugins: [
9
+ require('karma-jasmine'),
10
+ require('karma-chrome-launcher'),
11
+ require('karma-jasmine-html-reporter'),
12
+ require('karma-coverage'),
13
+ require('@angular-devkit/build-angular/plugins/karma')
14
+ ],
15
+ client: {
16
+ jasmine: {
17
+ // you can add configuration options for Jasmine here
18
+ // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
19
+ // for example, you can disable the random execution with `random: false`
20
+ // or set a specific seed with `seed: 4321`
21
+ },
22
+ clearContext: false // leave Jasmine Spec Runner output visible in browser
23
+ },
24
+ jasmineHtmlReporter: {
25
+ suppressAll: true // removes the duplicated traces
26
+ },
27
+ coverageReporter: {
28
+ dir: require('path').join(__dirname, '../../coverage/sharedcomponents'),
29
+ subdir: '.',
30
+ reporters: [
31
+ { type: 'html' },
32
+ { type: 'text-summary' }
33
+ ]
34
+ },
35
+ reporters: ['progress', 'kjhtml'],
36
+ port: 9876,
37
+ colors: true,
38
+ logLevel: config.LOG_INFO,
39
+ autoWatch: true,
40
+ browsers: ['Chrome'],
41
+ singleRun: false,
42
+ restartOnFileChange: true
43
+ });
44
+ };
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/sharedcomponents",
4
+ "allowedNonPeerDependencies": [
5
+ "."
6
+ ],
7
+ "lib": {
8
+ "entryFile": "src/public-api.ts",
9
+ "styleIncludePaths": [
10
+ "../../node_modules/@syncfusion",
11
+ "../../node_modules/@colijnit"
12
+ ]
13
+ },
14
+ "assets": [
15
+ "**/*.scss"
16
+ ]
17
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@colijnit/sharedcomponents",
3
+ "version": "1.0.25",
4
+ "private": false,
5
+ "dependencies": {
6
+ "@colijnit/sharedapi": "^1.0.1"
7
+ },
8
+ "peerDependencies": {
9
+ "@angular/common": "^12.2.0",
10
+ "@angular/core": "^12.2.0",
11
+ "pdf-lib": "^1.17.1",
12
+ "pdfjs-dist": "^2.12.313",
13
+ "rxjs": "~7.4.0",
14
+ "signature_pad": "^4.0.2",
15
+ "tslib": "^2.3.0",
16
+ "zone.js": "~0.11.4"
17
+ }
18
+ }
@@ -0,0 +1,8 @@
1
+ export class Dictionary {
2
+ public strings: {} = {
3
+ "nl": {},
4
+ "de": {},
5
+ "fr": {},
6
+ "en": {},
7
+ };
8
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path fill="#183153" d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path fill="#183153" d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="37.5 25 25.2 12.7 25.2 20.35 12.5 20.35 12.5 29.66 25.2 29.66 25.2 37.3 37.5 25" fill="#484f60"/></svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <path fill="#484F5F" d="M31.9,36.7l-14.7-9.6C17.1,27,17,26.9,17,26.7v-2.4c0-0.2,0.1-0.3,0.2-0.4l14.7-9.6c0.2-0.2,0.5-0.1,0.7,0.1
6
+ l1.4,2.1c0.2,0.2,0.1,0.5-0.1,0.7l-12,7.8c-0.3,0.2-0.3,0.6,0,0.8l12,7.8c0.2,0.2,0.3,0.5,0.1,0.7l-1.4,2.1
7
+ C32.4,36.8,32.1,36.8,31.9,36.7z"/>
8
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 51 51" enable-background="new 0 0 51 51">
2
+ <path fill="#484F5F"
3
+ d="M19.1,14.3l14.7,9.6c0.1,0.1,0.2,0.2,0.2,0.4v2.4c0,0.2-0.1,0.3-0.2,0.4l-14.7,9.6c-0.2,0.2-0.5,0.1-0.7-0.1l-1.4-2.1c-0.2-0.2-0.1-0.5,0.1-0.7l12-7.8c0.3-0.2,0.3-0.6,0-0.8l-12-7.8c-0.2-0.2-0.3-0.5-0.1-0.7l1.4-2.1C18.6,14.2,18.9,14.2,19.1,14.3z"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Pro 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path fill="#183153" d="M224 464H448C456.8 464 464 456.8 464 448V224C464 215.2 456.8 208 448 208H384V160H448C483.3 160 512 188.7 512 224V448C512 483.3 483.3 512 448 512H224C188.7 512 160 483.3 160 448V384H208V448C208 456.8 215.2 464 224 464zM64 352C28.65 352 0 323.3 0 288V64C0 28.65 28.65 0 64 0H288C323.3 0 352 28.65 352 64V288C352 323.3 323.3 352 288 352H64z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,10A15,15,0,1,0,40,25,15,15,0,0,0,25,10ZM23,34l-6.24-9.09,2.81-3.59L23,26.45,27.66,16h5.58Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M432.1 208.1L385.9 256L432.1 303C442.3 312.4 442.3 327.6 432.1 336.1C423.6 346.3 408.4 346.3 399 336.1L352 289.9L304.1 336.1C295.6 346.3 280.4 346.3 271 336.1C261.7 327.6 261.7 312.4 271 303L318.1 256L271 208.1C261.7 199.6 261.7 184.4 271 175C280.4 165.7 295.6 165.7 304.1 175L352 222.1L399 175C408.4 165.7 423.6 165.7 432.1 175C442.3 184.4 442.3 199.6 432.1 208.1V208.1zM512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H205.3C188.3 448 172 441.3 160 429.3L9.372 278.6C3.371 272.6 0 264.5 0 256C0 247.5 3.372 239.4 9.372 233.4L160 82.75C172 70.74 188.3 64 205.3 64L512 64zM528 128C528 119.2 520.8 112 512 112H205.3C201 112 196.9 113.7 193.9 116.7L54.63 256L193.9 395.3C196.9 398.3 201 400 205.3 400H512C520.8 400 528 392.8 528 384V128z"/></svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <rect x="15.35" y="16.56" width="15.14" height="10.94" transform="translate(-1.83 2.08) rotate(-5)" fill="#484f60"/>
3
+ <path
4
+ d="M38.5,18.1l-6.9.61L32.41,28l-7.63.67a3.76,3.76,0,0,1,1.43,2.25l7.25-.63A3.83,3.83,0,0,1,41,29.6l1-.1-.52-6Zm.29,5.84-3.91.34a.51.51,0,0,1-.55-.46L34,20.1a.49.49,0,0,1,.45-.54l2.27-.2a.5.5,0,0,1,.48.25l2,3.59A.5.5,0,0,1,38.79,23.94Z"
5
+ fill="#484f60"/>
6
+ <path d="M19.66,29.09a3.8,3.8,0,0,0-1,2.46l-.74.07-1.82-.94L16,29.41Z" fill="#484f60"/>
7
+ <path d="M34.56,30.62a2.74,2.74,0,1,0,2.49-3A2.73,2.73,0,0,0,34.56,30.62Z" fill="#484f60"/>
8
+ <path d="M19.74,31.91a2.74,2.74,0,1,0,2.49-3A2.74,2.74,0,0,0,19.74,31.91Z" fill="#484f60"/>
9
+ <rect x="7.96" y="17.63" width="5" height="1" transform="translate(-1.54 0.98) rotate(-5)" fill="#484f60"/>
10
+ <rect x="11.02" y="29.71" width="3" height="1" transform="translate(-2.59 1.21) rotate(-5)" fill="#484f60"/>
11
+ <rect x="9.48" y="23.53" width="4" height="1" transform="matrix(1, -0.09, 0.09, 1, -2.05, 1.09)" fill="#484f60"/>
12
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <path
3
+ d="M31.79,38.45A17.82,17.82,0,0,1,23.86,40,13.09,13.09,0,0,1,10.41,26.42C10.41,17.63,16.83,10,26.53,10c7.63,0,13.06,5.21,13.06,12.46,0,6.33-3.53,10.3-8.19,10.3a3.42,3.42,0,0,1-3.71-3.32h-.08A6.5,6.5,0,0,1,22,32.76c-2.75,0-4.82-2.11-4.82-5.65a9.85,9.85,0,0,1,10.13-10,12.89,12.89,0,0,1,5.13,1l-1.3,8c-.43,2.54-.13,3.71,1.08,3.75,1.85.09,4.18-2.28,4.18-7.28,0-5.65-3.62-10-10.3-10S13.73,17.76,13.73,26c0,7.25,4.57,11.3,11,11.3A14.81,14.81,0,0,0,31,36ZM28,20.65a5.34,5.34,0,0,0-1.33-.18c-2.85,0-5.09,2.81-5.09,6.12,0,1.64.73,2.68,2.16,2.68,1.59,0,3.27-2,3.66-4.53Z"
4
+ fill="#484f60"/>
5
+ </svg>