@leanix/components 0.2.227 → 0.2.230

Sign up to get free protection for your applications and to get access to all the features.
Files changed (348) hide show
  1. package/esm2020/index.mjs +119 -0
  2. package/esm2020/leanix-components.mjs +5 -0
  3. package/esm2020/lib/core-ui/annotations/required.mjs +33 -0
  4. package/esm2020/lib/core-ui/components/badge/badge.component.mjs +25 -0
  5. package/esm2020/lib/core-ui/components/button/button.component.mjs +72 -0
  6. package/esm2020/lib/core-ui/components/button-group/button-group.component.mjs +28 -0
  7. package/esm2020/lib/core-ui/components/card/card.component.mjs +19 -0
  8. package/esm2020/lib/core-ui/components/collapsible/collapsible.component.mjs +53 -0
  9. package/esm2020/lib/core-ui/components/colored-label/colored-label.component.mjs +34 -0
  10. package/esm2020/lib/core-ui/components/ellipsis/ellipsis.component.mjs +70 -0
  11. package/esm2020/lib/core-ui/components/icon-scale/icon-scale.component.mjs +40 -0
  12. package/esm2020/lib/core-ui/components/spinner/spinner.component.mjs +26 -0
  13. package/esm2020/lib/core-ui/components/table/table-header/table-header.component.mjs +55 -0
  14. package/esm2020/lib/core-ui/components/table/table.component.mjs +69 -0
  15. package/esm2020/lib/core-ui/components/tiny-spinner/tiny-spinner.component.mjs +11 -0
  16. package/esm2020/lib/core-ui/core-ui.constants.mjs +13 -0
  17. package/esm2020/lib/core-ui/core-ui.module.mjs +177 -0
  18. package/esm2020/lib/core-ui/directives/after-view-init.directive.mjs +30 -0
  19. package/esm2020/lib/core-ui/directives/autoclose-group.service.mjs +38 -0
  20. package/esm2020/lib/core-ui/directives/autoclose.directive.mjs +40 -0
  21. package/esm2020/lib/core-ui/directives/autofocus.directive.mjs +27 -0
  22. package/esm2020/lib/core-ui/directives/html.directive.mjs +29 -0
  23. package/esm2020/lib/core-ui/functions/core-css.helpers.mjs +35 -0
  24. package/esm2020/lib/core-ui/pipes/br.pipe.mjs +23 -0
  25. package/esm2020/lib/core-ui/pipes/contrast-color.pipe.mjs +20 -0
  26. package/esm2020/lib/core-ui/pipes/custom-date.pipe.mjs +27 -0
  27. package/esm2020/lib/core-ui/pipes/highlight-range.pipe.mjs +21 -0
  28. package/esm2020/lib/core-ui/pipes/highlight-term.pipe.mjs +38 -0
  29. package/esm2020/lib/core-ui/pipes/lx-is-uuid.pipe.mjs +21 -0
  30. package/esm2020/lib/core-ui/pipes/lx-time-ago.pipe.mjs +25 -0
  31. package/esm2020/lib/core-ui/pipes/lx-translate.pipe.mjs +45 -0
  32. package/esm2020/lib/core-ui/pipes/markdown.pipe.mjs +29 -0
  33. package/esm2020/lib/core-ui/pipes/nbsp.pipe.mjs +14 -0
  34. package/esm2020/lib/core-ui/pipes/sort.pipe.mjs +52 -0
  35. package/esm2020/lib/core-ui/pipes/translation-after.pipe.mjs +28 -0
  36. package/esm2020/lib/core-ui/pipes/translation-before.pipe.mjs +53 -0
  37. package/esm2020/lib/core-ui/pipes/translation-between.pipe.mjs +67 -0
  38. package/esm2020/lib/core-ui/pipes/unescape-curly-braces.pipe.mjs +16 -0
  39. package/esm2020/lib/core-ui/tooltip/to-cdk-position.function.mjs +74 -0
  40. package/esm2020/lib/core-ui/tooltip/tooltip-position.interface.mjs +7 -0
  41. package/esm2020/lib/core-ui/tooltip/tooltip.component.mjs +26 -0
  42. package/esm2020/lib/core-ui/tooltip/tooltip.directive.mjs +102 -0
  43. package/esm2020/lib/core-ui/tooltip/tooltip.module.mjs +21 -0
  44. package/esm2020/lib/forms-ui/components/basic-dropdown/basic-dropdown.component.mjs +103 -0
  45. package/esm2020/lib/forms-ui/components/basic-dropdown-item/basic-dropdown-item.component.mjs +33 -0
  46. package/esm2020/lib/forms-ui/components/cdk-options-dropdown/cdk-options-dropdown.component.mjs +216 -0
  47. package/esm2020/lib/forms-ui/components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component.mjs +136 -0
  48. package/esm2020/lib/forms-ui/components/currency/currency-input.component.mjs +141 -0
  49. package/esm2020/lib/forms-ui/components/currency/currency-symbol-map.constant.mjs +105 -0
  50. package/esm2020/lib/forms-ui/components/currency/currency-symbol.component.mjs +25 -0
  51. package/esm2020/lib/forms-ui/components/date-input/date-input.component.mjs +270 -0
  52. package/esm2020/lib/forms-ui/components/drag-and-drop-list/constants.mjs +5 -0
  53. package/esm2020/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list-item/drag-and-drop-list-item.component.mjs +49 -0
  54. package/esm2020/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.mjs +102 -0
  55. package/esm2020/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.module.mjs +25 -0
  56. package/esm2020/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-item/keyboard-sortable-item.directive.mjs +133 -0
  57. package/esm2020/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-list/keyboard-sortable-list.directive.mjs +37 -0
  58. package/esm2020/lib/forms-ui/components/error-message/error-message.component.mjs +24 -0
  59. package/esm2020/lib/forms-ui/components/form-error/form-error.component.mjs +40 -0
  60. package/esm2020/lib/forms-ui/components/icon/icon.component.mjs +44 -0
  61. package/esm2020/lib/forms-ui/components/input/input.component.mjs +44 -0
  62. package/esm2020/lib/forms-ui/components/keyboard-select.directive.mjs +116 -0
  63. package/esm2020/lib/forms-ui/components/multi-select/multi-select.component.mjs +251 -0
  64. package/esm2020/lib/forms-ui/components/option/option.component.mjs +81 -0
  65. package/esm2020/lib/forms-ui/components/option-group/option-group.component.mjs +29 -0
  66. package/esm2020/lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component.mjs +100 -0
  67. package/esm2020/lib/forms-ui/components/options-dropdown/options-dropdown.component.mjs +163 -0
  68. package/esm2020/lib/forms-ui/components/options-sub-dropdown/options-sub-dropdown.component.mjs +92 -0
  69. package/esm2020/lib/forms-ui/components/picker/picker-trigger.directive.mjs +36 -0
  70. package/esm2020/lib/forms-ui/components/picker/picker.component.mjs +201 -0
  71. package/esm2020/lib/forms-ui/components/picker-option/picker-option.component.mjs +118 -0
  72. package/esm2020/lib/forms-ui/components/pill-item/pill-item.component.mjs +33 -0
  73. package/esm2020/lib/forms-ui/components/pill-list/pill-list.component.mjs +59 -0
  74. package/esm2020/lib/forms-ui/components/responsive-input/responsive-input.component.mjs +97 -0
  75. package/esm2020/lib/forms-ui/components/single-select/single-select.component.mjs +274 -0
  76. package/esm2020/lib/forms-ui/components/slider-toggle/slider-toggle.component.mjs +42 -0
  77. package/esm2020/lib/forms-ui/components/sorting-dropdown/sorting-dropdown.component.mjs +52 -0
  78. package/esm2020/lib/forms-ui/components/sorting-dropdown-trigger/sorting-dropdown-trigger.component.mjs +21 -0
  79. package/esm2020/lib/forms-ui/directives/form-error.directive.mjs +109 -0
  80. package/esm2020/lib/forms-ui/directives/form-submit.directive.mjs +28 -0
  81. package/esm2020/lib/forms-ui/directives/keyboard-action-source.directive.mjs +53 -0
  82. package/esm2020/lib/forms-ui/directives/mark-invalid.directive.mjs +38 -0
  83. package/esm2020/lib/forms-ui/directives/select-dropdown.directive.mjs +31 -0
  84. package/esm2020/lib/forms-ui/directives/selectable-item.directive.mjs +33 -0
  85. package/esm2020/lib/forms-ui/directives/selected-option.directive.mjs +26 -0
  86. package/esm2020/lib/forms-ui/forms-ui.module.mjs +236 -0
  87. package/esm2020/lib/forms-ui/helpers/key-codes.constants.mjs +11 -0
  88. package/esm2020/lib/forms-ui/helpers/keyboard-navigation.helpers.mjs +38 -0
  89. package/esm2020/lib/forms-ui/models/base-select.directive.mjs +148 -0
  90. package/esm2020/lib/forms-ui/models/dropdown-item.interface.mjs +2 -0
  91. package/esm2020/lib/forms-ui/models/single-select-padding.interface.mjs +2 -0
  92. package/esm2020/lib/forms-ui/models/sorting.interface.mjs +7 -0
  93. package/esm2020/lib/forms-ui/pipes/filter-selection.pipe.mjs +30 -0
  94. package/esm2020/lib/forms-ui/pipes/filter-term.pipe.mjs +26 -0
  95. package/esm2020/lib/forms-ui/pipes/format-number.pipe.mjs +65 -0
  96. package/esm2020/lib/forms-ui/validators/date-in-foreseeable-future.validator.mjs +26 -0
  97. package/esm2020/lib/modal-ui/components/modal/modal.component.mjs +205 -0
  98. package/esm2020/lib/modal-ui/components/modal-footer/modal-footer.component.mjs +11 -0
  99. package/esm2020/lib/modal-ui/components/modal-header/modal-header.component.mjs +23 -0
  100. package/esm2020/lib/modal-ui/directives/modal-content.directive.mjs +13 -0
  101. package/esm2020/lib/modal-ui/modal.constants.mjs +3 -0
  102. package/esm2020/lib/modal-ui/modal.module.mjs +26 -0
  103. package/esm2020/lib/popover-ui/components/popover/popover.component.mjs +199 -0
  104. package/esm2020/lib/popover-ui/directives/popover-click.directive.mjs +51 -0
  105. package/esm2020/lib/popover-ui/directives/popover-content.directive.mjs +16 -0
  106. package/esm2020/lib/popover-ui/directives/popover-hover.directive.mjs +87 -0
  107. package/esm2020/lib/popover-ui/popover-ui.module.mjs +22 -0
  108. package/esm2020/lib/shared/date-helpers.mjs +35 -0
  109. package/esm2020/lib/shared/misc-helpers.mjs +34 -0
  110. package/esm2020/lib/shared/observe.mjs +40 -0
  111. package/esm2020/lib/tab-ui/components/tab/tab.component.mjs +70 -0
  112. package/esm2020/lib/tab-ui/components/tab-group/tab-group.component.mjs +71 -0
  113. package/esm2020/lib/tab-ui/tab-ui.module.mjs +22 -0
  114. package/fesm2015/{leanix-components.js → leanix-components.mjs} +681 -692
  115. package/fesm2015/leanix-components.mjs.map +1 -0
  116. package/fesm2020/leanix-components.mjs +6207 -0
  117. package/fesm2020/leanix-components.mjs.map +1 -0
  118. package/index.d.ts +1 -0
  119. package/lib/core-ui/functions/core-css.helpers.d.ts +7 -0
  120. package/lib/forms-ui/components/drag-and-drop-list/constants.d.ts +4 -0
  121. package/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list-item/drag-and-drop-list-item.component.d.ts +7 -6
  122. package/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +23 -17
  123. package/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.module.d.ts +14 -0
  124. package/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-item/keyboard-sortable-item.directive.d.ts +36 -0
  125. package/lib/forms-ui/components/drag-and-drop-list/keyboard-sortable-list/keyboard-sortable-list.directive.d.ts +14 -0
  126. package/lib/forms-ui/forms-ui.module.d.ts +41 -43
  127. package/package.json +23 -9
  128. package/bundles/leanix-components.umd.js +0 -7162
  129. package/bundles/leanix-components.umd.js.map +0 -1
  130. package/esm2015/index.js +0 -117
  131. package/esm2015/index.js.map +0 -1
  132. package/esm2015/leanix-components.js +0 -5
  133. package/esm2015/leanix-components.js.map +0 -1
  134. package/esm2015/lib/core-ui/annotations/required.js +0 -33
  135. package/esm2015/lib/core-ui/annotations/required.js.map +0 -1
  136. package/esm2015/lib/core-ui/components/badge/badge.component.js +0 -29
  137. package/esm2015/lib/core-ui/components/badge/badge.component.js.map +0 -1
  138. package/esm2015/lib/core-ui/components/button/button.component.js +0 -78
  139. package/esm2015/lib/core-ui/components/button/button.component.js.map +0 -1
  140. package/esm2015/lib/core-ui/components/button-group/button-group.component.js +0 -32
  141. package/esm2015/lib/core-ui/components/button-group/button-group.component.js.map +0 -1
  142. package/esm2015/lib/core-ui/components/card/card.component.js +0 -23
  143. package/esm2015/lib/core-ui/components/card/card.component.js.map +0 -1
  144. package/esm2015/lib/core-ui/components/collapsible/collapsible.component.js +0 -58
  145. package/esm2015/lib/core-ui/components/collapsible/collapsible.component.js.map +0 -1
  146. package/esm2015/lib/core-ui/components/colored-label/colored-label.component.js +0 -39
  147. package/esm2015/lib/core-ui/components/colored-label/colored-label.component.js.map +0 -1
  148. package/esm2015/lib/core-ui/components/ellipsis/ellipsis.component.js +0 -74
  149. package/esm2015/lib/core-ui/components/ellipsis/ellipsis.component.js.map +0 -1
  150. package/esm2015/lib/core-ui/components/icon-scale/icon-scale.component.js +0 -46
  151. package/esm2015/lib/core-ui/components/icon-scale/icon-scale.component.js.map +0 -1
  152. package/esm2015/lib/core-ui/components/spinner/spinner.component.js +0 -30
  153. package/esm2015/lib/core-ui/components/spinner/spinner.component.js.map +0 -1
  154. package/esm2015/lib/core-ui/components/table/table-header/table-header.component.js +0 -60
  155. package/esm2015/lib/core-ui/components/table/table-header/table-header.component.js.map +0 -1
  156. package/esm2015/lib/core-ui/components/table/table.component.js +0 -70
  157. package/esm2015/lib/core-ui/components/table/table.component.js.map +0 -1
  158. package/esm2015/lib/core-ui/components/tiny-spinner/tiny-spinner.component.js +0 -14
  159. package/esm2015/lib/core-ui/components/tiny-spinner/tiny-spinner.component.js.map +0 -1
  160. package/esm2015/lib/core-ui/core-ui.constants.js +0 -13
  161. package/esm2015/lib/core-ui/core-ui.constants.js.map +0 -1
  162. package/esm2015/lib/core-ui/core-ui.module.js +0 -177
  163. package/esm2015/lib/core-ui/core-ui.module.js.map +0 -1
  164. package/esm2015/lib/core-ui/directives/after-view-init.directive.js +0 -30
  165. package/esm2015/lib/core-ui/directives/after-view-init.directive.js.map +0 -1
  166. package/esm2015/lib/core-ui/directives/autoclose-group.service.js +0 -38
  167. package/esm2015/lib/core-ui/directives/autoclose-group.service.js.map +0 -1
  168. package/esm2015/lib/core-ui/directives/autoclose.directive.js +0 -40
  169. package/esm2015/lib/core-ui/directives/autoclose.directive.js.map +0 -1
  170. package/esm2015/lib/core-ui/directives/autofocus.directive.js +0 -27
  171. package/esm2015/lib/core-ui/directives/autofocus.directive.js.map +0 -1
  172. package/esm2015/lib/core-ui/directives/html.directive.js +0 -30
  173. package/esm2015/lib/core-ui/directives/html.directive.js.map +0 -1
  174. package/esm2015/lib/core-ui/functions/core-css.helpers.js +0 -23
  175. package/esm2015/lib/core-ui/functions/core-css.helpers.js.map +0 -1
  176. package/esm2015/lib/core-ui/pipes/br.pipe.js +0 -23
  177. package/esm2015/lib/core-ui/pipes/br.pipe.js.map +0 -1
  178. package/esm2015/lib/core-ui/pipes/contrast-color.pipe.js +0 -20
  179. package/esm2015/lib/core-ui/pipes/contrast-color.pipe.js.map +0 -1
  180. package/esm2015/lib/core-ui/pipes/custom-date.pipe.js +0 -27
  181. package/esm2015/lib/core-ui/pipes/custom-date.pipe.js.map +0 -1
  182. package/esm2015/lib/core-ui/pipes/highlight-range.pipe.js +0 -21
  183. package/esm2015/lib/core-ui/pipes/highlight-range.pipe.js.map +0 -1
  184. package/esm2015/lib/core-ui/pipes/highlight-term.pipe.js +0 -38
  185. package/esm2015/lib/core-ui/pipes/highlight-term.pipe.js.map +0 -1
  186. package/esm2015/lib/core-ui/pipes/lx-is-uuid.pipe.js +0 -21
  187. package/esm2015/lib/core-ui/pipes/lx-is-uuid.pipe.js.map +0 -1
  188. package/esm2015/lib/core-ui/pipes/lx-time-ago.pipe.js +0 -25
  189. package/esm2015/lib/core-ui/pipes/lx-time-ago.pipe.js.map +0 -1
  190. package/esm2015/lib/core-ui/pipes/lx-translate.pipe.js +0 -46
  191. package/esm2015/lib/core-ui/pipes/lx-translate.pipe.js.map +0 -1
  192. package/esm2015/lib/core-ui/pipes/markdown.pipe.js +0 -29
  193. package/esm2015/lib/core-ui/pipes/markdown.pipe.js.map +0 -1
  194. package/esm2015/lib/core-ui/pipes/nbsp.pipe.js +0 -14
  195. package/esm2015/lib/core-ui/pipes/nbsp.pipe.js.map +0 -1
  196. package/esm2015/lib/core-ui/pipes/sort.pipe.js +0 -52
  197. package/esm2015/lib/core-ui/pipes/sort.pipe.js.map +0 -1
  198. package/esm2015/lib/core-ui/pipes/translation-after.pipe.js +0 -28
  199. package/esm2015/lib/core-ui/pipes/translation-after.pipe.js.map +0 -1
  200. package/esm2015/lib/core-ui/pipes/translation-before.pipe.js +0 -53
  201. package/esm2015/lib/core-ui/pipes/translation-before.pipe.js.map +0 -1
  202. package/esm2015/lib/core-ui/pipes/translation-between.pipe.js +0 -67
  203. package/esm2015/lib/core-ui/pipes/translation-between.pipe.js.map +0 -1
  204. package/esm2015/lib/core-ui/pipes/unescape-curly-braces.pipe.js +0 -16
  205. package/esm2015/lib/core-ui/pipes/unescape-curly-braces.pipe.js.map +0 -1
  206. package/esm2015/lib/core-ui/tooltip/to-cdk-position.function.js +0 -74
  207. package/esm2015/lib/core-ui/tooltip/to-cdk-position.function.js.map +0 -1
  208. package/esm2015/lib/core-ui/tooltip/tooltip-position.interface.js +0 -7
  209. package/esm2015/lib/core-ui/tooltip/tooltip-position.interface.js.map +0 -1
  210. package/esm2015/lib/core-ui/tooltip/tooltip.component.js +0 -30
  211. package/esm2015/lib/core-ui/tooltip/tooltip.component.js.map +0 -1
  212. package/esm2015/lib/core-ui/tooltip/tooltip.directive.js +0 -107
  213. package/esm2015/lib/core-ui/tooltip/tooltip.directive.js.map +0 -1
  214. package/esm2015/lib/core-ui/tooltip/tooltip.module.js +0 -21
  215. package/esm2015/lib/core-ui/tooltip/tooltip.module.js.map +0 -1
  216. package/esm2015/lib/forms-ui/components/basic-dropdown/basic-dropdown.component.js +0 -108
  217. package/esm2015/lib/forms-ui/components/basic-dropdown/basic-dropdown.component.js.map +0 -1
  218. package/esm2015/lib/forms-ui/components/basic-dropdown-item/basic-dropdown-item.component.js +0 -38
  219. package/esm2015/lib/forms-ui/components/basic-dropdown-item/basic-dropdown-item.component.js.map +0 -1
  220. package/esm2015/lib/forms-ui/components/cdk-options-dropdown/cdk-options-dropdown.component.js +0 -223
  221. package/esm2015/lib/forms-ui/components/cdk-options-dropdown/cdk-options-dropdown.component.js.map +0 -1
  222. package/esm2015/lib/forms-ui/components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component.js +0 -140
  223. package/esm2015/lib/forms-ui/components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component.js.map +0 -1
  224. package/esm2015/lib/forms-ui/components/currency/currency-input.component.js +0 -147
  225. package/esm2015/lib/forms-ui/components/currency/currency-input.component.js.map +0 -1
  226. package/esm2015/lib/forms-ui/components/currency/currency-symbol-map.constant.js +0 -105
  227. package/esm2015/lib/forms-ui/components/currency/currency-symbol-map.constant.js.map +0 -1
  228. package/esm2015/lib/forms-ui/components/currency/currency-symbol.component.js +0 -28
  229. package/esm2015/lib/forms-ui/components/currency/currency-symbol.component.js.map +0 -1
  230. package/esm2015/lib/forms-ui/components/date-input/date-input.component.js +0 -276
  231. package/esm2015/lib/forms-ui/components/date-input/date-input.component.js.map +0 -1
  232. package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list-item/drag-and-drop-list-item.component.js +0 -57
  233. package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list-item/drag-and-drop-list-item.component.js.map +0 -1
  234. package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.js +0 -99
  235. package/esm2015/lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.component.js.map +0 -1
  236. package/esm2015/lib/forms-ui/components/error-message/error-message.component.js +0 -29
  237. package/esm2015/lib/forms-ui/components/error-message/error-message.component.js.map +0 -1
  238. package/esm2015/lib/forms-ui/components/form-error/form-error.component.js +0 -44
  239. package/esm2015/lib/forms-ui/components/form-error/form-error.component.js.map +0 -1
  240. package/esm2015/lib/forms-ui/components/icon/icon.component.js +0 -49
  241. package/esm2015/lib/forms-ui/components/icon/icon.component.js.map +0 -1
  242. package/esm2015/lib/forms-ui/components/input/input.component.js +0 -51
  243. package/esm2015/lib/forms-ui/components/input/input.component.js.map +0 -1
  244. package/esm2015/lib/forms-ui/components/keyboard-select.directive.js +0 -117
  245. package/esm2015/lib/forms-ui/components/keyboard-select.directive.js.map +0 -1
  246. package/esm2015/lib/forms-ui/components/multi-select/multi-select.component.js +0 -257
  247. package/esm2015/lib/forms-ui/components/multi-select/multi-select.component.js.map +0 -1
  248. package/esm2015/lib/forms-ui/components/option/option.component.js +0 -85
  249. package/esm2015/lib/forms-ui/components/option/option.component.js.map +0 -1
  250. package/esm2015/lib/forms-ui/components/option-group/option-group.component.js +0 -34
  251. package/esm2015/lib/forms-ui/components/option-group/option-group.component.js.map +0 -1
  252. package/esm2015/lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component.js +0 -105
  253. package/esm2015/lib/forms-ui/components/option-group-dropdown/option-group-dropdown.component.js.map +0 -1
  254. package/esm2015/lib/forms-ui/components/options-dropdown/options-dropdown.component.js +0 -169
  255. package/esm2015/lib/forms-ui/components/options-dropdown/options-dropdown.component.js.map +0 -1
  256. package/esm2015/lib/forms-ui/components/options-sub-dropdown/options-sub-dropdown.component.js +0 -96
  257. package/esm2015/lib/forms-ui/components/options-sub-dropdown/options-sub-dropdown.component.js.map +0 -1
  258. package/esm2015/lib/forms-ui/components/picker/picker-trigger.directive.js +0 -36
  259. package/esm2015/lib/forms-ui/components/picker/picker-trigger.directive.js.map +0 -1
  260. package/esm2015/lib/forms-ui/components/picker/picker.component.js +0 -210
  261. package/esm2015/lib/forms-ui/components/picker/picker.component.js.map +0 -1
  262. package/esm2015/lib/forms-ui/components/picker-option/picker-option.component.js +0 -124
  263. package/esm2015/lib/forms-ui/components/picker-option/picker-option.component.js.map +0 -1
  264. package/esm2015/lib/forms-ui/components/pill-item/pill-item.component.js +0 -37
  265. package/esm2015/lib/forms-ui/components/pill-item/pill-item.component.js.map +0 -1
  266. package/esm2015/lib/forms-ui/components/pill-list/pill-list.component.js +0 -64
  267. package/esm2015/lib/forms-ui/components/pill-list/pill-list.component.js.map +0 -1
  268. package/esm2015/lib/forms-ui/components/responsive-input/responsive-input.component.js +0 -104
  269. package/esm2015/lib/forms-ui/components/responsive-input/responsive-input.component.js.map +0 -1
  270. package/esm2015/lib/forms-ui/components/single-select/single-select.component.js +0 -279
  271. package/esm2015/lib/forms-ui/components/single-select/single-select.component.js.map +0 -1
  272. package/esm2015/lib/forms-ui/components/slider-toggle/slider-toggle.component.js +0 -47
  273. package/esm2015/lib/forms-ui/components/slider-toggle/slider-toggle.component.js.map +0 -1
  274. package/esm2015/lib/forms-ui/components/sorting-dropdown/sorting-dropdown.component.js +0 -56
  275. package/esm2015/lib/forms-ui/components/sorting-dropdown/sorting-dropdown.component.js.map +0 -1
  276. package/esm2015/lib/forms-ui/components/sorting-dropdown-trigger/sorting-dropdown-trigger.component.js +0 -25
  277. package/esm2015/lib/forms-ui/components/sorting-dropdown-trigger/sorting-dropdown-trigger.component.js.map +0 -1
  278. package/esm2015/lib/forms-ui/directives/form-error.directive.js +0 -111
  279. package/esm2015/lib/forms-ui/directives/form-error.directive.js.map +0 -1
  280. package/esm2015/lib/forms-ui/directives/form-submit.directive.js +0 -28
  281. package/esm2015/lib/forms-ui/directives/form-submit.directive.js.map +0 -1
  282. package/esm2015/lib/forms-ui/directives/keyboard-action-source.directive.js +0 -53
  283. package/esm2015/lib/forms-ui/directives/keyboard-action-source.directive.js.map +0 -1
  284. package/esm2015/lib/forms-ui/directives/mark-invalid.directive.js +0 -38
  285. package/esm2015/lib/forms-ui/directives/mark-invalid.directive.js.map +0 -1
  286. package/esm2015/lib/forms-ui/directives/select-dropdown.directive.js +0 -31
  287. package/esm2015/lib/forms-ui/directives/select-dropdown.directive.js.map +0 -1
  288. package/esm2015/lib/forms-ui/directives/selectable-item.directive.js +0 -33
  289. package/esm2015/lib/forms-ui/directives/selectable-item.directive.js.map +0 -1
  290. package/esm2015/lib/forms-ui/directives/selected-option.directive.js +0 -26
  291. package/esm2015/lib/forms-ui/directives/selected-option.directive.js.map +0 -1
  292. package/esm2015/lib/forms-ui/forms-ui.module.js +0 -244
  293. package/esm2015/lib/forms-ui/forms-ui.module.js.map +0 -1
  294. package/esm2015/lib/forms-ui/helpers/key-codes.constants.js +0 -11
  295. package/esm2015/lib/forms-ui/helpers/key-codes.constants.js.map +0 -1
  296. package/esm2015/lib/forms-ui/helpers/keyboard-navigation.helpers.js +0 -38
  297. package/esm2015/lib/forms-ui/helpers/keyboard-navigation.helpers.js.map +0 -1
  298. package/esm2015/lib/forms-ui/models/base-select.directive.js +0 -148
  299. package/esm2015/lib/forms-ui/models/base-select.directive.js.map +0 -1
  300. package/esm2015/lib/forms-ui/models/dropdown-item.interface.js +0 -2
  301. package/esm2015/lib/forms-ui/models/dropdown-item.interface.js.map +0 -1
  302. package/esm2015/lib/forms-ui/models/single-select-padding.interface.js +0 -2
  303. package/esm2015/lib/forms-ui/models/single-select-padding.interface.js.map +0 -1
  304. package/esm2015/lib/forms-ui/models/sorting.interface.js +0 -7
  305. package/esm2015/lib/forms-ui/models/sorting.interface.js.map +0 -1
  306. package/esm2015/lib/forms-ui/pipes/filter-selection.pipe.js +0 -30
  307. package/esm2015/lib/forms-ui/pipes/filter-selection.pipe.js.map +0 -1
  308. package/esm2015/lib/forms-ui/pipes/filter-term.pipe.js +0 -26
  309. package/esm2015/lib/forms-ui/pipes/filter-term.pipe.js.map +0 -1
  310. package/esm2015/lib/forms-ui/pipes/format-number.pipe.js +0 -65
  311. package/esm2015/lib/forms-ui/pipes/format-number.pipe.js.map +0 -1
  312. package/esm2015/lib/forms-ui/validators/date-in-foreseeable-future.validator.js +0 -26
  313. package/esm2015/lib/forms-ui/validators/date-in-foreseeable-future.validator.js.map +0 -1
  314. package/esm2015/lib/modal-ui/components/modal/modal.component.js +0 -214
  315. package/esm2015/lib/modal-ui/components/modal/modal.component.js.map +0 -1
  316. package/esm2015/lib/modal-ui/components/modal-footer/modal-footer.component.js +0 -15
  317. package/esm2015/lib/modal-ui/components/modal-footer/modal-footer.component.js.map +0 -1
  318. package/esm2015/lib/modal-ui/components/modal-header/modal-header.component.js +0 -27
  319. package/esm2015/lib/modal-ui/components/modal-header/modal-header.component.js.map +0 -1
  320. package/esm2015/lib/modal-ui/directives/modal-content.directive.js +0 -13
  321. package/esm2015/lib/modal-ui/directives/modal-content.directive.js.map +0 -1
  322. package/esm2015/lib/modal-ui/modal.constants.js +0 -3
  323. package/esm2015/lib/modal-ui/modal.constants.js.map +0 -1
  324. package/esm2015/lib/modal-ui/modal.module.js +0 -26
  325. package/esm2015/lib/modal-ui/modal.module.js.map +0 -1
  326. package/esm2015/lib/popover-ui/components/popover/popover.component.js +0 -203
  327. package/esm2015/lib/popover-ui/components/popover/popover.component.js.map +0 -1
  328. package/esm2015/lib/popover-ui/directives/popover-click.directive.js +0 -51
  329. package/esm2015/lib/popover-ui/directives/popover-click.directive.js.map +0 -1
  330. package/esm2015/lib/popover-ui/directives/popover-content.directive.js +0 -16
  331. package/esm2015/lib/popover-ui/directives/popover-content.directive.js.map +0 -1
  332. package/esm2015/lib/popover-ui/directives/popover-hover.directive.js +0 -87
  333. package/esm2015/lib/popover-ui/directives/popover-hover.directive.js.map +0 -1
  334. package/esm2015/lib/popover-ui/popover-ui.module.js +0 -22
  335. package/esm2015/lib/popover-ui/popover-ui.module.js.map +0 -1
  336. package/esm2015/lib/shared/date-helpers.js +0 -35
  337. package/esm2015/lib/shared/date-helpers.js.map +0 -1
  338. package/esm2015/lib/shared/misc-helpers.js +0 -34
  339. package/esm2015/lib/shared/misc-helpers.js.map +0 -1
  340. package/esm2015/lib/shared/observe.js +0 -40
  341. package/esm2015/lib/shared/observe.js.map +0 -1
  342. package/esm2015/lib/tab-ui/components/tab/tab.component.js +0 -75
  343. package/esm2015/lib/tab-ui/components/tab/tab.component.js.map +0 -1
  344. package/esm2015/lib/tab-ui/components/tab-group/tab-group.component.js +0 -78
  345. package/esm2015/lib/tab-ui/components/tab-group/tab-group.component.js.map +0 -1
  346. package/esm2015/lib/tab-ui/tab-ui.module.js +0 -22
  347. package/esm2015/lib/tab-ui/tab-ui.module.js.map +0 -1
  348. package/fesm2015/leanix-components.js.map +0 -1
package/index.d.ts CHANGED
@@ -83,6 +83,7 @@ export * from './lib/forms-ui/pipes/filter-selection.pipe';
83
83
  export * from './lib/forms-ui/pipes/filter-term.pipe';
84
84
  export * from './lib/forms-ui/pipes/format-number.pipe';
85
85
  export * from './lib/forms-ui/validators/date-in-foreseeable-future.validator';
86
+ export { LxDragAndDropListModule } from './lib/forms-ui/components/drag-and-drop-list/drag-and-drop-list.module';
86
87
  export * from './lib/modal-ui/modal.module';
87
88
  export * from './lib/modal-ui/modal.constants';
88
89
  export * from './lib/modal-ui/components/modal/modal.component';
@@ -1,3 +1,10 @@
1
+ /**
2
+ * Compute the most eligible text color for a given background color (black or white), depending on the luminance of the
3
+ * background color. In case the provided color is undefined or invalid, white (#FFFFFF) is returned.
4
+ *
5
+ * @param colorHex Color string in hexadecimal encoding.
6
+ * @returns Equivalent contrast color in hexadecimal encoding.
7
+ */
1
8
  export declare function getContrastColor(colorHex?: string): string;
2
9
  export declare function shorthandHexHandle(hex: string): string;
3
10
  export declare function isValidHexColor(color: string): boolean;
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Used in the DragAndDropListComponent and KeyboardSortableListDirective
3
+ */
4
+ export declare const DRAG_AND_DROP_LIST_TRANSLATION_NAME = "DragAndDropListComponent";
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { ElementRef, EventEmitter, TemplateRef } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export interface DragAndDropListAction {
4
4
  id: string;
@@ -11,6 +11,7 @@ export interface DragAndDropListActionEvent {
11
11
  item: string;
12
12
  }
13
13
  export declare class DragAndDropListItemComponent {
14
+ private element;
14
15
  readonly NAME = "DragAndDropListItemComponent";
15
16
  item: string;
16
17
  draggable: boolean;
@@ -20,12 +21,12 @@ export declare class DragAndDropListItemComponent {
20
21
  */
21
22
  actions?: DragAndDropListAction[];
22
23
  action: EventEmitter<DragAndDropListActionEvent>;
23
- moveToTop: EventEmitter<any>;
24
- moveUp: EventEmitter<any>;
25
- moveToBottom: EventEmitter<any>;
26
- moveDown: EventEmitter<any>;
27
24
  get draggingDisabled(): boolean;
25
+ get hasCustomTemplate(): boolean;
26
+ customTemplateRef: TemplateRef<any> | null;
27
+ constructor(element: ElementRef);
28
28
  trackByAction(_index: number, action: DragAndDropListAction): string;
29
+ focus(): void;
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropListItemComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListItemComponent, "lx-drag-and-drop-list-item", never, { "item": "item"; "draggable": "draggable"; "actions": "actions"; }, { "action": "action"; "moveToTop": "moveToTop"; "moveUp": "moveUp"; "moveToBottom": "moveToBottom"; "moveDown": "moveDown"; }, never, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListItemComponent, "lx-drag-and-drop-list-item", never, { "item": "item"; "draggable": "draggable"; "actions": "actions"; }, { "action": "action"; }, ["customTemplateRef"], never>;
31
32
  }
@@ -1,15 +1,21 @@
1
1
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
- import { AfterContentInit, EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
+ import { AfterContentInit, AfterViewInit, EventEmitter } from '@angular/core';
3
3
  import { Observable } from 'rxjs';
4
4
  import { DragAndDropListActionEvent, DragAndDropListItemComponent } from './drag-and-drop-list-item/drag-and-drop-list-item.component';
5
+ import { KeyboardSortableItemDirective } from './keyboard-sortable-item/keyboard-sortable-item.directive';
5
6
  import * as i0 from "@angular/core";
6
7
  export interface DragAndDropListMoveEvent {
7
8
  item: string;
8
9
  index: number;
9
10
  }
10
- export declare class DragAndDropListComponent implements AfterContentInit, OnInit {
11
+ export interface DragAndDropListMoveIndexEvent {
12
+ index: number;
13
+ previous: number;
14
+ }
15
+ export declare class DragAndDropListComponent implements AfterContentInit, AfterViewInit {
11
16
  readonly NAME = "DragAndDropListComponent";
12
17
  items$: Observable<DragAndDropListItemComponent[]>;
18
+ keyboardSortableItems$: Observable<KeyboardSortableItemDirective[]>;
13
19
  /**
14
20
  * A label for describing this list.
15
21
  */
@@ -18,26 +24,25 @@ export declare class DragAndDropListComponent implements AfterContentInit, OnIni
18
24
  * Override the global label font weight of 700
19
25
  */
20
26
  labelFontWeight?: number;
21
- /**
22
- * Pass in the template to render an item in the drag-and-drop
23
- * list as a ng-template with id #itemTemplate.
24
- * itemIdProperty must be defined if items is defined and
25
- * be the property name on an item that uniquely identifies it.
26
- */
27
- items?: any[];
28
- itemIdProperty?: string;
29
- color?: 'default' | 'gray';
27
+ color?: 'light' | 'dark';
30
28
  fontSize?: 'normal' | 'big';
31
29
  /**
32
30
  * Use the moveToIndex Output in favor of moveItem,
33
31
  * when moving is restricted to one item through this.draggableItem.
34
32
  */
35
- moveToIndex: EventEmitter<number>;
33
+ moveToIndex: EventEmitter<DragAndDropListMoveIndexEvent>;
36
34
  moveItem: EventEmitter<DragAndDropListMoveEvent>;
37
35
  private _items;
38
- itemTemplateRef: TemplateRef<any> | null;
39
- ngOnInit(): void;
36
+ private _keyboardSortableItems;
37
+ /**
38
+ * TODO: extract state about keyboard sorting into KeyboardSortableListDirective
39
+ */
40
+ isSortingByKeyboard: boolean;
41
+ keyboardItemBeingSorted: string | undefined;
42
+ allItemsData: string[];
43
+ allItemsData$: Observable<string[]>;
40
44
  ngAfterContentInit(): void;
45
+ ngAfterViewInit(): void;
41
46
  emitContentChildAction(action: DragAndDropListActionEvent): void;
42
47
  /**
43
48
  * From the Angular cdk drag and drop documentation:
@@ -49,8 +54,9 @@ export declare class DragAndDropListComponent implements AfterContentInit, OnIni
49
54
  * You're supposed to update the data in the parent and pass the new items as input.
50
55
  */
51
56
  drop(event: CdkDragDrop<DragAndDropListItemComponent[] | null, string[]>): void;
52
- dropToIndex(item: any, previousIndex: number, currentIndex: number): void;
53
- trackById(_index: number, item: any): any;
57
+ dropToIndexAfterArrowKey(item: any, previousIndex: number, currentIndex: number): void;
58
+ private sortItems;
59
+ trackByItem(_index: number, item: DragAndDropListItemComponent): string;
54
60
  static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropListComponent, never>;
55
- static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListComponent, "lx-drag-and-drop-list", never, { "label": "label"; "labelFontWeight": "labelFontWeight"; "items": "items"; "itemIdProperty": "itemIdProperty"; "color": "color"; "fontSize": "fontSize"; }, { "moveToIndex": "moveToIndex"; "moveItem": "moveItem"; }, ["itemTemplateRef", "_items"], never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropListComponent, "lx-drag-and-drop-list", never, { "label": "label"; "labelFontWeight": "labelFontWeight"; "color": "color"; "fontSize": "fontSize"; }, { "moveToIndex": "moveToIndex"; "moveItem": "moveItem"; }, ["_items"], never>;
56
62
  }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./keyboard-sortable-item/keyboard-sortable-item.directive";
3
+ import * as i2 from "./keyboard-sortable-list/keyboard-sortable-list.directive";
4
+ import * as i3 from "./drag-and-drop-list.component";
5
+ import * as i4 from "./drag-and-drop-list-item/drag-and-drop-list-item.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/cdk/drag-drop";
8
+ import * as i7 from "../../../core-ui/core-ui.module";
9
+ import * as i8 from "@ngx-translate/core";
10
+ export declare class LxDragAndDropListModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<LxDragAndDropListModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LxDragAndDropListModule, [typeof i1.KeyboardSortableItemDirective, typeof i2.KeyboardSortableListDirective, typeof i3.DragAndDropListComponent, typeof i4.DragAndDropListItemComponent], [typeof i5.CommonModule, typeof i6.DragDropModule, typeof i7.LxCoreUiModule, typeof i8.TranslateModule], [typeof i3.DragAndDropListComponent, typeof i4.DragAndDropListItemComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<LxDragAndDropListModule>;
14
+ }
@@ -0,0 +1,36 @@
1
+ import { CdkDrag } from '@angular/cdk/drag-drop';
2
+ import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
3
+ import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
4
+ import { Observable } from 'rxjs';
5
+ import { TooltipDirective } from '../../../../core-ui/tooltip/tooltip.directive';
6
+ import * as i0 from "@angular/core";
7
+ export declare class KeyboardSortableItemDirective implements OnChanges {
8
+ private draggableItem;
9
+ private overlayPositionBuilder;
10
+ private element;
11
+ private overlay;
12
+ allItemsData: string[];
13
+ itemData: string;
14
+ isSortingByKeyboard: boolean;
15
+ itemBeingSorted: string;
16
+ readonly isSortingByKeyboardChange: EventEmitter<boolean>;
17
+ readonly itemBeingSortedChange: EventEmitter<string>;
18
+ sortItemsWithKeyboard: EventEmitter<{
19
+ previousIndex: number;
20
+ currentIndex: number;
21
+ }>;
22
+ focusWithKeyboard: Observable<KeyboardSortableItemDirective>;
23
+ tooltipDirective: TooltipDirective;
24
+ isBeingSorted: boolean;
25
+ get isSortable(): boolean;
26
+ private preventBlur;
27
+ private focusWithKeyboardReplaySubject$;
28
+ constructor(draggableItem: CdkDrag, overlayPositionBuilder: OverlayPositionBuilder, element: ElementRef<HTMLElement>, overlay: Overlay);
29
+ ngOnChanges(): void;
30
+ focusViaKeyboard(): void;
31
+ enterSortingModeEnabledByKeyboard($event: KeyboardEvent): void;
32
+ leaveSortingModeEnabledByKeyboard($event: KeyboardEvent | FocusEvent): void;
33
+ sort($event: KeyboardEvent): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeyboardSortableItemDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KeyboardSortableItemDirective, "[lxKeyboardSortableItem]", never, { "allItemsData": "lxKeyboardSortableItem"; "itemData": "lxKeyboardItemData"; "isSortingByKeyboard": "isSortingByKeyboard"; "itemBeingSorted": "lxKeyboardItemBeingSorted"; }, { "isSortingByKeyboardChange": "isSortingByKeyboardChange"; "itemBeingSortedChange": "lxKeyboardItemBeingSortedChange"; "sortItemsWithKeyboard": "sortItemsWithKeyboard"; "focusWithKeyboard": "focusWithKeyboard"; }, never>;
36
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterViewInit } from '@angular/core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import { KeyboardSortableItemDirective } from '../keyboard-sortable-item/keyboard-sortable-item.directive';
4
+ import * as i0 from "@angular/core";
5
+ export declare class KeyboardSortableListDirective implements AfterViewInit {
6
+ private translateService;
7
+ private keyboardSortableItems$;
8
+ keyboardSortableItems: KeyboardSortableItemDirective[];
9
+ constructor(translateService: TranslateService);
10
+ ngAfterViewInit(): void;
11
+ private setupControlsTooltipToBeShownOnFirstFocusedItem;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeyboardSortableListDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KeyboardSortableListDirective, "[lxKeyboardSortableList]", never, { "keyboardSortableItems": "keyboardSortableItems"; }, {}, never>;
14
+ }
@@ -4,50 +4,48 @@ import * as i2 from "./components/basic-dropdown-item/basic-dropdown-item.compon
4
4
  import * as i3 from "./components/currency/currency-input.component";
5
5
  import * as i4 from "./components/currency/currency-symbol.component";
6
6
  import * as i5 from "./components/date-input/date-input.component";
7
- import * as i6 from "./components/drag-and-drop-list/drag-and-drop-list.component";
8
- import * as i7 from "./components/drag-and-drop-list/drag-and-drop-list-item/drag-and-drop-list-item.component";
9
- import * as i8 from "./pipes/filter-selection.pipe";
10
- import * as i9 from "./pipes/filter-term.pipe";
11
- import * as i10 from "./components/form-error/form-error.component";
12
- import * as i11 from "./components/icon/icon.component";
13
- import * as i12 from "./directives/keyboard-action-source.directive";
14
- import * as i13 from "./directives/mark-invalid.directive";
15
- import * as i14 from "./components/multi-select/multi-select.component";
16
- import * as i15 from "./components/option/option.component";
17
- import * as i16 from "./components/option-group/option-group.component";
18
- import * as i17 from "./components/option-group-dropdown/option-group-dropdown.component";
19
- import * as i18 from "./components/options-dropdown/options-dropdown.component";
20
- import * as i19 from "./components/options-sub-dropdown/options-sub-dropdown.component";
21
- import * as i20 from "./components/cdk-options-dropdown/cdk-options-dropdown.component";
22
- import * as i21 from "./components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component";
23
- import * as i22 from "./components/picker/picker.component";
24
- import * as i23 from "./components/picker-option/picker-option.component";
25
- import * as i24 from "./components/picker/picker-trigger.directive";
26
- import * as i25 from "./components/pill-list/pill-list.component";
27
- import * as i26 from "./components/pill-item/pill-item.component";
28
- import * as i27 from "./components/responsive-input/responsive-input.component";
29
- import * as i28 from "./directives/selectable-item.directive";
30
- import * as i29 from "./directives/selected-option.directive";
31
- import * as i30 from "./directives/select-dropdown.directive";
32
- import * as i31 from "./components/single-select/single-select.component";
33
- import * as i32 from "./components/slider-toggle/slider-toggle.component";
34
- import * as i33 from "./components/sorting-dropdown/sorting-dropdown.component";
35
- import * as i34 from "./components/sorting-dropdown-trigger/sorting-dropdown-trigger.component";
36
- import * as i35 from "./components/input/input.component";
37
- import * as i36 from "./pipes/format-number.pipe";
38
- import * as i37 from "./directives/form-error.directive";
39
- import * as i38 from "./components/error-message/error-message.component";
40
- import * as i39 from "./directives/form-submit.directive";
41
- import * as i40 from "@angular/common";
42
- import * as i41 from "@angular/cdk/drag-drop";
43
- import * as i42 from "@angular/forms";
44
- import * as i43 from "@ngx-translate/core";
45
- import * as i44 from "ngx-bootstrap/datepicker";
46
- import * as i45 from "ngx-infinite-scroll";
47
- import * as i46 from "@angular/cdk/overlay";
48
- import * as i47 from "../core-ui/core-ui.module";
7
+ import * as i6 from "./pipes/filter-selection.pipe";
8
+ import * as i7 from "./pipes/filter-term.pipe";
9
+ import * as i8 from "./components/form-error/form-error.component";
10
+ import * as i9 from "./components/icon/icon.component";
11
+ import * as i10 from "./directives/keyboard-action-source.directive";
12
+ import * as i11 from "./directives/mark-invalid.directive";
13
+ import * as i12 from "./components/multi-select/multi-select.component";
14
+ import * as i13 from "./components/option/option.component";
15
+ import * as i14 from "./components/option-group/option-group.component";
16
+ import * as i15 from "./components/option-group-dropdown/option-group-dropdown.component";
17
+ import * as i16 from "./components/options-dropdown/options-dropdown.component";
18
+ import * as i17 from "./components/options-sub-dropdown/options-sub-dropdown.component";
19
+ import * as i18 from "./components/cdk-options-dropdown/cdk-options-dropdown.component";
20
+ import * as i19 from "./components/cdk-options-sub-dropdown/cdk-options-sub-dropdown.component";
21
+ import * as i20 from "./components/picker/picker.component";
22
+ import * as i21 from "./components/picker-option/picker-option.component";
23
+ import * as i22 from "./components/picker/picker-trigger.directive";
24
+ import * as i23 from "./components/pill-list/pill-list.component";
25
+ import * as i24 from "./components/pill-item/pill-item.component";
26
+ import * as i25 from "./components/responsive-input/responsive-input.component";
27
+ import * as i26 from "./directives/selectable-item.directive";
28
+ import * as i27 from "./directives/selected-option.directive";
29
+ import * as i28 from "./directives/select-dropdown.directive";
30
+ import * as i29 from "./components/single-select/single-select.component";
31
+ import * as i30 from "./components/slider-toggle/slider-toggle.component";
32
+ import * as i31 from "./components/sorting-dropdown/sorting-dropdown.component";
33
+ import * as i32 from "./components/sorting-dropdown-trigger/sorting-dropdown-trigger.component";
34
+ import * as i33 from "./components/input/input.component";
35
+ import * as i34 from "./pipes/format-number.pipe";
36
+ import * as i35 from "./directives/form-error.directive";
37
+ import * as i36 from "./components/error-message/error-message.component";
38
+ import * as i37 from "./directives/form-submit.directive";
39
+ import * as i38 from "@angular/common";
40
+ import * as i39 from "@angular/forms";
41
+ import * as i40 from "@ngx-translate/core";
42
+ import * as i41 from "ngx-bootstrap/datepicker";
43
+ import * as i42 from "ngx-infinite-scroll";
44
+ import * as i43 from "@angular/cdk/overlay";
45
+ import * as i44 from "../core-ui/core-ui.module";
46
+ import * as i45 from "./components/drag-and-drop-list/drag-and-drop-list.module";
49
47
  export declare class LxFormsModule {
50
48
  static ɵfac: i0.ɵɵFactoryDeclaration<LxFormsModule, never>;
51
- static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, [typeof i1.BasicDropdownComponent, typeof i2.BasicDropdownItemComponent, typeof i3.CurrencyInputComponent, typeof i4.CurrencySymbolComponent, typeof i5.DateInputComponent, typeof i6.DragAndDropListComponent, typeof i7.DragAndDropListItemComponent, typeof i8.FilterSelectionPipe, typeof i9.FilterTermPipe, typeof i10.FormErrorComponent, typeof i11.IconComponent, typeof i12.KeyboardActionSourceDirective, typeof i13.MarkInvalidDirective, typeof i14.MultiSelectComponent, typeof i15.OptionComponent, typeof i16.OptionGroupComponent, typeof i17.OptionGroupDropdownComponent, typeof i18.OptionsDropdownComponent, typeof i19.OptionsSubDropdownComponent, typeof i20.CdkOptionsDropdownComponent, typeof i21.CdkOptionsSubDropdownComponent, typeof i22.PickerComponent, typeof i23.PickerOptionComponent, typeof i24.PickerTriggerDirective, typeof i25.PillListComponent, typeof i26.PillItemComponent, typeof i27.ResponsiveInputComponent, typeof i28.SelectableItemDirective, typeof i29.SelectedOptionDirective, typeof i30.SelectDropdownDirective, typeof i31.SingleSelectComponent, typeof i32.SliderToggleComponent, typeof i33.SortingDropdownComponent, typeof i34.SortingDropdownTriggerComponent, typeof i35.InputComponent, typeof i36.FormatNumberPipe, typeof i37.FormErrorDirective, typeof i38.ErrorMessageComponent, typeof i39.FormSubmitDirective], [typeof i40.CommonModule, typeof i41.DragDropModule, typeof i42.FormsModule, typeof i42.ReactiveFormsModule, typeof i43.TranslateModule, typeof i44.DatepickerModule, typeof i45.InfiniteScrollModule, typeof i46.OverlayModule, typeof i47.LxCoreUiModule], [typeof i1.BasicDropdownComponent, typeof i2.BasicDropdownItemComponent, typeof i3.CurrencyInputComponent, typeof i4.CurrencySymbolComponent, typeof i5.DateInputComponent, typeof i6.DragAndDropListComponent, typeof i7.DragAndDropListItemComponent, typeof i8.FilterSelectionPipe, typeof i9.FilterTermPipe, typeof i10.FormErrorComponent, typeof i11.IconComponent, typeof i12.KeyboardActionSourceDirective, typeof i13.MarkInvalidDirective, typeof i14.MultiSelectComponent, typeof i15.OptionComponent, typeof i16.OptionGroupComponent, typeof i17.OptionGroupDropdownComponent, typeof i18.OptionsDropdownComponent, typeof i19.OptionsSubDropdownComponent, typeof i20.CdkOptionsDropdownComponent, typeof i21.CdkOptionsSubDropdownComponent, typeof i22.PickerComponent, typeof i23.PickerOptionComponent, typeof i24.PickerTriggerDirective, typeof i25.PillListComponent, typeof i26.PillItemComponent, typeof i27.ResponsiveInputComponent, typeof i28.SelectableItemDirective, typeof i30.SelectDropdownDirective, typeof i29.SelectedOptionDirective, typeof i31.SingleSelectComponent, typeof i32.SliderToggleComponent, typeof i33.SortingDropdownComponent, typeof i34.SortingDropdownTriggerComponent, typeof i36.FormatNumberPipe, typeof i37.FormErrorDirective, typeof i39.FormSubmitDirective, typeof i38.ErrorMessageComponent]>;
49
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LxFormsModule, [typeof i1.BasicDropdownComponent, typeof i2.BasicDropdownItemComponent, typeof i3.CurrencyInputComponent, typeof i4.CurrencySymbolComponent, typeof i5.DateInputComponent, typeof i6.FilterSelectionPipe, typeof i7.FilterTermPipe, typeof i8.FormErrorComponent, typeof i9.IconComponent, typeof i10.KeyboardActionSourceDirective, typeof i11.MarkInvalidDirective, typeof i12.MultiSelectComponent, typeof i13.OptionComponent, typeof i14.OptionGroupComponent, typeof i15.OptionGroupDropdownComponent, typeof i16.OptionsDropdownComponent, typeof i17.OptionsSubDropdownComponent, typeof i18.CdkOptionsDropdownComponent, typeof i19.CdkOptionsSubDropdownComponent, typeof i20.PickerComponent, typeof i21.PickerOptionComponent, typeof i22.PickerTriggerDirective, typeof i23.PillListComponent, typeof i24.PillItemComponent, typeof i25.ResponsiveInputComponent, typeof i26.SelectableItemDirective, typeof i27.SelectedOptionDirective, typeof i28.SelectDropdownDirective, typeof i29.SingleSelectComponent, typeof i30.SliderToggleComponent, typeof i31.SortingDropdownComponent, typeof i32.SortingDropdownTriggerComponent, typeof i33.InputComponent, typeof i34.FormatNumberPipe, typeof i35.FormErrorDirective, typeof i36.ErrorMessageComponent, typeof i37.FormSubmitDirective], [typeof i38.CommonModule, typeof i39.FormsModule, typeof i39.ReactiveFormsModule, typeof i40.TranslateModule, typeof i41.DatepickerModule, typeof i42.InfiniteScrollModule, typeof i43.OverlayModule, typeof i44.LxCoreUiModule, typeof i45.LxDragAndDropListModule], [typeof i1.BasicDropdownComponent, typeof i2.BasicDropdownItemComponent, typeof i3.CurrencyInputComponent, typeof i4.CurrencySymbolComponent, typeof i5.DateInputComponent, typeof i6.FilterSelectionPipe, typeof i7.FilterTermPipe, typeof i8.FormErrorComponent, typeof i9.IconComponent, typeof i10.KeyboardActionSourceDirective, typeof i11.MarkInvalidDirective, typeof i12.MultiSelectComponent, typeof i13.OptionComponent, typeof i14.OptionGroupComponent, typeof i15.OptionGroupDropdownComponent, typeof i16.OptionsDropdownComponent, typeof i17.OptionsSubDropdownComponent, typeof i18.CdkOptionsDropdownComponent, typeof i19.CdkOptionsSubDropdownComponent, typeof i20.PickerComponent, typeof i21.PickerOptionComponent, typeof i22.PickerTriggerDirective, typeof i23.PillListComponent, typeof i24.PillItemComponent, typeof i25.ResponsiveInputComponent, typeof i26.SelectableItemDirective, typeof i28.SelectDropdownDirective, typeof i27.SelectedOptionDirective, typeof i29.SingleSelectComponent, typeof i30.SliderToggleComponent, typeof i31.SortingDropdownComponent, typeof i32.SortingDropdownTriggerComponent, typeof i34.FormatNumberPipe, typeof i35.FormErrorDirective, typeof i37.FormSubmitDirective, typeof i36.ErrorMessageComponent, typeof i45.LxDragAndDropListModule]>;
52
50
  static ɵinj: i0.ɵɵInjectorDeclaration<LxFormsModule>;
53
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.2.227",
3
+ "version": "0.2.230",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {
@@ -16,7 +16,7 @@
16
16
  "marked": "4.0.10",
17
17
  "ngx-infinite-scroll": "9.1.0",
18
18
  "ngx-bootstrap": "5.6.2",
19
- "tslib": "^2.2.0"
19
+ "tslib": "^2.3.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@angular/animations": "^12.1.4",
@@ -28,13 +28,27 @@
28
28
  "@angular/router": "^12.1.4",
29
29
  "@ngx-translate/core": "^11.0.1",
30
30
  "@types/marked": "4.0.2",
31
- "rxjs": "^6.5.5"
31
+ "rxjs": "^6.5.5",
32
+ "@angular/platform-browser-dynamic": "13.2.5"
32
33
  },
33
- "main": "bundles/leanix-components.umd.js",
34
- "module": "fesm2015/leanix-components.js",
35
- "es2015": "fesm2015/leanix-components.js",
36
- "esm2015": "esm2015/leanix-components.js",
37
- "fesm2015": "fesm2015/leanix-components.js",
34
+ "module": "fesm2015/leanix-components.mjs",
35
+ "es2020": "fesm2020/leanix-components.mjs",
36
+ "esm2020": "esm2020/leanix-components.mjs",
37
+ "fesm2020": "fesm2020/leanix-components.mjs",
38
+ "fesm2015": "fesm2015/leanix-components.mjs",
38
39
  "typings": "leanix-components.d.ts",
40
+ "exports": {
41
+ "./package.json": {
42
+ "default": "./package.json"
43
+ },
44
+ ".": {
45
+ "types": "./leanix-components.d.ts",
46
+ "esm2020": "./esm2020/leanix-components.mjs",
47
+ "es2020": "./fesm2020/leanix-components.mjs",
48
+ "es2015": "./fesm2015/leanix-components.mjs",
49
+ "node": "./fesm2015/leanix-components.mjs",
50
+ "default": "./fesm2020/leanix-components.mjs"
51
+ }
52
+ },
39
53
  "sideEffects": false
40
- }
54
+ }