@dereekb/dbx-web 9.25.16 → 10.0.0

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 (743) hide show
  1. package/_index.scss +2 -1
  2. package/calendar/esm2022/lib/calendar.base.component.mjs +57 -0
  3. package/{esm2020/calendar → calendar/esm2022}/lib/calendar.component.mjs +5 -5
  4. package/calendar/{esm2020 → esm2022}/lib/calendar.module.mjs +38 -38
  5. package/calendar/{esm2020 → esm2022}/lib/calendar.store.mjs +4 -4
  6. package/calendar/{fesm2020 → fesm2022}/dereekb-dbx-web-calendar.mjs +49 -49
  7. package/calendar/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -0
  8. package/calendar/lib/calendar.base.component.d.ts +2 -2
  9. package/calendar/lib/calendar.component.d.ts +1 -1
  10. package/calendar/lib/calendar.module.d.ts +1 -1
  11. package/calendar/package.json +10 -25
  12. package/esm2022/calendar/lib/calendar.base.component.mjs +57 -0
  13. package/{calendar/esm2020 → esm2022/calendar}/lib/calendar.component.mjs +5 -5
  14. package/{esm2020 → esm2022}/calendar/lib/calendar.module.mjs +38 -38
  15. package/{esm2020 → esm2022}/calendar/lib/calendar.store.mjs +4 -4
  16. package/{esm2020 → esm2022}/lib/action/action.confirm.directive.mjs +4 -4
  17. package/{esm2020 → esm2022}/lib/action/action.module.mjs +5 -5
  18. package/{esm2020 → esm2022}/lib/action/key.trigger.directive.mjs +4 -4
  19. package/esm2022/lib/action/snackbar/action.snackbar.component.mjs +96 -0
  20. package/esm2022/lib/action/snackbar/action.snackbar.directive.mjs +64 -0
  21. package/{esm2020 → esm2022}/lib/action/snackbar/action.snackbar.module.mjs +5 -5
  22. package/esm2022/lib/action/snackbar/action.snackbar.service.mjs +82 -0
  23. package/{esm2020 → esm2022}/lib/action/transition/action.transition.module.mjs +5 -5
  24. package/{esm2020 → esm2022}/lib/action/transition/transition.safety.dialog.component.mjs +6 -6
  25. package/{esm2020 → esm2022}/lib/action/transition/transition.safety.directive.mjs +4 -4
  26. package/{esm2020 → esm2022}/lib/button/button.component.mjs +6 -6
  27. package/{esm2020 → esm2022}/lib/button/button.module.mjs +5 -5
  28. package/{esm2020 → esm2022}/lib/button/button.spacer.component.mjs +4 -4
  29. package/{esm2020 → esm2022}/lib/button/icon/icon.button.component.mjs +7 -7
  30. package/{esm2020 → esm2022}/lib/button/icon/icon.button.module.mjs +13 -13
  31. package/esm2022/lib/button/progress/bar.button.component.mjs +23 -0
  32. package/esm2022/lib/button/progress/base.progress.button.directive.mjs +115 -0
  33. package/{esm2020 → esm2022}/lib/button/progress/button.progress.config.mjs +1 -1
  34. package/{esm2020 → esm2022}/lib/button/progress/button.progress.module.mjs +5 -5
  35. package/esm2022/lib/button/progress/spinner.button.component.mjs +59 -0
  36. package/{esm2020 → esm2022}/lib/dbx-web.module.mjs +5 -5
  37. package/{esm2020 → esm2022}/lib/error/default.error.widget.component.mjs +6 -6
  38. package/{esm2020 → esm2022}/lib/error/error.action.directive.mjs +4 -4
  39. package/{esm2020 → esm2022}/lib/error/error.component.mjs +4 -4
  40. package/{esm2020 → esm2022}/lib/error/error.details.component.mjs +6 -6
  41. package/{esm2020 → esm2022}/lib/error/error.loading.directive.mjs +4 -4
  42. package/{esm2020 → esm2022}/lib/error/error.module.mjs +21 -21
  43. package/{esm2020 → esm2022}/lib/error/error.popover.component.mjs +6 -6
  44. package/{esm2020 → esm2022}/lib/error/error.widget.component.mjs +6 -6
  45. package/esm2022/lib/error/error.widget.directive.mjs +23 -0
  46. package/{esm2020 → esm2022}/lib/error/error.widget.service.mjs +4 -4
  47. package/{esm2020 → esm2022}/lib/extension/model/model.module.mjs +15 -15
  48. package/{esm2020 → esm2022}/lib/extension/model/model.state.service.mjs +4 -4
  49. package/{esm2020 → esm2022}/lib/extension/model/model.tracker.service.mjs +4 -4
  50. package/esm2022/lib/extension/model/model.tracker.view.storage.mjs +69 -0
  51. package/esm2022/lib/extension/model/model.types.service.mjs +67 -0
  52. package/{esm2020 → esm2022}/lib/extension/model/state/effects/tracker.effects.mjs +4 -4
  53. package/esm2022/lib/extension/structure/structure.body.directive.mjs +28 -0
  54. package/{esm2020 → esm2022}/lib/extension/structure/structure.module.mjs +9 -9
  55. package/esm2022/lib/extension/structure/structure.structure.directive.mjs +23 -0
  56. package/{esm2020 → esm2022}/lib/extension/widget/widget.component.mjs +6 -6
  57. package/{esm2020 → esm2022}/lib/extension/widget/widget.directive.mjs +4 -4
  58. package/esm2022/lib/extension/widget/widget.list.component.mjs +67 -0
  59. package/{esm2020 → esm2022}/lib/extension/widget/widget.module.mjs +13 -13
  60. package/{esm2020 → esm2022}/lib/extension/widget/widget.service.mjs +4 -4
  61. package/{esm2020 → esm2022}/lib/interaction/dialog/abstract.dialog.directive.mjs +4 -4
  62. package/{esm2020 → esm2022}/lib/interaction/dialog/dialog.action.directive.mjs +7 -7
  63. package/esm2022/lib/interaction/dialog/dialog.content.close.component.mjs +41 -0
  64. package/{esm2020 → esm2022}/lib/interaction/dialog/dialog.content.component.mjs +4 -4
  65. package/{esm2020 → esm2022}/lib/interaction/dialog/dialog.content.footer.component.mjs +6 -6
  66. package/{esm2020 → esm2022}/lib/interaction/dialog/dialog.module.mjs +5 -5
  67. package/{esm2020 → esm2022}/lib/interaction/filter/filter.module.mjs +28 -28
  68. package/{esm2020 → esm2022}/lib/interaction/filter/filter.partial.list.component.mjs +6 -6
  69. package/{esm2020 → esm2022}/lib/interaction/filter/filter.partial.menu.component.mjs +5 -5
  70. package/{esm2020 → esm2022}/lib/interaction/filter/filter.partial.mjs +10 -10
  71. package/{esm2020 → esm2022}/lib/interaction/filter/filter.popover.button.component.mjs +6 -6
  72. package/{esm2020 → esm2022}/lib/interaction/filter/filter.popover.button.directive.mjs +4 -4
  73. package/esm2022/lib/interaction/filter/filter.popover.component.mjs +125 -0
  74. package/{esm2020 → esm2022}/lib/interaction/filter/filter.preset.list.component.mjs +6 -6
  75. package/{esm2020 → esm2022}/lib/interaction/filter/filter.preset.menu.component.mjs +5 -5
  76. package/{esm2020 → esm2022}/lib/interaction/filter/filter.preset.mjs +10 -10
  77. package/{esm2020 → esm2022}/lib/interaction/filter/filter.wrapper.component.mjs +5 -5
  78. package/{esm2020 → esm2022}/lib/interaction/interaction.module.mjs +5 -5
  79. package/{esm2020 → esm2022}/lib/interaction/popover/abstract.popover.directive.mjs +4 -4
  80. package/{esm2020 → esm2022}/lib/interaction/popover/abstract.popover.ref.directive.mjs +7 -7
  81. package/{esm2020 → esm2022}/lib/interaction/popover/popover.action.directive.mjs +7 -7
  82. package/{esm2020 → esm2022}/lib/interaction/popover/popover.close.component.mjs +6 -6
  83. package/{esm2020 → esm2022}/lib/interaction/popover/popover.component.mjs +14 -14
  84. package/{esm2020 → esm2022}/lib/interaction/popover/popover.content.component.mjs +6 -6
  85. package/{esm2020 → esm2022}/lib/interaction/popover/popover.content.module.mjs +5 -5
  86. package/{esm2020 → esm2022}/lib/interaction/popover/popover.controls.directive.mjs +4 -4
  87. package/{esm2020 → esm2022}/lib/interaction/popover/popover.coordinator.component.mjs +6 -6
  88. package/{esm2020 → esm2022}/lib/interaction/popover/popover.coordinator.service.mjs +4 -4
  89. package/{esm2020 → esm2022}/lib/interaction/popover/popover.header.component.mjs +6 -6
  90. package/{esm2020 → esm2022}/lib/interaction/popover/popover.module.mjs +5 -5
  91. package/esm2022/lib/interaction/popover/popover.scroll.content.component.mjs +51 -0
  92. package/{esm2020 → esm2022}/lib/interaction/popover/popover.service.mjs +4 -4
  93. package/{esm2020 → esm2022}/lib/interaction/popup/abstract.popup.directive.mjs +4 -4
  94. package/{esm2020 → esm2022}/lib/interaction/popup/popup.component.mjs +14 -14
  95. package/{esm2020 → esm2022}/lib/interaction/popup/popup.content.component.mjs +6 -6
  96. package/{esm2020 → esm2022}/lib/interaction/popup/popup.controls.buttons.component.mjs +6 -6
  97. package/{esm2020 → esm2022}/lib/interaction/popup/popup.controls.component.mjs +6 -6
  98. package/{esm2020 → esm2022}/lib/interaction/popup/popup.coordinator.component.mjs +6 -6
  99. package/{esm2020 → esm2022}/lib/interaction/popup/popup.coordinator.service.mjs +4 -4
  100. package/{esm2020 → esm2022}/lib/interaction/popup/popup.module.mjs +5 -5
  101. package/{esm2020 → esm2022}/lib/interaction/popup/popup.service.mjs +4 -4
  102. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.box.component.mjs +6 -6
  103. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.button.confirm.directive.mjs +4 -4
  104. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.component.mjs +6 -6
  105. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.confirm.component.mjs +4 -4
  106. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.confirm.dialog.component.mjs +6 -6
  107. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.confirm.directive.mjs +7 -7
  108. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.module.mjs +5 -5
  109. package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.page.component.mjs +6 -6
  110. package/{esm2020 → esm2022}/lib/keypress/keydown.listener.directive.mjs +4 -4
  111. package/{esm2020 → esm2022}/lib/keypress/keypress.module.mjs +5 -5
  112. package/{esm2020 → esm2022}/lib/layout/bar/bar.directive.mjs +4 -4
  113. package/{esm2020 → esm2022}/lib/layout/bar/bar.header.component.mjs +6 -6
  114. package/{esm2020 → esm2022}/lib/layout/bar/bar.layout.module.mjs +5 -5
  115. package/{esm2020 → esm2022}/lib/layout/bar/pagebar.component.mjs +4 -4
  116. package/{esm2020 → esm2022}/lib/layout/block/block.layout.module.mjs +5 -5
  117. package/{esm2020 → esm2022}/lib/layout/block/two.block.component.mjs +6 -6
  118. package/{esm2020 → esm2022}/lib/layout/card/card.box.component.mjs +6 -6
  119. package/{esm2020 → esm2022}/lib/layout/card/card.box.container.component.mjs +6 -6
  120. package/{esm2020 → esm2022}/lib/layout/card/card.box.layout.module.mjs +5 -5
  121. package/{esm2020 → esm2022}/lib/layout/column/column.layout.module.mjs +5 -5
  122. package/{esm2020 → esm2022}/lib/layout/column/one/one.column.component.mjs +6 -6
  123. package/{esm2020 → esm2022}/lib/layout/column/one/one.column.module.mjs +5 -5
  124. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.back.directive.mjs +4 -4
  125. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.component.mjs +4 -4
  126. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.context.directive.mjs +4 -4
  127. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.full.left.directive.mjs +8 -8
  128. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.head.component.mjs +6 -6
  129. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.module.mjs +5 -5
  130. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.right.component.mjs +4 -4
  131. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.sref.directive.mjs +4 -4
  132. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.sref.showright.directive.mjs +4 -4
  133. package/{esm2020 → esm2022}/lib/layout/column/two/two.column.store.mjs +4 -4
  134. package/{esm2020 → esm2022}/lib/layout/compact/compact.directive.mjs +4 -4
  135. package/{esm2020 → esm2022}/lib/layout/compact/compact.layout.module.mjs +5 -5
  136. package/{esm2020 → esm2022}/lib/layout/compact/compact.store.mjs +4 -4
  137. package/{esm2020 → esm2022}/lib/layout/content/content.border.directive.mjs +4 -4
  138. package/esm2022/lib/layout/content/content.box.directive.mjs +29 -0
  139. package/esm2022/lib/layout/content/content.container.directive.mjs +31 -0
  140. package/{esm2020 → esm2022}/lib/layout/content/content.directive.mjs +4 -4
  141. package/{esm2020 → esm2022}/lib/layout/content/content.elevate.directive.mjs +4 -4
  142. package/{esm2020 → esm2022}/lib/layout/content/content.layout.module.mjs +21 -21
  143. package/{esm2020 → esm2022}/lib/layout/content/content.page.directive.mjs +4 -4
  144. package/{esm2020 → esm2022}/lib/layout/content/content.pit.directive.mjs +4 -4
  145. package/{esm2020 → esm2022}/lib/layout/flag/flag.component.mjs +6 -6
  146. package/{esm2020 → esm2022}/lib/layout/flag/flag.layout.module.mjs +5 -5
  147. package/{esm2020 → esm2022}/lib/layout/flag/flag.prompt.component.mjs +6 -6
  148. package/{esm2020 → esm2022}/lib/layout/flex/flex.group.directive.mjs +7 -7
  149. package/{esm2020 → esm2022}/lib/layout/flex/flex.layout.module.mjs +5 -5
  150. package/{esm2020 → esm2022}/lib/layout/flex/flex.size.directive.mjs +4 -4
  151. package/{esm2020 → esm2022}/lib/layout/item/item.icon.component.mjs +6 -6
  152. package/{esm2020 → esm2022}/lib/layout/item/item.layout.module.mjs +5 -5
  153. package/{esm2020 → esm2022}/lib/layout/layout.module.mjs +5 -5
  154. package/esm2022/lib/layout/list/list.component.mjs +253 -0
  155. package/{esm2020 → esm2022}/lib/layout/list/list.content.empty.component.mjs +6 -6
  156. package/{esm2020 → esm2022}/lib/layout/list/list.directive.mjs +7 -7
  157. package/{esm2020 → esm2022}/lib/layout/list/list.grid.view.component.mjs +15 -15
  158. package/{esm2020 → esm2022}/lib/layout/list/list.grid.view.directive.mjs +4 -4
  159. package/{esm2020 → esm2022}/lib/layout/list/list.layout.module.mjs +33 -33
  160. package/{esm2020 → esm2022}/lib/layout/list/list.view.directive.mjs +4 -4
  161. package/{esm2020 → esm2022}/lib/layout/list/list.view.selection.directive.mjs +4 -4
  162. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.component.mjs +13 -13
  163. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.directive.mjs +4 -4
  164. package/esm2022/lib/layout/list/list.view.value.item.directive.mjs +20 -0
  165. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.modifier.directive.mjs +7 -7
  166. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.modifier.ripple.directive.mjs +4 -4
  167. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.modifier.selection.directive.mjs +4 -4
  168. package/{esm2020 → esm2022}/lib/layout/list/list.view.value.selection.component.mjs +13 -13
  169. package/{esm2020 → esm2022}/lib/layout/section/section.component.mjs +6 -6
  170. package/{esm2020 → esm2022}/lib/layout/section/section.header.component.mjs +6 -6
  171. package/{esm2020 → esm2022}/lib/layout/section/section.intro.component.mjs +6 -6
  172. package/{esm2020 → esm2022}/lib/layout/section/section.layout.module.mjs +5 -5
  173. package/{esm2020 → esm2022}/lib/layout/section/section.page.component.mjs +6 -6
  174. package/{esm2020 → esm2022}/lib/layout/section/subsection.component.mjs +6 -6
  175. package/{esm2020 → esm2022}/lib/layout/step/step.component.mjs +4 -4
  176. package/{esm2020 → esm2022}/lib/layout/step/step.layout.module.mjs +5 -5
  177. package/{esm2020 → esm2022}/lib/layout/style/spacer.directive.mjs +4 -4
  178. package/{esm2020 → esm2022}/lib/layout/style/style.body.directive.mjs +4 -4
  179. package/{esm2020 → esm2022}/lib/layout/style/style.color.directive.mjs +4 -4
  180. package/{esm2020 → esm2022}/lib/layout/style/style.directive.mjs +4 -4
  181. package/{esm2020 → esm2022}/lib/layout/style/style.layout.module.mjs +5 -5
  182. package/{esm2020 → esm2022}/lib/layout/style/style.service.mjs +4 -4
  183. package/{esm2020 → esm2022}/lib/layout/style/style.set.directive.mjs +4 -4
  184. package/{esm2020 → esm2022}/lib/layout/text/address.component.mjs +6 -6
  185. package/{esm2020 → esm2022}/lib/layout/text/detail.block.component.mjs +6 -6
  186. package/{esm2020 → esm2022}/lib/layout/text/detail.block.header.component.mjs +6 -6
  187. package/{esm2020 → esm2022}/lib/layout/text/form.description.component.mjs +6 -6
  188. package/{esm2020 → esm2022}/lib/layout/text/hint.component.mjs +6 -6
  189. package/{esm2020 → esm2022}/lib/layout/text/icon.spacer.component.mjs +4 -4
  190. package/{esm2020 → esm2022}/lib/layout/text/label.block.component.mjs +6 -6
  191. package/{esm2020 → esm2022}/lib/layout/text/label.component.mjs +6 -6
  192. package/{esm2020 → esm2022}/lib/layout/text/linkify.component.mjs +6 -6
  193. package/{esm2020 → esm2022}/lib/layout/text/note.component.mjs +6 -6
  194. package/{esm2020 → esm2022}/lib/layout/text/notice.component.mjs +6 -6
  195. package/{esm2020 → esm2022}/lib/layout/text/ok.component.mjs +6 -6
  196. package/{esm2020 → esm2022}/lib/layout/text/success.component.mjs +6 -6
  197. package/{esm2020 → esm2022}/lib/layout/text/text.chip.directive.mjs +4 -4
  198. package/esm2022/lib/layout/text/text.chips.component.mjs +36 -0
  199. package/{esm2020 → esm2022}/lib/layout/text/text.module.mjs +5 -5
  200. package/{esm2020 → esm2022}/lib/layout/text/warn.component.mjs +6 -6
  201. package/{esm2020 → esm2022}/lib/loading/basic-loading.component.mjs +4 -4
  202. package/{esm2020 → esm2022}/lib/loading/loading-progress.component.mjs +6 -6
  203. package/{esm2020 → esm2022}/lib/loading/loading.action.directive.mjs +4 -4
  204. package/{esm2020 → esm2022}/lib/loading/loading.component.mjs +6 -6
  205. package/{esm2020 → esm2022}/lib/loading/loading.module.mjs +5 -5
  206. package/esm2022/lib/router/layout/anchor/anchor.component.mjs +66 -0
  207. package/esm2022/lib/router/layout/anchor/anchor.content.component.mjs +49 -0
  208. package/{esm2020 → esm2022}/lib/router/layout/anchor/anchor.icon.component.mjs +6 -6
  209. package/{esm2020 → esm2022}/lib/router/layout/anchor/anchor.link.component.mjs +6 -6
  210. package/{esm2020 → esm2022}/lib/router/layout/anchor/anchor.module.mjs +5 -5
  211. package/{esm2020 → esm2022}/lib/router/layout/anchor/anchor.segue.directive.mjs +4 -4
  212. package/esm2022/lib/router/layout/anchorlist/anchorlist.component.mjs +37 -0
  213. package/{esm2020 → esm2022}/lib/router/layout/anchorlist/anchorlist.module.mjs +5 -5
  214. package/{esm2020 → esm2022}/lib/router/layout/layout.module.mjs +5 -5
  215. package/{esm2020 → esm2022}/lib/router/layout/list/list.module.mjs +5 -5
  216. package/{esm2020 → esm2022}/lib/router/layout/list/router.list.directive.mjs +4 -4
  217. package/esm2022/lib/router/layout/navbar/navbar.component.mjs +134 -0
  218. package/esm2022/lib/router/layout/navbar/navbar.module.mjs +53 -0
  219. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.button.component.mjs +6 -6
  220. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.component.mjs +4 -4
  221. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.ifdisplaymode.directive.mjs +4 -4
  222. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.module.mjs +5 -5
  223. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.page.component.mjs +6 -6
  224. package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.pagebar.component.mjs +6 -6
  225. package/{esm2020 → esm2022}/lib/router/provider/ngrouter/anchor.component.mjs +4 -4
  226. package/{esm2020 → esm2022}/lib/router/provider/ngrouter/angular.router.module.mjs +5 -5
  227. package/{esm2020 → esm2022}/lib/router/provider/uirouter/anchor.component.mjs +4 -4
  228. package/{esm2020 → esm2022}/lib/router/provider/uirouter/uirouter.router.module.mjs +5 -5
  229. package/{esm2020 → esm2022}/lib/screen/screen.module.mjs +5 -5
  230. package/{esm2020 → esm2022}/lib/screen/screen.service.mjs +4 -4
  231. package/esm2022/mapbox/lib/index.mjs +21 -0
  232. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.change.service.mjs +4 -4
  233. package/{esm2020 → esm2022}/mapbox/lib/mapbox.injection.component.mjs +6 -6
  234. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.injection.store.mjs +4 -4
  235. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.injection.store.provide.mjs +7 -7
  236. package/esm2022/mapbox/lib/mapbox.layout.component.mjs +184 -0
  237. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.layout.drawer.component.mjs +4 -4
  238. package/{esm2020 → esm2022}/mapbox/lib/mapbox.layout.resize.sync.directive.mjs +4 -4
  239. package/esm2022/mapbox/lib/mapbox.marker.component.mjs +139 -0
  240. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.markers.component.mjs +6 -6
  241. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.menu.component.mjs +7 -7
  242. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.module.mjs +45 -45
  243. package/{esm2020 → esm2022}/mapbox/lib/mapbox.service.mjs +4 -4
  244. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.store.map.directive.mjs +4 -4
  245. package/{esm2020 → esm2022}/mapbox/lib/mapbox.store.mjs +5 -5
  246. package/{mapbox/esm2020 → esm2022/mapbox}/lib/mapbox.store.provide.mjs +7 -7
  247. package/esm2022/mapbox/lib/mapbox.util.mjs +15 -0
  248. package/{esm2020 → esm2022}/table/lib/date/date.table.column.header.component.mjs +6 -6
  249. package/esm2022/table/lib/date/daterange.table.cell.input.component.mjs +167 -0
  250. package/{table/esm2020 → esm2022/table}/lib/date/table.date.module.mjs +31 -31
  251. package/{table/esm2020 → esm2022/table}/lib/table.cell.action.component.mjs +6 -6
  252. package/{esm2020 → esm2022}/table/lib/table.cell.input.component.mjs +6 -6
  253. package/{esm2020 → esm2022}/table/lib/table.cell.summaryend.component.mjs +6 -6
  254. package/{esm2020 → esm2022}/table/lib/table.cell.summarystart.component.mjs +6 -6
  255. package/{table/esm2020 → esm2022/table}/lib/table.column.directive.mjs +4 -4
  256. package/{esm2020 → esm2022}/table/lib/table.column.footer.component.mjs +6 -6
  257. package/{esm2020 → esm2022}/table/lib/table.column.header.component.mjs +6 -6
  258. package/{table/esm2020 → esm2022/table}/lib/table.component.mjs +4 -4
  259. package/{table/esm2020 → esm2022/table}/lib/table.directive.mjs +4 -4
  260. package/{table/esm2020 → esm2022/table}/lib/table.item.action.component.mjs +6 -6
  261. package/{table/esm2020 → esm2022/table}/lib/table.item.cell.component.mjs +6 -6
  262. package/{esm2020 → esm2022}/table/lib/table.item.directive.mjs +4 -4
  263. package/{table/esm2020 → esm2022/table}/lib/table.item.header.component.mjs +6 -6
  264. package/{esm2020 → esm2022}/table/lib/table.module.mjs +27 -27
  265. package/{table/esm2020 → esm2022/table}/lib/table.store.mjs +4 -4
  266. package/{fesm2020 → fesm2022}/dereekb-dbx-web-calendar.mjs +49 -49
  267. package/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -0
  268. package/{mapbox/fesm2020 → fesm2022}/dereekb-dbx-web-mapbox.mjs +109 -141
  269. package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -0
  270. package/{fesm2020 → fesm2022}/dereekb-dbx-web-table.mjs +138 -137
  271. package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -0
  272. package/{fesm2020 → fesm2022}/dereekb-dbx-web.mjs +1208 -1175
  273. package/fesm2022/dereekb-dbx-web.mjs.map +1 -0
  274. package/lib/action/_action.scss +2 -2
  275. package/lib/action/action.confirm.directive.d.ts +1 -1
  276. package/lib/action/key.trigger.directive.d.ts +1 -1
  277. package/lib/action/snackbar/_snackbar.scss +3 -2
  278. package/lib/action/snackbar/action.snackbar.component.d.ts +1 -1
  279. package/lib/action/snackbar/action.snackbar.d.ts +2 -2
  280. package/lib/action/snackbar/action.snackbar.directive.d.ts +1 -1
  281. package/lib/action/snackbar/action.snackbar.generator.d.ts +2 -2
  282. package/lib/action/transition/transition.safety.dialog.component.d.ts +1 -1
  283. package/lib/action/transition/transition.safety.directive.d.ts +2 -2
  284. package/lib/button/_button.scss +22 -27
  285. package/lib/button/button.component.d.ts +1 -1
  286. package/lib/button/button.spacer.component.d.ts +1 -1
  287. package/lib/button/icon/icon.button.component.d.ts +1 -1
  288. package/lib/button/progress/bar.button.component.d.ts +2 -1
  289. package/lib/button/progress/bar.button.component.scss +20 -12
  290. package/lib/button/progress/base.progress.button.directive.d.ts +3 -2
  291. package/lib/button/progress/button.progress.config.d.ts +1 -5
  292. package/lib/button/progress/shared.button.component.scss +17 -0
  293. package/lib/button/progress/spinner.button.component.d.ts +2 -1
  294. package/lib/button/progress/spinner.button.component.scss +21 -1
  295. package/lib/error/_error.scss +3 -2
  296. package/lib/error/default.error.widget.component.d.ts +1 -1
  297. package/lib/error/error.action.directive.d.ts +1 -1
  298. package/lib/error/error.component.d.ts +1 -1
  299. package/lib/error/error.details.component.d.ts +1 -1
  300. package/lib/error/error.loading.directive.d.ts +1 -1
  301. package/lib/error/error.popover.component.d.ts +1 -1
  302. package/lib/error/error.widget.component.d.ts +1 -1
  303. package/lib/error/error.widget.directive.d.ts +1 -1
  304. package/lib/extension/_extension.scss +15 -10
  305. package/lib/extension/calendar/_calendar.scss +3 -2
  306. package/lib/extension/model/model.tracker.d.ts +1 -1
  307. package/lib/extension/model/model.tracker.view.storage.d.ts +0 -4
  308. package/lib/extension/model/model.types.d.ts +2 -2
  309. package/lib/extension/model/state/reducers/index.d.ts +1 -1
  310. package/lib/extension/model/state/state.d.ts +1 -1
  311. package/lib/extension/structure/structure.body.directive.d.ts +1 -1
  312. package/lib/extension/structure/structure.structure.directive.d.ts +1 -1
  313. package/lib/extension/table/_table.scss +3 -2
  314. package/lib/extension/widget/widget.component.d.ts +1 -1
  315. package/lib/extension/widget/widget.d.ts +3 -3
  316. package/lib/extension/widget/widget.directive.d.ts +1 -1
  317. package/lib/extension/widget/widget.list.component.d.ts +4 -4
  318. package/lib/interaction/_interaction.scss +7 -7
  319. package/lib/interaction/dialog/_dialog.scss +26 -9
  320. package/lib/interaction/dialog/abstract.dialog.directive.d.ts +1 -1
  321. package/lib/interaction/dialog/dialog.action.directive.d.ts +2 -2
  322. package/lib/interaction/dialog/dialog.content.close.component.d.ts +2 -1
  323. package/lib/interaction/dialog/dialog.content.component.d.ts +2 -2
  324. package/lib/interaction/dialog/dialog.content.d.ts +1 -1
  325. package/lib/interaction/dialog/dialog.content.footer.component.d.ts +1 -1
  326. package/lib/interaction/filter/_filter.scss +3 -2
  327. package/lib/interaction/filter/filter.module.d.ts +1 -1
  328. package/lib/interaction/filter/filter.partial.d.ts +1 -1
  329. package/lib/interaction/filter/filter.partial.list.component.d.ts +1 -1
  330. package/lib/interaction/filter/filter.partial.menu.component.d.ts +2 -2
  331. package/lib/interaction/filter/filter.popover.button.component.d.ts +1 -1
  332. package/lib/interaction/filter/filter.popover.button.directive.d.ts +4 -4
  333. package/lib/interaction/filter/filter.popover.component.d.ts +1 -1
  334. package/lib/interaction/filter/filter.preset.d.ts +3 -3
  335. package/lib/interaction/filter/filter.preset.list.component.d.ts +1 -1
  336. package/lib/interaction/filter/filter.preset.menu.component.d.ts +2 -2
  337. package/lib/interaction/filter/filter.wrapper.component.d.ts +1 -1
  338. package/lib/interaction/popover/_popover.scss +3 -2
  339. package/lib/interaction/popover/abstract.popover.directive.d.ts +1 -1
  340. package/lib/interaction/popover/abstract.popover.ref.directive.d.ts +2 -2
  341. package/lib/interaction/popover/popover.action.directive.d.ts +2 -2
  342. package/lib/interaction/popover/popover.close.component.d.ts +1 -1
  343. package/lib/interaction/popover/popover.component.d.ts +1 -1
  344. package/lib/interaction/popover/popover.content.component.d.ts +1 -1
  345. package/lib/interaction/popover/popover.controls.directive.d.ts +1 -1
  346. package/lib/interaction/popover/popover.coordinator.component.d.ts +1 -1
  347. package/lib/interaction/popover/popover.d.ts +1 -1
  348. package/lib/interaction/popover/popover.header.component.d.ts +1 -1
  349. package/lib/interaction/popover/popover.scroll.content.component.d.ts +1 -1
  350. package/lib/interaction/popover/popover.service.d.ts +1 -1
  351. package/lib/interaction/popup/_popup.scss +7 -2
  352. package/lib/interaction/popup/abstract.popup.directive.d.ts +1 -1
  353. package/lib/interaction/popup/popup.component.d.ts +1 -1
  354. package/lib/interaction/popup/popup.content.component.d.ts +1 -1
  355. package/lib/interaction/popup/popup.controls.buttons.component.d.ts +1 -1
  356. package/lib/interaction/popup/popup.controls.component.d.ts +1 -1
  357. package/lib/interaction/popup/popup.coordinator.component.d.ts +1 -1
  358. package/lib/interaction/popup/popup.d.ts +1 -1
  359. package/lib/interaction/popup/popup.position.strategy.d.ts +1 -1
  360. package/lib/interaction/prompt/_prompt.scss +3 -2
  361. package/lib/interaction/prompt/prompt.box.component.d.ts +1 -1
  362. package/lib/interaction/prompt/prompt.button.confirm.directive.d.ts +1 -1
  363. package/lib/interaction/prompt/prompt.component.d.ts +1 -1
  364. package/lib/interaction/prompt/prompt.confirm.component.d.ts +1 -1
  365. package/lib/interaction/prompt/prompt.confirm.dialog.component.d.ts +1 -1
  366. package/lib/interaction/prompt/prompt.confirm.directive.d.ts +2 -2
  367. package/lib/interaction/prompt/prompt.page.component.d.ts +1 -1
  368. package/lib/interaction/style/_style.scss +3 -2
  369. package/lib/keypress/keydown.listener.directive.d.ts +1 -1
  370. package/lib/layout/_layout.scss +14 -14
  371. package/lib/layout/bar/_bar.scss +5 -2
  372. package/lib/layout/bar/bar.d.ts +1 -1
  373. package/lib/layout/bar/bar.directive.d.ts +1 -1
  374. package/lib/layout/bar/bar.header.component.d.ts +1 -1
  375. package/lib/layout/bar/pagebar.component.d.ts +1 -1
  376. package/lib/layout/block/_block.scss +3 -2
  377. package/lib/layout/block/two.block.component.d.ts +1 -1
  378. package/lib/layout/card/_card.scss +3 -2
  379. package/lib/layout/card/card.box.component.d.ts +1 -1
  380. package/lib/layout/card/card.box.container.component.d.ts +1 -1
  381. package/lib/layout/column/_column.scss +4 -3
  382. package/lib/layout/column/one/one.column.component.d.ts +1 -1
  383. package/lib/layout/column/two/two.column.back.directive.d.ts +1 -1
  384. package/lib/layout/column/two/two.column.component.d.ts +1 -1
  385. package/lib/layout/column/two/two.column.context.directive.d.ts +1 -1
  386. package/lib/layout/column/two/two.column.full.left.directive.d.ts +1 -1
  387. package/lib/layout/column/two/two.column.head.component.d.ts +1 -1
  388. package/lib/layout/column/two/two.column.right.component.d.ts +1 -1
  389. package/lib/layout/column/two/two.column.sref.directive.d.ts +1 -1
  390. package/lib/layout/column/two/two.column.sref.showright.directive.d.ts +1 -1
  391. package/lib/layout/compact/compact.d.ts +1 -1
  392. package/lib/layout/compact/compact.directive.d.ts +1 -1
  393. package/lib/layout/content/_content.scss +3 -2
  394. package/lib/layout/content/content.border.directive.d.ts +1 -1
  395. package/lib/layout/content/content.box.directive.d.ts +1 -5
  396. package/lib/layout/content/content.container.directive.d.ts +3 -3
  397. package/lib/layout/content/content.directive.d.ts +1 -1
  398. package/lib/layout/content/content.elevate.directive.d.ts +1 -1
  399. package/lib/layout/content/content.page.directive.d.ts +1 -1
  400. package/lib/layout/content/content.pit.directive.d.ts +1 -1
  401. package/lib/layout/flag/_flag.scss +3 -2
  402. package/lib/layout/flag/flag.component.d.ts +1 -1
  403. package/lib/layout/flag/flag.prompt.component.d.ts +1 -1
  404. package/lib/layout/flex/_flex.scss +3 -2
  405. package/lib/layout/flex/flex.d.ts +1 -1
  406. package/lib/layout/flex/flex.group.directive.d.ts +1 -1
  407. package/lib/layout/flex/flex.size.directive.d.ts +1 -1
  408. package/lib/layout/item/_item.scss +3 -2
  409. package/lib/layout/item/item.icon.component.d.ts +1 -1
  410. package/lib/layout/list/_list.scss +22 -13
  411. package/lib/layout/list/list.component.d.ts +4 -4
  412. package/lib/layout/list/list.content.empty.component.d.ts +1 -1
  413. package/lib/layout/list/list.directive.d.ts +4 -4
  414. package/lib/layout/list/list.grid.view.component.d.ts +3 -3
  415. package/lib/layout/list/list.grid.view.directive.d.ts +1 -1
  416. package/lib/layout/list/list.layout.module.d.ts +1 -1
  417. package/lib/layout/list/list.view.d.ts +1 -1
  418. package/lib/layout/list/list.view.directive.d.ts +1 -1
  419. package/lib/layout/list/list.view.selection.directive.d.ts +1 -1
  420. package/lib/layout/list/list.view.value.component.d.ts +2 -2
  421. package/lib/layout/list/list.view.value.d.ts +3 -3
  422. package/lib/layout/list/list.view.value.directive.d.ts +1 -1
  423. package/lib/layout/list/list.view.value.item.directive.d.ts +1 -1
  424. package/lib/layout/list/list.view.value.modifier.d.ts +1 -1
  425. package/lib/layout/list/list.view.value.modifier.directive.d.ts +2 -2
  426. package/lib/layout/list/list.view.value.modifier.ripple.directive.d.ts +2 -6
  427. package/lib/layout/list/list.view.value.modifier.selection.directive.d.ts +1 -1
  428. package/lib/layout/list/list.view.value.selection.component.d.ts +2 -2
  429. package/lib/layout/section/_section.scss +3 -2
  430. package/lib/layout/section/section.component.d.ts +1 -1
  431. package/lib/layout/section/section.d.ts +1 -1
  432. package/lib/layout/section/section.header.component.d.ts +1 -1
  433. package/lib/layout/section/section.intro.component.d.ts +1 -1
  434. package/lib/layout/section/section.page.component.d.ts +2 -2
  435. package/lib/layout/section/subsection.component.d.ts +1 -1
  436. package/lib/layout/step/_step.scss +3 -2
  437. package/lib/layout/step/step.component.d.ts +1 -1
  438. package/lib/layout/style/_style.scss +3 -2
  439. package/lib/layout/style/spacer.directive.d.ts +1 -1
  440. package/lib/layout/style/style.body.directive.d.ts +1 -1
  441. package/lib/layout/style/style.color.directive.d.ts +1 -1
  442. package/lib/layout/style/style.d.ts +1 -1
  443. package/lib/layout/style/style.directive.d.ts +1 -1
  444. package/lib/layout/style/style.set.directive.d.ts +1 -1
  445. package/lib/layout/text/_text.scss +10 -2
  446. package/lib/layout/text/address.component.d.ts +1 -1
  447. package/lib/layout/text/detail.block.component.d.ts +1 -1
  448. package/lib/layout/text/detail.block.header.component.d.ts +1 -1
  449. package/lib/layout/text/form.description.component.d.ts +1 -1
  450. package/lib/layout/text/hint.component.d.ts +1 -1
  451. package/lib/layout/text/icon.spacer.component.d.ts +1 -1
  452. package/lib/layout/text/label.block.component.d.ts +1 -1
  453. package/lib/layout/text/label.component.d.ts +1 -1
  454. package/lib/layout/text/linkify.component.d.ts +1 -1
  455. package/lib/layout/text/note.component.d.ts +1 -1
  456. package/lib/layout/text/notice.component.d.ts +1 -1
  457. package/lib/layout/text/ok.component.d.ts +1 -1
  458. package/lib/layout/text/success.component.d.ts +1 -1
  459. package/lib/layout/text/text.chip.directive.d.ts +1 -1
  460. package/lib/layout/text/text.chips.component.d.ts +4 -2
  461. package/lib/layout/text/warn.component.d.ts +1 -1
  462. package/lib/loading/_loading.scss +3 -2
  463. package/lib/loading/basic-loading.component.d.ts +1 -1
  464. package/lib/loading/loading-progress.component.d.ts +1 -1
  465. package/lib/loading/loading.action.directive.d.ts +1 -1
  466. package/lib/loading/loading.component.d.ts +1 -1
  467. package/lib/router/_router.scss +5 -5
  468. package/lib/router/layout/anchor/_anchor.scss +3 -2
  469. package/lib/router/layout/anchor/anchor.component.d.ts +1 -1
  470. package/lib/router/layout/anchor/anchor.content.component.d.ts +1 -1
  471. package/lib/router/layout/anchor/anchor.icon.component.d.ts +1 -1
  472. package/lib/router/layout/anchor/anchor.link.component.d.ts +1 -1
  473. package/lib/router/layout/anchor/anchor.segue.directive.d.ts +2 -2
  474. package/lib/router/layout/anchorlist/_anchorlist.scss +42 -27
  475. package/lib/router/layout/anchorlist/anchorlist.component.d.ts +1 -1
  476. package/lib/router/layout/list/router.list.directive.d.ts +2 -2
  477. package/lib/router/layout/navbar/_navbar.scss +3 -2
  478. package/lib/router/layout/navbar/navbar.component.d.ts +6 -5
  479. package/lib/router/layout/navbar/navbar.module.d.ts +3 -2
  480. package/lib/router/layout/sidenav/_sidenav.scss +28 -25
  481. package/lib/router/layout/sidenav/sidenav.button.component.d.ts +1 -1
  482. package/lib/router/layout/sidenav/sidenav.component.d.ts +1 -1
  483. package/lib/router/layout/sidenav/sidenav.ifdisplaymode.directive.d.ts +1 -1
  484. package/lib/router/layout/sidenav/sidenav.page.component.d.ts +1 -1
  485. package/lib/router/layout/sidenav/sidenav.pagebar.component.d.ts +1 -1
  486. package/lib/router/provider/ngrouter/anchor.component.d.ts +1 -1
  487. package/lib/router/provider/uirouter/anchor.component.d.ts +1 -1
  488. package/lib/screen/screen.d.ts +2 -2
  489. package/lib/style/_all-typography.scss +9 -2
  490. package/lib/style/_core.scss +1 -2
  491. package/lib/style/_theming.scss +1 -1
  492. package/mapbox/esm2022/lib/index.mjs +21 -0
  493. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.change.service.mjs +4 -4
  494. package/mapbox/{esm2020 → esm2022}/lib/mapbox.injection.component.mjs +6 -6
  495. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.injection.store.mjs +4 -4
  496. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.injection.store.provide.mjs +7 -7
  497. package/mapbox/esm2022/lib/mapbox.layout.component.mjs +184 -0
  498. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.layout.drawer.component.mjs +4 -4
  499. package/mapbox/{esm2020 → esm2022}/lib/mapbox.layout.resize.sync.directive.mjs +4 -4
  500. package/mapbox/esm2022/lib/mapbox.marker.component.mjs +139 -0
  501. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.markers.component.mjs +6 -6
  502. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.menu.component.mjs +7 -7
  503. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.module.mjs +45 -45
  504. package/mapbox/{esm2020 → esm2022}/lib/mapbox.service.mjs +4 -4
  505. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.store.map.directive.mjs +4 -4
  506. package/mapbox/{esm2020 → esm2022}/lib/mapbox.store.mjs +5 -5
  507. package/{esm2020/mapbox → mapbox/esm2022}/lib/mapbox.store.provide.mjs +7 -7
  508. package/mapbox/esm2022/lib/mapbox.util.mjs +15 -0
  509. package/{fesm2020 → mapbox/fesm2022}/dereekb-dbx-web-mapbox.mjs +109 -141
  510. package/mapbox/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -0
  511. package/mapbox/lib/index.d.ts +0 -1
  512. package/mapbox/lib/mapbox.d.ts +7 -7
  513. package/mapbox/lib/mapbox.injection.component.d.ts +1 -1
  514. package/mapbox/lib/mapbox.injection.store.d.ts +1 -1
  515. package/mapbox/lib/mapbox.injection.store.provide.d.ts +1 -1
  516. package/mapbox/lib/mapbox.layout.component.d.ts +3 -7
  517. package/mapbox/lib/mapbox.layout.drawer.component.d.ts +2 -2
  518. package/mapbox/lib/mapbox.layout.resize.sync.directive.d.ts +1 -1
  519. package/mapbox/lib/mapbox.marker.component.d.ts +2 -2
  520. package/mapbox/lib/mapbox.marker.d.ts +4 -4
  521. package/mapbox/lib/mapbox.markers.component.d.ts +1 -1
  522. package/mapbox/lib/mapbox.menu.component.d.ts +1 -1
  523. package/mapbox/lib/mapbox.rxjs.d.ts +1 -1
  524. package/mapbox/lib/mapbox.store.d.ts +5 -5
  525. package/mapbox/lib/mapbox.store.map.directive.d.ts +1 -1
  526. package/mapbox/lib/mapbox.store.provide.d.ts +1 -1
  527. package/mapbox/lib/mapbox.util.d.ts +1 -1
  528. package/mapbox/package.json +10 -25
  529. package/package.json +37 -40
  530. package/table/{esm2020 → esm2022}/lib/date/date.table.column.header.component.mjs +6 -6
  531. package/table/esm2022/lib/date/daterange.table.cell.input.component.mjs +167 -0
  532. package/{esm2020/table → table/esm2022}/lib/date/table.date.module.mjs +31 -31
  533. package/{esm2020/table → table/esm2022}/lib/table.cell.action.component.mjs +6 -6
  534. package/table/{esm2020 → esm2022}/lib/table.cell.input.component.mjs +6 -6
  535. package/table/{esm2020 → esm2022}/lib/table.cell.summaryend.component.mjs +6 -6
  536. package/table/{esm2020 → esm2022}/lib/table.cell.summarystart.component.mjs +6 -6
  537. package/{esm2020/table → table/esm2022}/lib/table.column.directive.mjs +4 -4
  538. package/table/{esm2020 → esm2022}/lib/table.column.footer.component.mjs +6 -6
  539. package/table/{esm2020 → esm2022}/lib/table.column.header.component.mjs +6 -6
  540. package/{esm2020/table → table/esm2022}/lib/table.component.mjs +4 -4
  541. package/{esm2020/table → table/esm2022}/lib/table.directive.mjs +4 -4
  542. package/{esm2020/table → table/esm2022}/lib/table.item.action.component.mjs +6 -6
  543. package/{esm2020/table → table/esm2022}/lib/table.item.cell.component.mjs +6 -6
  544. package/table/{esm2020 → esm2022}/lib/table.item.directive.mjs +4 -4
  545. package/{esm2020/table → table/esm2022}/lib/table.item.header.component.mjs +6 -6
  546. package/table/{esm2020 → esm2022}/lib/table.module.mjs +27 -27
  547. package/{esm2020/table → table/esm2022}/lib/table.store.mjs +4 -4
  548. package/table/{fesm2020 → fesm2022}/dereekb-dbx-web-table.mjs +138 -137
  549. package/table/fesm2022/dereekb-dbx-web-table.mjs.map +1 -0
  550. package/table/lib/date/date.table.column.header.component.d.ts +1 -1
  551. package/table/lib/date/daterange.table.cell.input.component.d.ts +5 -1
  552. package/table/lib/table.cell.action.component.d.ts +2 -2
  553. package/table/lib/table.cell.input.component.d.ts +2 -2
  554. package/table/lib/table.cell.summaryend.component.d.ts +2 -2
  555. package/table/lib/table.cell.summarystart.component.d.ts +2 -2
  556. package/table/lib/table.column.directive.d.ts +1 -1
  557. package/table/lib/table.column.footer.component.d.ts +2 -2
  558. package/table/lib/table.column.header.component.d.ts +2 -2
  559. package/table/lib/table.component.d.ts +1 -1
  560. package/table/lib/table.directive.d.ts +1 -1
  561. package/table/lib/table.item.action.component.d.ts +2 -2
  562. package/table/lib/table.item.cell.component.d.ts +2 -2
  563. package/table/lib/table.item.directive.d.ts +1 -1
  564. package/table/lib/table.item.header.component.d.ts +2 -2
  565. package/table/package.json +10 -24
  566. package/calendar/esm2020/lib/calendar.base.component.mjs +0 -57
  567. package/calendar/fesm2015/dereekb-dbx-web-calendar.mjs +0 -391
  568. package/calendar/fesm2015/dereekb-dbx-web-calendar.mjs.map +0 -1
  569. package/calendar/fesm2020/dereekb-dbx-web-calendar.mjs.map +0 -1
  570. package/esm2020/calendar/lib/calendar.base.component.mjs +0 -57
  571. package/esm2020/lib/action/snackbar/action.snackbar.component.mjs +0 -96
  572. package/esm2020/lib/action/snackbar/action.snackbar.directive.mjs +0 -64
  573. package/esm2020/lib/action/snackbar/action.snackbar.service.mjs +0 -82
  574. package/esm2020/lib/button/progress/bar.button.component.mjs +0 -16
  575. package/esm2020/lib/button/progress/base.progress.button.directive.mjs +0 -97
  576. package/esm2020/lib/button/progress/spinner.button.component.mjs +0 -43
  577. package/esm2020/lib/error/error.widget.directive.mjs +0 -23
  578. package/esm2020/lib/extension/model/model.tracker.view.storage.mjs +0 -76
  579. package/esm2020/lib/extension/model/model.types.service.mjs +0 -67
  580. package/esm2020/lib/extension/structure/structure.body.directive.mjs +0 -28
  581. package/esm2020/lib/extension/structure/structure.structure.directive.mjs +0 -23
  582. package/esm2020/lib/extension/widget/widget.list.component.mjs +0 -66
  583. package/esm2020/lib/interaction/dialog/dialog.content.close.component.mjs +0 -37
  584. package/esm2020/lib/interaction/filter/filter.popover.component.mjs +0 -125
  585. package/esm2020/lib/interaction/popover/popover.scroll.content.component.mjs +0 -51
  586. package/esm2020/lib/layout/content/content.box.directive.mjs +0 -36
  587. package/esm2020/lib/layout/content/content.container.directive.mjs +0 -31
  588. package/esm2020/lib/layout/list/list.component.mjs +0 -253
  589. package/esm2020/lib/layout/list/list.view.value.item.directive.mjs +0 -20
  590. package/esm2020/lib/layout/text/text.chips.component.mjs +0 -34
  591. package/esm2020/lib/router/layout/anchor/anchor.component.mjs +0 -66
  592. package/esm2020/lib/router/layout/anchor/anchor.content.component.mjs +0 -49
  593. package/esm2020/lib/router/layout/anchorlist/anchorlist.component.mjs +0 -38
  594. package/esm2020/lib/router/layout/navbar/navbar.component.mjs +0 -133
  595. package/esm2020/lib/router/layout/navbar/navbar.module.mjs +0 -49
  596. package/esm2020/mapbox/lib/index.mjs +0 -22
  597. package/esm2020/mapbox/lib/mapbox.cdref.service.mjs +0 -30
  598. package/esm2020/mapbox/lib/mapbox.layout.component.mjs +0 -189
  599. package/esm2020/mapbox/lib/mapbox.marker.component.mjs +0 -139
  600. package/esm2020/mapbox/lib/mapbox.util.mjs +0 -15
  601. package/esm2020/table/lib/date/daterange.table.cell.input.component.mjs +0 -166
  602. package/fesm2015/dereekb-dbx-web-calendar.mjs +0 -391
  603. package/fesm2015/dereekb-dbx-web-calendar.mjs.map +0 -1
  604. package/fesm2015/dereekb-dbx-web-mapbox.mjs +0 -1551
  605. package/fesm2015/dereekb-dbx-web-mapbox.mjs.map +0 -1
  606. package/fesm2015/dereekb-dbx-web-table.mjs +0 -745
  607. package/fesm2015/dereekb-dbx-web-table.mjs.map +0 -1
  608. package/fesm2015/dereekb-dbx-web.mjs +0 -9117
  609. package/fesm2015/dereekb-dbx-web.mjs.map +0 -1
  610. package/fesm2020/dereekb-dbx-web-calendar.mjs.map +0 -1
  611. package/fesm2020/dereekb-dbx-web-mapbox.mjs.map +0 -1
  612. package/fesm2020/dereekb-dbx-web-table.mjs.map +0 -1
  613. package/fesm2020/dereekb-dbx-web.mjs.map +0 -1
  614. package/mapbox/esm2020/lib/index.mjs +0 -22
  615. package/mapbox/esm2020/lib/mapbox.cdref.service.mjs +0 -30
  616. package/mapbox/esm2020/lib/mapbox.layout.component.mjs +0 -189
  617. package/mapbox/esm2020/lib/mapbox.marker.component.mjs +0 -139
  618. package/mapbox/esm2020/lib/mapbox.util.mjs +0 -15
  619. package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs +0 -1551
  620. package/mapbox/fesm2015/dereekb-dbx-web-mapbox.mjs.map +0 -1
  621. package/mapbox/fesm2020/dereekb-dbx-web-mapbox.mjs.map +0 -1
  622. package/mapbox/lib/mapbox.cdref.service.d.ts +0 -15
  623. package/table/esm2020/lib/date/daterange.table.cell.input.component.mjs +0 -166
  624. package/table/fesm2015/dereekb-dbx-web-table.mjs +0 -745
  625. package/table/fesm2015/dereekb-dbx-web-table.mjs.map +0 -1
  626. package/table/fesm2020/dereekb-dbx-web-table.mjs.map +0 -1
  627. /package/calendar/{esm2020 → esm2022}/dereekb-dbx-web-calendar.mjs +0 -0
  628. /package/calendar/{esm2020 → esm2022}/index.mjs +0 -0
  629. /package/calendar/{esm2020 → esm2022}/lib/calendar.mjs +0 -0
  630. /package/calendar/{esm2020 → esm2022}/lib/index.mjs +0 -0
  631. /package/{esm2020 → esm2022}/calendar/dereekb-dbx-web-calendar.mjs +0 -0
  632. /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
  633. /package/{esm2020 → esm2022}/calendar/lib/calendar.mjs +0 -0
  634. /package/{esm2020 → esm2022}/calendar/lib/index.mjs +0 -0
  635. /package/{esm2020 → esm2022}/dereekb-dbx-web.mjs +0 -0
  636. /package/{esm2020 → esm2022}/index.mjs +0 -0
  637. /package/{esm2020 → esm2022}/lib/action/index.mjs +0 -0
  638. /package/{esm2020 → esm2022}/lib/action/snackbar/action.snackbar.default.mjs +0 -0
  639. /package/{esm2020 → esm2022}/lib/action/snackbar/action.snackbar.generator.mjs +0 -0
  640. /package/{esm2020 → esm2022}/lib/action/snackbar/action.snackbar.mjs +0 -0
  641. /package/{esm2020 → esm2022}/lib/action/snackbar/index.mjs +0 -0
  642. /package/{esm2020 → esm2022}/lib/action/transition/index.mjs +0 -0
  643. /package/{esm2020 → esm2022}/lib/button/icon/index.mjs +0 -0
  644. /package/{esm2020 → esm2022}/lib/button/index.mjs +0 -0
  645. /package/{esm2020 → esm2022}/lib/button/progress/index.mjs +0 -0
  646. /package/{esm2020 → esm2022}/lib/error/error.api.mjs +0 -0
  647. /package/{esm2020 → esm2022}/lib/error/index.mjs +0 -0
  648. /package/{esm2020 → esm2022}/lib/error/state.mjs +0 -0
  649. /package/{esm2020 → esm2022}/lib/extension/index.mjs +0 -0
  650. /package/{esm2020 → esm2022}/lib/extension/model/index.mjs +0 -0
  651. /package/{esm2020 → esm2022}/lib/extension/model/model.tracker.mjs +0 -0
  652. /package/{esm2020 → esm2022}/lib/extension/model/model.types.mjs +0 -0
  653. /package/{esm2020 → esm2022}/lib/extension/model/state/actions/actions.mjs +0 -0
  654. /package/{esm2020 → esm2022}/lib/extension/model/state/actions/index.mjs +0 -0
  655. /package/{esm2020 → esm2022}/lib/extension/model/state/actions/model.actions.mjs +0 -0
  656. /package/{esm2020 → esm2022}/lib/extension/model/state/index.mjs +0 -0
  657. /package/{esm2020 → esm2022}/lib/extension/model/state/reducers/index.mjs +0 -0
  658. /package/{esm2020 → esm2022}/lib/extension/model/state/reducers/model.module.config.mjs +0 -0
  659. /package/{esm2020 → esm2022}/lib/extension/model/state/state.mjs +0 -0
  660. /package/{esm2020 → esm2022}/lib/extension/structure/index.mjs +0 -0
  661. /package/{esm2020 → esm2022}/lib/extension/widget/index.mjs +0 -0
  662. /package/{esm2020 → esm2022}/lib/extension/widget/widget.mjs +0 -0
  663. /package/{esm2020 → esm2022}/lib/index.mjs +0 -0
  664. /package/{esm2020 → esm2022}/lib/interaction/dialog/dialog.content.mjs +0 -0
  665. /package/{esm2020 → esm2022}/lib/interaction/dialog/index.mjs +0 -0
  666. /package/{esm2020 → esm2022}/lib/interaction/filter/filter.menu.mjs +0 -0
  667. /package/{esm2020 → esm2022}/lib/interaction/filter/index.mjs +0 -0
  668. /package/{esm2020 → esm2022}/lib/interaction/index.mjs +0 -0
  669. /package/{esm2020 → esm2022}/lib/interaction/popover/index.mjs +0 -0
  670. /package/{esm2020 → esm2022}/lib/interaction/popover/popover.mjs +0 -0
  671. /package/{esm2020 → esm2022}/lib/interaction/popover/popover.position.strategy.mjs +0 -0
  672. /package/{esm2020 → esm2022}/lib/interaction/popup/index.mjs +0 -0
  673. /package/{esm2020 → esm2022}/lib/interaction/popup/popup.mjs +0 -0
  674. /package/{esm2020 → esm2022}/lib/interaction/popup/popup.position.strategy.mjs +0 -0
  675. /package/{esm2020 → esm2022}/lib/interaction/prompt/index.mjs +0 -0
  676. /package/{esm2020 → esm2022}/lib/interaction/prompt/prompt.confirm.mjs +0 -0
  677. /package/{esm2020 → esm2022}/lib/keypress/index.mjs +0 -0
  678. /package/{esm2020 → esm2022}/lib/layout/bar/bar.mjs +0 -0
  679. /package/{esm2020 → esm2022}/lib/layout/bar/index.mjs +0 -0
  680. /package/{esm2020 → esm2022}/lib/layout/block/index.mjs +0 -0
  681. /package/{esm2020 → esm2022}/lib/layout/card/index.mjs +0 -0
  682. /package/{esm2020 → esm2022}/lib/layout/column/index.mjs +0 -0
  683. /package/{esm2020 → esm2022}/lib/layout/column/one/index.mjs +0 -0
  684. /package/{esm2020 → esm2022}/lib/layout/column/two/index.mjs +0 -0
  685. /package/{esm2020 → esm2022}/lib/layout/compact/compact.mjs +0 -0
  686. /package/{esm2020 → esm2022}/lib/layout/compact/index.mjs +0 -0
  687. /package/{esm2020 → esm2022}/lib/layout/content/index.mjs +0 -0
  688. /package/{esm2020 → esm2022}/lib/layout/flag/index.mjs +0 -0
  689. /package/{esm2020 → esm2022}/lib/layout/flex/flex.mjs +0 -0
  690. /package/{esm2020 → esm2022}/lib/layout/flex/index.mjs +0 -0
  691. /package/{esm2020 → esm2022}/lib/layout/index.mjs +0 -0
  692. /package/{esm2020 → esm2022}/lib/layout/item/index.mjs +0 -0
  693. /package/{esm2020 → esm2022}/lib/layout/list/index.mjs +0 -0
  694. /package/{esm2020 → esm2022}/lib/layout/list/list.track.mjs +0 -0
  695. /package/{esm2020 → esm2022}/lib/layout/list/list.view.mjs +0 -0
  696. /package/{esm2020 → esm2022}/lib/layout/list/list.view.value.mjs +0 -0
  697. /package/{esm2020 → esm2022}/lib/layout/list/list.view.value.modifier.mjs +0 -0
  698. /package/{esm2020 → esm2022}/lib/layout/list/list.wrapper.mjs +0 -0
  699. /package/{esm2020 → esm2022}/lib/layout/section/index.mjs +0 -0
  700. /package/{esm2020 → esm2022}/lib/layout/section/section.mjs +0 -0
  701. /package/{esm2020 → esm2022}/lib/layout/step/index.mjs +0 -0
  702. /package/{esm2020 → esm2022}/lib/layout/style/index.mjs +0 -0
  703. /package/{esm2020 → esm2022}/lib/layout/style/style.mjs +0 -0
  704. /package/{esm2020 → esm2022}/lib/layout/text/index.mjs +0 -0
  705. /package/{esm2020 → esm2022}/lib/loading/index.mjs +0 -0
  706. /package/{esm2020 → esm2022}/lib/router/index.mjs +0 -0
  707. /package/{esm2020 → esm2022}/lib/router/layout/anchor/index.mjs +0 -0
  708. /package/{esm2020 → esm2022}/lib/router/layout/anchorlist/index.mjs +0 -0
  709. /package/{esm2020 → esm2022}/lib/router/layout/index.mjs +0 -0
  710. /package/{esm2020 → esm2022}/lib/router/layout/list/index.mjs +0 -0
  711. /package/{esm2020 → esm2022}/lib/router/layout/navbar/index.mjs +0 -0
  712. /package/{esm2020 → esm2022}/lib/router/layout/sidenav/index.mjs +0 -0
  713. /package/{esm2020 → esm2022}/lib/router/layout/sidenav/sidenav.mjs +0 -0
  714. /package/{esm2020 → esm2022}/lib/router/provider/index.mjs +0 -0
  715. /package/{esm2020 → esm2022}/lib/router/provider/ngrouter/index.mjs +0 -0
  716. /package/{esm2020 → esm2022}/lib/router/provider/router.provider.config.mjs +0 -0
  717. /package/{esm2020 → esm2022}/lib/router/provider/uirouter/index.mjs +0 -0
  718. /package/{esm2020 → esm2022}/lib/screen/index.mjs +0 -0
  719. /package/{esm2020 → esm2022}/lib/screen/screen.mjs +0 -0
  720. /package/{esm2020 → esm2022}/lib/util/cdk.mjs +0 -0
  721. /package/{esm2020 → esm2022}/lib/util/index.mjs +0 -0
  722. /package/{esm2020 → esm2022}/mapbox/dereekb-dbx-web-mapbox.mjs +0 -0
  723. /package/{esm2020 → esm2022}/mapbox/index.mjs +0 -0
  724. /package/{esm2020 → esm2022}/mapbox/lib/mapbox.marker.mjs +0 -0
  725. /package/{esm2020 → esm2022}/mapbox/lib/mapbox.mjs +0 -0
  726. /package/{esm2020 → esm2022}/mapbox/lib/mapbox.rxjs.mjs +0 -0
  727. /package/{esm2020 → esm2022}/mapbox/lib/options.mjs +0 -0
  728. /package/{esm2020 → esm2022}/table/dereekb-dbx-web-table.mjs +0 -0
  729. /package/{esm2020 → esm2022}/table/index.mjs +0 -0
  730. /package/{esm2020 → esm2022}/table/lib/date/index.mjs +0 -0
  731. /package/{esm2020 → esm2022}/table/lib/index.mjs +0 -0
  732. /package/{esm2020 → esm2022}/table/lib/table.mjs +0 -0
  733. /package/mapbox/{esm2020 → esm2022}/dereekb-dbx-web-mapbox.mjs +0 -0
  734. /package/mapbox/{esm2020 → esm2022}/index.mjs +0 -0
  735. /package/mapbox/{esm2020 → esm2022}/lib/mapbox.marker.mjs +0 -0
  736. /package/mapbox/{esm2020 → esm2022}/lib/mapbox.mjs +0 -0
  737. /package/mapbox/{esm2020 → esm2022}/lib/mapbox.rxjs.mjs +0 -0
  738. /package/mapbox/{esm2020 → esm2022}/lib/options.mjs +0 -0
  739. /package/table/{esm2020 → esm2022}/dereekb-dbx-web-table.mjs +0 -0
  740. /package/table/{esm2020 → esm2022}/index.mjs +0 -0
  741. /package/table/{esm2020 → esm2022}/lib/date/index.mjs +0 -0
  742. /package/table/{esm2020 → esm2022}/lib/index.mjs +0 -0
  743. /package/table/{esm2020 → esm2022}/lib/table.mjs +0 -0
@@ -38,15 +38,15 @@ class DbxTableDateHeaderComponent {
38
38
  set date(date) {
39
39
  this._date = date;
40
40
  }
41
- }
42
- DbxTableDateHeaderComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43
- DbxTableDateHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableDateHeaderComponent, selector: "ng-component", ngImport: i0, template: `
41
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
42
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableDateHeaderComponent, selector: "ng-component", ngImport: i0, template: `
44
43
  <div *ngIf="date" class="dbx-table-date-column-header">
45
44
  <span class="dbx-table-date-column-header-left">{{ date | date: left }}</span>
46
45
  <span>{{ date | date: right }}</span>
47
46
  </div>
48
- `, isInline: true, dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateHeaderComponent, decorators: [{
47
+ `, isInline: true, dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.DatePipe, name: "date" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
48
+ }
49
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateHeaderComponent, decorators: [{
50
50
  type: Component,
51
51
  args: [{
52
52
  template: `
@@ -111,10 +111,10 @@ class DbxTableStore extends ComponentStore {
111
111
  this.setDataDelegate = this.updater((state, dataDelegate) => ({ ...state, dataDelegate }));
112
112
  this.setViewDelegate = this.updater((state, viewDelegate) => ({ ...state, viewDelegate }));
113
113
  }
114
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
115
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableStore }); }
114
116
  }
115
- DbxTableStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
116
- DbxTableStore.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableStore });
117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableStore, decorators: [{
117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableStore, decorators: [{
118
118
  type: Injectable
119
119
  }], ctorParameters: function () { return []; } });
120
120
 
@@ -137,10 +137,10 @@ class DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy {
137
137
  }
138
138
  return new DateRange(null, null);
139
139
  }
140
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy, deps: [{ token: i1.DateAdapter }, { token: DbxTableDateRangeDayDistanceInputCellInputComponent }], target: i0.ɵɵFactoryTarget.Injectable }); }
141
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy }); }
140
142
  }
141
- DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy, deps: [{ token: i1.DateAdapter }, { token: DbxTableDateRangeDayDistanceInputCellInputComponent }], target: i0.ɵɵFactoryTarget.Injectable });
142
- DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy });
143
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy, decorators: [{
143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy, decorators: [{
144
144
  type: Injectable
145
145
  }], ctorParameters: function () { return [{ type: i1.DateAdapter }, { type: DbxTableDateRangeDayDistanceInputCellInputComponent }]; } });
146
146
  const DEFAULT_DBX_TABLE_DATE_RANGE_DAY_DISTIANCE_INPUT_CELL_COMPONENT_CONFIG = { daysDistance: 6 };
@@ -163,14 +163,15 @@ class DbxTableDateRangeDayDistanceInputCellInputComponent {
163
163
  this.minDate$ = this._config.pipe(map((x) => x.minDate));
164
164
  this.maxDate$ = this._config.pipe(map((x) => x.maxDate));
165
165
  this.buttonFormat$ = this._config.pipe(map((x) => x.buttonFormat ?? DEFAULT_DBX_TABLE_DATE_RANGE_DAY_BUTTON_FORMAT));
166
- this.dateRangeString$ = combineLatest([this.buttonFormat$, this.range.valueChanges]).pipe(map(([buttonFormat, { start, end }]) => {
166
+ this.rangeValue$ = this.range.valueChanges.pipe(startWith(this.range.value));
167
+ this.dateRangeString$ = combineLatest([this.buttonFormat$, this.rangeValue$]).pipe(map(([buttonFormat, { start, end }]) => {
167
168
  if (start && end) {
168
169
  return `${format(start, buttonFormat)} - ${format(end, buttonFormat)}`;
169
170
  }
170
171
  else {
171
172
  return `Select Date`;
172
173
  }
173
- }));
174
+ }), distinctUntilChanged(), shareReplay(1));
174
175
  }
175
176
  ngOnInit() {
176
177
  this._syncSub.subscription = this.tableStore.input$.subscribe((x) => {
@@ -188,7 +189,7 @@ class DbxTableDateRangeDayDistanceInputCellInputComponent {
188
189
  obs = of({});
189
190
  }
190
191
  else {
191
- obs = this.range.valueChanges.pipe(startWith(this.range.value));
192
+ obs = this.rangeValue$;
192
193
  }
193
194
  return obs;
194
195
  }), filter((x) => Boolean(x.start)), distinctUntilChanged((a, b) => isSameDateDay(a.start, b.start)), throttleTime(100, undefined, { trailing: true }))
@@ -219,14 +220,13 @@ class DbxTableDateRangeDayDistanceInputCellInputComponent {
219
220
  pickerClosed() {
220
221
  this._pickerOpened.next(false);
221
222
  }
222
- }
223
- DbxTableDateRangeDayDistanceInputCellInputComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
224
- DbxTableDateRangeDayDistanceInputCellInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableDateRangeDayDistanceInputCellInputComponent, selector: "ng-component", providers: [
225
- {
226
- provide: MAT_DATE_RANGE_SELECTION_STRATEGY,
227
- useClass: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy
228
- }
229
- ], ngImport: i0, template: `
223
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
224
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableDateRangeDayDistanceInputCellInputComponent, selector: "ng-component", providers: [
225
+ {
226
+ provide: MAT_DATE_RANGE_SELECTION_STRATEGY,
227
+ useClass: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy
228
+ }
229
+ ], ngImport: i0, template: `
230
230
  <div class="dbx-table-date-range-distance-input-cell">
231
231
  <mat-date-range-input class="dbx-table-date-range-distance-input" [min]="minDate$ | async" [max]="maxDate$ | async" [formGroup]="range" [rangePicker]="picker">
232
232
  <input matStartDate formControlName="start" placeholder="Start date" />
@@ -235,8 +235,9 @@ DbxTableDateRangeDayDistanceInputCellInputComponent.ɵcmp = i0.ɵɵngDeclareComp
235
235
  <button mat-stroked-button color="primary" (click)="picker.open()">{{ dateRangeString$ | async }}</button>
236
236
  <mat-date-range-picker #picker (opened)="pickerOpened()" (closed)="pickerClosed()"></mat-date-range-picker>
237
237
  </div>
238
- `, isInline: true, dependencies: [{ kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i4.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i4.MatStartDate, selector: "input[matStartDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i4.MatEndDate, selector: "input[matEndDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i4.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: i5.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputComponent, decorators: [{
238
+ `, isInline: true, dependencies: [{ kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i4.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i4.MatStartDate, selector: "input[matStartDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i4.MatEndDate, selector: "input[matEndDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i4.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: i5.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
239
+ }
240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateRangeDayDistanceInputCellInputComponent, decorators: [{
240
241
  type: Component,
241
242
  args: [{
242
243
  template: `
@@ -274,37 +275,37 @@ const declarations = [
274
275
  DbxTableDateRangeDayDistanceInputCellInputComponent
275
276
  ];
276
277
  class DbxTableDateModule {
278
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
279
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateModule, declarations: [
280
+ //
281
+ DbxTableDateHeaderComponent,
282
+ DbxTableDateRangeDayDistanceInputCellInputComponent], imports: [
283
+ //
284
+ CommonModule,
285
+ DbxLoadingModule,
286
+ DbxInjectionComponentModule,
287
+ FormsModule,
288
+ ReactiveFormsModule,
289
+ MatIconModule,
290
+ MatDatepickerModule,
291
+ MatButtonModule,
292
+ MatTableModule], exports: [
293
+ //
294
+ DbxTableDateHeaderComponent,
295
+ DbxTableDateRangeDayDistanceInputCellInputComponent] }); }
296
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateModule, imports: [
297
+ //
298
+ CommonModule,
299
+ DbxLoadingModule,
300
+ DbxInjectionComponentModule,
301
+ FormsModule,
302
+ ReactiveFormsModule,
303
+ MatIconModule,
304
+ MatDatepickerModule,
305
+ MatButtonModule,
306
+ MatTableModule] }); }
277
307
  }
278
- DbxTableDateModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
279
- DbxTableDateModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateModule, declarations: [
280
- //
281
- DbxTableDateHeaderComponent,
282
- DbxTableDateRangeDayDistanceInputCellInputComponent], imports: [
283
- //
284
- CommonModule,
285
- DbxLoadingModule,
286
- DbxInjectionComponentModule,
287
- FormsModule,
288
- ReactiveFormsModule,
289
- MatIconModule,
290
- MatDatepickerModule,
291
- MatButtonModule,
292
- MatTableModule], exports: [
293
- //
294
- DbxTableDateHeaderComponent,
295
- DbxTableDateRangeDayDistanceInputCellInputComponent] });
296
- DbxTableDateModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateModule, imports: [
297
- //
298
- CommonModule,
299
- DbxLoadingModule,
300
- DbxInjectionComponentModule,
301
- FormsModule,
302
- ReactiveFormsModule,
303
- MatIconModule,
304
- MatDatepickerModule,
305
- MatButtonModule,
306
- MatTableModule] });
307
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDateModule, decorators: [{
308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDateModule, decorators: [{
308
309
  type: NgModule,
309
310
  args: [{
310
311
  imports: [
@@ -329,12 +330,12 @@ class DbxTableActionCellComponent {
329
330
  this.tableStore = tableStore;
330
331
  this.config$ = this.tableStore.viewDelegate$.pipe(map((x) => x.summaryRowEnd), distinctUntilChanged());
331
332
  }
332
- }
333
- DbxTableActionCellComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableActionCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
334
- DbxTableActionCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableActionCellComponent, selector: "dbx-table-action-cell", ngImport: i0, template: `
333
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableActionCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
334
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableActionCellComponent, selector: "dbx-table-action-cell", ngImport: i0, template: `
335
335
  <dbx-injection [config]="config$ | async"></dbx-injection>
336
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
337
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableActionCellComponent, decorators: [{
336
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
337
+ }
338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableActionCellComponent, decorators: [{
338
339
  type: Component,
339
340
  args: [{
340
341
  selector: 'dbx-table-action-cell',
@@ -353,12 +354,12 @@ class DbxTableInputCellComponent {
353
354
  this.tableStore = tableStore;
354
355
  this.config$ = this.tableStore.viewDelegate$.pipe(map((x) => x.inputHeader), distinctUntilChanged());
355
356
  }
356
- }
357
- DbxTableInputCellComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableInputCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
358
- DbxTableInputCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableInputCellComponent, selector: "dbx-table-input-cell", ngImport: i0, template: `
357
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableInputCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
358
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableInputCellComponent, selector: "dbx-table-input-cell", ngImport: i0, template: `
359
359
  <dbx-injection [config]="config$ | async"></dbx-injection>
360
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
361
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableInputCellComponent, decorators: [{
360
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
361
+ }
362
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableInputCellComponent, decorators: [{
362
363
  type: Component,
363
364
  args: [{
364
365
  selector: 'dbx-table-input-cell',
@@ -374,12 +375,12 @@ class DbxTableSummaryEndCellComponent {
374
375
  this.tableStore = tableStore;
375
376
  this.config$ = this.tableStore.viewDelegate$.pipe(map((x) => x.summaryRowEnd), distinctUntilChanged());
376
377
  }
377
- }
378
- DbxTableSummaryEndCellComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableSummaryEndCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
379
- DbxTableSummaryEndCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableSummaryEndCellComponent, selector: "dbx-table-summary-end-cell", ngImport: i0, template: `
378
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableSummaryEndCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
379
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableSummaryEndCellComponent, selector: "dbx-table-summary-end-cell", ngImport: i0, template: `
380
380
  <dbx-injection [config]="config$ | async"></dbx-injection>
381
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
382
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableSummaryEndCellComponent, decorators: [{
381
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
382
+ }
383
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableSummaryEndCellComponent, decorators: [{
383
384
  type: Component,
384
385
  args: [{
385
386
  selector: 'dbx-table-summary-end-cell',
@@ -398,12 +399,12 @@ class DbxTableSummaryStartCellComponent {
398
399
  this.tableStore = tableStore;
399
400
  this.config$ = this.tableStore.viewDelegate$.pipe(map((x) => x.summaryRowHeader), distinctUntilChanged());
400
401
  }
401
- }
402
- DbxTableSummaryStartCellComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableSummaryStartCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
403
- DbxTableSummaryStartCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableSummaryStartCellComponent, selector: "dbx-table-summary-start-cell", ngImport: i0, template: `
402
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableSummaryStartCellComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
403
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableSummaryStartCellComponent, selector: "dbx-table-summary-start-cell", ngImport: i0, template: `
404
404
  <dbx-injection [config]="config$ | async"></dbx-injection>
405
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
406
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableSummaryStartCellComponent, decorators: [{
405
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
406
+ }
407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableSummaryStartCellComponent, decorators: [{
407
408
  type: Component,
408
409
  args: [{
409
410
  selector: 'dbx-table-summary-start-cell',
@@ -429,10 +430,10 @@ class AbstractDbxTableColumnDirective {
429
430
  ngOnDestroy() {
430
431
  this._column.complete();
431
432
  }
433
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AbstractDbxTableColumnDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive }); }
434
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AbstractDbxTableColumnDirective, inputs: { column: "column" }, ngImport: i0 }); }
432
435
  }
433
- AbstractDbxTableColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxTableColumnDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive });
434
- AbstractDbxTableColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxTableColumnDirective, inputs: { column: "column" }, ngImport: i0 });
435
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxTableColumnDirective, decorators: [{
436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AbstractDbxTableColumnDirective, decorators: [{
436
437
  type: Directive
437
438
  }], ctorParameters: function () { return [{ type: DbxTableStore }]; }, propDecorators: { column: [{
438
439
  type: Input
@@ -451,12 +452,12 @@ class DbxTableColumnHeaderComponent extends AbstractDbxTableColumnDirective {
451
452
  }
452
453
  }), distinctUntilChanged());
453
454
  }
454
- }
455
- DbxTableColumnHeaderComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableColumnHeaderComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
456
- DbxTableColumnHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableColumnHeaderComponent, selector: "dbx-table-column-header", usesInheritance: true, ngImport: i0, template: `
455
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableColumnHeaderComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
456
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableColumnHeaderComponent, selector: "dbx-table-column-header", usesInheritance: true, ngImport: i0, template: `
457
457
  <dbx-injection [config]="config$ | async"></dbx-injection>
458
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
459
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableColumnHeaderComponent, decorators: [{
458
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
459
+ }
460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableColumnHeaderComponent, decorators: [{
460
461
  type: Component,
461
462
  args: [{
462
463
  selector: 'dbx-table-column-header',
@@ -480,12 +481,12 @@ class DbxTableColumnFooterComponent extends AbstractDbxTableColumnDirective {
480
481
  }
481
482
  }), distinctUntilChanged());
482
483
  }
483
- }
484
- DbxTableColumnFooterComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableColumnFooterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
485
- DbxTableColumnFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableColumnFooterComponent, selector: "dbx-table-column-footer", usesInheritance: true, ngImport: i0, template: `
484
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableColumnFooterComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
485
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableColumnFooterComponent, selector: "dbx-table-column-footer", usesInheritance: true, ngImport: i0, template: `
486
486
  <dbx-injection [config]="config$ | async"></dbx-injection>
487
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableColumnFooterComponent, decorators: [{
487
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
488
+ }
489
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableColumnFooterComponent, decorators: [{
489
490
  type: Component,
490
491
  args: [{
491
492
  selector: 'dbx-table-column-footer',
@@ -511,10 +512,10 @@ class AbstractDbxTableElementDirective {
511
512
  ngOnDestroy() {
512
513
  this._element.complete();
513
514
  }
515
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AbstractDbxTableElementDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive }); }
516
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AbstractDbxTableElementDirective, inputs: { element: "element" }, ngImport: i0 }); }
514
517
  }
515
- AbstractDbxTableElementDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxTableElementDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive });
516
- AbstractDbxTableElementDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxTableElementDirective, inputs: { element: "element" }, ngImport: i0 });
517
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxTableElementDirective, decorators: [{
518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AbstractDbxTableElementDirective, decorators: [{
518
519
  type: Directive
519
520
  }], ctorParameters: function () { return [{ type: DbxTableStore }]; }, propDecorators: { element: [{
520
521
  type: Input
@@ -534,12 +535,12 @@ class DbxTableItemCellComponent extends AbstractDbxTableElementDirective {
534
535
  super.ngOnDestroy();
535
536
  this._column.complete();
536
537
  }
537
- }
538
- DbxTableItemCellComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
539
- DbxTableItemCellComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableItemCellComponent, selector: "dbx-table-item-cell", inputs: { column: "column" }, usesInheritance: true, ngImport: i0, template: `
538
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemCellComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
539
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableItemCellComponent, selector: "dbx-table-item-cell", inputs: { column: "column" }, usesInheritance: true, ngImport: i0, template: `
540
540
  <dbx-injection [config]="config$ | async"></dbx-injection>
541
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
542
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemCellComponent, decorators: [{
541
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
542
+ }
543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemCellComponent, decorators: [{
543
544
  type: Component,
544
545
  args: [{
545
546
  selector: 'dbx-table-item-cell',
@@ -557,12 +558,12 @@ class DbxTableItemHeaderComponent extends AbstractDbxTableElementDirective {
557
558
  super(...arguments);
558
559
  this.config$ = this.tableStore.viewDelegate$.pipe(switchMap((viewDelegate) => this.element$.pipe(map((x) => viewDelegate.itemHeader(x)))), distinctUntilChanged());
559
560
  }
560
- }
561
- DbxTableItemHeaderComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemHeaderComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
562
- DbxTableItemHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableItemHeaderComponent, selector: "dbx-table-item-header", usesInheritance: true, ngImport: i0, template: `
561
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemHeaderComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
562
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableItemHeaderComponent, selector: "dbx-table-item-header", usesInheritance: true, ngImport: i0, template: `
563
563
  <dbx-injection [config]="config$ | async"></dbx-injection>
564
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
565
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemHeaderComponent, decorators: [{
564
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
565
+ }
566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemHeaderComponent, decorators: [{
566
567
  type: Component,
567
568
  args: [{
568
569
  selector: 'dbx-table-item-header',
@@ -586,12 +587,12 @@ class DbxTableItemActionComponent extends AbstractDbxTableElementDirective {
586
587
  }
587
588
  }), distinctUntilChanged());
588
589
  }
589
- }
590
- DbxTableItemActionComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemActionComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
591
- DbxTableItemActionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableItemActionComponent, selector: "dbx-table-item-action", usesInheritance: true, ngImport: i0, template: `
590
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemActionComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
591
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableItemActionComponent, selector: "dbx-table-item-action", usesInheritance: true, ngImport: i0, template: `
592
592
  <dbx-injection [config]="config$ | async"></dbx-injection>
593
- `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
594
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableItemActionComponent, decorators: [{
593
+ `, isInline: true, dependencies: [{ kind: "component", type: i1$1.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
594
+ }
595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableItemActionComponent, decorators: [{
595
596
  type: Component,
596
597
  args: [{
597
598
  selector: 'dbx-table-item-action',
@@ -633,10 +634,10 @@ class DbxTableViewComponent {
633
634
  onScrollDown() {
634
635
  this.tableStore.loadMore();
635
636
  }
637
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableViewComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component }); }
638
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableViewComponent, selector: "dbx-table-view", ngImport: i0, template: "<dbx-loading [context]=\"context\">\n <dbx-loading class=\"dbx-table-view-loading\" [linear]=\"true\" [context]=\"dataLoadingContext\"></dbx-loading>\n <section class=\"dbx-table-view\" infinite-scroll [infiniteScrollDistance]=\"scrollDistance\" [infiniteScrollThrottle]=\"throttleScroll\" [scrollWindow]=\"false\" (scrolled)=\"onScrollDown()\">\n <table class=\"dbx-table-view-table\" mat-table [dataSource]=\"elements$\" [trackBy]=\"(trackByFunction$ | async) || DEFAULT_TRACK_BY_FUNCTION\">\n <!-- Header/Item column -->\n <ng-container [matColumnDef]=\"itemsColumnName\" [sticky]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-input-cell></dbx-table-input-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-header [element]=\"element\"></dbx-table-item-header>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-start-cell></dbx-table-summary-start-cell>\n </td>\n </ng-container>\n\n <!-- Column Definitions -->\n <ng-container [matColumnDef]=\"column.columnName\" [sticky]=\"false\" *ngFor=\"let column of innerColumns$ | async\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-column-header [column]=\"column\"></dbx-table-column-header>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-cell [element]=\"element\" [column]=\"column\"></dbx-table-item-cell>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-column-footer [column]=\"column\"></dbx-table-column-footer>\n </td>\n </ng-container>\n\n <!-- Tail/Action column -->\n <ng-container [matColumnDef]=\"actionsColumnName\" [stickyEnd]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-action-cell></dbx-table-action-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-action [element]=\"element\"></dbx-table-item-action>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-end-cell></dbx-table-summary-end-cell>\n </td>\n </ng-container>\n\n <!-- Table View -->\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns$ | async\"></tr>\n\n <tr mat-footer-row *matFooterRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n </table>\n </section>\n</dbx-loading>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i3$1.DbxLoadingComponent, selector: "dbx-loading", inputs: ["show", "text", "mode", "color", "diameter", "linear", "padding", "context", "loading", "error"] }, { kind: "component", type: i4$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i4$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i4$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i4$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { kind: "directive", type: i4$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i4$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i4$1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i4$1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i4$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i4$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i4$1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i4$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i4$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i4$1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "directive", type: i5$1.InfiniteScrollDirective, selector: "[infiniteScroll], [infinite-scroll], [data-infinite-scroll]", inputs: ["infiniteScrollDistance", "infiniteScrollUpDistance", "infiniteScrollThrottle", "infiniteScrollDisabled", "infiniteScrollContainer", "scrollWindow", "immediateCheck", "horizontal", "alwaysCallback", "fromRoot"], outputs: ["scrolled", "scrolledUp"] }, { kind: "component", type: DbxTableColumnHeaderComponent, selector: "dbx-table-column-header" }, { kind: "component", type: DbxTableColumnFooterComponent, selector: "dbx-table-column-footer" }, { kind: "component", type: DbxTableInputCellComponent, selector: "dbx-table-input-cell" }, { kind: "component", type: DbxTableActionCellComponent, selector: "dbx-table-action-cell" }, { kind: "component", type: DbxTableItemCellComponent, selector: "dbx-table-item-cell", inputs: ["column"] }, { kind: "component", type: DbxTableItemHeaderComponent, selector: "dbx-table-item-header" }, { kind: "component", type: DbxTableItemActionComponent, selector: "dbx-table-item-action" }, { kind: "component", type: DbxTableSummaryStartCellComponent, selector: "dbx-table-summary-start-cell" }, { kind: "component", type: DbxTableSummaryEndCellComponent, selector: "dbx-table-summary-end-cell" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
636
639
  }
637
- DbxTableViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableViewComponent, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Component });
638
- DbxTableViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableViewComponent, selector: "dbx-table-view", ngImport: i0, template: "<dbx-loading [context]=\"context\">\n <dbx-loading class=\"dbx-table-view-loading\" [linear]=\"true\" [context]=\"dataLoadingContext\"></dbx-loading>\n <section class=\"dbx-table-view\" infinite-scroll [infiniteScrollDistance]=\"scrollDistance\" [infiniteScrollThrottle]=\"throttleScroll\" [scrollWindow]=\"false\" (scrolled)=\"onScrollDown()\">\n <table class=\"dbx-table-view-table\" mat-table [dataSource]=\"elements$\" [trackBy]=\"(trackByFunction$ | async) || DEFAULT_TRACK_BY_FUNCTION\">\n <!-- Header/Item column -->\n <ng-container [matColumnDef]=\"itemsColumnName\" [sticky]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-input-cell></dbx-table-input-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-header [element]=\"element\"></dbx-table-item-header>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-start-cell></dbx-table-summary-start-cell>\n </td>\n </ng-container>\n\n <!-- Column Definitions -->\n <ng-container [matColumnDef]=\"column.columnName\" [sticky]=\"false\" *ngFor=\"let column of innerColumns$ | async\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-column-header [column]=\"column\"></dbx-table-column-header>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-cell [element]=\"element\" [column]=\"column\"></dbx-table-item-cell>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-column-footer [column]=\"column\"></dbx-table-column-footer>\n </td>\n </ng-container>\n\n <!-- Tail/Action column -->\n <ng-container [matColumnDef]=\"actionsColumnName\" [stickyEnd]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-action-cell></dbx-table-action-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-action [element]=\"element\"></dbx-table-item-action>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-end-cell></dbx-table-summary-end-cell>\n </td>\n </ng-container>\n\n <!-- Table View -->\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns$ | async\"></tr>\n\n <tr mat-footer-row *matFooterRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n </table>\n </section>\n</dbx-loading>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i3$1.DbxLoadingComponent, selector: "dbx-loading", inputs: ["show", "text", "mode", "color", "diameter", "linear", "padding", "context", "loading", "error"] }, { kind: "component", type: i4$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i4$1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i4$1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i4$1.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { kind: "directive", type: i4$1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i4$1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i4$1.MatFooterCellDef, selector: "[matFooterCellDef]" }, { kind: "directive", type: i4$1.MatFooterRowDef, selector: "[matFooterRowDef]", inputs: ["matFooterRowDef", "matFooterRowDefSticky"] }, { kind: "directive", type: i4$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i4$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "directive", type: i4$1.MatFooterCell, selector: "mat-footer-cell, td[mat-footer-cell]" }, { kind: "component", type: i4$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i4$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i4$1.MatFooterRow, selector: "mat-footer-row, tr[mat-footer-row]", exportAs: ["matFooterRow"] }, { kind: "directive", type: i5$1.InfiniteScrollDirective, selector: "[infiniteScroll], [infinite-scroll], [data-infinite-scroll]", inputs: ["infiniteScrollDistance", "infiniteScrollUpDistance", "infiniteScrollThrottle", "infiniteScrollDisabled", "infiniteScrollContainer", "scrollWindow", "immediateCheck", "horizontal", "alwaysCallback", "fromRoot"], outputs: ["scrolled", "scrolledUp"] }, { kind: "component", type: DbxTableColumnHeaderComponent, selector: "dbx-table-column-header" }, { kind: "component", type: DbxTableColumnFooterComponent, selector: "dbx-table-column-footer" }, { kind: "component", type: DbxTableInputCellComponent, selector: "dbx-table-input-cell" }, { kind: "component", type: DbxTableActionCellComponent, selector: "dbx-table-action-cell" }, { kind: "component", type: DbxTableItemCellComponent, selector: "dbx-table-item-cell", inputs: ["column"] }, { kind: "component", type: DbxTableItemHeaderComponent, selector: "dbx-table-item-header" }, { kind: "component", type: DbxTableItemActionComponent, selector: "dbx-table-item-action" }, { kind: "component", type: DbxTableSummaryStartCellComponent, selector: "dbx-table-summary-start-cell" }, { kind: "component", type: DbxTableSummaryEndCellComponent, selector: "dbx-table-summary-end-cell" }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
639
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableViewComponent, decorators: [{
640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableViewComponent, decorators: [{
640
641
  type: Component,
641
642
  args: [{ selector: 'dbx-table-view', changeDetection: ChangeDetectionStrategy.OnPush, template: "<dbx-loading [context]=\"context\">\n <dbx-loading class=\"dbx-table-view-loading\" [linear]=\"true\" [context]=\"dataLoadingContext\"></dbx-loading>\n <section class=\"dbx-table-view\" infinite-scroll [infiniteScrollDistance]=\"scrollDistance\" [infiniteScrollThrottle]=\"throttleScroll\" [scrollWindow]=\"false\" (scrolled)=\"onScrollDown()\">\n <table class=\"dbx-table-view-table\" mat-table [dataSource]=\"elements$\" [trackBy]=\"(trackByFunction$ | async) || DEFAULT_TRACK_BY_FUNCTION\">\n <!-- Header/Item column -->\n <ng-container [matColumnDef]=\"itemsColumnName\" [sticky]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-input-cell></dbx-table-input-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-header [element]=\"element\"></dbx-table-item-header>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-start-cell></dbx-table-summary-start-cell>\n </td>\n </ng-container>\n\n <!-- Column Definitions -->\n <ng-container [matColumnDef]=\"column.columnName\" [sticky]=\"false\" *ngFor=\"let column of innerColumns$ | async\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-column-header [column]=\"column\"></dbx-table-column-header>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-cell [element]=\"element\" [column]=\"column\"></dbx-table-item-cell>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-column-footer [column]=\"column\"></dbx-table-column-footer>\n </td>\n </ng-container>\n\n <!-- Tail/Action column -->\n <ng-container [matColumnDef]=\"actionsColumnName\" [stickyEnd]=\"true\">\n <th mat-header-cell *matHeaderCellDef>\n <dbx-table-action-cell></dbx-table-action-cell>\n </th>\n <td mat-cell *matCellDef=\"let element\">\n <dbx-table-item-action [element]=\"element\"></dbx-table-item-action>\n </td>\n <td mat-footer-cell *matFooterCellDef>\n <dbx-table-summary-end-cell></dbx-table-summary-end-cell>\n </td>\n </ng-container>\n\n <!-- Table View -->\n <tr mat-header-row *matHeaderRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n\n <tr mat-row *matRowDef=\"let row; columns: displayedColumns$ | async\"></tr>\n\n <tr mat-footer-row *matFooterRowDef=\"displayedColumns$ | async; sticky: true\"></tr>\n </table>\n </section>\n</dbx-loading>\n" }]
642
643
  }], ctorParameters: function () { return [{ type: DbxTableStore }]; } });
@@ -657,10 +658,10 @@ class DbxTableDirective {
657
658
  set dbxTableDataDelegate(dbxTableDataDelegate) {
658
659
  this.tableStore.setDataDelegate(dbxTableDataDelegate);
659
660
  }
661
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive }); }
662
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxTableDirective, selector: "[dbxTable]", inputs: { dbxTableInput: "dbxTableInput", dbxTableViewDelegate: "dbxTableViewDelegate", dbxTableDataDelegate: "dbxTableDataDelegate" }, providers: [DbxTableStore], ngImport: i0 }); }
660
663
  }
661
- DbxTableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDirective, deps: [{ token: DbxTableStore }], target: i0.ɵɵFactoryTarget.Directive });
662
- DbxTableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: DbxTableDirective, selector: "[dbxTable]", inputs: { dbxTableInput: "dbxTableInput", dbxTableViewDelegate: "dbxTableViewDelegate", dbxTableDataDelegate: "dbxTableDataDelegate" }, providers: [DbxTableStore], ngImport: i0 });
663
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableDirective, decorators: [{
664
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableDirective, decorators: [{
664
665
  type: Directive,
665
666
  args: [{
666
667
  selector: '[dbxTable]',
@@ -688,33 +689,33 @@ const internalDeclarations = [
688
689
  DbxTableSummaryEndCellComponent
689
690
  ];
690
691
  class DbxTableModule {
692
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
693
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxTableModule, declarations: [DbxTableDirective, DbxTableViewComponent,
694
+ //
695
+ DbxTableColumnHeaderComponent,
696
+ DbxTableColumnFooterComponent,
697
+ DbxTableInputCellComponent,
698
+ DbxTableActionCellComponent,
699
+ DbxTableItemCellComponent,
700
+ DbxTableItemHeaderComponent,
701
+ DbxTableItemActionComponent,
702
+ DbxTableSummaryStartCellComponent,
703
+ DbxTableSummaryEndCellComponent], imports: [
704
+ //
705
+ CommonModule,
706
+ DbxLoadingModule,
707
+ DbxInjectionComponentModule,
708
+ MatTableModule,
709
+ InfiniteScrollModule], exports: [DbxTableDirective, DbxTableViewComponent] }); }
710
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableModule, imports: [
711
+ //
712
+ CommonModule,
713
+ DbxLoadingModule,
714
+ DbxInjectionComponentModule,
715
+ MatTableModule,
716
+ InfiniteScrollModule] }); }
691
717
  }
692
- DbxTableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
693
- DbxTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxTableModule, declarations: [DbxTableDirective, DbxTableViewComponent,
694
- //
695
- DbxTableColumnHeaderComponent,
696
- DbxTableColumnFooterComponent,
697
- DbxTableInputCellComponent,
698
- DbxTableActionCellComponent,
699
- DbxTableItemCellComponent,
700
- DbxTableItemHeaderComponent,
701
- DbxTableItemActionComponent,
702
- DbxTableSummaryStartCellComponent,
703
- DbxTableSummaryEndCellComponent], imports: [
704
- //
705
- CommonModule,
706
- DbxLoadingModule,
707
- DbxInjectionComponentModule,
708
- MatTableModule,
709
- InfiniteScrollModule], exports: [DbxTableDirective, DbxTableViewComponent] });
710
- DbxTableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableModule, imports: [
711
- //
712
- CommonModule,
713
- DbxLoadingModule,
714
- DbxInjectionComponentModule,
715
- MatTableModule,
716
- InfiniteScrollModule] });
717
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxTableModule, decorators: [{
718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTableModule, decorators: [{
718
719
  type: NgModule,
719
720
  args: [{
720
721
  imports: [