@dereekb/dbx-web 1.2.0 → 3.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 (325) hide show
  1. package/README.md +1 -1
  2. package/_index.scss +5 -2
  3. package/esm2020/lib/action/action.confirm.directive.mjs +7 -7
  4. package/esm2020/lib/action/action.module.mjs +16 -12
  5. package/esm2020/lib/action/action.progress.component.mjs +20 -0
  6. package/esm2020/lib/action/index.mjs +3 -2
  7. package/esm2020/lib/action/key.trigger.directive.mjs +6 -6
  8. package/esm2020/lib/action/snackbar/action.snackbar.component.mjs +95 -0
  9. package/esm2020/lib/action/snackbar/action.snackbar.default.mjs +107 -0
  10. package/esm2020/lib/action/snackbar/action.snackbar.directive.mjs +62 -0
  11. package/esm2020/lib/action/snackbar/action.snackbar.generator.mjs +44 -0
  12. package/esm2020/lib/action/snackbar/action.snackbar.mjs +2 -0
  13. package/esm2020/lib/action/snackbar/action.snackbar.module.mjs +51 -0
  14. package/esm2020/lib/action/snackbar/action.snackbar.service.mjs +82 -0
  15. package/esm2020/lib/action/snackbar/index.mjs +8 -0
  16. package/esm2020/lib/action/transition/action.transition.module.mjs +4 -4
  17. package/esm2020/lib/action/transition/transition.safety.dialog.component.mjs +8 -7
  18. package/esm2020/lib/action/transition/transition.safety.directive.mjs +6 -6
  19. package/esm2020/lib/button/button.component.mjs +31 -13
  20. package/esm2020/lib/button/button.module.mjs +20 -16
  21. package/esm2020/lib/button/button.spacer.component.mjs +12 -10
  22. package/esm2020/lib/button/index.mjs +2 -1
  23. package/esm2020/lib/button/progress/bar.button.component.mjs +16 -0
  24. package/esm2020/lib/button/progress/base.progress.button.directive.mjs +104 -0
  25. package/esm2020/lib/button/progress/button.progress.config.mjs +3 -0
  26. package/esm2020/lib/button/progress/button.progress.module.mjs +61 -0
  27. package/esm2020/lib/button/progress/index.mjs +5 -0
  28. package/esm2020/lib/button/progress/spinner.button.component.mjs +40 -0
  29. package/esm2020/lib/dbx-web.module.mjs +10 -17
  30. package/esm2020/lib/error/error.action.directive.mjs +6 -6
  31. package/esm2020/lib/error/error.component.mjs +5 -5
  32. package/esm2020/lib/error/error.loading.directive.mjs +3 -3
  33. package/esm2020/lib/error/error.module.mjs +4 -4
  34. package/esm2020/lib/interaction/dialog/abstract.dialog.directive.mjs +9 -6
  35. package/esm2020/lib/interaction/dialog/dialog.action.directive.mjs +41 -0
  36. package/esm2020/lib/interaction/dialog/dialog.content.component.mjs +4 -4
  37. package/esm2020/lib/interaction/dialog/dialog.module.mjs +12 -7
  38. package/esm2020/lib/interaction/dialog/index.mjs +2 -1
  39. package/esm2020/lib/interaction/filter/filter.module.mjs +9 -9
  40. package/esm2020/lib/interaction/filter/filter.popover.button.component.mjs +3 -3
  41. package/esm2020/lib/interaction/filter/filter.popover.button.directive.mjs +3 -3
  42. package/esm2020/lib/interaction/filter/filter.popover.component.mjs +5 -5
  43. package/esm2020/lib/interaction/filter/filter.wrapper.component.mjs +3 -3
  44. package/esm2020/lib/interaction/interaction.module.mjs +4 -4
  45. package/esm2020/lib/interaction/popover/abstract.popover.directive.mjs +3 -3
  46. package/esm2020/lib/interaction/popover/abstract.popover.ref.directive.mjs +6 -6
  47. package/esm2020/lib/interaction/popover/index.mjs +1 -2
  48. package/esm2020/lib/interaction/popover/popover.action.directive.mjs +19 -57
  49. package/esm2020/lib/interaction/popover/popover.component.mjs +9 -9
  50. package/esm2020/lib/interaction/popover/popover.content.component.mjs +3 -3
  51. package/esm2020/lib/interaction/popover/popover.controls.directive.mjs +3 -3
  52. package/esm2020/lib/interaction/popover/popover.coordinator.component.mjs +3 -3
  53. package/esm2020/lib/interaction/popover/popover.coordinator.service.mjs +11 -5
  54. package/esm2020/lib/interaction/popover/popover.header.component.mjs +3 -3
  55. package/esm2020/lib/interaction/popover/popover.module.mjs +17 -31
  56. package/esm2020/lib/interaction/popover/popover.scroll.content.component.mjs +3 -3
  57. package/esm2020/lib/interaction/popover/popover.service.mjs +3 -3
  58. package/esm2020/lib/interaction/popup/abstract.popup.directive.mjs +3 -3
  59. package/esm2020/lib/interaction/popup/popup.component.mjs +9 -9
  60. package/esm2020/lib/interaction/popup/popup.content.component.mjs +3 -3
  61. package/esm2020/lib/interaction/popup/popup.controls.buttons.component.mjs +6 -6
  62. package/esm2020/lib/interaction/popup/popup.controls.component.mjs +3 -3
  63. package/esm2020/lib/interaction/popup/popup.coordinator.component.mjs +3 -3
  64. package/esm2020/lib/interaction/popup/popup.coordinator.service.mjs +11 -5
  65. package/esm2020/lib/interaction/popup/popup.module.mjs +13 -22
  66. package/esm2020/lib/interaction/popup/popup.service.mjs +3 -3
  67. package/esm2020/lib/interaction/prompt/prompt.box.component.mjs +3 -3
  68. package/esm2020/lib/interaction/prompt/prompt.button.confirm.directive.mjs +3 -3
  69. package/esm2020/lib/interaction/prompt/prompt.component.mjs +3 -3
  70. package/esm2020/lib/interaction/prompt/prompt.confirm.component.mjs +3 -3
  71. package/esm2020/lib/interaction/prompt/prompt.confirm.dialog.component.mjs +8 -8
  72. package/esm2020/lib/interaction/prompt/prompt.confirm.directive.mjs +6 -6
  73. package/esm2020/lib/interaction/prompt/prompt.module.mjs +9 -9
  74. package/esm2020/lib/interaction/prompt/prompt.page.component.mjs +3 -3
  75. package/esm2020/lib/keypress/keydown.listener.directive.mjs +3 -3
  76. package/esm2020/lib/keypress/keypress.module.mjs +4 -4
  77. package/esm2020/lib/layout/bar/bar.directive.mjs +3 -3
  78. package/esm2020/lib/layout/bar/bar.header.component.mjs +3 -3
  79. package/esm2020/lib/layout/bar/bar.layout.module.mjs +4 -4
  80. package/esm2020/lib/layout/bar/pagebar.component.mjs +3 -3
  81. package/esm2020/lib/layout/block/block.layout.module.mjs +9 -9
  82. package/esm2020/lib/layout/block/two.block.component.mjs +22 -10
  83. package/esm2020/lib/layout/card/card.box.component.mjs +3 -3
  84. package/esm2020/lib/layout/card/card.box.container.component.mjs +3 -3
  85. package/esm2020/lib/layout/card/card.box.layout.module.mjs +4 -4
  86. package/esm2020/lib/layout/column/column.layout.module.mjs +4 -4
  87. package/esm2020/lib/layout/column/one/one.column.component.mjs +9 -9
  88. package/esm2020/lib/layout/column/one/one.column.module.mjs +4 -4
  89. package/esm2020/lib/layout/column/two/index.mjs +2 -1
  90. package/esm2020/lib/layout/column/two/two.column.back.directive.mjs +8 -8
  91. package/esm2020/lib/layout/column/two/two.column.component.mjs +51 -14
  92. package/esm2020/lib/layout/column/two/two.column.context.directive.mjs +36 -0
  93. package/esm2020/lib/layout/column/two/two.column.full.left.directive.mjs +8 -8
  94. package/esm2020/lib/layout/column/two/two.column.head.component.mjs +8 -8
  95. package/esm2020/lib/layout/column/two/two.column.module.mjs +43 -38
  96. package/esm2020/lib/layout/column/two/two.column.right.component.mjs +11 -6
  97. package/esm2020/lib/layout/column/two/two.column.sref.directive.mjs +12 -17
  98. package/esm2020/lib/layout/column/two/two.column.store.mjs +8 -7
  99. package/esm2020/lib/layout/compact/compact.directive.mjs +3 -3
  100. package/esm2020/lib/layout/compact/compact.layout.module.mjs +4 -4
  101. package/esm2020/lib/layout/compact/compact.store.mjs +3 -3
  102. package/esm2020/lib/layout/content/content.border.directive.mjs +3 -3
  103. package/esm2020/lib/layout/content/content.box.directive.mjs +9 -5
  104. package/esm2020/lib/layout/content/content.container.directive.mjs +4 -4
  105. package/esm2020/lib/layout/content/content.directive.mjs +3 -3
  106. package/esm2020/lib/layout/content/content.elevate.directive.mjs +3 -3
  107. package/esm2020/lib/layout/content/content.layout.module.mjs +4 -4
  108. package/esm2020/lib/layout/content/content.page.directive.mjs +3 -3
  109. package/esm2020/lib/layout/flag/flag.component.mjs +3 -3
  110. package/esm2020/lib/layout/flag/flag.layout.module.mjs +4 -4
  111. package/esm2020/lib/layout/flag/flag.prompt.component.mjs +3 -3
  112. package/esm2020/lib/layout/flex/flex.group.directive.mjs +8 -4
  113. package/esm2020/lib/layout/flex/flex.layout.module.mjs +4 -4
  114. package/esm2020/lib/layout/flex/flex.size.directive.mjs +3 -3
  115. package/esm2020/lib/layout/item/item.icon.component.mjs +3 -3
  116. package/esm2020/lib/layout/item/item.layout.module.mjs +4 -4
  117. package/esm2020/lib/layout/layout.module.mjs +4 -4
  118. package/esm2020/lib/layout/list/index.mjs +5 -1
  119. package/esm2020/lib/layout/list/list.component.mjs +22 -9
  120. package/esm2020/lib/layout/list/list.content.empty.component.mjs +3 -3
  121. package/esm2020/lib/layout/list/list.directive.mjs +12 -10
  122. package/esm2020/lib/layout/list/list.layout.module.mjs +32 -18
  123. package/esm2020/lib/layout/list/list.view.directive.mjs +11 -4
  124. package/esm2020/lib/layout/list/list.view.mjs +1 -1
  125. package/esm2020/lib/layout/list/list.view.selection.directive.mjs +8 -7
  126. package/esm2020/lib/layout/list/list.view.value.component.mjs +57 -28
  127. package/esm2020/lib/layout/list/list.view.value.directive.mjs +18 -10
  128. package/esm2020/lib/layout/list/list.view.value.item.directive.mjs +7 -7
  129. package/esm2020/lib/layout/list/list.view.value.mjs +36 -24
  130. package/esm2020/lib/layout/list/list.view.value.modifier.directive.mjs +81 -0
  131. package/esm2020/lib/layout/list/list.view.value.modifier.mjs +15 -0
  132. package/esm2020/lib/layout/list/list.view.value.modifier.ripple.directive.mjs +45 -0
  133. package/esm2020/lib/layout/list/list.view.value.selection.component.mjs +57 -43
  134. package/esm2020/lib/layout/list/list.wrapper.mjs +13 -0
  135. package/esm2020/lib/layout/section/section.component.mjs +3 -3
  136. package/esm2020/lib/layout/section/section.header.component.mjs +9 -6
  137. package/esm2020/lib/layout/section/section.intro.component.mjs +3 -3
  138. package/esm2020/lib/layout/section/section.layout.module.mjs +9 -9
  139. package/esm2020/lib/layout/section/section.page.component.mjs +3 -3
  140. package/esm2020/lib/layout/section/subsection.component.mjs +3 -3
  141. package/esm2020/lib/layout/step/step.component.mjs +3 -3
  142. package/esm2020/lib/layout/step/step.layout.module.mjs +4 -4
  143. package/esm2020/lib/layout/style/spacer.directive.mjs +3 -3
  144. package/esm2020/lib/layout/style/style.body.directive.mjs +3 -3
  145. package/esm2020/lib/layout/style/style.directive.mjs +3 -3
  146. package/esm2020/lib/layout/style/style.layout.module.mjs +4 -4
  147. package/esm2020/lib/layout/style/style.service.mjs +6 -4
  148. package/esm2020/lib/layout/style/style.set.directive.mjs +5 -4
  149. package/esm2020/lib/layout/text/hint.component.mjs +3 -3
  150. package/esm2020/lib/layout/text/icon.spacer.component.mjs +19 -0
  151. package/esm2020/lib/layout/text/index.mjs +2 -1
  152. package/esm2020/lib/layout/text/label.component.mjs +3 -3
  153. package/esm2020/lib/layout/text/linkify.component.mjs +3 -3
  154. package/esm2020/lib/layout/text/note.component.mjs +3 -3
  155. package/esm2020/lib/layout/text/notice.component.mjs +3 -3
  156. package/esm2020/lib/layout/text/ok.component.mjs +3 -3
  157. package/esm2020/lib/layout/text/success.component.mjs +3 -3
  158. package/esm2020/lib/layout/text/text.chips.component.mjs +3 -3
  159. package/esm2020/lib/layout/text/text.module.mjs +14 -9
  160. package/esm2020/lib/layout/text/warn.component.mjs +3 -3
  161. package/esm2020/lib/loading/basic-loading.component.mjs +3 -3
  162. package/esm2020/lib/loading/index.mjs +2 -1
  163. package/esm2020/lib/loading/loading-progress.component.mjs +4 -4
  164. package/esm2020/lib/loading/loading.action.directive.mjs +37 -0
  165. package/esm2020/lib/loading/loading.component.mjs +3 -3
  166. package/esm2020/lib/loading/loading.module.mjs +14 -9
  167. package/esm2020/lib/router/layout/anchor/anchor.component.mjs +9 -5
  168. package/esm2020/lib/router/layout/anchor/anchor.content.component.mjs +43 -0
  169. package/esm2020/lib/router/layout/anchor/anchor.icon.component.mjs +3 -3
  170. package/esm2020/lib/router/layout/anchor/anchor.link.component.mjs +3 -3
  171. package/esm2020/lib/router/layout/anchor/anchor.module.mjs +19 -14
  172. package/esm2020/lib/router/layout/anchor/anchor.segue.directive.mjs +4 -4
  173. package/esm2020/lib/router/layout/anchor/index.mjs +2 -1
  174. package/esm2020/lib/router/layout/anchorlist/anchorlist.component.mjs +5 -5
  175. package/esm2020/lib/router/layout/anchorlist/anchorlist.module.mjs +10 -10
  176. package/esm2020/lib/router/layout/index.mjs +2 -1
  177. package/esm2020/lib/router/layout/layout.module.mjs +23 -19
  178. package/esm2020/lib/router/layout/list/index.mjs +3 -0
  179. package/esm2020/lib/router/layout/list/list.module.mjs +21 -0
  180. package/esm2020/lib/router/layout/list/router.list.directive.mjs +42 -0
  181. package/esm2020/lib/router/layout/navbar/navbar.component.mjs +4 -4
  182. package/esm2020/lib/router/layout/navbar/navbar.module.mjs +10 -10
  183. package/esm2020/lib/router/layout/sidenav/sidenav.button.component.mjs +3 -3
  184. package/esm2020/lib/router/layout/sidenav/sidenav.component.mjs +3 -3
  185. package/esm2020/lib/router/layout/sidenav/sidenav.module.mjs +14 -14
  186. package/esm2020/lib/router/layout/sidenav/sidenav.page.component.mjs +7 -4
  187. package/esm2020/lib/router/layout/sidenav/sidenav.pagebar.component.mjs +5 -5
  188. package/esm2020/lib/router/provider/ngrouter/anchor.component.mjs +5 -5
  189. package/esm2020/lib/router/provider/ngrouter/angular.router.module.mjs +9 -9
  190. package/esm2020/lib/router/provider/router.provider.config.mjs +1 -1
  191. package/esm2020/lib/router/provider/uirouter/anchor.component.mjs +5 -5
  192. package/esm2020/lib/router/provider/uirouter/uirouter.router.module.mjs +9 -9
  193. package/esm2020/lib/screen/screen.module.mjs +4 -4
  194. package/esm2020/lib/screen/screen.service.mjs +5 -4
  195. package/fesm2015/dereekb-dbx-web.mjs +2265 -1270
  196. package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
  197. package/fesm2020/dereekb-dbx-web.mjs +2262 -1268
  198. package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
  199. package/lib/action/_action.scss +8 -35
  200. package/lib/action/action.confirm.directive.d.ts +13 -4
  201. package/lib/action/action.module.d.ts +8 -7
  202. package/lib/action/action.progress.component.d.ts +5 -0
  203. package/lib/action/index.d.ts +2 -1
  204. package/lib/action/key.trigger.directive.d.ts +3 -3
  205. package/lib/action/snackbar/_snackbar.scss +33 -0
  206. package/lib/action/snackbar/action.snackbar.component.d.ts +36 -0
  207. package/lib/action/snackbar/action.snackbar.d.ts +52 -0
  208. package/lib/action/snackbar/action.snackbar.default.d.ts +2 -0
  209. package/lib/action/snackbar/action.snackbar.directive.d.ts +25 -0
  210. package/lib/action/snackbar/action.snackbar.generator.d.ts +32 -0
  211. package/lib/action/snackbar/action.snackbar.module.d.ts +14 -0
  212. package/lib/action/snackbar/action.snackbar.service.d.ts +39 -0
  213. package/lib/action/snackbar/index.d.ts +7 -0
  214. package/lib/action/transition/transition.safety.directive.d.ts +3 -3
  215. package/lib/button/_button.scss +21 -0
  216. package/lib/button/button.component.d.ts +7 -3
  217. package/lib/button/button.module.d.ts +3 -2
  218. package/lib/button/button.spacer.component.d.ts +4 -4
  219. package/lib/button/index.d.ts +1 -0
  220. package/lib/button/progress/bar.button.component.d.ts +6 -0
  221. package/lib/button/progress/bar.button.component.scss +23 -0
  222. package/lib/button/progress/base.progress.button.directive.d.ts +37 -0
  223. package/lib/button/progress/button.progress.config.d.ts +51 -0
  224. package/lib/button/progress/button.progress.module.d.ts +17 -0
  225. package/lib/button/progress/index.d.ts +4 -0
  226. package/lib/button/progress/spinner.button.component.d.ts +9 -0
  227. package/lib/button/progress/spinner.button.component.scss +44 -0
  228. package/lib/dbx-web.module.d.ts +1 -3
  229. package/lib/error/error.action.directive.d.ts +3 -3
  230. package/lib/interaction/dialog/_dialog.scss +18 -2
  231. package/lib/interaction/dialog/abstract.dialog.directive.d.ts +2 -1
  232. package/lib/interaction/dialog/dialog.action.directive.d.ts +21 -0
  233. package/lib/interaction/dialog/dialog.module.d.ts +4 -3
  234. package/lib/interaction/dialog/index.d.ts +1 -0
  235. package/lib/interaction/filter/filter.module.d.ts +1 -1
  236. package/lib/interaction/filter/filter.popover.component.d.ts +2 -2
  237. package/lib/interaction/popover/index.d.ts +0 -1
  238. package/lib/interaction/popover/popover.action.directive.d.ts +15 -24
  239. package/lib/interaction/popover/popover.component.d.ts +3 -3
  240. package/lib/interaction/popover/popover.coordinator.service.d.ts +3 -1
  241. package/lib/interaction/popover/popover.module.d.ts +20 -23
  242. package/lib/interaction/popup/popup.component.d.ts +3 -3
  243. package/lib/interaction/popup/popup.coordinator.service.d.ts +3 -1
  244. package/lib/interaction/popup/popup.module.d.ts +1 -3
  245. package/lib/interaction/prompt/prompt.confirm.dialog.component.d.ts +3 -3
  246. package/lib/interaction/prompt/prompt.module.d.ts +1 -1
  247. package/lib/layout/block/_block.scss +11 -8
  248. package/lib/layout/block/block.layout.module.d.ts +1 -1
  249. package/lib/layout/block/two.block.component.d.ts +5 -1
  250. package/lib/layout/column/_column.scss +119 -3
  251. package/lib/layout/column/two/index.d.ts +1 -0
  252. package/lib/layout/column/two/two.column.back.directive.d.ts +4 -4
  253. package/lib/layout/column/two/two.column.component.d.ts +23 -7
  254. package/lib/layout/column/two/two.column.context.directive.d.ts +18 -0
  255. package/lib/layout/column/two/two.column.full.left.directive.d.ts +4 -4
  256. package/lib/layout/column/two/two.column.head.component.d.ts +3 -3
  257. package/lib/layout/column/two/two.column.module.d.ts +7 -6
  258. package/lib/layout/column/two/two.column.right.component.d.ts +6 -4
  259. package/lib/layout/column/two/two.column.sref.directive.d.ts +6 -7
  260. package/lib/layout/column/two/two.column.store.d.ts +4 -3
  261. package/lib/layout/content/_content.scss +38 -3
  262. package/lib/layout/content/content.box.directive.d.ts +2 -1
  263. package/lib/layout/content/content.container.directive.d.ts +2 -2
  264. package/lib/layout/flex/_flex.scss +4 -0
  265. package/lib/layout/flex/flex.group.directive.d.ts +1 -0
  266. package/lib/layout/list/index.d.ts +4 -0
  267. package/lib/layout/list/list.component.d.ts +14 -5
  268. package/lib/layout/list/list.directive.d.ts +9 -7
  269. package/lib/layout/list/list.layout.module.d.ts +10 -8
  270. package/lib/layout/list/list.view.d.ts +11 -1
  271. package/lib/layout/list/list.view.directive.d.ts +4 -1
  272. package/lib/layout/list/list.view.selection.directive.d.ts +4 -3
  273. package/lib/layout/list/list.view.value.component.d.ts +18 -3
  274. package/lib/layout/list/list.view.value.d.ts +27 -11
  275. package/lib/layout/list/list.view.value.directive.d.ts +9 -6
  276. package/lib/layout/list/list.view.value.item.directive.d.ts +4 -4
  277. package/lib/layout/list/list.view.value.modifier.d.ts +12 -0
  278. package/lib/layout/list/list.view.value.modifier.directive.d.ts +37 -0
  279. package/lib/layout/list/list.view.value.modifier.ripple.directive.d.ts +17 -0
  280. package/lib/layout/list/list.view.value.selection.component.d.ts +10 -11
  281. package/lib/layout/list/list.wrapper.d.ts +11 -0
  282. package/lib/layout/section/section.header.component.d.ts +1 -0
  283. package/lib/layout/section/section.layout.module.d.ts +1 -1
  284. package/lib/layout/style/_style.scss +12 -1
  285. package/lib/layout/text/_text.scss +9 -0
  286. package/lib/layout/text/icon.spacer.component.d.ts +8 -0
  287. package/lib/layout/text/index.d.ts +1 -0
  288. package/lib/layout/text/text.module.d.ts +6 -5
  289. package/lib/loading/index.d.ts +1 -0
  290. package/lib/loading/loading.action.directive.d.ts +19 -0
  291. package/lib/loading/loading.module.d.ts +6 -5
  292. package/lib/router/layout/anchor/_anchor.scss +10 -0
  293. package/lib/router/layout/anchor/anchor.component.d.ts +5 -4
  294. package/lib/router/layout/anchor/anchor.content.component.d.ts +22 -0
  295. package/lib/router/layout/anchor/anchor.module.d.ts +9 -8
  296. package/lib/router/layout/anchor/anchor.segue.directive.d.ts +2 -2
  297. package/lib/router/layout/anchor/index.d.ts +1 -0
  298. package/lib/router/layout/anchorlist/_anchorlist.scss +7 -0
  299. package/lib/router/layout/anchorlist/anchorlist.module.d.ts +4 -4
  300. package/lib/router/layout/index.d.ts +1 -0
  301. package/lib/router/layout/layout.module.d.ts +4 -3
  302. package/lib/router/layout/list/index.d.ts +2 -0
  303. package/lib/router/layout/list/list.module.d.ts +7 -0
  304. package/lib/router/layout/list/router.list.directive.d.ts +17 -0
  305. package/lib/router/layout/navbar/navbar.component.d.ts +4 -4
  306. package/lib/router/layout/navbar/navbar.module.d.ts +4 -4
  307. package/lib/router/layout/sidenav/sidenav.module.d.ts +4 -4
  308. package/lib/router/layout/sidenav/sidenav.page.component.d.ts +4 -2
  309. package/lib/router/provider/ngrouter/angular.router.module.d.ts +1 -1
  310. package/lib/router/provider/router.provider.config.d.ts +2 -2
  311. package/lib/router/provider/uirouter/uirouter.router.module.d.ts +1 -1
  312. package/lib/screen/screen.service.d.ts +2 -2
  313. package/lib/style/_all-core.scss +2 -0
  314. package/lib/style/_all-theme.scss +2 -0
  315. package/lib/style/_all-typography.scss +2 -0
  316. package/lib/style/_config.scss +7 -1
  317. package/lib/style/_function.scss +4 -0
  318. package/lib/style/_root-variables.scss +2 -0
  319. package/lib/style/_variables.scss +4 -0
  320. package/package.json +25 -44
  321. package/esm2020/lib/action/action.snackbar.component.mjs +0 -104
  322. package/esm2020/lib/interaction/popover/popover.action.button.directive.mjs +0 -29
  323. package/lib/action/action.snackbar.component.d.ts +0 -22
  324. package/lib/interaction/popover/popover.action.button.directive.d.ts +0 -14
  325. package/lib/layout/column/two.scss +0 -114
@@ -1,114 +0,0 @@
1
- @import 'shared';
2
-
3
- .two-column {
4
- height: 100%;
5
- max-width: 100%;
6
- display: flex;
7
- flex-direction: row;
8
- overflow-x: hidden;
9
- }
10
-
11
- .left-column,
12
- .right-column {
13
- @include fillContentHeight(1, 0);
14
-
15
- .dbx-section-page-two & {
16
- @include fillContentWithAppPageHeaderHeight();
17
- }
18
- }
19
-
20
- .left-column {
21
- @include mat-elevation(1);
22
-
23
- width: $two-left-column-width;
24
- flex: 0 0 auto;
25
-
26
- overflow: auto;
27
- // background: red;
28
-
29
- .two-column-reverse-sizing & {
30
- width: calc(100% - #{$two-left-column-width});
31
- overflow: hidden;
32
- }
33
-
34
- .full-left & {
35
- width: 100% !important;
36
-
37
- .right-shown & {
38
- width: $two-left-column-width;
39
- }
40
- }
41
-
42
- @include if-small-screen {
43
- width: 100% !important;
44
-
45
- .right-shown & {
46
- display: none !important;
47
- }
48
- }
49
- }
50
-
51
- .right-column {
52
- flex: 1 1 auto;
53
- max-width: calc(100% - #{$two-left-column-width});
54
- overflow: hidden;
55
- // background: green;
56
-
57
- .two-column-reverse-sizing & {
58
- max-width: $two-left-column-width;
59
- }
60
-
61
- @include if-small-screen {
62
- max-width: 100% !important;
63
- width: 100% !important;
64
- padding-left: 0 !important;
65
- }
66
- }
67
-
68
- .dbx-two-columns-head {
69
- padding: 0 6px;
70
- border-bottom: 1px solid rgba(0, 0, 0, 0.14);
71
- height: $second-navbar-height;
72
-
73
- display: flex;
74
- align-items: center;
75
- overflow-y: hidden;
76
-
77
- &.block {
78
- display: block;
79
- }
80
-
81
- &.full {
82
- padding: 0;
83
- }
84
- }
85
-
86
- .two-columns-right {
87
- height: 100%;
88
-
89
- .two-columns-right-content {
90
- height: calc(100% - #{$second-navbar-height});
91
- overflow-x: hidden;
92
- overflow-y: auto;
93
- }
94
-
95
- .two-columns-right-content-bottom {
96
- min-height: 12px;
97
- height: 3vh;
98
- }
99
-
100
- $two-columns-right-padding-size: 6px;
101
-
102
- .back-button {
103
- margin-right: $two-columns-right-padding-size;
104
- }
105
-
106
- .right-spacer {
107
- padding-right: 5vw;
108
- }
109
-
110
- .side-spacer {
111
- padding-left: $two-columns-right-padding-size;
112
- }
113
-
114
- }