@dereekb/dbx-web 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. package/README.md +7 -0
  2. package/dereekb-dbx-web.d.ts +5 -0
  3. package/esm2020/dereekb-dbx-web.mjs +5 -0
  4. package/esm2020/index.mjs +3 -0
  5. package/esm2020/lib/action/action.confirm.directive.mjs +52 -0
  6. package/esm2020/lib/action/action.module.mjs +63 -0
  7. package/esm2020/lib/action/action.snackbar.component.mjs +105 -0
  8. package/esm2020/lib/action/index.mjs +6 -0
  9. package/esm2020/lib/action/key.trigger.directive.mjs +40 -0
  10. package/esm2020/lib/action/transition/action.transition.module.mjs +50 -0
  11. package/esm2020/lib/action/transition/index.mjs +4 -0
  12. package/esm2020/lib/action/transition/transition.safety.dialog.component.mjs +61 -0
  13. package/esm2020/lib/action/transition/transition.safety.directive.mjs +156 -0
  14. package/esm2020/lib/button/button.component.mjs +92 -0
  15. package/esm2020/lib/button/button.module.mjs +43 -0
  16. package/esm2020/lib/button/button.spacer.component.mjs +18 -0
  17. package/esm2020/lib/button/index.mjs +4 -0
  18. package/esm2020/lib/dbx-web.module.mjs +50 -0
  19. package/esm2020/lib/error/error.action.directive.mjs +32 -0
  20. package/esm2020/lib/error/error.api.mjs +47 -0
  21. package/esm2020/lib/error/error.component.mjs +27 -0
  22. package/esm2020/lib/error/error.loading.directive.mjs +42 -0
  23. package/esm2020/lib/error/error.module.mjs +36 -0
  24. package/esm2020/lib/error/index.mjs +7 -0
  25. package/esm2020/lib/error/state.mjs +17 -0
  26. package/esm2020/lib/index.mjs +10 -0
  27. package/esm2020/lib/interaction/dialog/abstract.dialog.directive.mjs +27 -0
  28. package/esm2020/lib/interaction/dialog/index.mjs +2 -0
  29. package/esm2020/lib/interaction/index.mjs +5 -0
  30. package/esm2020/lib/interaction/popover/abstract.popover.directive.mjs +24 -0
  31. package/esm2020/lib/interaction/popover/abstract.popover.ref.directive.mjs +63 -0
  32. package/esm2020/lib/interaction/popover/index.mjs +15 -0
  33. package/esm2020/lib/interaction/popover/popover.action.button.directive.mjs +29 -0
  34. package/esm2020/lib/interaction/popover/popover.action.directive.mjs +83 -0
  35. package/esm2020/lib/interaction/popover/popover.component.mjs +143 -0
  36. package/esm2020/lib/interaction/popover/popover.content.component.mjs +55 -0
  37. package/esm2020/lib/interaction/popover/popover.controls.component.mjs +35 -0
  38. package/esm2020/lib/interaction/popover/popover.coordinator.component.mjs +44 -0
  39. package/esm2020/lib/interaction/popover/popover.coordinator.service.mjs +40 -0
  40. package/esm2020/lib/interaction/popover/popover.header.component.mjs +52 -0
  41. package/esm2020/lib/interaction/popover/popover.mjs +3 -0
  42. package/esm2020/lib/interaction/popover/popover.module.mjs +108 -0
  43. package/esm2020/lib/interaction/popover/popover.position.strategy.mjs +61 -0
  44. package/esm2020/lib/interaction/popover/popover.scroll.content.component.mjs +53 -0
  45. package/esm2020/lib/interaction/popover/popover.service.mjs +45 -0
  46. package/esm2020/lib/interaction/popup/abstract.popup.directive.mjs +21 -0
  47. package/esm2020/lib/interaction/popup/index.mjs +11 -0
  48. package/esm2020/lib/interaction/popup/popup.component.mjs +138 -0
  49. package/esm2020/lib/interaction/popup/popup.content.component.mjs +40 -0
  50. package/esm2020/lib/interaction/popup/popup.controls.buttons.component.mjs +72 -0
  51. package/esm2020/lib/interaction/popup/popup.controls.component.mjs +33 -0
  52. package/esm2020/lib/interaction/popup/popup.coordinator.component.mjs +44 -0
  53. package/esm2020/lib/interaction/popup/popup.coordinator.service.mjs +40 -0
  54. package/esm2020/lib/interaction/popup/popup.mjs +9 -0
  55. package/esm2020/lib/interaction/popup/popup.module.mjs +81 -0
  56. package/esm2020/lib/interaction/popup/popup.position.strategy.mjs +45 -0
  57. package/esm2020/lib/interaction/popup/popup.service.mjs +42 -0
  58. package/esm2020/lib/interaction/prompt/index.mjs +10 -0
  59. package/esm2020/lib/interaction/prompt/prompt.box.component.mjs +35 -0
  60. package/esm2020/lib/interaction/prompt/prompt.button.confirm.directive.mjs +35 -0
  61. package/esm2020/lib/interaction/prompt/prompt.component.mjs +21 -0
  62. package/esm2020/lib/interaction/prompt/prompt.confirm.component.mjs +51 -0
  63. package/esm2020/lib/interaction/prompt/prompt.confirm.dialog.component.mjs +27 -0
  64. package/esm2020/lib/interaction/prompt/prompt.confirm.directive.mjs +69 -0
  65. package/esm2020/lib/interaction/prompt/prompt.confirm.mjs +9 -0
  66. package/esm2020/lib/interaction/prompt/prompt.module.mjs +77 -0
  67. package/esm2020/lib/interaction/prompt/prompt.page.component.mjs +32 -0
  68. package/esm2020/lib/keypress/index.mjs +3 -0
  69. package/esm2020/lib/keypress/keydown.listener.directive.mjs +45 -0
  70. package/esm2020/lib/keypress/keypress.module.mjs +26 -0
  71. package/esm2020/lib/layout/block/block.layout.module.mjs +37 -0
  72. package/esm2020/lib/layout/block/index.mjs +3 -0
  73. package/esm2020/lib/layout/block/two.block.component.mjs +55 -0
  74. package/esm2020/lib/layout/card/card.box.component.mjs +49 -0
  75. package/esm2020/lib/layout/card/card.box.container.component.mjs +25 -0
  76. package/esm2020/lib/layout/card/card.box.layout.module.mjs +35 -0
  77. package/esm2020/lib/layout/card/index.mjs +4 -0
  78. package/esm2020/lib/layout/column/column.layout.module.mjs +21 -0
  79. package/esm2020/lib/layout/column/index.mjs +4 -0
  80. package/esm2020/lib/layout/column/one/index.mjs +3 -0
  81. package/esm2020/lib/layout/column/one/one.column.component.mjs +46 -0
  82. package/esm2020/lib/layout/column/one/one.column.module.mjs +30 -0
  83. package/esm2020/lib/layout/column/two/index.mjs +9 -0
  84. package/esm2020/lib/layout/column/two/two.column.back.directive.mjs +33 -0
  85. package/esm2020/lib/layout/column/two/two.column.component.mjs +36 -0
  86. package/esm2020/lib/layout/column/two/two.column.full.left.directive.mjs +40 -0
  87. package/esm2020/lib/layout/column/two/two.column.head.component.mjs +30 -0
  88. package/esm2020/lib/layout/column/two/two.column.module.mjs +67 -0
  89. package/esm2020/lib/layout/column/two/two.column.right.component.mjs +55 -0
  90. package/esm2020/lib/layout/column/two/two.column.sref.directive.mjs +34 -0
  91. package/esm2020/lib/layout/column/two/two.column.store.mjs +80 -0
  92. package/esm2020/lib/layout/compact/compact.directive.mjs +30 -0
  93. package/esm2020/lib/layout/compact/compact.layout.module.mjs +29 -0
  94. package/esm2020/lib/layout/compact/compact.mjs +27 -0
  95. package/esm2020/lib/layout/compact/compact.store.mjs +19 -0
  96. package/esm2020/lib/layout/compact/index.mjs +5 -0
  97. package/esm2020/lib/layout/content/content.bordered.component.mjs +26 -0
  98. package/esm2020/lib/layout/content/content.component.mjs +32 -0
  99. package/esm2020/lib/layout/content/content.container.component.mjs +66 -0
  100. package/esm2020/lib/layout/content/content.container.fullwidth.component.mjs +26 -0
  101. package/esm2020/lib/layout/content/content.layout.module.mjs +44 -0
  102. package/esm2020/lib/layout/content/index.mjs +6 -0
  103. package/esm2020/lib/layout/dialog/dialog.content.component.mjs +37 -0
  104. package/esm2020/lib/layout/dialog/dialog.layout.module.mjs +29 -0
  105. package/esm2020/lib/layout/dialog/index.mjs +3 -0
  106. package/esm2020/lib/layout/flag/flag.component.mjs +36 -0
  107. package/esm2020/lib/layout/flag/flag.layout.module.mjs +38 -0
  108. package/esm2020/lib/layout/flag/flag.prompt.component.mjs +38 -0
  109. package/esm2020/lib/layout/flag/index.mjs +4 -0
  110. package/esm2020/lib/layout/index.mjs +13 -0
  111. package/esm2020/lib/layout/item/index.mjs +3 -0
  112. package/esm2020/lib/layout/item/item.icon.component.mjs +47 -0
  113. package/esm2020/lib/layout/item/item.layout.module.mjs +30 -0
  114. package/esm2020/lib/layout/layout.module.mjs +57 -0
  115. package/esm2020/lib/layout/list/index.mjs +3 -0
  116. package/esm2020/lib/layout/list/list.empty.component.mjs +26 -0
  117. package/esm2020/lib/layout/list/list.layout.module.mjs +26 -0
  118. package/esm2020/lib/layout/section/index.mjs +9 -0
  119. package/esm2020/lib/layout/section/section.box.anchor.component.mjs +39 -0
  120. package/esm2020/lib/layout/section/section.box.component.mjs +32 -0
  121. package/esm2020/lib/layout/section/section.component.mjs +54 -0
  122. package/esm2020/lib/layout/section/section.elevated.component.mjs +26 -0
  123. package/esm2020/lib/layout/section/section.intro.component.mjs +67 -0
  124. package/esm2020/lib/layout/section/section.layout.module.mjs +75 -0
  125. package/esm2020/lib/layout/section/section.page.component.mjs +46 -0
  126. package/esm2020/lib/layout/section/subsection.component.mjs +35 -0
  127. package/esm2020/lib/layout/step/index.mjs +3 -0
  128. package/esm2020/lib/layout/step/step.component.mjs +21 -0
  129. package/esm2020/lib/layout/step/step.layout.module.mjs +30 -0
  130. package/esm2020/lib/loading/basic-loading.component.mjs +116 -0
  131. package/esm2020/lib/loading/index.mjs +5 -0
  132. package/esm2020/lib/loading/loading-progress.component.mjs +69 -0
  133. package/esm2020/lib/loading/loading.component.mjs +95 -0
  134. package/esm2020/lib/loading/loading.module.mjs +53 -0
  135. package/esm2020/lib/router/anchor/anchor.component.mjs +50 -0
  136. package/esm2020/lib/router/anchor/anchor.icon.component.mjs +30 -0
  137. package/esm2020/lib/router/anchor/anchor.module.mjs +43 -0
  138. package/esm2020/lib/router/anchor/anchor.segue.directive.mjs +32 -0
  139. package/esm2020/lib/router/anchor/index.mjs +5 -0
  140. package/esm2020/lib/router/index.mjs +3 -0
  141. package/esm2020/lib/router/provider/index.mjs +4 -0
  142. package/esm2020/lib/router/provider/ngrouter/anchor.component.mjs +18 -0
  143. package/esm2020/lib/router/provider/ngrouter/angular.router.module.mjs +46 -0
  144. package/esm2020/lib/router/provider/ngrouter/index.mjs +3 -0
  145. package/esm2020/lib/router/provider/router.provider.config.mjs +3 -0
  146. package/esm2020/lib/router/provider/uirouter/anchor.component.mjs +18 -0
  147. package/esm2020/lib/router/provider/uirouter/index.mjs +3 -0
  148. package/esm2020/lib/router/provider/uirouter/uirouter.router.module.mjs +46 -0
  149. package/esm2020/lib/text/hint.component.mjs +15 -0
  150. package/esm2020/lib/text/index.mjs +13 -0
  151. package/esm2020/lib/text/label.bar.component.mjs +32 -0
  152. package/esm2020/lib/text/label.component.mjs +18 -0
  153. package/esm2020/lib/text/link.component.mjs +36 -0
  154. package/esm2020/lib/text/linkify.component.mjs +48 -0
  155. package/esm2020/lib/text/note.component.mjs +15 -0
  156. package/esm2020/lib/text/notice.component.mjs +15 -0
  157. package/esm2020/lib/text/ok.component.mjs +15 -0
  158. package/esm2020/lib/text/success.component.mjs +15 -0
  159. package/esm2020/lib/text/text.chips.component.mjs +32 -0
  160. package/esm2020/lib/text/text.module.mjs +92 -0
  161. package/esm2020/lib/text/warn.component.mjs +15 -0
  162. package/fesm2015/dereekb-dbx-web.mjs +4914 -0
  163. package/fesm2015/dereekb-dbx-web.mjs.map +1 -0
  164. package/fesm2020/dereekb-dbx-web.mjs +4885 -0
  165. package/fesm2020/dereekb-dbx-web.mjs.map +1 -0
  166. package/index.d.ts +2 -0
  167. package/lib/action/action.confirm.directive.d.ts +23 -0
  168. package/lib/action/action.module.d.ts +16 -0
  169. package/lib/action/action.snackbar.component.d.ts +22 -0
  170. package/lib/action/index.d.ts +5 -0
  171. package/lib/action/key.trigger.directive.d.ts +17 -0
  172. package/lib/action/transition/action.transition.module.d.ts +18 -0
  173. package/lib/action/transition/index.d.ts +3 -0
  174. package/lib/action/transition/transition.safety.dialog.component.d.ts +19 -0
  175. package/lib/action/transition/transition.safety.directive.d.ts +52 -0
  176. package/lib/button/button.component.d.ts +25 -0
  177. package/lib/button/button.module.d.ts +12 -0
  178. package/lib/button/button.spacer.component.d.ts +8 -0
  179. package/lib/button/index.d.ts +3 -0
  180. package/lib/dbx-web.module.d.ts +16 -0
  181. package/lib/error/error.action.directive.d.ts +15 -0
  182. package/lib/error/error.api.d.ts +13 -0
  183. package/lib/error/error.component.d.ts +14 -0
  184. package/lib/error/error.loading.directive.d.ts +19 -0
  185. package/lib/error/error.module.d.ts +10 -0
  186. package/lib/error/index.d.ts +6 -0
  187. package/lib/error/state.d.ts +15 -0
  188. package/lib/index.d.ts +9 -0
  189. package/lib/interaction/dialog/abstract.dialog.directive.d.ts +14 -0
  190. package/lib/interaction/dialog/index.d.ts +1 -0
  191. package/lib/interaction/index.d.ts +4 -0
  192. package/lib/interaction/popover/abstract.popover.directive.d.ts +13 -0
  193. package/lib/interaction/popover/abstract.popover.ref.directive.d.ts +30 -0
  194. package/lib/interaction/popover/index.d.ts +14 -0
  195. package/lib/interaction/popover/popover.action.button.directive.d.ts +14 -0
  196. package/lib/interaction/popover/popover.action.directive.d.ts +33 -0
  197. package/lib/interaction/popover/popover.component.d.ts +75 -0
  198. package/lib/interaction/popover/popover.content.component.d.ts +17 -0
  199. package/lib/interaction/popover/popover.controls.component.d.ts +10 -0
  200. package/lib/interaction/popover/popover.coordinator.component.d.ts +18 -0
  201. package/lib/interaction/popover/popover.coordinator.service.d.ts +14 -0
  202. package/lib/interaction/popover/popover.d.ts +16 -0
  203. package/lib/interaction/popover/popover.header.component.d.ts +12 -0
  204. package/lib/interaction/popover/popover.module.d.ts +26 -0
  205. package/lib/interaction/popover/popover.position.strategy.d.ts +11 -0
  206. package/lib/interaction/popover/popover.scroll.content.component.d.ts +14 -0
  207. package/lib/interaction/popover/popover.service.d.ts +22 -0
  208. package/lib/interaction/popup/abstract.popup.directive.d.ts +12 -0
  209. package/lib/interaction/popup/index.d.ts +10 -0
  210. package/lib/interaction/popup/popup.component.d.ts +60 -0
  211. package/lib/interaction/popup/popup.content.component.d.ts +12 -0
  212. package/lib/interaction/popup/popup.controls.buttons.component.d.ts +18 -0
  213. package/lib/interaction/popup/popup.controls.component.d.ts +9 -0
  214. package/lib/interaction/popup/popup.coordinator.component.d.ts +18 -0
  215. package/lib/interaction/popup/popup.coordinator.service.d.ts +15 -0
  216. package/lib/interaction/popup/popup.d.ts +25 -0
  217. package/lib/interaction/popup/popup.module.d.ts +20 -0
  218. package/lib/interaction/popup/popup.position.strategy.d.ts +18 -0
  219. package/lib/interaction/popup/popup.service.d.ts +20 -0
  220. package/lib/interaction/prompt/index.d.ts +9 -0
  221. package/lib/interaction/prompt/prompt.box.component.d.ts +8 -0
  222. package/lib/interaction/prompt/prompt.button.confirm.directive.d.ts +17 -0
  223. package/lib/interaction/prompt/prompt.component.d.ts +12 -0
  224. package/lib/interaction/prompt/prompt.confirm.component.d.ts +34 -0
  225. package/lib/interaction/prompt/prompt.confirm.d.ts +7 -0
  226. package/lib/interaction/prompt/prompt.confirm.dialog.component.d.ts +12 -0
  227. package/lib/interaction/prompt/prompt.confirm.directive.d.ts +31 -0
  228. package/lib/interaction/prompt/prompt.module.d.ts +20 -0
  229. package/lib/interaction/prompt/prompt.page.component.d.ts +5 -0
  230. package/lib/keypress/index.d.ts +2 -0
  231. package/lib/keypress/keydown.listener.directive.d.ts +12 -0
  232. package/lib/keypress/keypress.module.d.ts +8 -0
  233. package/lib/layout/block/block.layout.module.d.ts +13 -0
  234. package/lib/layout/block/index.d.ts +2 -0
  235. package/lib/layout/block/two.block.component.d.ts +16 -0
  236. package/lib/layout/card/card.box.component.d.ts +10 -0
  237. package/lib/layout/card/card.box.container.component.d.ts +8 -0
  238. package/lib/layout/card/card.box.layout.module.d.ts +10 -0
  239. package/lib/layout/card/index.d.ts +3 -0
  240. package/lib/layout/column/column.layout.module.d.ts +8 -0
  241. package/lib/layout/column/index.d.ts +3 -0
  242. package/lib/layout/column/one/index.d.ts +2 -0
  243. package/lib/layout/column/one/one.column.component.d.ts +12 -0
  244. package/lib/layout/column/one/one.column.module.d.ts +9 -0
  245. package/lib/layout/column/two/index.d.ts +8 -0
  246. package/lib/layout/column/two/two.column.back.directive.d.ts +16 -0
  247. package/lib/layout/column/two/two.column.component.d.ts +21 -0
  248. package/lib/layout/column/two/two.column.full.left.directive.d.ts +18 -0
  249. package/lib/layout/column/two/two.column.head.component.d.ts +10 -0
  250. package/lib/layout/column/two/two.column.module.d.ts +17 -0
  251. package/lib/layout/column/two/two.column.right.component.d.ts +24 -0
  252. package/lib/layout/column/two/two.column.sref.directive.d.ts +14 -0
  253. package/lib/layout/column/two/two.column.store.d.ts +67 -0
  254. package/lib/layout/compact/compact.d.ts +16 -0
  255. package/lib/layout/compact/compact.directive.d.ts +14 -0
  256. package/lib/layout/compact/compact.layout.module.d.ts +11 -0
  257. package/lib/layout/compact/compact.store.d.ts +13 -0
  258. package/lib/layout/compact/index.d.ts +4 -0
  259. package/lib/layout/content/content.bordered.component.d.ts +8 -0
  260. package/lib/layout/content/content.component.d.ts +9 -0
  261. package/lib/layout/content/content.container.component.d.ts +34 -0
  262. package/lib/layout/content/content.container.fullwidth.component.d.ts +8 -0
  263. package/lib/layout/content/content.layout.module.d.ts +14 -0
  264. package/lib/layout/content/index.d.ts +5 -0
  265. package/lib/layout/dialog/dialog.content.component.d.ts +13 -0
  266. package/lib/layout/dialog/dialog.layout.module.d.ts +11 -0
  267. package/lib/layout/dialog/index.d.ts +2 -0
  268. package/lib/layout/flag/flag.component.d.ts +10 -0
  269. package/lib/layout/flag/flag.layout.module.d.ts +13 -0
  270. package/lib/layout/flag/flag.prompt.component.d.ts +11 -0
  271. package/lib/layout/flag/index.d.ts +3 -0
  272. package/lib/layout/index.d.ts +12 -0
  273. package/lib/layout/item/index.d.ts +2 -0
  274. package/lib/layout/item/item.icon.component.d.ts +10 -0
  275. package/lib/layout/item/item.layout.module.d.ts +9 -0
  276. package/lib/layout/layout.module.d.ts +17 -0
  277. package/lib/layout/list/index.d.ts +2 -0
  278. package/lib/layout/list/list.empty.component.d.ts +8 -0
  279. package/lib/layout/list/list.layout.module.d.ts +8 -0
  280. package/lib/layout/section/index.d.ts +8 -0
  281. package/lib/layout/section/section.box.anchor.component.d.ts +11 -0
  282. package/lib/layout/section/section.box.component.d.ts +9 -0
  283. package/lib/layout/section/section.component.d.ts +12 -0
  284. package/lib/layout/section/section.elevated.component.d.ts +8 -0
  285. package/lib/layout/section/section.intro.component.d.ts +16 -0
  286. package/lib/layout/section/section.layout.module.d.ts +21 -0
  287. package/lib/layout/section/section.page.component.d.ts +10 -0
  288. package/lib/layout/section/subsection.component.d.ts +9 -0
  289. package/lib/layout/step/index.d.ts +2 -0
  290. package/lib/layout/step/step.component.d.ts +9 -0
  291. package/lib/layout/step/step.layout.module.d.ts +9 -0
  292. package/lib/loading/basic-loading.component.d.ts +46 -0
  293. package/lib/loading/index.d.ts +4 -0
  294. package/lib/loading/loading-progress.component.d.ts +24 -0
  295. package/lib/loading/loading.component.d.ts +37 -0
  296. package/lib/loading/loading.module.d.ts +13 -0
  297. package/lib/router/anchor/anchor.component.d.ts +24 -0
  298. package/lib/router/anchor/anchor.icon.component.d.ts +11 -0
  299. package/lib/router/anchor/anchor.module.d.ts +12 -0
  300. package/lib/router/anchor/anchor.segue.directive.d.ts +20 -0
  301. package/lib/router/anchor/index.d.ts +4 -0
  302. package/lib/router/index.d.ts +2 -0
  303. package/lib/router/provider/index.d.ts +3 -0
  304. package/lib/router/provider/ngrouter/anchor.component.d.ts +9 -0
  305. package/lib/router/provider/ngrouter/angular.router.module.d.ts +12 -0
  306. package/lib/router/provider/ngrouter/index.d.ts +2 -0
  307. package/lib/router/provider/router.provider.config.d.ts +7 -0
  308. package/lib/router/provider/uirouter/anchor.component.d.ts +9 -0
  309. package/lib/router/provider/uirouter/index.d.ts +2 -0
  310. package/lib/router/provider/uirouter/uirouter.router.module.d.ts +12 -0
  311. package/lib/text/hint.component.d.ts +5 -0
  312. package/lib/text/index.d.ts +12 -0
  313. package/lib/text/label.bar.component.d.ts +10 -0
  314. package/lib/text/label.component.d.ts +8 -0
  315. package/lib/text/link.component.d.ts +9 -0
  316. package/lib/text/linkify.component.d.ts +18 -0
  317. package/lib/text/note.component.d.ts +5 -0
  318. package/lib/text/notice.component.d.ts +5 -0
  319. package/lib/text/ok.component.d.ts +5 -0
  320. package/lib/text/success.component.d.ts +5 -0
  321. package/lib/text/text.chips.component.d.ts +13 -0
  322. package/lib/text/text.module.d.ts +22 -0
  323. package/lib/text/warn.component.d.ts +5 -0
  324. package/package.json +59 -0
@@ -0,0 +1,8 @@
1
+ export * from './section.box.anchor.component';
2
+ export * from './section.box.component';
3
+ export * from './section.component';
4
+ export * from './section.elevated.component';
5
+ export * from './section.intro.component';
6
+ export * from './section.layout.module';
7
+ export * from './section.page.component';
8
+ export * from './subsection.component';
@@ -0,0 +1,11 @@
1
+ import { ClickableAnchor } from '@dereekb/dbx-core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Component used to wrap sectional content on an elevated box that is clickable.
5
+ */
6
+ export declare class DbNgxSectionBoxAnchorComponent {
7
+ anchor?: ClickableAnchor;
8
+ disabled: boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionBoxAnchorComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSectionBoxAnchorComponent, "dbx-section-box-anchor", never, { "anchor": "anchor"; "disabled": "disabled"; }, {}, never, ["*"]>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Component used to wrap sectional content on an elevated box.
4
+ */
5
+ export declare class DbNgxSectionBoxComponent {
6
+ elevated: boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionBoxComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSectionBoxComponent, "dbx-section-box", never, { "elevated": "elevated"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { Maybe } from '@dereekb/util';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Component used to format content on a page within a section.
5
+ */
6
+ export declare class DbNgxSectionComponent {
7
+ header?: Maybe<string>;
8
+ icon?: Maybe<string>;
9
+ hint?: Maybe<string>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSectionComponent, "dbx-section", never, { "header": "header"; "icon": "icon"; "hint": "hint"; }, {}, never, ["[sectionHeader]", "*"]>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Component used to elevate content.
4
+ */
5
+ export declare class DbNgxSectionElevatedComponent {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionElevatedComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSectionElevatedComponent, "dbx-section-elevated", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,16 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { EventEmitter } from '@angular/core';
3
+ import { DbNgxSectionComponent } from './section.component';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Component used to format content that displays an intro until a button is pressed.
7
+ */
8
+ export declare class DbNgxIntroActionSectionComponent extends DbNgxSectionComponent implements OnDestroy {
9
+ showAction: EventEmitter<void>;
10
+ showIntro?: boolean;
11
+ action?: string;
12
+ ngOnDestroy(): void;
13
+ actionClicked(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxIntroActionSectionComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxIntroActionSectionComponent, "dbx-intro-action-section", never, { "showIntro": "showIntro"; "action": "action"; }, { "showAction": "showAction"; }, never, ["[info]", "*"]>;
16
+ }
@@ -0,0 +1,21 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./section.page.component";
3
+ import * as i2 from "./section.box.component";
4
+ import * as i3 from "./section.box.anchor.component";
5
+ import * as i4 from "./section.elevated.component";
6
+ import * as i5 from "./section.component";
7
+ import * as i6 from "./subsection.component";
8
+ import * as i7 from "./section.intro.component";
9
+ import * as i8 from "@angular/common";
10
+ import * as i9 from "../../router/anchor/anchor.module";
11
+ import * as i10 from "@angular/material/button";
12
+ import * as i11 from "@angular/material/core";
13
+ import * as i12 from "@angular/material/icon";
14
+ /**
15
+ * Module for container-type components.
16
+ */
17
+ export declare class DbNgxSectionLayoutModule {
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionLayoutModule, never>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxSectionLayoutModule, [typeof i1.DbNgxSectionPageComponent, typeof i2.DbNgxSectionBoxComponent, typeof i3.DbNgxSectionBoxAnchorComponent, typeof i4.DbNgxSectionElevatedComponent, typeof i5.DbNgxSectionComponent, typeof i6.DbNgxSubSectionComponent, typeof i7.DbNgxIntroActionSectionComponent], [typeof i8.CommonModule, typeof i9.DbNgxAnchorModule, typeof i10.MatButtonModule, typeof i11.MatRippleModule, typeof i12.MatIconModule], [typeof i1.DbNgxSectionPageComponent, typeof i2.DbNgxSectionBoxComponent, typeof i3.DbNgxSectionBoxAnchorComponent, typeof i4.DbNgxSectionElevatedComponent, typeof i5.DbNgxSectionComponent, typeof i6.DbNgxSubSectionComponent, typeof i7.DbNgxIntroActionSectionComponent]>;
20
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxSectionLayoutModule>;
21
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Component used to style a page that is made up of app sections.
4
+ */
5
+ export declare class DbNgxSectionPageComponent {
6
+ header?: string;
7
+ icon?: string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSectionPageComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSectionPageComponent, "dbx-section-page", never, { "header": "header"; "icon": "icon"; }, {}, never, ["[sectionHeader]", "*"]>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { DbNgxSectionComponent } from './section.component';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Component used to format content on a page within a section.
5
+ */
6
+ export declare class DbNgxSubSectionComponent extends DbNgxSectionComponent {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSubSectionComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSubSectionComponent, "dbx-subsection", never, {}, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './step.component';
2
+ export * from './step.layout.module';
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxStepComponent {
3
+ done?: boolean;
4
+ step?: number;
5
+ text?: string;
6
+ hint?: string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxStepComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxStepComponent, "dbx-step", never, { "done": "done"; "step": "step"; "text": "text"; "hint": "hint"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./step.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/material/icon";
5
+ export declare class DbNgxStepLayoutModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxStepLayoutModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxStepLayoutModule, [typeof i1.DbNgxStepComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.DbNgxStepComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxStepLayoutModule>;
9
+ }
@@ -0,0 +1,46 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { ElementRef } from '@angular/core';
3
+ import { ThemePalette } from '@angular/material/core';
4
+ import { ProgressBarMode } from '@angular/material/progress-bar';
5
+ import { ErrorInput, Maybe } from '@dereekb/util';
6
+ import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
7
+ import * as i0 from "@angular/core";
8
+ /**
9
+ * DbNgxBasicLoadingComponent loading state.
10
+ */
11
+ export declare enum LoadingComponentState {
12
+ NONE = -1,
13
+ LOADING = 0,
14
+ CONTENT = 1,
15
+ ERROR = 2
16
+ }
17
+ /**
18
+ * Basic loading component.
19
+ */
20
+ export declare class DbNgxBasicLoadingComponent implements OnDestroy {
21
+ private _loading;
22
+ private _show;
23
+ private _error;
24
+ private _customErrorContent;
25
+ private _customLoadingContent;
26
+ readonly state$: import("rxjs").Observable<LoadingComponentState>;
27
+ readonly error$: import("rxjs").Observable<Maybe<ErrorInput>>;
28
+ readonly hasNoCustomError$: import("rxjs").Observable<boolean>;
29
+ readonly hasNoCustomLoading$: import("rxjs").Observable<boolean>;
30
+ diameter?: Maybe<number>;
31
+ mode: ProgressBarMode | ProgressSpinnerMode;
32
+ color: ThemePalette;
33
+ text?: Maybe<string>;
34
+ linear: Maybe<boolean>;
35
+ ngOnDestroy(): void;
36
+ get show(): boolean;
37
+ set show(show: Maybe<boolean>);
38
+ get loading(): Maybe<boolean>;
39
+ set loading(loading: Maybe<boolean>);
40
+ get error(): Maybe<ErrorInput>;
41
+ set error(error: Maybe<ErrorInput>);
42
+ set customErrorContent(customErrorContent: Maybe<ElementRef>);
43
+ set customLoadingContent(customLoadingContent: Maybe<ElementRef>);
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxBasicLoadingComponent, never>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxBasicLoadingComponent, "dbx-basic-loading", never, { "diameter": "diameter"; "mode": "mode"; "color": "color"; "text": "text"; "linear": "linear"; "show": "show"; "loading": "loading"; "error": "error"; }, {}, never, ["*", "[loading]", "[error]", "[errorAction]"]>;
46
+ }
@@ -0,0 +1,4 @@
1
+ export * from './basic-loading.component';
2
+ export * from './loading-progress.component';
3
+ export * from './loading.component';
4
+ export * from './loading.module';
@@ -0,0 +1,24 @@
1
+ import { ThemePalette } from '@angular/material/core';
2
+ import { ProgressBarMode } from '@angular/material/progress-bar';
3
+ import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
4
+ import { Maybe } from '@dereekb/util';
5
+ import * as i0 from "@angular/core";
6
+ export declare const DEFAULT_LOADING_PROGRESS_DIAMETER = 96;
7
+ /**
8
+ * Basic loading progress component.
9
+ */
10
+ export declare class DbNgxLoadingProgressComponent {
11
+ private _diameter;
12
+ text?: Maybe<string>;
13
+ linear?: Maybe<boolean>;
14
+ mode: ProgressBarMode | ProgressSpinnerMode;
15
+ color: ThemePalette;
16
+ value?: number;
17
+ bufferValue: number;
18
+ get diameter(): number;
19
+ set diameter(diameter: Maybe<number>);
20
+ get bmode(): ProgressBarMode;
21
+ get smode(): ProgressSpinnerMode;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLoadingProgressComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLoadingProgressComponent, "dbx-loading-progress", never, { "text": "text"; "linear": "linear"; "mode": "mode"; "color": "color"; "value": "value"; "bufferValue": "bufferValue"; "diameter": "diameter"; }, {}, never, never>;
24
+ }
@@ -0,0 +1,37 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnDestroy } from '@angular/core';
3
+ import { ThemePalette } from '@angular/material/core';
4
+ import { ProgressBarMode } from '@angular/material/progress-bar';
5
+ import { LoadingContext } from '@dereekb/rxjs';
6
+ import { ErrorInput, Maybe } from '@dereekb/util';
7
+ import * as i0 from "@angular/core";
8
+ export interface DbNgxLoadingComponentState {
9
+ loading: boolean;
10
+ error: Maybe<ErrorInput>;
11
+ }
12
+ /**
13
+ * Loading View component that provides content sections for loading, error, and an error action.
14
+ */
15
+ export declare class DbNgxLoadingComponent implements OnDestroy {
16
+ private _context;
17
+ private _inputLoading;
18
+ private _inputError;
19
+ readonly state$: Observable<DbNgxLoadingComponentState>;
20
+ readonly loading$: Observable<boolean>;
21
+ readonly error$: Observable<Maybe<ErrorInput>>;
22
+ show?: Maybe<boolean>;
23
+ text?: Maybe<string>;
24
+ mode: ProgressBarMode;
25
+ color: ThemePalette;
26
+ diameter?: Maybe<number>;
27
+ linear?: Maybe<boolean>;
28
+ ngOnDestroy(): void;
29
+ get context(): Maybe<LoadingContext>;
30
+ set context(context: Maybe<LoadingContext>);
31
+ get loading(): Maybe<boolean>;
32
+ set loading(loading: Maybe<boolean>);
33
+ get error(): Maybe<ErrorInput>;
34
+ set error(error: Maybe<ErrorInput>);
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLoadingComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLoadingComponent, "dbx-loading", never, { "show": "show"; "text": "text"; "mode": "mode"; "color": "color"; "diameter": "diameter"; "linear": "linear"; "context": "context"; "loading": "loading"; "error": "error"; }, {}, never, ["[loading]", "*", "[error]", "[errorAction]"]>;
37
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./loading.component";
3
+ import * as i2 from "./basic-loading.component";
4
+ import * as i3 from "./loading-progress.component";
5
+ import * as i4 from "@angular/platform-browser";
6
+ import * as i5 from "../error/error.module";
7
+ import * as i6 from "@angular/material/progress-spinner";
8
+ import * as i7 from "@angular/material/progress-bar";
9
+ export declare class DbNgxLoadingModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLoadingModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxLoadingModule, [typeof i1.DbNgxLoadingComponent, typeof i2.DbNgxBasicLoadingComponent, typeof i3.DbNgxLoadingProgressComponent], [typeof i4.BrowserModule, typeof i5.DbNgxReadableErrorModule, typeof i6.MatProgressSpinnerModule, typeof i7.MatProgressBarModule], [typeof i1.DbNgxLoadingComponent, typeof i2.DbNgxBasicLoadingComponent, typeof i3.DbNgxLoadingProgressComponent, typeof i6.MatProgressSpinnerModule, typeof i7.MatProgressBarModule]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxLoadingModule>;
13
+ }
@@ -0,0 +1,24 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { AbstractDbNgxAnchorDirective, DbNgxInjectedComponentConfig } from '@dereekb/dbx-core';
3
+ import { Maybe } from '@dereekb/util';
4
+ import { DbNgxRouterWebProviderConfig } from '../provider/router.provider.config';
5
+ import * as i0 from "@angular/core";
6
+ /**
7
+ * Component that renders an anchor element depending on the input.
8
+ */
9
+ export declare class DbNgxAnchorComponent extends AbstractDbNgxAnchorDirective {
10
+ private readonly dbNgxRouterWebProviderConfig;
11
+ private _templateRef;
12
+ readonly templateRef$: import("rxjs").Observable<Maybe<TemplateRef<any>>>;
13
+ block?: boolean;
14
+ get templateRef(): Maybe<TemplateRef<any>>;
15
+ set templateRef(templateRef: Maybe<TemplateRef<any>>);
16
+ readonly url$: import("rxjs").Observable<string | undefined>;
17
+ readonly target$: import("rxjs").Observable<string | undefined>;
18
+ constructor(dbNgxRouterWebProviderConfig: DbNgxRouterWebProviderConfig);
19
+ get srefAnchorConfig(): DbNgxInjectedComponentConfig;
20
+ get anchorBlockClass(): string;
21
+ clickAnchor(event?: Maybe<MouseEvent>): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxAnchorComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxAnchorComponent, "dbx-anchor, [dbx-anchor]", never, { "block": "block"; }, {}, never, ["*"]>;
24
+ }
@@ -0,0 +1,11 @@
1
+ import { ClickableIconAnchorLink } from '@dereekb/dbx-core';
2
+ import { Maybe } from '@dereekb/util';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Component that displays an anchor and a mat-button.
6
+ */
7
+ export declare class DbNgxAnchorIconComponent {
8
+ anchor: Maybe<ClickableIconAnchorLink>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxAnchorIconComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxAnchorIconComponent, "dbx-anchor-icon", never, { "anchor": "anchor"; }, {}, never, never>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./anchor.component";
3
+ import * as i2 from "./anchor.icon.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/material/icon";
6
+ import * as i5 from "@angular/material/button";
7
+ import * as i6 from "@dereekb/dbx-core";
8
+ export declare class DbNgxAnchorModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxAnchorModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxAnchorModule, [typeof i1.DbNgxAnchorComponent, typeof i2.DbNgxAnchorIconComponent], [typeof i3.CommonModule, typeof i4.MatIconModule, typeof i5.MatButtonModule, typeof i6.DbNgxInjectedComponentModule], [typeof i1.DbNgxAnchorComponent, typeof i2.DbNgxAnchorIconComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxAnchorModule>;
12
+ }
@@ -0,0 +1,20 @@
1
+ import { DbNgxInjectedTemplateConfig } from "@dereekb/dbx-core";
2
+ import { Observable } from "rxjs";
3
+ import { DbNgxAnchorComponent } from "./anchor.component";
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * Abstract implementation
7
+ */
8
+ export declare abstract class AbstractDbNgxSegueAnchorDirective {
9
+ readonly parent: DbNgxAnchorComponent;
10
+ readonly target$: Observable<string | undefined>;
11
+ readonly ref$: Observable<any>;
12
+ readonly refParams$: Observable<import("@dereekb/dbx-core").SegueRefRawSegueParams | undefined>;
13
+ readonly refOptions$: Observable<any>;
14
+ constructor(parent: DbNgxAnchorComponent);
15
+ readonly template$: Observable<DbNgxInjectedTemplateConfig>;
16
+ get anchorBlockClass(): string;
17
+ get anchor(): import("../../../../../../dist/packages/util/src").Maybe<import("@dereekb/dbx-core").ClickableAnchor>;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbNgxSegueAnchorDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbNgxSegueAnchorDirective, never, never, {}, {}, never>;
20
+ }
@@ -0,0 +1,4 @@
1
+ export * from './anchor.component';
2
+ export * from './anchor.icon.component';
3
+ export * from './anchor.module';
4
+ export * from './anchor.segue.directive';
@@ -0,0 +1,2 @@
1
+ export * from './anchor';
2
+ export * from './provider';
@@ -0,0 +1,3 @@
1
+ export * from './ngrouter';
2
+ export * from './uirouter';
3
+ export * from './router.provider.config';
@@ -0,0 +1,9 @@
1
+ import { AbstractDbNgxSegueAnchorDirective } from '../../anchor/anchor.segue.directive';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * SegueAnchor implementation for Angular Router.
5
+ */
6
+ export declare class DbNgxAngularRouterSegueAnchorComponent extends AbstractDbNgxSegueAnchorDirective {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxAngularRouterSegueAnchorComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxAngularRouterSegueAnchorComponent, "ng-component", never, {}, {}, never, never>;
9
+ }
@@ -0,0 +1,12 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./anchor.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@uirouter/angular";
6
+ import * as i4 from "@dereekb/dbx-core";
7
+ export declare class DbNgxWebAngularRouterModule {
8
+ static forRoot(): ModuleWithProviders<DbNgxWebAngularRouterModule>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxWebAngularRouterModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxWebAngularRouterModule, [typeof i1.DbNgxAngularRouterSegueAnchorComponent], [typeof i2.CommonModule, typeof i3.UIRouterModule, typeof i4.DbNgxInjectedComponentModule], [typeof i1.DbNgxAngularRouterSegueAnchorComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxWebAngularRouterModule>;
12
+ }
@@ -0,0 +1,2 @@
1
+ export * from './anchor.component';
2
+ export * from './angular.router.module';
@@ -0,0 +1,7 @@
1
+ import { DbNgxInjectedComponentConfig } from "@dereekb/dbx-core";
2
+ export declare abstract class DbNgxRouterWebProviderConfig {
3
+ /**
4
+ * Component used by the Anchor component to render a SegueRef link.
5
+ */
6
+ abstract anchorSegueRefComponent: DbNgxInjectedComponentConfig;
7
+ }
@@ -0,0 +1,9 @@
1
+ import { AbstractDbNgxSegueAnchorDirective } from '../../anchor/anchor.segue.directive';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * SegueAnchor implementation for UIRouter.
5
+ */
6
+ export declare class DbNgxUIRouterSegueAnchorComponent extends AbstractDbNgxSegueAnchorDirective {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxUIRouterSegueAnchorComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxUIRouterSegueAnchorComponent, "ng-component", never, {}, {}, never, never>;
9
+ }
@@ -0,0 +1,2 @@
1
+ export * from './anchor.component';
2
+ export * from './uirouter.router.module';
@@ -0,0 +1,12 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./anchor.component";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@uirouter/angular";
6
+ import * as i4 from "@dereekb/dbx-core";
7
+ export declare class DbNgxWebUIRouterModule {
8
+ static forRoot(): ModuleWithProviders<DbNgxWebUIRouterModule>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxWebUIRouterModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxWebUIRouterModule, [typeof i1.DbNgxUIRouterSegueAnchorComponent], [typeof i2.CommonModule, typeof i3.UIRouterModule, typeof i4.DbNgxInjectedComponentModule], [typeof i1.DbNgxUIRouterSegueAnchorComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxWebUIRouterModule>;
12
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxHintComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxHintComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxHintComponent, "dbx-hint", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,12 @@
1
+ export * from './hint.component';
2
+ export * from './label.bar.component';
3
+ export * from './label.component';
4
+ export * from './link.component';
5
+ export * from './linkify.component';
6
+ export * from './note.component';
7
+ export * from './notice.component';
8
+ export * from './ok.component';
9
+ export * from './success.component';
10
+ export * from './text.chips.component';
11
+ export * from './text.module';
12
+ export * from './warn.component';
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * Acts as a divider between content and centers a label within a background.
4
+ */
5
+ export declare class DbNgxLabelBarComponent {
6
+ text?: string;
7
+ icon?: string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLabelBarComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLabelBarComponent, "dbx-label-bar", never, { "text": "text"; "icon": "icon"; }, {}, never, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ /**
3
+ * DbNgx field label.
4
+ */
5
+ export declare class DbNgxLabelComponent {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLabelComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLabelComponent, "dbx-label", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { ClickableAnchor } from '@dereekb/dbx-core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DbNgxLinkComponent {
4
+ anchor?: ClickableAnchor;
5
+ set ref(ref: string);
6
+ set href(href: string);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLinkComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLinkComponent, "dbx-link", never, { "anchor": "anchor"; "ref": "ref"; "href": "href"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,18 @@
1
+ import { OnDestroy } from '@angular/core';
2
+ import { DomSanitizer } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Used to "linkify" the input text.
6
+ */
7
+ export declare class DbNgxLinkifyComponent implements OnDestroy {
8
+ private readonly sanitizer;
9
+ private _text;
10
+ readonly linkifiedText$: import("rxjs").Observable<string>;
11
+ readonly linkifiedBody$: import("rxjs").Observable<import("@angular/platform-browser").SafeHtml>;
12
+ constructor(sanitizer: DomSanitizer);
13
+ ngOnDestroy(): void;
14
+ get text(): string;
15
+ set text(text: string);
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLinkifyComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxLinkifyComponent, "dbx-linkify", never, { "text": "text"; }, {}, never, never>;
18
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxNoteComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxNoteComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxNoteComponent, "dbx-note", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxNoticeComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxNoticeComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxNoticeComponent, "dbx-notice", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxOkComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxOkComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxOkComponent, "dbx-ok", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxSuccessComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxSuccessComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxSuccessComponent, "dbx-success", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,13 @@
1
+ import { Maybe } from '@dereekb/util';
2
+ import * as i0 from "@angular/core";
3
+ export interface TextChip<T = any> {
4
+ text: string;
5
+ tooltip?: string;
6
+ color?: 'primary' | 'accent';
7
+ data?: T;
8
+ }
9
+ export declare class DbNgxTextChipsComponent<T = any> {
10
+ chips?: Maybe<TextChip<T>[]>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTextChipsComponent<any>, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxTextChipsComponent<any>, "dbx-text-chips", never, { "chips": "chips"; }, {}, never, never>;
13
+ }
@@ -0,0 +1,22 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./note.component";
3
+ import * as i2 from "./notice.component";
4
+ import * as i3 from "./success.component";
5
+ import * as i4 from "./warn.component";
6
+ import * as i5 from "./hint.component";
7
+ import * as i6 from "./link.component";
8
+ import * as i7 from "./label.component";
9
+ import * as i8 from "./linkify.component";
10
+ import * as i9 from "./ok.component";
11
+ import * as i10 from "./text.chips.component";
12
+ import * as i11 from "./label.bar.component";
13
+ import * as i12 from "@angular/common";
14
+ import * as i13 from "@angular/material/chips";
15
+ import * as i14 from "@angular/material/tooltip";
16
+ import * as i15 from "@angular/material/icon";
17
+ import * as i16 from "../router/anchor/anchor.module";
18
+ export declare class DbNgxTextModule {
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTextModule, never>;
20
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxTextModule, [typeof i1.DbNgxNoteComponent, typeof i2.DbNgxNoticeComponent, typeof i3.DbNgxSuccessComponent, typeof i4.DbNgxWarnComponent, typeof i5.DbNgxHintComponent, typeof i6.DbNgxLinkComponent, typeof i7.DbNgxLabelComponent, typeof i8.DbNgxLinkifyComponent, typeof i9.DbNgxOkComponent, typeof i10.DbNgxTextChipsComponent, typeof i11.DbNgxLabelBarComponent], [typeof i12.CommonModule, typeof i13.MatChipsModule, typeof i14.MatTooltipModule, typeof i15.MatIconModule, typeof i16.DbNgxAnchorModule], [typeof i1.DbNgxNoteComponent, typeof i2.DbNgxNoticeComponent, typeof i3.DbNgxSuccessComponent, typeof i4.DbNgxWarnComponent, typeof i5.DbNgxHintComponent, typeof i6.DbNgxLinkComponent, typeof i7.DbNgxLabelComponent, typeof i8.DbNgxLinkifyComponent, typeof i9.DbNgxOkComponent, typeof i10.DbNgxTextChipsComponent, typeof i11.DbNgxLabelBarComponent]>;
21
+ static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxTextModule>;
22
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DbNgxWarnComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxWarnComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxWarnComponent, "dbx-warn", never, {}, {}, never, ["*"]>;
5
+ }