@colijnit/corecomponents_v12 12.0.13 → 12.0.16

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 (632) hide show
  1. package/bundles/colijnit-corecomponents_v12.umd.js +7619 -0
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -0
  3. package/colijnit-corecomponents_v12.d.ts +26 -0
  4. package/colijnit-corecomponents_v12.metadata.json +1 -0
  5. package/esm2015/colijnit-corecomponents_v12.js +27 -0
  6. package/esm2015/lib/components/article-tile/article-tile.component.js +80 -0
  7. package/esm2015/lib/components/article-tile/article-tile.module.js +35 -0
  8. package/esm2015/lib/components/base/base-input.component.js +571 -0
  9. package/esm2015/lib/components/base/base.module.js +22 -0
  10. package/esm2015/lib/components/base/component-interface-name.js +4 -0
  11. package/esm2015/lib/components/base/configuration-adapter-component.interface.js +2 -0
  12. package/esm2015/lib/components/button/button.component.js +70 -0
  13. package/esm2015/lib/components/button/button.module.js +19 -0
  14. package/esm2015/lib/components/button-drop-down/button-drop-down.component.js +47 -0
  15. package/esm2015/lib/components/button-drop-down/button-drop-down.module.js +21 -0
  16. package/esm2015/lib/components/co-dialog/co-dialog.component.js +67 -0
  17. package/esm2015/lib/components/co-dialog/co-dialog.module.js +19 -0
  18. package/esm2015/lib/components/co-dialog-prompt/co-dialog-prompt.component.js +60 -0
  19. package/esm2015/lib/components/co-dialog-prompt/co-dialog-prompt.module.js +16 -0
  20. package/esm2015/lib/components/co-kanban/co-kanban.component.js +107 -0
  21. package/esm2015/lib/components/co-kanban/co-kanban.module.js +21 -0
  22. package/esm2015/lib/components/co-rich-text-editor/co-rich-text-editor.component.js +53 -0
  23. package/esm2015/lib/components/co-rich-text-editor/co-rich-text-editor.module.js +21 -0
  24. package/esm2015/lib/components/co-schedule/co-schedule.component.js +64 -0
  25. package/esm2015/lib/components/co-schedule/co-schedule.module.js +21 -0
  26. package/esm2015/lib/components/co-sidebar/co-sidebar.component.js +39 -0
  27. package/esm2015/lib/components/co-sidebar/co-sidebar.module.js +15 -0
  28. package/esm2015/lib/components/co-toggle/co-toggle.component.js +35 -0
  29. package/esm2015/lib/components/co-toggle/co-toggle.module.js +21 -0
  30. package/esm2015/lib/components/collapsible/collapsible.component.js +58 -0
  31. package/esm2015/lib/components/collapsible/collapsible.module.js +17 -0
  32. package/esm2015/lib/components/drop-down-list/drop-down-list.component.js +61 -0
  33. package/esm2015/lib/components/drop-down-list/drop-down.module.js +20 -0
  34. package/esm2015/lib/components/form/form.component.js +198 -0
  35. package/esm2015/lib/components/form/form.module.js +23 -0
  36. package/esm2015/lib/components/grid/base/base-grid.component.js +77 -0
  37. package/esm2015/lib/components/grid/base/base-inline-edit-grid.component.js +41 -0
  38. package/esm2015/lib/components/grid/base/base-selection-grid.component.js +83 -0
  39. package/esm2015/lib/components/grid/base/base-toolbar-grid.component.js +79 -0
  40. package/esm2015/lib/components/grid/co-grid.component.js +57 -0
  41. package/esm2015/lib/components/grid/co-grid.module.js +36 -0
  42. package/esm2015/lib/components/grid/enum/grid-lines.enum.js +9 -0
  43. package/esm2015/lib/components/grid/interface/grid-menu-event-args.js +2 -0
  44. package/esm2015/lib/components/grid/interface/grid-row-drag-event-args.js +2 -0
  45. package/esm2015/lib/components/grid/interface/grid-row-drop-event-args.js +2 -0
  46. package/esm2015/lib/components/icon/icon-cache.service.js +52 -0
  47. package/esm2015/lib/components/icon/icon.component.js +28 -0
  48. package/esm2015/lib/components/icon/icon.module.js +25 -0
  49. package/esm2015/lib/components/image/image.component.js +20 -0
  50. package/esm2015/lib/components/image/image.module.js +13 -0
  51. package/esm2015/lib/components/input-checkbox/input-checkbox.component.js +58 -0
  52. package/esm2015/lib/components/input-checkbox/input-checkbox.module.js +23 -0
  53. package/esm2015/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.component.js +68 -0
  54. package/esm2015/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.module.js +25 -0
  55. package/esm2015/lib/components/input-combo-box/input-combo-box.component.js +77 -0
  56. package/esm2015/lib/components/input-combo-box/input-combo-box.module.js +25 -0
  57. package/esm2015/lib/components/input-date-picker/input-date-picker.component.js +95 -0
  58. package/esm2015/lib/components/input-date-picker/input-date-picker.module.js +28 -0
  59. package/esm2015/lib/components/input-listbox/input-listbox.component.js +66 -0
  60. package/esm2015/lib/components/input-listbox/input-listbox.module.js +25 -0
  61. package/esm2015/lib/components/input-number-picker/input-number-picker.component.js +284 -0
  62. package/esm2015/lib/components/input-number-picker/input-number-picker.module.js +21 -0
  63. package/esm2015/lib/components/input-radio-button/input-radio-button.component.js +52 -0
  64. package/esm2015/lib/components/input-radio-button/input-radio-button.module.js +22 -0
  65. package/esm2015/lib/components/input-text/input-text.component.js +126 -0
  66. package/esm2015/lib/components/input-text/input-text.module.js +29 -0
  67. package/esm2015/lib/components/level-indicator/level-indicator-level.enum.js +7 -0
  68. package/esm2015/lib/components/level-indicator/level-indicator.component.js +34 -0
  69. package/esm2015/lib/components/level-indicator/level-indicator.module.js +15 -0
  70. package/esm2015/lib/components/multi-select-list/multi-select-list.component.js +69 -0
  71. package/esm2015/lib/components/multi-select-list/multi-select-list.module.js +19 -0
  72. package/esm2015/lib/components/pivot/co-pivot.component.js +171 -0
  73. package/esm2015/lib/components/pivot/co-pivot.module.js +19 -0
  74. package/esm2015/lib/components/popup/const/popup-window-token.js +3 -0
  75. package/esm2015/lib/components/popup/interface/popup-button.js +8 -0
  76. package/esm2015/lib/components/popup/interface/popup-close-event.js +2 -0
  77. package/esm2015/lib/components/popup/interface/popup-settings.js +42 -0
  78. package/esm2015/lib/components/popup/interface/popup.js +2 -0
  79. package/esm2015/lib/components/popup/model/popup-button-globals.js +11 -0
  80. package/esm2015/lib/components/popup/model/popup-window.js +38 -0
  81. package/esm2015/lib/components/popup/popup-buttons.component.js +53 -0
  82. package/esm2015/lib/components/popup/popup-message-display.component.js +47 -0
  83. package/esm2015/lib/components/popup/popup-window-shell.component.js +159 -0
  84. package/esm2015/lib/components/popup/popup.module.js +49 -0
  85. package/esm2015/lib/components/popup/service/popup-shower.service.js +87 -0
  86. package/esm2015/lib/components/popup/service/prompt.service.js +124 -0
  87. package/esm2015/lib/components/popup/text-input-popup.component.js +36 -0
  88. package/esm2015/lib/components/simple-grid/simple-grid-column.directive.js +36 -0
  89. package/esm2015/lib/components/simple-grid/simple-grid.component.js +112 -0
  90. package/esm2015/lib/components/simple-grid/simple-grid.module.js +24 -0
  91. package/esm2015/lib/components/tile/tile.component.js +71 -0
  92. package/esm2015/lib/components/tile/tile.module.js +23 -0
  93. package/esm2015/lib/core/constant/default-upper-bound-for-range-components.js +3 -0
  94. package/esm2015/lib/core/constant/java-max-int.js +2 -0
  95. package/esm2015/lib/core/constant/number-inputs-key-down-white-list.js +44 -0
  96. package/esm2015/lib/core/decorator/input-boolean.decorator.js +34 -0
  97. package/esm2015/lib/core/enum/co-document-image-display-kind.enum.js +7 -0
  98. package/esm2015/lib/core/enum/co-document-type.enum.js +11 -0
  99. package/esm2015/lib/core/enum/core-components-icon.enum.js +58 -0
  100. package/esm2015/lib/core/enum/file-type-internal.enum.js +17 -0
  101. package/esm2015/lib/core/enum/file-type.enum.js +11 -0
  102. package/esm2015/lib/core/enum/float-label-type.enum.js +7 -0
  103. package/esm2015/lib/core/enum/input-number-picker-show-mode.enum.js +8 -0
  104. package/esm2015/lib/core/enum/input-text-type.enum.js +6 -0
  105. package/esm2015/lib/core/enum/keyboard-code.enum.js +74 -0
  106. package/esm2015/lib/core/enum/object-right-type.enum.js +7 -0
  107. package/esm2015/lib/core/enum/popup-button-type.enum.js +12 -0
  108. package/esm2015/lib/core/enum/popup-type.enum.js +11 -0
  109. package/esm2015/lib/core/enum/schedule-view.enum.js +16 -0
  110. package/esm2015/lib/core/enum/table-name.enum.js +81 -0
  111. package/esm2015/lib/core/function/any-nill.function.js +6 -0
  112. package/esm2015/lib/core/function/is-nill.function.js +5 -0
  113. package/esm2015/lib/core/function/none-nill.function.js +17 -0
  114. package/esm2015/lib/core/function/not-nill.function.js +5 -0
  115. package/esm2015/lib/core/model/bounds-constrained-number-value.js +171 -0
  116. package/esm2015/lib/core/model/check-precision-and-scale-result.js +2 -0
  117. package/esm2015/lib/core/model/check-within-stepped-bounds-result.js +2 -0
  118. package/esm2015/lib/core/model/co-document-right.bo.js +3 -0
  119. package/esm2015/lib/core/model/co-document.bo.js +121 -0
  120. package/esm2015/lib/core/model/core-components-icon-svg.js +56 -0
  121. package/esm2015/lib/core/model/element-position.js +10 -0
  122. package/esm2015/lib/core/model/event/string-prompt-result-event.js +8 -0
  123. package/esm2015/lib/core/model/numerical-range.js +14 -0
  124. package/esm2015/lib/core/service/form-input-user-change-listener.service.js +25 -0
  125. package/esm2015/lib/core/service/form-master.service.js +102 -0
  126. package/esm2015/lib/core/service/ng-zone-wrapper.service.js +20 -0
  127. package/esm2015/lib/core/utils/array-utils.js +264 -0
  128. package/esm2015/lib/core/utils/browser-utils.js +100 -0
  129. package/esm2015/lib/core/utils/event-utils.js +53 -0
  130. package/esm2015/lib/core/utils/file-utils.js +267 -0
  131. package/esm2015/lib/core/utils/number-utils.js +309 -0
  132. package/esm2015/lib/core/utils/object-utils.js +186 -0
  133. package/esm2015/lib/core/utils/string-utils.js +94 -0
  134. package/esm2015/lib/core/validator/max-string-length.validator.js +10 -0
  135. package/esm2015/lib/core/validator/precision-scale.validator.js +11 -0
  136. package/esm2015/lib/core/validator/required.validator.js +5 -0
  137. package/esm2015/lib/directives/ripple/ripple-ref.js +26 -0
  138. package/esm2015/lib/directives/ripple/ripple-renderer.js +160 -0
  139. package/esm2015/lib/directives/ripple/ripple.directive.js +80 -0
  140. package/esm2015/lib/directives/ripple/ripple.module.js +24 -0
  141. package/esm2015/lib/directives/ripple/scroll-dispatcher.service.js +108 -0
  142. package/esm2015/lib/directives/ripple/scrollable.directive.js +40 -0
  143. package/esm2015/lib/directives/ripple/viewport-ruler.service.js +73 -0
  144. package/esm2015/lib/directives/stopclick/stop-click.directive.js +38 -0
  145. package/esm2015/lib/directives/stopclick/stop-click.module.js +15 -0
  146. package/esm2015/lib/pipes/append.pipe.js +17 -0
  147. package/esm2015/lib/pipes/append.pipe.module.js +15 -0
  148. package/esm2015/lib/pipes/price-display-pipe.module.js +15 -0
  149. package/esm2015/lib/pipes/price-display.pipe.js +20 -0
  150. package/esm2015/public-api.js +72 -0
  151. package/fesm2015/colijnit-corecomponents_v12.js +6985 -0
  152. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -0
  153. package/lib/components/article-tile/article-tile.component.d.ts +22 -0
  154. package/{src/lib → lib}/components/article-tile/article-tile.component.scss +0 -0
  155. package/lib/components/article-tile/article-tile.module.d.ts +2 -0
  156. package/lib/components/base/base-input.component.d.ts +146 -0
  157. package/lib/components/base/base.module.d.ts +2 -0
  158. package/lib/components/base/component-interface-name.d.ts +3 -0
  159. package/{src/lib/components/base/configuration-adapter-component.interface.ts → lib/components/base/configuration-adapter-component.interface.d.ts} +0 -0
  160. package/lib/components/button/button.component.d.ts +20 -0
  161. package/lib/components/button/button.module.d.ts +2 -0
  162. package/lib/components/button/style/_co-ripple.scss +69 -0
  163. package/lib/components/button/style/_layout.scss +64 -0
  164. package/lib/components/button/style/_material-definition.scss +9 -0
  165. package/lib/components/button/style/_theme.scss +81 -0
  166. package/lib/components/button/style/material.scss +22 -0
  167. package/lib/components/button-drop-down/button-drop-down.component.d.ts +16 -0
  168. package/lib/components/button-drop-down/button-drop-down.module.d.ts +2 -0
  169. package/lib/components/button-drop-down/style/_layout.scss +7 -0
  170. package/{src/lib/components/co-dialog-prompt/co-dialog-prompt.component.scss → lib/components/button-drop-down/style/_material-definition.scss} +0 -0
  171. package/lib/components/button-drop-down/style/_theme.scss +5 -0
  172. package/lib/components/button-drop-down/style/material.scss +4 -0
  173. package/{src/lib → lib}/components/card/card.scss +3 -1
  174. package/lib/components/co-dialog/co-dialog.component.d.ts +12 -0
  175. package/lib/components/co-dialog/co-dialog.module.d.ts +2 -0
  176. package/lib/components/co-dialog/style/_layout.scss +47 -0
  177. package/lib/components/co-dialog/style/_material-definition.scss +23 -0
  178. package/lib/components/co-dialog/style/_theme.scss +27 -0
  179. package/lib/components/co-dialog/style/material.scss +4 -0
  180. package/lib/components/co-dialog-prompt/co-dialog-prompt.component.d.ts +19 -0
  181. package/{src/lib/components/co-dialog/co-dialog.component.scss → lib/components/co-dialog-prompt/co-dialog-prompt.component.scss} +0 -0
  182. package/lib/components/co-dialog-prompt/co-dialog-prompt.module.d.ts +2 -0
  183. package/lib/components/co-kanban/co-kanban.component.d.ts +28 -0
  184. package/lib/components/co-kanban/co-kanban.module.d.ts +2 -0
  185. package/lib/components/co-kanban/style/_layout.scss +51 -0
  186. package/lib/components/co-kanban/style/_material-definition.scss +25 -0
  187. package/lib/components/co-kanban/style/_theme.scss +7 -0
  188. package/lib/components/co-kanban/style/material.scss +13 -0
  189. package/lib/components/co-rich-text-editor/co-rich-text-editor.component.d.ts +13 -0
  190. package/lib/components/co-rich-text-editor/co-rich-text-editor.module.d.ts +2 -0
  191. package/lib/components/co-rich-text-editor/style/_layout.scss +5 -0
  192. package/lib/components/co-rich-text-editor/style/_material-definition.scss +9 -0
  193. package/lib/components/co-rich-text-editor/style/_theme.scss +5 -0
  194. package/lib/components/co-rich-text-editor/style/material.scss +4 -0
  195. package/lib/components/co-schedule/co-schedule.component.d.ts +18 -0
  196. package/{src/lib → lib}/components/co-schedule/co-schedule.component.scss +0 -0
  197. package/lib/components/co-schedule/co-schedule.module.d.ts +2 -0
  198. package/lib/components/co-sidebar/co-sidebar.component.d.ts +10 -0
  199. package/{src/lib → lib}/components/co-sidebar/co-sidebar.component.scss +0 -0
  200. package/lib/components/co-sidebar/co-sidebar.module.d.ts +2 -0
  201. package/lib/components/co-toggle/co-toggle.component.d.ts +9 -0
  202. package/lib/components/co-toggle/co-toggle.component.scss +1 -0
  203. package/lib/components/co-toggle/co-toggle.module.d.ts +2 -0
  204. package/lib/components/collapsible/collapsible.component.d.ts +16 -0
  205. package/lib/components/collapsible/collapsible.module.d.ts +2 -0
  206. package/lib/components/collapsible/style/_layout.scss +53 -0
  207. package/lib/components/collapsible/style/_material-definition.scss +9 -0
  208. package/lib/components/collapsible/style/_theme.scss +9 -0
  209. package/lib/components/collapsible/style/material.scss +4 -0
  210. package/lib/components/drop-down-list/drop-down-list.component.d.ts +16 -0
  211. package/{src/lib → lib}/components/drop-down-list/drop-down-list.component.scss +0 -0
  212. package/lib/components/drop-down-list/drop-down.module.d.ts +2 -0
  213. package/lib/components/drop-down-list/style/_layout.scss +7 -0
  214. package/{src/lib/components/co-rich-text-editor/co-rich-text-editor.component.scss → lib/components/drop-down-list/style/_material-definition.scss} +0 -0
  215. package/lib/components/drop-down-list/style/_theme.scss +5 -0
  216. package/lib/components/drop-down-list/style/material.scss +4 -0
  217. package/lib/components/form/form.component.d.ts +40 -0
  218. package/lib/components/form/form.module.d.ts +2 -0
  219. package/lib/components/grid/base/base-grid.component.d.ts +24 -0
  220. package/lib/components/grid/base/base-inline-edit-grid.component.d.ts +9 -0
  221. package/lib/components/grid/base/base-selection-grid.component.d.ts +27 -0
  222. package/lib/components/grid/base/base-toolbar-grid.component.d.ts +17 -0
  223. package/lib/components/grid/co-grid.component.d.ts +6 -0
  224. package/lib/components/grid/co-grid.module.d.ts +2 -0
  225. package/{src/lib/components/grid/enum/grid-lines.enum.ts → lib/components/grid/enum/grid-lines.enum.d.ts} +2 -2
  226. package/lib/components/grid/interface/grid-menu-event-args.d.ts +3 -0
  227. package/lib/components/grid/interface/grid-row-drag-event-args.d.ts +3 -0
  228. package/lib/components/grid/interface/grid-row-drop-event-args.d.ts +3 -0
  229. package/lib/components/grid/style/_layout.scss +38 -0
  230. package/lib/components/grid/style/_material-definition.scss +17 -0
  231. package/lib/components/grid/style/_theme.scss +5 -0
  232. package/lib/components/grid/style/material.scss +4 -0
  233. package/lib/components/icon/icon-cache.service.d.ts +20 -0
  234. package/lib/components/icon/icon.component.d.ts +10 -0
  235. package/lib/components/icon/icon.module.d.ts +2 -0
  236. package/{src/lib → lib}/components/icon/icon.scss +3 -2
  237. package/lib/components/image/image.component.d.ts +4 -0
  238. package/lib/components/image/image.module.d.ts +2 -0
  239. package/lib/components/input-checkbox/input-checkbox.component.d.ts +16 -0
  240. package/lib/components/input-checkbox/input-checkbox.module.d.ts +2 -0
  241. package/lib/components/input-checkbox/style/_layout.scss +5 -0
  242. package/lib/components/input-checkbox/style/_material-definition.scss +2 -0
  243. package/lib/components/input-checkbox/style/_theme.scss +5 -0
  244. package/lib/components/input-checkbox/style/material.scss +4 -0
  245. package/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.component.d.ts +22 -0
  246. package/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.module.d.ts +2 -0
  247. package/lib/components/input-checkbox-multi-select/style/_layout.scss +5 -0
  248. package/lib/components/input-checkbox-multi-select/style/_material-definition.scss +7 -0
  249. package/lib/components/input-checkbox-multi-select/style/_theme.scss +5 -0
  250. package/lib/components/input-checkbox-multi-select/style/material.scss +4 -0
  251. package/lib/components/input-combo-box/input-combo-box.component.d.ts +25 -0
  252. package/lib/components/input-combo-box/input-combo-box.module.d.ts +2 -0
  253. package/lib/components/input-combo-box/style/_layout.scss +5 -0
  254. package/lib/components/input-combo-box/style/_material-definition.scss +7 -0
  255. package/lib/components/input-combo-box/style/_theme.scss +5 -0
  256. package/lib/components/input-combo-box/style/material.scss +4 -0
  257. package/lib/components/input-date-picker/input-date-picker.component.d.ts +30 -0
  258. package/lib/components/input-date-picker/input-date-picker.module.d.ts +2 -0
  259. package/lib/components/input-date-picker/style/_layout.scss +5 -0
  260. package/lib/components/input-date-picker/style/_material-definition.scss +8 -0
  261. package/lib/components/input-date-picker/style/_theme.scss +5 -0
  262. package/lib/components/input-date-picker/style/material.scss +4 -0
  263. package/lib/components/input-listbox/input-listbox.component.d.ts +14 -0
  264. package/lib/components/input-listbox/input-listbox.module.d.ts +2 -0
  265. package/lib/components/input-listbox/style/_layout.scss +22 -0
  266. package/lib/components/input-listbox/style/_material-definition.scss +10 -0
  267. package/lib/components/input-listbox/style/_theme.scss +14 -0
  268. package/lib/components/input-listbox/style/material.scss +4 -0
  269. package/lib/components/input-number-picker/input-number-picker.component.d.ts +65 -0
  270. package/lib/components/input-number-picker/input-number-picker.module.d.ts +2 -0
  271. package/lib/components/input-number-picker/style/_layout.scss +43 -0
  272. package/lib/components/input-number-picker/style/_material-definition.scss +17 -0
  273. package/lib/components/input-number-picker/style/_theme.scss +22 -0
  274. package/lib/components/input-number-picker/style/material.scss +4 -0
  275. package/lib/components/input-radio-button/input-radio-button.component.d.ts +15 -0
  276. package/lib/components/input-radio-button/input-radio-button.module.d.ts +2 -0
  277. package/lib/components/input-radio-button/style/_layout.scss +28 -0
  278. package/lib/components/input-radio-button/style/_material-definition.scss +9 -0
  279. package/lib/components/input-radio-button/style/_theme.scss +11 -0
  280. package/lib/components/input-radio-button/style/material.scss +4 -0
  281. package/lib/components/input-search/style/_layout.scss +42 -0
  282. package/lib/components/input-search/style/_material-definition.scss +6 -0
  283. package/lib/components/input-search/style/_theme.scss +10 -0
  284. package/lib/components/input-search/style/material.scss +4 -0
  285. package/lib/components/input-text/input-text.component.d.ts +47 -0
  286. package/lib/components/input-text/input-text.module.d.ts +2 -0
  287. package/lib/components/input-text/style/_layout.scss +5 -0
  288. package/lib/components/input-text/style/_material-definition.scss +3 -0
  289. package/lib/components/input-text/style/_theme.scss +5 -0
  290. package/lib/components/input-text/style/material.scss +4 -0
  291. package/{src/lib/components/level-indicator/level-indicator-level.enum.ts → lib/components/level-indicator/level-indicator-level.enum.d.ts} +2 -2
  292. package/lib/components/level-indicator/level-indicator.component.d.ts +9 -0
  293. package/lib/components/level-indicator/level-indicator.module.d.ts +2 -0
  294. package/{src/lib → lib}/components/level-indicator/level-indicator.scss +4 -2
  295. package/lib/components/multi-select-list/multi-select-list.component.d.ts +19 -0
  296. package/lib/components/multi-select-list/multi-select-list.module.d.ts +2 -0
  297. package/lib/components/multi-select-list/style/_layout.scss +5 -0
  298. package/lib/components/multi-select-list/style/_material-definition.scss +7 -0
  299. package/lib/components/multi-select-list/style/_theme.scss +5 -0
  300. package/lib/components/multi-select-list/style/material.scss +4 -0
  301. package/lib/components/pivot/co-pivot.component.d.ts +40 -0
  302. package/lib/components/pivot/co-pivot.module.d.ts +2 -0
  303. package/lib/components/pivot/style/_layout.scss +5 -0
  304. package/lib/components/pivot/style/_material-definition.scss +10 -0
  305. package/lib/components/pivot/style/_theme.scss +5 -0
  306. package/lib/components/pivot/style/material.scss +4 -0
  307. package/lib/components/popup/const/popup-window-token.d.ts +3 -0
  308. package/lib/components/popup/interface/popup-button.d.ts +8 -0
  309. package/{src/lib/components/popup/interface/popup-close-event.ts → lib/components/popup/interface/popup-close-event.d.ts} +0 -3
  310. package/lib/components/popup/interface/popup-settings.d.ts +21 -0
  311. package/lib/components/popup/interface/popup.d.ts +9 -0
  312. package/lib/components/popup/model/popup-button-globals.d.ts +9 -0
  313. package/lib/components/popup/model/popup-window.d.ts +21 -0
  314. package/lib/components/popup/popup-buttons.component.d.ts +13 -0
  315. package/{src/lib → lib}/components/popup/popup-buttons.component.scss +0 -0
  316. package/lib/components/popup/popup-message-display.component.d.ts +12 -0
  317. package/lib/components/popup/popup-window-shell.component.d.ts +42 -0
  318. package/{src/lib → lib}/components/popup/popup-window-shell.component.scss +8 -8
  319. package/lib/components/popup/popup.module.d.ts +4 -0
  320. package/lib/components/popup/service/popup-shower.service.d.ts +17 -0
  321. package/lib/components/popup/service/prompt.service.d.ts +17 -0
  322. package/lib/components/popup/text-input-popup.component.d.ts +12 -0
  323. package/lib/components/simple-grid/simple-grid-column.directive.d.ts +18 -0
  324. package/lib/components/simple-grid/simple-grid.component.d.ts +26 -0
  325. package/lib/components/simple-grid/simple-grid.module.d.ts +2 -0
  326. package/lib/components/simple-grid/style/_layout.scss +80 -0
  327. package/lib/components/simple-grid/style/_material-definition.scss +16 -0
  328. package/lib/components/simple-grid/style/_theme.scss +17 -0
  329. package/lib/components/simple-grid/style/material.scss +4 -0
  330. package/lib/components/tile/tile.component.d.ts +15 -0
  331. package/{src/lib → lib}/components/tile/tile.component.scss +4 -4
  332. package/lib/components/tile/tile.module.d.ts +2 -0
  333. package/lib/core/constant/default-upper-bound-for-range-components.d.ts +1 -0
  334. package/lib/core/constant/java-max-int.d.ts +1 -0
  335. package/lib/core/constant/number-inputs-key-down-white-list.d.ts +2 -0
  336. package/lib/core/decorator/input-boolean.decorator.d.ts +8 -0
  337. package/{src/lib/core/enum/co-document-image-display-kind.enum.ts → lib/core/enum/co-document-image-display-kind.enum.d.ts} +1 -1
  338. package/lib/core/enum/co-document-type.enum.d.ts +5 -0
  339. package/{src/lib/core/enum/core-components-icon.enum.ts → lib/core/enum/core-components-icon.enum.d.ts} +56 -57
  340. package/{src/lib/core/enum/file-type-internal.enum.ts → lib/core/enum/file-type-internal.enum.d.ts} +10 -10
  341. package/lib/core/enum/file-type.enum.d.ts +5 -0
  342. package/lib/core/enum/float-label-type.enum.d.ts +5 -0
  343. package/lib/core/enum/input-number-picker-show-mode.enum.d.ts +5 -0
  344. package/lib/core/enum/input-text-type.enum.d.ts +4 -0
  345. package/{src/lib/core/enum/keyboard-code.enum.ts → lib/core/enum/keyboard-code.enum.d.ts} +23 -24
  346. package/{src/lib/core/enum/object-right-type.enum.ts → lib/core/enum/object-right-type.enum.d.ts} +1 -1
  347. package/lib/core/enum/popup-button-type.enum.d.ts +9 -0
  348. package/lib/core/enum/popup-type.enum.d.ts +9 -0
  349. package/{src/lib/core/enum/schedule-view.enum.ts → lib/core/enum/schedule-view.enum.d.ts} +2 -2
  350. package/{src/lib/core/enum/table-name.enum.ts → lib/core/enum/table-name.enum.d.ts} +1 -1
  351. package/lib/core/function/any-nill.function.d.ts +1 -0
  352. package/lib/core/function/is-nill.function.d.ts +1 -0
  353. package/lib/core/function/none-nill.function.d.ts +1 -0
  354. package/lib/core/function/not-nill.function.d.ts +1 -0
  355. package/lib/core/model/bounds-constrained-number-value.d.ts +46 -0
  356. package/{src/lib/core/model/check-precision-and-scale-result.ts → lib/core/model/check-precision-and-scale-result.d.ts} +1 -2
  357. package/{src/lib/core/model/check-within-stepped-bounds-result.ts → lib/core/model/check-within-stepped-bounds-result.d.ts} +3 -3
  358. package/lib/core/model/co-document-right.bo.d.ts +6 -0
  359. package/lib/core/model/co-document.bo.d.ts +61 -0
  360. package/lib/core/model/core-components-icon-svg.d.ts +4 -0
  361. package/lib/core/model/element-position.d.ts +7 -0
  362. package/lib/core/model/event/string-prompt-result-event.d.ts +6 -0
  363. package/lib/core/model/numerical-range.d.ts +7 -0
  364. package/lib/core/service/form-input-user-change-listener.service.d.ts +10 -0
  365. package/lib/core/service/form-master.service.d.ts +26 -0
  366. package/lib/core/service/ng-zone-wrapper.service.d.ts +6 -0
  367. package/lib/core/utils/array-utils.d.ts +85 -0
  368. package/lib/core/utils/browser-utils.d.ts +15 -0
  369. package/lib/core/utils/event-utils.d.ts +12 -0
  370. package/lib/core/utils/file-utils.d.ts +29 -0
  371. package/lib/core/utils/number-utils.d.ts +89 -0
  372. package/lib/core/utils/object-utils.d.ts +31 -0
  373. package/lib/core/utils/string-utils.d.ts +25 -0
  374. package/lib/core/validator/max-string-length.validator.d.ts +2 -0
  375. package/lib/core/validator/precision-scale.validator.d.ts +2 -0
  376. package/lib/core/validator/required.validator.d.ts +2 -0
  377. package/lib/directives/ripple/ripple-ref.d.ts +21 -0
  378. package/lib/directives/ripple/ripple-renderer.d.ts +56 -0
  379. package/lib/directives/ripple/ripple.directive.d.ts +56 -0
  380. package/lib/directives/ripple/ripple.module.d.ts +2 -0
  381. package/lib/directives/ripple/scroll-dispatcher.service.d.ts +51 -0
  382. package/lib/directives/ripple/scrollable.directive.d.ts +20 -0
  383. package/lib/directives/ripple/viewport-ruler.service.d.ts +29 -0
  384. package/lib/directives/stopclick/stop-click.directive.d.ts +10 -0
  385. package/lib/directives/stopclick/stop-click.module.d.ts +2 -0
  386. package/{src/lib → lib}/modules/pagination/pagination.scss +4 -4
  387. package/lib/pipes/append.pipe.d.ts +4 -0
  388. package/lib/pipes/append.pipe.module.d.ts +2 -0
  389. package/lib/pipes/price-display-pipe.module.d.ts +2 -0
  390. package/lib/pipes/price-display.pipe.d.ts +4 -0
  391. package/{src/lib → lib}/style/_extendables.scss +0 -0
  392. package/{src/lib → lib}/style/_input.mixins.scss +0 -0
  393. package/lib/style/_mixin.scss +9 -0
  394. package/{src/lib → lib}/style/_responsiveness.mixins.scss +0 -0
  395. package/{src/lib → lib}/style/_responsiveness.scss +0 -0
  396. package/{src/lib → lib}/style/_transition.mixins.scss +0 -0
  397. package/{src/lib/style/_base-input.scss → lib/style/_variables.scss} +77 -95
  398. package/{src/lib → lib}/style/main.scss +0 -0
  399. package/{src/lib → lib}/style/material2/_core.scss +3 -3
  400. package/lib/style/material2/_material2-scss-barrel.scss +16 -0
  401. package/{src/lib → lib}/style/material2/ripple/_co-ripple.scss +0 -0
  402. package/{src/lib → lib}/style/material2/style/_elevation.scss +0 -0
  403. package/{src/lib → lib}/style/material2/style/_list-common.scss +0 -0
  404. package/{src/lib → lib}/style/material2/style/_variables.scss +0 -0
  405. package/{src/lib → lib}/style/material2/theming/_palette.scss +0 -0
  406. package/{src/lib → lib}/style/material2/theming/_theming.scss +0 -0
  407. package/{src/lib → lib}/style/material2/typography/_typography.scss +0 -0
  408. package/package.json +11 -3
  409. package/{src/public-api.ts → public-api.d.ts} +68 -66
  410. package/colijnit-corecomponents_v12-12.0.13.tgz +0 -0
  411. package/karma.conf.js +0 -44
  412. package/ng-package.json +0 -10
  413. package/src/lib/components/article-tile/article-tile.component.ts +0 -95
  414. package/src/lib/components/article-tile/article-tile.module.ts +0 -34
  415. package/src/lib/components/base/base-input.component.ts +0 -681
  416. package/src/lib/components/base/base.module.ts +0 -22
  417. package/src/lib/components/base/component-interface-name.ts +0 -6
  418. package/src/lib/components/button/button.component.ts +0 -94
  419. package/src/lib/components/button/button.module.ts +0 -18
  420. package/src/lib/components/button/button.scss +0 -111
  421. package/src/lib/components/button-drop-down/button-drop-down.component.scss +0 -19
  422. package/src/lib/components/button-drop-down/button-drop-down.component.ts +0 -53
  423. package/src/lib/components/button-drop-down/button-drop-down.module.ts +0 -17
  424. package/src/lib/components/card/card.component.ts +0 -92
  425. package/src/lib/components/card/card.module.ts +0 -34
  426. package/src/lib/components/co-dialog/co-dialog.component.ts +0 -88
  427. package/src/lib/components/co-dialog/co-dialog.module.ts +0 -15
  428. package/src/lib/components/co-dialog-prompt/co-dialog-prompt.component.ts +0 -70
  429. package/src/lib/components/co-dialog-prompt/co-dialog-prompt.module.ts +0 -15
  430. package/src/lib/components/co-kanban/co-kanban.component.ts +0 -128
  431. package/src/lib/components/co-kanban/co-kanban.module.ts +0 -18
  432. package/src/lib/components/co-rich-text-editor/co-rich-text-editor.component.ts +0 -69
  433. package/src/lib/components/co-rich-text-editor/co-rich-text-editor.module.ts +0 -18
  434. package/src/lib/components/co-schedule/co-schedule.component.ts +0 -96
  435. package/src/lib/components/co-schedule/co-schedule.module.ts +0 -19
  436. package/src/lib/components/co-sidebar/co-sidebar.component.ts +0 -42
  437. package/src/lib/components/co-sidebar/co-sidebar.module.ts +0 -13
  438. package/src/lib/components/co-toggle/co-toggle.component.scss +0 -0
  439. package/src/lib/components/co-toggle/co-toggle.component.ts +0 -46
  440. package/src/lib/components/co-toggle/co-toggle.module.ts +0 -18
  441. package/src/lib/components/drop-down-list/drop-down-list.component.ts +0 -65
  442. package/src/lib/components/drop-down-list/drop-down.module.ts +0 -18
  443. package/src/lib/components/form/form.component.ts +0 -223
  444. package/src/lib/components/form/form.module.ts +0 -22
  445. package/src/lib/components/grid/base/base-grid.component.ts +0 -83
  446. package/src/lib/components/grid/base/base-inline-edit-grid.component.ts +0 -36
  447. package/src/lib/components/grid/base/base-selection-grid.component.ts +0 -98
  448. package/src/lib/components/grid/base/base-toolbar-grid.component.ts +0 -75
  449. package/src/lib/components/grid/co-grid.component.scss +0 -29
  450. package/src/lib/components/grid/co-grid.component.ts +0 -70
  451. package/src/lib/components/grid/co-grid.module.ts +0 -49
  452. package/src/lib/components/grid/enum/column-align.enum.ts +0 -5
  453. package/src/lib/components/grid/interface/grid-menu-event-args.ts +0 -5
  454. package/src/lib/components/grid/interface/grid-row-drag-event-args.ts +0 -5
  455. package/src/lib/components/grid/interface/grid-row-drop-event-args.ts +0 -5
  456. package/src/lib/components/grid/model/co-grid-column.ts +0 -9
  457. package/src/lib/components/icon/icon-cache.service.ts +0 -57
  458. package/src/lib/components/icon/icon.component.ts +0 -30
  459. package/src/lib/components/icon/icon.module.ts +0 -24
  460. package/src/lib/components/image/image.component.ts +0 -20
  461. package/src/lib/components/image/image.css +0 -9
  462. package/src/lib/components/image/image.module.ts +0 -11
  463. package/src/lib/components/input-checkbox/input-checkbox.component.scss +0 -14
  464. package/src/lib/components/input-checkbox/input-checkbox.component.ts +0 -69
  465. package/src/lib/components/input-checkbox/input-checkbox.module.ts +0 -22
  466. package/src/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.component.scss +0 -8
  467. package/src/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.component.ts +0 -84
  468. package/src/lib/components/input-checkbox-multi-select/input-checkbox-multi-select.module.ts +0 -24
  469. package/src/lib/components/input-combo-box/input-combo-box.component.scss +0 -8
  470. package/src/lib/components/input-combo-box/input-combo-box.component.ts +0 -96
  471. package/src/lib/components/input-combo-box/input-combo-box.module.ts +0 -24
  472. package/src/lib/components/input-date-picker/input-date-picker.component.scss +0 -30
  473. package/src/lib/components/input-date-picker/input-date-picker.component.ts +0 -121
  474. package/src/lib/components/input-date-picker/input-date-picker.module.ts +0 -27
  475. package/src/lib/components/input-number-picker/input-number-picker.component.scss +0 -49
  476. package/src/lib/components/input-number-picker/input-number-picker.component.ts +0 -316
  477. package/src/lib/components/input-number-picker/input-number-picker.module.ts +0 -16
  478. package/src/lib/components/input-radio-button/input-radio-button.component.scss +0 -89
  479. package/src/lib/components/input-radio-button/input-radio-button.component.ts +0 -74
  480. package/src/lib/components/input-radio-button/input-radio-button.module.ts +0 -20
  481. package/src/lib/components/input-text/input-text.component.ts +0 -155
  482. package/src/lib/components/input-text/input-text.module.ts +0 -27
  483. package/src/lib/components/input-text/input-text.scss +0 -4
  484. package/src/lib/components/level-indicator/level-indicator.component.ts +0 -41
  485. package/src/lib/components/level-indicator/level-indicator.module.ts +0 -13
  486. package/src/lib/components/multi-select-list/multi-select-list.component.scss +0 -1
  487. package/src/lib/components/multi-select-list/multi-select-list.component.ts +0 -78
  488. package/src/lib/components/multi-select-list/multi-select-list.module.ts +0 -17
  489. package/src/lib/components/pivot/co-pivot.component.scss +0 -0
  490. package/src/lib/components/pivot/co-pivot.component.ts +0 -246
  491. package/src/lib/components/pivot/co-pivot.module.ts +0 -16
  492. package/src/lib/components/popup/const/popup-window-token.ts +0 -4
  493. package/src/lib/components/popup/interface/popup-button.ts +0 -14
  494. package/src/lib/components/popup/interface/popup-settings.ts +0 -70
  495. package/src/lib/components/popup/interface/popup.ts +0 -17
  496. package/src/lib/components/popup/model/popup-button-globals.ts +0 -11
  497. package/src/lib/components/popup/model/popup-window.ts +0 -51
  498. package/src/lib/components/popup/popup-buttons.component.ts +0 -61
  499. package/src/lib/components/popup/popup-message-display.component.ts +0 -49
  500. package/src/lib/components/popup/popup-window-shell.component.ts +0 -222
  501. package/src/lib/components/popup/popup.module.ts +0 -48
  502. package/src/lib/components/popup/service/popup-shower.service.ts +0 -98
  503. package/src/lib/components/popup/service/prompt.service.ts +0 -127
  504. package/src/lib/components/popup/text-input-popup.component.ts +0 -36
  505. package/src/lib/components/tile/tile.component.ts +0 -70
  506. package/src/lib/components/tile/tile.module.ts +0 -21
  507. package/src/lib/core/abstract/collection-based-component.ts +0 -488
  508. package/src/lib/core/config/device-environment.ts +0 -26
  509. package/src/lib/core/constant/default-upper-bound-for-range-components.ts +0 -3
  510. package/src/lib/core/constant/java-max-int.ts +0 -1
  511. package/src/lib/core/constant/number-inputs-key-down-white-list.ts +0 -45
  512. package/src/lib/core/decorator/input-boolean.decorator.ts +0 -35
  513. package/src/lib/core/enum/co-direction.ts +0 -7
  514. package/src/lib/core/enum/co-document-type.enum.ts +0 -9
  515. package/src/lib/core/enum/co-orientation.ts +0 -18
  516. package/src/lib/core/enum/collection-based-component-input-driver-prop.enum.ts +0 -10
  517. package/src/lib/core/enum/color-sequence-name.enum.ts +0 -5
  518. package/src/lib/core/enum/file-type.enum.ts +0 -9
  519. package/src/lib/core/enum/float-label-type.enum.ts +0 -5
  520. package/src/lib/core/enum/input-number-picker-show-mode.enum.ts +0 -6
  521. package/src/lib/core/enum/input-text-type.enum.ts +0 -4
  522. package/src/lib/core/enum/keyboard-key.enum.ts +0 -77
  523. package/src/lib/core/enum/logical-operator-type.enum.ts +0 -5
  524. package/src/lib/core/enum/popup-button-type.enum.ts +0 -10
  525. package/src/lib/core/enum/popup-type.enum.ts +0 -9
  526. package/src/lib/core/enum/search-data-type.ts +0 -4
  527. package/src/lib/core/enum/search-property-state.ts +0 -5
  528. package/src/lib/core/enum/sort-data-type.ts +0 -6
  529. package/src/lib/core/enum/sort-direction.ts +0 -9
  530. package/src/lib/core/enum/value-comparison-type.ts +0 -11
  531. package/src/lib/core/function/any-nill.function.ts +0 -6
  532. package/src/lib/core/function/is-nill.function.ts +0 -4
  533. package/src/lib/core/function/none-nill.function.ts +0 -16
  534. package/src/lib/core/function/not-nill.function.ts +0 -4
  535. package/src/lib/core/interface/search-property.ts +0 -15
  536. package/src/lib/core/interface/sort-property.ts +0 -16
  537. package/src/lib/core/model/bounds-constrained-number-value.ts +0 -219
  538. package/src/lib/core/model/co-document-right.bo.ts +0 -9
  539. package/src/lib/core/model/co-document.bo.ts +0 -193
  540. package/src/lib/core/model/color-sequence.ts +0 -39
  541. package/src/lib/core/model/color.ts +0 -29
  542. package/src/lib/core/model/core-components-icon-svg.ts +0 -56
  543. package/src/lib/core/model/element-position.ts +0 -14
  544. package/src/lib/core/model/event/number-prompt-result-event.ts +0 -10
  545. package/src/lib/core/model/event/string-prompt-result-event.ts +0 -10
  546. package/src/lib/core/model/numerical-range.ts +0 -19
  547. package/src/lib/core/service/color-sequence.service.ts +0 -104
  548. package/src/lib/core/service/form-input-user-change-listener.service.ts +0 -31
  549. package/src/lib/core/service/form-master.service.ts +0 -119
  550. package/src/lib/core/service/ng-zone-wrapper.service.ts +0 -15
  551. package/src/lib/core/utils/array-utils.spec.ts +0 -588
  552. package/src/lib/core/utils/array-utils.ts +0 -301
  553. package/src/lib/core/utils/browser-utils.ts +0 -123
  554. package/src/lib/core/utils/business-object-utils.ts +0 -42
  555. package/src/lib/core/utils/css-utils.ts +0 -276
  556. package/src/lib/core/utils/element-ref.utils.ts +0 -12
  557. package/src/lib/core/utils/event-utils.ts +0 -61
  558. package/src/lib/core/utils/file-utils.ts +0 -291
  559. package/src/lib/core/utils/number-utils.spec.ts +0 -657
  560. package/src/lib/core/utils/number-utils.ts +0 -350
  561. package/src/lib/core/utils/object-utils.ts +0 -205
  562. package/src/lib/core/utils/parameter-value-conversion-utils.ts +0 -116
  563. package/src/lib/core/utils/search-utils.ts +0 -121
  564. package/src/lib/core/utils/sort-utils.ts +0 -108
  565. package/src/lib/core/utils/string-utils.ts +0 -100
  566. package/src/lib/core/validator/email.validator.ts +0 -10
  567. package/src/lib/core/validator/max-string-length.validator.ts +0 -11
  568. package/src/lib/core/validator/precision-scale.validator.ts +0 -14
  569. package/src/lib/core/validator/required.validator.ts +0 -9
  570. package/src/lib/directives/align-with/align-with.directive.ts +0 -158
  571. package/src/lib/directives/align-with/align-with.module.ts +0 -13
  572. package/src/lib/directives/clickoutside/click-outside-master.service.ts +0 -64
  573. package/src/lib/directives/clickoutside/click-outside.directive.ts +0 -72
  574. package/src/lib/directives/clickoutside/clickoutside.module.ts +0 -17
  575. package/src/lib/directives/parsevalue/parse-value.directive.ts +0 -42
  576. package/src/lib/directives/parsevalue/parse-value.module.ts +0 -13
  577. package/src/lib/directives/resize/resize-detect.directive.ts +0 -54
  578. package/src/lib/directives/resize/resize-detect.module.ts +0 -13
  579. package/src/lib/directives/ripple/ripple-ref.ts +0 -28
  580. package/src/lib/directives/ripple/ripple-renderer.ts +0 -217
  581. package/src/lib/directives/ripple/ripple.directive.ts +0 -116
  582. package/src/lib/directives/ripple/ripple.module.ts +0 -24
  583. package/src/lib/directives/ripple/scroll-dispatcher.service.ts +0 -129
  584. package/src/lib/directives/ripple/scrollable.directive.ts +0 -37
  585. package/src/lib/directives/ripple/viewport-ruler.service.ts +0 -84
  586. package/src/lib/directives/stopclick/stop-click.directive.ts +0 -35
  587. package/src/lib/directives/stopclick/stop-click.module.ts +0 -14
  588. package/src/lib/directives/template-wrapper/template-wrapper.directive.ts +0 -71
  589. package/src/lib/directives/template-wrapper/template-wrapper.module.ts +0 -13
  590. package/src/lib/model/data-item.ts +0 -9
  591. package/src/lib/model/enum/currency-code.enum.ts +0 -7
  592. package/src/lib/model/enum/language-code.enum.ts +0 -8
  593. package/src/lib/model/map/currencies.map.ts +0 -6
  594. package/src/lib/modules/drag-drop/drag-drop-container.component.ts +0 -115
  595. package/src/lib/modules/drag-drop/drag-drop-container.css +0 -34
  596. package/src/lib/modules/drag-drop/drag-drop-manager.service.ts +0 -414
  597. package/src/lib/modules/drag-drop/drag-drop.module.ts +0 -20
  598. package/src/lib/modules/drag-drop/draggable.directive.ts +0 -70
  599. package/src/lib/modules/drag-drop/model/co-drag-event.ts +0 -5
  600. package/src/lib/modules/drag-drop/model/co-drop-event.ts +0 -9
  601. package/src/lib/modules/drag-drop/model/drag-drop-container-element.ts +0 -7
  602. package/src/lib/modules/drag-drop/model/drag-drop-container.ts +0 -9
  603. package/src/lib/modules/media-monitor/flex-layout-breakpoint.enum.ts +0 -5
  604. package/src/lib/modules/media-monitor/media-monitor.module.ts +0 -14
  605. package/src/lib/modules/media-monitor/media-monitor.service.ts +0 -36
  606. package/src/lib/modules/pagination/paginate.pipe.ts +0 -122
  607. package/src/lib/modules/pagination/pagination-instance.ts +0 -18
  608. package/src/lib/modules/pagination/pagination.component.ts +0 -217
  609. package/src/lib/modules/pagination/pagination.module.ts +0 -25
  610. package/src/lib/modules/pagination/pagination.service.ts +0 -98
  611. package/src/lib/pipes/append.pipe.module.ts +0 -13
  612. package/src/lib/pipes/append.pipe.ts +0 -17
  613. package/src/lib/pipes/co-currency-pipe.module.ts +0 -13
  614. package/src/lib/pipes/co-currency.pipe.ts +0 -45
  615. package/src/lib/pipes/emun-keys.pipe.ts +0 -20
  616. package/src/lib/pipes/enum-keys-pipe.module.ts +0 -13
  617. package/src/lib/pipes/file-type-image-pipe.module.ts +0 -13
  618. package/src/lib/pipes/file-type-image.pipe.ts +0 -45
  619. package/src/lib/pipes/master-pipe.module.ts +0 -13
  620. package/src/lib/pipes/master.pipe.ts +0 -71
  621. package/src/lib/pipes/price-display-pipe.module.ts +0 -14
  622. package/src/lib/pipes/price-display.pipe.ts +0 -20
  623. package/src/lib/pipes/safe-style.pipe.module.ts +0 -13
  624. package/src/lib/pipes/safe-style.pipe.ts +0 -14
  625. package/src/lib/pipes/ucfirst-pipe.module.ts +0 -13
  626. package/src/lib/pipes/ucfirst.pipe.ts +0 -14
  627. package/src/lib/style/_variables.scss +0 -76
  628. package/src/lib/style/material2/_material2-scss-barrel.scss +0 -16
  629. package/src/test.ts +0 -28
  630. package/tsconfig.lib.json +0 -20
  631. package/tsconfig.lib.prod.json +0 -16
  632. package/tsconfig.spec.json +0 -17
@@ -1,122 +0,0 @@
1
- import {Pipe, PipeTransform} from "@angular/core";
2
-
3
- import {PaginationService} from "./pagination.service";
4
- import {IPaginationInstance} from "./pagination-instance";
5
-
6
- const LARGE_NUMBER: number = 999999999;
7
-
8
- interface IPipeState {
9
- collection: any[];
10
- size: number;
11
- start: number;
12
- end: number;
13
- slice: any[];
14
- }
15
-
16
- @Pipe({
17
- name: 'paginate',
18
- pure: false
19
- })
20
- export class PaginatePipe implements PipeTransform {
21
-
22
- // store the values from the last time the pipe
23
- private state: { [id: string]: IPipeState } = {};
24
-
25
- constructor(private paginateService: PaginationService) {
26
- }
27
-
28
- public transform(collection: any[], args: any): any {
29
- // When an observable is passed through the AsyncPipe, it will output
30
- // `null` until the subscription resolves. In this case, we want to
31
- // use the cached data from the `state` object to prevent the NgFor
32
- // from flashing empty until the real values arrive.
33
- if (!(collection instanceof Array)) {
34
- let _id: any = args.id || this.paginateService.DEFAULT_ID;
35
- if (this.state[_id]) {
36
- return this.state[_id].slice;
37
- } else {
38
- return collection;
39
- }
40
- }
41
-
42
- let serverSideMode: boolean = args.totalItems !== undefined;
43
- let instance: IPaginationInstance = this._createInstance(collection, args);
44
- let id: string = instance.id;
45
- let start: number;
46
- let end: number;
47
- let perPage: number = instance.itemsPerPage;
48
-
49
- this.paginateService.register(instance);
50
-
51
- if (!serverSideMode && collection instanceof Array) {
52
- perPage = perPage || LARGE_NUMBER;
53
- start = (instance.currentPage - 1) * perPage;
54
- end = start + perPage;
55
-
56
- let isIdentical: boolean = this._stateIsIdentical(id, collection, start, end);
57
- if (isIdentical) {
58
- return this.state[id].slice;
59
- } else {
60
- let slice: any[] = collection.slice(start, end);
61
- this._saveState(id, collection, slice, start, end);
62
- this.paginateService.change.next(id);
63
- return slice;
64
- }
65
- }
66
-
67
- // save the state for server-side collection to avoid null
68
- // flash as new data loads.
69
- this._saveState(id, collection, collection, start, end);
70
- return collection;
71
- }
72
-
73
- // Create an IPaginationInstance object, using defaults for any optional properties not supplied.
74
- private _createInstance(collection: any[], args: any): IPaginationInstance {
75
- let config: any = args;
76
- this._checkConfig(config);
77
-
78
- return {
79
- id: config.id || this.paginateService.DEFAULT_ID,
80
- itemsPerPage: config.itemsPerPage || 0,
81
- currentPage: config.currentPage || 1,
82
- totalItems: config.totalItems || collection.length
83
- };
84
- }
85
-
86
- // Ensure the argument passed to the filter contains the required properties.
87
- private _checkConfig(config: any): void {
88
- const required: String[] = ["itemsPerPage", "currentPage"];
89
- const missing: String[] = required.filter((prop: any) => !config.hasOwnProperty(prop));
90
- if (0 < missing.length) {
91
- throw new Error(`PaginatePipe: Argument is missing the following required properties: ${missing.join(", ")}`);
92
- }
93
- }
94
-
95
- /**
96
- * To avoid returning a brand new array each time the pipe is run, we store the state of the sliced
97
- * array for a given id. This means that the next time the pipe is run on this collection & id, we just
98
- * need to check that the collection, start and end points are all identical, and if so, return the
99
- * last sliced array.
100
- */
101
- private _saveState(id: string, collection: any[], slice: any[], start: number, end: number): void {
102
- this.state[id] = {
103
- collection,
104
- size: collection.length,
105
- slice,
106
- start,
107
- end
108
- };
109
- }
110
-
111
- // For a given id, returns true if the collection, size, start and end values are identical.
112
- private _stateIsIdentical(id: string, collection: any[], start: number, end: number): boolean {
113
- let state: any = this.state[id];
114
- if (!state) {
115
- return false;
116
- }
117
- return state.collection === collection &&
118
- state.size === collection.length &&
119
- state.start === start &&
120
- state.end === end;
121
- }
122
- }
@@ -1,18 +0,0 @@
1
- // Represents a pagination instance: the configuration object for a single pagination component.
2
- export interface IPaginationInstance {
3
- // An optional ID for the pagination instance. Only useful if you wish to have more than once instance at a time in a given component.
4
- id?: string;
5
- // The number of items per paginated page.
6
- itemsPerPage: number;
7
- // The current (active) page.
8
- currentPage: number;
9
- /**
10
- * The total number of items in the collection. Only useful when
11
- * doing server-side paging, where the collection size is limited
12
- * to a single page returned by the server API.
13
- *
14
- * For in-memory paging, this property should not be set, as it
15
- * will be automatically set to the value of collection.length.
16
- */
17
- totalItems?: number;
18
- }
@@ -1,217 +0,0 @@
1
- import {Component, ElementRef, EventEmitter, Input, OnChanges, OnDestroy, OnInit, Output, ViewChild} from "@angular/core";
2
- import {Subscription} from 'rxjs';
3
-
4
- import {IPaginationInstance} from "./pagination-instance";
5
- import {PaginationService} from "./pagination.service";
6
-
7
- export interface IPage {
8
- label: string;
9
- value: any;
10
- }
11
-
12
- @Component({
13
- selector: 'co-pagination',
14
- template: `
15
- <div class="pagination-component-main-wrapper" *ngIf="!shouldBeHidden()">
16
- <div>
17
- <ng-content></ng-content>
18
- </div>
19
- <ul class="pagination">
20
- <li *ngIf="directionLinks" class="pagination-previous">
21
- <a (click)="goToPreviousPage()" [class.disabled]="isOnFirstPage()">{{ previousLabel }}</a>
22
- </li>
23
- <li *ngFor="let page of pages" [class.current]="getCurrentPage() === page.value" (click)="setCurrentPage(page.value)">
24
- <span>{{page.label}}</span>
25
- </li>
26
- <li *ngIf="directionLinks" class="pagination-next">
27
- <a (click)="goToNextPage()" [class.disabled]="isOnLastPage()">{{ nextLabel }}</a>
28
- </li>
29
- </ul>
30
- </div>
31
- `,
32
- styleUrls: [
33
- 'pagination.scss'
34
- ]
35
- })
36
- export class PaginationComponent implements OnInit, OnChanges, OnDestroy {
37
- @Input()
38
- public id: string;
39
-
40
- @Input()
41
- public maxSize: number = 7;
42
-
43
- @Input()
44
- public directionLinks: boolean = true;
45
-
46
- @Input()
47
- public previousLabel: string = 'Vorige pagina';
48
-
49
- @Input()
50
- public nextLabel: string = 'Volgende pagina';
51
-
52
- @Input()
53
- public autoHide: boolean = false;
54
-
55
- // Emits the new page number.
56
- @Output()
57
- public readonly pageChange: EventEmitter<number> = new EventEmitter<number>();
58
-
59
- @ViewChild('template')
60
- public readonly template: ElementRef;
61
-
62
- public pages: IPage[] = [];
63
-
64
- private changeSub: Subscription;
65
-
66
- constructor(private _paginationService: PaginationService) {
67
- this.changeSub = this._paginationService.change.subscribe((id: string) => {
68
- if (this.id === id) {
69
- this._updatePageLinks();
70
- }
71
- });
72
- }
73
-
74
- ngOnInit(): void {
75
- if (!this.id) {
76
- this.id = this._paginationService.DEFAULT_ID;
77
- }
78
- this._updatePageLinks();
79
- }
80
-
81
- ngOnChanges(): void {
82
- this._updatePageLinks();
83
- }
84
-
85
- ngOnDestroy(): void {
86
- this.changeSub.unsubscribe();
87
- }
88
-
89
- public goToFirstPage(): void {
90
- if (!this.isOnFirstPage()) {
91
- this.setCurrentPage(1);
92
- }
93
- }
94
-
95
- public goToPreviousPage(): void {
96
- if (!this.isOnFirstPage()) {
97
- this.setCurrentPage(this.getCurrentPage() - 1);
98
- }
99
- }
100
-
101
- public goToNextPage(): void {
102
- if (!this.isOnLastPage()) {
103
- this.setCurrentPage(this.getCurrentPage() + 1);
104
- }
105
- }
106
-
107
- public setCurrentPage(page: number): void {
108
- this.pageChange.emit(page);
109
- }
110
-
111
- public isOnFirstPage(): boolean {
112
- return this.getCurrentPage() === 1;
113
- }
114
-
115
- public isOnLastPage(): boolean {
116
- return this.getLastPage() === this.getCurrentPage();
117
- }
118
-
119
- public shouldBeHidden(): boolean {
120
- if (!this.autoHide) {
121
- return false;
122
- } else {
123
- let instance: IPaginationInstance = this._paginationService.getInstance();
124
- return (instance.totalItems <= instance.itemsPerPage);
125
- }
126
- }
127
-
128
- public getCurrentPage(): number {
129
- return this._paginationService.getCurrentPage(this.id);
130
- }
131
-
132
-
133
- /**
134
- * Updates the page links and checks that the current page is valid. Should run whenever the
135
- * PaginationService.change stream emits a value matching the current ID, or when any of the
136
- * input values changes.
137
- */
138
- private _updatePageLinks(): void {
139
- let paginationInstance: IPaginationInstance = this._paginationService.getInstance(this.id);
140
- this.pages = this.createPageArray(paginationInstance.currentPage, paginationInstance.itemsPerPage, paginationInstance.totalItems, this.maxSize);
141
-
142
- const correctedCurrentPage: number = this.outOfBoundCorrection(paginationInstance);
143
- if (correctedCurrentPage !== paginationInstance.currentPage) {
144
- this.setCurrentPage(correctedCurrentPage);
145
- }
146
- }
147
- private getLastPage(): number {
148
- let instance: IPaginationInstance = this._paginationService.getInstance(this.id);
149
- return Math.ceil(instance.totalItems / instance.itemsPerPage);
150
- }
151
-
152
- /**
153
- * Checks that the instance.currentPage property is within bounds for the current page range.
154
- * If not, return a correct value for currentPage, or the current value if OK.
155
- */
156
- private outOfBoundCorrection(instance: IPaginationInstance): number {
157
- const totalPages: number = Math.ceil(instance.totalItems / instance.itemsPerPage);
158
- if (totalPages < instance.currentPage && 0 < totalPages) {
159
- return totalPages;
160
- } else if (instance.currentPage < 1) {
161
- return 1;
162
- }
163
-
164
- return instance.currentPage;
165
- }
166
-
167
- // Returns an array of IPage objects to use in the pagination controls.
168
- private createPageArray(currentPage: number, itemsPerPage: number, totalItems: number, paginationRange: number): IPage[] {
169
- // paginationRange could be a string if passed from attribute, so cast to number.
170
- paginationRange = +paginationRange;
171
- let pages: IPage[] = [];
172
- const totalPages: number = Math.ceil(totalItems / itemsPerPage);
173
- const halfWay: number = Math.ceil(paginationRange / 2);
174
- const isStart: boolean = currentPage <= halfWay;
175
- const isEnd: boolean = totalPages - halfWay < currentPage;
176
- const isMiddle: boolean = !isStart && !isEnd;
177
- let ellipsesNeeded: boolean = paginationRange < totalPages;
178
- let i: number = 1;
179
- while (i <= totalPages && i <= paginationRange) {
180
- let label: string;
181
- let pageNumber: number = this.calculatePageNumber(i, currentPage, paginationRange, totalPages);
182
- let openingEllipsesNeeded: boolean = (i === 2 && (isMiddle || isEnd));
183
- let closingEllipsesNeeded: boolean = (i === paginationRange - 1 && (isMiddle || isStart));
184
- if (ellipsesNeeded && (openingEllipsesNeeded || closingEllipsesNeeded)) {
185
- label = "...";
186
- } else {
187
- label = "" + pageNumber;
188
- }
189
- pages.push({
190
- label: label,
191
- value: pageNumber
192
- });
193
- i++;
194
- }
195
- return pages;
196
- }
197
-
198
- // Given the position in the sequence of pagination links [i], figure out what page number corresponds to that position.
199
- private calculatePageNumber(i: number, currentPage: number, paginationRange: number, totalPages: number): number {
200
- let halfWay: number = Math.ceil(paginationRange / 2);
201
- if (i === paginationRange) {
202
- return totalPages;
203
- } else if (i === 1) {
204
- return i;
205
- } else if (paginationRange < totalPages) {
206
- if (totalPages - halfWay < currentPage) {
207
- return totalPages - paginationRange + i;
208
- } else if (halfWay < currentPage) {
209
- return currentPage - halfWay + i;
210
- } else {
211
- return i;
212
- }
213
- } else {
214
- return i;
215
- }
216
- }
217
- }
@@ -1,25 +0,0 @@
1
- import {NgModule} from "@angular/core";
2
- import {CommonModule} from "@angular/common";
3
-
4
- import {PaginationComponent} from "./pagination.component";
5
- import {PaginatePipe} from "./paginate.pipe";
6
- import {PaginationService} from "./pagination.service";
7
-
8
- @NgModule({
9
- imports: [
10
- CommonModule
11
- ],
12
- providers: [
13
- PaginationService
14
- ],
15
- declarations: [
16
- PaginationComponent,
17
- PaginatePipe
18
- ],
19
- exports: [
20
- PaginationComponent,
21
- PaginatePipe
22
- ]
23
- })
24
- export class PaginationModule {
25
- }
@@ -1,98 +0,0 @@
1
- import {Injectable} from "@angular/core";
2
- import {Subject} from "rxjs";
3
-
4
- import {IPaginationInstance} from "./pagination-instance";
5
- import {ObjectUtils} from "../../core/utils/object-utils";
6
-
7
- @Injectable()
8
- export class PaginationService {
9
- private static readonly DEFAULT_ID: string = "DEFAULT_PAGINATION_ID";
10
-
11
- public change: Subject<string> = new Subject<string>();
12
-
13
- public get DEFAULT_ID(): string {
14
- return PaginationService.DEFAULT_ID;
15
- }
16
-
17
- private readonly instances: { [id: string]: IPaginationInstance } = {};
18
-
19
- constructor() {
20
- }
21
-
22
- public register(instance: IPaginationInstance): void {
23
- if (!instance.id) {
24
- instance.id = PaginationService.DEFAULT_ID;
25
- }
26
-
27
- if (!this.instances[instance.id]) {
28
- this.instances[instance.id] = instance;
29
- this.change.next(instance.id);
30
- } else {
31
- let changed: boolean = this.updateInstance(instance);
32
- if (changed) {
33
- this.change.next(instance.id);
34
- }
35
- }
36
- }
37
-
38
- // Returns the current page number.
39
- public getCurrentPage(id: string): number {
40
- if (this.instances[id]) {
41
- return this.instances[id].currentPage;
42
- }
43
- }
44
-
45
- // Sets the current page number.
46
- public setCurrentPage(id: string, page: number): void {
47
- if (this.instances[id]) {
48
- let instance: IPaginationInstance = this.instances[id];
49
- let maxPage: number = Math.ceil(instance.totalItems / instance.itemsPerPage);
50
- if (page <= maxPage && 1 <= page) {
51
- this.instances[id].currentPage = page;
52
- this.change.next(id);
53
- }
54
- }
55
- }
56
-
57
- // Sets the value of instance.totalItems
58
- public setTotalItems(id: string, totalItems: number): void {
59
- if (this.instances[id] && 0 <= totalItems) {
60
- this.instances[id].totalItems = totalItems;
61
- this.change.next(id);
62
- }
63
- }
64
-
65
- // Sets the value of instance.itemsPerPage.
66
- public setItemsPerPage(id: string, itemsPerPage: number): void {
67
- if (this.instances[id]) {
68
- this.instances[id].itemsPerPage = itemsPerPage;
69
- this.change.next(id);
70
- }
71
- }
72
-
73
- /**
74
- * Returns a clone of the pagination instance object matching the id. If no
75
- * id specified, returns the instance corresponding to the default id.
76
- */
77
- public getInstance(id: string = PaginationService.DEFAULT_ID): IPaginationInstance {
78
- if (this.instances[id]) {
79
- return ObjectUtils.GetShallowClone(this.instances[id]);
80
- }
81
- return <IPaginationInstance>{};
82
- }
83
-
84
- /**
85
- * Check each property of the instance and update any that have changed. Return
86
- * true if any changes were made, else return false.
87
- */
88
- private updateInstance(instance: IPaginationInstance): boolean {
89
- let changed: boolean = false;
90
- for (let prop in this.instances[instance.id]) {
91
- if (instance[prop] !== this.instances[instance.id][prop]) {
92
- this.instances[instance.id][prop] = instance[prop];
93
- changed = true;
94
- }
95
- }
96
- return changed;
97
- }
98
- }
@@ -1,13 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { AppendPipe } from './append.pipe';
3
-
4
- @NgModule({
5
- declarations: [
6
- AppendPipe
7
- ],
8
- exports: [
9
- AppendPipe
10
- ]
11
- })
12
- export class AppendPipeModule {
13
- }
@@ -1,17 +0,0 @@
1
- import {Pipe, PipeTransform} from "@angular/core";
2
-
3
- // A pipe for appending strings to other strings in view templates.
4
- @Pipe({name: "append"})
5
- export class AppendPipe implements PipeTransform {
6
- transform(value: string, append?: string): string {
7
- if (!value) {
8
- return "";
9
- }
10
-
11
- if (!append) {
12
- return value;
13
- }
14
-
15
- return value + append;
16
- }
17
- }
@@ -1,13 +0,0 @@
1
- import {NgModule} from "@angular/core";
2
- import {CoCurrencyPipe} from "./co-currency.pipe";
3
-
4
- @NgModule({
5
- declarations: [
6
- CoCurrencyPipe
7
- ],
8
- exports: [
9
- CoCurrencyPipe
10
- ]
11
- })
12
- export class CoCurrencyPipeModule {
13
- }
@@ -1,45 +0,0 @@
1
- import {Pipe, PipeTransform} from "@angular/core";
2
- import {NumberUtils} from "../core/utils/number-utils";
3
-
4
- /**
5
- * A pipe for transforming strings or numbers to currency formatted strings for display as a price text, e.g. the number 1300.82 to "€ 1,300.82"
6
- * or the string "9000" to "€ 9000,-"
7
- */
8
- @Pipe({name: "coCurrency"})
9
- export class CoCurrencyPipe implements PipeTransform {
10
- private static readonly _CurrencySymbol: string = "€";
11
- private static readonly _WholeNumberedPriceSuffix: string = ",-";
12
-
13
- transform(value: any, allowZero: boolean = false): string {
14
- if (value === null || value === undefined) {
15
- if (allowZero) {
16
- value = 0;
17
- } else {
18
- return "";
19
- }
20
- }
21
- if (value === 0 && !allowZero) {
22
- return "";
23
- }
24
- let suffix: string = "";
25
- const valueAsFloat: number = NumberUtils.ParseFloat(value, 2);
26
- if (NumberUtils.IsNaN(valueAsFloat)) {
27
- return "";
28
- }
29
- // append ,- if integer
30
- if (NumberUtils.IsInteger(valueAsFloat)) {
31
- suffix = CoCurrencyPipe._WholeNumberedPriceSuffix;
32
- }
33
- let valueAsString: string = valueAsFloat.toString();
34
- // add extra zero if price has only one decimal, something like '100.2'
35
- if (valueAsString.indexOf(".") > -1 && valueAsString.split(".")[1].length === 1) {
36
- valueAsString += "0";
37
- }
38
- valueAsString = NumberUtils.AddThousandsCommasTo(valueAsString);
39
- // switch '.' and ',' characters (Dutch number view .. hard coded format for now)
40
- valueAsString = valueAsString.replace(",", "#");
41
- valueAsString = valueAsString.replace(".", ",");
42
- valueAsString = valueAsString.replace("#", ".");
43
- return CoCurrencyPipe._CurrencySymbol + " " + valueAsString + suffix;
44
- }
45
- }
@@ -1,20 +0,0 @@
1
- import {Pipe, PipeTransform} from "@angular/core";
2
-
3
- export interface KeyValuePair {
4
- key: any;
5
- value: any;
6
- }
7
-
8
- @Pipe({
9
- name: "enumkeys"
10
- })
11
- // A pipe for iterating over enum entries
12
- export class EnumKeysPipe implements PipeTransform {
13
- transform(value: any): KeyValuePair[] {
14
- const keys: KeyValuePair[] = [];
15
- for (const enumMember of Object.keys(value)) {
16
- keys.push({key: enumMember, value: value[enumMember]});
17
- }
18
- return keys;
19
- }
20
- }
@@ -1,13 +0,0 @@
1
- import {NgModule} from "@angular/core";
2
- import {EnumKeysPipe} from "./emun-keys.pipe";
3
-
4
- @NgModule({
5
- declarations: [
6
- EnumKeysPipe
7
- ],
8
- exports: [
9
- EnumKeysPipe
10
- ]
11
- })
12
- export class EnumKeysPipeModule {
13
- }
@@ -1,13 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { FileTypeImagePipe } from './file-type-image.pipe';
3
-
4
- @NgModule({
5
- declarations: [
6
- FileTypeImagePipe
7
- ],
8
- exports: [
9
- FileTypeImagePipe
10
- ]
11
- })
12
- export class FileTypeImagePipeModule {
13
- }
@@ -1,45 +0,0 @@
1
- import {Pipe, PipeTransform} from "@angular/core";
2
- import { FileTypeInternal } from '../core/enum/file-type-internal.enum';
3
-
4
- @Pipe({
5
- name: "fileTypeImage"
6
- })
7
- // Transforms a MimeType to the corresponding image data URI of that mime type, for direct use as X in img src=X
8
- export class FileTypeImagePipe implements PipeTransform {
9
- private static readonly _PATH_TO_IMAGE_FOLDER: string = "./assets/images/filetype/";
10
-
11
- constructor() {
12
- }
13
-
14
- transform(value: FileTypeInternal, smallImage: boolean = false): string {
15
- if (!value) {
16
- return "";
17
- }
18
- const smallSuffix: string = smallImage ? "_small" : "";
19
- let imageFileName: string;
20
- switch (value) {
21
- case FileTypeInternal.Image:
22
- imageFileName = "image" + smallSuffix + ".png";
23
- break;
24
- case FileTypeInternal.Pdf:
25
- imageFileName = "pdf" + smallSuffix + ".png";
26
- break;
27
- case FileTypeInternal.ExcelSheet:
28
- imageFileName = "excel" + smallSuffix + ".png";
29
- break;
30
- case FileTypeInternal.WordDocument:
31
- imageFileName = "word" + smallSuffix + ".png";
32
- break;
33
- case FileTypeInternal.Executable:
34
- imageFileName = "exe" + smallSuffix + ".png";
35
- break;
36
- case FileTypeInternal.TextFile:
37
- imageFileName = "text" + smallSuffix + ".png";
38
- break;
39
- default:
40
- imageFileName = "undefined" + smallSuffix + ".png";
41
- break;
42
- }
43
- return FileTypeImagePipe._PATH_TO_IMAGE_FOLDER + imageFileName;
44
- }
45
- }
@@ -1,13 +0,0 @@
1
- import {MasterPipe} from "./master.pipe";
2
- import {NgModule} from "@angular/core";
3
-
4
- @NgModule({
5
- declarations: [
6
- MasterPipe
7
- ],
8
- exports: [
9
- MasterPipe
10
- ]
11
- })
12
- export class MasterPipeModule {
13
- }