@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"><polygon points="31.66 31 27.76 27.1 27.76 29.73 25.86 29.74 23.34 29.73 23.34 32.27 24.59 32.27 27.76 32.26 27.76 34.9 31.66 31" fill="#484f60"/><rect x="12.27" y="30.23" width="2.39" height="4.77" fill="#484f60" opacity="0.75"/><rect x="15.34" y="30.23" width="2.39" height="4.77" fill="#484f60" opacity="0.75"/><polygon points="21.34 27.73 22.5 27.73 22.5 23.41 15 20 7.5 23.41 7.5 35 10.91 35 10.91 28.86 19.09 28.86 19.09 35 22.5 35 22.5 34.27 21.34 34.27 21.34 27.73" fill="#484f60" opacity="0.75"/><rect x="38.86" y="28.64" width="3.18" height="6.36" fill="#484f60"/><polygon points="32.5 19.54 32.5 29.01 34.49 31 32.5 32.99 32.5 35 37.05 35 37.05 26.82 42.5 26.82 42.5 15 32.5 19.54" fill="#484f60"/></svg>
@@ -0,0 +1,12 @@
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
+ <g>
7
+ <path fill="#484F5F" d="M23.5,18.5v14h-3.1v-14H23.5z M30.6,18.5v14h-3.1v-14H30.6z"/>
8
+ </g>
9
+ <path fill="#484F5F" d="M25.5,39.5c-7.7,0-14-6.3-14-14s6.3-14,14-14s14,6.3,14,14S33.2,39.5,25.5,39.5 M25.5,40.5
10
+ c8.3,0,15-6.7,15-15c0-8.3-6.7-15-15-15c-8.3,0-15,6.7-15,15C10.5,33.8,17.2,40.5,25.5,40.5L25.5,40.5z"/>
11
+ </g>
12
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 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="M490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4zM172.4 241.7L339.7 74.34L437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7V241.7zM192 63.1C209.7 63.1 224 78.33 224 95.1C224 113.7 209.7 127.1 192 127.1H96C78.33 127.1 64 142.3 64 159.1V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V319.1C384 302.3 398.3 287.1 416 287.1C433.7 287.1 448 302.3 448 319.1V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V159.1C0 106.1 42.98 63.1 96 63.1H192z"/></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
+ <rect x="290.8" y="419.4" width="10.4" height="0.49" transform="translate(-482.6 -62.8) rotate(-45)" fill="#fff"/>
3
+ <rect x="292.6" y="420" width="10.4" height="3.1" transform="translate(-483.4 -60.6) rotate(-45)" fill="#fff"/>
4
+ <path d="M305.8,414.7l-2.1-2.1a0.8,0.8,0,0,0-1.1,0l-0.8.8,3.1,3.1,0.8-.8A0.8,0.8,0,0,0,305.8,414.7Z"
5
+ transform="translate(-272.5 -395)" fill="#fff"/>
6
+ <rect x="301.6" y="414" width="1.3" height="4.44" transform="translate(-478.3 -59.3) rotate(-45)" fill="#fff"/>
7
+ <polygon points="18.8 29.3 17.5 33.1 17.9 33.5 21.7 32.2 18.8 29.3" fill="#fff"/>
8
+ <path d="M298,436a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,436Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,406Z"
9
+ transform="translate(-272.5 -395)" fill="#fff"/>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M28.23,38.17a4,4,0,0,1-2.06-.62A16.35,16.35,0,0,1,22,33.89,31.57,31.57,0,0,1,16,23a15.48,15.48,0,0,1-.75-4.38,3.7,3.7,0,0,1,1.69-3.31l1-.65c.16-.1.26-.07.36.1l3.35,5.8c.07.13.13.24,0,.36a2.78,2.78,0,0,0-1,2.69A10.07,10.07,0,0,0,23.78,30a4,4,0,0,0,2.33,1.19,2.24,2.24,0,0,0,1.2-.19c.19-.09.28,0,.38.13Q29.36,34,31,36.89c.07.12.13.23,0,.33A5.74,5.74,0,0,1,28.23,38.17Z" fill="#484f60"/><path d="M28,30.19a.81.81,0,0,1,.39-.68c.62-.36,1.23-.73,1.86-1.07a.78.78,0,0,1,1.09.38c.58,1,1.14,2,1.71,2.95l1.54,2.67c.4.71.31,1.06-.39,1.47-.5.29-1,.59-1.5.86a.79.79,0,0,1-1.2-.31c-1.13-1.94-2.25-3.89-3.38-5.85A1,1,0,0,1,28,30.19Z" fill="#484f60"/><path d="M21.18,12.17a.83.83,0,0,1,.82.53q1.16,2,2.29,4c.33.56.66,1.13,1,1.7a.85.85,0,0,1-.34,1.29l-1.58.91a.82.82,0,0,1-1.26-.34c-1.11-1.91-2.21-3.81-3.3-5.72a.81.81,0,0,1,.33-1.26c.53-.32,1.07-.62,1.61-.93A.77.77,0,0,1,21.18,12.17Z" 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="M300.5,431.5a3.1,3.1,0,0,1-1.6-.5,12.6,12.6,0,0,1-3.2-2.8,24.3,24.3,0,0,1-4.7-8.4,11.8,11.8,0,0,1-.6-3.4,2.9,2.9,0,0,1,1.3-2.5l0.8-.5a0.2,0.2,0,0,1,.3.1l2.6,4.5a0.2,0.2,0,0,1,0,.3,2.1,2.1,0,0,0-.7,2.1,7.7,7.7,0,0,0,2.4,4.9,3,3,0,0,0,1.8.9h0.9a0.2,0.2,0,0,1,.3.1l2.6,4.5c0.1,0.1.1,0.2,0,.3A4.4,4.4,0,0,1,300.5,431.5Z"
3
+ transform="translate(-272.5 -396)" fill="#fff"/>
4
+ <path d="M300.3,425.3a0.6,0.6,0,0,1,.3-0.5l1.4-.8a0.6,0.6,0,0,1,.8.3l1.3,2.3,1.2,2.1a0.7,0.7,0,0,1-.3,1.1l-1.2.7a0.6,0.6,0,0,1-.9-0.2l-2.6-4.5A0.7,0.7,0,0,1,300.3,425.3Z"
5
+ transform="translate(-272.5 -396)" fill="#fff"/>
6
+ <path d="M295.1,411.5a0.7,0.7,0,0,1,.6.4l1.8,3,0.8,1.3a0.6,0.6,0,0,1-.3,1l-1.2.7a0.6,0.6,0,0,1-1-.3l-2.5-4.4a0.6,0.6,0,0,1,.3-1l1.2-.7h0.3Z"
7
+ transform="translate(-272.5 -396)" fill="#fff"/>
8
+ <path d="M298,437a15.5,15.5,0,1,1,15.5-15.5A15.5,15.5,0,0,1,298,437Zm0-30a14.5,14.5,0,1,0,14.5,14.5A14.5,14.5,0,0,0,298,407Z"
9
+ transform="translate(-272.5 -396)" fill="#fff"/>
10
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <g opacity="0.25">
3
+ <path d="M25,22.17,19.16,8.35a14.91,14.91,0,0,0-4.77,3.21L25,22.17Z" fill="#4c5050"/>
4
+ <path d="M25,7.17a15,15,0,0,0-5.84,1.18L25,22.17Z" fill="#4c5050"/>
5
+ <path d="M25,22.17,14.39,11.56a15.13,15.13,0,0,0-3.21,4.77L25,22.17Z" fill="#4c5050"/>
6
+ </g>
7
+ <path d="M38.82,16.33a15.13,15.13,0,0,0-3.21-4.77L25,22.17h0Z" fill="#4c5050"/>
8
+ <path d="M25,7.17v15L30.84,8.35A15,15,0,0,0,25,7.17Z" fill="#4c5050"/>
9
+ <path d="M30.84,8.35,25,22.17,35.61,11.56A14.91,14.91,0,0,0,30.84,8.35Z" fill="#4c5050"/>
10
+ <path d="M38.82,16.33,25,22.17H40A14.93,14.93,0,0,0,38.82,16.33Z" fill="#4c5050"/>
11
+ <g opacity="0.6">
12
+ <path d="M11.18,16.33A14.93,14.93,0,0,0,10,22.17H25Z" fill="#4c5050"/>
13
+ <path d="M14.39,32.77,25,22.17,11.18,28A15.08,15.08,0,0,0,14.39,32.77Z" fill="#4c5050"/>
14
+ <path d="M25,22.17H10A15,15,0,0,0,11.18,28L25,22.17Z" fill="#4c5050"/>
15
+ <path d="M19.16,36,25,22.17,14.39,32.77A15.1,15.1,0,0,0,19.16,36Z" fill="#4c5050"/>
16
+ <path d="M25,22.17h0L19.16,36A15,15,0,0,0,25,37.17v-15Z" fill="#4c5050"/>
17
+ <path d="M25,37.17A15,15,0,0,0,30.84,36L25,22.17Z" fill="#4c5050"/>
18
+ </g>
19
+ <path d="M30.84,36a15.1,15.1,0,0,0,4.77-3.22L25,22.17Z" fill="#4c5050"/>
20
+ <path d="M25,22.17l10.61,10.6A15.08,15.08,0,0,0,38.82,28L25,22.17Z" fill="#4c5050"/>
21
+ <path d="M25,22.17h0L38.82,28A15,15,0,0,0,40,22.17Z" fill="#4c5050"/>
22
+ <polygon points="25 22.17 25 22.17 25 22.17 25 22.17" fill="#4c5050"/>
23
+ <polygon points="25 22.17 25 22.17 25 22.17 25 22.17" fill="#4c5050"/>
24
+ </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="M297.3,432.6a13.7,13.7,0,0,1-6-1.5c-4.9-2.4-7.7-7-6.1-10.1s3-2.8,5.7-2.8h0.2l-2,3.4V422a4.8,4.8,0,0,0,1.5,3.5,10.2,10.2,0,0,0,6.7,2.9,3.9,3.9,0,0,0,3.5-1.6v-0.2l1-2.9c1.5,2.1,2,4.3,1.1,6s-3,2.8-5.7,2.8h0Z"
3
+ transform="translate(-271.5 -396)" fill="#fff"/>
4
+ <path d="M297.3,426.3a7.9,7.9,0,0,1-5.1-2.3,2.9,2.9,0,0,1-.9-1.8l4.5-7.8a10.2,10.2,0,0,0,6.1,2.8l-3,8.4a2,2,0,0,1-1.6.6h0Z"
5
+ transform="translate(-271.5 -396)" fill="#fff"/>
6
+ <path d="M304.3,415.6a11.2,11.2,0,0,1-4.9-1.2c-4-2-6.2-5.6-5-8.2s2.4-2.2,4.6-2.2a11.3,11.3,0,0,1,4.9,1.2,10.7,10.7,0,0,1,4.5,4,4.4,4.4,0,0,1,.5,4.2c-0.7,1.4-2.4,2.2-4.6,2.2h0Z"
7
+ transform="translate(-271.5 -396)" fill="#fff"/>
8
+ <path d="M290,432.2l-1.7,3.7-0.2,3,2-2.3,1.6-3.7-1.1-.5Z" transform="translate(-271.5 -396)" fill="#fff"/>
9
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M683.16,390.18a7.07,7.07,0,0,1-3.09-.77c-2.53-1.25-3.94-3.58-3.14-5.19a3.07,3.07,0,0,1,2.94-1.43h.1l-1,1.74v.2a2.48,2.48,0,0,0,.78,1.82,5.23,5.23,0,0,0,3.44,1.51,2,2,0,0,0,1.8-.84l.06-.09.52-1.48a3,3,0,0,1,.57,3.09,3.07,3.07,0,0,1-2.94,1.43Z"
3
+ transform="translate(-657.5 -358.97)" fill="#4d5065"/>
4
+ <path d="M683.15,386.94a4.06,4.06,0,0,1-2.62-1.16,1.5,1.5,0,0,1-.47-.92l2.32-4a5.24,5.24,0,0,0,3.13,1.45L684,386.63a1,1,0,0,1-.84.31Z"
5
+ transform="translate(-657.5 -358.97)" fill="#4d5065"/>
6
+ <path d="M686.75,381.45a5.78,5.78,0,0,1-2.52-.63c-2.06-1-3.21-2.9-2.57-4.21a2.48,2.48,0,0,1,2.37-1.15,5.78,5.78,0,0,1,2.53.63,5.5,5.5,0,0,1,2.32,2.05,2.26,2.26,0,0,1,.24,2.15,2.48,2.48,0,0,1-2.37,1.15Z"
7
+ transform="translate(-657.5 -358.97)" fill="#4d5065"/>
8
+ <path d="M679.42,390l-.89,1.92-.13,1.55,1-1.16.81-1.92-.54-.24Z" transform="translate(-657.5 -358.97)" fill="#4d5065"/>
9
+ <path d="M683,399.47a15,15,0,1,1,15-15A15,15,0,0,1,683,399.47Zm0-29a14,14,0,1,0,14,14A14,14,0,0,0,683,370.44Z"
10
+ transform="translate(-657.5 -358.97)" fill="#4d5065"/>
11
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="32.95 25.17 21.05 32.17 21.05 18.17 32.95 25.17" fill="#484f60"/><path d="M25,39.17a14,14,0,1,1,14-14,14,14,0,0,1-14,14m0,1a15,15,0,1,0-15-15,15,15,0,0,0,15,15Z" fill="#484f60"/></svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="-288 379 35 35" enable-background="new -288 379 35 35" xml:space="preserve">
5
+ <path fill="#29363E" d="M-270.5,381.5c-8.3,0-15,6.7-15,15c0,8.3,6.7,15,15,15s15-6.7,15-15C-255.5,388.2-262.2,381.5-270.5,381.5z
6
+ M-261.1,397.3c0,0.9-0.7,1.6-1.6,1.6h-5.5v5.5c0,0.9-0.7,1.6-1.6,1.6h-1.6c-0.9,0-1.6-0.7-1.6-1.6v-5.5h-5.5
7
+ c-0.9,0-1.6-0.7-1.6-1.6v-1.6c0-0.9,0.7-1.6,1.6-1.6h5.5v-5.5c0-0.9,0.7-1.6,1.6-1.6h1.6c0.9,0,1.6,0.7,1.6,1.6v5.5h5.5
8
+ c0.9,0,1.6,0.7,1.6,1.6V397.3z"/>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M24.34,32.17a.34.34,0,0,1-.34-.34V26.17H18.34a.34.34,0,0,1-.34-.34V24.5a.34.34,0,0,1,.34-.33H24V18.5a.34.34,0,0,1,.34-.33h1.33a.33.33,0,0,1,.33.33v5.67h5.67a.33.33,0,0,1,.33.33v1.33a.34.34,0,0,1-.33.34H26v5.66a.34.34,0,0,1-.33.34Z" fill="#484f60"/><path d="M25,11.17a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M23.86,37a.58.58,0,0,1-.57-.57V26.71H13.58a.57.57,0,0,1-.58-.56v-2.3a.57.57,0,0,1,.58-.56h9.71V13.57a.58.58,0,0,1,.57-.57h2.28a.57.57,0,0,1,.57.57v9.72h9.72a.57.57,0,0,1,.57.56v2.3a.57.57,0,0,1-.57.56H26.71v9.72a.57.57,0,0,1-.57.57Z" fill="#484f60"/></svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <path fill="#484F5F" d="M24.4,37.5c-0.3,0-0.6-0.3-0.6-0.6v-9.7h-9.7c-0.3,0-0.6-0.3-0.6-0.6v-2.3c0-0.3,0.3-0.6,0.6-0.6h9.7v-9.7
6
+ c0-0.3,0.3-0.6,0.6-0.6h2.3c0.3,0,0.6,0.3,0.6,0.6v9.7h9.7c0.3,0,0.6,0.3,0.6,0.6v2.3c0,0.3-0.3,0.6-0.6,0.6h-9.7v9.7
7
+ c0,0.3-0.3,0.6-0.6,0.6H24.4z"/>
8
+ </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="M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="24.09 10 23.32 12.15 21.13 12.82 22.93 14.22 22.89 16.51 24.79 15.23 26.95 15.98 26.31 13.78 27.69 11.95 25.4 11.88 24.09 10" fill="#484f60" opacity="0.8"/><polygon points="15.69 13.56 16.49 15.05 15.77 16.58 17.43 16.28 18.67 17.43 18.9 15.76 20.38 14.94 18.86 14.21 18.54 12.55 17.37 13.77 15.69 13.56" fill="#484f60" opacity="0.6"/><polygon points="12.16 19.48 13 20.08 13.02 21.11 13.85 20.49 14.83 20.79 14.5 19.81 15.09 18.97 14.06 18.98 13.44 18.16 13.13 19.14 12.16 19.48" fill="#484f60" opacity="0.4"/><polygon points="25.91 40 26.68 37.85 28.87 37.18 27.07 35.77 27.11 33.49 25.21 34.77 23.05 34.02 23.69 36.22 22.31 38.05 24.6 38.12 25.91 40" fill="#484f60" opacity="0.8"/><polygon points="34.31 36.44 33.51 34.95 34.23 33.42 32.56 33.72 31.33 32.57 31.1 34.24 29.62 35.06 31.14 35.79 31.46 37.45 32.63 36.23 34.31 36.44" fill="#484f60" opacity="0.6"/><polygon points="37.84 30.52 37 29.92 36.98 28.89 36.15 29.51 35.17 29.21 35.5 30.19 34.91 31.03 35.94 31.02 36.56 31.84 36.87 30.86 37.84 30.52" fill="#484f60" opacity="0.4"/><path d="M24.15,31.49a.31.31,0,0,1-.31-.31V25.92H18.58a.31.31,0,0,1-.31-.31V24.37a.31.31,0,0,1,.31-.31h5.26V18.8a.31.31,0,0,1,.31-.31h1.24a.31.31,0,0,1,.31.31v5.26H31a.31.31,0,0,1,.31.31v1.24a.31.31,0,0,1-.31.31H25.7v5.26a.31.31,0,0,1-.31.31Z" fill="#484f60"/></svg>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="-280 372 50 50" enable-background="new -280 372 50 50" xml:space="preserve">
5
+ <path fill="#4C5050" d="M-255,384.5c-4.6,0-8.3,3.7-8.3,8.3s8.3,16.7,8.3,16.7s8.3-12.1,8.3-16.7S-250.4,384.5-255,384.5z
6
+ M-255,394.9c-1.2,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.2,0,2.1,0.9,2.1,2.1C-252.9,394-253.8,394.9-255,394.9z"/>
7
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
2
+ <g>
3
+
4
+ <g id="svg_1" stroke="null">
5
+ <path id="svg_2" fill="#06B7FC" d="m256,18.34937c-87.45543,0 -157.80002,70.34459 -157.80002,157.80002s157.80002,317.50125 157.80002,317.50125s157.80002,-230.04581 157.80002,-317.50125s-70.34459,-157.80002 -157.80002,-157.80002zm0,197.72533c-22.81446,0 -39.92531,-17.11085 -39.92531,-39.92531c0,-22.81446 17.11085,-39.92531 39.92531,-39.92531c22.81446,0 39.92531,17.11085 39.92531,39.92531c0,22.81446 -17.11085,39.92531 -39.92531,39.92531z" stroke="null"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 51 51" enable-background="new 0 0 51 51" xml:space="preserve">
5
+ <path fill="#484F5F" d="M25.5,13c-4.6,0-8.3,3.7-8.3,8.3S25.5,38,25.5,38s8.3-12.1,8.3-16.7S30.1,13,25.5,13z"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="23" y="17.17" width="4" height="4" fill="#484f60"/><rect x="23" y="23.17" width="4" height="4" fill="#484f60"/><rect x="23" y="29.17" width="4" height="4" fill="#484f60"/></svg>
@@ -0,0 +1,18 @@
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
+ <g>
7
+ <path fill="#5B5B5B" d="M21.3,31.4c0.6,1.5,0.7,2.4,2.3,2.5c1.6,0.1,2.4-0.7,3.1-2.1c0.7-1.4,1.4-2.9,2.1-4.3
8
+ c0.7-1.4,0.6-2.5-0.9-3c-1-0.3-1.5-0.6-2.5-0.9c-0.8-0.2-1.1-0.9-1.6-1.6c-0.2-0.3-0.5-0.7-0.9-0.8c-0.5-0.1-1,0.1-1.2,0.5
9
+ c-0.2,0.4-0.3,0.9-0.2,1.4c0.4,1.4,1.3,2.6,2.8,2.8c0.1,0,0.1,0.1,0.3,0.2c0,0-1.2,2.3-1.3,2.5c-0.1,0.2-0.2,0.5-0.3,0.7l0-0.2
10
+ c-0.1-0.5-0.2-0.9-0.3-1.4c-0.1-0.3-0.2-0.6-0.4-0.8c-0.3-0.3-1-0.4-1.4-0.2c-0.6,0.2-1.2,0.8-1.5,1.3c-0.9,1.4-0.7,5.3-0.1,6.8
11
+ c0.1,0.2,0.1,0.3,0.3,0.4c0.3,0.2,0.8,0.1,1.1-0.1C21.1,34.7,21.2,32,21.3,31.4"/>
12
+ <path fill="#5B5B5B" d="M28.4,23.4c-2.1,0-3.8-1.7-3.8-3.8c0-2.1,1.7-3.9,3.9-3.8c2.1,0,3.9,1.8,3.8,3.8
13
+ C32.2,21.7,30.5,23.4,28.4,23.4z"/>
14
+ </g>
15
+ <path fill="#5B5B5B" d="M25.5,40.5c-8.3,0-15-6.7-15-15s6.7-15,15-15s15,6.7,15,15S33.8,40.5,25.5,40.5z M25.5,11.5
16
+ c-7.7,0-14,6.3-14,14s6.3,14,14,14s14-6.3,14-14S33.2,11.5,25.5,11.5z"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M37.07,11.48H12.93A1.94,1.94,0,0,0,11,13.41V36.59a1.94,1.94,0,0,0,1.93,1.93H37.07A1.94,1.94,0,0,0,39,36.59V13.41A1.94,1.94,0,0,0,37.07,11.48ZM20.66,32.72H18.24v2.9h-2.9v-2.9H12.93V27.9h2.41V15.34h2.9V27.9h2.42Zm8.2-9.65H26.45V35.62h-2.9V23.07H21.14V18.24h2.41v-2.9h2.9v2.9h2.41Zm8.21,6.76H34.66v5.79h-2.9V29.83H29.34V25h2.42V15.34h2.9V25h2.41Z" fill="#484f60"/><rect x="14.38" y="29.34" width="4.83" height="1.93" fill="#484f60"/><rect x="22.59" y="19.69" width="4.83" height="1.93" fill="#484f60"/><rect x="30.79" y="26.45" width="4.83" height="1.93" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M39.25,27.44c0-1.25-2.51-3-3.75-3h-21c-1.24,0-3.75,1.75-3.75,3L10,34.94a2.25,2.25,0,0,0,2.25,2.25h3l1.22-2.44H13.75V29.5l.75-2.25C14.5,26,17,25,18.25,25h13.5c1.24,0,3.75,1,3.75,2.25l.75,2.25v5.25H33.53l1.22,2.44h3A2.25,2.25,0,0,0,40,34.94Zm-1.5,4.31a1.13,1.13,0,1,1,1.13-1.13A1.13,1.13,0,0,1,37.75,31.75Z" fill="#484f60"/><path d="M15,30.89V29.63l.71-2.17v-.17c0-.54,1.78-1.43,2.85-1.43H31.41c1.07,0,2.85.89,2.85,1.43v.17L35,29.63v1.26Z" fill="#484f60"/><path d="M18.25,12.06v9.75h13.5V12.06Zm12,7.5H19.75v-.75h10.5Zm0-2.25H19.75v-.75h10.5Zm0-2.25H19.75v-.75h10.5Z" fill="#484f60"/><polygon points="15.71 37.94 17.96 33.44 32.04 33.44 34.29 37.94 15.71 37.94" fill="#484f60"/><rect x="16.75" y="22.94" width="16.5" height="1.5" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M37.43,12.64H12.57A2.57,2.57,0,0,0,10,15.21V29.79a2.57,2.57,0,0,0,2.57,2.57H31.11a3.45,3.45,0,0,1,1.75-.5H29.5v-13h1.84V14.79h1.29v4.07h.77V14.79H36v4.07h.53v13H32.93a3.45,3.45,0,0,1,1.75.5h2.75A2.57,2.57,0,0,0,40,29.79V15.21A2.57,2.57,0,0,0,37.43,12.64ZM14.29,30.21H12.15V14.79h2.14Zm2,0H15V14.79h1.29Zm2.57,0H17.54V14.79h1.29Zm3.52,0H20.2V14.79h2.15Zm2,0H23.11V14.79H24.4Zm2.06,0H25.17V14.79h1.29Zm2.66,0H27.83V14.79h1.29Zm9.17,0H37V14.79h1.29Z" fill="#484f60" opacity="0.5"/><path d="M32.9,37.36a2,2,0,0,1-2-2,2,2,0,0,1,.58-1.42,2,2,0,0,1,2.83,0,2,2,0,0,1,.59,1.42,2,2,0,0,1-2,2Z" fill="#484f60"/><rect x="31" y="20.36" width="4" height="10" transform="translate(66 50.72) rotate(180)" fill="#484f60"/></svg>
@@ -0,0 +1,15 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50">
2
+ <g opacity="0.75">
3
+ <polygon points="33.34 25.04 27.34 28.52 33.35 31.97 39.34 28.49 33.34 25.04" fill="#484f60"/>
4
+ <polygon points="33.99 33.08 39.99 29.6 40 36.53 34.01 40.01 33.99 33.08" fill="#484f60" opacity="0.5"/>
5
+ <polygon points="26.72 36.55 26.71 29.63 32.71 33.08 32.72 40.01 26.72 36.55" fill="#484f60" opacity="0.25"/>
6
+ <polygon points="12.78 28.54 18.79 32 24.78 28.52 18.77 25.07 12.78 28.54" fill="#484f60"/>
7
+ <polygon points="19.43 33.1 25.42 29.63 25.44 36.56 19.44 40.03 19.43 33.1" fill="#484f60" opacity="0.5"/>
8
+ <polygon points="12.15 36.58 12.14 29.65 18.15 33.11 18.16 40.04 12.15 36.58" fill="#484f60" opacity="0.25"/>
9
+ <polygon points="32.04 15.89 26.03 12.44 22.09 14.73 27.52 14.73 24.03 18.21 26.05 19.37 32.04 15.89" fill="#484f60"/>
10
+ <polygon points="32.68 17 26.69 20.48 26.7 27.41 32.7 23.93 32.68 17" fill="#484f60" opacity="0.5"/>
11
+ <polygon points="23.1 19.15 19.41 22.83 19.41 23.95 25.42 27.41 25.41 20.48 23.1 19.15" fill="#484f60" opacity="0.25"/>
12
+ </g>
13
+ <polygon points="19.03 16.34 19.03 10.3 14.61 10.3 14.61 16.34 14.61 16.34 10 16.34 16.82 23.16 23.64 16.34 19.03 16.34"
14
+ fill="#484f60"/>
15
+ </svg>
@@ -0,0 +1,59 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ viewBox="0 0 50 50"
11
+ version="1.1"
12
+ id="svg12"
13
+ sodipodi:docname="qrcode.svg"
14
+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)">
15
+ <metadata
16
+ id="metadata18">
17
+ <rdf:RDF>
18
+ <cc:Work
19
+ rdf:about="">
20
+ <dc:format>image/svg+xml</dc:format>
21
+ <dc:type
22
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
23
+ <dc:title></dc:title>
24
+ </cc:Work>
25
+ </rdf:RDF>
26
+ </metadata>
27
+ <defs
28
+ id="defs16" />
29
+ <sodipodi:namedview
30
+ pagecolor="#ffffff"
31
+ bordercolor="#666666"
32
+ borderopacity="1"
33
+ objecttolerance="10"
34
+ gridtolerance="10"
35
+ guidetolerance="10"
36
+ inkscape:pageopacity="0"
37
+ inkscape:pageshadow="2"
38
+ inkscape:window-width="1920"
39
+ inkscape:window-height="1017"
40
+ id="namedview14"
41
+ showgrid="false"
42
+ inkscape:zoom="10.24"
43
+ inkscape:cx="-3.609533"
44
+ inkscape:cy="34.630587"
45
+ inkscape:window-x="-8"
46
+ inkscape:window-y="-8"
47
+ inkscape:window-maximized="1"
48
+ inkscape:current-layer="svg12" />
49
+ <g
50
+ transform="matrix(0.12987013,0,0,0.12987013,8.5714286,8.5714285)"
51
+ id="elements"
52
+ style="fill:#484f60;fill-opacity:1">
53
+ <path
54
+ inkscape:connector-curvature="0"
55
+ style="fill:#484f60;fill-opacity:1"
56
+ d="M 11,11 H 22 V 22 H 11 Z m 11,0 H 33 V 22 H 22 Z m 11,0 H 44 V 22 H 33 Z m 11,0 H 55 V 22 H 44 Z m 11,0 H 66 V 22 H 55 Z m 11,0 H 77 V 22 H 66 Z m 11,0 H 88 V 22 H 77 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 22 H 231 Z M 11,22 H 22 V 33 H 11 Z m 66,0 H 88 V 33 H 77 Z m 22,0 h 11 V 33 H 99 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 66,0 h 11 V 33 H 231 Z M 11,33 H 22 V 44 H 11 Z m 22,0 H 44 V 44 H 33 Z m 11,0 H 55 V 44 H 44 Z m 11,0 H 66 V 44 H 55 Z m 22,0 H 88 V 44 H 77 Z m 33,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 44 H 231 Z M 11,44 H 22 V 55 H 11 Z m 22,0 H 44 V 55 H 33 Z m 11,0 H 55 V 55 H 44 Z m 11,0 H 66 V 55 H 55 Z m 22,0 H 88 V 55 H 77 Z m 22,0 h 11 V 55 H 99 Z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 55 H 231 Z M 11,55 H 22 V 66 H 11 Z m 22,0 H 44 V 66 H 33 Z m 11,0 H 55 V 66 H 44 Z m 11,0 H 66 V 66 H 55 Z m 22,0 H 88 V 66 H 77 Z m 44,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 V 66 H 231 Z M 11,66 H 22 V 77 H 11 Z m 66,0 H 88 V 77 H 77 Z m 22,0 h 11 V 77 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 66,0 h 11 V 77 H 231 Z M 11,77 H 22 V 88 H 11 Z m 11,0 H 33 V 88 H 22 Z m 11,0 H 44 V 88 H 33 Z m 11,0 H 55 V 88 H 44 Z m 11,0 H 66 V 88 H 55 Z m 11,0 H 77 V 88 H 66 Z m 11,0 H 88 V 88 H 77 Z m 22,0 h 11 V 88 H 99 Z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 88 H 231 Z M 121,88 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 V 99 H 143 Z M 11,99 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 11,0 h 11 v 11 H 88 Z m 11,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 220 Z M 22,110 h 11 v 11 H 22 Z m 77,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 H 231 Z M 22,121 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 22,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 220 Z M 22,132 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 55,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 220 Z M 22,143 h 11 v 11 H 22 Z m 22,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 11,0 h 11 v 11 H 88 Z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 231 Z M 99,154 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 H 231 Z M 11,165 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 220 Z M 11,176 h 11 v 11 H 11 Z m 66,0 h 11 v 11 H 77 Z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,187 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 44,0 h 11 v 11 H 220 Z M 11,198 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,209 h 11 v 11 H 11 Z m 22,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 22,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 H 209 Z M 11,220 h 11 v 11 H 11 Z m 66,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 22,0 h 11 v 11 h -11 z m 55,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 H 209 Z M 11,231 h 11 v 11 H 11 Z m 11,0 h 11 v 11 H 22 Z m 11,0 h 11 v 11 H 33 Z m 11,0 h 11 v 11 H 44 Z m 11,0 h 11 v 11 H 55 Z m 11,0 h 11 v 11 H 66 Z m 11,0 h 11 v 11 H 77 Z m 22,0 h 11 v 11 H 99 Z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 33,0 h 11 v 11 h -11 z m 22,0 h 11 v 11 h -11 z m 11,0 h 11 v 11 h -11 z"
57
+ id="path8-3" />
58
+ </g>
59
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M22.56,21H19.5A4.14,4.14,0,0,1,21,17.69a6.16,6.16,0,0,1,4.12-1.32,6.6,6.6,0,0,1,2.8.54,4.58,4.58,0,0,1,1.85,1.58,3.84,3.84,0,0,1,.69,2.16,3.46,3.46,0,0,1-.22,1.22,4.85,4.85,0,0,1-.7,1.23,10.78,10.78,0,0,1-1.34,1.24A8.45,8.45,0,0,0,27,25.51a2.8,2.8,0,0,0-.44.9A7,7,0,0,0,26.31,28H23.15v-.47A5.69,5.69,0,0,1,23.71,25a6.46,6.46,0,0,1,1.86-2.16,9.51,9.51,0,0,0,1.49-1.34,1.48,1.48,0,0,0,.26-.86,1.38,1.38,0,0,0-.63-1.14A2.71,2.71,0,0,0,25,19a2.66,2.66,0,0,0-1.76.57A1.83,1.83,0,0,0,22.56,21Z" fill="#484f60"/><path d="M24.79,30a2,2,0,0,1,1.45.59,2,2,0,0,1-2.86,2.82A2,2,0,0,1,24.79,30Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,34.5a9.34,9.34,0,1,1,9.33-9.33A9.34,9.34,0,0,1,25,34.5m0,.67a10,10,0,1,0-10-10,10,10,0,0,0,10,10Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><title>range</title><path d="M10,35.46V14.54h4.43V16.2H12V33.8h2.42v1.66Z" fill="#484f60"/><path d="M21.88,26V24h6.18v2Z" fill="#484f60"/><path d="M40,35.46H35.57V33.8H38V16.2H35.57V14.54H40Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="18" y="11.17" width="22" height="4" fill="#484f60" opacity="0.25"/><rect x="18" y="19.17" width="22" height="4" fill="#484f60"/><rect x="18" y="27.17" width="22" height="4" fill="#484f60"/><circle cx="13" cy="13.17" r="3" fill="#484f60" opacity="0.25"/><circle cx="13" cy="21.17" r="3" fill="#484f60"/><circle cx="13" cy="29.17" r="3" fill="#484f60"/><rect x="18" y="35.17" width="22" height="4" fill="#484f60"/><circle cx="13" cy="37.17" r="3" fill="#484f60"/></svg>
@@ -0,0 +1,15 @@
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="#484F5F" d="M24.7,24.2c0,0.2-0.2,0.4-0.4,0.4H10.9c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3
7
+ c0.2,0,0.4,0.2,0.4,0.4V24.2z"/>
8
+ <path fill="#484F5F" d="M40.5,24.2c0,0.2-0.2,0.4-0.4,0.4H26.8c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3
9
+ c0.2,0,0.4,0.2,0.4,0.4V24.2z"/>
10
+ <path fill="#484F5F" d="M24.7,35.2c0,0.2-0.2,0.4-0.4,0.4H10.9c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4h13.3
11
+ c0.2,0,0.4,0.2,0.4,0.4V35.2z"/>
12
+ <path opacity="0.5" fill="#484F5F" d="M40.5,35.2c0,0.2-0.2,0.4-0.4,0.4H26.8c-0.2,0-0.4-0.2-0.4-0.4v-8.4c0-0.2,0.2-0.4,0.4-0.4
13
+ h13.3c0.2,0,0.4,0.2,0.4,0.4V35.2z"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="14.58 22.71 14.58 10 27.29 22.71 14.58 22.71" fill="#484f60"/><polygon points="35.42 27.29 35.42 40 22.71 27.29 35.42 27.29" fill="#484f60"/><path d="M19.9,15.32c4.09-4.09,10.2-8.13,18.33,0h0C31.73,8.82,26.65,13.9,22.56,18Z" fill="#484f60"/><path d="M30.1,34.68c-4.09,4.08-10.2,8.13-18.33,0h0c6.51,6.5,11.58,1.43,15.67-2.66Z" fill="#484f60"/></svg>
@@ -0,0 +1,20 @@
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="#2A363B" d="M32.8,35.2c1.4-1.3,2.5-4.7,2.9-6.7l-1.5,1.7C34,31.3,33.6,33.3,32.8,35.2z"/>
7
+ <path fill="#2A363B" d="M37,26.1l1.6-1.8c0-1.8-1.9-4-4.1-4h-0.5c-0.2,0.3-0.5,0.6-0.7,0.9C35.3,22,36.8,24.1,37,26.1z"/>
8
+ <path fill="#2A363B" d="M34.6,15.3c0-2.8-2.8-5.3-6.4-5.3c-1,0-1.9,0.2-2.8,0.6c4.1,0.2,7.5,3.3,7.5,6.9c0,0.6-0.1,1.3-0.3,1.9
9
+ C33.8,18.2,34.6,16.7,34.6,15.3z"/>
10
+ <path fill="#2A363B" d="M33.7,28.2l1.6-1.8c0-1.8-1.9-4-4.1-4h-0.5c-0.2,0.3-0.5,0.6-0.7,0.9C32.1,24.2,33.6,26.2,33.7,28.2z"/>
11
+ <path fill="#2A363B" d="M29.6,37.3c1.4-1.3,2.5-4.7,2.9-6.7l-1.5,1.7C30.8,33.4,30.4,35.5,29.6,37.3z"/>
12
+ <path fill="#2A363B" d="M31.4,17.4c0-2.8-2.8-5.3-6.4-5.3c-1,0-1.9,0.2-2.8,0.6c4.1,0.2,7.5,3.3,7.5,6.9c0,0.6-0.1,1.3-0.3,1.9
13
+ C30.6,20.4,31.4,18.9,31.4,17.4z"/>
14
+ <path fill="#2A363B" d="M28,24.6h-0.5c-0.9,1.2-2.5,2.7-4.2,3.3c0.1,0.2,0.2,0.4,0.2,0.6c0,0.4-0.3,0.8-0.6,1l1.5,7.1l-2.6,2.6
15
+ l-2.6-2.6l1.5-7.1c-0.4-0.2-0.6-0.6-0.6-1c0-0.2,0.1-0.4,0.2-0.6c-1.7-0.6-3.3-2-4.2-3.3h-0.5c-2.3,0-4.1,2.2-4.1,4l2.8,3
16
+ c0,1.8,1.9,8.4,4.1,8.4h6.9c2.3,0,4.2-6.6,4.2-8.4l2.8-3C32.2,26.8,30.3,24.6,28,24.6z"/>
17
+ <path fill="#2A363B" d="M28.1,19.6c0,2.8-2.8,5.9-6.4,5.9c-3.5,0-6.4-3.1-6.4-5.9c0-2.8,2.8-5.3,6.4-5.3
18
+ C25.3,14.3,28.1,16.8,28.1,19.6z"/>
19
+ </g>
20
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,10.93c-8.28,0-15,4.9-15,11a8.87,8.87,0,0,0,2.27,5.77h-.16c.15.1.28.22.43.32a13.37,13.37,0,0,0,1.34,1.25c3.07,3.74.06,8.71-3.25,9.84,5.79-1.34,9.32-3.89,10.91-6.53a19.53,19.53,0,0,0,3.46.31c8.28,0,15-4.91,15-11S33.28,10.93,25,10.93Z" fill="#484f60"/></svg>
@@ -0,0 +1,6 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M683,375.62c-5.52,0-10,3.27-10,7.31a5.91,5.91,0,0,0,1.51,3.85h-.11c.11.07.19.14.29.22a8.27,8.27,0,0,0,.9.83c2,2.5,0,5.81-2.16,6.56,3.86-.89,6.21-2.59,7.27-4.35a13.52,13.52,0,0,0,2.31.2c5.52,0,10-3.27,10-7.3S688.52,375.62,683,375.62Z"
3
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
4
+ <path d="M683,405a20,20,0,1,1,20-20A20,20,0,0,1,683,405Zm0-38.71A18.71,18.71,0,1,0,701.71,385,18.73,18.73,0,0,0,683,366.29Z"
5
+ transform="translate(-658.5 -359.5)" fill="#4d5050"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><g opacity="0.75"><path d="M27.38,15.39a1,1,0,0,0-1-1H24.89a1,1,0,0,0-1,1v7.53c0,.55-.32.68-.71.29l-3.47-3.47c-.39-.39-.71-.26-.71.29v2.89c0,.55-.34.7-.75.34l-4.08-3.57c-.41-.36-.75-.21-.75.34v2.89c0,.55-.32.68-.71.29L9.25,19.74c-.39-.39-.71-.26-.71.29v7.14a1,1,0,0,0,1,1H20.4l7-7Z" fill="#484f60"/><path d="M15.73,13.38,15.39,12a13.26,13.26,0,0,1-3.2.47,5.14,5.14,0,0,1-2.92-.79L8.5,12.87a6.43,6.43,0,0,0,3.69,1A14.53,14.53,0,0,0,15.73,13.38Z" fill="#484f60"/><path d="M18.41,12.61a18.14,18.14,0,0,1,4.74-1,2.35,2.35,0,0,1,2.24,1.1l1.18-.73a3.72,3.72,0,0,0-3.42-1.76A19,19,0,0,0,18,11.28l-.63.19.41,1.34Z" fill="#484f60"/></g><g opacity="0.75"><rect x="28.55" y="34.12" width="3.02" height="6.05" fill="#484f60"/><rect x="32.43" y="34.12" width="3.02" height="6.05" fill="#484f60"/><polygon points="33.28 21.29 22.5 32.07 22.5 40.17 26.82 40.17 26.82 32.39 37.18 32.39 37.18 40.17 41.5 40.17 41.5 25.48 33.28 21.29" fill="#484f60"/></g><rect x="6.6" y="24.67" width="39.6" height="1" transform="translate(-10.06 26.04) rotate(-45)" fill="#484f60"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <polygon points="1.1 49.9 1.1 30.6 7.8 37.3 37.3 8 30.6 1.3 49.9 1.3 49.9 20.6 43.2 13.9 13.7 43.2 20.5 49.9 1.1 49.9" fill="#4d5050"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="29.5 28.25 25 32.75 20.5 28.25 29.5 28.25" fill="#484f60"/><rect x="23" y="21.25" width="4" height="4" fill="#484f60"/><rect x="17" y="21.25" width="4" height="4" fill="#484f60"/><rect x="29" y="21.25" width="4" height="4" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="20.5 22.75 25 18.25 29.5 22.75 20.5 22.75" fill="#484f60"/><rect x="23" y="25.75" width="4" height="4" fill="#484f60"/><rect x="29" y="25.75" width="4" height="4" fill="#484f60"/><rect x="17" y="25.75" width="4" height="4" fill="#484f60"/></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="M298,407.7a15,15,0,0,0-5.1.9l-2.7-3.5-2.5,9.7,10-.3-2-2.6,2.4-.3a11,11,0,1,1-11,11h-4A15,15,0,1,0,298,407.7Z"
3
+ transform="translate(-272.5 -396)" fill="#fff"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M33.63,16.88H29.25A1.25,1.25,0,0,0,28,18.13v.65A1.25,1.25,0,0,0,29.25,20h9.5A1.25,1.25,0,0,0,40,18.78v-.65a1.25,1.25,0,0,0-1.25-1.25H33.63Z" fill="#484f60"/><path d="M35.36,22.45H20.53v1.79a3.21,3.21,0,0,1-.67,1.94V37.09H18.79v-10a3.24,3.24,0,0,1-1.08.33v9.68H16.64V27.45a3.68,3.68,0,0,1-.57-.06v9.7H14.29V26.36a3.17,3.17,0,0,1-.82-2.12V22.81a2.14,2.14,0,0,0-1,1.78V36.74a2.14,2.14,0,0,0,2.14,2.14H35.36a2.14,2.14,0,0,0,2.14-2.14V24.59A2.14,2.14,0,0,0,35.36,22.45ZM22.79,37.09H21V24.24h1.79Zm1.71,0H23.43V24.24H24.5Zm1.72,0H25.15V24.24h1.07Zm2.21,0H27.36V24.24h1.07Zm2.93,0H30.29V24.24h1.07Zm2.79,0H32V24.24h2.15Zm1.92,0H35V24.24h1.07Z" fill="#484f60"/><path d="M22.79,16.92H18.53V12.67a1.22,1.22,0,0,0-1.21-1.22h-.63a1.22,1.22,0,0,0-1.22,1.22v4.25H11.22A1.22,1.22,0,0,0,10,18.13v.64A1.21,1.21,0,0,0,11.22,20h4.25v4.26a1.21,1.21,0,0,0,1.22,1.21h.63a1.21,1.21,0,0,0,1.21-1.21V20h4.26A1.21,1.21,0,0,0,24,18.77v-.64A1.21,1.21,0,0,0,22.79,16.92Z" fill="#484f60" opacity="0.5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 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="M480 256c0 123.4-100.5 223.9-223.9 223.9c-48.84 0-95.17-15.58-134.2-44.86c-14.12-10.59-16.97-30.66-6.375-44.81c10.59-14.12 30.62-16.94 44.81-6.375c27.84 20.91 61 31.94 95.88 31.94C344.3 415.8 416 344.1 416 256s-71.69-159.8-159.8-159.8c-37.46 0-73.09 13.49-101.3 36.64l45.12 45.14c17.01 17.02 4.955 46.1-19.1 46.1H35.17C24.58 224.1 16 215.5 16 204.9V59.04c0-24.04 29.07-36.08 46.07-19.07l47.6 47.63C149.9 52.71 201.5 32.11 256.1 32.11C379.5 32.11 480 132.6 480 256z"/></svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="-288 379 35 35" enable-background="new -288 379 35 35" xml:space="preserve">
5
+ <g opacity="0.95">
6
+ <path fill="#29363E" d="M-259.5,384.4h-2.1v6.8c0,0.4-0.3,0.7-0.7,0.7h-16.6c-0.4,0-0.7-0.3-0.7-0.7v-6.8h-2
7
+ c-0.6,0-1.1,0.5-1.1,1.1v22.4c0,0.6,0.5,1.1,1.1,1.1h2v-14c0-0.4,0.3-0.7,0.7-0.7h16.7c0.4,0,0.7,0.3,0.7,0.7v14h2
8
+ c0.6,0,1.1-0.5,1.1-1.1v-22.4C-258.4,384.9-258.9,384.4-259.5,384.4z M-280.1,406.6h-1.7V405h1.7V406.6z M-259.2,406.6h-1.7V405
9
+ h1.7V406.6z"/>
10
+ <rect x="-278.4" y="395.4" fill="#29363E" width="15.8" height="13.5"/>
11
+ <path fill="#29363E" d="M-263.4,384h-12c-0.1,0-0.3,0.1-0.3,0.3v6.5c0,0.1,0.1,0.3,0.3,0.3h12c0.1,0,0.2-0.1,0.2-0.3v-6.5
12
+ C-263.1,384.1-263.2,384-263.4,384z M-265.6,390c0,0.1-0.1,0.3-0.3,0.3h-2.4c-0.1,0-0.2-0.1-0.2-0.3v-4.8c0-0.1,0.1-0.3,0.2-0.3
13
+ h2.4c0.1,0,0.3,0.1,0.3,0.3V390z"/>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <polygon points="23.8 38.1 14.9 25.6 15.7 25 23.6 36.2 35.2 12.9 36.1 13.4 23.8 38.1" fill="#fff"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path style="fill:#484f60" d="M554.9 154.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 128 80s127.1-35.88 127.1-80C639.1 319.9 641.4 327.3 554.9 154.5zM439.1 320l71.96-144l72.17 144H439.1zM256 336c0-16.12 1.375-8.75-85.12-181.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 127.1 80S256 380.1 256 336zM127.9 176L200.1 320H55.96L127.9 176zM495.1 448h-143.1V153.3C375.5 143 393.1 121.8 398.4 96h113.6c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-128.4c-14.62-19.38-37.5-32-63.62-32S270.1 12.62 256.4 32H128C110.3 32 96 46.33 96 64S110.3 96 127.1 96h113.6c5.25 25.75 22.87 47 46.37 57.25V448H144c-26.51 0-48.01 21.49-48.01 48c0 8.836 7.165 16 16 16h416c8.836 0 16-7.164 16-16C544 469.5 522.5 448 495.1 448z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M38.21,34.13s-1.57-5.49-2.34-9a13.47,13.47,0,0,1-.51-3.86,10.31,10.31,0,0,1,.24-2.92,4.85,4.85,0,0,1,1.24-2.07,20.07,20.07,0,0,0,.2-2.18A17.29,17.29,0,0,0,37,12.08a.88.88,0,0,0-.39-.71A4.2,4.2,0,0,0,35.13,11l-8.38-.85s-2.21.4-4.63,1c-4.21,1-9.67,2.42-9.67,2.42a1.36,1.36,0,0,0-.5.35.8.8,0,0,0-.16.46l1.13,6.24a2,2,0,0,0,.2.7,1,1,0,0,0,.43.39s3.79,1.35,7.32,2.18a39,39,0,0,0,5.65.86,2.22,2.22,0,0,0,.9-.16A1.28,1.28,0,0,0,28,24a3.38,3.38,0,0,1,0,1,4.14,4.14,0,0,1-.31,1l-1.09,2.69a.8.8,0,0,0,0,.43,1.19,1.19,0,0,0,.23.43,15.44,15.44,0,0,0,1.48.7,2,2,0,0,0,.78.16,2.49,2.49,0,0,0,.63,0,3.52,3.52,0,0,0,.81-.24l1.06-2.06.5-2.3.31-.47a11.58,11.58,0,0,1,.16,1.31,5.3,5.3,0,0,1,0,.87,11.17,11.17,0,0,1-.14,1.31,4.52,4.52,0,0,1-.25.91,8.47,8.47,0,0,1-.37.9,3.13,3.13,0,0,1-.37.58l-.35.32a3.72,3.72,0,0,1-1.05.07,2.55,2.55,0,0,1-.94-.31L29.05,33l-.15,1a1.4,1.4,0,0,1-.39.45,2.75,2.75,0,0,1-.67.29.88.88,0,0,0-.42.43,2.27,2.27,0,0,0-.08.89s1.59,4.1,4.44,4.06C38.4,40.21,38.21,34.13,38.21,34.13ZM25.08,22.48c-.73-.11-2.63-.39-4.4-.82-2.53-.61-5-1.43-5.64-1.63a.23.23,0,0,1-.15-.19l-.55-3.51a.24.24,0,0,1,.27-.27c.73.12,2.62.43,4.55.78,2.36.43,4.75.95,5.37,1.08a.23.23,0,0,1,.18.2l.63,4.09A.24.24,0,0,1,25.08,22.48Z" fill="#484f60"/></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="M299.9,415.2a5.8,5.8,0,1,0,0,8.2A5.8,5.8,0,0,0,299.9,415.2Zm-1,7.2a4.4,4.4,0,1,1,0-6.3A4.4,4.4,0,0,1,298.9,422.4Z"
3
+ transform="translate(-272.5 -396)" fill="#fff"/>
4
+ <path d="M305.6,426.7l-2.9-2.9a1.4,1.4,0,0,0-1.9,0l-0.5.5a1.3,1.3,0,0,0,0,1.9l2.9,2.9a1.3,1.3,0,0,0,1.9,0l0.5-.5A1.3,1.3,0,0,0,305.6,426.7Z"
5
+ transform="translate(-272.5 -396)" fill="#fff"/>
6
+ <path d="M295.5,422.2h-0.1v-2.4h-2.6V419h2.6v-2.4h0.9v2.4h2.6v0.6h-2.6v2.4h-0.7Z" transform="translate(-272.5 -396)" fill="#fff"/>
7
+ <path d="M298,407.5a14,14,0,1,1-14,14,14,14,0,0,1,14-14m0-1a15,15,0,1,0,15,15,15,15,0,0,0-15-15h0Z" transform="translate(-272.5 -396)"
8
+ fill="#fff"/>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="12.5" y="13.17" width="25" height="11" fill="#484f60"/><rect x="12.5" y="26.17" width="25" height="11" fill="#484f60"/></svg>
@@ -0,0 +1,5 @@
1
+ <svg id="Laag_1" data-name="Laag 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51">
2
+ <path d="M298,406.5a15,15,0,1,0,15,15A15,15,0,0,0,298,406.5Zm-3,24-6.2-9.1,2.8-3.6,3.4,5.1,4.7-10.4h5.6Zm9.3,0-0.5-1.5h-2.7l-0.5,1.5h-1.9l2.7-7.3h2.2l2.7,7.3h-1.9Z"
3
+ transform="translate(-272.5 -396)" fill="#fff"/>
4
+ <polygon points="30.8 31.7 30 29.1 29.1 31.7 30.8 31.7" fill="#fff"/>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M30.5,23.39l2-2.2a3.14,3.14,0,0,0-3-2.88h-.37c-.82,1.17-2.53,2.56-4.13,2.56s-3.31-1.39-4.14-2.56H20.5a3.13,3.13,0,0,0-3,2.88l2,2.2a4.93,4.93,0,0,0,.08.75H30.42A4.93,4.93,0,0,0,30.5,23.39Z" fill="#484f60"/><path d="M29.6,14.68a4.61,4.61,0,0,1-9.2,0c0-2,2.06-3.82,4.6-3.82S29.6,12.66,29.6,14.68Z" fill="#484f60"/><path d="M24.1,32.67a2.9,2.9,0,0,0-1-2.31c-2-1.93-4.27-3.55-6.44-5.28a2.7,2.7,0,0,0-1.92-.68c-.55.05-.7.29-.41.77a13.73,13.73,0,0,0,1.78,2.16,18.19,18.19,0,0,1,2.07,2.4c.14.22.34.48.12.74s-.53.12-.73,0c-1.85-1.51-3.76-3-4.32-5.5-.45-2-.85-4-1.28-6a7.56,7.56,0,0,0-.79-2.39.6.6,0,0,0-.58-.36.59.59,0,0,0-.45.51A4.92,4.92,0,0,0,10,18.38c.23,2.79.55,5.58.84,8.37A7.54,7.54,0,0,0,14,32.39c1,.75,2,1.57,2.94,2.41a3.94,3.94,0,0,1,1.51,2.88c0,.6,0,1.2,0,1.8h5.59C24.06,37.21,24.06,34.94,24.1,32.67Z" fill="#484f60"/><path d="M39.84,16.6c-.16-.54-.55-.63-.94-.17a3.41,3.41,0,0,0-.61,1.5c-.51,2.29-1,4.59-1.49,6.9-.54,2.56-2.47,4.05-4.34,5.59-.19.16-.48.33-.73.06s0-.51.1-.74a13.22,13.22,0,0,1,1.56-1.87,20.28,20.28,0,0,0,2.19-2.53c.14-.21.37-.44.19-.73s-.48-.2-.74-.21a2.24,2.24,0,0,0-1.42.53,66.31,66.31,0,0,0-7,5.75,2.21,2.21,0,0,0-.69,1.7c0,1.36,0,2.72,0,4.07h0c0,1,0,2,0,3h5.51A5.57,5.57,0,0,1,34,34c1-.77,2-1.61,3-2.46A5.63,5.63,0,0,0,38.92,28c.53-3.31.87-6.64,1.07-10A4.33,4.33,0,0,0,39.84,16.6Z" fill="#484f60"/></svg>
@@ -0,0 +1,20 @@
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
+ <g>
6
+ <path fill="#2A363B" d="M30.6,31.5V29l-3.2-0.9c-0.2-0.6-0.4-1.2-0.7-1.8l1.6-2.8l-1.8-1.8l-2.7,1.6c-0.5-0.3-1.1-0.6-1.7-0.7
7
+ l-0.9-3.2h-2.5l-0.9,3.2c-0.6,0.2-1.3,0.4-1.8,0.8l-2.7-1.6l-1.8,1.8l1.6,2.7c-0.3,0.6-0.6,1.2-0.7,1.8L9,29v2.5l3.3,0.9
8
+ c0.2,0.6,0.4,1.2,0.7,1.7l-1.6,2.7l1.8,1.8l2.8-1.6c0.6,0.3,1.2,0.6,1.8,0.7l0.9,3.2h2.5l0.9-3.2c0.6-0.2,1.2-0.4,1.7-0.7l2.8,1.6
9
+ l1.8-1.8l-1.6-2.8c0.3-0.5,0.5-1.1,0.7-1.7L30.6,31.5z M19.8,33.3c-1.7,0-3.1-1.4-3.1-3.1c0-1.7,1.4-3.1,3.1-3.1
10
+ c1.7,0,3.1,1.4,3.1,3.1C22.9,31.9,21.5,33.3,19.8,33.3z"/>
11
+ </g>
12
+ <g>
13
+ <path fill="#2A363B" d="M40.6,13.5l-2.3-0.1c-0.2-0.3-0.5-0.7-0.8-0.9c-0.3-0.3-0.6-0.5-0.9-0.8l-0.1-2.3L34.8,9l-1,1.9
14
+ c-1,0-1.9,0.2-2.8,0.7l-2.1-1.2l-1.2,1.2l1.2,2c-0.5,0.9-0.8,1.9-0.7,2.9l-1.9,1l0.4,1.7l2.3,0.1c0.2,0.3,0.5,0.7,0.7,0.9
15
+ c0.3,0.3,0.6,0.5,0.9,0.7l0.1,2.3l1.7,0.4l1-1.9c1,0,2-0.2,2.9-0.7l2,1.2l1.2-1.2L38.4,19c0.5-0.9,0.7-1.8,0.7-2.8l1.9-1
16
+ L40.6,13.5z M35.3,18.1c-0.9,0.9-2.5,0.9-3.4,0c-0.9-0.9-0.9-2.5,0-3.4c0.9-0.9,2.5-0.9,3.4,0C36.3,15.6,36.3,17.1,35.3,18.1z"/>
17
+ </g>
18
+ </g>
19
+ <path fill="#2A363B" d="M25.3,24.9c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0.1-0.1,0.2-0.2,0.3C24.9,25.1,25.1,25,25.3,24.9z"/>
20
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path style= "fill: #484f60" d="M96 0C107.5 0 117.4 8.19 119.6 19.51L121.1 32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24C0 10.75 10.75 0 24 0H96zM128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464zM512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M16.58,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,16.58,34.84Z" fill="#484f60"/><path d="M31.49,34.84a1.8,1.8,0,1,0,1.8,1.8A1.79,1.79,0,0,0,31.49,34.84Z" fill="#484f60"/><path d="M35.6,17.9l-2.87.34a8.92,8.92,0,0,1,.08,1.16c0,.26,0,.52,0,.78l.42-.05a.88.88,0,0,1,1,1.08L32.35,29.5a1.52,1.52,0,0,1-1.44,1.2H16.51a1.75,1.75,0,0,1-1.57-1.17l-2.31-5.6a1,1,0,0,1,.85-1.29l.87-.11a9.27,9.27,0,0,1-.47-2.05l-3,.35a1,1,0,0,0-.87,1.28l3.34,9.44A1.73,1.73,0,0,0,15,32.72H32.64a1.51,1.51,0,0,0,1.43-1.2L36.6,19A.89.89,0,0,0,35.6,17.9Z" fill="#484f60"/><path d="M39,17a1.87,1.87,0,0,0-1.36,1.46l-.42,2.89c-.1.67.31,1,.9.7a2.75,2.75,0,0,0,1.33-1.7L40,18A.73.73,0,0,0,39,17Z" fill="#484f60"/><circle cx="23.31" cy="19.4" r="7.5" fill="#484f60"/><text transform="translate(20.46 22.82)" font-size="10" fill="#484f60" font-family="Quicksand-Regular, Quicksand">3</text></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M23.51,13.64A14.9,14.9,0,0,0,8.62,28.54h3.72a11.16,11.16,0,0,1,21.91-3l3.42-1.59A14.92,14.92,0,0,0,23.51,13.64Z" fill="#484f60"/><polyline points="36.98 21.51 41.1 19.58 37.84 28.54 28.89 25.28 33.01 23.35" fill="#484f60"/><path d="M13.46,33.38a3,3,0,1,1-3-3A3,3,0,0,1,13.46,33.38Z" fill="#484f60"/><path d="M23.14,33.38a3,3,0,1,1-3-3A3,3,0,0,1,23.14,33.38Z" fill="#484f60" opacity="0.25"/><path d="M32.82,33.38a3,3,0,1,1-3-3A3,3,0,0,1,32.82,33.38Z" fill="#484f60" opacity="0.25"/><path d="M42.5,33.38a3,3,0,1,1-3-3A3,3,0,0,1,42.5,33.38Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M36.29,33.16h-4c.3.57.55,1.1.85,1.59a11.57,11.57,0,0,0,2.88,3.08.64.64,0,0,0,.36.11h1.45v1.14H20.25V38H21.6a.47.47,0,0,0,.31-.08,12.92,12.92,0,0,0,3.35-4.27l.12-.29s0-.06,0-.12l-.33,0H22.12c-.24,0-.32-.06-.31-.31,0-.48,0-1,0-1.45a.32.32,0,0,0-.28-.38,7.84,7.84,0,0,1-5-4l-.2-.42a.71.71,0,0,1,0-.12h5.47V25.26H36.29v1.25c0,.55,0,.55.52.71A8.58,8.58,0,0,1,40,29.09c-.64.47-1.24.94-1.87,1.34a14,14,0,0,1-1.59.81c-.18.09-.25.16-.25.36C36.3,32.1,36.29,32.61,36.29,33.16Z" fill="#484f60"/><path d="M23,17.88,10.86,23.32,10,21.41,22.1,16,21,12.18,23,11.25c.06,0,.19,0,.25.09q1.78,1.73,3.54,3.47a.85.85,0,0,1,.18.32c.44,1.44.87,2.88,1.31,4.31.07.22,0,.31-.17.41-1,.41-1.9.84-2.85,1.28-.21.1-.3.05-.42-.14-.56-.93-1.13-1.85-1.7-2.78C23.1,18.11,23,18,23,17.88Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M12,12.17H38v26H12ZM36.76,13.4H13.24V36.93H36.76Z" fill="#484f60"/><polygon points="33.71 23.42 28.41 23.42 28.41 20.43 24.13 24.72 28.41 29.01 28.41 26.02 33.71 26.02 33.71 23.42" fill="#484f60"/><rect x="12" y="12.17" width="9" height="26" 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 50 50">
2
+ <path d="M311.1,407.5H286.9a1.9,1.9,0,0,0-1.9,1.9v23.2a1.9,1.9,0,0,0,1.9,1.9h24.1a1.9,1.9,0,0,0,1.9-1.9V409.4A1.9,1.9,0,0,0,311.1,407.5Zm-16.4,21.2h-2.4v2.9h-2.9v-2.9h-2.4v-4.8h2.4V411.3h2.9v12.6h2.4v4.8Zm8.2-9.7h-2.4v12.6h-2.9V419.1h-2.4v-4.8h2.4v-2.9h2.9v2.9h2.4v4.8Zm8.2,6.8h-2.4v5.8h-2.9v-5.8h-2.4V421h2.4v-9.7h2.9V421h2.4v4.8Z"
3
+ transform="translate(-274 -396)" fill="#fff"/>
4
+ <rect x="14.4" y="29.3" width="4.8" height="1.93" fill="#fff"/>
5
+ <rect x="22.6" y="19.7" width="4.8" height="1.93" fill="#fff"/>
6
+ <rect x="30.8" y="26.5" width="4.8" height="1.93" fill="#fff"/>
7
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><rect x="12.5" y="12.67" width="7" height="7" fill="#484f60"/><rect x="12.5" y="21.67" width="7" height="7" fill="#484f60"/><rect x="12.5" y="30.67" width="7" height="7" fill="#484f60"/><rect x="21.5" y="12.67" width="7" height="7" fill="#484f60"/><rect x="21.5" y="21.67" width="7" height="7" fill="#484f60"/><rect x="21.5" y="30.67" width="7" height="7" fill="#484f60"/><rect x="30.5" y="12.67" width="7" height="7" fill="#484f60"/><rect x="30.5" y="21.67" width="7" height="7" fill="#484f60"/><rect x="30.5" y="30.67" width="7" height="7" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M31.37,36.19,16.72,26.61a.48.48,0,0,1-.23-.42V23.81a.48.48,0,0,1,.23-.42l14.65-9.58a.5.5,0,0,1,.69.14l1.37,2.1a.49.49,0,0,1-.15.69l-12,7.84a.5.5,0,0,0,0,.84l12,7.84a.49.49,0,0,1,.15.69l-1.37,2.1A.5.5,0,0,1,31.37,36.19Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="21.99 31.3 21.99 12.67 17.86 12.67 17.86 31.3 17.86 31.3 13.56 31.3 19.93 37.67 26.29 31.3 21.99 31.3" fill="#484f60"/><path d="M31.29,15.17a7.34,7.34,0,0,0,1.28-.65,5.12,5.12,0,0,0,1.14-1h.77v8H33.4V15a2.71,2.71,0,0,1-.34.26c-.13.09-.28.18-.44.27l-.49.24-.51.2Z" fill="#484f60"/><path d="M36.18,30.88a2,2,0,0,1-.17.79,3.74,3.74,0,0,1-.43.74,6.66,6.66,0,0,1-.61.72l-.68.7c-.13.12-.27.27-.44.45a6.17,6.17,0,0,0-.48.54,4.94,4.94,0,0,0-.38.54.92.92,0,0,0-.15.45h3.6v.89H31.7a.57.57,0,0,1,0-.13v-.13a2.62,2.62,0,0,1,.17-1,4,4,0,0,1,.46-.87,6.51,6.51,0,0,1,.63-.76c.23-.24.46-.48.69-.7s.37-.36.53-.54.32-.35.46-.53a2.75,2.75,0,0,0,.31-.55,1.45,1.45,0,0,0,.12-.59,1.43,1.43,0,0,0-.11-.58,1.15,1.15,0,0,0-.28-.4,1.37,1.37,0,0,0-.43-.23,1.7,1.7,0,0,0-.51-.07,1.89,1.89,0,0,0-.6.09,2.67,2.67,0,0,0-.48.21,1.83,1.83,0,0,0-.37.25l-.22.2-.52-.75a2.92,2.92,0,0,1,.3-.28,3.18,3.18,0,0,1,.49-.31,3.59,3.59,0,0,1,.63-.24,3.07,3.07,0,0,1,2.6.46A2.09,2.09,0,0,1,36.18,30.88Z" fill="#484f60"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="26.29 19.03 19.93 12.67 13.56 19.03 17.86 19.03 17.86 37.67 21.99 37.67 21.99 19.03 21.99 19.03 26.29 19.03" fill="#484f60"/><path d="M36.18,15.75a2,2,0,0,1-.17.79,3.74,3.74,0,0,1-.43.74A6.66,6.66,0,0,1,35,18l-.68.7c-.13.12-.27.27-.44.45a6.17,6.17,0,0,0-.48.54,4.94,4.94,0,0,0-.38.54.92.92,0,0,0-.15.45h3.6v.89H31.7a.57.57,0,0,1,0-.13v-.13a2.62,2.62,0,0,1,.17-1,4,4,0,0,1,.46-.87A6.51,6.51,0,0,1,33,18.7c.23-.24.46-.48.69-.7s.37-.36.53-.54.32-.35.46-.53a2.75,2.75,0,0,0,.31-.55,1.46,1.46,0,0,0,.12-.6,1.41,1.41,0,0,0-.11-.57,1.15,1.15,0,0,0-.28-.4,1.37,1.37,0,0,0-.43-.23,1.7,1.7,0,0,0-.51-.07,1.89,1.89,0,0,0-.6.09,2.67,2.67,0,0,0-.48.21,1.83,1.83,0,0,0-.37.25l-.22.19-.52-.74a2.92,2.92,0,0,1,.3-.28,3.18,3.18,0,0,1,.49-.31,3.59,3.59,0,0,1,.63-.24,3.07,3.07,0,0,1,2.6.46A2.09,2.09,0,0,1,36.18,15.75Z" fill="#484f60"/><path d="M31.29,30.41a7.34,7.34,0,0,0,1.28-.65,5.12,5.12,0,0,0,1.14-1h.77v8H33.4V30.25a4.61,4.61,0,0,1-.78.53c-.15.08-.32.17-.49.24l-.51.2Z" fill="#484f60"/></svg>
@@ -0,0 +1,6 @@
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,399a14,14,0,1,1,14-14,14,14,0,0,1-14,14m0,1a15,15,0,1,0-15-15,15,15,0,0,0,15,15Z" transform="translate(-658 -359)"
3
+ fill="#4d5050"/>
4
+ <path d="M685.23,390.55a2.32,2.32,0,0,0-2.46,0l-3.1,2.16c-.68.47-1,.21-.8-.58l1.09-3.61a2.32,2.32,0,0,0-.76-2.34l-3-2.28c-.66-.5-.52-.92.3-.94l3.78-.08a2.32,2.32,0,0,0,2-1.45l1.24-3.57c.27-.78.71-.78,1,0l1.24,3.57a2.32,2.32,0,0,0,2,1.45l3.78.08c.82,0,1,.44.3.94l-3,2.28a2.32,2.32,0,0,0-.76,2.34l1.09,3.61c.24.79-.12,1.05-.8.58Z"
5
+ transform="translate(-658 -359)" fill="#4d5050"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><polygon points="23.22 32.18 26 28.64 28.55 32.46 34.59 22.19 40 22.19 28.59 40 23.22 32.18" fill="#484f60"/><path d="M22.74,30.36H12.14V28.21H24.43l1.66-2.12,2.38,3.55.82-1.39V10H10V40h7.5V33.57h4.29V40h5l-5.41-7.88ZM12.14,12.14h15v2.15h-15Zm0,5.36h15v2.14h-15Zm0,5.36h15V25h-15Z" fill="#484f60" opacity="0.5"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,10c3.83,0,6.93,2.72,6.93,5.76s-3.1,6.48-6.93,6.48-6.94-3.43-6.94-6.48S21.17,10,25,10Z" fill="#484f60"/><path d="M35.26,30.14c-.62-2.17-1.08-4.39-1.79-6.53a3.82,3.82,0,0,0-1.61-1.95l-.58-.28c-1.37,1.78-3.9,3.72-6.28,3.72s-5.17-2.14-6.49-4A3,3,0,0,0,16.75,23c-.92,2.84-1.49,5.81-2.16,8.74a1.9,1.9,0,0,0,.81,2c1,.77,2,1.47,3.19,2.28-.44,1.33-.88,2.69-1.32,4h16c-.29-.93-.58-1.86-.86-2.79-.49-1.57-.52-1.62.87-2.46A3.7,3.7,0,0,0,35.26,30.14Zm-4.2,1A7.8,7.8,0,0,1,30,32a7.15,7.15,0,0,1-1.13.59,6,6,0,0,1-.59.22,8.53,8.53,0,0,1-1.26.27h0a9.48,9.48,0,0,1-1.6,0,15.15,15.15,0,0,1-1.65-.19,1.91,1.91,0,0,1-.44-.15c-.43-.22-.87-.6-1.47-1a3.64,3.64,0,0,1-1,0,2.7,2.7,0,0,1-.49-.12,2.32,2.32,0,0,1-.87-.53,3,3,0,0,1-.81-1.64,2.49,2.49,0,0,1,.68-2.18,2.57,2.57,0,0,1,1.2-.73,2.33,2.33,0,0,1,1.55.05,3.69,3.69,0,0,1,1.86,2.36,2.62,2.62,0,0,1,1.66-.48,3.88,3.88,0,0,1,.75.11,8.29,8.29,0,0,1,.93.29l1.85.71L30,30c.4.16.81.34,1.26.54l.24.1C31.38,30.85,31.23,31,31.06,31.17Z" fill="#484f60"/><path d="M20.32,31.72a2.32,2.32,0,0,1-.87-.53A2.32,2.32,0,0,0,20.32,31.72Z" fill="#484f60"/><path d="M31.54,30.67c-.16.18-.31.34-.48.5.17-.16.32-.32.48-.5l-.24-.1Z" fill="#484f60"/><path d="M25.41,33.11a9.48,9.48,0,0,0,1.6,0A9.48,9.48,0,0,1,25.41,33.11Z" fill="#484f60"/><path d="M20.81,31.84a3.64,3.64,0,0,0,1,0c.6.36,1,.74,1.47,1-.43-.22-.87-.6-1.47-1A3.64,3.64,0,0,1,20.81,31.84Z" fill="#484f60"/><path d="M29.12,29.68,27.27,29a8.29,8.29,0,0,0-.93-.29,8.29,8.29,0,0,1,.93.29Z" fill="#484f60"/><path d="M23.93,29.05h0a3.69,3.69,0,0,0-1.86-2.36A3.69,3.69,0,0,1,23.93,29.05Z" fill="#484f60"/></svg>