@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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dereekb-dbx-web-table.mjs","sources":["../../../../../packages/dbx-web/table/src/lib/date/date.table.column.header.component.ts","../../../../../packages/dbx-web/table/src/lib/table.store.ts","../../../../../packages/dbx-web/table/src/lib/date/daterange.table.cell.input.component.ts","../../../../../packages/dbx-web/table/src/lib/date/table.date.module.ts","../../../../../packages/dbx-web/table/src/lib/table.cell.action.component.ts","../../../../../packages/dbx-web/table/src/lib/table.cell.input.component.ts","../../../../../packages/dbx-web/table/src/lib/table.cell.summaryend.component.ts","../../../../../packages/dbx-web/table/src/lib/table.cell.summarystart.component.ts","../../../../../packages/dbx-web/table/src/lib/table.column.directive.ts","../../../../../packages/dbx-web/table/src/lib/table.column.header.component.ts","../../../../../packages/dbx-web/table/src/lib/table.column.footer.component.ts","../../../../../packages/dbx-web/table/src/lib/table.item.directive.ts","../../../../../packages/dbx-web/table/src/lib/table.item.cell.component.ts","../../../../../packages/dbx-web/table/src/lib/table.item.header.component.ts","../../../../../packages/dbx-web/table/src/lib/table.item.action.component.ts","../../../../../packages/dbx-web/table/src/lib/table.component.ts","../../../../../packages/dbx-web/table/src/lib/table.component.html","../../../../../packages/dbx-web/table/src/lib/table.directive.ts","../../../../../packages/dbx-web/table/src/lib/table.module.ts","../../../../../packages/dbx-web/table/src/dereekb-dbx-web-table.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { DbxInjectionComponentConfig, DbxInjectionComponentConfigFactory } from '@dereekb/dbx-core';\nimport { Maybe } from '@dereekb/util';\nimport { DbxTableColumn } from '../table';\n\n/**\n * A table header component used for rendering date values on the header.\n */\n@Component({\n template: `\n <div *ngIf=\"date\" class=\"dbx-table-date-column-header\">\n <span class=\"dbx-table-date-column-header-left\">{{ date | date: left }}</span>\n <span>{{ date | date: right }}</span>\n </div>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableDateHeaderComponent {\n left = 'E';\n right = 'MMM d';\n\n private _date: Maybe<Date>;\n\n constructor() {}\n\n get date() {\n return this._date;\n }\n\n set date(date: Maybe<Date>) {\n this._date = date;\n }\n}\n\nexport function dbxTableDateHeaderInjectionFactory(): DbxInjectionComponentConfigFactory<DbxTableColumn<Date>, DbxTableDateHeaderComponent> {\n return (column: DbxTableColumn<Date>) => {\n const config: DbxInjectionComponentConfig<DbxTableDateHeaderComponent> = {\n componentClass: DbxTableDateHeaderComponent,\n init: (x) => {\n x.date = column.meta;\n }\n };\n\n return config;\n };\n}\n","import { Injectable } from '@angular/core';\nimport { beginLoading, filterMaybe, LoadingState, PageListLoadingState, valueFromLoadingState } from '@dereekb/rxjs';\nimport { Maybe } from '@dereekb/util';\nimport { ComponentStore } from '@ngrx/component-store';\nimport { Observable, distinctUntilChanged, first, map, shareReplay, switchMap, tap, combineLatest, of } from 'rxjs';\nimport { DbxTableColumn, DbxTableContextData, DbxTableContextDataDelegate, DbxTableViewDelegate } from './table';\n\nexport interface DbxTableStoreState<I, C, T> {\n /**\n * Contextual input that is passed to the data delegate.\n */\n readonly input: Maybe<I>;\n /**\n * Delegate used for retrieving info given the selection.\n */\n readonly dataDelegate: Maybe<DbxTableContextDataDelegate<I, C, T>>;\n /**\n * Delegate used for retrieving view configurations.\n */\n readonly viewDelegate: Maybe<DbxTableViewDelegate<I, C, T>>;\n}\n\n@Injectable()\nexport class DbxTableStore<I = unknown, C = unknown, T = unknown> extends ComponentStore<DbxTableStoreState<I, C, T>> {\n constructor() {\n super({\n input: null,\n dataDelegate: null,\n viewDelegate: null\n });\n }\n\n // MARK: Effects\n readonly loadMore = this.effect((input: Observable<void>) => {\n return input.pipe(\n switchMap(() =>\n this.data$.pipe(\n first(),\n tap((x) => {\n if (x.loadMore) {\n x.loadMore();\n }\n })\n )\n )\n );\n });\n\n // MARK: Accessors\n readonly input$ = this.state$.pipe(\n map((x) => x.input),\n distinctUntilChanged(),\n shareReplay(1)\n );\n\n readonly dataDelegate$ = this.state$.pipe(\n map((x) => x.dataDelegate),\n distinctUntilChanged(),\n shareReplay(1)\n );\n\n readonly currentViewDelegate$ = this.state$.pipe(\n map((x) => x.viewDelegate),\n distinctUntilChanged(),\n shareReplay(1)\n );\n\n readonly viewDelegate$ = this.currentViewDelegate$.pipe(filterMaybe());\n\n readonly dataState$: Observable<LoadingState<DbxTableContextData<I, C, T>>> = combineLatest([this.input$, this.dataDelegate$]).pipe(\n switchMap(([input, dataDelegate]) => {\n let obs: Observable<LoadingState<DbxTableContextData<I, C, T>>>;\n\n if (input && dataDelegate) {\n obs = dataDelegate.loadData(input);\n } else {\n obs = of(beginLoading<DbxTableContextData<I, C, T>>());\n }\n\n return obs;\n }),\n shareReplay(1)\n );\n\n readonly data$: Observable<DbxTableContextData<I, C, T>> = this.dataState$.pipe(\n //\n valueFromLoadingState(),\n distinctUntilChanged(),\n shareReplay(1)\n );\n\n readonly columns$: Observable<DbxTableColumn<C>[]> = this.data$.pipe(\n map((x) => x.columns),\n shareReplay(1)\n );\n\n readonly itemsState$: Observable<PageListLoadingState<T>> = this.data$.pipe(\n switchMap((x) => x.items$),\n shareReplay(1)\n );\n\n readonly items$: Observable<T[]> = this.itemsState$.pipe(valueFromLoadingState(), shareReplay(1));\n\n // MARK: State Changes\n readonly setInput = this.updater((state, input: Maybe<I>) => ({ ...state, input }));\n readonly setDataDelegate = this.updater((state, dataDelegate: Maybe<DbxTableContextDataDelegate<I, C, T>>) => ({ ...state, dataDelegate }));\n readonly setViewDelegate = this.updater((state, viewDelegate: Maybe<DbxTableViewDelegate<I, C, T>>) => ({ ...state, viewDelegate }));\n}\n","import { ChangeDetectionStrategy, Component, Injectable, OnDestroy, OnInit } from '@angular/core';\nimport { DateRangeDayDistanceInput, isSameDateDay } from '@dereekb/date';\nimport { DbxTableStore } from '../table.store';\nimport { MatDateRangeSelectionStrategy, DateRange, MAT_DATE_RANGE_SELECTION_STRATEGY } from '@angular/material/datepicker';\nimport { DateAdapter } from '@angular/material/core';\nimport { Days, Maybe } from '@dereekb/util';\nimport { FormGroup, FormControl } from '@angular/forms';\nimport { SubscriptionObject } from '@dereekb/rxjs';\nimport { addDays, format as formatDate } from 'date-fns';\nimport { BehaviorSubject, distinctUntilChanged, filter, map, Observable, of, startWith, switchMap, throttleTime, combineLatest, shareReplay } from 'rxjs';\nimport { DbxInjectionComponentConfig } from '@dereekb/dbx-core';\n\n@Injectable()\nexport class DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy<D> implements MatDateRangeSelectionStrategy<D> {\n constructor(private _dateAdapter: DateAdapter<D>, private dbxTableDateRangeDayDistanceInputCellInputComponent: DbxTableDateRangeDayDistanceInputCellInputComponent) {}\n\n selectionFinished(date: D | null): DateRange<D> {\n return this._createFiveDayRange(date);\n }\n\n createPreview(activeDate: D | null): DateRange<D> {\n return this._createFiveDayRange(activeDate);\n }\n\n private _createFiveDayRange(date: D | null): DateRange<D> {\n if (date) {\n const start = date;\n const end = this._dateAdapter.addCalendarDays(date, this.dbxTableDateRangeDayDistanceInputCellInputComponent.daysDistance);\n return new DateRange<D>(start, end);\n }\n\n return new DateRange<D>(null, null);\n }\n}\n\nexport interface DbxTableDateRangeDayDistanceInputCellInputComponentConfig {\n /**\n * Button format for the dates\n */\n buttonFormat?: string;\n /**\n * Distance from the start to span.\n */\n daysDistance: Days;\n minDate?: Maybe<Date>;\n maxDate?: Maybe<Date>;\n}\n\nexport const DEFAULT_DBX_TABLE_DATE_RANGE_DAY_DISTIANCE_INPUT_CELL_COMPONENT_CONFIG = { daysDistance: 6 };\n\nexport const DEFAULT_DBX_TABLE_DATE_RANGE_DAY_BUTTON_FORMAT = 'MMM dd';\n\n/**\n * Cell input for a DateRangeDayDistanceInput value.\n */\n@Component({\n template: `\n <div class=\"dbx-table-date-range-distance-input-cell\">\n <mat-date-range-input class=\"dbx-table-date-range-distance-input\" [min]=\"minDate$ | async\" [max]=\"maxDate$ | async\" [formGroup]=\"range\" [rangePicker]=\"picker\">\n <input matStartDate formControlName=\"start\" placeholder=\"Start date\" />\n <input matEndDate formControlName=\"end\" placeholder=\"End date\" />\n </mat-date-range-input>\n <button mat-stroked-button color=\"primary\" (click)=\"picker.open()\">{{ dateRangeString$ | async }}</button>\n <mat-date-range-picker #picker (opened)=\"pickerOpened()\" (closed)=\"pickerClosed()\"></mat-date-range-picker>\n </div>\n `,\n providers: [\n {\n provide: MAT_DATE_RANGE_SELECTION_STRATEGY,\n useClass: DbxTableDateRangeDayDistanceInputCellInputRangeSelectionStrategy\n }\n ],\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableDateRangeDayDistanceInputCellInputComponent implements OnInit, OnDestroy {\n private _syncSub = new SubscriptionObject();\n private _valueSub = new SubscriptionObject();\n\n private _pickerOpened = new BehaviorSubject<boolean>(false);\n private _config = new BehaviorSubject<DbxTableDateRangeDayDistanceInputCellInputComponentConfig>(DEFAULT_DBX_TABLE_DATE_RANGE_DAY_DISTIANCE_INPUT_CELL_COMPONENT_CONFIG);\n\n readonly range = new FormGroup({\n start: new FormControl<Maybe<Date>>(null),\n end: new FormControl<Maybe<Date>>(null)\n });\n\n readonly pickerOpened$ = this._pickerOpened.asObservable();\n\n readonly minDate$ = this._config.pipe(map((x) => x.minDate));\n readonly maxDate$ = this._config.pipe(map((x) => x.maxDate));\n\n readonly buttonFormat$ = this._config.pipe(map((x) => x.buttonFormat ?? DEFAULT_DBX_TABLE_DATE_RANGE_DAY_BUTTON_FORMAT));\n\n readonly rangeValue$ = this.range.valueChanges.pipe(startWith(this.range.value));\n readonly dateRangeString$ = combineLatest([this.buttonFormat$, this.rangeValue$]).pipe(\n map(([buttonFormat, { start, end }]) => {\n if (start && end) {\n return `${formatDate(start, buttonFormat)} - ${formatDate(end, buttonFormat)}`;\n } else {\n return `Select Date`;\n }\n }),\n distinctUntilChanged(),\n shareReplay(1)\n );\n\n constructor(readonly tableStore: DbxTableStore<DateRangeDayDistanceInput>) {}\n\n ngOnInit(): void {\n this._syncSub.subscription = this.tableStore.input$.subscribe((x) => {\n const start = x?.date ?? null;\n const end = start ? addDays(start, this.daysDistance) : undefined;\n\n this.range.setValue({\n start,\n end\n });\n });\n\n this._valueSub.subscription = this._pickerOpened\n .pipe(\n distinctUntilChanged(),\n switchMap((opened) => {\n let obs: Observable<{ start?: Maybe<Date> }>;\n\n if (opened) {\n obs = of({});\n } else {\n obs = this.rangeValue$;\n }\n\n return obs;\n }),\n filter((x) => Boolean(x.start)),\n distinctUntilChanged((a, b) => isSameDateDay(a.start, b.start)),\n throttleTime(100, undefined, { trailing: true })\n )\n .subscribe((x) => {\n if (x.start) {\n this.tableStore.setInput({ date: x.start, distance: this.daysDistance });\n }\n });\n }\n\n ngOnDestroy(): void {\n this._pickerOpened.complete();\n this._config.complete();\n this._syncSub.destroy();\n this._valueSub.destroy();\n }\n\n get daysDistance() {\n return this._config.value.daysDistance;\n }\n\n get config() {\n return this._config.value;\n }\n\n set config(config: Maybe<DbxTableDateRangeDayDistanceInputCellInputComponentConfig>) {\n this._config.next(config || DEFAULT_DBX_TABLE_DATE_RANGE_DAY_DISTIANCE_INPUT_CELL_COMPONENT_CONFIG);\n }\n\n pickerOpened() {\n this._pickerOpened.next(true);\n }\n\n pickerClosed() {\n this._pickerOpened.next(false);\n }\n}\n\nexport function dbxTableDateRangeDayDistanceInputCellInput(componentConfig?: DbxTableDateRangeDayDistanceInputCellInputComponentConfig): DbxInjectionComponentConfig<DbxTableDateRangeDayDistanceInputCellInputComponent> {\n const config: DbxInjectionComponentConfig<DbxTableDateRangeDayDistanceInputCellInputComponent> = {\n componentClass: DbxTableDateRangeDayDistanceInputCellInputComponent,\n init: (x) => {\n x.config = componentConfig;\n }\n };\n\n return config;\n}\n","import { MatIconModule } from '@angular/material/icon';\nimport { MatButtonModule } from '@angular/material/button';\nimport { DbxLoadingModule } from '@dereekb/dbx-web';\nimport { MatTableModule } from '@angular/material/table';\nimport { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DbxInjectionComponentModule } from '@dereekb/dbx-core';\nimport { DbxTableDateHeaderComponent } from './date.table.column.header.component';\nimport { DbxTableDateRangeDayDistanceInputCellInputComponent } from './daterange.table.cell.input.component';\nimport { MatDatepickerModule } from '@angular/material/datepicker';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\n\nconst declarations = [\n //\n DbxTableDateHeaderComponent,\n DbxTableDateRangeDayDistanceInputCellInputComponent\n];\n\n@NgModule({\n imports: [\n //\n CommonModule,\n DbxLoadingModule,\n DbxInjectionComponentModule,\n FormsModule,\n ReactiveFormsModule,\n MatIconModule,\n MatDatepickerModule,\n MatButtonModule,\n MatTableModule\n ],\n declarations,\n exports: declarations\n})\nexport class DbxTableDateModule {}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged } from 'rxjs';\nimport { DbxTableStore } from './table.store';\n\n@Component({\n selector: 'dbx-table-action-cell',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableActionCellComponent {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n map((x) => x.summaryRowEnd),\n distinctUntilChanged()\n );\n\n constructor(readonly tableStore: DbxTableStore) {}\n}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged } from 'rxjs';\nimport { DbxTableStore } from './table.store';\n\n/**\n * A table header component used for injecting the input picker view.\n */\n@Component({\n selector: 'dbx-table-input-cell',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableInputCellComponent {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n map((x) => x.inputHeader),\n distinctUntilChanged()\n );\n\n constructor(readonly tableStore: DbxTableStore) {}\n}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged } from 'rxjs';\nimport { DbxTableStore } from './table.store';\n\n@Component({\n selector: 'dbx-table-summary-end-cell',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableSummaryEndCellComponent {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n map((x) => x.summaryRowEnd),\n distinctUntilChanged()\n );\n\n constructor(readonly tableStore: DbxTableStore) {}\n}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged } from 'rxjs';\nimport { DbxTableStore } from './table.store';\n\n/**\n * A table header component used for injecting the input picker view.\n */\n@Component({\n selector: 'dbx-table-summary-start-cell',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableSummaryStartCellComponent {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n map((x) => x.summaryRowHeader),\n distinctUntilChanged()\n );\n\n constructor(readonly tableStore: DbxTableStore) {}\n}\n","import { filterMaybe } from '@dereekb/rxjs';\nimport { OnDestroy, Input, Directive } from '@angular/core';\nimport { distinctUntilChanged, BehaviorSubject } from 'rxjs';\nimport { DbxTableStore } from './table.store';\nimport { Maybe } from '@dereekb/util';\nimport { DbxTableColumn } from './table';\n\n/**\n * Abstract directive that has a column input.\n */\n@Directive()\nexport class AbstractDbxTableColumnDirective<C> implements OnDestroy {\n private readonly _column = new BehaviorSubject<Maybe<DbxTableColumn<C>>>(undefined);\n readonly column$ = this._column.pipe(filterMaybe(), distinctUntilChanged());\n\n constructor(readonly tableStore: DbxTableStore<unknown, C>) {}\n\n @Input()\n set column(column: Maybe<DbxTableColumn<C>>) {\n this._column.next(column);\n }\n\n ngOnDestroy(): void {\n this._column.complete();\n }\n}\n","import { ChangeDetectionStrategy, Component, OnDestroy } from '@angular/core';\nimport { map, distinctUntilChanged, switchMap, of } from 'rxjs';\nimport { AbstractDbxTableColumnDirective } from './table.column.directive';\n\n@Component({\n selector: 'dbx-table-column-header',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableColumnHeaderComponent<C> extends AbstractDbxTableColumnDirective<C> implements OnDestroy {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n switchMap((viewDelegate) => {\n const columnHeader = viewDelegate.columnHeader;\n\n if (columnHeader) {\n return this.column$.pipe(map((x) => columnHeader(x)));\n } else {\n return of(undefined);\n }\n }),\n distinctUntilChanged()\n );\n}\n","import { ChangeDetectionStrategy, Component, OnDestroy } from '@angular/core';\nimport { map, distinctUntilChanged, switchMap, of } from 'rxjs';\nimport { AbstractDbxTableColumnDirective } from './table.column.directive';\n\n@Component({\n selector: 'dbx-table-column-footer',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableColumnFooterComponent<C> extends AbstractDbxTableColumnDirective<C> implements OnDestroy {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n switchMap((viewDelegate) => {\n const columnFooter = viewDelegate.columnFooter;\n\n if (columnFooter) {\n return this.column$.pipe(map((x) => columnFooter(x)));\n } else {\n return of(undefined);\n }\n }),\n distinctUntilChanged()\n );\n}\n","import { filterMaybe } from '@dereekb/rxjs';\nimport { OnDestroy, Input, Directive } from '@angular/core';\nimport { distinctUntilChanged, BehaviorSubject } from 'rxjs';\nimport { DbxTableStore } from './table.store';\nimport { Maybe } from '@dereekb/util';\n\n/**\n * Abstract directive that has an element input.\n */\n@Directive()\nexport abstract class AbstractDbxTableElementDirective<T, C = unknown> implements OnDestroy {\n private readonly _element = new BehaviorSubject<Maybe<T>>(undefined);\n readonly element$ = this._element.pipe(filterMaybe(), distinctUntilChanged());\n\n constructor(readonly tableStore: DbxTableStore<unknown, C, T>) {}\n\n @Input()\n set element(element: Maybe<T>) {\n this._element.next(element);\n }\n\n ngOnDestroy(): void {\n this._element.complete();\n }\n}\n","import { filterMaybe } from '@dereekb/rxjs';\nimport { ChangeDetectionStrategy, Component, Input } from '@angular/core';\nimport { map, distinctUntilChanged, BehaviorSubject, switchMap, combineLatest } from 'rxjs';\nimport { Maybe } from '@dereekb/util';\nimport { AbstractDbxTableElementDirective } from './table.item.directive';\nimport { DbxTableColumn } from './table';\n\n@Component({\n selector: 'dbx-table-item-cell',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableItemCellComponent<T, C> extends AbstractDbxTableElementDirective<T, C> {\n private readonly _column = new BehaviorSubject<Maybe<DbxTableColumn<C>>>(undefined);\n readonly column$ = this._column.pipe(filterMaybe(), distinctUntilChanged());\n\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n switchMap((viewDelegate) => combineLatest([this.column$, this.element$]).pipe(map(([column, element]) => viewDelegate.itemCell(column, element)))),\n distinctUntilChanged()\n );\n\n @Input()\n set column(column: Maybe<DbxTableColumn<C>>) {\n this._column.next(column);\n }\n\n override ngOnDestroy(): void {\n super.ngOnDestroy();\n this._column.complete();\n }\n}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged, switchMap } from 'rxjs';\nimport { AbstractDbxTableElementDirective } from './table.item.directive';\n\n@Component({\n selector: 'dbx-table-item-header',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableItemHeaderComponent<T> extends AbstractDbxTableElementDirective<T> {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n switchMap((viewDelegate) => this.element$.pipe(map((x) => viewDelegate.itemHeader(x)))),\n distinctUntilChanged()\n );\n}\n","import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { map, distinctUntilChanged, switchMap, of } from 'rxjs';\nimport { AbstractDbxTableElementDirective } from './table.item.directive';\n\n@Component({\n selector: 'dbx-table-item-action',\n template: `\n <dbx-injection [config]=\"config$ | async\"></dbx-injection>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableItemActionComponent<T> extends AbstractDbxTableElementDirective<T> {\n readonly config$ = this.tableStore.viewDelegate$.pipe(\n switchMap((viewDelegate) => {\n const itemAction = viewDelegate.itemAction;\n\n if (itemAction) {\n return this.element$.pipe(map((x) => itemAction(x)));\n } else {\n return of(undefined);\n }\n }),\n distinctUntilChanged()\n );\n}\n","import { ChangeDetectionStrategy, Component, OnDestroy, TrackByFunction } from '@angular/core';\nimport { DbxTableStore } from './table.store';\nimport { loadingStateContext } from '@dereekb/rxjs';\nimport { shareReplay, map, Observable } from 'rxjs';\n\nexport const DBX_TABLE_ITEMS_COLUMN_NAME = '_items';\nexport const DBX_TABLE_ACTIONS_COLUMN_NAME = '_actions';\n\n/**\n * A table with fixed content\n */\n@Component({\n selector: 'dbx-table-view',\n templateUrl: './table.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class DbxTableViewComponent<I, C, T> implements OnDestroy {\n readonly DEFAULT_TRACK_BY_FUNCTION: TrackByFunction<any> = (index) => {\n return index;\n };\n\n scrollDistance = 0.5;\n throttleScroll = 50;\n\n readonly itemsColumnName = DBX_TABLE_ITEMS_COLUMN_NAME;\n readonly actionsColumnName = DBX_TABLE_ACTIONS_COLUMN_NAME;\n\n readonly innerColumns$ = this.tableStore.columns$;\n readonly innerColumnNames$ = this.innerColumns$.pipe(\n map((x) => x.map((y) => y.columnName)),\n shareReplay(1)\n );\n\n readonly elements$ = this.tableStore.items$;\n\n readonly displayedColumns$ = this.innerColumnNames$.pipe(\n map((columnNames) => {\n return [this.itemsColumnName, ...columnNames, this.actionsColumnName];\n }),\n shareReplay(1)\n );\n\n readonly trackByFunction$: Observable<TrackByFunction<T>> = this.tableStore.viewDelegate$.pipe(\n map((x) => x.trackBy ?? this.DEFAULT_TRACK_BY_FUNCTION),\n shareReplay(1)\n );\n\n readonly context = loadingStateContext({ obs: this.tableStore.dataState$ });\n readonly dataLoadingContext = loadingStateContext({ obs: this.tableStore.itemsState$ });\n\n constructor(readonly tableStore: DbxTableStore<I, C, T>) {}\n\n ngOnDestroy(): void {\n this.context.destroy();\n }\n\n onScrollDown(): void {\n this.tableStore.loadMore();\n }\n}\n","<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","import { Input, Directive } from '@angular/core';\nimport { DbxTableStore } from './table.store';\nimport { Maybe } from '@dereekb/util';\nimport { DbxTableContextDataDelegate, DbxTableViewDelegate } from './table';\n\n/**\n * Directive for providing and configuring a DbxTableStore\n */\n@Directive({\n selector: '[dbxTable]',\n providers: [DbxTableStore]\n})\nexport class DbxTableDirective<I, C, T> {\n constructor(readonly tableStore: DbxTableStore<I, C, T>) {}\n\n @Input()\n set dbxTableInput(input: Maybe<I>) {\n this.tableStore.setInput(input);\n }\n\n @Input()\n set dbxTableViewDelegate(dbxTableViewDelegate: Maybe<DbxTableViewDelegate<I, C, T>>) {\n this.tableStore.setViewDelegate(dbxTableViewDelegate);\n }\n\n @Input()\n set dbxTableDataDelegate(dbxTableDataDelegate: Maybe<DbxTableContextDataDelegate<I, C, T>>) {\n this.tableStore.setDataDelegate(dbxTableDataDelegate);\n }\n}\n","import { InfiniteScrollModule } from 'ngx-infinite-scroll';\nimport { DbxLoadingModule } from '@dereekb/dbx-web';\nimport { MatTableModule } from '@angular/material/table';\nimport { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DbxTableItemHeaderComponent } from './table.item.header.component';\nimport { DbxTableViewComponent } from './table.component';\nimport { DbxTableInputCellComponent } from './table.cell.input.component';\nimport { DbxTableSummaryEndCellComponent } from './table.cell.summaryend.component';\nimport { DbxTableSummaryStartCellComponent } from './table.cell.summarystart.component';\nimport { DbxTableItemActionComponent } from './table.item.action.component';\nimport { DbxTableActionCellComponent } from './table.cell.action.component';\nimport { DbxTableItemCellComponent } from './table.item.cell.component';\nimport { DbxInjectionComponentModule } from '@dereekb/dbx-core';\nimport { DbxTableColumnHeaderComponent } from './table.column.header.component';\nimport { DbxTableDirective } from './table.directive';\nimport { DbxTableColumnFooterComponent } from './table.column.footer.component';\n\nconst exports = [DbxTableDirective, DbxTableViewComponent];\nconst internalDeclarations = [\n //\n DbxTableColumnHeaderComponent,\n DbxTableColumnFooterComponent,\n DbxTableInputCellComponent,\n DbxTableActionCellComponent,\n DbxTableItemCellComponent,\n DbxTableItemHeaderComponent,\n DbxTableItemActionComponent,\n DbxTableSummaryStartCellComponent,\n DbxTableSummaryEndCellComponent\n];\n\n@NgModule({\n imports: [\n //\n CommonModule,\n DbxLoadingModule,\n DbxInjectionComponentModule,\n MatTableModule,\n InfiniteScrollModule\n ],\n declarations: [...exports, ...internalDeclarations],\n exports\n})\nexport class DbxTableModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1","formatDate","i2.DbxTableStore","i6","i1.DbxTableStore","i2","i3","i4","i5","i6.DbxTableColumnHeaderComponent","i7.DbxTableColumnFooterComponent","i8.DbxTableInputCellComponent","i9.DbxTableActionCellComponent","i10.DbxTableItemCellComponent","i11.DbxTableItemHeaderComponent","i12.DbxTableItemActionComponent","i13.DbxTableSummaryStartCellComponent","i14.DbxTableSummaryEndCellComponent"],"mappings":"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"}
@@ -13,6 +13,6 @@ export declare class DbxTableDateHeaderComponent {
13
13
  get date(): Maybe<Date>;
14
14
  set date(date: Maybe<Date>);
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableDateHeaderComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableDateHeaderComponent, "ng-component", never, {}, {}, never, never, false>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableDateHeaderComponent, "ng-component", never, {}, {}, never, never, false, never>;
17
17
  }
18
18
  export declare function dbxTableDateHeaderInjectionFactory(): DbxInjectionComponentConfigFactory<DbxTableColumn<Date>, DbxTableDateHeaderComponent>;
@@ -51,6 +51,10 @@ export declare class DbxTableDateRangeDayDistanceInputCellInputComponent impleme
51
51
  readonly minDate$: Observable<Maybe<Date>>;
52
52
  readonly maxDate$: Observable<Maybe<Date>>;
53
53
  readonly buttonFormat$: Observable<string>;
54
+ readonly rangeValue$: Observable<Partial<{
55
+ start: Maybe<Date>;
56
+ end: Maybe<Date>;
57
+ }>>;
54
58
  readonly dateRangeString$: Observable<string>;
55
59
  constructor(tableStore: DbxTableStore<DateRangeDayDistanceInput>);
56
60
  ngOnInit(): void;
@@ -61,6 +65,6 @@ export declare class DbxTableDateRangeDayDistanceInputCellInputComponent impleme
61
65
  pickerOpened(): void;
62
66
  pickerClosed(): void;
63
67
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableDateRangeDayDistanceInputCellInputComponent, never>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableDateRangeDayDistanceInputCellInputComponent, "ng-component", never, {}, {}, never, never, false>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableDateRangeDayDistanceInputCellInputComponent, "ng-component", never, {}, {}, never, never, false, never>;
65
69
  }
66
70
  export declare function dbxTableDateRangeDayDistanceInputCellInput(componentConfig?: DbxTableDateRangeDayDistanceInputCellInputComponentConfig): DbxInjectionComponentConfig<DbxTableDateRangeDayDistanceInputCellInputComponent>;
@@ -2,8 +2,8 @@ import { DbxTableStore } from './table.store';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class DbxTableActionCellComponent {
4
4
  readonly tableStore: DbxTableStore;
5
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
5
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
6
6
  constructor(tableStore: DbxTableStore);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableActionCellComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableActionCellComponent, "dbx-table-action-cell", never, {}, {}, never, never, false>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableActionCellComponent, "dbx-table-action-cell", never, {}, {}, never, never, false, never>;
9
9
  }
@@ -5,8 +5,8 @@ import * as i0 from "@angular/core";
5
5
  */
6
6
  export declare class DbxTableInputCellComponent {
7
7
  readonly tableStore: DbxTableStore;
8
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
8
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
9
9
  constructor(tableStore: DbxTableStore);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableInputCellComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableInputCellComponent, "dbx-table-input-cell", never, {}, {}, never, never, false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableInputCellComponent, "dbx-table-input-cell", never, {}, {}, never, never, false, never>;
12
12
  }
@@ -2,8 +2,8 @@ import { DbxTableStore } from './table.store';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class DbxTableSummaryEndCellComponent {
4
4
  readonly tableStore: DbxTableStore;
5
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
5
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
6
6
  constructor(tableStore: DbxTableStore);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableSummaryEndCellComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableSummaryEndCellComponent, "dbx-table-summary-end-cell", never, {}, {}, never, never, false>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableSummaryEndCellComponent, "dbx-table-summary-end-cell", never, {}, {}, never, never, false, never>;
9
9
  }
@@ -5,8 +5,8 @@ import * as i0 from "@angular/core";
5
5
  */
6
6
  export declare class DbxTableSummaryStartCellComponent {
7
7
  readonly tableStore: DbxTableStore;
8
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
8
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
9
9
  constructor(tableStore: DbxTableStore);
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableSummaryStartCellComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableSummaryStartCellComponent, "dbx-table-summary-start-cell", never, {}, {}, never, never, false>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableSummaryStartCellComponent, "dbx-table-summary-start-cell", never, {}, {}, never, never, false, never>;
12
12
  }
@@ -14,5 +14,5 @@ export declare class AbstractDbxTableColumnDirective<C> implements OnDestroy {
14
14
  set column(column: Maybe<DbxTableColumn<C>>);
15
15
  ngOnDestroy(): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbxTableColumnDirective<any>, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxTableColumnDirective<any>, never, never, { "column": "column"; }, {}, never, never, false>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxTableColumnDirective<any>, never, never, { "column": { "alias": "column"; "required": false; }; }, {}, never, never, false, never>;
18
18
  }
@@ -2,7 +2,7 @@ import { OnDestroy } from '@angular/core';
2
2
  import { AbstractDbxTableColumnDirective } from './table.column.directive';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DbxTableColumnFooterComponent<C> extends AbstractDbxTableColumnDirective<C> implements OnDestroy {
5
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
5
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableColumnFooterComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableColumnFooterComponent<any>, "dbx-table-column-footer", never, {}, {}, never, never, false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableColumnFooterComponent<any>, "dbx-table-column-footer", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -2,7 +2,7 @@ import { OnDestroy } from '@angular/core';
2
2
  import { AbstractDbxTableColumnDirective } from './table.column.directive';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DbxTableColumnHeaderComponent<C> extends AbstractDbxTableColumnDirective<C> implements OnDestroy {
5
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
5
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableColumnHeaderComponent<any>, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableColumnHeaderComponent<any>, "dbx-table-column-header", never, {}, {}, never, never, false>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableColumnHeaderComponent<any>, "dbx-table-column-header", never, {}, {}, never, never, false, never>;
8
8
  }
@@ -25,5 +25,5 @@ export declare class DbxTableViewComponent<I, C, T> implements OnDestroy {
25
25
  ngOnDestroy(): void;
26
26
  onScrollDown(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableViewComponent<any, any, any>, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableViewComponent<any, any, any>, "dbx-table-view", never, {}, {}, never, never, false>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableViewComponent<any, any, any>, "dbx-table-view", never, {}, {}, never, never, false, never>;
29
29
  }
@@ -12,5 +12,5 @@ export declare class DbxTableDirective<I, C, T> {
12
12
  set dbxTableViewDelegate(dbxTableViewDelegate: Maybe<DbxTableViewDelegate<I, C, T>>);
13
13
  set dbxTableDataDelegate(dbxTableDataDelegate: Maybe<DbxTableContextDataDelegate<I, C, T>>);
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableDirective<any, any, any>, never>;
15
- static ɵdir: i0.ɵɵDirectiveDeclaration<DbxTableDirective<any, any, any>, "[dbxTable]", never, { "dbxTableInput": "dbxTableInput"; "dbxTableViewDelegate": "dbxTableViewDelegate"; "dbxTableDataDelegate": "dbxTableDataDelegate"; }, {}, never, never, false>;
15
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DbxTableDirective<any, any, any>, "[dbxTable]", never, { "dbxTableInput": { "alias": "dbxTableInput"; "required": false; }; "dbxTableViewDelegate": { "alias": "dbxTableViewDelegate"; "required": false; }; "dbxTableDataDelegate": { "alias": "dbxTableDataDelegate"; "required": false; }; }, {}, never, never, false, never>;
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { AbstractDbxTableElementDirective } from './table.item.directive';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class DbxTableItemActionComponent<T> extends AbstractDbxTableElementDirective<T> {
4
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
4
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableItemActionComponent<any>, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemActionComponent<any>, "dbx-table-item-action", never, {}, {}, never, never, false>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemActionComponent<any>, "dbx-table-item-action", never, {}, {}, never, never, false, never>;
7
7
  }
@@ -5,9 +5,9 @@ import * as i0 from "@angular/core";
5
5
  export declare class DbxTableItemCellComponent<T, C> extends AbstractDbxTableElementDirective<T, C> {
6
6
  private readonly _column;
7
7
  readonly column$: import("rxjs").Observable<DbxTableColumn<C>>;
8
- readonly config$: import("rxjs").Observable<Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
8
+ readonly config$: import("rxjs").Observable<Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
9
9
  set column(column: Maybe<DbxTableColumn<C>>);
10
10
  ngOnDestroy(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableItemCellComponent<any, any>, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemCellComponent<any, any>, "dbx-table-item-cell", never, { "column": "column"; }, {}, never, never, false>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemCellComponent<any, any>, "dbx-table-item-cell", never, { "column": { "alias": "column"; "required": false; }; }, {}, never, never, false, never>;
13
13
  }
@@ -13,5 +13,5 @@ export declare abstract class AbstractDbxTableElementDirective<T, C = unknown> i
13
13
  set element(element: Maybe<T>);
14
14
  ngOnDestroy(): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbxTableElementDirective<any, any>, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxTableElementDirective<any, any>, never, never, { "element": "element"; }, {}, never, never, false>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxTableElementDirective<any, any>, never, never, { "element": { "alias": "element"; "required": false; }; }, {}, never, never, false, never>;
17
17
  }
@@ -1,7 +1,7 @@
1
1
  import { AbstractDbxTableElementDirective } from './table.item.directive';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class DbxTableItemHeaderComponent<T> extends AbstractDbxTableElementDirective<T> {
4
- readonly config$: import("rxjs").Observable<import("../../../../../dist/packages/util/src").Maybe<import("../../../../../dist/packages/dbx-core").DbxInjectionComponentConfig<any>>>;
4
+ readonly config$: import("rxjs").Observable<import("dist/packages/util/src").Maybe<import("@dereekb/dbx-core").DbxInjectionComponentConfig<any>>>;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<DbxTableItemHeaderComponent<any>, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemHeaderComponent<any>, "dbx-table-item-header", never, {}, {}, never, never, false>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxTableItemHeaderComponent<any>, "dbx-table-item-header", never, {}, {}, never, never, false, never>;
7
7
  }
@@ -1,22 +1,7 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-web/table",
3
- "version": "9.25.16",
4
- "peerDependencies": {
5
- "@angular/common": "^14.2.0",
6
- "@angular/core": "^14.2.0",
7
- "@dereekb/dbx-core": "9.25.16",
8
- "@angular/material": "^14.2.0",
9
- "@angular/forms": "^14.2.0",
10
- "@dereekb/dbx-web": "9.25.16"
11
- },
12
- "dependencies": {
13
- "tslib": "^2.3.0"
14
- },
15
- "module": "fesm2015/dereekb-dbx-web-table.mjs",
16
- "es2020": "fesm2020/dereekb-dbx-web-table.mjs",
17
- "esm2020": "esm2020/dereekb-dbx-web-table.mjs",
18
- "fesm2020": "fesm2020/dereekb-dbx-web-table.mjs",
19
- "fesm2015": "fesm2015/dereekb-dbx-web-table.mjs",
3
+ "version": "10.0.0",
4
+ "module": "fesm2022/dereekb-dbx-web-table.mjs",
20
5
  "typings": "index.d.ts",
21
6
  "exports": {
22
7
  "./package.json": {
@@ -24,12 +9,13 @@
24
9
  },
25
10
  ".": {
26
11
  "types": "./index.d.ts",
27
- "esm2020": "./esm2020/dereekb-dbx-web-table.mjs",
28
- "es2020": "./fesm2020/dereekb-dbx-web-table.mjs",
29
- "es2015": "./fesm2015/dereekb-dbx-web-table.mjs",
30
- "node": "./fesm2015/dereekb-dbx-web-table.mjs",
31
- "default": "./fesm2020/dereekb-dbx-web-table.mjs"
12
+ "esm2022": "./esm2022/dereekb-dbx-web-table.mjs",
13
+ "esm": "./esm2022/dereekb-dbx-web-table.mjs",
14
+ "default": "./fesm2022/dereekb-dbx-web-table.mjs"
32
15
  }
33
16
  },
34
- "sideEffects": false
35
- }
17
+ "sideEffects": false,
18
+ "dependencies": {
19
+ "tslib": "^2.3.0"
20
+ }
21
+ }
@@ -1,57 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import { isSameMonth } from 'date-fns';
3
- import { DbxCalendarStore } from './calendar.store';
4
- import { map, withLatestFrom } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./calendar.store";
7
- import * as i2 from "@angular/common";
8
- import * as i3 from "@angular/material/icon";
9
- import * as i4 from "@angular/material/button";
10
- import * as i5 from "@dereekb/dbx-web";
11
- import * as i6 from "@angular/flex-layout/flex";
12
- import * as i7 from "@angular/flex-layout/extended";
13
- import * as i8 from "angular-calendar";
14
- export class DbxCalendarBaseComponent {
15
- constructor(calendarStore) {
16
- this.calendarStore = calendarStore;
17
- this.viewDate$ = this.calendarStore.date$;
18
- this.showTodayButton$ = this.calendarStore.showTodayButton$;
19
- this.canJumpToToday$ = this.calendarStore.canJumpToToday$;
20
- this.isLookingAtMinimumDate$ = this.calendarStore.isLookingAtMinimumDate$;
21
- this.isLookingAtMaximumDate$ = this.calendarStore.isLookingAtMaximumDate$;
22
- this.hasMultiplePages$ = this.calendarStore.hasMultiplePages$;
23
- this.showPageButtons$ = this.calendarStore.showPageButtons$;
24
- this.activeDayIsOpen$ = this.calendarStore.eventsForDateState$.pipe(withLatestFrom(this.calendarStore.date$), map(([x, date]) => {
25
- if (x.events.length && isSameMonth(x.date, date)) {
26
- return !x.dateTappedTwice;
27
- }
28
- return false;
29
- }));
30
- this.displayType$ = this.calendarStore.displayType$;
31
- }
32
- todayClicked() {
33
- this.calendarStore.tapDay(new Date());
34
- }
35
- firstPageButtonClicked() {
36
- this.calendarStore.tapFirstPage();
37
- }
38
- nextButtonClicked() {
39
- this.calendarStore.tapNext();
40
- }
41
- previousButtonClicked() {
42
- this.calendarStore.tapPrevious();
43
- }
44
- lastPageButtonClicked() {
45
- this.calendarStore.tapLastPage();
46
- }
47
- typeToggleChanged(event) {
48
- this.calendarStore.setDisplayType(event.value);
49
- }
50
- }
51
- DbxCalendarBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxCalendarBaseComponent, deps: [{ token: i1.DbxCalendarStore }], target: i0.ɵɵFactoryTarget.Component });
52
- DbxCalendarBaseComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxCalendarBaseComponent, selector: "dbx-calendar-base", ngImport: i0, template: "<div class=\"dbx-calendar\">\n <h3 class=\"dbx-calendar-title\">{{ (viewDate$ | async)! | calendarDate: (displayType$ | async) + 'ViewTitle':'en' }}</h3>\n <div class=\"dbx-calendar-header\">\n <div class=\"dbx-calendar-controls\" fxLayout=\"row\" fxLayout.xs=\"column\" ngClass.xs=\"dbx-calendar-controls-compact\">\n <span class=\"dbx-calendar-controls-left\" fxFlex=\"nogrow\">\n <button *ngIf=\"showTodayButton$ | async\" mat-stroked-button [disabled]=\"!(canJumpToToday$ | async)\" (click)=\"todayClicked()\">Today</button>\n <dbx-button-spacer></dbx-button-spacer>\n <div class=\"d-iblock\" *ngIf=\"hasMultiplePages$ | async\">\n <button *ngIf=\"showPageButtons$ | async\" mat-icon-button [disabled]=\"isLookingAtMinimumDate$ | async\" aria-label=\"first page button\" (click)=\"firstPageButtonClicked()\">\n <mat-icon>first_page</mat-icon>\n </button>\n <button mat-icon-button [disabled]=\"isLookingAtMinimumDate$ | async\" [attr.aria-label]=\"'Previous ' + (displayType$ | async) + ' button'\" (click)=\"previousButtonClicked()\">\n <mat-icon>navigate_before</mat-icon>\n </button>\n <button mat-icon-button [disabled]=\"isLookingAtMaximumDate$ | async\" [attr.aria-label]=\"'Next' + (displayType$ | async)! + ' button'\" (click)=\"nextButtonClicked()\">\n <mat-icon>navigate_next</mat-icon>\n </button>\n <button *ngIf=\"showPageButtons$ | async\" mat-icon-button [disabled]=\"isLookingAtMaximumDate$ | async\" aria-label=\"last page button\" (click)=\"lastPageButtonClicked()\">\n <mat-icon>last_page</mat-icon>\n </button>\n </div>\n </span>\n <span class=\"spacer\"></span>\n <span class=\"dbx-calendar-controls-right\" fxFlex=\"nogrow\">\n <ng-content select=\"[controls]\"></ng-content>\n </span>\n </div>\n </div>\n <ng-content></ng-content>\n</div>\n", dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i4.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: "directive", type: i5.DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "directive", type: i6.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i6.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i7.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i8.ɵCalendarDatePipe, name: "calendarDate" }] });
53
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxCalendarBaseComponent, decorators: [{
54
- type: Component,
55
- args: [{ selector: 'dbx-calendar-base', template: "<div class=\"dbx-calendar\">\n <h3 class=\"dbx-calendar-title\">{{ (viewDate$ | async)! | calendarDate: (displayType$ | async) + 'ViewTitle':'en' }}</h3>\n <div class=\"dbx-calendar-header\">\n <div class=\"dbx-calendar-controls\" fxLayout=\"row\" fxLayout.xs=\"column\" ngClass.xs=\"dbx-calendar-controls-compact\">\n <span class=\"dbx-calendar-controls-left\" fxFlex=\"nogrow\">\n <button *ngIf=\"showTodayButton$ | async\" mat-stroked-button [disabled]=\"!(canJumpToToday$ | async)\" (click)=\"todayClicked()\">Today</button>\n <dbx-button-spacer></dbx-button-spacer>\n <div class=\"d-iblock\" *ngIf=\"hasMultiplePages$ | async\">\n <button *ngIf=\"showPageButtons$ | async\" mat-icon-button [disabled]=\"isLookingAtMinimumDate$ | async\" aria-label=\"first page button\" (click)=\"firstPageButtonClicked()\">\n <mat-icon>first_page</mat-icon>\n </button>\n <button mat-icon-button [disabled]=\"isLookingAtMinimumDate$ | async\" [attr.aria-label]=\"'Previous ' + (displayType$ | async) + ' button'\" (click)=\"previousButtonClicked()\">\n <mat-icon>navigate_before</mat-icon>\n </button>\n <button mat-icon-button [disabled]=\"isLookingAtMaximumDate$ | async\" [attr.aria-label]=\"'Next' + (displayType$ | async)! + ' button'\" (click)=\"nextButtonClicked()\">\n <mat-icon>navigate_next</mat-icon>\n </button>\n <button *ngIf=\"showPageButtons$ | async\" mat-icon-button [disabled]=\"isLookingAtMaximumDate$ | async\" aria-label=\"last page button\" (click)=\"lastPageButtonClicked()\">\n <mat-icon>last_page</mat-icon>\n </button>\n </div>\n </span>\n <span class=\"spacer\"></span>\n <span class=\"dbx-calendar-controls-right\" fxFlex=\"nogrow\">\n <ng-content select=\"[controls]\"></ng-content>\n </span>\n </div>\n </div>\n <ng-content></ng-content>\n</div>\n" }]
56
- }], ctorParameters: function () { return [{ type: i1.DbxCalendarStore }]; } });
57
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsZW5kYXIuYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtd2ViL2NhbGVuZGFyL3NyYy9saWIvY2FsZW5kYXIuYmFzZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtd2ViL2NhbGVuZGFyL3NyYy9saWIvY2FsZW5kYXIuYmFzZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFDdkMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDcEQsT0FBTyxFQUFFLEdBQUcsRUFBRSxjQUFjLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7Ozs7Ozs7QUFPM0MsTUFBTSxPQUFPLHdCQUF3QjtJQXlCbkMsWUFBNEIsYUFBa0M7UUFBbEMsa0JBQWEsR0FBYixhQUFhLENBQXFCO1FBeEJyRCxjQUFTLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxLQUFLLENBQUM7UUFFckMscUJBQWdCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxnQkFBZ0IsQ0FBQztRQUN2RCxvQkFBZSxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsZUFBZSxDQUFDO1FBRXJELDRCQUF1QixHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsdUJBQXVCLENBQUM7UUFDckUsNEJBQXVCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyx1QkFBdUIsQ0FBQztRQUNyRSxzQkFBaUIsR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGlCQUFpQixDQUFDO1FBRXpELHFCQUFnQixHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsZ0JBQWdCLENBQUM7UUFFdkQscUJBQWdCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxtQkFBbUIsQ0FBQyxJQUFJLENBQ3JFLGNBQWMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxFQUN4QyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsRUFBRSxFQUFFO1lBQ2hCLElBQUksQ0FBQyxDQUFDLE1BQU0sQ0FBQyxNQUFNLElBQUksV0FBVyxDQUFDLENBQUMsQ0FBQyxJQUFJLEVBQUUsSUFBSSxDQUFDLEVBQUU7Z0JBQ2hELE9BQU8sQ0FBQyxDQUFDLENBQUMsZUFBZSxDQUFDO2FBQzNCO1lBRUQsT0FBTyxLQUFLLENBQUM7UUFDZixDQUFDLENBQUMsQ0FDSCxDQUFDO1FBRU8saUJBQVksR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLFlBQVksQ0FBQztJQUVTLENBQUM7SUFFbEUsWUFBWTtRQUNWLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN4QyxDQUFDO0lBRUQsc0JBQXNCO1FBQ3BCLElBQUksQ0FBQyxhQUFhLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDcEMsQ0FBQztJQUVELGlCQUFpQjtRQUNmLElBQUksQ0FBQyxhQUFhLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDL0IsQ0FBQztJQUVELHFCQUFxQjtRQUNuQixJQUFJLENBQUMsYUFBYSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQ25DLENBQUM7SUFFRCxxQkFBcUI7UUFDbkIsSUFBSSxDQUFDLGFBQWEsQ0FBQyxXQUFXLEVBQUUsQ0FBQztJQUNuQyxDQUFDO0lBRUQsaUJBQWlCLENBQUMsS0FBNEI7UUFDNUMsSUFBSSxDQUFDLGFBQWEsQ0FBQyxjQUFjLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ2pELENBQUM7O3NIQWpEVSx3QkFBd0I7MEdBQXhCLHdCQUF3Qix5RENWckMsbTZEQThCQTs0RkRwQmEsd0JBQXdCO2tCQUpwQyxTQUFTOytCQUNFLG1CQUFtQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgaXNTYW1lTW9udGggfSBmcm9tICdkYXRlLWZucyc7XG5pbXBvcnQgeyBEYnhDYWxlbmRhclN0b3JlIH0gZnJvbSAnLi9jYWxlbmRhci5zdG9yZSc7XG5pbXBvcnQgeyBtYXAsIHdpdGhMYXRlc3RGcm9tIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBNYXRCdXR0b25Ub2dnbGVDaGFuZ2UgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24tdG9nZ2xlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGJ4LWNhbGVuZGFyLWJhc2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2FsZW5kYXIuYmFzZS5jb21wb25lbnQuaHRtbCdcbn0pXG5leHBvcnQgY2xhc3MgRGJ4Q2FsZW5kYXJCYXNlQ29tcG9uZW50PFQ+IHtcbiAgcmVhZG9ubHkgdmlld0RhdGUkID0gdGhpcy5jYWxlbmRhclN0b3JlLmRhdGUkO1xuXG4gIHJlYWRvbmx5IHNob3dUb2RheUJ1dHRvbiQgPSB0aGlzLmNhbGVuZGFyU3RvcmUuc2hvd1RvZGF5QnV0dG9uJDtcbiAgcmVhZG9ubHkgY2FuSnVtcFRvVG9kYXkkID0gdGhpcy5jYWxlbmRhclN0b3JlLmNhbkp1bXBUb1RvZGF5JDtcblxuICByZWFkb25seSBpc0xvb2tpbmdBdE1pbmltdW1EYXRlJCA9IHRoaXMuY2FsZW5kYXJTdG9yZS5pc0xvb2tpbmdBdE1pbmltdW1EYXRlJDtcbiAgcmVhZG9ubHkgaXNMb29raW5nQXRNYXhpbXVtRGF0ZSQgPSB0aGlzLmNhbGVuZGFyU3RvcmUuaXNMb29raW5nQXRNYXhpbXVtRGF0ZSQ7XG4gIHJlYWRvbmx5IGhhc011bHRpcGxlUGFnZXMkID0gdGhpcy5jYWxlbmRhclN0b3JlLmhhc011bHRpcGxlUGFnZXMkO1xuXG4gIHJlYWRvbmx5IHNob3dQYWdlQnV0dG9ucyQgPSB0aGlzLmNhbGVuZGFyU3RvcmUuc2hvd1BhZ2VCdXR0b25zJDtcblxuICByZWFkb25seSBhY3RpdmVEYXlJc09wZW4kID0gdGhpcy5jYWxlbmRhclN0b3JlLmV2ZW50c0ZvckRhdGVTdGF0ZSQucGlwZShcbiAgICB3aXRoTGF0ZXN0RnJvbSh0aGlzLmNhbGVuZGFyU3RvcmUuZGF0ZSQpLFxuICAgIG1hcCgoW3gsIGRhdGVdKSA9PiB7XG4gICAgICBpZiAoeC5ldmVudHMubGVuZ3RoICYmIGlzU2FtZU1vbnRoKHguZGF0ZSwgZGF0ZSkpIHtcbiAgICAgICAgcmV0dXJuICF4LmRhdGVUYXBwZWRUd2ljZTtcbiAgICAgIH1cblxuICAgICAgcmV0dXJuIGZhbHNlO1xuICAgIH0pXG4gICk7XG5cbiAgcmVhZG9ubHkgZGlzcGxheVR5cGUkID0gdGhpcy5jYWxlbmRhclN0b3JlLmRpc3BsYXlUeXBlJDtcblxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcmVhZG9ubHkgY2FsZW5kYXJTdG9yZTogRGJ4Q2FsZW5kYXJTdG9yZTxUPikge31cblxuICB0b2RheUNsaWNrZWQoKTogdm9pZCB7XG4gICAgdGhpcy5jYWxlbmRhclN0b3JlLnRhcERheShuZXcgRGF0ZSgpKTtcbiAgfVxuXG4gIGZpcnN0UGFnZUJ1dHRvbkNsaWNrZWQoKTogdm9pZCB7XG4gICAgdGhpcy5jYWxlbmRhclN0b3JlLnRhcEZpcnN0UGFnZSgpO1xuICB9XG5cbiAgbmV4dEJ1dHRvbkNsaWNrZWQoKTogdm9pZCB7XG4gICAgdGhpcy5jYWxlbmRhclN0b3JlLnRhcE5leHQoKTtcbiAgfVxuXG4gIHByZXZpb3VzQnV0dG9uQ2xpY2tlZCgpOiB2b2lkIHtcbiAgICB0aGlzLmNhbGVuZGFyU3RvcmUudGFwUHJldmlvdXMoKTtcbiAgfVxuXG4gIGxhc3RQYWdlQnV0dG9uQ2xpY2tlZCgpOiB2b2lkIHtcbiAgICB0aGlzLmNhbGVuZGFyU3RvcmUudGFwTGFzdFBhZ2UoKTtcbiAgfVxuXG4gIHR5cGVUb2dnbGVDaGFuZ2VkKGV2ZW50OiBNYXRCdXR0b25Ub2dnbGVDaGFuZ2UpOiB2b2lkIHtcbiAgICB0aGlzLmNhbGVuZGFyU3RvcmUuc2V0RGlzcGxheVR5cGUoZXZlbnQudmFsdWUpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZGJ4LWNhbGVuZGFyXCI+XG4gIDxoMyBjbGFzcz1cImRieC1jYWxlbmRhci10aXRsZVwiPnt7ICh2aWV3RGF0ZSQgfCBhc3luYykhIHwgY2FsZW5kYXJEYXRlOiAoZGlzcGxheVR5cGUkIHwgYXN5bmMpICsgJ1ZpZXdUaXRsZSc6J2VuJyB9fTwvaDM+XG4gIDxkaXYgY2xhc3M9XCJkYngtY2FsZW5kYXItaGVhZGVyXCI+XG4gICAgPGRpdiBjbGFzcz1cImRieC1jYWxlbmRhci1jb250cm9sc1wiIGZ4TGF5b3V0PVwicm93XCIgZnhMYXlvdXQueHM9XCJjb2x1bW5cIiBuZ0NsYXNzLnhzPVwiZGJ4LWNhbGVuZGFyLWNvbnRyb2xzLWNvbXBhY3RcIj5cbiAgICAgIDxzcGFuIGNsYXNzPVwiZGJ4LWNhbGVuZGFyLWNvbnRyb2xzLWxlZnRcIiBmeEZsZXg9XCJub2dyb3dcIj5cbiAgICAgICAgPGJ1dHRvbiAqbmdJZj1cInNob3dUb2RheUJ1dHRvbiQgfCBhc3luY1wiIG1hdC1zdHJva2VkLWJ1dHRvbiBbZGlzYWJsZWRdPVwiIShjYW5KdW1wVG9Ub2RheSQgfCBhc3luYylcIiAoY2xpY2spPVwidG9kYXlDbGlja2VkKClcIj5Ub2RheTwvYnV0dG9uPlxuICAgICAgICA8ZGJ4LWJ1dHRvbi1zcGFjZXI+PC9kYngtYnV0dG9uLXNwYWNlcj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImQtaWJsb2NrXCIgKm5nSWY9XCJoYXNNdWx0aXBsZVBhZ2VzJCB8IGFzeW5jXCI+XG4gICAgICAgICAgPGJ1dHRvbiAqbmdJZj1cInNob3dQYWdlQnV0dG9ucyQgfCBhc3luY1wiIG1hdC1pY29uLWJ1dHRvbiBbZGlzYWJsZWRdPVwiaXNMb29raW5nQXRNaW5pbXVtRGF0ZSQgfCBhc3luY1wiIGFyaWEtbGFiZWw9XCJmaXJzdCBwYWdlIGJ1dHRvblwiIChjbGljayk9XCJmaXJzdFBhZ2VCdXR0b25DbGlja2VkKClcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbj5maXJzdF9wYWdlPC9tYXQtaWNvbj5cbiAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiBbZGlzYWJsZWRdPVwiaXNMb29raW5nQXRNaW5pbXVtRGF0ZSQgfCBhc3luY1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ1ByZXZpb3VzICcgKyAoZGlzcGxheVR5cGUkIHwgYXN5bmMpICsgJyBidXR0b24nXCIgKGNsaWNrKT1cInByZXZpb3VzQnV0dG9uQ2xpY2tlZCgpXCI+XG4gICAgICAgICAgICA8bWF0LWljb24+bmF2aWdhdGVfYmVmb3JlPC9tYXQtaWNvbj5cbiAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICA8YnV0dG9uIG1hdC1pY29uLWJ1dHRvbiBbZGlzYWJsZWRdPVwiaXNMb29raW5nQXRNYXhpbXVtRGF0ZSQgfCBhc3luY1wiIFthdHRyLmFyaWEtbGFiZWxdPVwiJ05leHQnICsgKGRpc3BsYXlUeXBlJCB8IGFzeW5jKSEgKyAnIGJ1dHRvbidcIiAoY2xpY2spPVwibmV4dEJ1dHRvbkNsaWNrZWQoKVwiPlxuICAgICAgICAgICAgPG1hdC1pY29uPm5hdmlnYXRlX25leHQ8L21hdC1pY29uPlxuICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgIDxidXR0b24gKm5nSWY9XCJzaG93UGFnZUJ1dHRvbnMkIHwgYXN5bmNcIiBtYXQtaWNvbi1idXR0b24gW2Rpc2FibGVkXT1cImlzTG9va2luZ0F0TWF4aW11bURhdGUkIHwgYXN5bmNcIiBhcmlhLWxhYmVsPVwibGFzdCBwYWdlIGJ1dHRvblwiIChjbGljayk9XCJsYXN0UGFnZUJ1dHRvbkNsaWNrZWQoKVwiPlxuICAgICAgICAgICAgPG1hdC1pY29uPmxhc3RfcGFnZTwvbWF0LWljb24+XG4gICAgICAgICAgPC9idXR0b24+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9zcGFuPlxuICAgICAgPHNwYW4gY2xhc3M9XCJzcGFjZXJcIj48L3NwYW4+XG4gICAgICA8c3BhbiBjbGFzcz1cImRieC1jYWxlbmRhci1jb250cm9scy1yaWdodFwiIGZ4RmxleD1cIm5vZ3Jvd1wiPlxuICAgICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbY29udHJvbHNdXCI+PC9uZy1jb250ZW50PlxuICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=