@colijnit/corecomponents_v12 254.1.10 → 255.1.1

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 (1290) hide show
  1. package/.browserslistrc +17 -0
  2. package/.editorconfig +16 -0
  3. package/.idea/CoreComponents_v12.iml +12 -0
  4. package/.idea/jpa-buddy.xml +6 -0
  5. package/.idea/misc.xml +9 -0
  6. package/.idea/modules.xml +8 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/CoreComponents_v12.iml +12 -0
  9. package/README.md +12 -9
  10. package/angular.json +146 -0
  11. package/dist/corecomponentstest/favicon.ico +0 -0
  12. package/dist/corecomponentstest/index.html +13 -0
  13. package/dist/corecomponentstest/main.js +24644 -0
  14. package/dist/corecomponentstest/main.js.map +1 -0
  15. package/dist/corecomponentstest/polyfills.js +2891 -0
  16. package/dist/corecomponentstest/polyfills.js.map +1 -0
  17. package/dist/corecomponentstest/runtime.js +161 -0
  18. package/dist/corecomponentstest/runtime.js.map +1 -0
  19. package/dist/corecomponentstest/styles.css +3075 -0
  20. package/dist/corecomponentstest/styles.css.map +1 -0
  21. package/dist/corecomponentstest/vendor.js +147126 -0
  22. package/dist/corecomponentstest/vendor.js.map +1 -0
  23. package/karma.conf.js +44 -0
  24. package/move-assets.js +14 -0
  25. package/package.json +44 -23
  26. package/projects/corecomponents/README.md +24 -0
  27. package/projects/corecomponents/karma.conf.js +44 -0
  28. package/projects/corecomponents/ng-package.json +10 -0
  29. package/projects/corecomponents/package-lock.json +13 -0
  30. package/projects/corecomponents/package.json +20 -0
  31. package/projects/corecomponents/src/lib/components/article-tile/article-tile.component.ts +96 -0
  32. package/projects/corecomponents/src/lib/components/article-tile/article-tile.module.ts +34 -0
  33. package/projects/corecomponents/src/lib/components/base/base-input.component.ts +988 -0
  34. package/projects/corecomponents/src/lib/components/base/base.module.ts +22 -0
  35. package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.component.ts +120 -0
  36. package/projects/corecomponents/src/lib/components/base/commit-buttons/commit-buttons.module.ts +19 -0
  37. package/projects/corecomponents/src/lib/components/base/dialog-base.component.ts +8 -0
  38. package/projects/corecomponents/src/lib/components/base-input-date-picker/base-input-date-picker.directive.ts +32 -0
  39. package/projects/corecomponents/src/lib/components/base-input-time/base-input-time-directive.ts +31 -0
  40. package/projects/corecomponents/src/lib/components/button/button.component.ts +117 -0
  41. package/projects/corecomponents/src/lib/components/button/button.module.ts +18 -0
  42. package/projects/corecomponents/src/lib/components/calendar/calendar-template.component.ts +392 -0
  43. package/projects/corecomponents/src/lib/components/calendar/calendar.component.ts +54 -0
  44. package/projects/corecomponents/src/lib/components/calendar/calendar.module.ts +26 -0
  45. package/projects/corecomponents/src/lib/components/card/card.component.ts +94 -0
  46. package/projects/corecomponents/src/lib/components/card/card.module.ts +34 -0
  47. package/projects/corecomponents/src/lib/components/carousel/carousel.component.ts +128 -0
  48. package/projects/corecomponents/src/lib/components/carousel/carousel.module.ts +28 -0
  49. package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.component.ts +392 -0
  50. package/projects/corecomponents/src/lib/components/carousel-3d/carousel-3d.module.ts +17 -0
  51. package/projects/corecomponents/src/lib/components/carousel-3d/carouselItem.ts +77 -0
  52. package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.component.ts +99 -0
  53. package/projects/corecomponents/src/lib/components/checkmark-overlay/checkmark-overlay.module.ts +18 -0
  54. package/projects/corecomponents/src/lib/components/co-dialog/animation.ts +2 -0
  55. package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.component.ts +130 -0
  56. package/projects/corecomponents/src/lib/components/co-dialog/co-dialog.module.ts +17 -0
  57. package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.component.ts +50 -0
  58. package/projects/corecomponents/src/lib/components/co-dialog-wizard/co-dialog-wizard.module.ts +15 -0
  59. package/projects/corecomponents/src/lib/components/collapsible/collapsible.component.ts +114 -0
  60. package/projects/corecomponents/src/lib/components/collapsible/collapsible.module.ts +17 -0
  61. package/projects/corecomponents/src/lib/components/color-picker/color-picker.component.ts +40 -0
  62. package/projects/corecomponents/src/lib/components/color-picker/color-picker.module.ts +19 -0
  63. package/projects/corecomponents/src/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.ts +86 -0
  64. package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.module.ts +37 -0
  65. package/projects/corecomponents/src/lib/components/core-dialog/core-dialog.service.ts +61 -0
  66. package/projects/corecomponents/src/lib/components/core-dialog/core-dynamic-component.service.ts +101 -0
  67. package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.component.ts +102 -0
  68. package/projects/corecomponents/src/lib/components/double-calendar/double-calendar.module.ts +23 -0
  69. package/projects/corecomponents/src/lib/components/filter-item/filter-item-viewmodel.ts +20 -0
  70. package/projects/corecomponents/src/lib/components/filter-item/filter-item.component.ts +715 -0
  71. package/projects/corecomponents/src/lib/components/filter-item/filter-item.module.ts +42 -0
  72. package/projects/corecomponents/src/lib/components/filter-item/filter-viewmodel.ts +11 -0
  73. package/projects/corecomponents/src/lib/components/form/form.component.ts +211 -0
  74. package/projects/corecomponents/src/lib/components/form/form.module.ts +22 -0
  75. package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.component.ts +62 -0
  76. package/projects/corecomponents/src/lib/components/grid-toolbar/grid-toolbar.module.ts +21 -0
  77. package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.component.ts +28 -0
  78. package/projects/corecomponents/src/lib/components/grid-toolbar-button/grid-toolbar-button.module.ts +17 -0
  79. package/projects/corecomponents/src/lib/components/icon/icon-cache.service.ts +57 -0
  80. package/projects/corecomponents/src/lib/components/icon/icon.component.ts +54 -0
  81. package/projects/corecomponents/src/lib/components/icon/icon.module.ts +24 -0
  82. package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.component.ts +75 -0
  83. package/projects/corecomponents/src/lib/components/icon-collapse-handle/icon-collapse-handle.module.ts +21 -0
  84. package/projects/corecomponents/src/lib/components/image/image.component.ts +51 -0
  85. package/projects/corecomponents/src/lib/components/image/image.module.ts +12 -0
  86. package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.component.ts +85 -0
  87. package/projects/corecomponents/src/lib/components/input-checkbox/input-checkbox.module.ts +17 -0
  88. package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.component.ts +103 -0
  89. package/projects/corecomponents/src/lib/components/input-date-picker/input-date-picker.module.ts +24 -0
  90. package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.component.ts +155 -0
  91. package/projects/corecomponents/src/lib/components/input-date-range-picker/input-date-range-picker.module.ts +25 -0
  92. package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.component.ts +378 -0
  93. package/projects/corecomponents/src/lib/components/input-number-picker/input-number-picker.module.ts +20 -0
  94. package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.component.ts +86 -0
  95. package/projects/corecomponents/src/lib/components/input-radio-button/input-radio-button.module.ts +17 -0
  96. package/projects/corecomponents/src/lib/components/input-scanner/bar-code-scanner.ts +25 -0
  97. package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.component.ts +89 -0
  98. package/projects/corecomponents/src/lib/components/input-scanner/input-scanner.module.ts +19 -0
  99. package/projects/corecomponents/src/lib/components/input-scanner/scanner.service.ts +28 -0
  100. package/projects/corecomponents/src/lib/components/input-search/input-search.component.ts +90 -0
  101. package/projects/corecomponents/src/lib/components/input-search/input-search.module.ts +20 -0
  102. package/projects/corecomponents/src/lib/components/input-text/input-text.component.ts +307 -0
  103. package/projects/corecomponents/src/lib/components/input-text/input-text.module.ts +31 -0
  104. package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.component.ts +81 -0
  105. package/projects/corecomponents/src/lib/components/input-textarea/input-textarea.module.ts +25 -0
  106. package/projects/corecomponents/src/lib/components/input-time/input-time.component.ts +72 -0
  107. package/projects/corecomponents/src/lib/components/input-time/input-time.module.ts +22 -0
  108. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator-level.enum.ts +5 -0
  109. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.component.ts +42 -0
  110. package/projects/corecomponents/src/lib/components/level-indicator/level-indicator.module.ts +13 -0
  111. package/projects/corecomponents/src/lib/components/list-of-icons/list-of-icons.component.ts +68 -0
  112. package/projects/corecomponents/src/lib/components/list-of-icons/list-of-icons.module.ts +22 -0
  113. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-multiselect-popup.component.ts +132 -0
  114. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values-popup.component.ts +291 -0
  115. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.component.ts +257 -0
  116. package/projects/corecomponents/src/lib/components/list-of-values/list-of-values.module.ts +35 -0
  117. package/projects/corecomponents/src/lib/components/loader/loader.component.ts +82 -0
  118. package/projects/corecomponents/src/lib/components/loader/loader.module.ts +17 -0
  119. package/projects/corecomponents/src/lib/components/pagination/paginate.pipe.ts +116 -0
  120. package/projects/corecomponents/src/lib/components/pagination/pagination-instance.ts +18 -0
  121. package/projects/corecomponents/src/lib/components/pagination/pagination.component.ts +160 -0
  122. package/projects/corecomponents/src/lib/components/pagination/pagination.module.ts +26 -0
  123. package/projects/corecomponents/src/lib/components/pagination/pagination.service.ts +99 -0
  124. package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.component.ts +178 -0
  125. package/projects/corecomponents/src/lib/components/pagination-bar/pagination-bar.module.ts +17 -0
  126. package/projects/corecomponents/src/lib/components/popup/const/popup-window-token.ts +4 -0
  127. package/projects/corecomponents/src/lib/components/popup/interface/popup-button.ts +14 -0
  128. package/projects/corecomponents/src/lib/components/popup/interface/popup-close-event.ts +8 -0
  129. package/projects/corecomponents/src/lib/components/popup/interface/popup-settings.ts +70 -0
  130. package/projects/corecomponents/src/lib/components/popup/interface/popup.ts +17 -0
  131. package/projects/corecomponents/src/lib/components/popup/model/popup-button-globals.ts +11 -0
  132. package/projects/corecomponents/src/lib/components/popup/model/popup-window.ts +51 -0
  133. package/projects/corecomponents/src/lib/components/popup/popup-buttons.component.ts +61 -0
  134. package/projects/corecomponents/src/lib/components/popup/popup-message-display.component.ts +49 -0
  135. package/projects/corecomponents/src/lib/components/popup/popup-window-shell.component.ts +222 -0
  136. package/projects/corecomponents/src/lib/components/popup/popup.module.ts +48 -0
  137. package/projects/corecomponents/src/lib/components/popup/service/popup-shower.service.ts +98 -0
  138. package/projects/corecomponents/src/lib/components/popup/service/prompt.service.ts +127 -0
  139. package/projects/corecomponents/src/lib/components/popup/text-input-popup.component.ts +36 -0
  140. package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.component.ts +24 -0
  141. package/projects/corecomponents/src/lib/components/responsive-text/responsive-text.module.ts +17 -0
  142. package/projects/corecomponents/src/lib/components/simple-grid/base-simple-grid.component.ts +196 -0
  143. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-cell.component.ts +192 -0
  144. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid-column.directive.ts +146 -0
  145. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.component.ts +645 -0
  146. package/projects/corecomponents/src/lib/components/simple-grid/simple-grid.module.ts +42 -0
  147. package/projects/corecomponents/src/lib/components/tile/tile.component.ts +71 -0
  148. package/projects/corecomponents/src/lib/components/tile/tile.module.ts +21 -0
  149. package/projects/corecomponents/src/lib/components/tile-select/tile-select.component.ts +36 -0
  150. package/projects/corecomponents/src/lib/components/tile-select/tile-select.module.ts +19 -0
  151. package/projects/corecomponents/src/lib/components/tooltip/tooltip.component.ts +96 -0
  152. package/projects/corecomponents/src/lib/components/tooltip/tooltip.module.ts +17 -0
  153. package/projects/corecomponents/src/lib/components/validation-error/validation-error.component.ts +45 -0
  154. package/projects/corecomponents/src/lib/components/validation-error/validation-error.module.ts +24 -0
  155. package/projects/corecomponents/src/lib/components/view-mode-buttons/content-view-mode.enum.ts +9 -0
  156. package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.component.ts +63 -0
  157. package/projects/corecomponents/src/lib/components/view-mode-buttons/view-mode-buttons.module.ts +19 -0
  158. package/projects/corecomponents/src/lib/core/abstract/collection-based-component.ts +488 -0
  159. package/projects/corecomponents/src/lib/core/config/device-environment.ts +26 -0
  160. package/projects/corecomponents/src/lib/core/constant/default-upper-bound-for-range-components.ts +4 -0
  161. package/projects/corecomponents/src/lib/core/constant/java-max-int.ts +1 -0
  162. package/projects/corecomponents/src/lib/core/constant/number-inputs-key-down-white-list.ts +46 -0
  163. package/projects/corecomponents/src/lib/core/decorator/input-boolean.decorator.ts +35 -0
  164. package/projects/corecomponents/src/lib/core/enum/co-direction.ts +7 -0
  165. package/projects/corecomponents/src/lib/core/enum/co-document-image-display-kind.enum.ts +5 -0
  166. package/projects/corecomponents/src/lib/core/enum/co-document-type.enum.ts +9 -0
  167. package/projects/corecomponents/src/lib/core/enum/co-orientation.ts +18 -0
  168. package/projects/corecomponents/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +10 -0
  169. package/projects/corecomponents/src/lib/core/enum/color-sequence-name.enum.ts +5 -0
  170. package/projects/corecomponents/src/lib/core/enum/core-components-icon.enum.ts +299 -0
  171. package/projects/corecomponents/src/lib/core/enum/file-type-internal.enum.ts +15 -0
  172. package/projects/corecomponents/src/lib/core/enum/file-type.enum.ts +9 -0
  173. package/projects/corecomponents/src/lib/core/enum/filterItem-mode.enum.ts +57 -0
  174. package/projects/corecomponents/src/lib/core/enum/float-label-type.enum.ts +5 -0
  175. package/projects/corecomponents/src/lib/core/enum/input-number-picker-show-mode.enum.ts +6 -0
  176. package/projects/corecomponents/src/lib/core/enum/input-text-type.enum.ts +4 -0
  177. package/projects/corecomponents/src/lib/core/enum/keyboard-code.enum.ts +72 -0
  178. package/projects/corecomponents/src/lib/core/enum/keyboard-key.enum.ts +78 -0
  179. package/projects/corecomponents/src/lib/core/enum/logical-operator-type.enum.ts +5 -0
  180. package/projects/corecomponents/src/lib/core/enum/object-right-type.enum.ts +5 -0
  181. package/projects/corecomponents/src/lib/core/enum/popup-button-type.enum.ts +10 -0
  182. package/projects/corecomponents/src/lib/core/enum/popup-type.enum.ts +9 -0
  183. package/projects/corecomponents/src/lib/core/enum/schedule-view.enum.ts +14 -0
  184. package/projects/corecomponents/src/lib/core/enum/search-data-type.ts +4 -0
  185. package/projects/corecomponents/src/lib/core/enum/search-property-state.ts +5 -0
  186. package/projects/corecomponents/src/lib/core/enum/sort-data-type.ts +6 -0
  187. package/projects/corecomponents/src/lib/core/enum/sort-direction.ts +9 -0
  188. package/projects/corecomponents/src/lib/core/enum/table-name.enum.ts +79 -0
  189. package/projects/corecomponents/src/lib/core/enum/value-comparison-type.ts +11 -0
  190. package/projects/corecomponents/src/lib/core/function/any-nill.function.ts +6 -0
  191. package/projects/corecomponents/src/lib/core/function/is-nill.function.ts +4 -0
  192. package/projects/corecomponents/src/lib/core/function/none-nill.function.ts +16 -0
  193. package/projects/corecomponents/src/lib/core/function/not-nill.function.ts +4 -0
  194. package/projects/corecomponents/src/lib/core/interface/search-property.ts +15 -0
  195. package/projects/corecomponents/src/lib/core/interface/sort-property.ts +16 -0
  196. package/projects/corecomponents/src/lib/core/model/bounds-constrained-number-value.ts +222 -0
  197. package/projects/corecomponents/src/lib/core/model/check-precision-and-scale-result.ts +5 -0
  198. package/projects/corecomponents/src/lib/core/model/check-within-stepped-bounds-result.ts +8 -0
  199. package/projects/corecomponents/src/lib/core/model/co-document-right.bo.ts +9 -0
  200. package/projects/corecomponents/src/lib/core/model/co-document.bo.ts +193 -0
  201. package/projects/corecomponents/src/lib/core/model/color-sequence.ts +39 -0
  202. package/projects/corecomponents/src/lib/core/model/color.ts +29 -0
  203. package/projects/corecomponents/src/lib/core/model/core-components-icon-svg.ts +299 -0
  204. package/projects/corecomponents/src/lib/core/model/element-position.ts +14 -0
  205. package/projects/corecomponents/src/lib/core/model/event/number-prompt-result-event.ts +10 -0
  206. package/projects/corecomponents/src/lib/core/model/event/string-prompt-result-event.ts +10 -0
  207. package/projects/corecomponents/src/lib/core/model/numerical-range.ts +19 -0
  208. package/projects/corecomponents/src/lib/core/service/form-input-user-change-listener.service.ts +31 -0
  209. package/projects/corecomponents/src/lib/core/service/form-master.service.ts +119 -0
  210. package/projects/corecomponents/src/lib/core/service/ng-zone-wrapper.service.ts +15 -0
  211. package/projects/corecomponents/src/lib/core/utils/array-utils.spec.ts +588 -0
  212. package/projects/corecomponents/src/lib/core/utils/array-utils.ts +301 -0
  213. package/projects/corecomponents/src/lib/core/utils/browser-utils.ts +123 -0
  214. package/projects/corecomponents/src/lib/core/utils/business-object-utils.ts +42 -0
  215. package/projects/corecomponents/src/lib/core/utils/css-utils.ts +276 -0
  216. package/projects/corecomponents/src/lib/core/utils/direction-enum-utils.ts +15 -0
  217. package/projects/corecomponents/src/lib/core/utils/element-ref.utils.ts +12 -0
  218. package/projects/corecomponents/src/lib/core/utils/event-utils.ts +61 -0
  219. package/projects/corecomponents/src/lib/core/utils/file-utils.ts +291 -0
  220. package/projects/corecomponents/src/lib/core/utils/number-utils.spec.ts +657 -0
  221. package/projects/corecomponents/src/lib/core/utils/number-utils.ts +350 -0
  222. package/projects/corecomponents/src/lib/core/utils/object-utils.ts +205 -0
  223. package/projects/corecomponents/src/lib/core/utils/parameter-value-conversion-utils.ts +116 -0
  224. package/projects/corecomponents/src/lib/core/utils/search-utils.ts +121 -0
  225. package/projects/corecomponents/src/lib/core/utils/sort-utils.ts +108 -0
  226. package/projects/corecomponents/src/lib/core/utils/string-utils.ts +100 -0
  227. package/projects/corecomponents/src/lib/core/validator/email.validator.ts +10 -0
  228. package/projects/corecomponents/src/lib/core/validator/equal.validator.ts +14 -0
  229. package/projects/corecomponents/src/lib/core/validator/max-string-length.validator.ts +11 -0
  230. package/projects/corecomponents/src/lib/core/validator/password.validator.ts +35 -0
  231. package/projects/corecomponents/src/lib/core/validator/precision-scale.validator.ts +14 -0
  232. package/projects/corecomponents/src/lib/core/validator/required.validator.ts +9 -0
  233. package/projects/corecomponents/src/lib/directives/align-with/align-with.directive.ts +158 -0
  234. package/projects/corecomponents/src/lib/directives/align-with/align-with.module.ts +13 -0
  235. package/projects/corecomponents/src/lib/directives/clickoutside/click-outside-master.service.ts +64 -0
  236. package/projects/corecomponents/src/lib/directives/clickoutside/click-outside.directive.ts +72 -0
  237. package/projects/corecomponents/src/lib/directives/clickoutside/clickoutside.module.ts +17 -0
  238. package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.directive.ts +55 -0
  239. package/projects/corecomponents/src/lib/directives/observe-visibility/observe-visibility.module.ts +13 -0
  240. package/projects/corecomponents/src/lib/directives/overlay/overlay-parent.directive.ts +20 -0
  241. package/projects/corecomponents/src/lib/directives/overlay/overlay.directive.ts +170 -0
  242. package/projects/corecomponents/src/lib/directives/overlay/overlay.module.ts +16 -0
  243. package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.directive.ts +42 -0
  244. package/projects/corecomponents/src/lib/directives/parsevalue/parse-value.module.ts +13 -0
  245. package/projects/corecomponents/src/lib/directives/resize/resize-detect.directive.ts +54 -0
  246. package/projects/corecomponents/src/lib/directives/resize/resize-detect.module.ts +13 -0
  247. package/projects/corecomponents/src/lib/directives/ripple/ripple-ref.ts +28 -0
  248. package/projects/corecomponents/src/lib/directives/ripple/ripple-renderer.ts +217 -0
  249. package/projects/corecomponents/src/lib/directives/ripple/ripple.directive.ts +116 -0
  250. package/projects/corecomponents/src/lib/directives/ripple/ripple.module.ts +24 -0
  251. package/projects/corecomponents/src/lib/directives/ripple/scroll-dispatcher.service.ts +129 -0
  252. package/projects/corecomponents/src/lib/directives/ripple/scrollable.directive.ts +37 -0
  253. package/projects/corecomponents/src/lib/directives/ripple/viewport-ruler.service.ts +84 -0
  254. package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.directive.ts +170 -0
  255. package/projects/corecomponents/src/lib/directives/screen-configuration/screen-configuration.module.ts +16 -0
  256. package/projects/corecomponents/src/lib/directives/stopclick/stop-click.directive.ts +35 -0
  257. package/projects/corecomponents/src/lib/directives/stopclick/stop-click.module.ts +14 -0
  258. package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.directive.ts +71 -0
  259. package/projects/corecomponents/src/lib/directives/template-wrapper/template-wrapper.module.ts +13 -0
  260. package/projects/corecomponents/src/lib/directives/tooltip/tooltip-directive.module.ts +17 -0
  261. package/projects/corecomponents/src/lib/directives/tooltip/tooltip.directive.ts +94 -0
  262. package/projects/corecomponents/src/lib/interfaces/dialog-response.interface.ts +7 -0
  263. package/projects/corecomponents/src/lib/interfaces/lov-options.component.interface.ts +4 -0
  264. package/projects/corecomponents/src/lib/interfaces/screen-config-adapter-component-interface-name.ts +6 -0
  265. package/projects/corecomponents/src/lib/interfaces/screen-config-adapter.component.interface.ts +10 -0
  266. package/projects/corecomponents/src/lib/model/data-item.ts +9 -0
  267. package/projects/corecomponents/src/lib/model/enum/app-button-type.enum.ts +9 -0
  268. package/projects/corecomponents/src/lib/model/enum/app-popup-type.enum.ts +6 -0
  269. package/projects/corecomponents/src/lib/model/enum/currency-code.enum.ts +7 -0
  270. package/projects/corecomponents/src/lib/model/enum/language-code.enum.ts +8 -0
  271. package/projects/corecomponents/src/lib/model/icon-list-item.ts +7 -0
  272. package/projects/corecomponents/src/lib/model/map/currencies.map.ts +6 -0
  273. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.component.ts +115 -0
  274. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-container.css +34 -0
  275. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop-manager.service.ts +414 -0
  276. package/projects/corecomponents/src/lib/modules/drag-drop/drag-drop.module.ts +20 -0
  277. package/projects/corecomponents/src/lib/modules/drag-drop/draggable.directive.ts +70 -0
  278. package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drag-event.ts +5 -0
  279. package/projects/corecomponents/src/lib/modules/drag-drop/model/co-drop-event.ts +9 -0
  280. package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +7 -0
  281. package/projects/corecomponents/src/lib/modules/drag-drop/model/drag-drop-container.ts +9 -0
  282. package/projects/corecomponents/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +5 -0
  283. package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.module.ts +14 -0
  284. package/projects/corecomponents/src/lib/modules/media-monitor/media-monitor.service.ts +36 -0
  285. package/projects/corecomponents/src/lib/modules/pagination/paginate.pipe.ts +116 -0
  286. package/projects/corecomponents/src/lib/modules/pagination/pagination-instance.ts +18 -0
  287. package/projects/corecomponents/src/lib/modules/pagination/pagination.component.ts +229 -0
  288. package/projects/corecomponents/src/lib/modules/pagination/pagination.module.ts +25 -0
  289. package/projects/corecomponents/src/lib/modules/pagination/pagination.service.ts +98 -0
  290. package/projects/corecomponents/src/lib/pipes/append.pipe.module.ts +13 -0
  291. package/projects/corecomponents/src/lib/pipes/append.pipe.ts +17 -0
  292. package/projects/corecomponents/src/lib/pipes/co-currency-pipe.module.ts +13 -0
  293. package/projects/corecomponents/src/lib/pipes/co-currency.pipe.ts +45 -0
  294. package/projects/corecomponents/src/lib/pipes/emun-keys.pipe.ts +20 -0
  295. package/projects/corecomponents/src/lib/pipes/enum-keys-pipe.module.ts +13 -0
  296. package/projects/corecomponents/src/lib/pipes/file-type-image-pipe.module.ts +13 -0
  297. package/projects/corecomponents/src/lib/pipes/file-type-image.pipe.ts +45 -0
  298. package/projects/corecomponents/src/lib/pipes/filter.pipe.module.ts +13 -0
  299. package/projects/corecomponents/src/lib/pipes/filter.pipe.ts +14 -0
  300. package/projects/corecomponents/src/lib/pipes/master-pipe.module.ts +13 -0
  301. package/projects/corecomponents/src/lib/pipes/master.pipe.ts +71 -0
  302. package/projects/corecomponents/src/lib/pipes/prepend.pipe.module.ts +13 -0
  303. package/projects/corecomponents/src/lib/pipes/prepend.pipe.ts +17 -0
  304. package/projects/corecomponents/src/lib/pipes/price-display-pipe.module.ts +14 -0
  305. package/projects/corecomponents/src/lib/pipes/price-display.pipe.ts +20 -0
  306. package/projects/corecomponents/src/lib/pipes/safe-style.pipe.module.ts +13 -0
  307. package/projects/corecomponents/src/lib/pipes/safe-style.pipe.ts +14 -0
  308. package/projects/corecomponents/src/lib/pipes/ucfirst-pipe.module.ts +13 -0
  309. package/projects/corecomponents/src/lib/pipes/ucfirst.pipe.ts +14 -0
  310. package/projects/corecomponents/src/lib/service/base-module-screen-config.service.ts +241 -0
  311. package/projects/corecomponents/src/lib/service/base-module.service.ts +50 -0
  312. package/projects/corecomponents/src/lib/service/color-sequence.service.ts +50 -0
  313. package/projects/corecomponents/src/lib/service/overlay.service.ts +81 -0
  314. package/projects/corecomponents/src/lib/translation/core-components-translation.module.ts +27 -0
  315. package/projects/corecomponents/src/lib/translation/core-components-translation.service.ts +15 -0
  316. package/projects/corecomponents/src/lib/translation/core-dictionary.service.ts +27 -0
  317. package/projects/corecomponents/src/lib/translation/core-localize.pipe.ts +21 -0
  318. package/projects/corecomponents/src/public-api.ts +139 -0
  319. package/projects/corecomponents/src/res/icons/Barcode.svg +1 -0
  320. package/projects/corecomponents/src/res/icons/CashRegister.svg +1 -0
  321. package/projects/corecomponents/src/res/icons/CirclePlusSkinny.svg +1 -0
  322. package/projects/corecomponents/src/res/icons/CrossSkinny.svg +1 -0
  323. package/projects/corecomponents/src/res/icons/FolderArrow.svg +1 -0
  324. package/projects/corecomponents/src/res/icons/Home.svg +1 -0
  325. package/projects/corecomponents/src/res/icons/POS.svg +1 -0
  326. package/projects/corecomponents/src/res/icons/Shop.svg +1 -0
  327. package/projects/corecomponents/src/res/icons/SinglePerson.svg +1 -0
  328. package/projects/corecomponents/src/res/icons/Star.svg +1 -0
  329. package/projects/corecomponents/src/res/icons/TrashBin.svg +1 -0
  330. package/projects/corecomponents/src/res/icons/account.svg +1 -0
  331. package/projects/corecomponents/src/res/icons/account_round_open.svg +1 -0
  332. package/projects/corecomponents/src/res/icons/activities.svg +1 -0
  333. package/projects/corecomponents/src/res/icons/add_to_cart_drop.svg +1 -0
  334. package/projects/corecomponents/src/res/icons/arrow_down.svg +1 -0
  335. package/projects/corecomponents/src/res/icons/arrow_fat_left.svg +1 -0
  336. package/projects/corecomponents/src/res/icons/arrow_fat_right.svg +1 -0
  337. package/projects/corecomponents/src/res/icons/arrow_left.svg +4 -0
  338. package/projects/corecomponents/src/res/icons/arrow_left_round_open.svg +1 -0
  339. package/projects/corecomponents/src/res/icons/arrow_point_down.svg +6 -0
  340. package/projects/corecomponents/src/res/icons/arrow_point_left.svg +8 -0
  341. package/projects/corecomponents/src/res/icons/arrow_point_right.svg +8 -0
  342. package/projects/corecomponents/src/res/icons/arrow_point_up.svg +8 -0
  343. package/projects/corecomponents/src/res/icons/arrow_right_round_open.svg +1 -0
  344. package/projects/corecomponents/src/res/icons/arrow_scroll_down.svg +6 -0
  345. package/projects/corecomponents/src/res/icons/arrow_scroll_left.svg +22 -0
  346. package/projects/corecomponents/src/res/icons/arrow_scroll_right.svg +22 -0
  347. package/projects/corecomponents/src/res/icons/arrow_scroll_up.svg +6 -0
  348. package/projects/corecomponents/src/res/icons/arrow_up.svg +3 -0
  349. package/projects/corecomponents/src/res/icons/article.svg +1 -0
  350. package/projects/corecomponents/src/res/icons/article_with_fold.svg +1 -0
  351. package/projects/corecomponents/src/res/icons/asterisk_small.svg +1 -0
  352. package/projects/corecomponents/src/res/icons/attachments.svg +1 -0
  353. package/projects/corecomponents/src/res/icons/back_to_top.svg +1 -0
  354. package/projects/corecomponents/src/res/icons/big_mac.svg +6 -0
  355. package/projects/corecomponents/src/res/icons/boxes.svg +1 -0
  356. package/projects/corecomponents/src/res/icons/brush.svg +1 -0
  357. package/projects/corecomponents/src/res/icons/brush_round_open.svg +1 -0
  358. package/projects/corecomponents/src/res/icons/building_columns.svg +1 -0
  359. package/projects/corecomponents/src/res/icons/businessrules.svg +1 -0
  360. package/projects/corecomponents/src/res/icons/calendar.svg +1 -0
  361. package/projects/corecomponents/src/res/icons/calendar_day.svg +37 -0
  362. package/projects/corecomponents/src/res/icons/calendar_day_regular.svg +1 -0
  363. package/projects/corecomponents/src/res/icons/calendar_empty.svg +16 -0
  364. package/projects/corecomponents/src/res/icons/calendar_range.svg +1 -0
  365. package/projects/corecomponents/src/res/icons/calendar_round_open.svg +16 -0
  366. package/projects/corecomponents/src/res/icons/camera.svg +1 -0
  367. package/projects/corecomponents/src/res/icons/cancel.svg +1 -0
  368. package/projects/corecomponents/src/res/icons/cancel_round_filled.svg +1 -0
  369. package/projects/corecomponents/src/res/icons/cancel_round_open.svg +1 -0
  370. package/projects/corecomponents/src/res/icons/cart.svg +1 -0
  371. package/projects/corecomponents/src/res/icons/cart_open.svg +8 -0
  372. package/projects/corecomponents/src/res/icons/case_manager.svg +1 -0
  373. package/projects/corecomponents/src/res/icons/cash_register_simple.svg +1 -0
  374. package/projects/corecomponents/src/res/icons/change_location.svg +1 -0
  375. package/projects/corecomponents/src/res/icons/check.svg +1 -0
  376. package/projects/corecomponents/src/res/icons/check_duotone.svg +1 -0
  377. package/projects/corecomponents/src/res/icons/check_round.svg +1 -0
  378. package/projects/corecomponents/src/res/icons/check_round_open.svg +10 -0
  379. package/projects/corecomponents/src/res/icons/check_simple.svg +3 -0
  380. package/projects/corecomponents/src/res/icons/check_thin.svg +1 -0
  381. package/projects/corecomponents/src/res/icons/chevron_down_regular.svg +1 -0
  382. package/projects/corecomponents/src/res/icons/chevron_up_regular.svg +1 -0
  383. package/projects/corecomponents/src/res/icons/client.svg +1 -0
  384. package/projects/corecomponents/src/res/icons/clock.svg +1 -0
  385. package/projects/corecomponents/src/res/icons/clockArrow.svg +1 -0
  386. package/projects/corecomponents/src/res/icons/cogWheelPlus.svg +1 -0
  387. package/projects/corecomponents/src/res/icons/cogWheels.svg +1 -0
  388. package/projects/corecomponents/src/res/icons/column_options.svg +18 -0
  389. package/projects/corecomponents/src/res/icons/company.svg +1 -0
  390. package/projects/corecomponents/src/res/icons/company_flat.svg +4 -0
  391. package/projects/corecomponents/src/res/icons/configurable.svg +1 -0
  392. package/projects/corecomponents/src/res/icons/consultant.svg +1 -0
  393. package/projects/corecomponents/src/res/icons/copy.svg +1 -0
  394. package/projects/corecomponents/src/res/icons/crosshair_1.svg +1 -0
  395. package/projects/corecomponents/src/res/icons/dashboard.svg +1 -0
  396. package/projects/corecomponents/src/res/icons/delivery_method.svg +32 -0
  397. package/projects/corecomponents/src/res/icons/delivery_status_uncheck.svg +9 -0
  398. package/projects/corecomponents/src/res/icons/delivery_truck.svg +1 -0
  399. package/projects/corecomponents/src/res/icons/detail_record.svg +1 -0
  400. package/projects/corecomponents/src/res/icons/detail_view.svg +1 -0
  401. package/projects/corecomponents/src/res/icons/dictionary.svg +1 -0
  402. package/projects/corecomponents/src/res/icons/documentWrench.svg +1 -0
  403. package/projects/corecomponents/src/res/icons/documents.svg +1 -0
  404. package/projects/corecomponents/src/res/icons/dollar.svg +1 -0
  405. package/projects/corecomponents/src/res/icons/download.svg +1 -0
  406. package/projects/corecomponents/src/res/icons/dropdown.svg +4 -0
  407. package/projects/corecomponents/src/res/icons/dropzone.svg +1 -0
  408. package/projects/corecomponents/src/res/icons/edit_pencil.svg +1 -0
  409. package/projects/corecomponents/src/res/icons/edit_pencil_circle.svg +1 -0
  410. package/projects/corecomponents/src/res/icons/edit_pencil_round.svg +11 -0
  411. package/projects/corecomponents/src/res/icons/edit_pencil_simple.svg +16 -0
  412. package/projects/corecomponents/src/res/icons/email.svg +1 -0
  413. package/projects/corecomponents/src/res/icons/email_round_open.svg +6 -0
  414. package/projects/corecomponents/src/res/icons/employee.svg +1 -0
  415. package/projects/corecomponents/src/res/icons/employee_two.svg +1 -0
  416. package/projects/corecomponents/src/res/icons/employer.svg +1 -0
  417. package/projects/corecomponents/src/res/icons/employment.svg +1 -0
  418. package/projects/corecomponents/src/res/icons/employment_end.svg +7 -0
  419. package/projects/corecomponents/src/res/icons/equal.svg +1 -0
  420. package/projects/corecomponents/src/res/icons/euro.svg +1 -0
  421. package/projects/corecomponents/src/res/icons/exclamation.svg +1 -0
  422. package/projects/corecomponents/src/res/icons/exclamation_round_open.svg +1 -0
  423. package/projects/corecomponents/src/res/icons/eye_circle.svg +1 -0
  424. package/projects/corecomponents/src/res/icons/eye_circle_large.svg +1 -0
  425. package/projects/corecomponents/src/res/icons/eye_round_filled.svg +11 -0
  426. package/projects/corecomponents/src/res/icons/factory.svg +1 -0
  427. package/projects/corecomponents/src/res/icons/fasttrack.svg +1 -0
  428. package/projects/corecomponents/src/res/icons/filter.svg +1 -0
  429. package/projects/corecomponents/src/res/icons/finish.svg +1 -0
  430. package/projects/corecomponents/src/res/icons/fixed_option_value_tree.svg +1 -0
  431. package/projects/corecomponents/src/res/icons/fixed_tree_option_value.svg +1 -0
  432. package/projects/corecomponents/src/res/icons/floppy_disk_solid.svg +1 -0
  433. package/projects/corecomponents/src/res/icons/folder_arrow_in.svg +8 -0
  434. package/projects/corecomponents/src/res/icons/formula.svg +1 -0
  435. package/projects/corecomponents/src/res/icons/fullscreen.svg +6 -0
  436. package/projects/corecomponents/src/res/icons/gear_double.svg +21 -0
  437. package/projects/corecomponents/src/res/icons/global_search.svg +45 -0
  438. package/projects/corecomponents/src/res/icons/globe.svg +1 -0
  439. package/projects/corecomponents/src/res/icons/greater_than.svg +1 -0
  440. package/projects/corecomponents/src/res/icons/groupby.svg +1 -0
  441. package/projects/corecomponents/src/res/icons/hamburger.svg +1 -0
  442. package/projects/corecomponents/src/res/icons/hand_pointer.svg +1 -0
  443. package/projects/corecomponents/src/res/icons/hbarchart.svg +6 -0
  444. package/projects/corecomponents/src/res/icons/home_circle.svg +9 -0
  445. package/projects/corecomponents/src/res/icons/home_open.svg +7 -0
  446. package/projects/corecomponents/src/res/icons/home_round_open.svg +11 -0
  447. package/projects/corecomponents/src/res/icons/hourglass.svg +1 -0
  448. package/projects/corecomponents/src/res/icons/icon_3d.svg +1 -0
  449. package/projects/corecomponents/src/res/icons/id.svg +1 -0
  450. package/projects/corecomponents/src/res/icons/image.svg +1 -0
  451. package/projects/corecomponents/src/res/icons/incoming_storage.svg +1 -0
  452. package/projects/corecomponents/src/res/icons/information.svg +1 -0
  453. package/projects/corecomponents/src/res/icons/information_round_open.svg +6 -0
  454. package/projects/corecomponents/src/res/icons/input_multiplechoice.svg +1 -0
  455. package/projects/corecomponents/src/res/icons/input_text.svg +1 -0
  456. package/projects/corecomponents/src/res/icons/input_textarea.svg +1 -0
  457. package/projects/corecomponents/src/res/icons/inventory.svg +1 -0
  458. package/projects/corecomponents/src/res/icons/invoice.svg +20 -0
  459. package/projects/corecomponents/src/res/icons/ione_logo.svg +1 -0
  460. package/projects/corecomponents/src/res/icons/ione_logo_fat.svg +1 -0
  461. package/projects/corecomponents/src/res/icons/ione_status_next.svg +43 -0
  462. package/projects/corecomponents/src/res/icons/ione_workflow.svg +62 -0
  463. package/projects/corecomponents/src/res/icons/keyboard.svg +1 -0
  464. package/projects/corecomponents/src/res/icons/keychain.svg +1 -0
  465. package/projects/corecomponents/src/res/icons/label.svg +5 -0
  466. package/projects/corecomponents/src/res/icons/label_round_open.svg +6 -0
  467. package/projects/corecomponents/src/res/icons/landmark_flag.svg +1 -0
  468. package/projects/corecomponents/src/res/icons/library.svg +21 -0
  469. package/projects/corecomponents/src/res/icons/linechart.svg +1 -0
  470. package/projects/corecomponents/src/res/icons/link_circle.svg +1 -0
  471. package/projects/corecomponents/src/res/icons/linked_products.svg +1 -0
  472. package/projects/corecomponents/src/res/icons/list_view.svg +8 -0
  473. package/projects/corecomponents/src/res/icons/location.svg +1 -0
  474. package/projects/corecomponents/src/res/icons/lock.svg +1 -0
  475. package/projects/corecomponents/src/res/icons/lock_round_open.svg +8 -0
  476. package/projects/corecomponents/src/res/icons/logo.svg +1 -0
  477. package/projects/corecomponents/src/res/icons/logout.svg +1 -0
  478. package/projects/corecomponents/src/res/icons/magic_wand.svg +1 -0
  479. package/projects/corecomponents/src/res/icons/magnifier.svg +5 -0
  480. package/projects/corecomponents/src/res/icons/manager.svg +12 -0
  481. package/projects/corecomponents/src/res/icons/mask.svg +1 -0
  482. package/projects/corecomponents/src/res/icons/master_detail.svg +1 -0
  483. package/projects/corecomponents/src/res/icons/material_circle_large.svg +1 -0
  484. package/projects/corecomponents/src/res/icons/medal_bronze.svg +23 -0
  485. package/projects/corecomponents/src/res/icons/medal_gold.svg +23 -0
  486. package/projects/corecomponents/src/res/icons/medal_silver.svg +23 -0
  487. package/projects/corecomponents/src/res/icons/medical_officer.svg +14 -0
  488. package/projects/corecomponents/src/res/icons/microphone.svg +1 -0
  489. package/projects/corecomponents/src/res/icons/minus_round_open.svg +1 -0
  490. package/projects/corecomponents/src/res/icons/minus_simple.svg +1 -0
  491. package/projects/corecomponents/src/res/icons/mobile.svg +1 -0
  492. package/projects/corecomponents/src/res/icons/multi_select_check.svg +10 -0
  493. package/projects/corecomponents/src/res/icons/new_task.svg +1 -0
  494. package/projects/corecomponents/src/res/icons/not_equal.svg +4 -0
  495. package/projects/corecomponents/src/res/icons/note.svg +1 -0
  496. package/projects/corecomponents/src/res/icons/note_bordered.svg +1 -0
  497. package/projects/corecomponents/src/res/icons/notification.svg +1 -0
  498. package/projects/corecomponents/src/res/icons/option.svg +1 -0
  499. package/projects/corecomponents/src/res/icons/optionset.svg +1 -0
  500. package/projects/corecomponents/src/res/icons/order.svg +1 -0
  501. package/projects/corecomponents/src/res/icons/orderpicking.svg +1 -0
  502. package/projects/corecomponents/src/res/icons/outgoing_storage.svg +1 -0
  503. package/projects/corecomponents/src/res/icons/over_booking.svg +1 -0
  504. package/projects/corecomponents/src/res/icons/pause_circle.svg +12 -0
  505. package/projects/corecomponents/src/res/icons/pen_to_square_solid.svg +1 -0
  506. package/projects/corecomponents/src/res/icons/pencil_round_open.svg +10 -0
  507. package/projects/corecomponents/src/res/icons/phone.svg +1 -0
  508. package/projects/corecomponents/src/res/icons/phone_round_open.svg +10 -0
  509. package/projects/corecomponents/src/res/icons/piechart.svg +24 -0
  510. package/projects/corecomponents/src/res/icons/pin.svg +9 -0
  511. package/projects/corecomponents/src/res/icons/pin_round_open.svg +11 -0
  512. package/projects/corecomponents/src/res/icons/play_circle.svg +1 -0
  513. package/projects/corecomponents/src/res/icons/plus_round.svg +9 -0
  514. package/projects/corecomponents/src/res/icons/plus_round_open.svg +1 -0
  515. package/projects/corecomponents/src/res/icons/plus_simple.svg +1 -0
  516. package/projects/corecomponents/src/res/icons/plus_skinny.svg +8 -0
  517. package/projects/corecomponents/src/res/icons/plus_solid.svg +1 -0
  518. package/projects/corecomponents/src/res/icons/plus_stars.svg +1 -0
  519. package/projects/corecomponents/src/res/icons/pointer.svg +7 -0
  520. package/projects/corecomponents/src/res/icons/pointer_3d.svg +8 -0
  521. package/projects/corecomponents/src/res/icons/pointer_filled.svg +6 -0
  522. package/projects/corecomponents/src/res/icons/positioning.svg +1 -0
  523. package/projects/corecomponents/src/res/icons/pregnancy.svg +18 -0
  524. package/projects/corecomponents/src/res/icons/preset.svg +1 -0
  525. package/projects/corecomponents/src/res/icons/print.svg +1 -0
  526. package/projects/corecomponents/src/res/icons/product_properties.svg +1 -0
  527. package/projects/corecomponents/src/res/icons/purchase.svg +15 -0
  528. package/projects/corecomponents/src/res/icons/qrcode.svg +59 -0
  529. package/projects/corecomponents/src/res/icons/question.svg +1 -0
  530. package/projects/corecomponents/src/res/icons/radio_uncheck.svg +1 -0
  531. package/projects/corecomponents/src/res/icons/range.svg +1 -0
  532. package/projects/corecomponents/src/res/icons/range_select.svg +1 -0
  533. package/projects/corecomponents/src/res/icons/rectangles.svg +15 -0
  534. package/projects/corecomponents/src/res/icons/refresh.svg +1 -0
  535. package/projects/corecomponents/src/res/icons/relations.svg +20 -0
  536. package/projects/corecomponents/src/res/icons/remark.svg +1 -0
  537. package/projects/corecomponents/src/res/icons/remark_round_open.svg +6 -0
  538. package/projects/corecomponents/src/res/icons/report_in_type.svg +1 -0
  539. package/projects/corecomponents/src/res/icons/resize.svg +3 -0
  540. package/projects/corecomponents/src/res/icons/resize_down.svg +1 -0
  541. package/projects/corecomponents/src/res/icons/resize_up.svg +1 -0
  542. package/projects/corecomponents/src/res/icons/return_goods.svg +4 -0
  543. package/projects/corecomponents/src/res/icons/returns.svg +1 -0
  544. package/projects/corecomponents/src/res/icons/rotate_left_solid.svg +1 -0
  545. package/projects/corecomponents/src/res/icons/save_disk.svg +15 -0
  546. package/projects/corecomponents/src/res/icons/save_skinny.svg +3 -0
  547. package/projects/corecomponents/src/res/icons/scale_balanced.svg +1 -0
  548. package/projects/corecomponents/src/res/icons/scanner.svg +1 -0
  549. package/projects/corecomponents/src/res/icons/search_round_open.svg +9 -0
  550. package/projects/corecomponents/src/res/icons/sections.svg +1 -0
  551. package/projects/corecomponents/src/res/icons/select_all_round.svg +5 -0
  552. package/projects/corecomponents/src/res/icons/services.svg +1 -0
  553. package/projects/corecomponents/src/res/icons/settings.svg +20 -0
  554. package/projects/corecomponents/src/res/icons/shopping_cart.svg +1 -0
  555. package/projects/corecomponents/src/res/icons/shopping_cart_nr.svg +1 -0
  556. package/projects/corecomponents/src/res/icons/shortcut.svg +1 -0
  557. package/projects/corecomponents/src/res/icons/skills.svg +1 -0
  558. package/projects/corecomponents/src/res/icons/slide_in.svg +1 -0
  559. package/projects/corecomponents/src/res/icons/slider_panel.svg +7 -0
  560. package/projects/corecomponents/src/res/icons/small_tiles.svg +1 -0
  561. package/projects/corecomponents/src/res/icons/smaller_than.svg +1 -0
  562. package/projects/corecomponents/src/res/icons/sort_asc.svg +1 -0
  563. package/projects/corecomponents/src/res/icons/sort_desc.svg +1 -0
  564. package/projects/corecomponents/src/res/icons/star_round_open.svg +6 -0
  565. package/projects/corecomponents/src/res/icons/status_active.svg +1 -0
  566. package/projects/corecomponents/src/res/icons/status_adoption.svg +1 -0
  567. package/projects/corecomponents/src/res/icons/status_fostercare.svg +1 -0
  568. package/projects/corecomponents/src/res/icons/status_ill.svg +10 -0
  569. package/projects/corecomponents/src/res/icons/status_leave.svg +1 -0
  570. package/projects/corecomponents/src/res/icons/status_pregnancy.svg +10 -0
  571. package/projects/corecomponents/src/res/icons/stock.svg +1 -0
  572. package/projects/corecomponents/src/res/icons/stock_management.svg +25 -0
  573. package/projects/corecomponents/src/res/icons/storage.svg +1 -0
  574. package/projects/corecomponents/src/res/icons/supervisor.svg +1 -0
  575. package/projects/corecomponents/src/res/icons/supplier.svg +18 -0
  576. package/projects/corecomponents/src/res/icons/surgery.svg +35 -0
  577. package/projects/corecomponents/src/res/icons/tablechart.svg +15 -0
  578. package/projects/corecomponents/src/res/icons/tag.svg +1 -0
  579. package/projects/corecomponents/src/res/icons/talk_too_much.svg +7 -0
  580. package/projects/corecomponents/src/res/icons/target.svg +1 -0
  581. package/projects/corecomponents/src/res/icons/task.svg +1 -0
  582. package/projects/corecomponents/src/res/icons/thick_lines.svg +1 -0
  583. package/projects/corecomponents/src/res/icons/thin_lines.svg +1 -0
  584. package/projects/corecomponents/src/res/icons/three_sixty_view.svg +1 -0
  585. package/projects/corecomponents/src/res/icons/thumb_bronze.svg +29 -0
  586. package/projects/corecomponents/src/res/icons/thumb_gold.svg +29 -0
  587. package/projects/corecomponents/src/res/icons/thumb_silver.svg +29 -0
  588. package/projects/corecomponents/src/res/icons/timeline.svg +1 -0
  589. package/projects/corecomponents/src/res/icons/transaction_detail.svg +19 -0
  590. package/projects/corecomponents/src/res/icons/transactions.svg +12 -0
  591. package/projects/corecomponents/src/res/icons/trash_can_solid.svg +1 -0
  592. package/projects/corecomponents/src/res/icons/triangle_down.svg +1 -0
  593. package/projects/corecomponents/src/res/icons/triangle_large.svg +5 -0
  594. package/projects/corecomponents/src/res/icons/triangle_left.svg +1 -0
  595. package/projects/corecomponents/src/res/icons/triangle_right.svg +1 -0
  596. package/projects/corecomponents/src/res/icons/triangle_up.svg +1 -0
  597. package/projects/corecomponents/src/res/icons/truck.svg +1 -0
  598. package/projects/corecomponents/src/res/icons/truck_calendar.svg +15 -0
  599. package/projects/corecomponents/src/res/icons/undo_round_open.svg +1 -0
  600. package/projects/corecomponents/src/res/icons/user.svg +9 -0
  601. package/projects/corecomponents/src/res/icons/variants.svg +1 -0
  602. package/projects/corecomponents/src/res/icons/vbarchart.svg +6 -0
  603. package/projects/corecomponents/src/res/icons/view.svg +1 -0
  604. package/projects/corecomponents/src/res/icons/warehouse.svg +1 -0
  605. package/projects/corecomponents/src/res/icons/watermark.svg +10 -0
  606. package/projects/corecomponents/src/res/icons/website.svg +1 -0
  607. package/projects/corecomponents/src/res/icons/wizard.svg +18 -0
  608. package/projects/corecomponents/src/res/icons/wms.svg +24 -0
  609. package/projects/corecomponents/src/res/icons/work_in_progress.svg +10 -0
  610. package/projects/corecomponents/src/res/icons/work_in_progress_round_open.svg +9 -0
  611. package/projects/corecomponents/src/res/icons/wrench.svg +4 -0
  612. package/projects/corecomponents/src/res/icons/x_axis.svg +5 -0
  613. package/projects/corecomponents/src/res/icons/y_axis.svg +5 -0
  614. package/projects/corecomponents/src/test.ts +28 -0
  615. package/projects/corecomponents/tsconfig.lib.json +20 -0
  616. package/projects/corecomponents/tsconfig.lib.prod.json +16 -0
  617. package/projects/corecomponents/tsconfig.spec.json +17 -0
  618. package/scripts/export.bat +9 -0
  619. package/scripts/merge-icons.js +39 -0
  620. package/scripts/publish.bat +6 -0
  621. package/src/app/app.component.scss +36 -0
  622. package/src/app/app.component.spec.ts +31 -0
  623. package/src/app/app.component.ts +559 -0
  624. package/src/app/app.module.ts +146 -0
  625. package/src/app/components/button-showcase.component.ts +82 -0
  626. package/src/app/components/carousel-3d-showcase.component.ts +70 -0
  627. package/src/app/components/checkbox-showcase.component.ts +56 -0
  628. package/src/app/components/co-dialog-showcase.component.ts +189 -0
  629. package/src/app/components/co-simple-grid-test.component.ts +146 -0
  630. package/src/app/components/filter-item-showcase.component.ts +178 -0
  631. package/src/app/components/forms-showcase.component.ts +728 -0
  632. package/src/app/components/icon-showcase.component.ts +72 -0
  633. package/src/app/components/input-checkbox-showcase.component.ts +87 -0
  634. package/src/app/components/input-date-picker-showcase.component.ts +90 -0
  635. package/src/app/components/input-number-picker-showcase.component.ts +125 -0
  636. package/src/app/components/input-radio-button-showcase.component.ts +87 -0
  637. package/src/app/components/input-scanner-showcase.component.ts +35 -0
  638. package/src/app/components/input-text-showcase.component.ts +217 -0
  639. package/src/app/components/input-time-showcase.component.ts +104 -0
  640. package/src/app/components/number-picker-showcase.component.ts +17 -0
  641. package/src/app/components/simple-grid-showcase.component.ts +60 -0
  642. package/src/app/model/data-item.ts +9 -0
  643. package/src/app/model/enum/currency-code.enum.ts +7 -0
  644. package/src/app/model/enum/language-code.enum.ts +8 -0
  645. package/src/app/model/map/currencies.map.ts +6 -0
  646. package/src/app/service/showcase-data.service.ts +1110 -0
  647. package/src/assets/.gitkeep +0 -0
  648. package/src/environments/environment.prod.ts +3 -0
  649. package/src/environments/environment.ts +16 -0
  650. package/src/favicon.ico +0 -0
  651. package/src/index.html +13 -0
  652. package/src/main.ts +12 -0
  653. package/src/polyfills.ts +65 -0
  654. package/src/styles.scss +57 -0
  655. package/src/test.ts +27 -0
  656. package/tsconfig.app.json +15 -0
  657. package/tsconfig.json +37 -0
  658. package/tsconfig.spec.json +18 -0
  659. package/bundles/colijnit-corecomponents_v12.umd.js +0 -14269
  660. package/bundles/colijnit-corecomponents_v12.umd.js.map +0 -1
  661. package/colijnit-corecomponents_v12.d.ts +0 -43
  662. package/colijnit-corecomponents_v12.metadata.json +0 -1
  663. package/esm2015/colijnit-corecomponents_v12.js +0 -44
  664. package/esm2015/lib/components/article-tile/article-tile.component.js +0 -81
  665. package/esm2015/lib/components/article-tile/article-tile.module.js +0 -35
  666. package/esm2015/lib/components/base/base-input.component.js +0 -834
  667. package/esm2015/lib/components/base/base.module.js +0 -22
  668. package/esm2015/lib/components/base/commit-buttons/commit-buttons.component.js +0 -103
  669. package/esm2015/lib/components/base/commit-buttons/commit-buttons.module.js +0 -21
  670. package/esm2015/lib/components/base/dialog-base.component.js +0 -6
  671. package/esm2015/lib/components/base-input-date-picker/base-input-date-picker.directive.js +0 -25
  672. package/esm2015/lib/components/button/button.component.js +0 -79
  673. package/esm2015/lib/components/button/button.module.js +0 -19
  674. package/esm2015/lib/components/calendar/calendar-template.component.js +0 -342
  675. package/esm2015/lib/components/calendar/calendar.component.js +0 -45
  676. package/esm2015/lib/components/calendar/calendar.module.js +0 -28
  677. package/esm2015/lib/components/card/card.component.js +0 -72
  678. package/esm2015/lib/components/card/card.module.js +0 -35
  679. package/esm2015/lib/components/carousel/carousel.component.js +0 -130
  680. package/esm2015/lib/components/carousel/carousel.module.js +0 -32
  681. package/esm2015/lib/components/carousel-3d/carousel-3d.component.js +0 -315
  682. package/esm2015/lib/components/carousel-3d/carousel-3d.module.js +0 -19
  683. package/esm2015/lib/components/carousel-3d/carouselItem.js +0 -54
  684. package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.component.js +0 -87
  685. package/esm2015/lib/components/checkmark-overlay/checkmark-overlay.module.js +0 -19
  686. package/esm2015/lib/components/co-dialog/co-dialog.component.js +0 -113
  687. package/esm2015/lib/components/co-dialog/co-dialog.module.js +0 -19
  688. package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.component.js +0 -51
  689. package/esm2015/lib/components/co-dialog-wizard/co-dialog-wizard.module.js +0 -17
  690. package/esm2015/lib/components/collapsible/collapsible.component.js +0 -92
  691. package/esm2015/lib/components/collapsible/collapsible.module.js +0 -19
  692. package/esm2015/lib/components/color-picker/color-picker.component.js +0 -41
  693. package/esm2015/lib/components/color-picker/color-picker.module.js +0 -21
  694. package/esm2015/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.js +0 -79
  695. package/esm2015/lib/components/core-dialog/core-dialog.module.js +0 -39
  696. package/esm2015/lib/components/core-dialog/core-dialog.service.js +0 -67
  697. package/esm2015/lib/components/core-dialog/core-dynamic-component.service.js +0 -93
  698. package/esm2015/lib/components/double-calendar/double-calendar.component.js +0 -80
  699. package/esm2015/lib/components/double-calendar/double-calendar.module.js +0 -25
  700. package/esm2015/lib/components/filter-item/filter-item-viewmodel.js +0 -13
  701. package/esm2015/lib/components/filter-item/filter-item.component.js +0 -646
  702. package/esm2015/lib/components/filter-item/filter-item.module.js +0 -43
  703. package/esm2015/lib/components/filter-item/filter-viewmodel.js +0 -11
  704. package/esm2015/lib/components/form/form.component.js +0 -184
  705. package/esm2015/lib/components/form/form.module.js +0 -23
  706. package/esm2015/lib/components/grid-toolbar/grid-toolbar.component.js +0 -57
  707. package/esm2015/lib/components/grid-toolbar/grid-toolbar.module.js +0 -23
  708. package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.component.js +0 -28
  709. package/esm2015/lib/components/grid-toolbar-button/grid-toolbar-button.module.js +0 -19
  710. package/esm2015/lib/components/icon/icon-cache.service.js +0 -52
  711. package/esm2015/lib/components/icon/icon.component.js +0 -48
  712. package/esm2015/lib/components/icon/icon.module.js +0 -25
  713. package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.component.js +0 -64
  714. package/esm2015/lib/components/icon-collapse-handle/icon-collapse-handle.module.js +0 -23
  715. package/esm2015/lib/components/image/image.component.js +0 -42
  716. package/esm2015/lib/components/image/image.module.js +0 -14
  717. package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +0 -79
  718. package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +0 -19
  719. package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +0 -91
  720. package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +0 -26
  721. package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.component.js +0 -134
  722. package/esm2015/lib/components/input-date-range-picker/input-date-range-picker.module.js +0 -27
  723. package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +0 -314
  724. package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +0 -23
  725. package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +0 -84
  726. package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +0 -19
  727. package/esm2015/lib/components/input-scanner/bar-code-scanner.js +0 -23
  728. package/esm2015/lib/components/input-scanner/input-scanner.component.js +0 -72
  729. package/esm2015/lib/components/input-scanner/input-scanner.module.js +0 -21
  730. package/esm2015/lib/components/input-scanner/scanner.service.js +0 -28
  731. package/esm2015/lib/components/input-search/input-search.component.js +0 -83
  732. package/esm2015/lib/components/input-search/input-search.module.js +0 -21
  733. package/esm2015/lib/components/input-text/input-text.component.js +0 -246
  734. package/esm2015/lib/components/input-text/input-text.module.js +0 -33
  735. package/esm2015/lib/components/input-textarea/input-textarea.component.js +0 -78
  736. package/esm2015/lib/components/input-textarea/input-textarea.module.js +0 -27
  737. package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +0 -7
  738. package/esm2015/lib/components/level-indicator/level-indicator.component.js +0 -36
  739. package/esm2015/lib/components/level-indicator/level-indicator.module.js +0 -15
  740. package/esm2015/lib/components/list-of-icons/list-of-icons.component.js +0 -64
  741. package/esm2015/lib/components/list-of-icons/list-of-icons.module.js +0 -25
  742. package/esm2015/lib/components/list-of-values/list-of-values-multiselect-popup.component.js +0 -112
  743. package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +0 -251
  744. package/esm2015/lib/components/list-of-values/list-of-values.component.js +0 -233
  745. package/esm2015/lib/components/list-of-values/list-of-values.module.js +0 -38
  746. package/esm2015/lib/components/loader/loader.component.js +0 -84
  747. package/esm2015/lib/components/loader/loader.module.js +0 -19
  748. package/esm2015/lib/components/pagination/paginate.pipe.js +0 -99
  749. package/esm2015/lib/components/pagination/pagination-instance.js +0 -2
  750. package/esm2015/lib/components/pagination/pagination.component.js +0 -126
  751. package/esm2015/lib/components/pagination/pagination.module.js +0 -28
  752. package/esm2015/lib/components/pagination/pagination.service.js +0 -88
  753. package/esm2015/lib/components/pagination-bar/pagination-bar.component.js +0 -151
  754. package/esm2015/lib/components/pagination-bar/pagination-bar.module.js +0 -19
  755. package/esm2015/lib/components/popup/const/popup-window-token.js +0 -3
  756. package/esm2015/lib/components/popup/interface/popup-button.js +0 -8
  757. package/esm2015/lib/components/popup/interface/popup-close-event.js +0 -2
  758. package/esm2015/lib/components/popup/interface/popup-settings.js +0 -42
  759. package/esm2015/lib/components/popup/interface/popup.js +0 -2
  760. package/esm2015/lib/components/popup/model/popup-button-globals.js +0 -11
  761. package/esm2015/lib/components/popup/model/popup-window.js +0 -38
  762. package/esm2015/lib/components/popup/popup-buttons.component.js +0 -53
  763. package/esm2015/lib/components/popup/popup-message-display.component.js +0 -47
  764. package/esm2015/lib/components/popup/popup-window-shell.component.js +0 -159
  765. package/esm2015/lib/components/popup/popup.module.js +0 -49
  766. package/esm2015/lib/components/popup/service/popup-shower.service.js +0 -90
  767. package/esm2015/lib/components/popup/service/prompt.service.js +0 -127
  768. package/esm2015/lib/components/popup/text-input-popup.component.js +0 -36
  769. package/esm2015/lib/components/responsive-text/responsive-text.component.js +0 -24
  770. package/esm2015/lib/components/responsive-text/responsive-text.module.js +0 -19
  771. package/esm2015/lib/components/simple-grid/base-simple-grid.component.js +0 -166
  772. package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +0 -172
  773. package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +0 -113
  774. package/esm2015/lib/components/simple-grid/simple-grid.component.js +0 -612
  775. package/esm2015/lib/components/simple-grid/simple-grid.module.js +0 -45
  776. package/esm2015/lib/components/tile/tile.component.js +0 -73
  777. package/esm2015/lib/components/tile/tile.module.js +0 -23
  778. package/esm2015/lib/components/tile-select/tile-select.component.js +0 -36
  779. package/esm2015/lib/components/tile-select/tile-select.module.js +0 -21
  780. package/esm2015/lib/components/tooltip/tooltip.component.js +0 -77
  781. package/esm2015/lib/components/tooltip/tooltip.module.js +0 -19
  782. package/esm2015/lib/components/validation-error/validation-error.component.js +0 -38
  783. package/esm2015/lib/components/validation-error/validation-error.module.js +0 -25
  784. package/esm2015/lib/components/view-mode-buttons/content-view-mode.enum.js +0 -11
  785. package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.component.js +0 -61
  786. package/esm2015/lib/components/view-mode-buttons/view-mode-buttons.module.js +0 -21
  787. package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +0 -4
  788. package/esm2015/lib/core/constant/java-max-int.js +0 -2
  789. package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +0 -45
  790. package/esm2015/lib/core/decorator/input-boolean.decorator.js +0 -34
  791. package/esm2015/lib/core/enum/co-direction.js +0 -9
  792. package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +0 -7
  793. package/esm2015/lib/core/enum/co-document-type.enum.js +0 -11
  794. package/esm2015/lib/core/enum/co-orientation.js +0 -17
  795. package/esm2015/lib/core/enum/core-components-icon.enum.js +0 -300
  796. package/esm2015/lib/core/enum/file-type-internal.enum.js +0 -17
  797. package/esm2015/lib/core/enum/file-type.enum.js +0 -11
  798. package/esm2015/lib/core/enum/filterItem-mode.enum.js +0 -43
  799. package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +0 -8
  800. package/esm2015/lib/core/enum/keyboard-code.enum.js +0 -74
  801. package/esm2015/lib/core/enum/keyboard-key.enum.js +0 -76
  802. package/esm2015/lib/core/enum/object-right-type.enum.js +0 -7
  803. package/esm2015/lib/core/enum/popup-button-type.enum.js +0 -12
  804. package/esm2015/lib/core/enum/popup-type.enum.js +0 -11
  805. package/esm2015/lib/core/enum/table-name.enum.js +0 -81
  806. package/esm2015/lib/core/function/any-nill.function.js +0 -6
  807. package/esm2015/lib/core/function/is-nill.function.js +0 -5
  808. package/esm2015/lib/core/function/none-nill.function.js +0 -17
  809. package/esm2015/lib/core/function/not-nill.function.js +0 -5
  810. package/esm2015/lib/core/model/bounds-constrained-number-value.js +0 -171
  811. package/esm2015/lib/core/model/check-precision-and-scale-result.js +0 -2
  812. package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +0 -2
  813. package/esm2015/lib/core/model/co-document-right.bo.js +0 -3
  814. package/esm2015/lib/core/model/co-document.bo.js +0 -121
  815. package/esm2015/lib/core/model/core-components-icon-svg.js +0 -299
  816. package/esm2015/lib/core/model/element-position.js +0 -10
  817. package/esm2015/lib/core/model/event/string-prompt-result-event.js +0 -8
  818. package/esm2015/lib/core/service/form-input-user-change-listener.service.js +0 -25
  819. package/esm2015/lib/core/service/form-master.service.js +0 -102
  820. package/esm2015/lib/core/service/ng-zone-wrapper.service.js +0 -20
  821. package/esm2015/lib/core/utils/array-utils.js +0 -264
  822. package/esm2015/lib/core/utils/browser-utils.js +0 -100
  823. package/esm2015/lib/core/utils/direction-enum-utils.js +0 -14
  824. package/esm2015/lib/core/utils/event-utils.js +0 -53
  825. package/esm2015/lib/core/utils/file-utils.js +0 -267
  826. package/esm2015/lib/core/utils/number-utils.js +0 -309
  827. package/esm2015/lib/core/utils/object-utils.js +0 -186
  828. package/esm2015/lib/core/utils/string-utils.js +0 -94
  829. package/esm2015/lib/core/validator/email.validator.js +0 -6
  830. package/esm2015/lib/core/validator/equal.validator.js +0 -11
  831. package/esm2015/lib/core/validator/max-string-length.validator.js +0 -10
  832. package/esm2015/lib/core/validator/password.validator.js +0 -31
  833. package/esm2015/lib/core/validator/precision-scale.validator.js +0 -11
  834. package/esm2015/lib/core/validator/required.validator.js +0 -5
  835. package/esm2015/lib/directives/clickoutside/click-outside-master.service.js +0 -57
  836. package/esm2015/lib/directives/clickoutside/click-outside.directive.js +0 -71
  837. package/esm2015/lib/directives/clickoutside/clickoutside.module.js +0 -19
  838. package/esm2015/lib/directives/observe-visibility/observe-visibility.directive.js +0 -53
  839. package/esm2015/lib/directives/observe-visibility/observe-visibility.module.js +0 -15
  840. package/esm2015/lib/directives/overlay/overlay-parent.directive.js +0 -19
  841. package/esm2015/lib/directives/overlay/overlay.directive.js +0 -161
  842. package/esm2015/lib/directives/overlay/overlay.module.js +0 -18
  843. package/esm2015/lib/directives/ripple/ripple-ref.js +0 -26
  844. package/esm2015/lib/directives/ripple/ripple-renderer.js +0 -160
  845. package/esm2015/lib/directives/ripple/ripple.directive.js +0 -80
  846. package/esm2015/lib/directives/ripple/ripple.module.js +0 -24
  847. package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +0 -108
  848. package/esm2015/lib/directives/ripple/scrollable.directive.js +0 -40
  849. package/esm2015/lib/directives/ripple/viewport-ruler.service.js +0 -73
  850. package/esm2015/lib/directives/screen-configuration/screen-configuration.directive.js +0 -158
  851. package/esm2015/lib/directives/screen-configuration/screen-configuration.module.js +0 -19
  852. package/esm2015/lib/directives/stopclick/stop-click.directive.js +0 -38
  853. package/esm2015/lib/directives/stopclick/stop-click.module.js +0 -15
  854. package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +0 -68
  855. package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +0 -15
  856. package/esm2015/lib/directives/tooltip/tooltip-directive.module.js +0 -19
  857. package/esm2015/lib/directives/tooltip/tooltip.directive.js +0 -78
  858. package/esm2015/lib/interfaces/dialog-response.interface.js +0 -2
  859. package/esm2015/lib/interfaces/scanner-input.interface.js +0 -2
  860. package/esm2015/lib/interfaces/screen-config-adapter-component-interface-name.js +0 -4
  861. package/esm2015/lib/interfaces/screen-config-adapter.component.interface.js +0 -2
  862. package/esm2015/lib/model/enum/app-button-type.enum.js +0 -11
  863. package/esm2015/lib/model/enum/app-popup-type.enum.js +0 -8
  864. package/esm2015/lib/model/icon-list-item.js +0 -2
  865. package/esm2015/lib/pipes/append.pipe.js +0 -17
  866. package/esm2015/lib/pipes/append.pipe.module.js +0 -15
  867. package/esm2015/lib/pipes/filter.pipe.js +0 -16
  868. package/esm2015/lib/pipes/filter.pipe.module.js +0 -15
  869. package/esm2015/lib/pipes/prepend.pipe.js +0 -17
  870. package/esm2015/lib/pipes/prepend.pipe.module.js +0 -15
  871. package/esm2015/lib/pipes/price-display-pipe.module.js +0 -15
  872. package/esm2015/lib/pipes/price-display.pipe.js +0 -20
  873. package/esm2015/lib/service/base-module-screen-config.service.js +0 -205
  874. package/esm2015/lib/service/base-module.service.js +0 -42
  875. package/esm2015/lib/service/color-sequence.service.js +0 -49
  876. package/esm2015/lib/service/overlay.service.js +0 -73
  877. package/esm2015/lib/translation/core-components-translation.module.js +0 -29
  878. package/esm2015/lib/translation/core-components-translation.service.js +0 -17
  879. package/esm2015/lib/translation/core-dictionary.service.js +0 -29
  880. package/esm2015/lib/translation/core-localize.pipe.js +0 -26
  881. package/esm2015/public-api.js +0 -132
  882. package/fesm2015/colijnit-corecomponents_v12.js +0 -13665
  883. package/fesm2015/colijnit-corecomponents_v12.js.map +0 -1
  884. package/lib/components/article-tile/article-tile.component.d.ts +0 -22
  885. package/lib/components/article-tile/article-tile.module.d.ts +0 -2
  886. package/lib/components/base/base-input.component.d.ts +0 -182
  887. package/lib/components/base/base.module.d.ts +0 -2
  888. package/lib/components/base/commit-buttons/commit-buttons.component.d.ts +0 -21
  889. package/lib/components/base/commit-buttons/commit-buttons.module.d.ts +0 -2
  890. package/lib/components/base/dialog-base.component.d.ts +0 -4
  891. package/lib/components/base-input-date-picker/base-input-date-picker.directive.d.ts +0 -15
  892. package/lib/components/button/button.component.d.ts +0 -29
  893. package/lib/components/button/button.module.d.ts +0 -2
  894. package/lib/components/calendar/calendar-template.component.d.ts +0 -60
  895. package/lib/components/calendar/calendar.component.d.ts +0 -13
  896. package/lib/components/calendar/calendar.module.d.ts +0 -2
  897. package/lib/components/card/card.component.d.ts +0 -23
  898. package/lib/components/card/card.module.d.ts +0 -2
  899. package/lib/components/carousel/carousel.component.d.ts +0 -23
  900. package/lib/components/carousel/carousel.module.d.ts +0 -6
  901. package/lib/components/carousel-3d/carousel-3d.component.d.ts +0 -55
  902. package/lib/components/carousel-3d/carousel-3d.module.d.ts +0 -2
  903. package/lib/components/carousel-3d/carouselItem.d.ts +0 -13
  904. package/lib/components/checkmark-overlay/checkmark-overlay.component.d.ts +0 -17
  905. package/lib/components/checkmark-overlay/checkmark-overlay.module.d.ts +0 -2
  906. package/lib/components/co-dialog/co-dialog.component.d.ts +0 -23
  907. package/lib/components/co-dialog/co-dialog.module.d.ts +0 -2
  908. package/lib/components/co-dialog-wizard/co-dialog-wizard.component.d.ts +0 -9
  909. package/lib/components/co-dialog-wizard/co-dialog-wizard.module.d.ts +0 -2
  910. package/lib/components/collapsible/collapsible.component.d.ts +0 -22
  911. package/lib/components/collapsible/collapsible.module.d.ts +0 -2
  912. package/lib/components/color-picker/color-picker.component.d.ts +0 -6
  913. package/lib/components/color-picker/color-picker.module.d.ts +0 -2
  914. package/lib/components/core-dialog/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
  915. package/lib/components/core-dialog/core-dialog.module.d.ts +0 -4
  916. package/lib/components/core-dialog/core-dialog.service.d.ts +0 -15
  917. package/lib/components/core-dialog/core-dynamic-component.service.d.ts +0 -12
  918. package/lib/components/double-calendar/double-calendar.component.d.ts +0 -18
  919. package/lib/components/double-calendar/double-calendar.module.d.ts +0 -2
  920. package/lib/components/filter-item/filter-item-viewmodel.d.ts +0 -9
  921. package/lib/components/filter-item/filter-item.component.d.ts +0 -80
  922. package/lib/components/filter-item/filter-item.module.d.ts +0 -2
  923. package/lib/components/filter-item/filter-viewmodel.d.ts +0 -8
  924. package/lib/components/form/form.component.d.ts +0 -39
  925. package/lib/components/form/form.module.d.ts +0 -2
  926. package/lib/components/grid-toolbar/grid-toolbar.component.d.ts +0 -19
  927. package/lib/components/grid-toolbar/grid-toolbar.module.d.ts +0 -2
  928. package/lib/components/grid-toolbar-button/grid-toolbar-button.component.d.ts +0 -8
  929. package/lib/components/grid-toolbar-button/grid-toolbar-button.module.d.ts +0 -2
  930. package/lib/components/icon/icon-cache.service.d.ts +0 -20
  931. package/lib/components/icon/icon.component.d.ts +0 -17
  932. package/lib/components/icon/icon.module.d.ts +0 -2
  933. package/lib/components/icon-collapse-handle/icon-collapse-handle.component.d.ts +0 -21
  934. package/lib/components/icon-collapse-handle/icon-collapse-handle.module.d.ts +0 -2
  935. package/lib/components/image/image.component.d.ts +0 -20
  936. package/lib/components/image/image.module.d.ts +0 -2
  937. package/lib/components/input-checkbox/input-checkbox.component.d.ts +0 -24
  938. package/lib/components/input-checkbox/input-checkbox.module.d.ts +0 -2
  939. package/lib/components/input-date-picker/input-date-picker.component.d.ts +0 -12
  940. package/lib/components/input-date-picker/input-date-picker.module.d.ts +0 -2
  941. package/lib/components/input-date-range-picker/input-date-range-picker.component.d.ts +0 -20
  942. package/lib/components/input-date-range-picker/input-date-range-picker.module.d.ts +0 -2
  943. package/lib/components/input-number-picker/input-number-picker.component.d.ts +0 -73
  944. package/lib/components/input-number-picker/input-number-picker.module.d.ts +0 -2
  945. package/lib/components/input-radio-button/input-radio-button.component.d.ts +0 -19
  946. package/lib/components/input-radio-button/input-radio-button.module.d.ts +0 -2
  947. package/lib/components/input-scanner/bar-code-scanner.d.ts +0 -7
  948. package/lib/components/input-scanner/input-scanner.component.d.ts +0 -24
  949. package/lib/components/input-scanner/input-scanner.module.d.ts +0 -2
  950. package/lib/components/input-scanner/scanner.service.d.ts +0 -11
  951. package/lib/components/input-search/input-search.component.d.ts +0 -20
  952. package/lib/components/input-search/input-search.module.d.ts +0 -2
  953. package/lib/components/input-text/input-text.component.d.ts +0 -66
  954. package/lib/components/input-text/input-text.module.d.ts +0 -2
  955. package/lib/components/input-textarea/input-textarea.component.d.ts +0 -19
  956. package/lib/components/input-textarea/input-textarea.module.d.ts +0 -2
  957. package/lib/components/level-indicator/level-indicator-level.enum.d.ts +0 -5
  958. package/lib/components/level-indicator/level-indicator.component.d.ts +0 -10
  959. package/lib/components/level-indicator/level-indicator.module.d.ts +0 -2
  960. package/lib/components/list-of-icons/list-of-icons.component.d.ts +0 -19
  961. package/lib/components/list-of-icons/list-of-icons.module.d.ts +0 -2
  962. package/lib/components/list-of-values/list-of-values-multiselect-popup.component.d.ts +0 -25
  963. package/lib/components/list-of-values/list-of-values-popup.component.d.ts +0 -47
  964. package/lib/components/list-of-values/list-of-values.component.d.ts +0 -37
  965. package/lib/components/list-of-values/list-of-values.module.d.ts +0 -2
  966. package/lib/components/loader/loader.component.d.ts +0 -3
  967. package/lib/components/loader/loader.module.d.ts +0 -2
  968. package/lib/components/pagination/paginate.pipe.d.ts +0 -15
  969. package/lib/components/pagination/pagination-instance.d.ts +0 -14
  970. package/lib/components/pagination/pagination.component.d.ts +0 -38
  971. package/lib/components/pagination/pagination.module.d.ts +0 -2
  972. package/lib/components/pagination/pagination.service.d.ts +0 -24
  973. package/lib/components/pagination-bar/pagination-bar.component.d.ts +0 -33
  974. package/lib/components/pagination-bar/pagination-bar.module.d.ts +0 -2
  975. package/lib/components/popup/const/popup-window-token.d.ts +0 -3
  976. package/lib/components/popup/interface/popup-button.d.ts +0 -8
  977. package/lib/components/popup/interface/popup-close-event.d.ts +0 -5
  978. package/lib/components/popup/interface/popup-settings.d.ts +0 -21
  979. package/lib/components/popup/interface/popup.d.ts +0 -9
  980. package/lib/components/popup/model/popup-button-globals.d.ts +0 -9
  981. package/lib/components/popup/model/popup-window.d.ts +0 -21
  982. package/lib/components/popup/popup-buttons.component.d.ts +0 -13
  983. package/lib/components/popup/popup-message-display.component.d.ts +0 -12
  984. package/lib/components/popup/popup-window-shell.component.d.ts +0 -42
  985. package/lib/components/popup/popup.module.d.ts +0 -4
  986. package/lib/components/popup/service/popup-shower.service.d.ts +0 -17
  987. package/lib/components/popup/service/prompt.service.d.ts +0 -17
  988. package/lib/components/popup/text-input-popup.component.d.ts +0 -12
  989. package/lib/components/responsive-text/responsive-text.component.d.ts +0 -4
  990. package/lib/components/responsive-text/responsive-text.module.d.ts +0 -2
  991. package/lib/components/simple-grid/base-simple-grid.component.d.ts +0 -53
  992. package/lib/components/simple-grid/simple-grid-cell.component.d.ts +0 -30
  993. package/lib/components/simple-grid/simple-grid-column.directive.d.ts +0 -43
  994. package/lib/components/simple-grid/simple-grid.component.d.ts +0 -78
  995. package/lib/components/simple-grid/simple-grid.module.d.ts +0 -2
  996. package/lib/components/tile/tile.component.d.ts +0 -16
  997. package/lib/components/tile/tile.module.d.ts +0 -2
  998. package/lib/components/tile-select/tile-select.component.d.ts +0 -8
  999. package/lib/components/tile-select/tile-select.module.d.ts +0 -2
  1000. package/lib/components/tooltip/tooltip.component.d.ts +0 -18
  1001. package/lib/components/tooltip/tooltip.module.d.ts +0 -2
  1002. package/lib/components/validation-error/validation-error.component.d.ts +0 -12
  1003. package/lib/components/validation-error/validation-error.module.d.ts +0 -2
  1004. package/lib/components/view-mode-buttons/content-view-mode.enum.d.ts +0 -8
  1005. package/lib/components/view-mode-buttons/view-mode-buttons.component.d.ts +0 -17
  1006. package/lib/components/view-mode-buttons/view-mode-buttons.module.d.ts +0 -2
  1007. package/lib/core/constant/default-upper-bound-for-range-components.d.ts +0 -2
  1008. package/lib/core/constant/java-max-int.d.ts +0 -1
  1009. package/lib/core/constant/number-inputs-key-down-white-list.d.ts +0 -2
  1010. package/lib/core/decorator/input-boolean.decorator.d.ts +0 -8
  1011. package/lib/core/enum/co-direction.d.ts +0 -6
  1012. package/lib/core/enum/co-document-image-display-kind.enum.d.ts +0 -5
  1013. package/lib/core/enum/co-document-type.enum.d.ts +0 -5
  1014. package/lib/core/enum/co-orientation.d.ts +0 -6
  1015. package/lib/core/enum/core-components-icon.enum.d.ts +0 -298
  1016. package/lib/core/enum/file-type-internal.enum.d.ts +0 -15
  1017. package/lib/core/enum/file-type.enum.d.ts +0 -5
  1018. package/lib/core/enum/filterItem-mode.enum.d.ts +0 -15
  1019. package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +0 -5
  1020. package/lib/core/enum/keyboard-code.enum.d.ts +0 -71
  1021. package/lib/core/enum/keyboard-key.enum.d.ts +0 -70
  1022. package/lib/core/enum/object-right-type.enum.d.ts +0 -5
  1023. package/lib/core/enum/popup-button-type.enum.d.ts +0 -9
  1024. package/lib/core/enum/popup-type.enum.d.ts +0 -9
  1025. package/lib/core/enum/table-name.enum.d.ts +0 -79
  1026. package/lib/core/function/any-nill.function.d.ts +0 -1
  1027. package/lib/core/function/is-nill.function.d.ts +0 -1
  1028. package/lib/core/function/none-nill.function.d.ts +0 -1
  1029. package/lib/core/function/not-nill.function.d.ts +0 -1
  1030. package/lib/core/model/bounds-constrained-number-value.d.ts +0 -46
  1031. package/lib/core/model/check-precision-and-scale-result.d.ts +0 -4
  1032. package/lib/core/model/check-within-stepped-bounds-result.d.ts +0 -8
  1033. package/lib/core/model/co-document-right.bo.d.ts +0 -6
  1034. package/lib/core/model/co-document.bo.d.ts +0 -61
  1035. package/lib/core/model/core-components-icon-svg.d.ts +0 -4
  1036. package/lib/core/model/element-position.d.ts +0 -7
  1037. package/lib/core/model/event/string-prompt-result-event.d.ts +0 -6
  1038. package/lib/core/service/form-input-user-change-listener.service.d.ts +0 -10
  1039. package/lib/core/service/form-master.service.d.ts +0 -26
  1040. package/lib/core/service/ng-zone-wrapper.service.d.ts +0 -6
  1041. package/lib/core/utils/array-utils.d.ts +0 -85
  1042. package/lib/core/utils/browser-utils.d.ts +0 -15
  1043. package/lib/core/utils/direction-enum-utils.d.ts +0 -5
  1044. package/lib/core/utils/event-utils.d.ts +0 -12
  1045. package/lib/core/utils/file-utils.d.ts +0 -29
  1046. package/lib/core/utils/number-utils.d.ts +0 -89
  1047. package/lib/core/utils/object-utils.d.ts +0 -31
  1048. package/lib/core/utils/string-utils.d.ts +0 -25
  1049. package/lib/core/validator/email.validator.d.ts +0 -2
  1050. package/lib/core/validator/equal.validator.d.ts +0 -2
  1051. package/lib/core/validator/max-string-length.validator.d.ts +0 -2
  1052. package/lib/core/validator/password.validator.d.ts +0 -3
  1053. package/lib/core/validator/precision-scale.validator.d.ts +0 -2
  1054. package/lib/core/validator/required.validator.d.ts +0 -2
  1055. package/lib/directives/clickoutside/click-outside-master.service.d.ts +0 -15
  1056. package/lib/directives/clickoutside/click-outside.directive.d.ts +0 -18
  1057. package/lib/directives/clickoutside/clickoutside.module.d.ts +0 -2
  1058. package/lib/directives/observe-visibility/observe-visibility.directive.d.ts +0 -14
  1059. package/lib/directives/observe-visibility/observe-visibility.module.d.ts +0 -2
  1060. package/lib/directives/overlay/overlay-parent.directive.d.ts +0 -6
  1061. package/lib/directives/overlay/overlay.directive.d.ts +0 -25
  1062. package/lib/directives/overlay/overlay.module.d.ts +0 -2
  1063. package/lib/directives/ripple/ripple-ref.d.ts +0 -21
  1064. package/lib/directives/ripple/ripple-renderer.d.ts +0 -56
  1065. package/lib/directives/ripple/ripple.directive.d.ts +0 -56
  1066. package/lib/directives/ripple/ripple.module.d.ts +0 -2
  1067. package/lib/directives/ripple/scroll-dispatcher.service.d.ts +0 -51
  1068. package/lib/directives/ripple/scrollable.directive.d.ts +0 -20
  1069. package/lib/directives/ripple/viewport-ruler.service.d.ts +0 -29
  1070. package/lib/directives/screen-configuration/screen-configuration.directive.d.ts +0 -32
  1071. package/lib/directives/screen-configuration/screen-configuration.module.d.ts +0 -2
  1072. package/lib/directives/stopclick/stop-click.directive.d.ts +0 -10
  1073. package/lib/directives/stopclick/stop-click.module.d.ts +0 -2
  1074. package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +0 -13
  1075. package/lib/directives/template-wrapper/template-wrapper.module.d.ts +0 -2
  1076. package/lib/directives/tooltip/tooltip-directive.module.d.ts +0 -2
  1077. package/lib/directives/tooltip/tooltip.directive.d.ts +0 -20
  1078. package/lib/interfaces/dialog-response.interface.d.ts +0 -6
  1079. package/lib/interfaces/screen-config-adapter-component-interface-name.d.ts +0 -3
  1080. package/lib/interfaces/screen-config-adapter.component.interface.d.ts +0 -10
  1081. package/lib/model/enum/app-button-type.enum.d.ts +0 -9
  1082. package/lib/model/enum/app-popup-type.enum.d.ts +0 -6
  1083. package/lib/model/icon-list-item.d.ts +0 -6
  1084. package/lib/pipes/append.pipe.d.ts +0 -4
  1085. package/lib/pipes/append.pipe.module.d.ts +0 -2
  1086. package/lib/pipes/filter.pipe.d.ts +0 -4
  1087. package/lib/pipes/filter.pipe.module.d.ts +0 -2
  1088. package/lib/pipes/prepend.pipe.d.ts +0 -4
  1089. package/lib/pipes/prepend.pipe.module.d.ts +0 -2
  1090. package/lib/pipes/price-display-pipe.module.d.ts +0 -2
  1091. package/lib/pipes/price-display.pipe.d.ts +0 -4
  1092. package/lib/service/base-module-screen-config.service.d.ts +0 -47
  1093. package/lib/service/base-module.service.d.ts +0 -22
  1094. package/lib/service/color-sequence.service.d.ts +0 -7
  1095. package/lib/service/overlay.service.d.ts +0 -13
  1096. package/lib/translation/core-components-translation.module.d.ts +0 -4
  1097. package/lib/translation/core-components-translation.service.d.ts +0 -6
  1098. package/lib/translation/core-dictionary.service.d.ts +0 -12
  1099. package/lib/translation/core-localize.pipe.d.ts +0 -7
  1100. package/public-api.d.ts +0 -128
  1101. /package/{lib → projects/corecomponents/src/lib}/components/article-tile/article-tile.component.scss +0 -0
  1102. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_layout.scss +0 -0
  1103. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_material-definition.scss +0 -0
  1104. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/_theme.scss +0 -0
  1105. /package/{lib → projects/corecomponents/src/lib}/components/base/commit-buttons/style/material.scss +0 -0
  1106. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_co-ripple.scss +0 -0
  1107. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_layout.scss +0 -0
  1108. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_material-definition.scss +0 -0
  1109. /package/{lib → projects/corecomponents/src/lib}/components/button/style/_theme.scss +0 -0
  1110. /package/{lib → projects/corecomponents/src/lib}/components/button/style/material.scss +0 -0
  1111. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_layout.scss +0 -0
  1112. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_material-definition.scss +0 -0
  1113. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/_theme.scss +0 -0
  1114. /package/{lib → projects/corecomponents/src/lib}/components/calendar/style/material.scss +0 -0
  1115. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_layout.scss +0 -0
  1116. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_material-definition.scss +0 -0
  1117. /package/{lib → projects/corecomponents/src/lib}/components/card/style/_theme.scss +0 -0
  1118. /package/{lib → projects/corecomponents/src/lib}/components/card/style/material.scss +0 -0
  1119. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_layout.scss +0 -0
  1120. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_material-definition.scss +0 -0
  1121. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/_theme.scss +0 -0
  1122. /package/{lib → projects/corecomponents/src/lib}/components/carousel/style/material.scss +0 -0
  1123. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_layout.scss +0 -0
  1124. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_material-definition.scss +0 -0
  1125. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/_theme.scss +0 -0
  1126. /package/{lib → projects/corecomponents/src/lib}/components/carousel-3d/style/material.scss +0 -0
  1127. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_layout.scss +0 -0
  1128. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_material-definition.scss +0 -0
  1129. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/_theme.scss +0 -0
  1130. /package/{lib → projects/corecomponents/src/lib}/components/checkmark-overlay/style/material.scss +0 -0
  1131. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_layout.scss +0 -0
  1132. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_material-definition.scss +0 -0
  1133. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/_theme.scss +0 -0
  1134. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog/style/material.scss +0 -0
  1135. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_layout.scss +0 -0
  1136. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_material-definition.scss +0 -0
  1137. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/_theme.scss +0 -0
  1138. /package/{lib → projects/corecomponents/src/lib}/components/co-dialog-wizard/style/material.scss +0 -0
  1139. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_layout.scss +0 -0
  1140. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_material-definition.scss +0 -0
  1141. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/_theme.scss +0 -0
  1142. /package/{lib → projects/corecomponents/src/lib}/components/collapsible/style/material.scss +0 -0
  1143. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_layout.scss +0 -0
  1144. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_material-definition.scss +0 -0
  1145. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/_theme.scss +0 -0
  1146. /package/{lib → projects/corecomponents/src/lib}/components/color-picker/style/material.scss +0 -0
  1147. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_layout.scss +0 -0
  1148. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_material-definition.scss +0 -0
  1149. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/_theme.scss +0 -0
  1150. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/confirmation-dialog/style/material.scss +0 -0
  1151. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_layout.scss +0 -0
  1152. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_material-definition.scss +0 -0
  1153. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/_theme.scss +0 -0
  1154. /package/{lib → projects/corecomponents/src/lib}/components/core-dialog/style/material.scss +0 -0
  1155. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_layout.scss +0 -0
  1156. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_material-definition.scss +0 -0
  1157. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/_theme.scss +0 -0
  1158. /package/{lib → projects/corecomponents/src/lib}/components/double-calendar/style/material.scss +0 -0
  1159. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_layout.scss +0 -0
  1160. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_material-definition.scss +0 -0
  1161. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/_theme.scss +0 -0
  1162. /package/{lib → projects/corecomponents/src/lib}/components/filter-item/style/material.scss +0 -0
  1163. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_layout.scss +0 -0
  1164. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_material-definition.scss +0 -0
  1165. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/_theme.scss +0 -0
  1166. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar/style/material.scss +0 -0
  1167. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_layout.scss +0 -0
  1168. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_material-definition.scss +0 -0
  1169. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/_theme.scss +0 -0
  1170. /package/{lib → projects/corecomponents/src/lib}/components/grid-toolbar-button/style/material.scss +0 -0
  1171. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_layout.scss +0 -0
  1172. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_material-definition.scss +0 -0
  1173. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/_theme.scss +0 -0
  1174. /package/{lib → projects/corecomponents/src/lib}/components/icon/style/material.scss +0 -0
  1175. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_layout.scss +0 -0
  1176. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_material-definition.scss +0 -0
  1177. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/_theme.scss +0 -0
  1178. /package/{lib → projects/corecomponents/src/lib}/components/icon-collapse-handle/style/material.scss +0 -0
  1179. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_layout.scss +0 -0
  1180. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_material-definition.scss +0 -0
  1181. /package/{lib → projects/corecomponents/src/lib}/components/image/style/_theme.scss +0 -0
  1182. /package/{lib → projects/corecomponents/src/lib}/components/image/style/material.scss +0 -0
  1183. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_layout.scss +0 -0
  1184. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_material-definition.scss +0 -0
  1185. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/_theme.scss +0 -0
  1186. /package/{lib → projects/corecomponents/src/lib}/components/input-checkbox/style/material.scss +0 -0
  1187. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_layout.scss +0 -0
  1188. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_material-definition.scss +0 -0
  1189. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/_theme.scss +0 -0
  1190. /package/{lib → projects/corecomponents/src/lib}/components/input-date-picker/style/material.scss +0 -0
  1191. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_layout.scss +0 -0
  1192. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_material-definition.scss +0 -0
  1193. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/_theme.scss +0 -0
  1194. /package/{lib → projects/corecomponents/src/lib}/components/input-date-range-picker/style/material.scss +0 -0
  1195. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_layout.scss +0 -0
  1196. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_material-definition.scss +0 -0
  1197. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/_theme.scss +0 -0
  1198. /package/{lib → projects/corecomponents/src/lib}/components/input-number-picker/style/material.scss +0 -0
  1199. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_layout.scss +0 -0
  1200. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_material-definition.scss +0 -0
  1201. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/_theme.scss +0 -0
  1202. /package/{lib → projects/corecomponents/src/lib}/components/input-radio-button/style/material.scss +0 -0
  1203. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_layout.scss +0 -0
  1204. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_material-definition.scss +0 -0
  1205. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/_theme.scss +0 -0
  1206. /package/{lib → projects/corecomponents/src/lib}/components/input-scanner/style/material.scss +0 -0
  1207. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_layout.scss +0 -0
  1208. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_material-definition.scss +0 -0
  1209. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/_theme.scss +0 -0
  1210. /package/{lib → projects/corecomponents/src/lib}/components/input-search/style/material.scss +0 -0
  1211. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_layout.scss +0 -0
  1212. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_material-definition.scss +0 -0
  1213. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/_theme.scss +0 -0
  1214. /package/{lib → projects/corecomponents/src/lib}/components/input-text/style/material.scss +0 -0
  1215. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_layout.scss +0 -0
  1216. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_material-definition.scss +0 -0
  1217. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/_theme.scss +0 -0
  1218. /package/{lib → projects/corecomponents/src/lib}/components/input-textarea/style/material.scss +0 -0
  1219. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_layout.scss +0 -0
  1220. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_material-definition.scss +0 -0
  1221. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/_theme.scss +0 -0
  1222. /package/{lib → projects/corecomponents/src/lib}/components/level-indicator/style/material.scss +0 -0
  1223. /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_layout.scss +0 -0
  1224. /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_material-definition.scss +0 -0
  1225. /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/_theme.scss +0 -0
  1226. /package/{lib → projects/corecomponents/src/lib}/components/list-of-icons/style/material.scss +0 -0
  1227. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_layout.scss +0 -0
  1228. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_material-definition.scss +0 -0
  1229. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/_theme.scss +0 -0
  1230. /package/{lib → projects/corecomponents/src/lib}/components/list-of-values/style/material.scss +0 -0
  1231. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_layout.scss +0 -0
  1232. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_material-definition.scss +0 -0
  1233. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/_theme.scss +0 -0
  1234. /package/{lib → projects/corecomponents/src/lib}/components/loader/style/material.scss +0 -0
  1235. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_layout.scss +0 -0
  1236. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_material-definition.scss +0 -0
  1237. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/_theme.scss +0 -0
  1238. /package/{lib → projects/corecomponents/src/lib}/components/pagination/style/material.scss +0 -0
  1239. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_layout.scss +0 -0
  1240. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_material-definition.scss +0 -0
  1241. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/_theme.scss +0 -0
  1242. /package/{lib → projects/corecomponents/src/lib}/components/pagination-bar/style/material.scss +0 -0
  1243. /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-buttons.component.scss +0 -0
  1244. /package/{lib → projects/corecomponents/src/lib}/components/popup/popup-window-shell.component.scss +0 -0
  1245. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_layout.scss +0 -0
  1246. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_material-definition.scss +0 -0
  1247. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/_theme.scss +0 -0
  1248. /package/{lib → projects/corecomponents/src/lib}/components/responsive-text/style/material.scss +0 -0
  1249. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_layout.scss +0 -0
  1250. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_material-definition.scss +0 -0
  1251. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/_theme.scss +0 -0
  1252. /package/{lib → projects/corecomponents/src/lib}/components/simple-grid/style/material.scss +0 -0
  1253. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_layout.scss +0 -0
  1254. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_material-definition.scss +0 -0
  1255. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/_theme.scss +0 -0
  1256. /package/{lib → projects/corecomponents/src/lib}/components/tile/style/material.scss +0 -0
  1257. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_layout.scss +0 -0
  1258. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_material-definition.scss +0 -0
  1259. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/_theme.scss +0 -0
  1260. /package/{lib → projects/corecomponents/src/lib}/components/tile-select/style/material.scss +0 -0
  1261. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_layout.scss +0 -0
  1262. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_material-definition.scss +0 -0
  1263. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/_theme.scss +0 -0
  1264. /package/{lib → projects/corecomponents/src/lib}/components/tooltip/style/material.scss +0 -0
  1265. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_layout.scss +0 -0
  1266. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_material-definition.scss +0 -0
  1267. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/_theme.scss +0 -0
  1268. /package/{lib → projects/corecomponents/src/lib}/components/validation-error/style/material.scss +0 -0
  1269. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_layout.scss +0 -0
  1270. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_material-definition.scss +0 -0
  1271. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/_theme.scss +0 -0
  1272. /package/{lib → projects/corecomponents/src/lib}/components/view-mode-buttons/style/material.scss +0 -0
  1273. /package/{lib/interfaces/scanner-input.interface.d.ts → projects/corecomponents/src/lib/interfaces/scanner-input.interface.ts} +0 -0
  1274. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_layout.scss +0 -0
  1275. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_material-definition.scss +0 -0
  1276. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/_theme.scss +0 -0
  1277. /package/{lib → projects/corecomponents/src/lib}/modules/pagination/style/material.scss +0 -0
  1278. /package/{lib → projects/corecomponents/src/lib}/style/_input.mixins.scss +0 -0
  1279. /package/{lib → projects/corecomponents/src/lib}/style/_mixin.scss +0 -0
  1280. /package/{lib → projects/corecomponents/src/lib}/style/_variables.scss +0 -0
  1281. /package/{lib → projects/corecomponents/src/lib}/style/corecomponents-globals.scss +0 -0
  1282. /package/{lib → projects/corecomponents/src/lib}/style/material2/_core.scss +0 -0
  1283. /package/{lib → projects/corecomponents/src/lib}/style/material2/_material2-scss-barrel.scss +0 -0
  1284. /package/{lib → projects/corecomponents/src/lib}/style/material2/ripple/_co-ripple.scss +0 -0
  1285. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_elevation.scss +0 -0
  1286. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_list-common.scss +0 -0
  1287. /package/{lib → projects/corecomponents/src/lib}/style/material2/style/_variables.scss +0 -0
  1288. /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_palette.scss +0 -0
  1289. /package/{lib → projects/corecomponents/src/lib}/style/material2/theming/_theming.scss +0 -0
  1290. /package/{lib → projects/corecomponents/src/lib}/style/material2/typography/_typography.scss +0 -0
@@ -0,0 +1,3075 @@
1
+ /*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
2
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss ***!
3
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
4
+ @import url(https://fonts.googleapis.com/css2?family=Public+Sans&display=swap);
5
+ /*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
6
+ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss (1) ***!
7
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
8
+ @charset "UTF-8";
9
+ /* You can add global styles to this file, and also import other style files */
10
+ html, body {
11
+ background-color: bisque;
12
+ }
13
+ * {
14
+ box-sizing: border-box;
15
+ }
16
+ @font-face {
17
+ font-family: iOneOpenSans;
18
+ font-style: normal;
19
+ font-weight: 400;
20
+ src: url(data:application/font-woff2;charset=utf-8;base64,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) format("woff2");
21
+ }
22
+ @font-face {
23
+ font-family: iOneOpenSans;
24
+ font-style: normal;
25
+ font-weight: 700;
26
+ src: url(data:application/font-woff2;charset=utf-8;base64,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) format("woff2");
27
+ }
28
+ input,
29
+ select,
30
+ textarea {
31
+ border: none;
32
+ outline: none;
33
+ background: transparent;
34
+ }
35
+ input:invalid, input:-moz-submit-invalid, input:-moz-ui-invalid,
36
+ select:invalid,
37
+ select:-moz-submit-invalid,
38
+ select:-moz-ui-invalid,
39
+ textarea:invalid,
40
+ textarea:-moz-submit-invalid,
41
+ textarea:-moz-ui-invalid {
42
+ box-shadow: none;
43
+ }
44
+ /** 'colijn global' classes used by our core components **/
45
+ .co-hidden {
46
+ display: none !important;
47
+ }
48
+ .cdk-global-overlay-wrapper {
49
+ height: 100%;
50
+ width: 100%;
51
+ position: fixed;
52
+ top: 0;
53
+ left: 0;
54
+ display: flex;
55
+ }
56
+ /** our inner 3rd-party dependencies css **/
57
+ /* Theme for the ripple elements.*/
58
+ /* Override Material2 variables */
59
+ /* Include material core */
60
+ /* Inputs */
61
+ /**********/
62
+ /* checkbox */
63
+ /************/
64
+ /* radiobutton */
65
+ /***************/
66
+ /* dialog */
67
+ /**********/
68
+ .co-small-scrollbar {
69
+ overflow: auto;
70
+ }
71
+ .co-small-scrollbar::-webkit-scrollbar {
72
+ -webkit-appearance: none;
73
+ }
74
+ .co-small-scrollbar::-webkit-scrollbar:vertical {
75
+ width: 15px;
76
+ }
77
+ .co-small-scrollbar::-webkit-scrollbar:horizontal {
78
+ height: 15px;
79
+ }
80
+ .co-small-scrollbar::-webkit-scrollbar-thumb:vertical {
81
+ background: linear-gradient(to left, #484f60, #484f60 10%, transparent 10%, transparent);
82
+ }
83
+ .co-small-scrollbar::-webkit-scrollbar-track:vertical {
84
+ background: linear-gradient(to left, #e8eceb, #e8eceb 10%, transparent 10%, transparent);
85
+ }
86
+ .co-small-scrollbar::-webkit-scrollbar-thumb:horizontal {
87
+ background: linear-gradient(to top, #484f60, #484f60 10%, transparent 10%, transparent);
88
+ }
89
+ .co-small-scrollbar::-webkit-scrollbar-track:horizontal {
90
+ background: linear-gradient(to top, #e8eceb, #e8eceb 10%, transparent 10%, transparent);
91
+ }
92
+ .co-dialog .dialog-header .co-dialog-wrapper-popup-title {
93
+ display: flex;
94
+ align-items: center;
95
+ grid-column-gap: 10px;
96
+ grid-column-gap: 10px;
97
+ column-gap: 10px;
98
+ }
99
+ .co-dialog .dialog-header .co-dialog-header-title {
100
+ font-size: 14px;
101
+ margin: 0 0 20px 0;
102
+ font-weight: bold;
103
+ }
104
+ .co-dialog .dialog-footer {
105
+ background-color: #F8F8Fa;
106
+ border-width: 2px 0 0 0;
107
+ border-style: solid;
108
+ border-color: #FFFFFF;
109
+ padding: 20px 0 0 0;
110
+ }
111
+ .co-dialog .dialog-footer .co-dialog-footer-button-wrapper {
112
+ display: flex;
113
+ grid-gap: 10px;
114
+ gap: 10px;
115
+ grid-column-gap: 10px;
116
+ column-gap: 10px;
117
+ justify-content: center;
118
+ }
119
+ .co-dialog .co-input-checkbox:not(.hasnolabel) .checkbox {
120
+ border-color: #FFFFFF;
121
+ background-color: #FFFFFF;
122
+ }
123
+ .co-dialog .co-input-checkbox:not(.hasnolabel) .checkbox.checked {
124
+ border-color: #1A73E8;
125
+ background-color: #1A73E8;
126
+ }
127
+ .co-dialog .co-input-checkbox:not(.hasnolabel) .checkbox .checkmark.show {
128
+ border-color: #FFFFFF;
129
+ }
130
+ .co-dialog .co-input-text:before {
131
+ box-shadow: none;
132
+ }
133
+ .co-dialog .co-input-search .co-input-text {
134
+ background: #FFFFFF;
135
+ }
136
+ .co-dialog .co-input-search .co-input-text:not(.has-left-icon):not(.has-right-icon) {
137
+ background: #FFFFFF;
138
+ }
139
+ .co-button {
140
+ font-family: "Public sans";
141
+ position: relative;
142
+ display: flex;
143
+ align-items: center;
144
+ flex-shrink: 0;
145
+ flex-grow: 0;
146
+ height: 40px;
147
+ border-radius: 5px;
148
+ outline: none;
149
+ z-index: 0;
150
+ /* to keep ripple effect inside button */
151
+ overflow: hidden;
152
+ padding: 0 20px;
153
+ font-size: 12px;
154
+ place-content: baseline;
155
+ pointer-events: all;
156
+ }
157
+ .co-button:not(.has-label) {
158
+ padding: 0;
159
+ width: auto;
160
+ aspect-ratio: 1;
161
+ justify-content: center;
162
+ }
163
+ .co-button .co-icon {
164
+ height: 75%;
165
+ width: auto;
166
+ aspect-ratio: 1;
167
+ }
168
+ .co-button .label {
169
+ margin: 0 10px;
170
+ }
171
+ .co-button.has-left-icon.has-right-icon {
172
+ justify-content: space-between;
173
+ }
174
+ .co-button.has-right-icon {
175
+ justify-content: space-between;
176
+ }
177
+ .co-button.smaller {
178
+ transform: scale(0.8);
179
+ }
180
+ .co-button.small {
181
+ transform: scale(0.6);
182
+ }
183
+ .co-button.mini {
184
+ transform: scale(0.4);
185
+ }
186
+ .co-button.circle {
187
+ padding: 0;
188
+ border-radius: 50%;
189
+ height: 40px;
190
+ width: 40px;
191
+ }
192
+ .co-button.disabled {
193
+ filter: opacity(50%);
194
+ pointer-events: none;
195
+ }
196
+ .co-button .rippler {
197
+ position: absolute;
198
+ top: 0;
199
+ right: 0;
200
+ bottom: 0;
201
+ left: 0;
202
+ z-index: 1;
203
+ }
204
+ .co-button.save-button {
205
+ height: auto;
206
+ width: auto;
207
+ border-color: #DCE4EA;
208
+ border-style: solid;
209
+ border-width: 0 0 0 0;
210
+ background-color: #1A73E8;
211
+ padding: 8px;
212
+ box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
213
+ cursor: pointer;
214
+ }
215
+ .co-button.save-button .co-icon {
216
+ height: 20px;
217
+ width: 20px;
218
+ }
219
+ .co-button.save-button .co-icon svg {
220
+ fill: #FFFFFF;
221
+ }
222
+ .co-button.close-button {
223
+ height: auto;
224
+ width: auto;
225
+ border-color: #DCE4EA;
226
+ border-style: solid;
227
+ border-width: 0 0 0 0;
228
+ background-color: #475060;
229
+ padding: 8px;
230
+ box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.3);
231
+ cursor: pointer;
232
+ }
233
+ .co-button.close-button .co-icon {
234
+ height: 20px;
235
+ width: 20px;
236
+ }
237
+ .co-button.close-button .co-icon svg {
238
+ fill: #FFFFFF;
239
+ }
240
+ .co-button.close-button .co-icon [fill] {
241
+ fill: #FFFFFF;
242
+ }
243
+ .co-button.bordered {
244
+ height: auto;
245
+ width: auto;
246
+ border-color: #1A73E8;
247
+ border-style: solid;
248
+ border-width: 1px;
249
+ background-color: transparent;
250
+ padding: 8px;
251
+ cursor: pointer;
252
+ }
253
+ .co-button.bordered .co-icon {
254
+ height: 20px;
255
+ width: 20px;
256
+ }
257
+ .co-button.bordered .co-icon svg {
258
+ fill: #1A73E8;
259
+ }
260
+ .co-button.bordered:hover {
261
+ filter: none;
262
+ background-color: #1A73E8;
263
+ }
264
+ .co-button.bordered:hover .co-icon svg {
265
+ fill: #FFFFFF;
266
+ }
267
+ .co-button.transparent {
268
+ background-color: transparent;
269
+ }
270
+ .co-button.transparent:not(.disabled).action-hover:hover {
271
+ color: #FFFFFF;
272
+ background-color: #1A73E8 !important;
273
+ }
274
+ .co-button {
275
+ color: #FFFFFF;
276
+ background-color: #1A73E8;
277
+ }
278
+ .co-button.toggled {
279
+ background-color: #8faba6;
280
+ }
281
+ .co-button.white {
282
+ background-color: #FFFFFF;
283
+ border: 1px solid #CCCCCC;
284
+ color: #22313C;
285
+ }
286
+ .co-button.white ::ng-deep co-icon ::ng-deep [fill] {
287
+ fill: #22313C;
288
+ }
289
+ .co-button.white.toggled {
290
+ background-color: #8faba6;
291
+ border: 1px solid #8faba6;
292
+ color: white;
293
+ }
294
+ .co-button.white.toggled ::ng-deep co-icon ::ng-deep [fill] {
295
+ fill: #FFFFFF;
296
+ }
297
+ .co-button.white:hover {
298
+ background-color: #1A73E8;
299
+ border: 1px solid #1A73E8;
300
+ color: #FFFFFF;
301
+ }
302
+ .co-button.white:hover ::ng-deep co-icon ::ng-deep [fill] {
303
+ fill: #FFFFFF;
304
+ }
305
+ .co-button.smaller {
306
+ transform: scale(0.8);
307
+ }
308
+ .co-button.small {
309
+ transform: scale(0.6);
310
+ }
311
+ .co-button.mini {
312
+ transform: scale(0.4);
313
+ }
314
+ .co-button.disabled {
315
+ filter: opacity(50%);
316
+ }
317
+ .co-button.transparent:hover:not(.disabled):not(.no-hover) ::ng-deep > co-icon [fill] {
318
+ fill: #FFFFFF;
319
+ }
320
+ .co-button:hover {
321
+ filter: brightness(75%);
322
+ }
323
+ .co-icon {
324
+ display: flex;
325
+ align-items: center;
326
+ justify-content: center;
327
+ width: 30px;
328
+ height: 30px;
329
+ flex-shrink: 0;
330
+ }
331
+ .co-icon svg {
332
+ max-height: 100%;
333
+ max-width: 100%;
334
+ width: 100%;
335
+ height: 100%;
336
+ }
337
+ .co-icon.big {
338
+ width: 50px;
339
+ height: 50px;
340
+ }
341
+ .co-icon.light svg {
342
+ fill: #FFFFFF;
343
+ }
344
+ .co-icon.light [fill] {
345
+ fill: #FFFFFF;
346
+ }
347
+ .co-icon.dark [fill] svg {
348
+ fill: #22313C;
349
+ }
350
+ .co-icon.dark [fill] [fill] {
351
+ fill: #22313C;
352
+ }
353
+ /*
354
+ @import "co-ripple";
355
+ @import "../../../style/material2/theming/palette";
356
+
357
+ @mixin mat-core() {
358
+ @include mat-ripple();
359
+ }
360
+
361
+ // Mixin that renders all of the core styles that depend on the theme.
362
+ @mixin mat-core-theme($theme) {
363
+ @include mat-ripple-theme($theme);
364
+ }
365
+
366
+ $theme: mat-dark-theme(mat-palette($mat-purple, 700, 500, 800), mat-palette($mat-green, A200, A100, A400));
367
+ @include mat-core-theme(
368
+ mat-dark-theme(mat-palette($mat-purple, 700, 500, 800), mat-palette($mat-green, A200, A100, A400))
369
+ );
370
+ */
371
+ .co-radio-button {
372
+ font-family: "Public sans";
373
+ font-size: 12px;
374
+ display: flex;
375
+ align-items: center;
376
+ cursor: pointer;
377
+ height: 40px;
378
+ border-style: solid;
379
+ border-width: 0px;
380
+ border-radius: 5px;
381
+ padding: 10px;
382
+ }
383
+ .co-radio-button.read-only {
384
+ opacity: 0.5;
385
+ }
386
+ .co-radio-button .outer-circle {
387
+ display: flex;
388
+ flex-shrink: 0;
389
+ align-items: center;
390
+ justify-content: center;
391
+ justify-items: center;
392
+ width: 20px;
393
+ height: 20px;
394
+ border-radius: 50%;
395
+ border-style: solid;
396
+ border-width: 2px;
397
+ margin: 0 10px 0 0;
398
+ }
399
+ .co-radio-button .inner-circle {
400
+ width: 10px;
401
+ height: 10px;
402
+ border-radius: 50%;
403
+ }
404
+ .co-radio-button {
405
+ border-color: #CCCCCC;
406
+ }
407
+ .co-radio-button .outer-circle {
408
+ border-color: #CCCCCC;
409
+ }
410
+ .co-radio-button .outer-circle.selected {
411
+ border-color: #5FDCB3;
412
+ }
413
+ .co-radio-button .inner-circle {
414
+ background-color: #5FDCB3;
415
+ }
416
+ .co-radio-button.selected {
417
+ border-color: #5FDCB3;
418
+ }
419
+ ::placeholder {
420
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
421
+ color: #8083A3;
422
+ font-style: normal;
423
+ opacity: 1;
424
+ /* Firefox */
425
+ }
426
+ :-ms-input-placeholder {
427
+ /* Internet Explorer 10-11 */
428
+ color: #8083A3;
429
+ font-style: normal;
430
+ }
431
+ ::-ms-input-placeholder {
432
+ /* Microsoft Edge */
433
+ color: #8083A3;
434
+ font-style: normal;
435
+ }
436
+ .co-input-number-picker {
437
+ position: relative;
438
+ font-family: "Public sans";
439
+ font-size: 12px;
440
+ display: flex;
441
+ flex-direction: row;
442
+ align-items: center;
443
+ height: 40px;
444
+ width: -moz-fit-content;
445
+ width: fit-content;
446
+ border-radius: 5px;
447
+ }
448
+ .co-input-number-picker:before {
449
+ content: "";
450
+ box-shadow: inset 0 0 0 1px #CCCCCC;
451
+ border-radius: 5px;
452
+ position: absolute;
453
+ pointer-events: none;
454
+ top: 0;
455
+ left: 0;
456
+ width: 100%;
457
+ height: 100%;
458
+ z-index: 1;
459
+ }
460
+ .co-input-number-picker .icon-wrapper {
461
+ display: flex;
462
+ height: 100%;
463
+ flex-shrink: 0;
464
+ align-items: center;
465
+ }
466
+ .co-input-number-picker .icon-wrapper .input-number-picker-icon {
467
+ cursor: pointer;
468
+ height: 100%;
469
+ width: auto;
470
+ aspect-ratio: 1;
471
+ max-height: 80px;
472
+ }
473
+ .co-input-number-picker .icon-wrapper .input-number-picker-icon svg {
474
+ height: 50%;
475
+ width: 50%;
476
+ }
477
+ .co-input-number-picker .icon-wrapper .spacer {
478
+ height: 100%;
479
+ width: 1px;
480
+ padding: 0;
481
+ margin: 0;
482
+ background-color: #CCCCCC;
483
+ }
484
+ .co-input-number-picker .button-wrapper {
485
+ padding: 0;
486
+ height: 100%;
487
+ aspect-ratio: 1/1;
488
+ }
489
+ .co-input-number-picker input {
490
+ font-family: "Public sans";
491
+ padding: 0;
492
+ width: 100%;
493
+ border: none;
494
+ text-align: center;
495
+ }
496
+ .co-input-number-picker input:focus {
497
+ outline: none;
498
+ }
499
+ .co-input-number-picker input:read-only {
500
+ opacity: 0.5;
501
+ }
502
+ .co-input-number-picker .co-button {
503
+ height: 100%;
504
+ border-radius: 0;
505
+ justify-content: center;
506
+ padding: 0;
507
+ }
508
+ .co-input-number-picker .co-button > co-icon {
509
+ height: 65%;
510
+ width: 65%;
511
+ }
512
+ .co-input-number-picker span, .co-input-number-picker span.e-input-focus {
513
+ border: none !important;
514
+ }
515
+ .co-input-number-picker.cc-input-focused:not(.no-focus-line) {
516
+ border-style: solid;
517
+ border-width: 0;
518
+ border-color: #1A73E8;
519
+ }
520
+ .co-input-number-picker.cc-input-focused:not(.no-focus-line):before {
521
+ content: "";
522
+ box-shadow: inset 0 0 0 1px #1A73E8;
523
+ border-radius: 5px;
524
+ position: absolute;
525
+ pointer-events: none;
526
+ top: 0;
527
+ left: 0;
528
+ width: 100%;
529
+ height: 100%;
530
+ z-index: 1;
531
+ }
532
+ .co-input-number-picker:hover {
533
+ border-style: solid;
534
+ border-width: 0;
535
+ border-color: #1A73E8;
536
+ }
537
+ .co-input-number-picker:hover:before {
538
+ content: "";
539
+ box-shadow: inset 0 0 0 2px #1A73E8;
540
+ border-radius: 5px;
541
+ position: absolute;
542
+ pointer-events: none;
543
+ top: 0;
544
+ left: 0;
545
+ width: 100%;
546
+ height: 100%;
547
+ z-index: 1;
548
+ }
549
+ .co-input-number-picker .plus-operator {
550
+ border-radius: 0 5px 5px 0;
551
+ }
552
+ .co-input-number-picker:not(.has-icon) .minus-operator {
553
+ border-radius: 5px 0 0 5px;
554
+ }
555
+ .co-input-number-picker {
556
+ border-color: #CCCCCC;
557
+ background-color: white;
558
+ }
559
+ .co-input-number-picker .co-button {
560
+ background-color: #f5f5fc;
561
+ }
562
+ .co-input-number-picker .co-button co-icon [fill] {
563
+ fill: #22313C;
564
+ }
565
+ .co-input-number-picker .co-button:hover {
566
+ background-color: #1A73E8;
567
+ }
568
+ .co-input-number-picker .co-button:hover co-icon [fill] {
569
+ fill: white;
570
+ }
571
+ .co-input-number-picker .co-button.select {
572
+ background-color: #1A73E8;
573
+ }
574
+ ::placeholder {
575
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
576
+ color: #8083A3;
577
+ font-style: normal;
578
+ opacity: 1;
579
+ /* Firefox */
580
+ }
581
+ :-ms-input-placeholder {
582
+ /* Internet Explorer 10-11 */
583
+ color: #8083A3;
584
+ font-style: normal;
585
+ }
586
+ ::-ms-input-placeholder {
587
+ /* Microsoft Edge */
588
+ color: #8083A3;
589
+ font-style: normal;
590
+ }
591
+ .co-input-text {
592
+ display: block;
593
+ font-family: "Public sans";
594
+ font-size: 12px;
595
+ }
596
+ .co-input-text label {
597
+ display: block;
598
+ overflow: hidden;
599
+ white-space: nowrap;
600
+ text-overflow: ellipsis;
601
+ }
602
+ .co-input-text input {
603
+ max-width: 100%;
604
+ font-family: "Public sans";
605
+ font-size: 12px;
606
+ }
607
+ .co-input-text input.center {
608
+ text-align: center;
609
+ }
610
+ .co-input-text input.right {
611
+ text-align: right;
612
+ }
613
+ .co-input-text .input-input-hidden {
614
+ position: absolute;
615
+ top: -200px;
616
+ opacity: 0;
617
+ }
618
+ .co-input-text.hide-arrows input::-webkit-outer-spin-button,
619
+ .co-input-text.hide-arrows input::-webkit-inner-spin-button {
620
+ -webkit-appearance: none;
621
+ margin: 0;
622
+ }
623
+ .co-input-text.hide-arrows input[type=number] {
624
+ -moz-appearance: textfield;
625
+ }
626
+ .co-input-text input[type=date]::-webkit-calendar-picker-indicator {
627
+ display: none;
628
+ }
629
+ .co-input-text .input-text-clear-button {
630
+ display: flex;
631
+ visibility: hidden;
632
+ cursor: pointer;
633
+ height: 20px;
634
+ width: 20px;
635
+ align-self: end;
636
+ padding: 0 0 5px 0;
637
+ }
638
+ .co-input-text .input-text-clear-button.show {
639
+ visibility: visible;
640
+ }
641
+ .co-input-text:not(.no-style) {
642
+ display: block;
643
+ position: relative;
644
+ background: white;
645
+ border-radius: 5px;
646
+ }
647
+ .co-input-text:not(.no-style):before {
648
+ content: "";
649
+ box-shadow: inset 0 0 0 1px #CCCCCC;
650
+ border-radius: 5px;
651
+ position: absolute;
652
+ pointer-events: none;
653
+ top: 0;
654
+ left: 0;
655
+ width: 100%;
656
+ height: 100%;
657
+ z-index: 1;
658
+ }
659
+ .co-input-text:not(.no-style) .required-indicator {
660
+ display: none;
661
+ position: absolute;
662
+ background: transparent;
663
+ top: 7px;
664
+ right: 5px;
665
+ pointer-events: none;
666
+ }
667
+ .co-input-text:not(.no-style) .required-indicator:before {
668
+ display: flex;
669
+ align-items: center;
670
+ justify-content: center;
671
+ content: "✓";
672
+ width: 7px;
673
+ height: 7px;
674
+ background: transparent;
675
+ color: #429777;
676
+ }
677
+ .co-input-text:not(.no-style):not(.custom-height) {
678
+ height: 40px;
679
+ }
680
+ .co-input-text:not(.no-style).required .required-indicator {
681
+ display: flex;
682
+ }
683
+ .co-input-text:not(.no-style).required.invalid .required-indicator:before, .co-input-text:not(.no-style).required:not(.hasvalue) .required-indicator:before {
684
+ content: "*";
685
+ color: #C1002A;
686
+ }
687
+ .co-input-text:not(.no-style).has-own-label label {
688
+ width: 100%;
689
+ text-align: left;
690
+ color: #8083A3;
691
+ margin-left: 10px;
692
+ font-size: 12px;
693
+ position: absolute;
694
+ top: 50%;
695
+ transform: translateY(-50%);
696
+ transform-origin: top left;
697
+ pointer-events: none;
698
+ z-index: 1;
699
+ transition: all 0.2s;
700
+ overflow: hidden;
701
+ white-space: nowrap;
702
+ text-overflow: ellipsis;
703
+ }
704
+ .co-input-text:not(.no-style).has-own-label.cc-input-focused:not(.no-focus-line) {
705
+ border-style: solid;
706
+ border-width: 0;
707
+ border-color: #1A73E8;
708
+ }
709
+ .co-input-text:not(.no-style).has-own-label.cc-input-focused:not(.no-focus-line):before {
710
+ content: "";
711
+ box-shadow: inset 0 0 0 1px #1A73E8;
712
+ border-radius: 5px;
713
+ position: absolute;
714
+ pointer-events: none;
715
+ top: 0;
716
+ left: 0;
717
+ width: 100%;
718
+ height: 100%;
719
+ z-index: 1;
720
+ }
721
+ .co-input-text:not(.no-style).has-own-label.cc-input-focused label, .co-input-text:not(.no-style).has-own-label.hasvalue label, .co-input-text:not(.no-style).has-own-label.isDate label {
722
+ transform: scale(0.92);
723
+ top: 5px;
724
+ }
725
+ .co-input-text:not(.no-style):not(.read-only):hover {
726
+ border-style: solid;
727
+ border-width: 0;
728
+ border-color: #1A73E8;
729
+ }
730
+ .co-input-text:not(.no-style):not(.read-only):hover:before {
731
+ content: "";
732
+ box-shadow: inset 0 0 0 2px #1A73E8;
733
+ border-radius: 5px;
734
+ position: absolute;
735
+ pointer-events: none;
736
+ top: 0;
737
+ left: 0;
738
+ width: 100%;
739
+ height: 100%;
740
+ z-index: 1;
741
+ }
742
+ .co-input-text:not(.no-style) .input-text-left-icon, .co-input-text:not(.no-style) .input-text-right-icon {
743
+ cursor: pointer;
744
+ height: 100%;
745
+ width: auto;
746
+ aspect-ratio: 1;
747
+ max-height: 40px;
748
+ max-width: 40px;
749
+ }
750
+ .co-input-text:not(.no-style) .input-text-left-icon svg, .co-input-text:not(.no-style) .input-text-right-icon svg {
751
+ height: 50%;
752
+ width: 50%;
753
+ }
754
+ .co-input-text:not(.no-style) .spacer {
755
+ height: 100%;
756
+ min-width: 1px;
757
+ background-color: #CCCCCC;
758
+ }
759
+ .co-input-text:not(.no-style) .input-text-wrapper {
760
+ display: flex;
761
+ height: 100%;
762
+ }
763
+ .co-input-text:not(.no-style) .input-wrapper {
764
+ display: flex;
765
+ flex-basis: 100%;
766
+ position: relative;
767
+ }
768
+ .co-input-text:not(.no-style) input {
769
+ border: none;
770
+ outline: none;
771
+ padding: 0 0 5px 10px;
772
+ align-self: end;
773
+ overflow: hidden;
774
+ text-overflow: ellipsis;
775
+ width: 100%;
776
+ }
777
+ .co-input-text:not(.no-style) .input-content-wrapper {
778
+ width: 100%;
779
+ padding: 20px 0 25px 0;
780
+ }
781
+ .co-input-text:not(.no-style).has-left-icon .input-text-left-icon {
782
+ border-radius: 5px 0 0 5px;
783
+ }
784
+ .co-input-text:not(.no-style).has-left-icon:not(.has-right-icon) .input-wrapper {
785
+ border-radius: 0 5px 5px 0;
786
+ }
787
+ .co-input-text:not(.no-style).has-right-icon .input-text-right-icon {
788
+ border-radius: 0 5px 5px 0;
789
+ }
790
+ .co-input-text:not(.no-style).has-right-icon:not(.has-left-icon) .input-wrapper {
791
+ border-radius: 5px 0 0 5px;
792
+ }
793
+ .co-input-text:not(.has-left-icon):not(.has-right-icon) {
794
+ background: white;
795
+ }
796
+ .co-input-text.has-left-icon .input-text-left-icon {
797
+ background: white;
798
+ }
799
+ .co-input-text.has-right-icon .input-right-left-icon {
800
+ background: white;
801
+ }
802
+ .co-input-text input {
803
+ background: transparent;
804
+ }
805
+ .co-input-text ::placeholder {
806
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
807
+ color: #8083A3;
808
+ font-style: italic;
809
+ opacity: 1;
810
+ /* Firefox */
811
+ }
812
+ .co-input-text :-ms-input-placeholder {
813
+ /* Internet Explorer 10-11 */
814
+ color: #8083A3;
815
+ font-style: italic;
816
+ }
817
+ .co-input-text ::-ms-input-placeholder {
818
+ /* Microsoft Edge */
819
+ color: #8083A3;
820
+ font-style: italic;
821
+ }
822
+ .co-validation-error {
823
+ font-family: "Public sans";
824
+ font-size: 12px;
825
+ }
826
+ .co-validation-error .validation-error-wrapper {
827
+ position: fixed;
828
+ min-height: 20px;
829
+ min-width: 200px;
830
+ z-index: 999999;
831
+ display: flex;
832
+ flex-direction: row;
833
+ align-items: center;
834
+ grid-column-gap: 10px;
835
+ column-gap: 10px;
836
+ padding: 10px;
837
+ border-radius: 5px;
838
+ border: 2px solid;
839
+ }
840
+ .co-validation-error .validation-error-wrapper::after, .co-validation-error .validation-error-wrapper::before {
841
+ border: solid transparent;
842
+ content: " ";
843
+ display: block;
844
+ height: 0;
845
+ pointer-events: none;
846
+ position: absolute;
847
+ width: 0;
848
+ bottom: 100%;
849
+ }
850
+ .co-validation-error .validation-error-wrapper::after {
851
+ left: 20px;
852
+ border-width: 10px;
853
+ }
854
+ .co-validation-error .validation-error-wrapper::before {
855
+ margin-left: 12px;
856
+ border-width: 8px;
857
+ z-index: 1;
858
+ }
859
+ .co-validation-error .validation-error-wrapper.top::after, .co-validation-error .validation-error-wrapper.top::before {
860
+ top: 100%;
861
+ }
862
+ .validation-error-content {
863
+ display: flex;
864
+ flex-direction: row;
865
+ align-items: center;
866
+ }
867
+ .co-validation-error .validation-error-wrapper {
868
+ background-color: #C1002A;
869
+ color: white;
870
+ border-color: black;
871
+ }
872
+ .co-validation-error .validation-error-wrapper::after {
873
+ border-bottom-color: black;
874
+ border-top-color: transparent;
875
+ }
876
+ .co-validation-error .validation-error-wrapper::before {
877
+ border-bottom-color: #C1002A;
878
+ border-top-color: transparent;
879
+ }
880
+ .co-validation-error .validation-error-wrapper.top::after {
881
+ border-top-color: black;
882
+ border-bottom-color: transparent;
883
+ }
884
+ .co-validation-error .validation-error-wrapper.top::before {
885
+ border-top-color: #C1002A;
886
+ border-bottom-color: transparent;
887
+ }
888
+ .co-commit-buttons .commit-buttons-wrapper {
889
+ position: fixed;
890
+ display: flex;
891
+ grid-column-gap: 2px;
892
+ column-gap: 2px;
893
+ z-index: 999;
894
+ transform-origin: top center;
895
+ }
896
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button {
897
+ display: flex;
898
+ align-items: center;
899
+ justify-content: center;
900
+ position: relative;
901
+ height: 25px;
902
+ width: 25px;
903
+ }
904
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .checkmark {
905
+ position: absolute;
906
+ width: 25px;
907
+ height: 25px;
908
+ border-radius: 50%;
909
+ display: block;
910
+ stroke-width: 4px;
911
+ stroke: #1A73E8;
912
+ stroke-miterlimit: 10;
913
+ margin: 10% auto;
914
+ }
915
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .checkmark-check {
916
+ transform-origin: 50% 50%;
917
+ stroke-dasharray: 48;
918
+ stroke-dashoffset: 0;
919
+ }
920
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .checkmark-check:not(.first-show) {
921
+ stroke-dashoffset: 48;
922
+ animation: stroke cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
923
+ }
924
+ @keyframes stroke {
925
+ 100% {
926
+ stroke-dashoffset: 0;
927
+ }
928
+ }
929
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner .animate {
930
+ animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
931
+ }
932
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner {
933
+ display: inline-block;
934
+ position: relative;
935
+ width: 20px;
936
+ height: 20px;
937
+ padding: calc((20px - calc(20px - (.2 * 20px))) / 2);
938
+ }
939
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner div {
940
+ position: absolute;
941
+ display: block;
942
+ box-sizing: border-box;
943
+ height: calc(20px - (.2 * 20px));
944
+ width: calc(20px - (.2 * 20px));
945
+ border-width: 2px;
946
+ border-style: solid;
947
+ border-radius: 50%;
948
+ }
949
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner div:nth-child(1) {
950
+ animation-delay: -0.45s;
951
+ }
952
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner div:nth-child(2) {
953
+ animation-delay: -0.3s;
954
+ }
955
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner div:nth-child(3) {
956
+ animation-delay: -0.15s;
957
+ }
958
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.cancel .cancel-button {
959
+ position: relative;
960
+ display: inline-block;
961
+ width: 100%;
962
+ height: 100%;
963
+ }
964
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save {
965
+ background: #f5f5fc;
966
+ }
967
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.save .save-button-spinner div {
968
+ border-color: #1A73E8 transparent transparent transparent;
969
+ }
970
+ .co-commit-buttons .commit-buttons-wrapper .commit-buttons-button.cancel .cancel-button {
971
+ border: 8px solid #f5f5fc;
972
+ background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 43%, #8083A3 45%, #8083A3 55%, rgba(0, 0, 0, 0) 57%, rgba(0, 0, 0, 0) 100%), linear-gradient(135deg, #f5f5fc 0%, #f5f5fc 43%, #8083A3 45%, #8083A3 55%, #f5f5fc 57%, #f5f5fc 100%);
973
+ }
974
+ ::placeholder {
975
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
976
+ color: #8083A3;
977
+ font-style: normal;
978
+ opacity: 1;
979
+ /* Firefox */
980
+ }
981
+ :-ms-input-placeholder {
982
+ /* Internet Explorer 10-11 */
983
+ color: #8083A3;
984
+ font-style: normal;
985
+ }
986
+ ::-ms-input-placeholder {
987
+ /* Microsoft Edge */
988
+ color: #8083A3;
989
+ font-style: normal;
990
+ }
991
+ .co-dialog {
992
+ font-family: "Public sans";
993
+ font-size: 12px;
994
+ }
995
+ .co-dialog .co-dialog-overlay {
996
+ position: fixed;
997
+ top: 0;
998
+ left: 0;
999
+ width: 100%;
1000
+ height: 100%;
1001
+ z-index: 800;
1002
+ min-height: 100vh;
1003
+ }
1004
+ .co-dialog .co-dialog-placeholder {
1005
+ position: fixed;
1006
+ z-index: 801;
1007
+ top: 0;
1008
+ left: 0;
1009
+ width: 100%;
1010
+ height: 100%;
1011
+ display: flex;
1012
+ align-items: center;
1013
+ justify-content: center;
1014
+ }
1015
+ .co-dialog .co-dialog-wrapper {
1016
+ position: fixed;
1017
+ left: 0;
1018
+ display: flex;
1019
+ flex-direction: column;
1020
+ border-radius: 5px;
1021
+ max-width: 100vw;
1022
+ z-index: 801;
1023
+ height: auto;
1024
+ width: 100%;
1025
+ max-height: 80vh;
1026
+ padding: 30px;
1027
+ }
1028
+ .co-dialog:not(.is-mobile) .co-dialog-wrapper {
1029
+ position: relative;
1030
+ min-width: 250px;
1031
+ width: 50vw;
1032
+ }
1033
+ .co-dialog .dialog-drag-handle {
1034
+ display: flex;
1035
+ width: 100%;
1036
+ height: 30px;
1037
+ position: absolute;
1038
+ top: 0;
1039
+ left: 0;
1040
+ }
1041
+ .co-dialog .dialog-header {
1042
+ display: flex;
1043
+ flex-direction: row;
1044
+ justify-content: space-between;
1045
+ align-items: center;
1046
+ font-family: "Public sans";
1047
+ font-size: 12px;
1048
+ padding: 0 0 10px 0;
1049
+ }
1050
+ .co-dialog .dialog-header .dialog-header-caption {
1051
+ width: 100%;
1052
+ font-weight: normal;
1053
+ margin: 0 0 10px 0;
1054
+ border-style: solid;
1055
+ border-width: 0 0 1px 0;
1056
+ }
1057
+ .co-dialog .dialog-header .dialog-close-button {
1058
+ display: flex;
1059
+ align-items: center;
1060
+ justify-content: center;
1061
+ width: 30px;
1062
+ height: 30px;
1063
+ border-radius: 5px;
1064
+ position: absolute;
1065
+ right: 20px;
1066
+ top: 10px;
1067
+ background: transparent;
1068
+ }
1069
+ .co-dialog .dialog-content {
1070
+ font-family: "Public sans";
1071
+ font-size: 12px;
1072
+ padding: 0;
1073
+ max-height: 80vh;
1074
+ overflow: auto;
1075
+ overscroll-behavior: contain;
1076
+ }
1077
+ .co-dialog .dialog-footer {
1078
+ font-family: "Public sans";
1079
+ font-size: 12px;
1080
+ padding: 20px 0 0 0;
1081
+ margin: 10px 0 0 0;
1082
+ border-style: solid;
1083
+ border-width: 2px 0 0 0;
1084
+ }
1085
+ .co-dialog .dialog-footer co-button ::ng-deep {
1086
+ cursor: pointer;
1087
+ }
1088
+ .co-dialog .dialog-footer co-button ::ng-deep.ok-click co-icon svg path {
1089
+ fill: #5FDCB3;
1090
+ }
1091
+ .co-dialog .dialog-footer co-button ::ng-deep.cancel-click co-icon svg path {
1092
+ fill: #6b6e8a;
1093
+ }
1094
+ .co-dialog .dialog-close-button {
1095
+ cursor: pointer;
1096
+ }
1097
+ .disable-scroll {
1098
+ pointer-events: none;
1099
+ }
1100
+ .co-dialog .co-dialog-overlay {
1101
+ background-color: rgba(0, 0, 0, 0.3);
1102
+ -webkit-backdrop-filter: blur(2px);
1103
+ backdrop-filter: blur(2px);
1104
+ }
1105
+ .co-dialog:not(.borderless) .co-dialog-wrapper {
1106
+ background-color: #F8F8Fa;
1107
+ box-shadow: 0 0 10px #484f6040;
1108
+ }
1109
+ .co-dialog .dialog-header {
1110
+ color: #22313C;
1111
+ background-color: #F8F8Fa;
1112
+ }
1113
+ .co-dialog .dialog-header .dialog-header-caption {
1114
+ border-color: #CCCCCC;
1115
+ }
1116
+ .co-dialog .dialog-header .dialog-close-button {
1117
+ background: transparent;
1118
+ }
1119
+ .co-dialog .dialog-content {
1120
+ color: #22313C;
1121
+ background-color: #F8F8Fa;
1122
+ }
1123
+ .co-dialog .dialog-footer {
1124
+ color: #22313C;
1125
+ background-color: #F8F8Fa;
1126
+ border-color: #FFFFFF;
1127
+ }
1128
+ .co-collapsible {
1129
+ font-family: "Public sans";
1130
+ position: relative;
1131
+ display: flex;
1132
+ flex-direction: column;
1133
+ flex-shrink: 0;
1134
+ flex-grow: 0;
1135
+ outline: none;
1136
+ overflow: hidden;
1137
+ font-size: 12px;
1138
+ }
1139
+ .co-collapsible .collapsible-header {
1140
+ display: flex;
1141
+ flex-direction: row;
1142
+ justify-content: space-between;
1143
+ grid-column-gap: 5px;
1144
+ column-gap: 5px;
1145
+ height: 40px;
1146
+ align-items: center;
1147
+ cursor: pointer;
1148
+ -webkit-user-select: none;
1149
+ user-select: none;
1150
+ border-bottom: 1px solid gray;
1151
+ }
1152
+ .co-collapsible .collapsible-title {
1153
+ font-weight: bold;
1154
+ }
1155
+ .co-collapsible .collapsible-header-start, .co-collapsible .collapsible-header-end {
1156
+ display: flex;
1157
+ flex-direction: row;
1158
+ }
1159
+ .co-collapsible .expand-icon-wrapper {
1160
+ display: flex;
1161
+ transition: 0.3s ease-in-out;
1162
+ }
1163
+ .co-collapsible .expand-icon-wrapper .expand-icon {
1164
+ height: 20px;
1165
+ width: 20px;
1166
+ }
1167
+ .co-collapsible .expand-icon-wrapper.expanded {
1168
+ transform: rotate(180deg);
1169
+ }
1170
+ .co-collapsible .collapsible-button-wrapper {
1171
+ display: flex;
1172
+ align-items: center;
1173
+ justify-content: flex-end;
1174
+ padding-left: 10px;
1175
+ min-width: 50px;
1176
+ cursor: default;
1177
+ }
1178
+ .co-collapsible .collapsible-button {
1179
+ border: 1px solid gray;
1180
+ border-radius: 10px;
1181
+ padding: 5px 12px;
1182
+ cursor: pointer;
1183
+ font-family: "Public sans";
1184
+ font-size: 12px;
1185
+ }
1186
+ .co-collapsible .collapsible-content {
1187
+ overflow: hidden;
1188
+ padding: 10px 0px 0px 10px;
1189
+ }
1190
+ .co-collapsible {
1191
+ color: #000000;
1192
+ }
1193
+ .co-collapsible .collapsible-header {
1194
+ padding: 0 10px;
1195
+ }
1196
+ .co-collapsible .co-input-text {
1197
+ padding: 0;
1198
+ }
1199
+ .co-collapsible .collapsible-button {
1200
+ background-color: white;
1201
+ }
1202
+ .co-collapsible .collapsible-button:hover {
1203
+ background-color: #F7FAFA;
1204
+ }
1205
+ .co-input-search {
1206
+ display: block;
1207
+ font-family: "Public sans";
1208
+ font-size: 12px;
1209
+ height: 40px;
1210
+ }
1211
+ .co-input-search .co-input-text:not(.no-style) {
1212
+ height: 100%;
1213
+ border-radius: 10px;
1214
+ }
1215
+ .co-input-search .co-input-text:not(.no-style):before, .co-input-search .co-input-text:not(.no-style):hover:before {
1216
+ border-radius: 10px;
1217
+ }
1218
+ .co-input-search .co-input-text:not(.no-style) label {
1219
+ font-style: italic;
1220
+ font-weight: normal;
1221
+ }
1222
+ .co-input-search .co-input-text:not(.no-style) input {
1223
+ align-self: center;
1224
+ padding: 0 0 0 5px;
1225
+ }
1226
+ .co-input-search .co-input-text:not(.no-style).has-left-icon .input-text-left-icon {
1227
+ border-radius: 10px 0 0 10px;
1228
+ }
1229
+ .co-input-search .co-input-text:not(.no-style).has-left-icon:not(.has-right-icon) .input-wrapper {
1230
+ border-radius: 0 10px 10px 0;
1231
+ }
1232
+ .co-input-search .co-input-text:not(.no-style).has-right-icon .input-text-right-icon {
1233
+ border-radius: 0 10px 10px 0;
1234
+ }
1235
+ .co-input-search .co-input-text:not(.no-style).has-right-icon:not(.has-left-icon) .input-wrapper {
1236
+ border-radius: 10px 0 0 10px;
1237
+ }
1238
+ .co-input-search.center-label .co-input-text label {
1239
+ margin-left: 0;
1240
+ text-align: center;
1241
+ }
1242
+ .co-input-search .co-input-text:not(.has-left-icon):not(.has-right-icon) {
1243
+ background: #F5F5FC;
1244
+ }
1245
+ .co-input-search .co-input-text.has-left-icon {
1246
+ background: transparent;
1247
+ }
1248
+ .co-input-search .co-input-text.has-left-icon .input-text-left-icon, .co-input-search .co-input-text.has-left-icon .input-wrapper {
1249
+ background: #F5F5FC;
1250
+ }
1251
+ .co-input-search .co-input-text.has-right-icon {
1252
+ background: transparent;
1253
+ }
1254
+ .co-input-search .co-input-text.has-right-icon .input-text-right-icon, .co-input-search .co-input-text.has-right-icon .input-wrapper {
1255
+ background: #F5F5FC;
1256
+ }
1257
+ .co-input-search .co-input-text label {
1258
+ color: #8083A3;
1259
+ }
1260
+ .co-list-of-icons {
1261
+ position: relative;
1262
+ display: block;
1263
+ height: -moz-fit-content;
1264
+ height: fit-content;
1265
+ margin-right: -10px;
1266
+ font-family: "Public sans";
1267
+ font-size: 12px;
1268
+ background: white;
1269
+ z-index: 1;
1270
+ }
1271
+ .co-list-of-icons .icon-item {
1272
+ position: relative;
1273
+ display: flex;
1274
+ flex-direction: column;
1275
+ align-items: center;
1276
+ cursor: pointer;
1277
+ }
1278
+ .co-list-of-icons .icon-item .co-icon svg {
1279
+ fill: #6b6e8a;
1280
+ }
1281
+ .co-list-of-icons .icon-item .label {
1282
+ margin-top: 2px;
1283
+ }
1284
+ .co-list-of-icons .icon-item .drop-arrow {
1285
+ margin: 0 0 -7px -6px;
1286
+ }
1287
+ .co-list-of-icons .icon-item.menu-opened .drop-arrow {
1288
+ transform: rotate(180deg);
1289
+ }
1290
+ .co-list-of-icons .icon-item.active {
1291
+ flex-direction: row;
1292
+ }
1293
+ .co-list-of-icons .icon-item:hover .co-icon svg,
1294
+ .co-list-of-icons .icon-item:hover .co-icon svg *, .co-list-of-icons .icon-item.menu-opened .co-icon svg,
1295
+ .co-list-of-icons .icon-item.menu-opened .co-icon svg * {
1296
+ fill: #1A73E8;
1297
+ }
1298
+ .co-list-of-icons .icon-item:hover .label, .co-list-of-icons .icon-item.menu-opened .label {
1299
+ color: #1A73E8;
1300
+ }
1301
+ .co-list-of-icons .dropdown-menu {
1302
+ position: absolute;
1303
+ top: 100%;
1304
+ left: 0;
1305
+ padding: 10px 0;
1306
+ background-color: white;
1307
+ }
1308
+ .co-list-of-icons .dropdown-menu .icon-item {
1309
+ margin-bottom: 12px;
1310
+ }
1311
+ .co-list-of-icons .dropdown-menu .icon-item:last-of-type {
1312
+ margin: 0;
1313
+ }
1314
+ .co-list-of-icons .dropdown-menu .icon-item.active {
1315
+ flex-direction: column;
1316
+ }
1317
+ .co-list-of-icons .dropdown-menu .icon-item.active .co-icon svg,
1318
+ .co-list-of-icons .dropdown-menu .icon-item.active .co-icon svg * {
1319
+ fill: #1A73E8;
1320
+ }
1321
+ .co-list-of-icons .dropdown-menu .icon-item.active .label {
1322
+ color: #1A73E8;
1323
+ }
1324
+ .co-simple-grid {
1325
+ display: block;
1326
+ font-family: "Public sans";
1327
+ font-size: 12px;
1328
+ }
1329
+ .co-simple-grid co-input-checkbox {
1330
+ justify-content: center;
1331
+ }
1332
+ .co-simple-grid co-input-checkbox .checkbox .checkmark {
1333
+ left: 0.945px;
1334
+ }
1335
+ .simple-grid-table {
1336
+ height: 1px;
1337
+ table-layout: fixed;
1338
+ width: 100%;
1339
+ border-collapse: collapse;
1340
+ }
1341
+ .simple-grid-column-auto-fit {
1342
+ white-space: nowrap;
1343
+ width: 1%;
1344
+ }
1345
+ .simple-grid-column-header-wrapper {
1346
+ font-family: "Public sans";
1347
+ font-size: 10px;
1348
+ font-weight: normal;
1349
+ text-transform: uppercase;
1350
+ display: flex;
1351
+ flex-direction: row;
1352
+ position: relative;
1353
+ }
1354
+ .simple-grid-column-header-wrapper.selected {
1355
+ background-color: #DCE4EA;
1356
+ }
1357
+ .co-form.simple-grid-row-form {
1358
+ display: contents;
1359
+ width: 100%;
1360
+ }
1361
+ .simple-grid-column-header {
1362
+ justify-content: space-between;
1363
+ border-style: solid;
1364
+ border-width: 0 0 1px 0;
1365
+ font-size: 10px;
1366
+ }
1367
+ .simple-grid-single-column-cell {
1368
+ width: 100%;
1369
+ }
1370
+ .simple-grid-column-cell {
1371
+ align-items: center;
1372
+ vertical-align: middle;
1373
+ }
1374
+ .co-simple-grid-cell {
1375
+ width: 100%;
1376
+ }
1377
+ .co-simple-grid-cell .co-icon {
1378
+ width: 20px;
1379
+ height: 20px;
1380
+ }
1381
+ .co-simple-grid-cell .co-button {
1382
+ background-color: #FFFFFF;
1383
+ }
1384
+ .co-simple-grid-cell .co-button .co-icon {
1385
+ width: 20px;
1386
+ height: 20px;
1387
+ }
1388
+ .simple-grid-column-cell-value {
1389
+ height: 100%;
1390
+ width: 100%;
1391
+ }
1392
+ .simple-grid-column-cell-value > * {
1393
+ height: 100%;
1394
+ width: 100%;
1395
+ }
1396
+ .simple-grid-column-cell-field {
1397
+ display: flex;
1398
+ align-items: center;
1399
+ border-style: solid;
1400
+ border-width: 1px;
1401
+ padding: 10px;
1402
+ border-radius: 5px;
1403
+ }
1404
+ .simple-grid-column-cell-field span {
1405
+ white-space: normal;
1406
+ text-overflow: ellipsis;
1407
+ overflow: hidden;
1408
+ }
1409
+ .simple-grid-column-cell-field .form-input {
1410
+ width: 100%;
1411
+ }
1412
+ .simple-grid-column-header-label {
1413
+ font-weight: bold;
1414
+ color: #172121;
1415
+ -webkit-user-select: none;
1416
+ user-select: none;
1417
+ padding: 10px 5px;
1418
+ width: 100%;
1419
+ overflow: hidden;
1420
+ text-overflow: ellipsis;
1421
+ white-space: nowrap;
1422
+ border-bottom: 2px solid #efeeee;
1423
+ }
1424
+ .simple-grid-column-header-label.with-menu {
1425
+ cursor: pointer;
1426
+ }
1427
+ .simple-grid-column-sizer {
1428
+ cursor: col-resize;
1429
+ width: 5px;
1430
+ }
1431
+ .simple-grid-column-sizer-placeholder {
1432
+ width: 5px;
1433
+ }
1434
+ .simple-grid-row {
1435
+ height: 75px;
1436
+ font-family: "Public sans";
1437
+ font-size: 12px;
1438
+ border: none;
1439
+ border-width: 10px 0 0 0;
1440
+ border-style: solid;
1441
+ border-color: #F5F5FC;
1442
+ }
1443
+ .simple-grid-row.disabled {
1444
+ opacity: 0.5;
1445
+ background: white;
1446
+ }
1447
+ .simple-grid-row.editing .form-input:before, .simple-grid-row.editing .form-input:hover, .simple-grid-row.editing .form-input:hover:before, .simple-grid-row.editing .form-input.cc-input-focused, .simple-grid-row.editing .form-input.cc-input-focused:before {
1448
+ border: none !important;
1449
+ box-shadow: none !important;
1450
+ }
1451
+ .right-align {
1452
+ text-align: right;
1453
+ justify-content: flex-end;
1454
+ }
1455
+ .center-align {
1456
+ text-align: center;
1457
+ justify-content: center;
1458
+ }
1459
+ .left-align {
1460
+ text-align: left;
1461
+ justify-content: flex-start;
1462
+ }
1463
+ .grid-settings {
1464
+ display: flex;
1465
+ justify-content: flex-end;
1466
+ position: relative;
1467
+ padding-bottom: 4px;
1468
+ box-shadow: inset 0 -2px #efeeee;
1469
+ border: none;
1470
+ }
1471
+ .grid-settings co-button {
1472
+ margin-top: -4px;
1473
+ cursor: pointer;
1474
+ }
1475
+ .grid-settings co-button.selected {
1476
+ filter: brightness(75%);
1477
+ }
1478
+ .simple-grid-row.cdk-drag-preview {
1479
+ box-sizing: border-box;
1480
+ border-radius: 4px;
1481
+ box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
1482
+ display: table;
1483
+ }
1484
+ .simple-grid-row.cdk-drag-preview td {
1485
+ flex-grow: 2;
1486
+ font-size: 10px;
1487
+ padding: 4px;
1488
+ vertical-align: middle;
1489
+ }
1490
+ .simple-grid-row.cdk-drag-placeholder {
1491
+ opacity: 0.3;
1492
+ }
1493
+ .cdk-drag-animating {
1494
+ transition: transform 200ms cubic-bezier(0, 0, 0.2, 1);
1495
+ }
1496
+ .pagination-bar ul {
1497
+ margin: 10px 0 0 0;
1498
+ }
1499
+ .settings-menu,
1500
+ .column-menu {
1501
+ position: absolute;
1502
+ top: 42px;
1503
+ right: 4px;
1504
+ width: 250px;
1505
+ padding: 0 8px 8px;
1506
+ border-radius: 5px;
1507
+ color: #171721;
1508
+ box-shadow: 0 0 8px 0 rgba(72, 79, 96, 0.25);
1509
+ background-color: #F5F5FC;
1510
+ z-index: 1;
1511
+ }
1512
+ .settings-menu h3,
1513
+ .column-menu h3 {
1514
+ text-align: left;
1515
+ }
1516
+ .settings-menu ul,
1517
+ .column-menu ul {
1518
+ list-style-type: none;
1519
+ border-top: 1px solid #DCE4EA;
1520
+ text-align: left;
1521
+ font-size: 12px;
1522
+ }
1523
+ .settings-menu ul li,
1524
+ .column-menu ul li {
1525
+ margin-top: 4px;
1526
+ padding: 8px;
1527
+ border-radius: 5px;
1528
+ text-transform: capitalize;
1529
+ font-weight: normal;
1530
+ background-color: #F5F5FC;
1531
+ cursor: pointer;
1532
+ }
1533
+ .settings-menu ul li:hover,
1534
+ .column-menu ul li:hover {
1535
+ filter: brightness(95%);
1536
+ }
1537
+ .column-menu {
1538
+ right: auto;
1539
+ left: 0;
1540
+ }
1541
+ .co-simple-grid {
1542
+ color: #171721;
1543
+ }
1544
+ .co-simple-grid .simple-grid-column-sizer {
1545
+ background-color: white;
1546
+ }
1547
+ .co-simple-grid .simple-grid-column-header {
1548
+ border-color: #1A73E8;
1549
+ color: #8083A3;
1550
+ }
1551
+ .co-simple-grid .simple-grid-column-header {
1552
+ background-color: white;
1553
+ }
1554
+ .simple-grid-column-cell-field {
1555
+ border-color: #CCCCCC;
1556
+ }
1557
+ .simple-grid-row {
1558
+ background-color: white;
1559
+ border-color: #F5F5FC;
1560
+ }
1561
+ .simple-grid-row.selected {
1562
+ background-color: #e5e5e5;
1563
+ }
1564
+ .simple-grid-row:hover:not(.selected):not(.disabled) {
1565
+ background-color: transparent;
1566
+ }
1567
+ .simple-grid-row.editing .form-input {
1568
+ background-color: transparent;
1569
+ }
1570
+ co-pagination {
1571
+ background-color: white;
1572
+ }
1573
+ .co-grid-toolbar {
1574
+ display: flex;
1575
+ flex-direction: row;
1576
+ justify-content: flex-start;
1577
+ margin: 0 0 10px 0;
1578
+ padding: 0;
1579
+ border-style: solid;
1580
+ border-width: 0;
1581
+ border-radius: 5px;
1582
+ }
1583
+ .co-grid-toolbar .grid-toolbar-wrapper {
1584
+ display: flex;
1585
+ flex-direction: row;
1586
+ grid-column-gap: 5px;
1587
+ column-gap: 5px;
1588
+ }
1589
+ .co-grid-toolbar .co-icon {
1590
+ width: 30px;
1591
+ height: 30px;
1592
+ border-style: solid;
1593
+ border-width: 1px;
1594
+ border-radius: 5px;
1595
+ opacity: 1;
1596
+ cursor: pointer;
1597
+ }
1598
+ .co-grid-toolbar .co-icon.disabled {
1599
+ cursor: default;
1600
+ opacity: 0.5;
1601
+ }
1602
+ .co-grid-toolbar .co-icon svg {
1603
+ height: 60%;
1604
+ width: 60%;
1605
+ }
1606
+ .co-grid-toolbar.right {
1607
+ justify-content: flex-end;
1608
+ }
1609
+ .co-grid-toolbar {
1610
+ background-color: transparent;
1611
+ border-color: black;
1612
+ }
1613
+ .co-grid-toolbar .co-icon {
1614
+ background-color: white;
1615
+ border-color: black;
1616
+ }
1617
+ .co-grid-toolbar .co-icon svg {
1618
+ fill: #009EE0;
1619
+ }
1620
+ .co-grid-toolbar .co-icon [fill] {
1621
+ fill: #009EE0;
1622
+ }
1623
+ ::placeholder {
1624
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
1625
+ color: #8083A3;
1626
+ font-style: normal;
1627
+ opacity: 1;
1628
+ /* Firefox */
1629
+ }
1630
+ :-ms-input-placeholder {
1631
+ /* Internet Explorer 10-11 */
1632
+ color: #8083A3;
1633
+ font-style: normal;
1634
+ }
1635
+ ::-ms-input-placeholder {
1636
+ /* Microsoft Edge */
1637
+ color: #8083A3;
1638
+ font-style: normal;
1639
+ }
1640
+ .co-pagination {
1641
+ display: block;
1642
+ height: 60px;
1643
+ font-family: "Public sans";
1644
+ font-size: 12px;
1645
+ }
1646
+ .co-pagination .pagination-component-main-wrapper {
1647
+ background: none;
1648
+ display: flex;
1649
+ align-items: center;
1650
+ padding: 0 20px;
1651
+ height: 100%;
1652
+ }
1653
+ .co-pagination-bar {
1654
+ font-family: "Public sans";
1655
+ font-size: 12px;
1656
+ width: 100%;
1657
+ }
1658
+ .co-pagination-bar ul.pagination {
1659
+ display: flex;
1660
+ justify-content: flex-end;
1661
+ flex-wrap: wrap;
1662
+ width: 100%;
1663
+ list-style-type: none;
1664
+ }
1665
+ .co-pagination-bar li {
1666
+ display: flex;
1667
+ align-items: center;
1668
+ justify-content: center;
1669
+ flex-grow: 0;
1670
+ flex-shrink: 0;
1671
+ width: 40px;
1672
+ height: 40px;
1673
+ cursor: pointer;
1674
+ border-radius: 5px;
1675
+ font-size: 12px;
1676
+ -webkit-user-select: none;
1677
+ user-select: none;
1678
+ }
1679
+ .co-pagination-bar li:not(:last-child) {
1680
+ margin-right: 4px;
1681
+ }
1682
+ .co-pagination-bar li.pagination-next, .co-pagination-bar li.pagination-previous {
1683
+ cursor: pointer;
1684
+ flex-grow: 0;
1685
+ min-width: 40px;
1686
+ width: auto;
1687
+ text-align: center;
1688
+ padding: 0 15px;
1689
+ }
1690
+ .co-pagination-bar .pagination-next .pagination-next-arrow {
1691
+ content: "";
1692
+ display: inline-block;
1693
+ padding: 3px;
1694
+ transform: rotate(-45deg);
1695
+ }
1696
+ .co-pagination-bar .pagination-next a {
1697
+ margin-right: 5px;
1698
+ }
1699
+ .co-pagination-bar .pagination-previous .pagination-previous-arrow {
1700
+ content: "";
1701
+ display: inline-block;
1702
+ padding: 3px;
1703
+ transform: rotate(135deg);
1704
+ }
1705
+ .co-pagination-bar .pagination-previous a {
1706
+ margin-left: 5px;
1707
+ }
1708
+ .co-pagination-bar li.current {
1709
+ font-size: 12px;
1710
+ font-weight: bold;
1711
+ opacity: 1;
1712
+ cursor: default;
1713
+ }
1714
+ .co-pagination-bar li.disabled {
1715
+ cursor: default;
1716
+ }
1717
+ .co-pagination-bar li.disabled div, .co-pagination-bar li.disabled a {
1718
+ opacity: 0.2;
1719
+ }
1720
+ .co-pagination-bar {
1721
+ color: #171721;
1722
+ }
1723
+ .co-pagination-bar li {
1724
+ border: 1px solid #CCCCCC;
1725
+ background-color: white;
1726
+ }
1727
+ .co-pagination-bar .pagination-next-arrow {
1728
+ border: solid #1A73E8;
1729
+ border-width: 0 3px 3px 0;
1730
+ }
1731
+ .co-pagination-bar .pagination-previous-arrow {
1732
+ border: solid #1A73E8;
1733
+ border-width: 0 3px 3px 0;
1734
+ }
1735
+ .co-pagination-bar li.current {
1736
+ color: #171721;
1737
+ border: 1px solid #1A73E8;
1738
+ }
1739
+ .co-carousel {
1740
+ position: relative;
1741
+ }
1742
+ .co-carousel .carousel-wrapper {
1743
+ position: relative;
1744
+ display: flex;
1745
+ flex-direction: row;
1746
+ grid-column-gap: 10px;
1747
+ column-gap: 10px;
1748
+ padding: 0;
1749
+ overflow: hidden;
1750
+ scroll-behavior: smooth;
1751
+ }
1752
+ .co-carousel .carousel-wrapper > * {
1753
+ flex-shrink: 0;
1754
+ }
1755
+ .co-carousel .carousel-navigate-button {
1756
+ position: absolute;
1757
+ top: 50%;
1758
+ transform: translateY(-50%);
1759
+ display: flex;
1760
+ align-items: center;
1761
+ height: 100%;
1762
+ overflow: hidden;
1763
+ z-index: 1;
1764
+ padding: 0 10px;
1765
+ }
1766
+ .co-carousel .carousel-navigate-button.right {
1767
+ right: 0;
1768
+ }
1769
+ .co-carousel .carousel-navigate-button .carousel-navigate-button-wrapper {
1770
+ height: 50px;
1771
+ width: 50px;
1772
+ background: white;
1773
+ box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
1774
+ display: flex;
1775
+ align-items: center;
1776
+ justify-content: center;
1777
+ border-radius: 50%;
1778
+ opacity: 0.5;
1779
+ pointer-events: all;
1780
+ }
1781
+ .co-carousel .carousel-navigate-button .carousel-navigate-button-wrapper svg {
1782
+ width: 75%;
1783
+ height: 75%;
1784
+ vertical-align: middle;
1785
+ fill: grey;
1786
+ }
1787
+ .co-carousel .carousel-navigate-button:hover .carousel-navigate-button-wrapper {
1788
+ opacity: 1;
1789
+ }
1790
+ .co-carousel-3d {
1791
+ display: block;
1792
+ width: 100%;
1793
+ height: 100%;
1794
+ }
1795
+ .co-carousel-3d .carousel-3d-canvas-wrapper {
1796
+ position: relative;
1797
+ height: 100%;
1798
+ width: 100%;
1799
+ }
1800
+ .co-carousel-3d .carousel-wrapper {
1801
+ position: absolute;
1802
+ overflow: hidden;
1803
+ width: 100%;
1804
+ height: 100%;
1805
+ z-index: 1;
1806
+ pointer-events: none;
1807
+ -webkit-touch-callout: none;
1808
+ /* iOS Safari */
1809
+ -webkit-user-select: none;
1810
+ /* Safari */
1811
+ /* Konqueror HTML */
1812
+ /* Firefox */
1813
+ /* Internet Explorer/Edge */
1814
+ user-select: none;
1815
+ /* Non-prefixed version, currently
1816
+ supported by Chrome and Opera */
1817
+ }
1818
+ .co-carousel-3d .carousel-navigate-button {
1819
+ position: absolute;
1820
+ display: flex;
1821
+ align-items: center;
1822
+ height: 100%;
1823
+ overflow: hidden;
1824
+ z-index: 1;
1825
+ padding: 0 10px;
1826
+ }
1827
+ .co-carousel-3d .carousel-navigate-button.right {
1828
+ right: 0;
1829
+ }
1830
+ .co-carousel-3d .carousel-navigate-button .carousel-navigate-button-wrapper {
1831
+ height: 50px;
1832
+ width: 50px;
1833
+ background: white;
1834
+ box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
1835
+ display: flex;
1836
+ align-items: center;
1837
+ justify-content: center;
1838
+ border-radius: 50%;
1839
+ opacity: 0.5;
1840
+ pointer-events: all;
1841
+ }
1842
+ .co-carousel-3d .carousel-navigate-button .carousel-navigate-button-wrapper svg {
1843
+ width: 75%;
1844
+ height: 75%;
1845
+ vertical-align: middle;
1846
+ fill: grey;
1847
+ }
1848
+ .co-carousel-3d .carousel-navigate-button:hover .carousel-navigate-button-wrapper {
1849
+ opacity: 1;
1850
+ }
1851
+ ::placeholder {
1852
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
1853
+ color: #8083A3;
1854
+ font-style: normal;
1855
+ opacity: 1;
1856
+ /* Firefox */
1857
+ }
1858
+ :-ms-input-placeholder {
1859
+ /* Internet Explorer 10-11 */
1860
+ color: #8083A3;
1861
+ font-style: normal;
1862
+ }
1863
+ ::-ms-input-placeholder {
1864
+ /* Microsoft Edge */
1865
+ color: #8083A3;
1866
+ font-style: normal;
1867
+ }
1868
+ .co-input-textarea {
1869
+ display: block;
1870
+ position: relative;
1871
+ background: white;
1872
+ border-radius: 5px;
1873
+ font-family: "Public sans";
1874
+ font-size: 12px;
1875
+ min-height: 40px;
1876
+ }
1877
+ .co-input-textarea:before {
1878
+ content: "";
1879
+ box-shadow: inset 0 0 0 1px #CCCCCC;
1880
+ border-radius: 5px;
1881
+ position: absolute;
1882
+ pointer-events: none;
1883
+ top: 0;
1884
+ left: 0;
1885
+ width: 100%;
1886
+ height: 100%;
1887
+ z-index: 1;
1888
+ }
1889
+ .co-input-textarea .required-indicator {
1890
+ display: none;
1891
+ position: absolute;
1892
+ background: transparent;
1893
+ top: 7px;
1894
+ right: 5px;
1895
+ pointer-events: none;
1896
+ }
1897
+ .co-input-textarea .required-indicator:before {
1898
+ display: flex;
1899
+ align-items: center;
1900
+ justify-content: center;
1901
+ content: "✓";
1902
+ width: 7px;
1903
+ height: 7px;
1904
+ background: transparent;
1905
+ color: #429777;
1906
+ }
1907
+ .co-input-textarea:not(.custom-height) {
1908
+ height: 40px;
1909
+ }
1910
+ .co-input-textarea.required .required-indicator {
1911
+ display: flex;
1912
+ }
1913
+ .co-input-textarea.required.invalid .required-indicator:before, .co-input-textarea.required:not(.hasvalue) .required-indicator:before {
1914
+ content: "*";
1915
+ color: #C1002A;
1916
+ }
1917
+ .co-input-textarea.has-own-label label {
1918
+ width: 100%;
1919
+ text-align: left;
1920
+ color: #8083A3;
1921
+ margin-left: 10px;
1922
+ font-size: 12px;
1923
+ position: absolute;
1924
+ top: 50%;
1925
+ transform: translateY(-50%);
1926
+ transform-origin: top left;
1927
+ pointer-events: none;
1928
+ z-index: 1;
1929
+ transition: all 0.2s;
1930
+ overflow: hidden;
1931
+ white-space: nowrap;
1932
+ text-overflow: ellipsis;
1933
+ }
1934
+ .co-input-textarea.has-own-label.cc-input-focused:not(.no-focus-line) {
1935
+ border-style: solid;
1936
+ border-width: 0;
1937
+ border-color: #1A73E8;
1938
+ }
1939
+ .co-input-textarea.has-own-label.cc-input-focused:not(.no-focus-line):before {
1940
+ content: "";
1941
+ box-shadow: inset 0 0 0 1px #1A73E8;
1942
+ border-radius: 5px;
1943
+ position: absolute;
1944
+ pointer-events: none;
1945
+ top: 0;
1946
+ left: 0;
1947
+ width: 100%;
1948
+ height: 100%;
1949
+ z-index: 1;
1950
+ }
1951
+ .co-input-textarea.has-own-label.cc-input-focused label, .co-input-textarea.has-own-label.hasvalue label, .co-input-textarea.has-own-label.isDate label {
1952
+ transform: scale(0.92);
1953
+ top: 5px;
1954
+ }
1955
+ .co-input-textarea:not(.read-only):hover {
1956
+ border-style: solid;
1957
+ border-width: 0;
1958
+ border-color: #1A73E8;
1959
+ }
1960
+ .co-input-textarea:not(.read-only):hover:before {
1961
+ content: "";
1962
+ box-shadow: inset 0 0 0 2px #1A73E8;
1963
+ border-radius: 5px;
1964
+ position: absolute;
1965
+ pointer-events: none;
1966
+ top: 0;
1967
+ left: 0;
1968
+ width: 100%;
1969
+ height: 100%;
1970
+ z-index: 1;
1971
+ }
1972
+ .co-input-textarea textarea {
1973
+ font-family: "Public sans";
1974
+ font-size: 12px;
1975
+ margin: calc((40px / 100) * 60) 0 0;
1976
+ padding: 0 0 5px 10px;
1977
+ width: 100%;
1978
+ height: 100%;
1979
+ outline: none;
1980
+ border: none;
1981
+ resize: vertical;
1982
+ }
1983
+ .co-input-textarea {
1984
+ color: #22313C;
1985
+ }
1986
+ .co-input-textarea textarea {
1987
+ background: transparent;
1988
+ border-color: #CCCCCC;
1989
+ }
1990
+ .co-dialog-wizard {
1991
+ font-family: "Public sans";
1992
+ font-size: 12px;
1993
+ }
1994
+ .co-dialog-wizard .co-dialog-wizard-overlay {
1995
+ position: fixed;
1996
+ top: 0;
1997
+ left: 0;
1998
+ width: 100%;
1999
+ height: 100%;
2000
+ z-index: 800;
2001
+ }
2002
+ .co-dialog-wizard .co-dialog-wizard-wrapper {
2003
+ position: fixed;
2004
+ top: 50%;
2005
+ left: 50%;
2006
+ transform: translate(-50%, -50%);
2007
+ min-width: 250px;
2008
+ max-width: 100vw;
2009
+ z-index: 801;
2010
+ height: auto;
2011
+ width: auto;
2012
+ border-radius: 20px;
2013
+ }
2014
+ .co-dialog-wizard .dialog-header {
2015
+ display: flex;
2016
+ flex-direction: row;
2017
+ justify-content: space-between;
2018
+ align-items: center;
2019
+ font-family: "Public sans";
2020
+ font-size: 12px;
2021
+ padding: 10px;
2022
+ border-radius: 20px 20px 0 0;
2023
+ margin: 0 0 0 10px;
2024
+ }
2025
+ .co-dialog-wizard .dialog-content {
2026
+ font-family: "Public sans";
2027
+ font-size: 12px;
2028
+ padding: 10px;
2029
+ border-radius: 20px;
2030
+ }
2031
+ .co-dialog-wizard .dialog-close-button {
2032
+ cursor: pointer;
2033
+ }
2034
+ .co-dialog-wizard .co-dialog-wizard-divider {
2035
+ margin: 0 10px 0 10px;
2036
+ border: none;
2037
+ border-top: 1px solid #DCE4EA;
2038
+ }
2039
+ .co-dialog-wizard .co-dialog-wizard-overlay {
2040
+ background-color: rgba(0, 0, 0, 0.3);
2041
+ -webkit-backdrop-filter: blur(2px);
2042
+ backdrop-filter: blur(2px);
2043
+ }
2044
+ .co-dialog-wizard .co-dialog-wizard-wrapper {
2045
+ background-color: #FFFFFF;
2046
+ box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.5);
2047
+ }
2048
+ .co-dialog-wizard .dialog-content {
2049
+ color: #22313C;
2050
+ background-color: #FFFFFF;
2051
+ }
2052
+ ::placeholder {
2053
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
2054
+ color: #8083A3;
2055
+ font-style: normal;
2056
+ opacity: 1;
2057
+ /* Firefox */
2058
+ }
2059
+ :-ms-input-placeholder {
2060
+ /* Internet Explorer 10-11 */
2061
+ color: #8083A3;
2062
+ font-style: normal;
2063
+ }
2064
+ ::-ms-input-placeholder {
2065
+ /* Microsoft Edge */
2066
+ color: #8083A3;
2067
+ font-style: normal;
2068
+ }
2069
+ .co-input-date-range .inputs-wrapper {
2070
+ position: relative;
2071
+ display: flex;
2072
+ width: 100%;
2073
+ border-radius: 5px;
2074
+ }
2075
+ .co-input-date-range .inputs-wrapper:before {
2076
+ content: "";
2077
+ box-shadow: inset 0 0 0 1px #CCCCCC;
2078
+ border-radius: 5px;
2079
+ position: absolute;
2080
+ pointer-events: none;
2081
+ top: 0;
2082
+ left: 0;
2083
+ width: 100%;
2084
+ height: 100%;
2085
+ z-index: 1;
2086
+ }
2087
+ .co-input-date-range .inputs-wrapper:hover {
2088
+ border-style: solid;
2089
+ border-width: 0;
2090
+ border-color: #1A73E8;
2091
+ }
2092
+ .co-input-date-range .inputs-wrapper:hover:before {
2093
+ content: "";
2094
+ box-shadow: inset 0 0 0 2px #1A73E8;
2095
+ border-radius: 5px;
2096
+ position: absolute;
2097
+ pointer-events: none;
2098
+ top: 0;
2099
+ left: 0;
2100
+ width: 100%;
2101
+ height: 100%;
2102
+ z-index: 1;
2103
+ }
2104
+ .co-input-date-range .inputs-wrapper:focus-within {
2105
+ border-style: solid;
2106
+ border-width: 0;
2107
+ border-color: #1A73E8;
2108
+ }
2109
+ .co-input-date-range .inputs-wrapper:focus-within:before {
2110
+ content: "";
2111
+ box-shadow: inset 0 0 0 1px #1A73E8;
2112
+ border-radius: 5px;
2113
+ position: absolute;
2114
+ pointer-events: none;
2115
+ top: 0;
2116
+ left: 0;
2117
+ width: 100%;
2118
+ height: 100%;
2119
+ z-index: 1;
2120
+ }
2121
+ .co-input-date-range .inputs-wrapper .co-input-text {
2122
+ width: inherit;
2123
+ height: calc(40px - 2px);
2124
+ border: none;
2125
+ }
2126
+ .co-input-date-range .inputs-wrapper .co-input-text:before {
2127
+ box-shadow: none;
2128
+ }
2129
+ .co-input-date-range .inputs-wrapper .co-input-text:hover {
2130
+ border: none;
2131
+ }
2132
+ .co-input-date-range .inputs-wrapper .co-input-text:hover:before {
2133
+ box-shadow: none;
2134
+ }
2135
+ .co-input-date-range .inputs-wrapper .co-input-text:focus {
2136
+ border: none;
2137
+ }
2138
+ .co-input-date-range .inputs-wrapper .co-input-text:focus:before {
2139
+ box-shadow: none;
2140
+ }
2141
+ .co-input-date-range .inputs-wrapper .co-input-text:first-child {
2142
+ border-right: 0;
2143
+ border-top-right-radius: 0;
2144
+ border-bottom-right-radius: 0;
2145
+ }
2146
+ .co-input-date-range .inputs-wrapper .co-input-text:first-child label {
2147
+ white-space: nowrap;
2148
+ overflow: visible;
2149
+ }
2150
+ .co-input-date-range .inputs-wrapper .co-input-text:nth-child(2) {
2151
+ border-left: 0;
2152
+ border-top-left-radius: 0;
2153
+ border-bottom-left-radius: 0;
2154
+ }
2155
+ .co-double-calendar .dual-calendar-wrapper {
2156
+ position: fixed;
2157
+ display: flex;
2158
+ z-index: 999;
2159
+ }
2160
+ .co-double-calendar .dual-calendar-wrapper .date-picker-container {
2161
+ position: inherit;
2162
+ height: 100%;
2163
+ }
2164
+ .co-double-calendar .dual-calendar-wrapper .calendar-template {
2165
+ display: flex;
2166
+ }
2167
+ ::placeholder {
2168
+ /* Chrome, Firefox, Opera, Safari 10.1+ */
2169
+ color: #8083A3;
2170
+ font-style: normal;
2171
+ opacity: 1;
2172
+ /* Firefox */
2173
+ }
2174
+ :-ms-input-placeholder {
2175
+ /* Internet Explorer 10-11 */
2176
+ color: #8083A3;
2177
+ font-style: normal;
2178
+ }
2179
+ ::-ms-input-placeholder {
2180
+ /* Microsoft Edge */
2181
+ color: #8083A3;
2182
+ font-style: normal;
2183
+ }
2184
+ .co-filter-item {
2185
+ display: block;
2186
+ font-family: "Public sans";
2187
+ font-size: 12px;
2188
+ border-radius: 0;
2189
+ }
2190
+ .co-filter-item .co-collapsible {
2191
+ width: 95%;
2192
+ }
2193
+ .co-filter-item .co-collapsible .collapsible-title {
2194
+ font-family: "Public sans";
2195
+ font-size: 12px;
2196
+ font-weight: bold;
2197
+ padding: 2px;
2198
+ }
2199
+ .co-filter-item .co-collapsible .collapsible-content {
2200
+ padding: 0 10px 20px 10px;
2201
+ }
2202
+ .co-filter-item .co-collapsible .expand-icon-wrapper .expand-icon {
2203
+ height: 30px;
2204
+ width: 30px;
2205
+ }
2206
+ .co-filter-item .co-collapsible .collapsible-header .collapsible-button {
2207
+ border-color: #1A73E8;
2208
+ color: #1A73E8;
2209
+ }
2210
+ .co-filter-item .co-collapsible .collapsible-header .collapsible-button:hover {
2211
+ background: #1A73E8;
2212
+ color: #FFFFFF;
2213
+ }
2214
+ .co-filter-item .co-filter-item-collection-content .no-results {
2215
+ display: flex;
2216
+ align-items: center;
2217
+ height: 50px;
2218
+ }
2219
+ .co-filter-item .co-filter-item-slider-content {
2220
+ display: flex;
2221
+ align-items: center;
2222
+ flex-direction: row;
2223
+ grid-column-gap: 5px;
2224
+ column-gap: 5px;
2225
+ }
2226
+ .co-filter-item .co-filter-item-collection-results, .co-filter-item .co-filter-item-custom-content {
2227
+ display: flex;
2228
+ flex-direction: column;
2229
+ grid-row-gap: 5px;
2230
+ row-gap: 5px;
2231
+ margin: 10px 0;
2232
+ }
2233
+ .co-filter-item .co-filter-item-collection-result-item {
2234
+ display: flex;
2235
+ align-items: center;
2236
+ }
2237
+ .co-filter-item .co-filter-item-collection-result-item .co-filter-item-amount {
2238
+ display: flex;
2239
+ align-items: center;
2240
+ height: 100%;
2241
+ font-size: 10px;
2242
+ opacity: 0.7;
2243
+ margin: 0 0 0 5px;
2244
+ }
2245
+ .co-filter-item .co-radio-button {
2246
+ height: auto;
2247
+ padding: 0;
2248
+ border: none;
2249
+ }
2250
+ .co-filter-item a {
2251
+ display: flex;
2252
+ align-items: center;
2253
+ cursor: pointer;
2254
+ }
2255
+ .co-filter-item a co-icon {
2256
+ transform: translateX(-7px);
2257
+ }
2258
+ .co-filter-item {
2259
+ background-color: #FFFFFF;
2260
+ border-bottom: 1px solid #DCE4EA;
2261
+ }
2262
+ .co-filter-item .collapsible-title {
2263
+ color: #172121;
2264
+ }
2265
+ .co-filter-item .collapsible-header {
2266
+ border-color: #DCE4EA;
2267
+ border-style: solid;
2268
+ border-width: 0;
2269
+ }
2270
+ .co-filter-item .co-filter-item-collection-results {
2271
+ background-color: #FFFFFF;
2272
+ }
2273
+ .co-filter-item .clickable {
2274
+ color: #1A73E8;
2275
+ }
2276
+ .co-filter-item .clickable span {
2277
+ color: #1A73E8;
2278
+ }
2279
+ /* Inputs */
2280
+ /**********/
2281
+ /* checkbox */
2282
+ /************/
2283
+ /* radiobutton */
2284
+ /***************/
2285
+ /* dialog */
2286
+ /**********/
2287
+ .co-grid-toolbar-button .grid-toolbar-button-wrapper {
2288
+ transform: scale(0.8);
2289
+ border-radius: 5px;
2290
+ border: 1px solid black;
2291
+ background: white;
2292
+ cursor: pointer;
2293
+ }
2294
+ .co-grid-toolbar-button .grid-toolbar-button-wrapper.disabled {
2295
+ opacity: 0.6;
2296
+ cursor: default;
2297
+ background: #e3e3e3;
2298
+ }
2299
+ .co-input-checkbox {
2300
+ font-family: "Public sans";
2301
+ font-size: 12px;
2302
+ display: flex;
2303
+ align-items: center;
2304
+ }
2305
+ .co-input-checkbox.read-only {
2306
+ opacity: 0.5;
2307
+ }
2308
+ .co-input-checkbox .checkbox {
2309
+ display: flex;
2310
+ cursor: pointer;
2311
+ position: relative;
2312
+ flex-shrink: 0;
2313
+ align-items: center;
2314
+ justify-content: center;
2315
+ justify-items: center;
2316
+ width: 18px;
2317
+ height: 18px;
2318
+ border-radius: 0;
2319
+ border-style: solid;
2320
+ border-width: 2px;
2321
+ margin: 0 10px 0 0;
2322
+ }
2323
+ .co-input-checkbox .checkmark {
2324
+ opacity: 0;
2325
+ }
2326
+ .co-input-checkbox .checkmark.show {
2327
+ opacity: 1;
2328
+ transform: scaleX(-1) rotate(135deg);
2329
+ height: 10.8px;
2330
+ width: 6.3px;
2331
+ transform-origin: left top;
2332
+ border-right: 2px solid #FFFFFF;
2333
+ border-top: 2px solid #FFFFFF;
2334
+ content: "";
2335
+ left: 1.26px;
2336
+ top: 6.75px;
2337
+ position: absolute;
2338
+ }
2339
+ .co-input-checkbox .label.clickable {
2340
+ cursor: pointer;
2341
+ }
2342
+ @keyframes checkmark {
2343
+ 0% {
2344
+ height: 0;
2345
+ width: 0;
2346
+ opacity: 1;
2347
+ }
2348
+ 20% {
2349
+ height: 0;
2350
+ width: 6.3px;
2351
+ opacity: 1;
2352
+ }
2353
+ 40% {
2354
+ height: 10.8px;
2355
+ width: 6.3px;
2356
+ opacity: 1;
2357
+ }
2358
+ 100% {
2359
+ height: 10.8px;
2360
+ width: 6.3px;
2361
+ opacity: 1;
2362
+ }
2363
+ }
2364
+ .co-input-checkbox .checkbox {
2365
+ border-color: #CCCCCC;
2366
+ background-color: #F5F5FC;
2367
+ }
2368
+ .co-input-checkbox .checkbox.checked {
2369
+ border-color: #1A73E8;
2370
+ background-color: #1A73E8;
2371
+ }
2372
+ .co-icon-collapse-handle {
2373
+ background: #FFFFFF;
2374
+ height: 25px;
2375
+ width: 35px;
2376
+ border-radius: 15px;
2377
+ display: flex;
2378
+ align-items: center !important;
2379
+ justify-content: center !important;
2380
+ border: 1px solid #DCE4EA;
2381
+ cursor: pointer;
2382
+ flex-shrink: 0;
2383
+ top: 50%;
2384
+ transform: translateY(-50%);
2385
+ overflow: hidden;
2386
+ }
2387
+ .co-icon-collapse-handle.two-arrows co-icon {
2388
+ position: relative;
2389
+ width: 25px;
2390
+ height: 25px;
2391
+ }
2392
+ .co-icon-collapse-handle.two-arrows co-icon.first {
2393
+ top: 10px;
2394
+ }
2395
+ .co-icon-collapse-handle.two-arrows co-icon.second {
2396
+ bottom: 10px;
2397
+ }
2398
+ .co-icon-collapse-handle.two-arrows.arrows-orientated-horizontally div.wrap {
2399
+ display: flex;
2400
+ flex-direction: row;
2401
+ }
2402
+ .co-icon-collapse-handle.two-arrows.arrows-orientated-horizontally co-icon.first {
2403
+ left: 10px;
2404
+ }
2405
+ .co-icon-collapse-handle.two-arrows.arrows-orientated-horizontally co-icon.second {
2406
+ right: 10px;
2407
+ }
2408
+ .co-icon-collapse-handle.vertical {
2409
+ transform: rotate(90deg);
2410
+ }
2411
+ .co-icon-collapse-handle.vertical co-icon.right {
2412
+ transform: rotate(0);
2413
+ }
2414
+ .co-icon-collapse-handle.vertical co-icon.bottom {
2415
+ transform: rotate(90deg);
2416
+ }
2417
+ .co-icon-collapse-handle.vertical co-icon.left {
2418
+ transform: rotate(180deg);
2419
+ }
2420
+ .co-icon-collapse-handle.vertical co-icon.top {
2421
+ transform: rotate(270deg);
2422
+ }
2423
+ .co-icon-collapse-handle:hover {
2424
+ background: #1A73E8;
2425
+ }
2426
+ .co-icon-collapse-handle:hover co-icon ::ng-deep [fill] {
2427
+ fill: #FFFFFF;
2428
+ }
2429
+ .co-icon-collapse-handle co-icon {
2430
+ width: 35px;
2431
+ height: 35px;
2432
+ transition: transform 0.2s;
2433
+ }
2434
+ .co-icon-collapse-handle co-icon ::ng-deep [fill] {
2435
+ fill: red;
2436
+ }
2437
+ .co-icon-collapse-handle co-icon.up {
2438
+ transform: rotate(0);
2439
+ }
2440
+ .co-icon-collapse-handle co-icon.right {
2441
+ transform: rotate(90deg);
2442
+ }
2443
+ .co-icon-collapse-handle co-icon.bottom {
2444
+ transform: rotate(180deg);
2445
+ }
2446
+ .co-icon-collapse-handle co-icon.left {
2447
+ transform: rotate(270deg);
2448
+ }
2449
+ .co-icon-collapse-handle div.wrap {
2450
+ display: flex;
2451
+ flex-direction: column;
2452
+ }
2453
+ .co-view-mode-buttons {
2454
+ display: flex;
2455
+ flex-direction: row;
2456
+ justify-content: flex-end;
2457
+ align-items: center;
2458
+ }
2459
+ .co-view-mode-buttons .view-button {
2460
+ justify-content: center;
2461
+ padding: 0;
2462
+ height: 30px;
2463
+ width: 30px;
2464
+ border-radius: 3px;
2465
+ }
2466
+ .co-view-mode-buttons .view-button .co-icon {
2467
+ height: 20px;
2468
+ width: 20px;
2469
+ }
2470
+ .co-view-mode-buttons .view-button:not(.circle) {
2471
+ padding: 0;
2472
+ }
2473
+ .co-view-mode-buttons .view-button {
2474
+ background-color: #FFFFFF;
2475
+ }
2476
+ .co-view-mode-buttons .view-button [fill] {
2477
+ fill: #171721;
2478
+ }
2479
+ .co-view-mode-buttons .view-button:hover {
2480
+ background-color: #FFFFFF;
2481
+ }
2482
+ .co-view-mode-buttons .view-button:hover [fill] {
2483
+ fill: #171721;
2484
+ }
2485
+ .co-view-mode-buttons .view-button.selected {
2486
+ background-color: #3e7eff;
2487
+ }
2488
+ .co-view-mode-buttons .view-button.selected [fill] {
2489
+ fill: #FFFFFF;
2490
+ }
2491
+ .co-checkmark-overlay .checkmark-overlay-wrapper {
2492
+ position: absolute;
2493
+ left: calc(50% - 30px / 2);
2494
+ top: calc(50% - 30px / 2);
2495
+ z-index: 999;
2496
+ }
2497
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button {
2498
+ display: flex;
2499
+ align-items: center;
2500
+ justify-content: center;
2501
+ position: relative;
2502
+ height: 30px;
2503
+ width: 30px;
2504
+ }
2505
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner .animate {
2506
+ animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
2507
+ }
2508
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner {
2509
+ display: inline-block;
2510
+ position: relative;
2511
+ width: 30px;
2512
+ height: 30px;
2513
+ padding: calc((30px - calc(30px - (.2 * 30px))) / 2);
2514
+ }
2515
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner div {
2516
+ position: absolute;
2517
+ display: block;
2518
+ box-sizing: border-box;
2519
+ height: calc(30px - (.2 * 30px));
2520
+ width: calc(30px - (.2 * 30px));
2521
+ border-width: 2px;
2522
+ border-style: solid;
2523
+ border-radius: 50%;
2524
+ }
2525
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner div:nth-child(1) {
2526
+ animation-delay: -0.45s;
2527
+ }
2528
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner div:nth-child(2) {
2529
+ animation-delay: -0.3s;
2530
+ }
2531
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .save-button-spinner div:nth-child(3) {
2532
+ animation-delay: -0.15s;
2533
+ }
2534
+ .co-checkmark-overlay .checkmark-overlay-wrapper .checkmark-buttons-button.save .spinner-checkmark {
2535
+ position: absolute;
2536
+ opacity: 1;
2537
+ transform: scaleX(-1) translate(85%, -5%) rotate(135deg);
2538
+ height: calc(0.5 * 30px);
2539
+ width: calc(0.3 * 30px);
2540
+ transform-origin: left top;
2541
+ content: "";
2542
+ left: 50%;
2543
+ top: 50%;
2544
+ }
2545
+ @keyframes spinner {
2546
+ 0% {
2547
+ transform: rotate(0deg);
2548
+ }
2549
+ 100% {
2550
+ transform: rotate(360deg);
2551
+ }
2552
+ }
2553
+ @keyframes checkmark {
2554
+ 0% {
2555
+ height: 0;
2556
+ width: 0;
2557
+ opacity: 1;
2558
+ }
2559
+ 20% {
2560
+ height: 0;
2561
+ width: calc(0.3 * 30px);
2562
+ opacity: 1;
2563
+ }
2564
+ 40% {
2565
+ height: calc(0.5 * 30px);
2566
+ width: calc(0.3 * 30px);
2567
+ opacity: 1;
2568
+ }
2569
+ 100% {
2570
+ height: calc(0.5 * 30px);
2571
+ width: calc(0.3 * 30px);
2572
+ opacity: 1;
2573
+ }
2574
+ }
2575
+ .co-checkmark-overlay .checkmark-buttons-button.save .save-button-spinner .animate {
2576
+ border-color: green transparent transparent transparent;
2577
+ }
2578
+ .co-checkmark-overlay .checkmark-buttons-button.save .save-button-spinner div {
2579
+ border-color: green;
2580
+ }
2581
+ .co-checkmark-overlay .checkmark-buttons-button.save .spinner-checkmark {
2582
+ border-right: 3px solid green;
2583
+ border-top: 3px solid green;
2584
+ }
2585
+ .co-tooltip {
2586
+ font-family: "Public sans";
2587
+ font-size: 12px;
2588
+ position: fixed;
2589
+ min-height: 20px;
2590
+ min-width: 200px;
2591
+ display: flex;
2592
+ flex-direction: row;
2593
+ align-items: center;
2594
+ grid-column-gap: 10px;
2595
+ column-gap: 10px;
2596
+ padding: 10px;
2597
+ z-index: 999999;
2598
+ border-radius: 5px;
2599
+ border: 2px solid;
2600
+ }
2601
+ .co-tooltip::after, .co-tooltip::before {
2602
+ border: solid transparent;
2603
+ content: " ";
2604
+ display: block;
2605
+ height: 0;
2606
+ pointer-events: none;
2607
+ position: absolute;
2608
+ width: 0;
2609
+ bottom: -20px;
2610
+ }
2611
+ .co-tooltip::after {
2612
+ left: 20px;
2613
+ border-width: 10px;
2614
+ }
2615
+ .co-tooltip::before {
2616
+ margin-left: 12px;
2617
+ border-width: 8px;
2618
+ z-index: 1;
2619
+ bottom: -16px;
2620
+ }
2621
+ .co-tooltip.bottom::after, .co-tooltip.bottom::before {
2622
+ bottom: 100%;
2623
+ }
2624
+ .co-tooltip {
2625
+ background-color: #BBD9E6;
2626
+ color: #171721;
2627
+ border-color: black;
2628
+ }
2629
+ .co-tooltip::after {
2630
+ border-bottom-color: transparent;
2631
+ border-top-color: black;
2632
+ }
2633
+ .co-tooltip::before {
2634
+ border-bottom-color: transparent;
2635
+ border-top-color: #BBD9E6;
2636
+ }
2637
+ .co-tooltip.bottom::after {
2638
+ border-top-color: transparent;
2639
+ border-bottom-color: black;
2640
+ }
2641
+ .co-tooltip.bottom::before {
2642
+ border-top-color: transparent;
2643
+ border-bottom-color: #BBD9E6;
2644
+ }
2645
+ .co-list-of-values {
2646
+ display: block;
2647
+ position: relative;
2648
+ font-family: "Public sans";
2649
+ font-size: 12px;
2650
+ height: 40px;
2651
+ background: white;
2652
+ border-radius: 5px;
2653
+ overflow: hidden;
2654
+ }
2655
+ .co-list-of-values:before {
2656
+ content: "";
2657
+ box-shadow: inset 0 0 0 1px #CCCCCC;
2658
+ border-radius: 5px;
2659
+ position: absolute;
2660
+ pointer-events: none;
2661
+ top: 0;
2662
+ left: 0;
2663
+ width: 100%;
2664
+ height: 100%;
2665
+ z-index: 1;
2666
+ }
2667
+ .co-list-of-values:not(.read-only):hover {
2668
+ border-style: solid;
2669
+ border-width: 0;
2670
+ border-color: #1A73E8;
2671
+ }
2672
+ .co-list-of-values:not(.read-only):hover:before {
2673
+ content: "";
2674
+ box-shadow: inset 0 0 0 2px #1A73E8;
2675
+ border-radius: 5px;
2676
+ position: absolute;
2677
+ pointer-events: none;
2678
+ top: 0;
2679
+ left: 0;
2680
+ width: 100%;
2681
+ height: 100%;
2682
+ z-index: 1;
2683
+ }
2684
+ .co-list-of-values .co-input-text {
2685
+ height: 100%;
2686
+ }
2687
+ .co-list-of-values .co-input-text:before {
2688
+ box-shadow: none;
2689
+ }
2690
+ .co-list-of-values .co-input-text:hover:before, .co-list-of-values .co-input-text:not(.read-only):hover:before {
2691
+ box-shadow: none;
2692
+ }
2693
+ .co-list-of-values .co-input-text .right-icon {
2694
+ min-width: 0;
2695
+ }
2696
+ .co-list-of-values .co-input-text .input-text-right-icon svg {
2697
+ width: 24px;
2698
+ height: 24px;
2699
+ padding: 5px;
2700
+ background: #f5f5fc;
2701
+ border-radius: 100%;
2702
+ }
2703
+ .co-list-of-values.cc-input-focused:not(.no-focus-line) {
2704
+ border-style: solid;
2705
+ border-width: 0;
2706
+ border-color: #1A73E8;
2707
+ }
2708
+ .co-list-of-values.cc-input-focused:not(.no-focus-line):before {
2709
+ content: "";
2710
+ box-shadow: inset 0 0 0 1px #1A73E8;
2711
+ border-radius: 5px;
2712
+ position: absolute;
2713
+ pointer-events: none;
2714
+ top: 0;
2715
+ left: 0;
2716
+ width: 100%;
2717
+ height: 100%;
2718
+ z-index: 1;
2719
+ }
2720
+ .co-list-of-values .multiselect-chips-wrapper {
2721
+ display: flex;
2722
+ flex-wrap: wrap;
2723
+ grid-column-gap: 5px;
2724
+ column-gap: 5px;
2725
+ grid-row-gap: 2px;
2726
+ row-gap: 2px;
2727
+ padding: 0 10px 10px 10px;
2728
+ }
2729
+ .co-list-of-values .multiselect-chips-wrapper .chips {
2730
+ font-family: "Public sans";
2731
+ font-size: 10px;
2732
+ color: #FFFFFF;
2733
+ display: flex;
2734
+ align-items: center;
2735
+ background: #429777;
2736
+ border-radius: 5px;
2737
+ padding: 2px 7px;
2738
+ -webkit-user-select: none;
2739
+ user-select: none;
2740
+ }
2741
+ .co-list-of-values .multiselect-chips-wrapper .remove-chip-icon {
2742
+ cursor: pointer;
2743
+ height: 20px;
2744
+ width: 20px;
2745
+ }
2746
+ .co-list-of-values .multiselect-chips-wrapper .remove-chip-icon svg {
2747
+ fill: #FFFFFF;
2748
+ }
2749
+ .co-list-of-values .multiselect-chips-wrapper .remove-chip-icon [fill] {
2750
+ fill: #FFFFFF;
2751
+ }
2752
+ .co-list-of-values .multiselect-chips-wrapper .input-text-clear-button {
2753
+ display: flex;
2754
+ visibility: hidden;
2755
+ cursor: pointer;
2756
+ height: 20px;
2757
+ width: 20px;
2758
+ align-self: end;
2759
+ padding: 0 0 5px 0;
2760
+ }
2761
+ .co-list-of-values .multiselect-chips-wrapper .input-text-clear-button.show {
2762
+ visibility: visible;
2763
+ }
2764
+ .co-list-of-values.multi-select.hasvalue {
2765
+ height: auto;
2766
+ }
2767
+ .co-list-of-values-popup {
2768
+ font-family: "Public sans";
2769
+ font-size: 12px;
2770
+ }
2771
+ .co-list-of-values-popup .lov-options {
2772
+ display: flex;
2773
+ flex-direction: column;
2774
+ overflow: hidden;
2775
+ position: fixed;
2776
+ max-height: 250px;
2777
+ background-color: #fff;
2778
+ border: 1px solid #CCCCCC;
2779
+ border-radius: 10px;
2780
+ z-index: 99999999;
2781
+ height: 100%;
2782
+ }
2783
+ .co-list-of-values-popup .lov-options.top {
2784
+ justify-content: flex-end;
2785
+ }
2786
+ .co-list-of-values-popup .co-input-search {
2787
+ display: flex;
2788
+ flex-shrink: 0;
2789
+ width: 100%;
2790
+ }
2791
+ .co-list-of-values-popup .co-input-search .co-input-text {
2792
+ width: 100%;
2793
+ }
2794
+ .co-list-of-values-popup .dropdown-list {
2795
+ overflow-y: auto;
2796
+ list-style-type: none;
2797
+ padding: 0;
2798
+ margin: 0;
2799
+ cursor: pointer;
2800
+ -webkit-user-select: none;
2801
+ user-select: none;
2802
+ }
2803
+ .co-list-of-values-popup .lov-options li {
2804
+ display: flex;
2805
+ align-items: center;
2806
+ padding: 8px;
2807
+ border-radius: 5px;
2808
+ margin: 5px;
2809
+ }
2810
+ .co-list-of-values-popup .lov-options li:last-child {
2811
+ border-bottom: none;
2812
+ }
2813
+ .co-list-of-values-popup .lov-options li:hover {
2814
+ color: #009EE0;
2815
+ background-color: #e8eceb;
2816
+ }
2817
+ .co-list-of-values-popup .lov-options li.selected {
2818
+ background-color: #F5F5FC;
2819
+ color: #009EE0;
2820
+ }
2821
+ .co-calendar .date-picker-container {
2822
+ position: fixed;
2823
+ z-index: 9999;
2824
+ }
2825
+ .calendar-template {
2826
+ font-family: "Public sans";
2827
+ }
2828
+ .calendar-template .calendar {
2829
+ width: auto;
2830
+ height: inherit;
2831
+ padding: 10px;
2832
+ background-color: white;
2833
+ border-radius: 5px;
2834
+ border: 1px solid #CCCCCC;
2835
+ }
2836
+ .calendar-template .calendar-header {
2837
+ display: flex;
2838
+ justify-content: space-between;
2839
+ align-items: center;
2840
+ margin-bottom: 5px;
2841
+ -webkit-user-select: none;
2842
+ user-select: none;
2843
+ }
2844
+ .calendar-template .calendar-header .calendar-change-month-button {
2845
+ cursor: pointer;
2846
+ border-radius: 5px;
2847
+ border: 0px solid #CCCCCC;
2848
+ padding: 5px;
2849
+ }
2850
+ .calendar-template .calendar-header .calendar-header-title-wrapper {
2851
+ cursor: pointer;
2852
+ height: 100%;
2853
+ }
2854
+ .calendar-template .calendar-header .calendar-header-title-wrapper .calendar-header-title {
2855
+ font-size: 12px;
2856
+ }
2857
+ .calendar-template .calendar-wrapper {
2858
+ display: flex;
2859
+ }
2860
+ .calendar-template .calendar-wrapper .week-wrapper {
2861
+ display: grid;
2862
+ grid-template-columns: repeat(1, 1fr);
2863
+ grid-gap: 1px;
2864
+ gap: 1px;
2865
+ }
2866
+ .calendar-template .calendar-wrapper .week-number {
2867
+ height: 36px;
2868
+ display: flex;
2869
+ align-items: center;
2870
+ justify-content: center;
2871
+ margin: 0 2px 0 0;
2872
+ font-size: 12px;
2873
+ width: 30px;
2874
+ background: #F8F8FA;
2875
+ }
2876
+ .calendar-template .calendar-wrapper .week-number:first-child {
2877
+ height: 30px;
2878
+ margin: 0;
2879
+ color: #ccc;
2880
+ }
2881
+ .calendar-template .calendar-body {
2882
+ display: grid;
2883
+ grid-template-columns: repeat(7, 1fr);
2884
+ }
2885
+ .calendar-template .calendar-day {
2886
+ display: flex;
2887
+ flex-direction: column;
2888
+ align-items: center;
2889
+ justify-content: center;
2890
+ height: 34px;
2891
+ margin: 2px 0;
2892
+ cursor: pointer;
2893
+ }
2894
+ .calendar-template .calendar-day .week-number {
2895
+ display: none;
2896
+ }
2897
+ .calendar-template .calendar-day:hover {
2898
+ background-color: #1A73E8;
2899
+ color: white;
2900
+ }
2901
+ .calendar-template .calendar-day.selected {
2902
+ background-color: #1A73E8;
2903
+ color: #FFFFFF;
2904
+ }
2905
+ .calendar-template .calendar-month-or-year {
2906
+ padding: 5px;
2907
+ }
2908
+ .calendar-template .calendar-month-or-year:hover {
2909
+ background-color: #e8eceb;
2910
+ padding: 5px;
2911
+ }
2912
+ .calendar-template .day-names {
2913
+ display: contents;
2914
+ }
2915
+ .calendar-template .weekday {
2916
+ font-size: 12px;
2917
+ height: 30px;
2918
+ width: 30px;
2919
+ color: black;
2920
+ display: flex;
2921
+ align-items: center;
2922
+ justify-content: center;
2923
+ margin: 0 1px;
2924
+ background: #F8F8FA;
2925
+ }
2926
+ .calendar-template .day-number {
2927
+ font-size: 12px;
2928
+ font-weight: normal;
2929
+ }
2930
+ .calendar-template .highlighted-day {
2931
+ background-color: #edf4fd;
2932
+ color: #22313C;
2933
+ }
2934
+ .calendar-template .highlighted-day .day-number {
2935
+ font-weight: normal;
2936
+ }
2937
+ .calendar-template .highlighted-day + .selected-day {
2938
+ border-radius: 0 100% 100% 0;
2939
+ }
2940
+ .calendar-template .selected-day {
2941
+ background-color: #1A73E8;
2942
+ color: #FFFFFF;
2943
+ border-radius: 100% 0 0 100%;
2944
+ }
2945
+ .calendar-template .selection-grid {
2946
+ display: grid;
2947
+ grid-gap: 15px;
2948
+ cursor: pointer;
2949
+ text-align: center;
2950
+ }
2951
+ .calendar-template .selection-grid.month {
2952
+ grid-template-columns: repeat(4, 1fr);
2953
+ }
2954
+ .calendar-template .selection-grid.year {
2955
+ grid-template-columns: repeat(3, 1fr);
2956
+ padding: 5px;
2957
+ }
2958
+ .co-image {
2959
+ font-family: "Public sans";
2960
+ font-size: 12px;
2961
+ display: flex;
2962
+ align-items: center;
2963
+ justify-content: center;
2964
+ height: 100px;
2965
+ width: 100px;
2966
+ }
2967
+ .co-image img {
2968
+ width: 100%;
2969
+ height: 100%;
2970
+ object-fit: contain;
2971
+ }
2972
+ .co-image .no-image-wrapper {
2973
+ display: flex;
2974
+ flex-direction: column;
2975
+ align-items: center;
2976
+ justify-content: center;
2977
+ grid-row-gap: 10px;
2978
+ row-gap: 10px;
2979
+ opacity: 0.2;
2980
+ font-size: 12px;
2981
+ }
2982
+ .co-image .no-image-wrapper .co-icon {
2983
+ height: 40%;
2984
+ width: 40%;
2985
+ }
2986
+ .co-image {
2987
+ background: transparent;
2988
+ }
2989
+ .co-image .no-image-wrapper {
2990
+ color: black;
2991
+ }
2992
+ .co-image .no-image-wrapper svg {
2993
+ fill: black;
2994
+ }
2995
+ .co-image .no-image-wrapper [fill] {
2996
+ fill: black;
2997
+ }
2998
+ .co-loader {
2999
+ display: block;
3000
+ height: 100px;
3001
+ width: auto;
3002
+ aspect-ratio: 1;
3003
+ }
3004
+ .co-loader .circle {
3005
+ fill: none;
3006
+ }
3007
+ .co-loader .main-color {
3008
+ fill: #3EE2BE;
3009
+ }
3010
+ .co-loader .second-color {
3011
+ fill: white;
3012
+ }
3013
+ .co-loader #ring {
3014
+ transform-origin: center;
3015
+ animation: spin 2s linear infinite;
3016
+ }
3017
+ .co-loader #ring-loader {
3018
+ fill: #171721;
3019
+ stroke-width: 10px;
3020
+ stroke: #3EE2BE;
3021
+ animation: dash 2s ease-in-out infinite;
3022
+ stroke-linecap: round;
3023
+ }
3024
+ .co-loader .spinner-gradient-stop {
3025
+ stop-color: #3EE2BE;
3026
+ }
3027
+ .co-loader #i, .co-loader #o, .co-loader #n, .co-loader #e {
3028
+ transform-origin: center;
3029
+ animation: morphingLetters 2s ease-in-out infinite;
3030
+ animation-direction: alternate;
3031
+ }
3032
+ .co-loader #o {
3033
+ animation-delay: 0.2s;
3034
+ }
3035
+ .co-loader #n {
3036
+ animation-delay: 0.4s;
3037
+ }
3038
+ .co-loader #e {
3039
+ animation-delay: 0.6s;
3040
+ }
3041
+ @keyframes morphingLetters {
3042
+ 0% {
3043
+ transform: scale(0);
3044
+ }
3045
+ 20% {
3046
+ transform: scale(1);
3047
+ }
3048
+ 100% {
3049
+ transform: scale(1);
3050
+ }
3051
+ }
3052
+ @keyframes spin {
3053
+ from {
3054
+ transform: rotate(0deg);
3055
+ }
3056
+ to {
3057
+ transform: rotate(360deg);
3058
+ }
3059
+ }
3060
+ @keyframes dash {
3061
+ 0% {
3062
+ stroke-dasharray: 1, 572;
3063
+ stroke-dashoffset: 0;
3064
+ }
3065
+ 50% {
3066
+ stroke-dasharray: 572, 572;
3067
+ stroke-dashoffset: 0;
3068
+ }
3069
+ 100% {
3070
+ stroke-dasharray: 572, 572;
3071
+ stroke-dashoffset: -572;
3072
+ }
3073
+ }
3074
+
3075
+ /*# sourceMappingURL=styles.css.map*/