@colijnit/corecomponents_v12 12.2.24 → 12.2.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 (1277) hide show
  1. package/.browserslistrc +17 -0
  2. package/.editorconfig +16 -0
  3. package/.idea/CoreComponents_v12.iml +12 -0
  4. package/.idea/misc.xml +9 -0
  5. package/.idea/modules.xml +8 -0
  6. package/.idea/vcs.xml +6 -0
  7. package/CoreComponents_v12.iml +12 -0
  8. package/README.md +12 -9
  9. package/angular.json +149 -0
  10. package/dist/corecomponentstest/favicon.ico +0 -0
  11. package/dist/corecomponentstest/index.html +13 -0
  12. package/dist/corecomponentstest/main.js +24187 -0
  13. package/dist/corecomponentstest/main.js.map +1 -0
  14. package/dist/corecomponentstest/polyfills.js +2891 -0
  15. package/dist/corecomponentstest/polyfills.js.map +1 -0
  16. package/dist/corecomponentstest/runtime.js +161 -0
  17. package/dist/corecomponentstest/runtime.js.map +1 -0
  18. package/dist/corecomponentstest/styles.css +2926 -0
  19. package/dist/corecomponentstest/styles.css.map +1 -0
  20. package/dist/corecomponentstest/vendor.js +118790 -0
  21. package/dist/corecomponentstest/vendor.js.map +1 -0
  22. package/karma.conf.js +44 -0
  23. package/move-assets.js +14 -0
  24. package/package.json +43 -22
  25. package/projects/corecomponents/README.md +24 -0
  26. package/projects/corecomponents/karma.conf.js +44 -0
  27. package/projects/corecomponents/ng-package.json +10 -0
  28. package/projects/corecomponents/package-lock.json +13 -0
  29. package/projects/corecomponents/package.json +19 -0
  30. package/projects/corecomponents/src/lib/components/article-tile/article-tile.component.ts +95 -0
  31. package/projects/corecomponents/src/lib/components/article-tile/article-tile.module.ts +34 -0
  32. package/projects/corecomponents/src/lib/components/base/base-input.component.ts +988 -0
  33. package/projects/corecomponents/src/lib/components/base/base.module.ts +22 -0
  34. package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.component.ts +120 -0
  35. package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.module.ts +19 -0
  36. package/projects/corecomponents/src/lib/components/base/dialog-base.component.ts +8 -0
  37. package/projects/corecomponents/src/lib/components/base-input-date-picker/base-input-date-picker.directive.ts +32 -0
  38. package/projects/corecomponents/src/lib/components/base-input-time/base-input-time-directive.ts +31 -0
  39. package/projects/corecomponents/src/lib/components/button/button.component.ts +117 -0
  40. package/projects/corecomponents/src/lib/components/button/button.module.ts +18 -0
  41. package/projects/corecomponents/src/lib/components/calendar/calendar-template.component.ts +392 -0
  42. package/projects/corecomponents/src/lib/components/calendar/calendar.component.ts +54 -0
  43. package/projects/corecomponents/src/lib/components/calendar/calendar.module.ts +26 -0
  44. package/projects/corecomponents/src/lib/components/card/card.component.ts +94 -0
  45. package/projects/corecomponents/src/lib/components/card/card.module.ts +34 -0
  46. package/projects/corecomponents/src/lib/components/carousel/carousel.component.ts +128 -0
  47. package/projects/corecomponents/src/lib/components/carousel/carousel.module.ts +28 -0
  48. package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.component.ts +392 -0
  49. package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.module.ts +17 -0
  50. package/projects/corecomponents/src/lib/components/carousel-3d/carouselItem.ts +77 -0
  51. package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.component.ts +99 -0
  52. package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.module.ts +18 -0
  53. package/projects/corecomponents/src/lib/components/co-dialog/animation.ts +2 -0
  54. package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.component.ts +130 -0
  55. package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.module.ts +17 -0
  56. package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.component.ts +50 -0
  57. package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.module.ts +15 -0
  58. package/projects/corecomponents/src/lib/components/collapsible/collapsible.component.ts +114 -0
  59. package/projects/corecomponents/src/lib/components/collapsible/collapsible.module.ts +17 -0
  60. package/projects/corecomponents/src/lib/components/color-picker/color-picker.component.ts +40 -0
  61. package/projects/corecomponents/src/lib/components/color-picker/color-picker.module.ts +19 -0
  62. package/projects/corecomponents/src/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.ts +86 -0
  63. package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.module.ts +37 -0
  64. package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.service.ts +61 -0
  65. package/projects/corecomponents/src/lib/components/core-dialog/core-dynamic-component.service.ts +101 -0
  66. package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.component.ts +102 -0
  67. package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.module.ts +23 -0
  68. package/projects/corecomponents/src/lib/components/filter-item/filter-item-viewmodel.ts +20 -0
  69. package/projects/corecomponents/src/lib/components/filter-item/filter-item.component.ts +715 -0
  70. package/projects/corecomponents/src/lib/components/filter-item/filter-item.module.ts +42 -0
  71. package/projects/corecomponents/src/lib/components/filter-item/filter-viewmodel.ts +11 -0
  72. package/projects/corecomponents/src/lib/components/form/form.component.ts +211 -0
  73. package/projects/corecomponents/src/lib/components/form/form.module.ts +22 -0
  74. package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.component.ts +62 -0
  75. package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.module.ts +21 -0
  76. package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.component.ts +28 -0
  77. package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.module.ts +17 -0
  78. package/projects/corecomponents/src/lib/components/icon/icon-cache.service.ts +57 -0
  79. package/projects/corecomponents/src/lib/components/icon/icon.component.ts +54 -0
  80. package/projects/corecomponents/src/lib/components/icon/icon.module.ts +24 -0
  81. package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.component.ts +75 -0
  82. package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.module.ts +21 -0
  83. package/projects/corecomponents/src/lib/components/image/image.component.ts +51 -0
  84. package/projects/corecomponents/src/lib/components/image/image.module.ts +12 -0
  85. package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.component.ts +85 -0
  86. package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.module.ts +17 -0
  87. package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.component.ts +103 -0
  88. package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.module.ts +24 -0
  89. package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.component.ts +155 -0
  90. package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.module.ts +25 -0
  91. package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.component.ts +378 -0
  92. package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.module.ts +20 -0
  93. package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.component.ts +86 -0
  94. package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.module.ts +17 -0
  95. package/projects/corecomponents/src/lib/components/input-scanner/bar-code-scanner.ts +25 -0
  96. package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.component.ts +89 -0
  97. package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.module.ts +19 -0
  98. package/projects/corecomponents/src/lib/components/input-scanner/scanner.service.ts +28 -0
  99. package/projects/corecomponents/src/lib/components/input-search/input-search.component.ts +85 -0
  100. package/projects/corecomponents/src/lib/components/input-search/input-search.module.ts +20 -0
  101. package/projects/corecomponents/src/lib/components/input-text/input-text.component.ts +294 -0
  102. package/projects/corecomponents/src/lib/components/input-text/input-text.module.ts +31 -0
  103. package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.component.ts +81 -0
  104. package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.module.ts +25 -0
  105. package/projects/corecomponents/src/lib/components/input-time/input-time.component.ts +72 -0
  106. package/projects/corecomponents/src/lib/components/input-time/input-time.module.ts +22 -0
  107. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator-level.enum.ts +5 -0
  108. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.component.ts +42 -0
  109. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.module.ts +13 -0
  110. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-multiselect-popup.component.ts +132 -0
  111. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-popup.component.ts +281 -0
  112. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.component.ts +257 -0
  113. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.module.ts +35 -0
  114. package/projects/corecomponents/src/lib/components/loader/loader.component.ts +82 -0
  115. package/projects/corecomponents/src/lib/components/loader/loader.module.ts +17 -0
  116. package/projects/corecomponents/src/lib/components/pagination/paginate.pipe.ts +116 -0
  117. package/projects/corecomponents/src/lib/components/pagination/pagination-instance.ts +18 -0
  118. package/projects/corecomponents/src/lib/components/pagination/pagination.component.ts +160 -0
  119. package/projects/corecomponents/src/lib/components/pagination/pagination.module.ts +26 -0
  120. package/projects/corecomponents/src/lib/components/pagination/pagination.service.ts +99 -0
  121. package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.component.ts +178 -0
  122. package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.module.ts +17 -0
  123. package/projects/corecomponents/src/lib/components/popup/const/popup-window-token.ts +4 -0
  124. package/projects/corecomponents/src/lib/components/popup/interface/popup-button.ts +14 -0
  125. package/projects/corecomponents/src/lib/components/popup/interface/popup-close-event.ts +8 -0
  126. package/projects/corecomponents/src/lib/components/popup/interface/popup-settings.ts +70 -0
  127. package/projects/corecomponents/src/lib/components/popup/interface/popup.ts +17 -0
  128. package/projects/corecomponents/src/lib/components/popup/model/popup-button-globals.ts +11 -0
  129. package/projects/corecomponents/src/lib/components/popup/model/popup-window.ts +51 -0
  130. package/projects/corecomponents/src/lib/components/popup/popup-buttons.component.ts +61 -0
  131. package/projects/corecomponents/src/lib/components/popup/popup-message-display.component.ts +49 -0
  132. package/projects/corecomponents/src/lib/components/popup/popup-window-shell.component.ts +222 -0
  133. package/projects/corecomponents/src/lib/components/popup/popup.module.ts +48 -0
  134. package/projects/corecomponents/src/lib/components/popup/service/popup-shower.service.ts +98 -0
  135. package/projects/corecomponents/src/lib/components/popup/service/prompt.service.ts +127 -0
  136. package/projects/corecomponents/src/lib/components/popup/text-input-popup.component.ts +36 -0
  137. package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.component.ts +24 -0
  138. package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.module.ts +17 -0
  139. package/projects/corecomponents/src/lib/components/simple-grid/base-simple-grid.component.ts +194 -0
  140. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-cell.component.ts +192 -0
  141. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-column.directive.ts +143 -0
  142. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.component.ts +489 -0
  143. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.module.ts +38 -0
  144. package/projects/corecomponents/src/lib/components/tile/tile.component.ts +71 -0
  145. package/projects/corecomponents/src/lib/components/tile/tile.module.ts +21 -0
  146. package/projects/corecomponents/src/lib/components/tile-select/tile-select.component.ts +36 -0
  147. package/projects/corecomponents/src/lib/components/tile-select/tile-select.module.ts +19 -0
  148. package/projects/corecomponents/src/lib/components/tooltip/tooltip.component.ts +96 -0
  149. package/projects/corecomponents/src/lib/components/tooltip/tooltip.module.ts +17 -0
  150. package/projects/corecomponents/src/lib/components/validation-error/validation-error.component.ts +45 -0
  151. package/projects/corecomponents/src/lib/components/validation-error/validation-error.module.ts +24 -0
  152. package/projects/corecomponents/src/lib/components/view-mode-buttons/content-view-mode.enum.ts +9 -0
  153. package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.component.ts +63 -0
  154. package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.module.ts +19 -0
  155. package/projects/corecomponents/src/lib/core/abstract/collection-based-component.ts +488 -0
  156. package/projects/corecomponents/src/lib/core/config/device-environment.ts +26 -0
  157. package/projects/corecomponents/src/lib/core/constant/default-upper-bound-for-range-components.ts +4 -0
  158. package/projects/corecomponents/src/lib/core/constant/java-max-int.ts +1 -0
  159. package/projects/corecomponents/src/lib/core/constant/number-inputs-key-down-white-list.ts +46 -0
  160. package/projects/corecomponents/src/lib/core/decorator/input-boolean.decorator.ts +35 -0
  161. package/projects/corecomponents/src/lib/core/enum/co-direction.ts +7 -0
  162. package/projects/corecomponents/src/lib/core/enum/co-document-image-display-kind.enum.ts +5 -0
  163. package/projects/corecomponents/src/lib/core/enum/co-document-type.enum.ts +9 -0
  164. package/projects/corecomponents/src/lib/core/enum/co-orientation.ts +18 -0
  165. package/projects/corecomponents/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +10 -0
  166. package/projects/corecomponents/src/lib/core/enum/color-sequence-name.enum.ts +5 -0
  167. package/projects/corecomponents/src/lib/core/enum/core-components-icon.enum.ts +299 -0
  168. package/projects/corecomponents/src/lib/core/enum/file-type-internal.enum.ts +15 -0
  169. package/projects/corecomponents/src/lib/core/enum/file-type.enum.ts +9 -0
  170. package/projects/corecomponents/src/lib/core/enum/filterItem-mode.enum.ts +57 -0
  171. package/projects/corecomponents/src/lib/core/enum/float-label-type.enum.ts +5 -0
  172. package/projects/corecomponents/src/lib/core/enum/input-number-picker-show-mode.enum.ts +6 -0
  173. package/projects/corecomponents/src/lib/core/enum/input-text-type.enum.ts +4 -0
  174. package/projects/corecomponents/src/lib/core/enum/keyboard-code.enum.ts +72 -0
  175. package/projects/corecomponents/src/lib/core/enum/keyboard-key.enum.ts +78 -0
  176. package/projects/corecomponents/src/lib/core/enum/logical-operator-type.enum.ts +5 -0
  177. package/projects/corecomponents/src/lib/core/enum/object-right-type.enum.ts +5 -0
  178. package/projects/corecomponents/src/lib/core/enum/popup-button-type.enum.ts +10 -0
  179. package/projects/corecomponents/src/lib/core/enum/popup-type.enum.ts +9 -0
  180. package/projects/corecomponents/src/lib/core/enum/schedule-view.enum.ts +14 -0
  181. package/projects/corecomponents/src/lib/core/enum/search-data-type.ts +4 -0
  182. package/projects/corecomponents/src/lib/core/enum/search-property-state.ts +5 -0
  183. package/projects/corecomponents/src/lib/core/enum/sort-data-type.ts +6 -0
  184. package/projects/corecomponents/src/lib/core/enum/sort-direction.ts +9 -0
  185. package/projects/corecomponents/src/lib/core/enum/table-name.enum.ts +79 -0
  186. package/projects/corecomponents/src/lib/core/enum/value-comparison-type.ts +11 -0
  187. package/projects/corecomponents/src/lib/core/function/any-nill.function.ts +6 -0
  188. package/projects/corecomponents/src/lib/core/function/is-nill.function.ts +4 -0
  189. package/projects/corecomponents/src/lib/core/function/none-nill.function.ts +16 -0
  190. package/projects/corecomponents/src/lib/core/function/not-nill.function.ts +4 -0
  191. package/projects/corecomponents/src/lib/core/interface/search-property.ts +15 -0
  192. package/projects/corecomponents/src/lib/core/interface/sort-property.ts +16 -0
  193. package/projects/corecomponents/src/lib/core/model/bounds-constrained-number-value.ts +222 -0
  194. package/projects/corecomponents/src/lib/core/model/check-precision-and-scale-result.ts +5 -0
  195. package/projects/corecomponents/src/lib/core/model/check-within-stepped-bounds-result.ts +8 -0
  196. package/projects/corecomponents/src/lib/core/model/co-document-right.bo.ts +9 -0
  197. package/projects/corecomponents/src/lib/core/model/co-document.bo.ts +193 -0
  198. package/projects/corecomponents/src/lib/core/model/color-sequence.ts +39 -0
  199. package/projects/corecomponents/src/lib/core/model/color.ts +29 -0
  200. package/projects/corecomponents/src/lib/core/model/core-components-icon-svg.ts +299 -0
  201. package/projects/corecomponents/src/lib/core/model/element-position.ts +14 -0
  202. package/projects/corecomponents/src/lib/core/model/event/number-prompt-result-event.ts +10 -0
  203. package/projects/corecomponents/src/lib/core/model/event/string-prompt-result-event.ts +10 -0
  204. package/projects/corecomponents/src/lib/core/model/numerical-range.ts +19 -0
  205. package/projects/corecomponents/src/lib/core/service/form-input-user-change-listener.service.ts +31 -0
  206. package/projects/corecomponents/src/lib/core/service/form-master.service.ts +119 -0
  207. package/projects/corecomponents/src/lib/core/service/ng-zone-wrapper.service.ts +15 -0
  208. package/projects/corecomponents/src/lib/core/utils/array-utils.spec.ts +588 -0
  209. package/projects/corecomponents/src/lib/core/utils/array-utils.ts +301 -0
  210. package/projects/corecomponents/src/lib/core/utils/browser-utils.ts +123 -0
  211. package/projects/corecomponents/src/lib/core/utils/business-object-utils.ts +42 -0
  212. package/projects/corecomponents/src/lib/core/utils/css-utils.ts +276 -0
  213. package/projects/corecomponents/src/lib/core/utils/direction-enum-utils.ts +15 -0
  214. package/projects/corecomponents/src/lib/core/utils/element-ref.utils.ts +12 -0
  215. package/projects/corecomponents/src/lib/core/utils/event-utils.ts +61 -0
  216. package/projects/corecomponents/src/lib/core/utils/file-utils.ts +291 -0
  217. package/projects/corecomponents/src/lib/core/utils/number-utils.spec.ts +657 -0
  218. package/projects/corecomponents/src/lib/core/utils/number-utils.ts +350 -0
  219. package/projects/corecomponents/src/lib/core/utils/object-utils.ts +205 -0
  220. package/projects/corecomponents/src/lib/core/utils/parameter-value-conversion-utils.ts +116 -0
  221. package/projects/corecomponents/src/lib/core/utils/search-utils.ts +121 -0
  222. package/projects/corecomponents/src/lib/core/utils/sort-utils.ts +108 -0
  223. package/projects/corecomponents/src/lib/core/utils/string-utils.ts +100 -0
  224. package/projects/corecomponents/src/lib/core/validator/email.validator.ts +10 -0
  225. package/projects/corecomponents/src/lib/core/validator/equal.validator.ts +14 -0
  226. package/projects/corecomponents/src/lib/core/validator/max-string-length.validator.ts +11 -0
  227. package/projects/corecomponents/src/lib/core/validator/password.validator.ts +35 -0
  228. package/projects/corecomponents/src/lib/core/validator/precision-scale.validator.ts +14 -0
  229. package/projects/corecomponents/src/lib/core/validator/required.validator.ts +9 -0
  230. package/projects/corecomponents/src/lib/directives/align-with/align-with.directive.ts +158 -0
  231. package/projects/corecomponents/src/lib/directives/align-with/align-with.module.ts +13 -0
  232. package/projects/corecomponents/src/lib/directives/clickoutside/click-outside-master.service.ts +64 -0
  233. package/projects/corecomponents/src/lib/directives/clickoutside/click-outside.directive.ts +72 -0
  234. package/projects/corecomponents/src/lib/directives/clickoutside/clickoutside.module.ts +17 -0
  235. package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.directive.ts +55 -0
  236. package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.module.ts +13 -0
  237. package/projects/corecomponents/src/lib/directives/overlay/overlay-parent.directive.ts +20 -0
  238. package/projects/corecomponents/src/lib/directives/overlay/overlay.directive.ts +170 -0
  239. package/projects/corecomponents/src/lib/directives/overlay/overlay.module.ts +16 -0
  240. package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.directive.ts +42 -0
  241. package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.module.ts +13 -0
  242. package/projects/corecomponents/src/lib/directives/resize/resize-detect.directive.ts +54 -0
  243. package/projects/corecomponents/src/lib/directives/resize/resize-detect.module.ts +13 -0
  244. package/projects/corecomponents/src/lib/directives/ripple/ripple-ref.ts +28 -0
  245. package/projects/corecomponents/src/lib/directives/ripple/ripple-renderer.ts +217 -0
  246. package/projects/corecomponents/src/lib/directives/ripple/ripple.directive.ts +116 -0
  247. package/projects/corecomponents/src/lib/directives/ripple/ripple.module.ts +24 -0
  248. package/projects/corecomponents/src/lib/directives/ripple/scroll-dispatcher.service.ts +129 -0
  249. package/projects/corecomponents/src/lib/directives/ripple/scrollable.directive.ts +37 -0
  250. package/projects/corecomponents/src/lib/directives/ripple/viewport-ruler.service.ts +84 -0
  251. package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.directive.ts +170 -0
  252. package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.module.ts +16 -0
  253. package/projects/corecomponents/src/lib/directives/stopclick/stop-click.directive.ts +35 -0
  254. package/projects/corecomponents/src/lib/directives/stopclick/stop-click.module.ts +14 -0
  255. package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.directive.ts +71 -0
  256. package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.module.ts +13 -0
  257. package/projects/corecomponents/src/lib/directives/tooltip/tooltip-directive.module.ts +17 -0
  258. package/projects/corecomponents/src/lib/directives/tooltip/tooltip.directive.ts +94 -0
  259. package/projects/corecomponents/src/lib/interfaces/dialog-response.interface.ts +7 -0
  260. package/projects/corecomponents/src/lib/interfaces/lov-options.component.interface.ts +4 -0
  261. package/projects/corecomponents/src/lib/interfaces/scanner-input.interface.ts +3 -0
  262. package/projects/corecomponents/src/lib/interfaces/screen-config-adapter-component-interface-name.ts +6 -0
  263. package/projects/corecomponents/src/lib/interfaces/screen-config-adapter.component.interface.ts +10 -0
  264. package/projects/corecomponents/src/lib/model/data-item.ts +9 -0
  265. package/projects/corecomponents/src/lib/model/enum/app-button-type.enum.ts +9 -0
  266. package/projects/corecomponents/src/lib/model/enum/app-popup-type.enum.ts +6 -0
  267. package/projects/corecomponents/src/lib/model/enum/currency-code.enum.ts +7 -0
  268. package/projects/corecomponents/src/lib/model/enum/language-code.enum.ts +8 -0
  269. package/projects/corecomponents/src/lib/model/map/currencies.map.ts +6 -0
  270. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.component.ts +115 -0
  271. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.css +34 -0
  272. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-manager.service.ts +414 -0
  273. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop.module.ts +20 -0
  274. package/projects/corecomponents/src/lib/modules/drag-drop/draggable.directive.ts +70 -0
  275. package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drag-event.ts +5 -0
  276. package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drop-event.ts +9 -0
  277. package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +7 -0
  278. package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container.ts +9 -0
  279. package/projects/corecomponents/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +5 -0
  280. package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.module.ts +14 -0
  281. package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.service.ts +36 -0
  282. package/projects/corecomponents/src/lib/modules/pagination/paginate.pipe.ts +116 -0
  283. package/projects/corecomponents/src/lib/modules/pagination/pagination-instance.ts +18 -0
  284. package/projects/corecomponents/src/lib/modules/pagination/pagination.component.ts +229 -0
  285. package/projects/corecomponents/src/lib/modules/pagination/pagination.module.ts +25 -0
  286. package/projects/corecomponents/src/lib/modules/pagination/pagination.service.ts +98 -0
  287. package/projects/corecomponents/src/lib/pipes/append.pipe.module.ts +13 -0
  288. package/projects/corecomponents/src/lib/pipes/append.pipe.ts +17 -0
  289. package/projects/corecomponents/src/lib/pipes/co-currency-pipe.module.ts +13 -0
  290. package/projects/corecomponents/src/lib/pipes/co-currency.pipe.ts +45 -0
  291. package/projects/corecomponents/src/lib/pipes/emun-keys.pipe.ts +20 -0
  292. package/projects/corecomponents/src/lib/pipes/enum-keys-pipe.module.ts +13 -0
  293. package/projects/corecomponents/src/lib/pipes/file-type-image-pipe.module.ts +13 -0
  294. package/projects/corecomponents/src/lib/pipes/file-type-image.pipe.ts +45 -0
  295. package/projects/corecomponents/src/lib/pipes/filter.pipe.module.ts +13 -0
  296. package/projects/corecomponents/src/lib/pipes/filter.pipe.ts +14 -0
  297. package/projects/corecomponents/src/lib/pipes/master-pipe.module.ts +13 -0
  298. package/projects/corecomponents/src/lib/pipes/master.pipe.ts +71 -0
  299. package/projects/corecomponents/src/lib/pipes/prepend.pipe.module.ts +13 -0
  300. package/projects/corecomponents/src/lib/pipes/prepend.pipe.ts +17 -0
  301. package/projects/corecomponents/src/lib/pipes/price-display-pipe.module.ts +14 -0
  302. package/projects/corecomponents/src/lib/pipes/price-display.pipe.ts +20 -0
  303. package/projects/corecomponents/src/lib/pipes/safe-style.pipe.module.ts +13 -0
  304. package/projects/corecomponents/src/lib/pipes/safe-style.pipe.ts +14 -0
  305. package/projects/corecomponents/src/lib/pipes/ucfirst-pipe.module.ts +13 -0
  306. package/projects/corecomponents/src/lib/pipes/ucfirst.pipe.ts +14 -0
  307. package/projects/corecomponents/src/lib/service/base-module-screen-config.service.ts +241 -0
  308. package/projects/corecomponents/src/lib/service/base-module.service.ts +50 -0
  309. package/projects/corecomponents/src/lib/service/color-sequence.service.ts +20 -0
  310. package/projects/corecomponents/src/lib/service/overlay.service.ts +81 -0
  311. package/projects/corecomponents/src/lib/translation/core-components-translation.module.ts +27 -0
  312. package/projects/corecomponents/src/lib/translation/core-components-translation.service.ts +15 -0
  313. package/projects/corecomponents/src/lib/translation/core-dictionary.service.ts +27 -0
  314. package/projects/corecomponents/src/lib/translation/core-localize.pipe.ts +21 -0
  315. package/projects/corecomponents/src/public-api.ts +137 -0
  316. package/projects/corecomponents/src/res/icons/Barcode.svg +1 -0
  317. package/projects/corecomponents/src/res/icons/CashRegister.svg +1 -0
  318. package/projects/corecomponents/src/res/icons/CirclePlusSkinny.svg +1 -0
  319. package/projects/corecomponents/src/res/icons/CrossSkinny.svg +1 -0
  320. package/projects/corecomponents/src/res/icons/FolderArrow.svg +1 -0
  321. package/projects/corecomponents/src/res/icons/Home.svg +1 -0
  322. package/projects/corecomponents/src/res/icons/POS.svg +1 -0
  323. package/projects/corecomponents/src/res/icons/Shop.svg +1 -0
  324. package/projects/corecomponents/src/res/icons/SinglePerson.svg +1 -0
  325. package/projects/corecomponents/src/res/icons/Star.svg +1 -0
  326. package/projects/corecomponents/src/res/icons/TrashBin.svg +1 -0
  327. package/projects/corecomponents/src/res/icons/account.svg +1 -0
  328. package/projects/corecomponents/src/res/icons/account_round_open.svg +1 -0
  329. package/projects/corecomponents/src/res/icons/activities.svg +1 -0
  330. package/projects/corecomponents/src/res/icons/add_to_cart_drop.svg +1 -0
  331. package/projects/corecomponents/src/res/icons/arrow_down.svg +1 -0
  332. package/projects/corecomponents/src/res/icons/arrow_fat_left.svg +1 -0
  333. package/projects/corecomponents/src/res/icons/arrow_fat_right.svg +1 -0
  334. package/projects/corecomponents/src/res/icons/arrow_left.svg +4 -0
  335. package/projects/corecomponents/src/res/icons/arrow_left_round_open.svg +1 -0
  336. package/projects/corecomponents/src/res/icons/arrow_point_down.svg +6 -0
  337. package/projects/corecomponents/src/res/icons/arrow_point_left.svg +8 -0
  338. package/projects/corecomponents/src/res/icons/arrow_point_right.svg +8 -0
  339. package/projects/corecomponents/src/res/icons/arrow_point_up.svg +8 -0
  340. package/projects/corecomponents/src/res/icons/arrow_right_round_open.svg +1 -0
  341. package/projects/corecomponents/src/res/icons/arrow_scroll_down.svg +6 -0
  342. package/projects/corecomponents/src/res/icons/arrow_scroll_left.svg +22 -0
  343. package/projects/corecomponents/src/res/icons/arrow_scroll_right.svg +22 -0
  344. package/projects/corecomponents/src/res/icons/arrow_scroll_up.svg +6 -0
  345. package/projects/corecomponents/src/res/icons/arrow_up.svg +3 -0
  346. package/projects/corecomponents/src/res/icons/article.svg +1 -0
  347. package/projects/corecomponents/src/res/icons/article_with_fold.svg +1 -0
  348. package/projects/corecomponents/src/res/icons/asterisk_small.svg +1 -0
  349. package/projects/corecomponents/src/res/icons/attachments.svg +1 -0
  350. package/projects/corecomponents/src/res/icons/back_to_top.svg +1 -0
  351. package/projects/corecomponents/src/res/icons/big_mac.svg +6 -0
  352. package/projects/corecomponents/src/res/icons/boxes.svg +1 -0
  353. package/projects/corecomponents/src/res/icons/brush.svg +1 -0
  354. package/projects/corecomponents/src/res/icons/brush_round_open.svg +1 -0
  355. package/projects/corecomponents/src/res/icons/building_columns.svg +1 -0
  356. package/projects/corecomponents/src/res/icons/businessrules.svg +1 -0
  357. package/projects/corecomponents/src/res/icons/calendar.svg +1 -0
  358. package/projects/corecomponents/src/res/icons/calendar_day.svg +37 -0
  359. package/projects/corecomponents/src/res/icons/calendar_day_regular.svg +1 -0
  360. package/projects/corecomponents/src/res/icons/calendar_empty.svg +16 -0
  361. package/projects/corecomponents/src/res/icons/calendar_range.svg +1 -0
  362. package/projects/corecomponents/src/res/icons/calendar_round_open.svg +16 -0
  363. package/projects/corecomponents/src/res/icons/camera.svg +1 -0
  364. package/projects/corecomponents/src/res/icons/cancel.svg +1 -0
  365. package/projects/corecomponents/src/res/icons/cancel_round_filled.svg +1 -0
  366. package/projects/corecomponents/src/res/icons/cancel_round_open.svg +1 -0
  367. package/projects/corecomponents/src/res/icons/cart.svg +1 -0
  368. package/projects/corecomponents/src/res/icons/cart_open.svg +8 -0
  369. package/projects/corecomponents/src/res/icons/case_manager.svg +1 -0
  370. package/projects/corecomponents/src/res/icons/cash_register_simple.svg +1 -0
  371. package/projects/corecomponents/src/res/icons/change_location.svg +1 -0
  372. package/projects/corecomponents/src/res/icons/check.svg +1 -0
  373. package/projects/corecomponents/src/res/icons/check_duotone.svg +1 -0
  374. package/projects/corecomponents/src/res/icons/check_round.svg +1 -0
  375. package/projects/corecomponents/src/res/icons/check_round_open.svg +10 -0
  376. package/projects/corecomponents/src/res/icons/check_simple.svg +3 -0
  377. package/projects/corecomponents/src/res/icons/check_thin.svg +1 -0
  378. package/projects/corecomponents/src/res/icons/chevron_down_regular.svg +1 -0
  379. package/projects/corecomponents/src/res/icons/chevron_up_regular.svg +1 -0
  380. package/projects/corecomponents/src/res/icons/client.svg +1 -0
  381. package/projects/corecomponents/src/res/icons/clock.svg +1 -0
  382. package/projects/corecomponents/src/res/icons/clockArrow.svg +1 -0
  383. package/projects/corecomponents/src/res/icons/cogWheelPlus.svg +1 -0
  384. package/projects/corecomponents/src/res/icons/cogWheels.svg +1 -0
  385. package/projects/corecomponents/src/res/icons/column_options.svg +18 -0
  386. package/projects/corecomponents/src/res/icons/company.svg +1 -0
  387. package/projects/corecomponents/src/res/icons/company_flat.svg +4 -0
  388. package/projects/corecomponents/src/res/icons/configurable.svg +1 -0
  389. package/projects/corecomponents/src/res/icons/consultant.svg +1 -0
  390. package/projects/corecomponents/src/res/icons/copy.svg +1 -0
  391. package/projects/corecomponents/src/res/icons/crosshair_1.svg +1 -0
  392. package/projects/corecomponents/src/res/icons/dashboard.svg +1 -0
  393. package/projects/corecomponents/src/res/icons/delivery_method.svg +32 -0
  394. package/projects/corecomponents/src/res/icons/delivery_status_uncheck.svg +9 -0
  395. package/projects/corecomponents/src/res/icons/delivery_truck.svg +1 -0
  396. package/projects/corecomponents/src/res/icons/detail_record.svg +1 -0
  397. package/projects/corecomponents/src/res/icons/detail_view.svg +1 -0
  398. package/projects/corecomponents/src/res/icons/dictionary.svg +1 -0
  399. package/projects/corecomponents/src/res/icons/documentWrench.svg +1 -0
  400. package/projects/corecomponents/src/res/icons/documents.svg +1 -0
  401. package/projects/corecomponents/src/res/icons/dollar.svg +1 -0
  402. package/projects/corecomponents/src/res/icons/download.svg +1 -0
  403. package/projects/corecomponents/src/res/icons/dropdown.svg +4 -0
  404. package/projects/corecomponents/src/res/icons/dropzone.svg +1 -0
  405. package/projects/corecomponents/src/res/icons/edit_pencil.svg +1 -0
  406. package/projects/corecomponents/src/res/icons/edit_pencil_circle.svg +1 -0
  407. package/projects/corecomponents/src/res/icons/edit_pencil_round.svg +11 -0
  408. package/projects/corecomponents/src/res/icons/edit_pencil_simple.svg +16 -0
  409. package/projects/corecomponents/src/res/icons/email.svg +1 -0
  410. package/projects/corecomponents/src/res/icons/email_round_open.svg +6 -0
  411. package/projects/corecomponents/src/res/icons/employee.svg +1 -0
  412. package/projects/corecomponents/src/res/icons/employee_two.svg +1 -0
  413. package/projects/corecomponents/src/res/icons/employer.svg +1 -0
  414. package/projects/corecomponents/src/res/icons/employment.svg +1 -0
  415. package/projects/corecomponents/src/res/icons/employment_end.svg +7 -0
  416. package/projects/corecomponents/src/res/icons/equal.svg +1 -0
  417. package/projects/corecomponents/src/res/icons/euro.svg +1 -0
  418. package/projects/corecomponents/src/res/icons/exclamation.svg +1 -0
  419. package/projects/corecomponents/src/res/icons/exclamation_round_open.svg +1 -0
  420. package/projects/corecomponents/src/res/icons/eye_circle.svg +1 -0
  421. package/projects/corecomponents/src/res/icons/eye_circle_large.svg +1 -0
  422. package/projects/corecomponents/src/res/icons/eye_round_filled.svg +11 -0
  423. package/projects/corecomponents/src/res/icons/factory.svg +1 -0
  424. package/projects/corecomponents/src/res/icons/fasttrack.svg +1 -0
  425. package/projects/corecomponents/src/res/icons/filter.svg +1 -0
  426. package/projects/corecomponents/src/res/icons/finish.svg +1 -0
  427. package/projects/corecomponents/src/res/icons/fixed_option_value_tree.svg +1 -0
  428. package/projects/corecomponents/src/res/icons/fixed_tree_option_value.svg +1 -0
  429. package/projects/corecomponents/src/res/icons/floppy_disk_solid.svg +1 -0
  430. package/projects/corecomponents/src/res/icons/folder_arrow_in.svg +8 -0
  431. package/projects/corecomponents/src/res/icons/formula.svg +1 -0
  432. package/projects/corecomponents/src/res/icons/fullscreen.svg +6 -0
  433. package/projects/corecomponents/src/res/icons/gear_double.svg +21 -0
  434. package/projects/corecomponents/src/res/icons/global_search.svg +45 -0
  435. package/projects/corecomponents/src/res/icons/globe.svg +1 -0
  436. package/projects/corecomponents/src/res/icons/greater_than.svg +1 -0
  437. package/projects/corecomponents/src/res/icons/groupby.svg +1 -0
  438. package/projects/corecomponents/src/res/icons/hamburger.svg +1 -0
  439. package/projects/corecomponents/src/res/icons/hand_pointer.svg +1 -0
  440. package/projects/corecomponents/src/res/icons/hbarchart.svg +6 -0
  441. package/projects/corecomponents/src/res/icons/home_circle.svg +9 -0
  442. package/projects/corecomponents/src/res/icons/home_open.svg +7 -0
  443. package/projects/corecomponents/src/res/icons/home_round_open.svg +11 -0
  444. package/projects/corecomponents/src/res/icons/hourglass.svg +1 -0
  445. package/projects/corecomponents/src/res/icons/icon_3d.svg +1 -0
  446. package/projects/corecomponents/src/res/icons/id.svg +1 -0
  447. package/projects/corecomponents/src/res/icons/image.svg +1 -0
  448. package/projects/corecomponents/src/res/icons/incoming_storage.svg +1 -0
  449. package/projects/corecomponents/src/res/icons/information.svg +1 -0
  450. package/projects/corecomponents/src/res/icons/information_round_open.svg +6 -0
  451. package/projects/corecomponents/src/res/icons/input_multiplechoice.svg +1 -0
  452. package/projects/corecomponents/src/res/icons/input_text.svg +1 -0
  453. package/projects/corecomponents/src/res/icons/input_textarea.svg +1 -0
  454. package/projects/corecomponents/src/res/icons/inventory.svg +1 -0
  455. package/projects/corecomponents/src/res/icons/invoice.svg +20 -0
  456. package/projects/corecomponents/src/res/icons/ione_logo.svg +1 -0
  457. package/projects/corecomponents/src/res/icons/ione_logo_fat.svg +1 -0
  458. package/projects/corecomponents/src/res/icons/ione_status_next.svg +43 -0
  459. package/projects/corecomponents/src/res/icons/ione_workflow.svg +62 -0
  460. package/projects/corecomponents/src/res/icons/keyboard.svg +1 -0
  461. package/projects/corecomponents/src/res/icons/keychain.svg +1 -0
  462. package/projects/corecomponents/src/res/icons/label.svg +5 -0
  463. package/projects/corecomponents/src/res/icons/label_round_open.svg +6 -0
  464. package/projects/corecomponents/src/res/icons/landmark_flag.svg +1 -0
  465. package/projects/corecomponents/src/res/icons/library.svg +21 -0
  466. package/projects/corecomponents/src/res/icons/linechart.svg +1 -0
  467. package/projects/corecomponents/src/res/icons/link_circle.svg +1 -0
  468. package/projects/corecomponents/src/res/icons/linked_products.svg +1 -0
  469. package/projects/corecomponents/src/res/icons/list_view.svg +8 -0
  470. package/projects/corecomponents/src/res/icons/location.svg +1 -0
  471. package/projects/corecomponents/src/res/icons/lock.svg +1 -0
  472. package/projects/corecomponents/src/res/icons/lock_round_open.svg +8 -0
  473. package/projects/corecomponents/src/res/icons/logo.svg +1 -0
  474. package/projects/corecomponents/src/res/icons/logout.svg +1 -0
  475. package/projects/corecomponents/src/res/icons/magic_wand.svg +1 -0
  476. package/projects/corecomponents/src/res/icons/magnifier.svg +5 -0
  477. package/projects/corecomponents/src/res/icons/manager.svg +12 -0
  478. package/projects/corecomponents/src/res/icons/mask.svg +1 -0
  479. package/projects/corecomponents/src/res/icons/master_detail.svg +1 -0
  480. package/projects/corecomponents/src/res/icons/material_circle_large.svg +1 -0
  481. package/projects/corecomponents/src/res/icons/medal_bronze.svg +23 -0
  482. package/projects/corecomponents/src/res/icons/medal_gold.svg +23 -0
  483. package/projects/corecomponents/src/res/icons/medal_silver.svg +23 -0
  484. package/projects/corecomponents/src/res/icons/medical_officer.svg +14 -0
  485. package/projects/corecomponents/src/res/icons/microphone.svg +1 -0
  486. package/projects/corecomponents/src/res/icons/minus_round_open.svg +1 -0
  487. package/projects/corecomponents/src/res/icons/minus_simple.svg +1 -0
  488. package/projects/corecomponents/src/res/icons/mobile.svg +1 -0
  489. package/projects/corecomponents/src/res/icons/multi_select_check.svg +10 -0
  490. package/projects/corecomponents/src/res/icons/new_task.svg +1 -0
  491. package/projects/corecomponents/src/res/icons/not_equal.svg +4 -0
  492. package/projects/corecomponents/src/res/icons/note.svg +1 -0
  493. package/projects/corecomponents/src/res/icons/note_bordered.svg +1 -0
  494. package/projects/corecomponents/src/res/icons/notification.svg +1 -0
  495. package/projects/corecomponents/src/res/icons/option.svg +1 -0
  496. package/projects/corecomponents/src/res/icons/optionset.svg +1 -0
  497. package/projects/corecomponents/src/res/icons/order.svg +1 -0
  498. package/projects/corecomponents/src/res/icons/orderpicking.svg +1 -0
  499. package/projects/corecomponents/src/res/icons/outgoing_storage.svg +1 -0
  500. package/projects/corecomponents/src/res/icons/over_booking.svg +1 -0
  501. package/projects/corecomponents/src/res/icons/pause_circle.svg +12 -0
  502. package/projects/corecomponents/src/res/icons/pen_to_square_solid.svg +1 -0
  503. package/projects/corecomponents/src/res/icons/pencil_round_open.svg +10 -0
  504. package/projects/corecomponents/src/res/icons/phone.svg +1 -0
  505. package/projects/corecomponents/src/res/icons/phone_round_open.svg +10 -0
  506. package/projects/corecomponents/src/res/icons/piechart.svg +24 -0
  507. package/projects/corecomponents/src/res/icons/pin.svg +9 -0
  508. package/projects/corecomponents/src/res/icons/pin_round_open.svg +11 -0
  509. package/projects/corecomponents/src/res/icons/play_circle.svg +1 -0
  510. package/projects/corecomponents/src/res/icons/plus_round.svg +9 -0
  511. package/projects/corecomponents/src/res/icons/plus_round_open.svg +1 -0
  512. package/projects/corecomponents/src/res/icons/plus_simple.svg +1 -0
  513. package/projects/corecomponents/src/res/icons/plus_skinny.svg +8 -0
  514. package/projects/corecomponents/src/res/icons/plus_solid.svg +1 -0
  515. package/projects/corecomponents/src/res/icons/plus_stars.svg +1 -0
  516. package/projects/corecomponents/src/res/icons/pointer.svg +7 -0
  517. package/projects/corecomponents/src/res/icons/pointer_3d.svg +8 -0
  518. package/projects/corecomponents/src/res/icons/pointer_filled.svg +6 -0
  519. package/projects/corecomponents/src/res/icons/positioning.svg +1 -0
  520. package/projects/corecomponents/src/res/icons/pregnancy.svg +18 -0
  521. package/projects/corecomponents/src/res/icons/preset.svg +1 -0
  522. package/projects/corecomponents/src/res/icons/print.svg +1 -0
  523. package/projects/corecomponents/src/res/icons/product_properties.svg +1 -0
  524. package/projects/corecomponents/src/res/icons/purchase.svg +15 -0
  525. package/projects/corecomponents/src/res/icons/qrcode.svg +59 -0
  526. package/projects/corecomponents/src/res/icons/question.svg +1 -0
  527. package/projects/corecomponents/src/res/icons/radio_uncheck.svg +1 -0
  528. package/projects/corecomponents/src/res/icons/range.svg +1 -0
  529. package/projects/corecomponents/src/res/icons/range_select.svg +1 -0
  530. package/projects/corecomponents/src/res/icons/rectangles.svg +15 -0
  531. package/projects/corecomponents/src/res/icons/refresh.svg +1 -0
  532. package/projects/corecomponents/src/res/icons/relations.svg +20 -0
  533. package/projects/corecomponents/src/res/icons/remark.svg +1 -0
  534. package/projects/corecomponents/src/res/icons/remark_round_open.svg +6 -0
  535. package/projects/corecomponents/src/res/icons/report_in_type.svg +1 -0
  536. package/projects/corecomponents/src/res/icons/resize.svg +3 -0
  537. package/projects/corecomponents/src/res/icons/resize_down.svg +1 -0
  538. package/projects/corecomponents/src/res/icons/resize_up.svg +1 -0
  539. package/projects/corecomponents/src/res/icons/return_goods.svg +4 -0
  540. package/projects/corecomponents/src/res/icons/returns.svg +1 -0
  541. package/projects/corecomponents/src/res/icons/rotate_left_solid.svg +1 -0
  542. package/projects/corecomponents/src/res/icons/save_disk.svg +15 -0
  543. package/projects/corecomponents/src/res/icons/save_skinny.svg +3 -0
  544. package/projects/corecomponents/src/res/icons/scale_balanced.svg +1 -0
  545. package/projects/corecomponents/src/res/icons/scanner.svg +1 -0
  546. package/projects/corecomponents/src/res/icons/search_round_open.svg +9 -0
  547. package/projects/corecomponents/src/res/icons/sections.svg +1 -0
  548. package/projects/corecomponents/src/res/icons/select_all_round.svg +5 -0
  549. package/projects/corecomponents/src/res/icons/services.svg +1 -0
  550. package/projects/corecomponents/src/res/icons/settings.svg +20 -0
  551. package/projects/corecomponents/src/res/icons/shopping_cart.svg +1 -0
  552. package/projects/corecomponents/src/res/icons/shopping_cart_nr.svg +1 -0
  553. package/projects/corecomponents/src/res/icons/shortcut.svg +1 -0
  554. package/projects/corecomponents/src/res/icons/skills.svg +1 -0
  555. package/projects/corecomponents/src/res/icons/slide_in.svg +1 -0
  556. package/projects/corecomponents/src/res/icons/slider_panel.svg +7 -0
  557. package/projects/corecomponents/src/res/icons/small_tiles.svg +1 -0
  558. package/projects/corecomponents/src/res/icons/smaller_than.svg +1 -0
  559. package/projects/corecomponents/src/res/icons/sort_asc.svg +1 -0
  560. package/projects/corecomponents/src/res/icons/sort_desc.svg +1 -0
  561. package/projects/corecomponents/src/res/icons/star_round_open.svg +6 -0
  562. package/projects/corecomponents/src/res/icons/status_active.svg +1 -0
  563. package/projects/corecomponents/src/res/icons/status_adoption.svg +1 -0
  564. package/projects/corecomponents/src/res/icons/status_fostercare.svg +1 -0
  565. package/projects/corecomponents/src/res/icons/status_ill.svg +10 -0
  566. package/projects/corecomponents/src/res/icons/status_leave.svg +1 -0
  567. package/projects/corecomponents/src/res/icons/status_pregnancy.svg +10 -0
  568. package/projects/corecomponents/src/res/icons/stock.svg +1 -0
  569. package/projects/corecomponents/src/res/icons/stock_management.svg +25 -0
  570. package/projects/corecomponents/src/res/icons/storage.svg +1 -0
  571. package/projects/corecomponents/src/res/icons/supervisor.svg +1 -0
  572. package/projects/corecomponents/src/res/icons/supplier.svg +18 -0
  573. package/projects/corecomponents/src/res/icons/surgery.svg +35 -0
  574. package/projects/corecomponents/src/res/icons/tablechart.svg +15 -0
  575. package/projects/corecomponents/src/res/icons/tag.svg +1 -0
  576. package/projects/corecomponents/src/res/icons/talk_too_much.svg +7 -0
  577. package/projects/corecomponents/src/res/icons/target.svg +1 -0
  578. package/projects/corecomponents/src/res/icons/task.svg +1 -0
  579. package/projects/corecomponents/src/res/icons/thick_lines.svg +1 -0
  580. package/projects/corecomponents/src/res/icons/thin_lines.svg +1 -0
  581. package/projects/corecomponents/src/res/icons/three_sixty_view.svg +1 -0
  582. package/projects/corecomponents/src/res/icons/thumb_bronze.svg +29 -0
  583. package/projects/corecomponents/src/res/icons/thumb_gold.svg +29 -0
  584. package/projects/corecomponents/src/res/icons/thumb_silver.svg +29 -0
  585. package/projects/corecomponents/src/res/icons/timeline.svg +1 -0
  586. package/projects/corecomponents/src/res/icons/transaction_detail.svg +19 -0
  587. package/projects/corecomponents/src/res/icons/transactions.svg +12 -0
  588. package/projects/corecomponents/src/res/icons/trash_can_solid.svg +1 -0
  589. package/projects/corecomponents/src/res/icons/triangle_down.svg +1 -0
  590. package/projects/corecomponents/src/res/icons/triangle_large.svg +5 -0
  591. package/projects/corecomponents/src/res/icons/triangle_left.svg +1 -0
  592. package/projects/corecomponents/src/res/icons/triangle_right.svg +1 -0
  593. package/projects/corecomponents/src/res/icons/triangle_up.svg +1 -0
  594. package/projects/corecomponents/src/res/icons/truck.svg +1 -0
  595. package/projects/corecomponents/src/res/icons/truck_calendar.svg +15 -0
  596. package/projects/corecomponents/src/res/icons/undo_round_open.svg +1 -0
  597. package/projects/corecomponents/src/res/icons/user.svg +9 -0
  598. package/projects/corecomponents/src/res/icons/variants.svg +1 -0
  599. package/projects/corecomponents/src/res/icons/vbarchart.svg +6 -0
  600. package/projects/corecomponents/src/res/icons/view.svg +1 -0
  601. package/projects/corecomponents/src/res/icons/warehouse.svg +1 -0
  602. package/projects/corecomponents/src/res/icons/watermark.svg +10 -0
  603. package/projects/corecomponents/src/res/icons/website.svg +1 -0
  604. package/projects/corecomponents/src/res/icons/wizard.svg +18 -0
  605. package/projects/corecomponents/src/res/icons/wms.svg +24 -0
  606. package/projects/corecomponents/src/res/icons/work_in_progress.svg +10 -0
  607. package/projects/corecomponents/src/res/icons/work_in_progress_round_open.svg +9 -0
  608. package/projects/corecomponents/src/res/icons/wrench.svg +4 -0
  609. package/projects/corecomponents/src/res/icons/x_axis.svg +5 -0
  610. package/projects/corecomponents/src/res/icons/y_axis.svg +5 -0
  611. package/projects/corecomponents/src/test.ts +28 -0
  612. package/projects/corecomponents/tsconfig.lib.json +20 -0
  613. package/projects/corecomponents/tsconfig.lib.prod.json +16 -0
  614. package/projects/corecomponents/tsconfig.spec.json +17 -0
  615. package/scripts/export.bat +9 -0
  616. package/scripts/merge-icons.js +39 -0
  617. package/scripts/publish.bat +6 -0
  618. package/src/app/app.component.scss +36 -0
  619. package/src/app/app.component.spec.ts +31 -0
  620. package/src/app/app.component.ts +559 -0
  621. package/src/app/app.module.ts +145 -0
  622. package/src/app/components/button-showcase.component.ts +82 -0
  623. package/src/app/components/carousel-3d-showcase.component.ts +70 -0
  624. package/src/app/components/checkbox-showcase.component.ts +56 -0
  625. package/src/app/components/co-dialog-showcase.component.ts +189 -0
  626. package/src/app/components/co-simple-grid-test.component.ts +146 -0
  627. package/src/app/components/filter-item-showcase.component.ts +178 -0
  628. package/src/app/components/forms-showcase.component.ts +703 -0
  629. package/src/app/components/icon-showcase.component.ts +72 -0
  630. package/src/app/components/input-checkbox-showcase.component.ts +87 -0
  631. package/src/app/components/input-date-picker-showcase.component.ts +90 -0
  632. package/src/app/components/input-number-picker-showcase.component.ts +125 -0
  633. package/src/app/components/input-radio-button-showcase.component.ts +87 -0
  634. package/src/app/components/input-scanner-showcase.component.ts +35 -0
  635. package/src/app/components/input-text-showcase.component.ts +200 -0
  636. package/src/app/components/input-time-showcase.component.ts +104 -0
  637. package/src/app/components/number-picker-showcase.component.ts +17 -0
  638. package/src/app/components/simple-grid-showcase.component.ts +60 -0
  639. package/src/app/model/data-item.ts +9 -0
  640. package/src/app/model/enum/currency-code.enum.ts +7 -0
  641. package/src/app/model/enum/language-code.enum.ts +8 -0
  642. package/src/app/model/map/currencies.map.ts +6 -0
  643. package/src/app/service/showcase-data.service.ts +1110 -0
  644. package/src/assets/.gitkeep +0 -0
  645. package/src/environments/environment.prod.ts +3 -0
  646. package/src/environments/environment.ts +16 -0
  647. package/src/favicon.ico +0 -0
  648. package/src/index.html +13 -0
  649. package/src/main.ts +12 -0
  650. package/src/polyfills.ts +65 -0
  651. package/src/styles.scss +56 -0
  652. package/src/test.ts +27 -0
  653. package/tsconfig.app.json +15 -0
  654. package/tsconfig.json +37 -0
  655. package/tsconfig.spec.json +18 -0
  656. package/bundles/colijnit-corecomponents_v12.umd.js +0 -14029
  657. package/bundles/colijnit-corecomponents_v12.umd.js.map +0 -1
  658. package/colijnit-corecomponents_v12.d.ts +0 -43
  659. package/colijnit-corecomponents_v12.metadata.json +0 -1
  660. package/esm2015/colijnit-corecomponents_v12.js +0 -44
  661. package/esm2015/lib/components/article-tile/article-tile.component.js +0 -80
  662. package/esm2015/lib/components/article-tile/article-tile.module.js +0 -35
  663. package/esm2015/lib/components/base/base-input.component.js +0 -834
  664. package/esm2015/lib/components/base/base.module.js +0 -22
  665. package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +0 -103
  666. package/esm2015/lib/components/base/commit-buttons/commit-buttons.module.js +0 -21
  667. package/esm2015/lib/components/base/dialog-base.component.js +0 -6
  668. package/esm2015/lib/components/base-input-date-picker/base-input-date-picker.directive.js +0 -25
  669. package/esm2015/lib/components/button/button.component.js +0 -79
  670. package/esm2015/lib/components/button/button.module.js +0 -19
  671. package/esm2015/lib/components/calendar/calendar-template.component.js +0 -342
  672. package/esm2015/lib/components/calendar/calendar.component.js +0 -45
  673. package/esm2015/lib/components/calendar/calendar.module.js +0 -28
  674. package/esm2015/lib/components/card/card.component.js +0 -72
  675. package/esm2015/lib/components/card/card.module.js +0 -35
  676. package/esm2015/lib/components/carousel/carousel.component.js +0 -130
  677. package/esm2015/lib/components/carousel/carousel.module.js +0 -32
  678. package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +0 -315
  679. package/esm2015/lib/components/carousel-3d/carousel-3d.module.js +0 -19
  680. package/esm2015/lib/components/carousel-3d/carouselItem.js +0 -54
  681. package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.component.js +0 -87
  682. package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.module.js +0 -19
  683. package/esm2015/lib/components/co-dialog/co-dialog.component.js +0 -113
  684. package/esm2015/lib/components/co-dialog/co-dialog.module.js +0 -19
  685. package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +0 -51
  686. package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.module.js +0 -17
  687. package/esm2015/lib/components/collapsible/collapsible.component.js +0 -92
  688. package/esm2015/lib/components/collapsible/collapsible.module.js +0 -19
  689. package/esm2015/lib/components/color-picker/color-picker.component.js +0 -41
  690. package/esm2015/lib/components/color-picker/color-picker.module.js +0 -21
  691. package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -79
  692. package/esm2015/lib/components/core-dialog/core-dialog.module.js +0 -39
  693. package/esm2015/lib/components/core-dialog/core-dialog.service.js +0 -67
  694. package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +0 -93
  695. package/esm2015/lib/components/double-calendar/double-calendar.component.js +0 -80
  696. package/esm2015/lib/components/double-calendar/double-calendar.module.js +0 -25
  697. package/esm2015/lib/components/filter-item/filter-item-viewmodel.js +0 -13
  698. package/esm2015/lib/components/filter-item/filter-item.component.js +0 -646
  699. package/esm2015/lib/components/filter-item/filter-item.module.js +0 -43
  700. package/esm2015/lib/components/filter-item/filter-viewmodel.js +0 -11
  701. package/esm2015/lib/components/form/form.component.js +0 -184
  702. package/esm2015/lib/components/form/form.module.js +0 -23
  703. package/esm2015/lib/components/grid-toolbar/grid-toolbar.component.js +0 -57
  704. package/esm2015/lib/components/grid-toolbar/grid-toolbar.module.js +0 -23
  705. package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +0 -28
  706. package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +0 -19
  707. package/esm2015/lib/components/icon/icon-cache.service.js +0 -52
  708. package/esm2015/lib/components/icon/icon.component.js +0 -48
  709. package/esm2015/lib/components/icon/icon.module.js +0 -25
  710. package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +0 -64
  711. package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +0 -23
  712. package/esm2015/lib/components/image/image.component.js +0 -42
  713. package/esm2015/lib/components/image/image.module.js +0 -14
  714. package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +0 -79
  715. package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +0 -19
  716. package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +0 -91
  717. package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +0 -26
  718. package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +0 -134
  719. package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +0 -27
  720. package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +0 -314
  721. package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +0 -23
  722. package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +0 -84
  723. package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +0 -19
  724. package/esm2015/lib/components/input-scanner/bar-code-scanner.js +0 -23
  725. package/esm2015/lib/components/input-scanner/input-scanner.component.js +0 -69
  726. package/esm2015/lib/components/input-scanner/input-scanner.module.js +0 -21
  727. package/esm2015/lib/components/input-scanner/scanner.service.js +0 -28
  728. package/esm2015/lib/components/input-search/input-search.component.js +0 -76
  729. package/esm2015/lib/components/input-search/input-search.module.js +0 -21
  730. package/esm2015/lib/components/input-text/input-text.component.js +0 -224
  731. package/esm2015/lib/components/input-text/input-text.module.js +0 -33
  732. package/esm2015/lib/components/input-textarea/input-textarea.component.js +0 -78
  733. package/esm2015/lib/components/input-textarea/input-textarea.module.js +0 -27
  734. package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +0 -7
  735. package/esm2015/lib/components/level-indicator/level-indicator.component.js +0 -36
  736. package/esm2015/lib/components/level-indicator/level-indicator.module.js +0 -15
  737. package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +0 -112
  738. package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +0 -242
  739. package/esm2015/lib/components/list-of-values/list-of-values.component.js +0 -233
  740. package/esm2015/lib/components/list-of-values/list-of-values.module.js +0 -38
  741. package/esm2015/lib/components/loader/loader.component.js +0 -84
  742. package/esm2015/lib/components/loader/loader.module.js +0 -19
  743. package/esm2015/lib/components/pagination/paginate.pipe.js +0 -99
  744. package/esm2015/lib/components/pagination/pagination-instance.js +0 -2
  745. package/esm2015/lib/components/pagination/pagination.component.js +0 -126
  746. package/esm2015/lib/components/pagination/pagination.module.js +0 -28
  747. package/esm2015/lib/components/pagination/pagination.service.js +0 -88
  748. package/esm2015/lib/components/pagination-bar/pagination-bar.component.js +0 -151
  749. package/esm2015/lib/components/pagination-bar/pagination-bar.module.js +0 -19
  750. package/esm2015/lib/components/popup/const/popup-window-token.js +0 -3
  751. package/esm2015/lib/components/popup/interface/popup-button.js +0 -8
  752. package/esm2015/lib/components/popup/interface/popup-close-event.js +0 -2
  753. package/esm2015/lib/components/popup/interface/popup-settings.js +0 -42
  754. package/esm2015/lib/components/popup/interface/popup.js +0 -2
  755. package/esm2015/lib/components/popup/model/popup-button-globals.js +0 -11
  756. package/esm2015/lib/components/popup/model/popup-window.js +0 -38
  757. package/esm2015/lib/components/popup/popup-buttons.component.js +0 -53
  758. package/esm2015/lib/components/popup/popup-message-display.component.js +0 -47
  759. package/esm2015/lib/components/popup/popup-window-shell.component.js +0 -159
  760. package/esm2015/lib/components/popup/popup.module.js +0 -49
  761. package/esm2015/lib/components/popup/service/popup-shower.service.js +0 -90
  762. package/esm2015/lib/components/popup/service/prompt.service.js +0 -127
  763. package/esm2015/lib/components/popup/text-input-popup.component.js +0 -36
  764. package/esm2015/lib/components/responsive-text/responsive-text.component.js +0 -24
  765. package/esm2015/lib/components/responsive-text/responsive-text.module.js +0 -19
  766. package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +0 -164
  767. package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +0 -172
  768. package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +0 -111
  769. package/esm2015/lib/components/simple-grid/simple-grid.component.js +0 -465
  770. package/esm2015/lib/components/simple-grid/simple-grid.module.js +0 -41
  771. package/esm2015/lib/components/tile/tile.component.js +0 -73
  772. package/esm2015/lib/components/tile/tile.module.js +0 -23
  773. package/esm2015/lib/components/tile-select/tile-select.component.js +0 -36
  774. package/esm2015/lib/components/tile-select/tile-select.module.js +0 -21
  775. package/esm2015/lib/components/tooltip/tooltip.component.js +0 -77
  776. package/esm2015/lib/components/tooltip/tooltip.module.js +0 -19
  777. package/esm2015/lib/components/validation-error/validation-error.component.js +0 -38
  778. package/esm2015/lib/components/validation-error/validation-error.module.js +0 -25
  779. package/esm2015/lib/components/view-mode-buttons/content-view-mode.enum.js +0 -11
  780. package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +0 -61
  781. package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.module.js +0 -21
  782. package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +0 -4
  783. package/esm2015/lib/core/constant/java-max-int.js +0 -2
  784. package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +0 -45
  785. package/esm2015/lib/core/decorator/input-boolean.decorator.js +0 -34
  786. package/esm2015/lib/core/enum/co-direction.js +0 -9
  787. package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +0 -7
  788. package/esm2015/lib/core/enum/co-document-type.enum.js +0 -11
  789. package/esm2015/lib/core/enum/co-orientation.js +0 -17
  790. package/esm2015/lib/core/enum/core-components-icon.enum.js +0 -300
  791. package/esm2015/lib/core/enum/file-type-internal.enum.js +0 -17
  792. package/esm2015/lib/core/enum/file-type.enum.js +0 -11
  793. package/esm2015/lib/core/enum/filterItem-mode.enum.js +0 -43
  794. package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +0 -8
  795. package/esm2015/lib/core/enum/keyboard-code.enum.js +0 -74
  796. package/esm2015/lib/core/enum/keyboard-key.enum.js +0 -76
  797. package/esm2015/lib/core/enum/object-right-type.enum.js +0 -7
  798. package/esm2015/lib/core/enum/popup-button-type.enum.js +0 -12
  799. package/esm2015/lib/core/enum/popup-type.enum.js +0 -11
  800. package/esm2015/lib/core/enum/table-name.enum.js +0 -81
  801. package/esm2015/lib/core/function/any-nill.function.js +0 -6
  802. package/esm2015/lib/core/function/is-nill.function.js +0 -5
  803. package/esm2015/lib/core/function/none-nill.function.js +0 -17
  804. package/esm2015/lib/core/function/not-nill.function.js +0 -5
  805. package/esm2015/lib/core/model/bounds-constrained-number-value.js +0 -171
  806. package/esm2015/lib/core/model/check-precision-and-scale-result.js +0 -2
  807. package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +0 -2
  808. package/esm2015/lib/core/model/co-document-right.bo.js +0 -3
  809. package/esm2015/lib/core/model/co-document.bo.js +0 -121
  810. package/esm2015/lib/core/model/core-components-icon-svg.js +0 -299
  811. package/esm2015/lib/core/model/element-position.js +0 -10
  812. package/esm2015/lib/core/model/event/string-prompt-result-event.js +0 -8
  813. package/esm2015/lib/core/service/form-input-user-change-listener.service.js +0 -25
  814. package/esm2015/lib/core/service/form-master.service.js +0 -102
  815. package/esm2015/lib/core/service/ng-zone-wrapper.service.js +0 -20
  816. package/esm2015/lib/core/utils/array-utils.js +0 -264
  817. package/esm2015/lib/core/utils/browser-utils.js +0 -100
  818. package/esm2015/lib/core/utils/direction-enum-utils.js +0 -14
  819. package/esm2015/lib/core/utils/event-utils.js +0 -53
  820. package/esm2015/lib/core/utils/file-utils.js +0 -267
  821. package/esm2015/lib/core/utils/number-utils.js +0 -309
  822. package/esm2015/lib/core/utils/object-utils.js +0 -186
  823. package/esm2015/lib/core/utils/string-utils.js +0 -94
  824. package/esm2015/lib/core/validator/email.validator.js +0 -6
  825. package/esm2015/lib/core/validator/equal.validator.js +0 -11
  826. package/esm2015/lib/core/validator/max-string-length.validator.js +0 -10
  827. package/esm2015/lib/core/validator/password.validator.js +0 -31
  828. package/esm2015/lib/core/validator/precision-scale.validator.js +0 -11
  829. package/esm2015/lib/core/validator/required.validator.js +0 -5
  830. package/esm2015/lib/directives/clickoutside/click-outside-master.service.js +0 -57
  831. package/esm2015/lib/directives/clickoutside/click-outside.directive.js +0 -71
  832. package/esm2015/lib/directives/clickoutside/clickoutside.module.js +0 -19
  833. package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +0 -53
  834. package/esm2015/lib/directives/observe-visibility/observe-visibility.module.js +0 -15
  835. package/esm2015/lib/directives/overlay/overlay-parent.directive.js +0 -19
  836. package/esm2015/lib/directives/overlay/overlay.directive.js +0 -161
  837. package/esm2015/lib/directives/overlay/overlay.module.js +0 -18
  838. package/esm2015/lib/directives/ripple/ripple-ref.js +0 -26
  839. package/esm2015/lib/directives/ripple/ripple-renderer.js +0 -160
  840. package/esm2015/lib/directives/ripple/ripple.directive.js +0 -80
  841. package/esm2015/lib/directives/ripple/ripple.module.js +0 -24
  842. package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +0 -108
  843. package/esm2015/lib/directives/ripple/scrollable.directive.js +0 -40
  844. package/esm2015/lib/directives/ripple/viewport-ruler.service.js +0 -73
  845. package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +0 -158
  846. package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +0 -19
  847. package/esm2015/lib/directives/stopclick/stop-click.directive.js +0 -38
  848. package/esm2015/lib/directives/stopclick/stop-click.module.js +0 -15
  849. package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +0 -68
  850. package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +0 -15
  851. package/esm2015/lib/directives/tooltip/tooltip-directive.module.js +0 -19
  852. package/esm2015/lib/directives/tooltip/tooltip.directive.js +0 -78
  853. package/esm2015/lib/interfaces/dialog-response.interface.js +0 -2
  854. package/esm2015/lib/interfaces/scanner-input.interface.js +0 -2
  855. package/esm2015/lib/interfaces/screen-config-adapter-component-interface-name.js +0 -4
  856. package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +0 -2
  857. package/esm2015/lib/model/enum/app-button-type.enum.js +0 -11
  858. package/esm2015/lib/model/enum/app-popup-type.enum.js +0 -8
  859. package/esm2015/lib/pipes/append.pipe.js +0 -17
  860. package/esm2015/lib/pipes/append.pipe.module.js +0 -15
  861. package/esm2015/lib/pipes/filter.pipe.js +0 -16
  862. package/esm2015/lib/pipes/filter.pipe.module.js +0 -15
  863. package/esm2015/lib/pipes/prepend.pipe.js +0 -17
  864. package/esm2015/lib/pipes/prepend.pipe.module.js +0 -15
  865. package/esm2015/lib/pipes/price-display-pipe.module.js +0 -15
  866. package/esm2015/lib/pipes/price-display.pipe.js +0 -20
  867. package/esm2015/lib/service/base-module-screen-config.service.js +0 -205
  868. package/esm2015/lib/service/base-module.service.js +0 -42
  869. package/esm2015/lib/service/color-sequence.service.js +0 -23
  870. package/esm2015/lib/service/overlay.service.js +0 -73
  871. package/esm2015/lib/translation/core-components-translation.module.js +0 -29
  872. package/esm2015/lib/translation/core-components-translation.service.js +0 -17
  873. package/esm2015/lib/translation/core-dictionary.service.js +0 -29
  874. package/esm2015/lib/translation/core-localize.pipe.js +0 -26
  875. package/esm2015/public-api.js +0 -130
  876. package/fesm2015/colijnit-corecomponents_v12.js +0 -13366
  877. package/fesm2015/colijnit-corecomponents_v12.js.map +0 -1
  878. package/lib/components/article-tile/article-tile.component.d.ts +0 -22
  879. package/lib/components/article-tile/article-tile.module.d.ts +0 -2
  880. package/lib/components/base/base-input.component.d.ts +0 -182
  881. package/lib/components/base/base.module.d.ts +0 -2
  882. package/lib/components/base/commit-buttons/commit-buttons.component.d.ts +0 -21
  883. package/lib/components/base/commit-buttons/commit-buttons.module.d.ts +0 -2
  884. package/lib/components/base/dialog-base.component.d.ts +0 -4
  885. package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +0 -15
  886. package/lib/components/button/button.component.d.ts +0 -29
  887. package/lib/components/button/button.module.d.ts +0 -2
  888. package/lib/components/calendar/calendar-template.component.d.ts +0 -60
  889. package/lib/components/calendar/calendar.component.d.ts +0 -13
  890. package/lib/components/calendar/calendar.module.d.ts +0 -2
  891. package/lib/components/card/card.component.d.ts +0 -23
  892. package/lib/components/card/card.module.d.ts +0 -2
  893. package/lib/components/carousel/carousel.component.d.ts +0 -23
  894. package/lib/components/carousel/carousel.module.d.ts +0 -6
  895. package/lib/components/carousel-3d/carousel-3d.component.d.ts +0 -55
  896. package/lib/components/carousel-3d/carousel-3d.module.d.ts +0 -2
  897. package/lib/components/carousel-3d/carouselItem.d.ts +0 -13
  898. package/lib/components/checkmark-overlay/checkmark-overlay.component.d.ts +0 -17
  899. package/lib/components/checkmark-overlay/checkmark-overlay.module.d.ts +0 -2
  900. package/lib/components/co-dialog/co-dialog.component.d.ts +0 -23
  901. package/lib/components/co-dialog/co-dialog.module.d.ts +0 -2
  902. package/lib/components/co-dialog-wizard/co-dialog-wizard.component.d.ts +0 -9
  903. package/lib/components/co-dialog-wizard/co-dialog-wizard.module.d.ts +0 -2
  904. package/lib/components/collapsible/collapsible.component.d.ts +0 -22
  905. package/lib/components/collapsible/collapsible.module.d.ts +0 -2
  906. package/lib/components/color-picker/color-picker.component.d.ts +0 -6
  907. package/lib/components/color-picker/color-picker.module.d.ts +0 -2
  908. package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
  909. package/lib/components/core-dialog/core-dialog.module.d.ts +0 -4
  910. package/lib/components/core-dialog/core-dialog.service.d.ts +0 -15
  911. package/lib/components/core-dialog/core-dynamic-component.service.d.ts +0 -12
  912. package/lib/components/double-calendar/double-calendar.component.d.ts +0 -18
  913. package/lib/components/double-calendar/double-calendar.module.d.ts +0 -2
  914. package/lib/components/filter-item/filter-item-viewmodel.d.ts +0 -9
  915. package/lib/components/filter-item/filter-item.component.d.ts +0 -80
  916. package/lib/components/filter-item/filter-item.module.d.ts +0 -2
  917. package/lib/components/filter-item/filter-viewmodel.d.ts +0 -8
  918. package/lib/components/form/form.component.d.ts +0 -39
  919. package/lib/components/form/form.module.d.ts +0 -2
  920. package/lib/components/grid-toolbar/grid-toolbar.component.d.ts +0 -19
  921. package/lib/components/grid-toolbar/grid-toolbar.module.d.ts +0 -2
  922. package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +0 -8
  923. package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +0 -2
  924. package/lib/components/icon/icon-cache.service.d.ts +0 -20
  925. package/lib/components/icon/icon.component.d.ts +0 -17
  926. package/lib/components/icon/icon.module.d.ts +0 -2
  927. package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +0 -21
  928. package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +0 -2
  929. package/lib/components/image/image.component.d.ts +0 -20
  930. package/lib/components/image/image.module.d.ts +0 -2
  931. package/lib/components/input-checkbox/input-checkbox.component.d.ts +0 -24
  932. package/lib/components/input-checkbox/input-checkbox.module.d.ts +0 -2
  933. package/lib/components/input-date-picker/input-date-picker.component.d.ts +0 -12
  934. package/lib/components/input-date-picker/input-date-picker.module.d.ts +0 -2
  935. package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +0 -20
  936. package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +0 -2
  937. package/lib/components/input-number-picker/input-number-picker.component.d.ts +0 -73
  938. package/lib/components/input-number-picker/input-number-picker.module.d.ts +0 -2
  939. package/lib/components/input-radio-button/input-radio-button.component.d.ts +0 -19
  940. package/lib/components/input-radio-button/input-radio-button.module.d.ts +0 -2
  941. package/lib/components/input-scanner/bar-code-scanner.d.ts +0 -7
  942. package/lib/components/input-scanner/input-scanner.component.d.ts +0 -23
  943. package/lib/components/input-scanner/input-scanner.module.d.ts +0 -2
  944. package/lib/components/input-scanner/scanner.service.d.ts +0 -11
  945. package/lib/components/input-search/input-search.component.d.ts +0 -18
  946. package/lib/components/input-search/input-search.module.d.ts +0 -2
  947. package/lib/components/input-text/input-text.component.d.ts +0 -62
  948. package/lib/components/input-text/input-text.module.d.ts +0 -2
  949. package/lib/components/input-textarea/input-textarea.component.d.ts +0 -19
  950. package/lib/components/input-textarea/input-textarea.module.d.ts +0 -2
  951. package/lib/components/level-indicator/level-indicator-level.enum.d.ts +0 -5
  952. package/lib/components/level-indicator/level-indicator.component.d.ts +0 -10
  953. package/lib/components/level-indicator/level-indicator.module.d.ts +0 -2
  954. package/lib/components/list-of-values/list-of-values-multiselect-popup.component.d.ts +0 -25
  955. package/lib/components/list-of-values/list-of-values-popup.component.d.ts +0 -47
  956. package/lib/components/list-of-values/list-of-values.component.d.ts +0 -37
  957. package/lib/components/list-of-values/list-of-values.module.d.ts +0 -2
  958. package/lib/components/loader/loader.component.d.ts +0 -3
  959. package/lib/components/loader/loader.module.d.ts +0 -2
  960. package/lib/components/pagination/paginate.pipe.d.ts +0 -15
  961. package/lib/components/pagination/pagination-instance.d.ts +0 -14
  962. package/lib/components/pagination/pagination.component.d.ts +0 -38
  963. package/lib/components/pagination/pagination.module.d.ts +0 -2
  964. package/lib/components/pagination/pagination.service.d.ts +0 -24
  965. package/lib/components/pagination-bar/pagination-bar.component.d.ts +0 -33
  966. package/lib/components/pagination-bar/pagination-bar.module.d.ts +0 -2
  967. package/lib/components/popup/const/popup-window-token.d.ts +0 -3
  968. package/lib/components/popup/interface/popup-button.d.ts +0 -8
  969. package/lib/components/popup/interface/popup-close-event.d.ts +0 -5
  970. package/lib/components/popup/interface/popup-settings.d.ts +0 -21
  971. package/lib/components/popup/interface/popup.d.ts +0 -9
  972. package/lib/components/popup/model/popup-button-globals.d.ts +0 -9
  973. package/lib/components/popup/model/popup-window.d.ts +0 -21
  974. package/lib/components/popup/popup-buttons.component.d.ts +0 -13
  975. package/lib/components/popup/popup-message-display.component.d.ts +0 -12
  976. package/lib/components/popup/popup-window-shell.component.d.ts +0 -42
  977. package/lib/components/popup/popup.module.d.ts +0 -4
  978. package/lib/components/popup/service/popup-shower.service.d.ts +0 -17
  979. package/lib/components/popup/service/prompt.service.d.ts +0 -17
  980. package/lib/components/popup/text-input-popup.component.d.ts +0 -12
  981. package/lib/components/responsive-text/responsive-text.component.d.ts +0 -4
  982. package/lib/components/responsive-text/responsive-text.module.d.ts +0 -2
  983. package/lib/components/simple-grid/base-simple-grid.component.d.ts +0 -52
  984. package/lib/components/simple-grid/simple-grid-cell.component.d.ts +0 -30
  985. package/lib/components/simple-grid/simple-grid-column.directive.d.ts +0 -42
  986. package/lib/components/simple-grid/simple-grid.component.d.ts +0 -64
  987. package/lib/components/simple-grid/simple-grid.module.d.ts +0 -2
  988. package/lib/components/tile/tile.component.d.ts +0 -16
  989. package/lib/components/tile/tile.module.d.ts +0 -2
  990. package/lib/components/tile-select/tile-select.component.d.ts +0 -8
  991. package/lib/components/tile-select/tile-select.module.d.ts +0 -2
  992. package/lib/components/tooltip/tooltip.component.d.ts +0 -18
  993. package/lib/components/tooltip/tooltip.module.d.ts +0 -2
  994. package/lib/components/validation-error/validation-error.component.d.ts +0 -12
  995. package/lib/components/validation-error/validation-error.module.d.ts +0 -2
  996. package/lib/components/view-mode-buttons/content-view-mode.enum.d.ts +0 -8
  997. package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +0 -17
  998. package/lib/components/view-mode-buttons/view-mode-buttons.module.d.ts +0 -2
  999. package/lib/core/constant/default-upper-bound-for-range-components.d.ts +0 -2
  1000. package/lib/core/constant/java-max-int.d.ts +0 -1
  1001. package/lib/core/constant/number-inputs-key-down-white-list.d.ts +0 -2
  1002. package/lib/core/decorator/input-boolean.decorator.d.ts +0 -8
  1003. package/lib/core/enum/co-direction.d.ts +0 -6
  1004. package/lib/core/enum/co-document-image-display-kind.enum.d.ts +0 -5
  1005. package/lib/core/enum/co-document-type.enum.d.ts +0 -5
  1006. package/lib/core/enum/co-orientation.d.ts +0 -6
  1007. package/lib/core/enum/core-components-icon.enum.d.ts +0 -298
  1008. package/lib/core/enum/file-type-internal.enum.d.ts +0 -15
  1009. package/lib/core/enum/file-type.enum.d.ts +0 -5
  1010. package/lib/core/enum/filterItem-mode.enum.d.ts +0 -15
  1011. package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +0 -5
  1012. package/lib/core/enum/keyboard-code.enum.d.ts +0 -71
  1013. package/lib/core/enum/keyboard-key.enum.d.ts +0 -70
  1014. package/lib/core/enum/object-right-type.enum.d.ts +0 -5
  1015. package/lib/core/enum/popup-button-type.enum.d.ts +0 -9
  1016. package/lib/core/enum/popup-type.enum.d.ts +0 -9
  1017. package/lib/core/enum/table-name.enum.d.ts +0 -79
  1018. package/lib/core/function/any-nill.function.d.ts +0 -1
  1019. package/lib/core/function/is-nill.function.d.ts +0 -1
  1020. package/lib/core/function/none-nill.function.d.ts +0 -1
  1021. package/lib/core/function/not-nill.function.d.ts +0 -1
  1022. package/lib/core/model/bounds-constrained-number-value.d.ts +0 -46
  1023. package/lib/core/model/check-precision-and-scale-result.d.ts +0 -4
  1024. package/lib/core/model/check-within-stepped-bounds-result.d.ts +0 -8
  1025. package/lib/core/model/co-document-right.bo.d.ts +0 -6
  1026. package/lib/core/model/co-document.bo.d.ts +0 -61
  1027. package/lib/core/model/core-components-icon-svg.d.ts +0 -4
  1028. package/lib/core/model/element-position.d.ts +0 -7
  1029. package/lib/core/model/event/string-prompt-result-event.d.ts +0 -6
  1030. package/lib/core/service/form-input-user-change-listener.service.d.ts +0 -10
  1031. package/lib/core/service/form-master.service.d.ts +0 -26
  1032. package/lib/core/service/ng-zone-wrapper.service.d.ts +0 -6
  1033. package/lib/core/utils/array-utils.d.ts +0 -85
  1034. package/lib/core/utils/browser-utils.d.ts +0 -15
  1035. package/lib/core/utils/direction-enum-utils.d.ts +0 -5
  1036. package/lib/core/utils/event-utils.d.ts +0 -12
  1037. package/lib/core/utils/file-utils.d.ts +0 -29
  1038. package/lib/core/utils/number-utils.d.ts +0 -89
  1039. package/lib/core/utils/object-utils.d.ts +0 -31
  1040. package/lib/core/utils/string-utils.d.ts +0 -25
  1041. package/lib/core/validator/email.validator.d.ts +0 -2
  1042. package/lib/core/validator/equal.validator.d.ts +0 -2
  1043. package/lib/core/validator/max-string-length.validator.d.ts +0 -2
  1044. package/lib/core/validator/password.validator.d.ts +0 -3
  1045. package/lib/core/validator/precision-scale.validator.d.ts +0 -2
  1046. package/lib/core/validator/required.validator.d.ts +0 -2
  1047. package/lib/directives/clickoutside/click-outside-master.service.d.ts +0 -15
  1048. package/lib/directives/clickoutside/click-outside.directive.d.ts +0 -18
  1049. package/lib/directives/clickoutside/clickoutside.module.d.ts +0 -2
  1050. package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +0 -14
  1051. package/lib/directives/observe-visibility/observe-visibility.module.d.ts +0 -2
  1052. package/lib/directives/overlay/overlay-parent.directive.d.ts +0 -6
  1053. package/lib/directives/overlay/overlay.directive.d.ts +0 -25
  1054. package/lib/directives/overlay/overlay.module.d.ts +0 -2
  1055. package/lib/directives/ripple/ripple-ref.d.ts +0 -21
  1056. package/lib/directives/ripple/ripple-renderer.d.ts +0 -56
  1057. package/lib/directives/ripple/ripple.directive.d.ts +0 -56
  1058. package/lib/directives/ripple/ripple.module.d.ts +0 -2
  1059. package/lib/directives/ripple/scroll-dispatcher.service.d.ts +0 -51
  1060. package/lib/directives/ripple/scrollable.directive.d.ts +0 -20
  1061. package/lib/directives/ripple/viewport-ruler.service.d.ts +0 -29
  1062. package/lib/directives/screen-configuration/screen-configuration.directive.d.ts +0 -32
  1063. package/lib/directives/screen-configuration/screen-configuration.module.d.ts +0 -2
  1064. package/lib/directives/stopclick/stop-click.directive.d.ts +0 -10
  1065. package/lib/directives/stopclick/stop-click.module.d.ts +0 -2
  1066. package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +0 -13
  1067. package/lib/directives/template-wrapper/template-wrapper.module.d.ts +0 -2
  1068. package/lib/directives/tooltip/tooltip-directive.module.d.ts +0 -2
  1069. package/lib/directives/tooltip/tooltip.directive.d.ts +0 -20
  1070. package/lib/interfaces/dialog-response.interface.d.ts +0 -6
  1071. package/lib/interfaces/scanner-input.interface.d.ts +0 -3
  1072. package/lib/interfaces/screen-config-adapter-component-interface-name.d.ts +0 -3
  1073. package/lib/interfaces/screen-config-adapter.component.interface.d.ts +0 -10
  1074. package/lib/model/enum/app-button-type.enum.d.ts +0 -9
  1075. package/lib/model/enum/app-popup-type.enum.d.ts +0 -6
  1076. package/lib/pipes/append.pipe.d.ts +0 -4
  1077. package/lib/pipes/append.pipe.module.d.ts +0 -2
  1078. package/lib/pipes/filter.pipe.d.ts +0 -4
  1079. package/lib/pipes/filter.pipe.module.d.ts +0 -2
  1080. package/lib/pipes/prepend.pipe.d.ts +0 -4
  1081. package/lib/pipes/prepend.pipe.module.d.ts +0 -2
  1082. package/lib/pipes/price-display-pipe.module.d.ts +0 -2
  1083. package/lib/pipes/price-display.pipe.d.ts +0 -4
  1084. package/lib/service/base-module-screen-config.service.d.ts +0 -47
  1085. package/lib/service/base-module.service.d.ts +0 -22
  1086. package/lib/service/color-sequence.service.d.ts +0 -4
  1087. package/lib/service/overlay.service.d.ts +0 -13
  1088. package/lib/translation/core-components-translation.module.d.ts +0 -4
  1089. package/lib/translation/core-components-translation.service.d.ts +0 -6
  1090. package/lib/translation/core-dictionary.service.d.ts +0 -12
  1091. package/lib/translation/core-localize.pipe.d.ts +0 -7
  1092. package/public-api.d.ts +0 -126
  1093. /package/{lib → projects/corecomponents/src/lib}/components/article-tile/article-tile.component.scss +0 -0
  1094. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_layout.scss +0 -0
  1095. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_material-definition.scss +0 -0
  1096. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_theme.scss +0 -0
  1097. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/material.scss +0 -0
  1098. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_co-ripple.scss +0 -0
  1099. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_layout.scss +0 -0
  1100. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_material-definition.scss +0 -0
  1101. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_theme.scss +0 -0
  1102. /package/{lib → projects/corecomponents/src/lib}/components/button/style/material.scss +0 -0
  1103. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_layout.scss +0 -0
  1104. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_material-definition.scss +0 -0
  1105. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_theme.scss +0 -0
  1106. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/material.scss +0 -0
  1107. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_layout.scss +0 -0
  1108. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_material-definition.scss +0 -0
  1109. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_theme.scss +0 -0
  1110. /package/{lib → projects/corecomponents/src/lib}/components/card/style/material.scss +0 -0
  1111. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_layout.scss +0 -0
  1112. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_material-definition.scss +0 -0
  1113. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_theme.scss +0 -0
  1114. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/material.scss +0 -0
  1115. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_layout.scss +0 -0
  1116. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_material-definition.scss +0 -0
  1117. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_theme.scss +0 -0
  1118. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/material.scss +0 -0
  1119. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_layout.scss +0 -0
  1120. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_material-definition.scss +0 -0
  1121. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_theme.scss +0 -0
  1122. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/material.scss +0 -0
  1123. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_layout.scss +0 -0
  1124. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_material-definition.scss +0 -0
  1125. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_theme.scss +0 -0
  1126. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/material.scss +0 -0
  1127. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_layout.scss +0 -0
  1128. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_material-definition.scss +0 -0
  1129. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_theme.scss +0 -0
  1130. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/material.scss +0 -0
  1131. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_layout.scss +0 -0
  1132. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_material-definition.scss +0 -0
  1133. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_theme.scss +0 -0
  1134. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/material.scss +0 -0
  1135. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_layout.scss +0 -0
  1136. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_material-definition.scss +0 -0
  1137. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_theme.scss +0 -0
  1138. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/material.scss +0 -0
  1139. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_layout.scss +0 -0
  1140. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_material-definition.scss +0 -0
  1141. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_theme.scss +0 -0
  1142. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/material.scss +0 -0
  1143. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_layout.scss +0 -0
  1144. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_material-definition.scss +0 -0
  1145. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_theme.scss +0 -0
  1146. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/material.scss +0 -0
  1147. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_layout.scss +0 -0
  1148. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_material-definition.scss +0 -0
  1149. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_theme.scss +0 -0
  1150. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/material.scss +0 -0
  1151. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_layout.scss +0 -0
  1152. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_material-definition.scss +0 -0
  1153. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_theme.scss +0 -0
  1154. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/material.scss +0 -0
  1155. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_layout.scss +0 -0
  1156. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_material-definition.scss +0 -0
  1157. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_theme.scss +0 -0
  1158. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/material.scss +0 -0
  1159. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_layout.scss +0 -0
  1160. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_material-definition.scss +0 -0
  1161. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_theme.scss +0 -0
  1162. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/material.scss +0 -0
  1163. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_layout.scss +0 -0
  1164. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_material-definition.scss +0 -0
  1165. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_theme.scss +0 -0
  1166. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/material.scss +0 -0
  1167. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_layout.scss +0 -0
  1168. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_material-definition.scss +0 -0
  1169. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_theme.scss +0 -0
  1170. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/material.scss +0 -0
  1171. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_layout.scss +0 -0
  1172. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_material-definition.scss +0 -0
  1173. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_theme.scss +0 -0
  1174. /package/{lib → projects/corecomponents/src/lib}/components/image/style/material.scss +0 -0
  1175. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_layout.scss +0 -0
  1176. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_material-definition.scss +0 -0
  1177. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_theme.scss +0 -0
  1178. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/material.scss +0 -0
  1179. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_layout.scss +0 -0
  1180. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_material-definition.scss +0 -0
  1181. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_theme.scss +0 -0
  1182. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/material.scss +0 -0
  1183. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_layout.scss +0 -0
  1184. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_material-definition.scss +0 -0
  1185. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_theme.scss +0 -0
  1186. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/material.scss +0 -0
  1187. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_layout.scss +0 -0
  1188. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_material-definition.scss +0 -0
  1189. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_theme.scss +0 -0
  1190. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/material.scss +0 -0
  1191. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_layout.scss +0 -0
  1192. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_material-definition.scss +0 -0
  1193. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_theme.scss +0 -0
  1194. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/material.scss +0 -0
  1195. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_layout.scss +0 -0
  1196. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_material-definition.scss +0 -0
  1197. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_theme.scss +0 -0
  1198. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/material.scss +0 -0
  1199. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_layout.scss +0 -0
  1200. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_material-definition.scss +0 -0
  1201. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_theme.scss +0 -0
  1202. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/material.scss +0 -0
  1203. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_layout.scss +0 -0
  1204. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_material-definition.scss +0 -0
  1205. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_theme.scss +0 -0
  1206. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/material.scss +0 -0
  1207. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_layout.scss +0 -0
  1208. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_material-definition.scss +0 -0
  1209. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_theme.scss +0 -0
  1210. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/material.scss +0 -0
  1211. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_layout.scss +0 -0
  1212. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_material-definition.scss +0 -0
  1213. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_theme.scss +0 -0
  1214. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/material.scss +0 -0
  1215. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_layout.scss +0 -0
  1216. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_material-definition.scss +0 -0
  1217. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_theme.scss +0 -0
  1218. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/material.scss +0 -0
  1219. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_layout.scss +0 -0
  1220. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_material-definition.scss +0 -0
  1221. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_theme.scss +0 -0
  1222. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/material.scss +0 -0
  1223. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_layout.scss +0 -0
  1224. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_material-definition.scss +0 -0
  1225. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_theme.scss +0 -0
  1226. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/material.scss +0 -0
  1227. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_layout.scss +0 -0
  1228. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_material-definition.scss +0 -0
  1229. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_theme.scss +0 -0
  1230. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/material.scss +0 -0
  1231. /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-buttons.component.scss +0 -0
  1232. /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-window-shell.component.scss +0 -0
  1233. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_layout.scss +0 -0
  1234. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_material-definition.scss +0 -0
  1235. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_theme.scss +0 -0
  1236. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/material.scss +0 -0
  1237. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_layout.scss +0 -0
  1238. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_material-definition.scss +0 -0
  1239. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_theme.scss +0 -0
  1240. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/material.scss +0 -0
  1241. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_layout.scss +0 -0
  1242. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_material-definition.scss +0 -0
  1243. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_theme.scss +0 -0
  1244. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/material.scss +0 -0
  1245. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_layout.scss +0 -0
  1246. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_material-definition.scss +0 -0
  1247. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_theme.scss +0 -0
  1248. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/material.scss +0 -0
  1249. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_layout.scss +0 -0
  1250. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_material-definition.scss +0 -0
  1251. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_theme.scss +0 -0
  1252. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/material.scss +0 -0
  1253. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_layout.scss +0 -0
  1254. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_material-definition.scss +0 -0
  1255. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_theme.scss +0 -0
  1256. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/material.scss +0 -0
  1257. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_layout.scss +0 -0
  1258. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_material-definition.scss +0 -0
  1259. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_theme.scss +0 -0
  1260. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/material.scss +0 -0
  1261. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_layout.scss +0 -0
  1262. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_material-definition.scss +0 -0
  1263. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_theme.scss +0 -0
  1264. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/material.scss +0 -0
  1265. /package/{lib → projects/corecomponents/src/lib}/style/_input.mixins.scss +0 -0
  1266. /package/{lib → projects/corecomponents/src/lib}/style/_mixin.scss +0 -0
  1267. /package/{lib → projects/corecomponents/src/lib}/style/_variables.scss +0 -0
  1268. /package/{lib → projects/corecomponents/src/lib}/style/corecomponents-globals.scss +0 -0
  1269. /package/{lib → projects/corecomponents/src/lib}/style/material2/_core.scss +0 -0
  1270. /package/{lib → projects/corecomponents/src/lib}/style/material2/_material2-scss-barrel.scss +0 -0
  1271. /package/{lib → projects/corecomponents/src/lib}/style/material2/ripple/_co-ripple.scss +0 -0
  1272. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_elevation.scss +0 -0
  1273. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_list-common.scss +0 -0
  1274. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_variables.scss +0 -0
  1275. /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_palette.scss +0 -0
  1276. /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_theming.scss +0 -0
  1277. /package/{lib → projects/corecomponents/src/lib}/style/material2/typography/_typography.scss +0 -0
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M18.5,10.16c2.88,0,5.21,2,5.21,4.33a5.33,5.33,0,0,1-5.21,4.87,5.34,5.34,0,0,1-5.22-4.87C13.28,12.2,15.62,10.16,18.5,10.16Z" fill="#484f60"/><path d="M31.5,10.16c2.88,0,5.21,2,5.21,4.33a5.23,5.23,0,0,1-10.43,0C26.28,12.2,28.62,10.16,31.5,10.16Z" fill="#484f60"/><path d="M23,21.87h4A3.54,3.54,0,0,0,25,19,3.54,3.54,0,0,0,23,21.87Z" fill="#484f60"/><path d="M36.6,18.61h-.42c-.93,1.32-2.87,2.9-4.68,2.9s-3.76-1.58-4.69-2.9H26.4A3.18,3.18,0,0,0,25,19a3.54,3.54,0,0,1,2,2.92H23A3.54,3.54,0,0,1,25,19a3.18,3.18,0,0,0-1.4-.34h-.42c-.93,1.32-2.87,2.9-4.68,2.9s-3.76-1.58-4.69-2.9H13.4A3.54,3.54,0,0,0,10,21.87l2.27,2.49c0,1.5,2.52,15.48,4.4,15.48h6.5C22,39.84,21,36.37,21,35.4L19.5,33.79a2.3,2.3,0,0,1,2.2-2.12H22a4.3,4.3,0,0,0,3,1.88,4.3,4.3,0,0,0,3-1.88h.27a2.31,2.31,0,0,1,2.2,2.12L29,35.4c0,1-1,4.44-2.2,4.44h6.5c1.88,0,4.4-14,4.4-15.48L40,21.87A3.55,3.55,0,0,0,36.6,18.61ZM25,32.32a4.09,4.09,0,0,1-4-3.73c0-1.76,1.79-3.33,4-3.33s4,1.57,4,3.33A4.09,4.09,0,0,1,25,32.32Z" fill="#484f60"/></svg>
@@ -0,0 +1,10 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <g opacity="0.5">
3
+ <polygon points="29.79 40.5 29.79 39.49 28.97 40.5 29.79 40.5" fill="#4d5050"/>
4
+ <path d="M684,389.82H671.14v-2.14h11.1l-2.6-3.21h-8.5v-2.14h6.77l-.8-1h9.15l2,2.51V369.47H669v30h7.5V393h4.29v3.38l4.26-5.27Zm-12.83-18.21h15v2.14h-15Zm0,5.36h15v2.14h-15Z"
5
+ transform="translate(-658.5 -358.97)" fill="#4d5050"/>
6
+ </g>
7
+ <polygon
8
+ points="35.21 40.5 31.13 35.45 27.04 40.5 21.75 40.5 28.48 32.18 21.75 23.87 27.04 23.87 31.13 28.91 35.21 23.87 40.5 23.87 33.77 32.18 40.5 40.5 35.21 40.5"
9
+ fill="#4d5050"/>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M36.94,12h-4v2a2,2,0,1,1-4.08,0V12H21.17v2a2,2,0,1,1-4.08,0V12h-4a1.2,1.2,0,0,0-1.19,1.2V18H38.14V13.16A1.2,1.2,0,0,0,36.94,12Z" fill="#484f60"/><path d="M37.14,20.5v16L34.65,39H13.05a.2.2,0,0,1-.19-.2V20.5H37.14m1-1H11.86V38.8A1.2,1.2,0,0,0,13.05,40h22l3.08-3.08V19.5Z" fill="#484f60"/><rect x="18.24" y="10" width="1.79" height="4.87" rx="0.9" ry="0.9" fill="#484f60"/><rect x="29.97" y="10" width="1.79" height="4.87" rx="0.9" ry="0.9" fill="#484f60"/><rect x="11.86" y="24.37" width="26.28" height="0.5" fill="#484f60"/><rect x="11.86" y="29.5" width="26.28" height="0.5" fill="#484f60"/><rect x="11.86" y="34.62" width="26.28" height="0.5" fill="#484f60"/><rect x="18.18" y="19.5" width="0.5" height="20.5" fill="#484f60"/><rect x="24.75" y="19.5" width="0.5" height="20.5" fill="#484f60"/><rect x="31.32" y="19.5" width="0.5" height="20.5" fill="#484f60"/><path d="M23.18,29.34a13.36,13.36,0,0,1-3-3.65l.87-.5a12.36,12.36,0,0,0,2.71,3.32Z" fill="#484f60"/><path d="M20.45,28.73l-1-.24c.15-.6.9-1.23,2-2.11a7.56,7.56,0,0,0,1.21-1.07l1,.2c-.06.45-.55.85-1.57,1.65C21.57,27.6,20.53,28.42,20.45,28.73Z" fill="#484f60"/><path d="M29.46,29.34a13.47,13.47,0,0,1-3-3.65l.87-.5A12.58,12.58,0,0,0,30,28.51Z" fill="#484f60"/><path d="M26.72,28.73l-1-.24c.16-.6.91-1.23,2-2.11A7.74,7.74,0,0,0,29,25.31l1,.2c-.06.45-.55.85-1.57,1.65C27.84,27.6,26.8,28.42,26.72,28.73Z" fill="#484f60"/><path d="M36,29.34a13.36,13.36,0,0,1-3-3.65l.87-.5a12.36,12.36,0,0,0,2.71,3.32Z" fill="#484f60"/><path d="M33.23,28.73l-1-.24c.15-.6.9-1.23,2-2.11a7.13,7.13,0,0,0,1.21-1.07l1,.2c-.06.45-.55.85-1.57,1.65C34.35,27.6,33.31,28.42,33.23,28.73Z" fill="#484f60"/><path d="M17.19,34.47a13.46,13.46,0,0,1-3-3.65l.87-.5a12.63,12.63,0,0,0,2.7,3.32Z" fill="#484f60"/><path d="M14.46,33.86l-1-.25c.15-.59.9-1.22,2-2.11a8.72,8.72,0,0,0,1.21-1.06l1,.19c-.06.45-.56.86-1.58,1.66C15.58,32.73,14.54,33.55,14.46,33.86Z" fill="#484f60"/><path d="M23.05,34.47a13.46,13.46,0,0,1-3-3.65l.87-.5a12.52,12.52,0,0,0,2.71,3.32Z" fill="#484f60"/><path d="M20.32,33.86l-1-.25c.15-.59.9-1.22,2-2.11a8.16,8.16,0,0,0,1.21-1.06l1,.19c-.06.45-.55.86-1.57,1.66C21.44,32.73,20.4,33.55,20.32,33.86Z" fill="#484f60"/></svg>
@@ -0,0 +1,10 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M682.38,393.69a7.48,7.48,0,0,1,3.35-5.39,1.29,1.29,0,0,0,.48-1.82,8.11,8.11,0,0,0-3.66-3.86c-1.19-.63-1.6-.34-2.21.48a6.92,6.92,0,0,1-5.14,3.08,6.66,6.66,0,0,0,.62,13.29A6.45,6.45,0,0,0,682.38,393.69Zm-10.45,2.42a4.82,4.82,0,0,1-1.26-3.4,4.75,4.75,0,0,1,1.33-3.27c.22-.22.69-.18,1-.26,0,.34.05.77-.12,1a3.94,3.94,0,0,0,0,5.22c.17.24.07.66.09,1C672.63,396.32,672.15,396.34,671.93,396.12Z"
3
+ transform="translate(-658.5 -358.97)" fill="#4d5050"/>
4
+ <path d="M692.65,390.82a12.66,12.66,0,0,0-1.36-3.28,32.24,32.24,0,0,0-10.1-10.27,12.85,12.85,0,0,0-3.15-1.41c-1.33-.41-2.07.34-1.8,1.72a12.81,12.81,0,0,0,2.46,4.85c.09-.11.19-.2.29-.33a3.11,3.11,0,0,1,2.5-1.5,3.93,3.93,0,0,1,1.84.53,9.76,9.76,0,0,1,4.4,4.64,3,3,0,0,1-1,3.89c-.17.12-.29.25-.44.37a11.94,11.94,0,0,0,4.76,2.44C692.29,392.65,693,392,692.65,390.82Z"
5
+ transform="translate(-658.5 -358.97)" fill="#4d5050"/>
6
+ <path d="M694.1,381.5a6.09,6.09,0,1,0-7.07-3.85c.48,1.31,1.12,1.85,1.86,1.48,1.12-.56.71-1.4.3-2.2a.91.91,0,0,1,0-.11,3.82,3.82,0,1,1,4.81,2.38l-.36.12Z"
7
+ transform="translate(-658.5 -358.97)" fill="#4d5050"/>
8
+ <path d="M690.36,378.72a2,2,0,0,1-1.1,1.17,1.82,1.82,0,0,1-.82.2c-.94,0-1.68-.72-2.2-2.15a7.07,7.07,0,0,1-.31-1.14,5.12,5.12,0,0,0-1.59,1,33.85,33.85,0,0,1,7.16,7.29,5.11,5.11,0,0,0-1.37-8.14A2.36,2.36,0,0,1,690.36,378.72Z"
9
+ transform="translate(-658.5 -358.97)" fill="#4d5050"/>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="26.19 27.13 31.78 23.88 37.39 27.11 31.79 30.35 26.19 27.13" fill="#484f60"/><polygon points="32.39 31.38 37.99 28.14 38 34.61 32.41 37.85 32.39 31.38" fill="#484f60" opacity="0.5"/><polygon points="25.6 34.63 25.59 28.16 31.2 31.39 31.21 37.85 25.6 34.63" fill="#484f60" opacity="0.25"/><polygon points="12.6 27.15 18.19 23.91 23.8 27.13 18.2 30.37 12.6 27.15" fill="#484f60"/><polygon points="18.8 31.41 24.39 28.16 24.41 34.63 18.81 37.88 18.8 31.41" fill="#484f60" opacity="0.5"/><polygon points="12.01 34.65 12 28.19 17.61 31.41 17.62 37.88 12.01 34.65" fill="#484f60" opacity="0.25"/><polygon points="19.37 15.37 24.96 12.12 30.57 15.35 24.98 18.59 19.37 15.37" fill="#484f60"/><polygon points="25.58 19.62 31.17 16.38 31.18 22.85 25.59 26.09 25.58 19.62" fill="#484f60" opacity="0.5"/><polygon points="18.79 22.87 18.77 16.4 24.38 19.63 24.39 26.09 18.79 22.87" fill="#484f60" opacity="0.25"/></svg>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, 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 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
5
+ <g>
6
+ <polygon fill="#2A363B" points="20,32.1 25,29.2 29.9,32.1 25,34.9 "/>
7
+ <polygon opacity="0.5" fill="#2A363B" points="25.5,35.9 30.5,33 30.5,38.7 25.5,41.6 "/>
8
+ <polygon opacity="0.25" fill="#2A363B" points="19.5,38.7 19.5,33 24.5,35.9 24.5,41.6 "/>
9
+ <polygon fill="#2A363B" points="26,21.7 31,18.8 35.9,21.7 31,24.5 "/>
10
+ <polygon opacity="0.5" fill="#2A363B" points="31.5,25.4 36.5,22.6 36.5,28.3 31.5,31.2 "/>
11
+ <polygon opacity="0.25" fill="#2A363B" points="25.5,28.3 25.5,22.6 30.5,25.4 30.5,31.2 "/>
12
+ <polygon fill="#2A363B" points="14,21.7 19,18.8 23.9,21.7 19,24.5 "/>
13
+ <polygon opacity="0.5" fill="#2A363B" points="19.5,25.5 24.4,22.6 24.5,28.3 19.5,31.2 "/>
14
+ <polygon opacity="0.25" fill="#2A363B" points="13.5,28.3 13.5,22.6 18.4,25.5 18.5,31.2 "/>
15
+ <polygon fill="#2A363B" points="8,32.1 13,29.2 17.9,32.1 13,35 "/>
16
+ <polygon opacity="0.5" fill="#2A363B" points="13.5,35.9 18.5,33 18.5,38.7 13.5,41.6 "/>
17
+ <polygon opacity="0.25" fill="#2A363B" points="7.5,38.7 7.5,33 12.5,35.9 12.5,41.6 "/>
18
+ <polygon fill="#2A363B" points="32.1,32.1 37,29.2 42,32 37,34.9 "/>
19
+ <polygon opacity="0.5" fill="#2A363B" points="37.5,35.8 42.5,33 42.5,38.7 37.6,41.5 "/>
20
+ <polygon opacity="0.25" fill="#2A363B" points="31.5,38.7 31.5,33 36.5,35.8 36.5,41.5 "/>
21
+ <polygon fill="#2A363B" points="20,11.3 25,8.4 29.9,11.3 25,14.1 "/>
22
+ <polygon opacity="0.5" fill="#2A363B" points="25.5,15 30.4,12.2 30.4,17.9 25.5,20.8 "/>
23
+ <polygon opacity="0.25" fill="#2A363B" points="19.5,17.9 19.5,12.2 24.4,15 24.4,20.8 "/>
24
+ </g>
25
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="25.9 25.28 30.14 22.82 34.39 25.26 30.15 27.72 25.9 25.28" fill="#484f60"/><polygon points="30.6 28.5 34.84 26.05 34.85 30.95 30.61 33.4 30.6 28.5" fill="#484f60" opacity="0.5"/><polygon points="25.46 30.96 25.45 26.06 29.7 28.5 29.7 33.41 25.46 30.96" fill="#484f60" opacity="0.25"/><polygon points="15.6 25.3 19.84 22.84 24.09 25.28 19.85 27.74 15.6 25.3" fill="#484f60"/><polygon points="20.3 28.52 24.54 26.07 24.55 30.96 20.31 33.42 20.3 28.52" fill="#484f60" opacity="0.5"/><polygon points="15.16 30.98 15.15 26.08 19.4 28.52 19.41 33.42 15.16 30.98" fill="#484f60" opacity="0.25"/><polygon points="20.73 16.37 24.97 13.91 29.22 16.35 24.98 18.81 20.73 16.37" fill="#484f60"/><polygon points="25.44 19.59 29.68 17.14 29.68 22.03 25.45 24.49 25.44 19.59" fill="#484f60" opacity="0.5"/><polygon points="20.29 22.05 20.28 17.15 24.53 19.59 24.54 24.5 20.29 22.05" fill="#484f60" opacity="0.25"/><polygon points="40 36.42 10 36.42 10 16.66 11.43 16.66 11.43 35 38.57 35 38.57 16.66 40 16.66 40 36.42" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M18.14,26.63l.69-.84c.17-.22.35-.44.53-.65A.46.46,0,0,1,19.6,25a1.59,1.59,0,0,1,1,.19,1.07,1.07,0,0,1,.52.84c.05.8.08,1.61.12,2.41a.57.57,0,0,1,0,.12H15c0-.22,0-.43,0-.64,0-.6.08-1.19.1-1.79A1.18,1.18,0,0,1,16.27,25a.85.85,0,0,1,.86.39c.24.35.54.67.81,1Z" fill="#484f60"/><path d="M23.26,25.32H21.62v-.76h1.63V17.12h2.83v.74h-2v6.7h2v.75h-2V32h2v.76H23.26Z" fill="#484f60"/><path d="M33,27.62H28.18v-.16c0-.45.06-.89.08-1.34a.61.61,0,0,1,.35-.53,1.76,1.76,0,0,1,.63-.15c.89,0,1.77,0,2.65,0a1.45,1.45,0,0,1,.47.08.71.71,0,0,1,.52.7c0,.41,0,.82.08,1.23Z" fill="#484f60"/><path d="M28.17,34c0-.38,0-.74.07-1.09,0-.12,0-.23,0-.34a.63.63,0,0,1,.39-.62,1.89,1.89,0,0,1,.58-.14h2.68a1.32,1.32,0,0,1,.44.08.71.71,0,0,1,.53.7c0,.41,0,.81.07,1.22A1.15,1.15,0,0,1,33,34Z" fill="#484f60"/><path d="M28.17,21.1c0-.19,0-.36,0-.53s0-.56.06-.84a.76.76,0,0,1,.68-.79,1.87,1.87,0,0,1,.34,0h2.58a1.19,1.19,0,0,1,.71.19.59.59,0,0,1,.29.47c0,.48.07,1,.1,1.45,0,0,0,0,0,.08Z" fill="#484f60"/><path d="M19.74,22.9a1.6,1.6,0,0,1-1.6,1.62,1.63,1.63,0,0,1-1.63-1.61,1.61,1.61,0,0,1,1.63-1.61A1.58,1.58,0,0,1,19.74,22.9Z" fill="#484f60"/><path d="M29.33,23.78a1.24,1.24,0,1,1,1.25,1.27A1.25,1.25,0,0,1,29.33,23.78Z" fill="#484f60"/><path d="M29.33,17.26a1.24,1.24,0,1,1,1.23,1.27A1.24,1.24,0,0,1,29.33,17.26Z" fill="#484f60"/><path d="M29.33,30.16a1.24,1.24,0,1,1,2.48,0,1.24,1.24,0,1,1-2.48,0Z" fill="#484f60"/><path d="M25,11A14,14,0,1,1,11,25,14,14,0,0,1,25,11m0-1A15,15,0,1,0,40,25,15,15,0,0,0,25,10Z" fill="#484f60"/></svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, 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 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
5
+ <g>
6
+ <polygon fill="#29363E" points="18.6,12.9 25.5,10.1 32.4,12.9 25.5,15.8 "/>
7
+ <path fill="#29363E" d="M33.2,14.2L26.2,17l0,8l0.2-0.1c0,0,0.1,0,0.1,0l0.7-0.3c-0.4-0.8-0.6-1.6-0.6-2.5c0-3,3-5.6,6.4-5.6
8
+ c0,0,0,0,0.1,0L33.2,14.2z"/>
9
+ <polyline fill="#29363E" points="18,17.6 24.8,24.3 24.8,17.1 17.8,14.2 17.8,17.4 "/>
10
+ <path fill="#29363E" d="M38,26.1h-0.4c-0.9,1.3-2.7,2.8-4.4,2.8c-1.7,0-3.6-1.5-4.4-2.8h-0.4c-0.8,0-1.4,0.3-2,0.8l3.7,3.7
11
+ l-2.5,2.5c0.5,2,1.6,5,3,5h5.4c1.8,0,3.2-5.1,3.2-6.5l2.2-2.4C41.2,27.8,39.7,26.1,38,26.1z"/>
12
+ <path fill="#29363E" d="M38.1,22.2c0,2.2-2.2,4.6-4.9,4.6c-2.7,0-4.9-2.4-4.9-4.6c0-2.2,2.2-4.1,4.9-4.1
13
+ C35.9,18.1,38.1,20,38.1,22.2z"/>
14
+ <g>
15
+ <polygon fill="#29363E" points="27.9,30.6 18.5,21.2 18.5,27 8.8,27 8.8,34.1 18.5,34.1 18.5,39.9 "/>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,35 @@
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
+ <g>
6
+ <path fill="#4C4C4C" d="M25.5,38.8c-7.2,0-13-5.8-13-13c0-6.4,4.6-11.8,10.9-12.8l0.4,0.9c-0.8,0.6-1.2,1.5-1.2,2.4
7
+ c0,1.7,1.3,3,3,3s3-1.3,3-3c0-1-0.4-1.8-1.2-2.4l0.4-0.9c6.3,1,10.9,6.4,10.9,12.8C38.5,32.9,32.7,38.8,25.5,38.8z M22,14.3
8
+ c-5,1.5-8.5,6.1-8.5,11.5c0,6.6,5.4,12,12,12s12-5.4,12-12c0-5.4-3.5-10-8.5-11.5c0.3,0.6,0.5,1.3,0.5,2c0,2.2-1.8,4-4,4
9
+ s-4-1.8-4-4C21.5,15.5,21.7,14.9,22,14.3z"/>
10
+ <path fill="#4C4C4C" d="M30,34.3h-9c-0.8,0-1.5-0.7-1.5-1.5v-5c0-0.8,0.7-1.5,1.5-1.5h9c0.8,0,1.5,0.7,1.5,1.5v5
11
+ C31.5,33.6,30.8,34.3,30,34.3z"/>
12
+
13
+ <rect x="15.8" y="23.1" transform="matrix(0.2747 -0.9615 0.9615 0.2747 -13.7537 35.2664)" fill="#4C4C4C" width="1.5" height="7.3"/>
14
+
15
+ <rect x="30.9" y="26" transform="matrix(0.9615 -0.2749 0.2749 0.9615 -6.0243 10.5144)" fill="#4C4C4C" width="7.3" height="1.5"/>
16
+ <rect x="15.8" y="32.5" transform="matrix(0.9715 -0.237 0.237 0.9715 -7.3694 5.2014)" fill="#4C4C4C" width="4.2" height="1.5"/>
17
+
18
+ <rect x="32.3" y="31.1" transform="matrix(0.2368 -0.9716 0.9716 0.2368 -7.0792 57.4882)" fill="#4C4C4C" width="1.5" height="4.2"/>
19
+
20
+ <rect x="30.8" y="14.2" transform="matrix(5.361340e-03 -1 1 5.361340e-03 14.5533 48.1979)" fill="#4C4C4C" width="1.5" height="5.1"/>
21
+
22
+ <rect x="16.9" y="16" transform="matrix(1 -5.208263e-03 5.208263e-03 1 -8.714692e-02 0.1018)" fill="#4C4C4C" width="5.1" height="1.5"/>
23
+ <g>
24
+ <path fill="#4C4C4C" d="M22,24c-0.5,0-1,0.1-1-1s0.5-2,1-2s1,0.9,1,2S22.5,24,22,24z"/>
25
+ <path fill="#4C4C4C" d="M22,24.2c-0.7,0-1.3,0-1.3-1.3s0.6-2.3,1.3-2.3s1.3,1,1.3,2.3S22.7,24.2,22,24.2z M22,21.2
26
+ c-0.3,0-0.8,0.7-0.8,1.8s0.5,0.8,0.8,0.8s0.8,0.3,0.8-0.8S22.3,21.2,22,21.2z"/>
27
+ </g>
28
+ <g>
29
+ <path fill="#4C4C4C" d="M29,24c-0.5,0-1,0.1-1-1s0.5-2,1-2s1,0.9,1,2S29.5,24,29,24z"/>
30
+ <path fill="#4C4C4C" d="M29,24.2c-0.7,0-1.3,0-1.3-1.3s0.6-2.3,1.3-2.3s1.3,1,1.3,2.3S29.7,24.2,29,24.2z M29,21.2
31
+ c-0.3,0-0.8,0.7-0.8,1.8s0.5,0.8,0.8,0.8s0.8,0.3,0.8-0.8S29.3,21.2,29,21.2z"/>
32
+ </g>
33
+ <path fill="#4C4C4C" d="M25.5,20.3c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S27.7,20.3,25.5,20.3z"/>
34
+ </g>
35
+ </svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <rect x="10" y="12.67" width="7.5" height="25" fill="#484f60" opacity="0.25"/>
3
+ <rect x="17.5" y="12.67" width="22.5" height="5" fill="#484f60" opacity="0.25"/>
4
+ <rect x="10" y="37.17" width="30" height="1" fill="#484f60"/>
5
+ <rect x="10" y="27.17" width="30" height="1" fill="#484f60"/>
6
+ <rect x="10" y="17.17" width="30" height="1" fill="#484f60"/>
7
+ <rect x="10" y="12.17" width="30" height="1" fill="#484f60"/>
8
+ <rect x="10" y="22.17" width="30" height="1" fill="#484f60"/>
9
+ <rect x="10" y="32.17" width="30" height="1" fill="#484f60"/>
10
+ <rect x="9.5" y="12.67" width="1" height="25" fill="#484f60"/>
11
+ <rect x="39.5" y="12.67" width="1" height="25" fill="#484f60"/>
12
+ <rect x="24.5" y="12.67" width="1" height="25" fill="#484f60"/>
13
+ <rect x="17" y="12.67" width="1" height="25" fill="#484f60"/>
14
+ <rect x="32" y="12.67" width="1" height="25" fill="#484f60"/>
15
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M40,29.15v-.68a5.28,5.28,0,0,0-1.34-3.25L24.78,11.34A5.34,5.34,0,0,0,21.53,10H11.9A1.91,1.91,0,0,0,10,11.9v9.63a5.28,5.28,0,0,0,1.34,3.25L25.22,38.66A5.28,5.28,0,0,0,28.47,40h.68a5.28,5.28,0,0,0,3.24-1.34l6.27-6.27A5.28,5.28,0,0,0,40,29.15ZM13.13,16.72a2.54,2.54,0,1,1,3.59,0A2.55,2.55,0,0,1,13.13,16.72Zm15.9,19L17.84,24.55l1.34-1.34L30.37,34.4Zm2.69-2.69L20.52,21.87l1.35-1.35,11.19,11.2Zm2.68-2.69L23.21,19.18l1.34-1.34L35.75,29Z" fill="#484f60"/></svg>
@@ -0,0 +1,7 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <ellipse cx="19.4" cy="28.2" rx="10.9" ry="8" fill="#4d5050"/>
3
+ <path d="M290,428.4c0.9,2.7-1.6,6.7-8.5,8.3h0c2.8-.9,5.3-5.6,1.1-8.3H290Z" transform="translate(-272.5 -396)" fill="#4d5050"/>
4
+ <path d="M315,414.2c0-4.4-4.9-8-10.9-8s-10.9,3.6-10.9,8v0.2c5.6,0.4,10.1,3.6,11.3,7.7C310.3,422.1,315,418.6,315,414.2Z"
5
+ transform="translate(-272.5 -396)" fill="#4d5050"/>
6
+ <path d="M306,418.5c-0.9,2.7,1.6,6.7,8.5,8.3h0c-2.8-.9-5.3-5.6-1.1-8.3H306Z" transform="translate(-272.5 -396)" fill="#4d5050"/>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M13.67,25.17c0-.34,0-.67,0-1h-2c0,.33,0,.66,0,1A13.35,13.35,0,0,0,22,38.16V36.09A11.33,11.33,0,0,1,13.67,25.17Z" fill="#484f60"/><path d="M35.93,28.17A11.36,11.36,0,0,1,25,36.5c-.34,0-.67,0-1,0v2c.33,0,.66,0,1,0A13.35,13.35,0,0,0,38,28.17Z" fill="#484f60"/><path d="M25,13.83c.34,0,.67,0,1,.05v-2c-.33,0-.66,0-1,0A13.35,13.35,0,0,0,12,22.17h2.06A11.36,11.36,0,0,1,25,13.83Z" fill="#484f60"/><path d="M38.3,26.17c0-.33,0-.67,0-1A13.37,13.37,0,0,0,28,12.17v2.07a11.35,11.35,0,0,1,8.33,10.93c0,.33,0,.67,0,1Z" fill="#484f60"/><path d="M25,19.17a6.63,6.63,0,0,1,1,.08v-2a8.26,8.26,0,0,0-1-.06,8,8,0,0,0-7.41,5h2.22A6,6,0,0,1,25,19.17Z" fill="#484f60"/><path d="M19,25.17a6.53,6.53,0,0,1,.08-1h-2a8.14,8.14,0,0,0-.06,1,8,8,0,0,0,5,7.41V30.36A6,6,0,0,1,19,25.17Z" fill="#484f60"/><path d="M30.19,28.17a6,6,0,0,1-5.19,3,5.55,5.55,0,0,1-1-.09v2a8.26,8.26,0,0,0,1,.07,8,8,0,0,0,7.41-5Z" fill="#484f60"/><path d="M32.94,26.17a8.26,8.26,0,0,0,.06-1,8,8,0,0,0-5-7.42V20a6,6,0,0,1,3,5.2,6.63,6.63,0,0,1-.08,1Z" fill="#484f60"/><circle cx="25" cy="25.17" r="2.67" fill="#484f60"/><rect x="9" y="24.17" width="32" height="2" fill="#484f60"/><rect x="24" y="9.17" width="2" height="32" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M33.82,13.53h-.88v1.32h.88a.44.44,0,0,1,.44.44v23a.44.44,0,0,1-.44.44H16.18a.44.44,0,0,1-.44-.44v-23a.44.44,0,0,1,.44-.44h.88V13.53h-.88a1.76,1.76,0,0,0-1.77,1.76v23A1.76,1.76,0,0,0,16.18,40H33.82a1.76,1.76,0,0,0,1.77-1.76v-23A1.76,1.76,0,0,0,33.82,13.53Z" fill="#484f60"/><path d="M27.65,12.65a2.65,2.65,0,0,1-5.3,0H19.26a.88.88,0,0,0-.88.88v2.65a.89.89,0,0,0,.88.88H30.74a.89.89,0,0,0,.88-.88V13.53a.88.88,0,0,0-.88-.88Z" fill="#484f60"/><path d="M25,10a2.65,2.65,0,1,0,2.65,2.65A2.65,2.65,0,0,0,25,10Zm0,4a1.33,1.33,0,1,1,1.32-1.32A1.32,1.32,0,0,1,25,14Z" fill="#484f60"/><rect x="22.09" y="21.51" width="10" height="1" fill="#484f60"/><rect x="22.09" y="27.51" width="10" height="1" fill="#484f60"/><rect x="22.09" y="33.51" width="10" height="1" fill="#484f60"/><path d="M20.09,33.51v1h-1v-1h1m1-1h-3v3h3v-3Z" fill="#484f60"/><polygon points="19.44 30.02 17.91 27.86 18.52 27.43 19.33 28.57 20.61 26.02 21.27 26.35 19.44 30.02" fill="#484f60"/><polygon points="19.44 24.02 17.91 21.86 18.52 21.43 19.33 22.57 20.61 20.02 21.27 20.35 19.44 24.02" fill="#484f60"/><path d="M25-1.67A23.35,23.35,0,0,1,1.67-25,23.35,23.35,0,0,1,25-48.33,23.35,23.35,0,0,1,48.33-25,23.35,23.35,0,0,1,25-1.67M25,0A25,25,0,0,0,50-25,25,25,0,0,0,25-50,25,25,0,0,0,0-25,25,25,0,0,0,25,0Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="12.67" width="30" height="7" fill="#484f60"/><rect x="10" y="21.67" width="30" height="7" fill="#484f60"/><rect x="10" y="30.67" width="30" height="7" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="14.17" width="30" height="4" fill="#484f60"/><rect x="10" y="20.17" width="30" height="4" fill="#484f60"/><rect x="10" y="26.17" width="30" height="4" fill="#484f60"/><rect x="10" y="32.17" width="30" height="4" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M10,28.3c0,4,5.36,6.39,11.5,7.05V31.62c-5.56-.63-9.64-2.71-9.64-5.18,0-1.3,1.14-2.49,3-3.43l-.13-.12C11.91,24.1,10,25.91,10,28.3Z" fill="#484f60"/><path d="M35.21,22.87a1.59,1.59,0,0,1-.13.13c1.9.93,3.06,2.13,3.06,3.44,0,2.63-4.61,4.81-10.71,5.28l2.27,1.82-2.39,1.91C33.93,35,40,32.56,40,28.3,40,25.9,38.07,24.09,35.21,22.87Z" fill="#484f60"/><polygon points="26.5 33.54 21.5 37.54 21.5 29.54 26.5 33.54" fill="#484f60"/><path d="M13.5,19.2s10.7,15.5,23,0C36.5,19.2,26.2,4,13.5,19.2ZM25,24.87a5.59,5.59,0,1,1,5.59-5.59A5.59,5.59,0,0,1,25,24.87Z" fill="#484f60"/><path d="M27.45,17.74A2.46,2.46,0,1,1,25,15.29,2.45,2.45,0,0,1,27.45,17.74Z" fill="#484f60"/></svg>
@@ -0,0 +1,29 @@
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" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <g>
8
+ <path fill="#A06F51" d="M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6
9
+ l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3
10
+ c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3
11
+ L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4
12
+ c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6
13
+ l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1
14
+ l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3
15
+ l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8
16
+ c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12
17
+ C37.5,32.1,32.1,37.5,25.5,37.5z"/>
18
+ </g>
19
+ </g>
20
+ <path fill="#CF8E67" d="M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z"/>
21
+ <g>
22
+ <path fill="#FFFFFF" d="M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4
23
+ C19,28.5,18.5,26.7,18.5,25.1"/>
24
+ <path fill="#FFFFFF" d="M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3
25
+ c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4
26
+ c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8"/>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,29 @@
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" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <g>
8
+ <path fill="#CB9618" d="M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6
9
+ l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3
10
+ c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3
11
+ L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4
12
+ c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6
13
+ l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1
14
+ l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3
15
+ l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8
16
+ c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12
17
+ C37.5,32.1,32.1,37.5,25.5,37.5z"/>
18
+ </g>
19
+ </g>
20
+ <path fill="#F0B016" d="M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z"/>
21
+ <g>
22
+ <path fill="#FFFFFF" d="M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4
23
+ C19,28.5,18.5,26.7,18.5,25.1"/>
24
+ <path fill="#FFFFFF" d="M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3
25
+ c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4
26
+ c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8"/>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,29 @@
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" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <g>
8
+ <path fill="#C0C1C2" d="M38.5,27.5c-0.3-0.5-0.2-1.2,0.2-1.6l1.2-1.4c0.4-0.4,0.3-1-0.1-1.4l-1.5-1.1c-0.4-0.3-0.7-1-0.5-1.6
9
+ l0.5-1.7c0.2-0.5-0.1-1.1-0.7-1.2l-1.8-0.4c-0.5-0.1-1-0.7-1.1-1.2l-0.2-1.8c-0.1-0.5-0.6-0.9-1.1-0.8l-1.8,0.3
10
+ c-0.5,0.1-1.2-0.2-1.5-0.7l-0.9-1.6c-0.3-0.5-0.9-0.6-1.3-0.3l-1.5,1c-0.5,0.3-1.2,0.3-1.6,0l-1.5-1c-0.5-0.3-1.1-0.2-1.3,0.3
11
+ L20.9,13c-0.3,0.5-1,0.8-1.5,0.7l-1.8-0.3c-0.5-0.1-1,0.3-1.1,0.8l-0.2,1.8c-0.1,0.5-0.6,1.1-1.1,1.2l-1.8,0.4
12
+ c-0.5,0.1-0.8,0.7-0.7,1.2l0.5,1.7c0.2,0.5-0.1,1.2-0.5,1.6l-1.5,1.1c-0.4,0.3-0.5,0.9-0.1,1.4l1.2,1.4c0.4,0.4,0.4,1.2,0.2,1.6
13
+ l-0.9,1.6c-0.3,0.5-0.1,1.1,0.4,1.3l1.6,0.8c0.5,0.2,0.9,0.9,0.8,1.4l-0.2,1.8c0,0.5,0.4,1,0.9,1l1.8,0c0.5,0,1.1,0.4,1.3,1
14
+ l0.6,1.7c0.2,0.5,0.7,0.8,1.2,0.6L22,38c0.5-0.2,1.2-0.1,1.6,0.3l1.2,1.3c0.4,0.4,1,0.4,1.4,0l1.2-1.3c0.4-0.4,1.1-0.6,1.6-0.3
15
+ l1.7,0.7c0.5,0.2,1.1,0,1.2-0.6l0.6-1.7c0.2-0.5,0.8-1,1.3-1l1.8,0c0.5,0,1-0.5,0.9-1l-0.2-1.8c0-0.5,0.3-1.2,0.8-1.4l1.6-0.8
16
+ c0.5-0.2,0.7-0.8,0.4-1.3L38.5,27.5z M25.5,37.5c-6.6,0-12-5.4-12-12c0-6.6,5.4-12,12-12c6.6,0,12,5.4,12,12
17
+ C37.5,32.1,32.1,37.5,25.5,37.5z"/>
18
+ </g>
19
+ </g>
20
+ <path fill="#E2E2E2" d="M25.5,37C19.2,37,14,31.8,14,25.5S19.2,14,25.5,14S37,19.2,37,25.5S31.8,37,25.5,37z"/>
21
+ <g>
22
+ <path fill="#FFFFFF" d="M18.5,25.1c1.1-0.2,2.1-0.3,3.2-0.5c-0.4,1.6,0.1,5.2,2,5.5c-0.5,1.7-2.9,0.5-3.7-0.4
23
+ C19,28.5,18.5,26.7,18.5,25.1"/>
24
+ <path fill="#FFFFFF" d="M24.4,29.8c-1.2-0.1-1.8-1.8-2-3c-0.4-2.1,0.3-1.7,1.5-2.9c1-1,2.1-2.2,3.1-3.3c0.5-0.5,2.1-3.4,2.6-2.3
25
+ c0.9,1.8-2.3,3.4-1,4.8c0.9,0.9,2.4-0.3,3.3,0.2c0.8,0.5,0.9,1.5-0.3,1.7c1,0.6,0.9,1.5-0.1,2c0.7,0.5,0.6,1-0.1,1.4
26
+ c-0.6,0.4,0.1,1-0.8,1.7C29,31.1,26.1,30.1,24.4,29.8"/>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="10" width="11" height="6" fill="#484f60"/><rect x="29" y="18" width="11" height="6" fill="#484f60"/><rect x="10" y="26" width="11" height="6" fill="#484f60"/><circle cx="25" cy="13" r="2" fill="#484f60"/><circle cx="25" cy="21" r="2" fill="#484f60"/><circle cx="25" cy="29" r="2" fill="#484f60"/><rect x="29" y="34" width="11" height="6" fill="#484f60"/><circle cx="25" cy="37" r="2" fill="#484f60"/><rect x="24.5" y="16" width="1" height="2" fill="#484f60"/><rect x="24.5" y="32" width="1" height="2" fill="#484f60"/><rect x="24.5" y="24" width="1" height="2" fill="#484f60"/></svg>
@@ -0,0 +1,19 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <g opacity="0.5">
3
+ <rect x="15.5" y="18" width="6" height="1" fill="#4d5050"/>
4
+ <rect x="15.5" y="22" width="10" height="1" fill="#4d5050"/>
5
+ <rect x="15.5" y="26" width="10" height="1" fill="#4d5050"/>
6
+ <rect x="15.5" y="30" width="10" height="1" fill="#4d5050"/>
7
+ <polygon points="35 18.98 33.5 18.98 33.5 25.52 35 27.02 35 18.98" fill="#4d5050"/>
8
+ <path d="M671,398V372a.5.5,0,0,1,.5-.5h13.73V370H671.5a2,2,0,0,0-2,2v26a2,2,0,0,0,2,2h19.14v-1.5H671.5A.5.5,0,0,1,671,398Z"
9
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
10
+ <path d="M685.23,370v6.44c0,1.78.27,2,2,2h6.22Z" transform="translate(-658.5 -359.5)" fill="#4d5050"/>
11
+ <rect x="15.5" y="15" width="6" height="1" fill="#4d5050"/>
12
+ <rect x="27.5" y="22" width="3" height="1" fill="#4d5050"/>
13
+ <rect x="27.5" y="26" width="3" height="1" fill="#4d5050"/>
14
+ <rect x="27.5" y="30" width="3" height="0.57" fill="#4d5050"/>
15
+ <path d="M684.69,392.66a.5.5,0,0,0-.29-.28.51.51,0,0,0-.4,0l-2.23,1.16a.5.5,0,0,0,.46.89l1.75-.9.79,1.93a.49.49,0,0,0,.23.24V393.4Z"
16
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
17
+ </g>
18
+ <polygon points="33.64 32.07 28 32.07 28 36.2 33.64 36.2 33.64 36.2 33.64 40.5 40 34.14 33.64 27.77 33.64 32.07" fill="#4d5050"/>
19
+ </svg>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, 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 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
5
+ <g>
6
+ <path fill="#333333" d="M29.8,18.9c-1.9,0-2.1-0.3-2.1-2.1v-6.3l8.2,8.4H29.8z"/>
7
+ <path fill="#333333" d="M15.8,40c-1.9,0-2.1-0.3-2.1-2.1V12.1c0-1.9,0.3-2.1,2.1-2.1h10v6.7c0,2.9,1.1,4,4,4h6.5v17.1
8
+ c0,1.9-0.3,2.1-2.1,2.1H15.8z M29.4,32h4.1v-1.8h-4.1V32z M29.4,28.4h4.1v-1.8h-4.1V28.4z M29.4,24.7h4.1v-1.8h-4.1V24.7z M16.3,32
9
+ h11.5v-1.8H16.3V32z M16.3,28.4h11.5v-1.8H16.3V28.4z M16.3,24.7h11.5v-1.8H16.3V24.7z M27.4,36.9h6.1v-1.8h-6.1V36.9z M16.3,14.3
10
+ h6.1v-1.8h-6.1V14.3z M16.3,16.7h6.1v-1.8h-6.1V16.7z"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Pro 6.1.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69zM31.1 128H416V448C416 483.3 387.3 512 352 512H95.1C60.65 512 31.1 483.3 31.1 448V128zM111.1 208V432C111.1 440.8 119.2 448 127.1 448C136.8 448 143.1 440.8 143.1 432V208C143.1 199.2 136.8 192 127.1 192C119.2 192 111.1 199.2 111.1 208zM207.1 208V432C207.1 440.8 215.2 448 223.1 448C232.8 448 240 440.8 240 432V208C240 199.2 232.8 192 223.1 192C215.2 192 207.1 199.2 207.1 208zM304 208V432C304 440.8 311.2 448 320 448C328.8 448 336 440.8 336 432V208C336 199.2 328.8 192 320 192C311.2 192 304 199.2 304 208z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="29.06 18.75 37.5 18.75 25 31.25 12.5 18.75 20.95 18.75 29.06 18.75" fill="#484f60"/></svg>
@@ -0,0 +1,5 @@
1
+ <svg version="1.1" x="0px" y="0px" viewBox="0 0 50 50" enable-background="new 0 0 50 50">
2
+ <g>
3
+ <polygon fill="green" points="0 0, 100 100, 0 100"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="31.25 29.06 31.25 37.5 18.75 25 31.25 12.5 31.25 20.95 31.25 29.06" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="18.75 20.94 18.75 12.5 31.25 25 18.75 37.5 18.75 29.05 18.75 20.94" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="20.94 31.25 12.5 31.25 25 18.75 37.5 31.25 29.05 31.25 20.94 31.25" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="10" y="14.75" width="17.47" height="12.62" fill="#484f60"/><path d="M37,18.11h-8V28.84H20.22a4.42,4.42,0,0,1,1.41,2.73H30a4.41,4.41,0,0,1,8.76,0H40V24.63Zm-.26,6.73H32.25a.57.57,0,0,1-.57-.57V20a.57.57,0,0,1,.57-.58h2.63a.58.58,0,0,1,.52.35L37.31,24A.58.58,0,0,1,36.78,24.84Z" fill="#484f60"/><path d="M14.28,28.84a4.39,4.39,0,0,0-1.42,2.73H12l-2-1.26V28.84Z" fill="#484f60"/><path d="M31.25,32.1a3.16,3.16,0,1,0,3.16-3.16A3.16,3.16,0,0,0,31.25,32.1Z" fill="#484f60"/><path d="M14.09,32.1a3.16,3.16,0,1,0,3.16-3.16A3.15,3.15,0,0,0,14.09,32.1Z" fill="#484f60"/></svg>
@@ -0,0 +1,15 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <path d="M312.6,408.7H297.3a0.8,0.8,0,0,0-.8.8v3.8h16.9v-3.8A0.8,0.8,0,0,0,312.6,408.7Zm-12.1,3.7a1.3,1.3,0,1,1,1.3-1.3A1.3,1.3,0,0,1,300.5,412.5Zm8.8,0a1.3,1.3,0,1,1,1.3-1.3A1.3,1.3,0,0,1,309.3,412.5Z"
3
+ transform="translate(-272.4 -397)" fill="#fff" opacity="0.5"/>
4
+ <path d="M313.4,415H296.5v7.7h4.6v-3h-0.8v-1.4a0.9,0.9,0,0,0,.8-0.4,1.2,1.2,0,0,0,.3-0.8h1.8v5.5h3.2l0.9-1.6a4,4,0,0,0,.4-1.9q0-.6-0.4-0.6a0.4,0.4,0,0,0-.4.4v1.6h-1.9v-1.6q0-1.8,2.3-1.8a2.2,2.2,0,0,1,1.9.7,3.9,3.9,0,0,1,.5,2.2,2.1,2.1,0,0,1-.2,1l-0.9,1.7h1.6v5.9l3.2-3.2V415Z"
5
+ transform="translate(-272.4 -397)" fill="#fff" opacity="0.5"/>
6
+ <rect x="27.6" y="9" width="1.2" height="3.86" fill="#fff" opacity="0.5"/>
7
+ <rect x="36.4" y="9" width="1.1" height="3.86" fill="#fff" opacity="0.5"/>
8
+ <rect x="17.5" y="27.1" width="18.9" height="8.57" rx="1" ry="1" fill="#fff"/>
9
+ <path d="M288.8,433.6v-7.3h-5.4l-2,4.4v4.7h0.8a3,3,0,0,1,6,0h11.2a3,3,0,0,1,1-1.9H288.8Zm-1.8-3.6a0.9,0.9,0,0,1-.9.9h-2.4a0.9,0.9,0,0,1-.9-0.9s1.1-2.9,1.7-2.9h1.6a0.9,0.9,0,0,1,.9.9v2Z"
10
+ transform="translate(-272.4 -397)" fill="#fff"/>
11
+ <path d="M305.3,433.6c-0.6,0-.8.3-0.6,0.6s0.8,1.3,1.2,1.3l1.6-.4h0.3a1.4,1.4,0,0,0,.9-0.9,0.9,0.9,0,0,0-1-.5h-2.5Z"
12
+ transform="translate(-272.4 -397)" fill="#fff"/>
13
+ <circle cx="12.8" cy="38.9" r="2.1" fill="#fff"/>
14
+ <circle cx="29.9" cy="38.9" r="2.1" fill="#fff"/>
15
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="22.18 17.59 20.94 15.25 18.38 20.68 24.3 21.62 23.38 19.88 22.18 17.59" fill="#484f60"/><path d="M21.78,18.07l.34-.12A8.49,8.49,0,1,1,25,34.43h0a8.49,8.49,0,0,1-8.48-8h1.41A7.1,7.1,0,0,0,25,33a7.1,7.1,0,1,0,0-14.2,6.87,6.87,0,0,0-1.57.18l-.78.17Z" fill="#484f60"/><path d="M25,40.67a15.5,15.5,0,1,1,15.5-15.5A15.52,15.52,0,0,1,25,40.67Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.51,14.51,0,0,0,25,10.67Z" fill="#484f60"/></svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
3
+ viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
4
+ <g>
5
+ <path fill="#878787" d="M32.3,22h-0.6c-1.3,1.9-4.1,4.1-6.7,4.1c-2.6,0-5.3-2.2-6.7-4.1h-0.6c-2.7,0-4.8,2.5-4.8,4.6l3.2,3.5
6
+ c0,2.1,2.2,9.8,4.8,9.8H29c2.7,0,4.8-7.6,4.8-9.8l3.2-3.5C37.1,24.5,34.9,22,32.3,22z"/>
7
+ <path fill="#878787" d="M32.4,16.2c0,3.3-3.3,6.9-7.4,6.9c-4.1,0-7.4-3.7-7.4-6.9c0-3.3,3.3-6.2,7.4-6.2C29.1,10,32.4,12.9,32.4,16.2z"/>
8
+ </g>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g opacity="0.5"><path d="M19,28.6l-.78-1.81H14.74L14,28.6H12l3.62-8.39h1.82L21,28.6Zm-2.53-5.89-1.06,2.43h2.1Z" fill="#484f60"/><path d="M23.5,35.5H9.5v-21h14Zm-13-1h12v-19h-12Z" fill="#484f60"/></g><path d="M34.07,28.6H30.4V20.21h3.26a4.88,4.88,0,0,1,1.47.2,2.1,2.1,0,0,1,.93.56,2.15,2.15,0,0,1,.57,1.46A1.72,1.72,0,0,1,36,23.89a1.17,1.17,0,0,1-.3.21l-.3.14a2.22,2.22,0,0,1,1.24.7,2,2,0,0,1,.46,1.33,2.27,2.27,0,0,1-.6,1.55A3.12,3.12,0,0,1,34.07,28.6Zm-1.8-5h.89a3.12,3.12,0,0,0,1.16-.16.71.71,0,0,0,.37-.73.76.76,0,0,0-.34-.74,2.81,2.81,0,0,0-1.18-.18h-.9Zm0,3.41h1.28a2.73,2.73,0,0,0,1.21-.2.77.77,0,0,0,.4-.77.75.75,0,0,0-.42-.77,3.56,3.56,0,0,0-1.37-.19h-1.1Z" fill="#484f60"/><path d="M40.5,35.5h-14v-21h14Zm-13-1h12v-19h-12Z" fill="#484f60"/></svg>
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <rect x="15" y="26.17" width="4" height="8" fill="#484f60"/>
3
+ <rect x="23" y="16.17" width="4" height="18" fill="#484f60"/>
4
+ <rect x="31" y="12.17" width="4" height="22" fill="#484f60"/>
5
+ <path d="M40,38.17H10v-26h1v25H40Z" fill="#484f60"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M42.23,20.39H40.61c-4.19-2.23-11.11-.52-13.92,0H23.31c-2.81-.52-9.73-2.23-13.92,0H7.77a2.49,2.49,0,0,0,0,2.2c1.42-.18,1.22.63,1.22.63s-.07,7.64,6.75,7.84,8-7.57,8-7.57A2.33,2.33,0,0,1,25,23.36a2.33,2.33,0,0,1,1.28.13s1.15,7.77,8,7.57S41,23.22,41,23.22s-.2-.81,1.22-.63A2.49,2.49,0,0,0,42.23,20.39Zm-20,3.42s-.94,6.29-6.46,6.13-5.48-6.35-5.48-6.35l.33-2.3c3.4-1.8,9.81-.41,12.09,0Zm12.36,6.13c-5.53.16-6.46-6.13-6.46-6.13l-.48-2.52c2.27-.41,8.69-1.8,12.08,0l.33,2.3S40.11,29.78,34.58,29.94Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="19.54" y="30.45" width="4.77" height="9.55" fill="#484f60"/><rect x="25.68" y="30.45" width="4.77" height="9.55" fill="#484f60"/><path d="M25,10,10,16.82V40h6.82V27.73H33.18V40H40V16.82Z" fill="#484f60"/></svg>
@@ -0,0 +1,10 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228.2 60">
2
+ <rect width="16.5" height="52.3" fill="#ed0a0a"/>
3
+ <path d="M103.3,30A40.3,40.3,0,0,0,91.8,1.1L90.7,0H35.8L34.7,1.1A40.3,40.3,0,0,0,23.2,30,40.2,40.2,0,0,0,34.7,58.9L35.8,60H90.7l1.1-1.1A40.3,40.3,0,0,0,103.3,30ZM79.9,47.8c-4.5,4.8-9.7,7-16.6,7s-12.2-2.2-16.7-7S39.9,37.1,39.9,30s2.2-13,6.7-17.8,9.8-7,16.7-7,12.1,2.2,16.6,7A25.1,25.1,0,0,1,86.6,30C86.6,37.1,84.4,43,79.9,47.8Z"
4
+ transform="translate(-0.9)" fill="#ed0a0a"/>
5
+ <polygon points="161.5 0 161.5 38.6 127.9 0 108.2 0 108.2 60 124.7 60 124.7 21.5 158.3 60 178 60 178 0 161.5 0"
6
+ fill="#ed0a0a"/>
7
+ <polygon
8
+ points="200.3 53.7 200.3 34.8 224.6 34.8 224.6 19.1 200.3 19.1 200.3 6.1 227.2 6.1 227.2 0 183.8 0 183.8 60 228.2 60 228.2 53.7 200.3 53.7"
9
+ fill="#ed0a0a"/>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M12.71,40.17,11,34.57h1l.89,3.23L13.2,39c0-.06.11-.44.29-1.15l.89-3.28h1l.83,3.25.28,1.07.32-1.08,1-3.24h.92l-1.74,5.6h-1l-.89-3.35-.22-1L13.7,40.17Z" fill="#484f60"/><path d="M21.37,40.17l-1.71-5.6h1l.89,3.23.33,1.2c0-.06.11-.44.29-1.15L23,34.57h1l.84,3.25.28,1.07.32-1.08,1-3.24h.92l-1.75,5.6h-1l-.89-3.35-.22-1-1.13,4.31Z" fill="#484f60"/><path d="M30,40.17l-1.71-5.6h1l.89,3.23.33,1.2c0-.06.11-.44.29-1.15l.89-3.28h1l.84,3.25.28,1.07.32-1.08,1-3.24H36l-1.75,5.6h-1l-.89-3.35-.22-1L31,40.17Z" fill="#484f60"/><polyline points="12.44 32.26 12.44 15.15 24.68 15.15 25.59 14.25 24.05 12.71 10 12.71 10 32.26" fill="#484f60"/><polyline points="36.99 32.26 36.99 25.65 35.92 24.58 34.55 25.95 34.55 32.26" fill="#484f60"/><polygon points="40 10.17 27.92 10.17 32 14.25 22.24 26 24.16 27.92 35.92 18.17 40 22.25 40 10.17" fill="#484f60"/></svg>
@@ -0,0 +1,18 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 26.5 30.9">
2
+ <polygon points="12.3 0 11.5 2.2 9.2 2.9 11.1 4.4 11.1 6.7 13 5.4 15.2 6.2 14.6 3.9 16 2 13.6 1.9 12.3 0"
3
+ fill="#fff"/>
4
+ <polygon points="3.6 3.7 4.5 5.2 3.7 6.8 5.4 6.5 6.7 7.7 6.9 5.9 8.5 5.1 6.9 4.3 6.6 2.6 5.4 3.9 3.6 3.7"
5
+ fill="#fff"/>
6
+ <polygon points="0 9.8 0.9 10.4 0.9 11.4 1.7 10.8 2.8 11.1 2.4 10.1 3 9.2 2 9.3 1.3 8.4 1 9.4 0 9.8" fill="#fff"/>
7
+ <polygon
8
+ points="14.2 30.9 15 28.7 17.2 28 15.4 26.6 15.4 24.2 13.4 25.5 11.2 24.8 11.9 27 10.5 28.9 12.8 29 14.2 30.9"
9
+ fill="#fff"/>
10
+ <polygon
11
+ points="22.8 27.3 22 25.7 22.7 24.1 21 24.4 19.8 23.3 19.5 25 18 25.8 19.6 26.6 19.9 28.3 21.1 27 22.8 27.3"
12
+ fill="#fff"/>
13
+ <polygon
14
+ points="26.5 21.1 25.6 20.5 25.6 19.5 24.7 20.1 23.7 19.8 24 20.8 23.4 21.7 24.5 21.7 25.1 22.5 25.5 21.5 26.5 21.1"
15
+ fill="#fff"/>
16
+ <polygon points="13 19.4 8.4 22.6 10 17.2 5.5 13.8 11.2 13.7 13 8.3 14.8 13.7 20.5 13.8 16 17.2 17.6 22.6 13 19.4"
17
+ fill="#fff"/>
18
+ </svg>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
3
+ viewBox="0 0 50 50" enable-background="new 0 0 50 50" xml:space="preserve">
4
+ <g>
5
+ <polygon fill="#2A363B" points="20,32.1 25,29.2 29.9,32.1 25,34.9 "/>
6
+ <polygon opacity="0.5" fill="#2A363B" points="25.5,35.9 30.5,33 30.5,38.7 25.5,41.6 "/>
7
+ <polygon opacity="0.25" fill="#2A363B" points="19.5,38.7 19.5,33 24.5,35.9 24.5,41.6 "/>
8
+ <polygon fill="#2A363B" points="26,21.7 31,18.8 35.9,21.7 31,24.5 "/>
9
+ <polygon opacity="0.5" fill="#2A363B" points="31.5,25.4 36.5,22.6 36.5,28.3 31.5,31.2 "/>
10
+ <polygon opacity="0.25" fill="#2A363B" points="25.5,28.3 25.5,22.6 30.5,25.4 30.5,31.2 "/>
11
+ <polygon fill="#2A363B" points="14,21.7 19,18.8 23.9,21.7 19,24.5 "/>
12
+ <polygon opacity="0.5" fill="#2A363B" points="19.5,25.5 24.4,22.6 24.5,28.3 19.5,31.2 "/>
13
+ <polygon opacity="0.25" fill="#2A363B" points="13.5,28.3 13.5,22.6 18.4,25.5 18.5,31.2 "/>
14
+ <polygon fill="#2A363B" points="8,32.1 13,29.2 17.9,32.1 13,35 "/>
15
+ <polygon opacity="0.5" fill="#2A363B" points="13.5,35.9 18.5,33 18.5,38.7 13.5,41.6 "/>
16
+ <polygon opacity="0.25" fill="#2A363B" points="7.5,38.7 7.5,33 12.5,35.9 12.5,41.6 "/>
17
+ <polygon fill="#2A363B" points="32.1,32.1 37,29.2 42,32 37,34.9 "/>
18
+ <polygon opacity="0.5" fill="#2A363B" points="37.5,35.8 42.5,33 42.5,38.7 37.6,41.5 "/>
19
+ <polygon opacity="0.25" fill="#2A363B" points="31.5,38.7 31.5,33 36.5,35.8 36.5,41.5 "/>
20
+ <polygon fill="#2A363B" points="20,11.3 25,8.4 29.9,11.3 25,14.1 "/>
21
+ <polygon opacity="0.5" fill="#2A363B" points="25.5,15 30.4,12.2 30.4,17.9 25.5,20.8 "/>
22
+ <polygon opacity="0.25" fill="#2A363B" points="19.5,17.9 19.5,12.2 24.4,15 24.4,20.8 "/>
23
+ </g>
24
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <polygon
3
+ points="26.8 34 27.7 33 28.3 32.3 29.1 31.9 30 31.7 30.1 31 30.1 30.1 30.2 29 30.8 28.5 31.7 28 33.2 28.1 34.2 28.4 34.9 28.8 35 29.5 30.5 34 26.8 34"
4
+ fill="#4d5050"/>
5
+ <path d="M298.4,421.8v-2.7l0.2-3.2v-1.5l-1.1-.7-1.1-.3-1.6.7-1.7.7-1.3.3v0.5l0.4,1.6,0.6,1.5-0.5.9v7.3l1.5,2.2v-1.1l0.4-3.1,0.3-2.8,1.2,2.4v4.6H297v-5.5l-1.1-2.2,4.6,3.9h0.5v-0.9Zm-5-4.5-0.4-.8v-0.8l1.9-.2Zm2.5,2.4,1.4-2v2l0.3,1.5Z"
6
+ transform="translate(-272.5 -395)" fill="#4d5050"/>
7
+ <circle cx="26.7" cy="17.5" r="1.6" fill="#4d5050"/>
8
+ <path d="M296.1,403.7l-14.9,14.9a2.6,2.6,0,0,0,0,3.7l14.9,14.9a2.6,2.6,0,0,0,3.7,0l14.9-14.9a2.6,2.6,0,0,0,0-3.7l-14.9-14.9A2.6,2.6,0,0,0,296.1,403.7Zm0.9,31.4-13.8-13.8a1.3,1.3,0,0,1,0-1.9l13.8-13.8a1.3,1.3,0,0,1,1.9,0l13.8,13.8a1.3,1.3,0,0,1,0,1.9l-13.8,13.8A1.3,1.3,0,0,1,297.1,435.2Z"
9
+ transform="translate(-272.5 -395)" fill="#4d5050"/>
10
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M684,405a20,20,0,1,1,20-20A20,20,0,0,1,684,405Zm0-38.71A18.71,18.71,0,1,0,702.71,385,18.73,18.73,0,0,0,684,366.29Z"
3
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
4
+ <path d="M695.74,392.08l-.08-1.41-.91-.48-1.55-.58-2.13-.1-1.45.78-.78.78-.19,1.55V394l-.1,1-1.36.29-1.16.68-1,1-1.26,1.45h6A55.26,55.26,0,0,0,695.74,392.08Z"
5
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
6
+ <path d="M682.25,383.88l.29-4.65-.1-2.23-1.55-1.07-1.65-.48-2.33,1-2.52,1-1.94.39-.19.68.58,2.33.87,2.23-.68,1.36-.1,10.74,2.23,3.23.1-1.65.58-4.56.39-4.07,1.84,3.49.1,6.79h2.23v-6.21l-.1-1.94-1.55-3.3,6.73,5.76.68-.1.1-1.36-3.82-3.33Zm-7.18-2.72-.58-1.16.1-1.16,2.81-.29Zm3.68,3.49,2-3-.19,2.91.48,2.23Z"
7
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
8
+ <circle cx="25.1" cy="14.49" r="2.33" fill="#4d5050"/>
9
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M696.41,378.36a5.36,5.36,0,0,0-.58.61q-2.09,2.11-4.2,4.21a2.22,2.22,0,0,1-3.38.24,22.16,22.16,0,0,1-2.06-2,10.79,10.79,0,0,1-1.31-1.51,2.1,2.1,0,0,1,.29-3c.54-.55,1.08-1.09,1.63-1.63L690.2,372c-.33-.11-.51-.18-.7-.23a9.89,9.89,0,0,0-12,12,.86.86,0,0,1-.27.95c-2.08,2.06-4.15,4.14-6.23,6.2a13.7,13.7,0,0,0,6.53,6.48q3.1-3.1,6.2-6.2a.86.86,0,0,1,.95-.27,9.89,9.89,0,0,0,12.19-8A8.55,8.55,0,0,0,696.41,378.36Z"
3
+ transform="translate(-658.5 -358.97)" fill="#4c5050"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <polygon points="30.24 23.75 38.24 31.75 30.24 39.75 29.34 38.85 36.43 31.75 29.34 24.65 30.24 23.75" fill="#484f60" opacity="0.98"/>
3
+ <rect x="11.76" y="10.25" width="1.5" height="19" fill="#484f60" opacity="0.5"/>
4
+ <rect x="12.01" y="31" width="20" height="1.5" fill="#484f60"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <polygon points="26.25 19.76 25.35 20.66 18.25 13.57 11.15 20.66 10.25 19.76 18.25 11.76 26.25 19.76" fill="#484f60" opacity="0.98"/>
3
+ <rect x="17.5" y="17.99" width="1.5" height="20" fill="#484f60"/>
4
+ <rect x="20.75" y="36.74" width="19" height="1.5" fill="#484f60" opacity="0.5"/>
5
+ </svg>
@@ -0,0 +1,28 @@
1
+ // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2
+
3
+ import 'zone.js';
4
+ import 'zone.js/testing';
5
+ import { getTestBed } from '@angular/core/testing';
6
+ import {
7
+ BrowserDynamicTestingModule,
8
+ platformBrowserDynamicTesting
9
+ } from '@angular/platform-browser-dynamic/testing';
10
+
11
+ declare const require: {
12
+ context(path: string, deep?: boolean, filter?: RegExp): {
13
+ keys(): string[];
14
+ <T>(id: string): T;
15
+ };
16
+ };
17
+
18
+ // First, initialize the Angular testing environment.
19
+ getTestBed().initTestEnvironment(
20
+ BrowserDynamicTestingModule,
21
+ platformBrowserDynamicTesting(),
22
+ { teardown: { destroyAfterEach: true }},
23
+ );
24
+
25
+ // Then we find all the tests.
26
+ const context = require.context('./', true, /\.spec\.ts$/);
27
+ // And load the modules.
28
+ context.keys().map(context);
@@ -0,0 +1,20 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "../../out-tsc/lib",
6
+ "target": "es2015",
7
+ "declaration": true,
8
+ "declarationMap": true,
9
+ "inlineSources": true,
10
+ "types": [],
11
+ "lib": [
12
+ "dom",
13
+ "es2018"
14
+ ]
15
+ },
16
+ "exclude": [
17
+ "src/test.ts",
18
+ "**/*.spec.ts"
19
+ ]
20
+ }