@bravobit/bb-foundation 0.15.6 → 0.16.3

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 (388) hide show
  1. package/auth/lib/auth.interceptor.d.ts +1 -1
  2. package/auth/lib/auth.service.d.ts +1 -1
  3. package/auth/package.json +5 -5
  4. package/collections/lib/collection.d.ts +1 -1
  5. package/collections/package.json +5 -5
  6. package/controls/bravobit-bb-foundation-controls.d.ts +5 -0
  7. package/controls/lib/checkbox/checkbox/checkbox.component.d.ts +47 -0
  8. package/controls/lib/checkbox/checkbox-group/checkbox-group.component.d.ts +18 -0
  9. package/controls/lib/checkbox/checkbox.module.d.ts +9 -0
  10. package/controls/lib/controls.module.d.ts +7 -0
  11. package/controls/package.json +10 -0
  12. package/controls/public_api.d.ts +4 -0
  13. package/dashboard/package.json +5 -5
  14. package/dialog/package.json +5 -5
  15. package/elements/package.json +5 -5
  16. package/{esm2015/auth/bravobit-bb-foundation-auth.js → esm2020/auth/bravobit-bb-foundation-auth.mjs} +0 -0
  17. package/esm2020/auth/lib/auth.interceptor.mjs +94 -0
  18. package/{esm2015/auth/lib/auth.module.js → esm2020/auth/lib/auth.module.mjs} +5 -5
  19. package/esm2020/auth/lib/auth.service.mjs +276 -0
  20. package/esm2020/auth/lib/auth.session.mjs +131 -0
  21. package/{esm2015/auth/lib/directives/authenticated.directive.js → esm2020/auth/lib/directives/authenticated.directive.mjs} +5 -6
  22. package/esm2020/auth/lib/directives/permission.directive.mjs +80 -0
  23. package/esm2020/auth/lib/directives/role.directive.mjs +37 -0
  24. package/esm2020/auth/lib/guards/anonymous.guard.mjs +34 -0
  25. package/esm2020/auth/lib/guards/authenticated.guard.mjs +35 -0
  26. package/{esm2015/auth/lib/helpers/jwt.helper.js → esm2020/auth/lib/helpers/jwt.helper.mjs} +3 -3
  27. package/{esm2015/auth/lib/helpers/mapper.helper.js → esm2020/auth/lib/helpers/mapper.helper.mjs} +4 -4
  28. package/{esm2015/auth/lib/interfaces/config.interface.js → esm2020/auth/lib/interfaces/config.interface.mjs} +0 -0
  29. package/{esm2015/auth/lib/interfaces/mapper.interface.js → esm2020/auth/lib/interfaces/mapper.interface.mjs} +0 -0
  30. package/{esm2015/auth/lib/interfaces/provider.interface.js → esm2020/auth/lib/interfaces/provider.interface.mjs} +0 -0
  31. package/{esm2015/auth/lib/interfaces/token.interface.js → esm2020/auth/lib/interfaces/token.interface.mjs} +0 -0
  32. package/esm2020/auth/lib/permissions.service.mjs +56 -0
  33. package/esm2020/auth/lib/providers/email.provider.mjs +25 -0
  34. package/esm2020/auth/lib/providers/verify.provider.mjs +19 -0
  35. package/{esm2015/auth/lib/tokens/use-authorization.token.js → esm2020/auth/lib/tokens/use-authorization.token.mjs} +0 -0
  36. package/{esm2015/auth/public_api.js → esm2020/auth/public_api.mjs} +0 -0
  37. package/{esm2015/bravobit-bb-foundation.js → esm2020/bravobit-bb-foundation.mjs} +0 -0
  38. package/{esm2015/collections/bravobit-bb-foundation-collections.js → esm2020/collections/bravobit-bb-foundation-collections.mjs} +0 -0
  39. package/esm2020/collections/lib/collection.mjs +102 -0
  40. package/{esm2015/collections/lib/collections.module.js → esm2020/collections/lib/collections.module.mjs} +5 -5
  41. package/esm2020/collections/lib/components/collections-pager/collections-pager.component.mjs +123 -0
  42. package/esm2020/collections/lib/components/collections-viewer/collections-viewer.component.mjs +31 -0
  43. package/{esm2015/collections/lib/components/collections.directive.js → esm2020/collections/lib/components/collections.directive.mjs} +13 -13
  44. package/{esm2015/collections/lib/interfaces/collection.interface.js → esm2020/collections/lib/interfaces/collection.interface.mjs} +0 -0
  45. package/esm2020/collections/lib/providers/api-collection.provider.mjs +71 -0
  46. package/esm2020/collections/lib/providers/collection.provider.mjs +13 -0
  47. package/{esm2015/collections/lib/providers/local-collection.provider.js → esm2020/collections/lib/providers/local-collection.provider.mjs} +0 -0
  48. package/{esm2015/collections/public_api.js → esm2020/collections/public_api.mjs} +0 -0
  49. package/esm2020/controls/bravobit-bb-foundation-controls.mjs +5 -0
  50. package/esm2020/controls/lib/checkbox/checkbox/checkbox.component.mjs +153 -0
  51. package/esm2020/controls/lib/checkbox/checkbox-group/checkbox-group.component.mjs +48 -0
  52. package/esm2020/controls/lib/checkbox/checkbox.module.mjs +19 -0
  53. package/esm2020/controls/lib/controls.module.mjs +16 -0
  54. package/esm2020/controls/public_api.mjs +5 -0
  55. package/{esm2015/dashboard/bravobit-bb-foundation-dashboard.js → esm2020/dashboard/bravobit-bb-foundation-dashboard.mjs} +0 -0
  56. package/esm2020/dashboard/lib/dashboard/dashboard.component.mjs +56 -0
  57. package/esm2020/dashboard/lib/dashboard-header/dashboard-header.component.mjs +30 -0
  58. package/esm2020/dashboard/lib/dashboard-menu/dashboard-menu.component.mjs +31 -0
  59. package/esm2020/dashboard/lib/dashboard-menu-item/dashboard-menu-item.component.mjs +29 -0
  60. package/esm2020/dashboard/lib/dashboard-sidebar/dashboard-sidebar.component.mjs +75 -0
  61. package/esm2020/dashboard/lib/dashboard-sidebar-group/dashboard-sidebar-group.component.mjs +99 -0
  62. package/esm2020/dashboard/lib/dashboard-sidebar-item/dashboard-sidebar-item.component.mjs +62 -0
  63. package/{esm2015/dashboard/lib/dashboard.module.js → esm2020/dashboard/lib/dashboard.module.mjs} +5 -5
  64. package/{esm2015/dashboard/public_api.js → esm2020/dashboard/public_api.mjs} +0 -0
  65. package/{esm2015/dialog/bravobit-bb-foundation-dialog.js → esm2020/dialog/bravobit-bb-foundation-dialog.mjs} +0 -0
  66. package/esm2020/dialog/lib/dialog-actions/dialog-actions.component.mjs +12 -0
  67. package/esm2020/dialog/lib/dialog-confirm/dialog-confirm.component.mjs +37 -0
  68. package/{esm2015/dialog/lib/dialog-container/dialog-container.component.js → esm2020/dialog/lib/dialog-container/dialog-container.component.mjs} +6 -15
  69. package/esm2020/dialog/lib/dialog-header/dialog-header.component.mjs +25 -0
  70. package/esm2020/dialog/lib/dialog-link/dialog-link.component.mjs +11 -0
  71. package/esm2020/dialog/lib/dialog-modal/dialog-modal.component.mjs +46 -0
  72. package/esm2020/dialog/lib/dialog-overlay/dialog-overlay.component.mjs +134 -0
  73. package/{esm2015/dialog/lib/dialog.injector.js → esm2020/dialog/lib/dialog.injector.mjs} +0 -0
  74. package/{esm2015/dialog/lib/dialog.insertion.js → esm2020/dialog/lib/dialog.insertion.mjs} +4 -4
  75. package/{esm2015/dialog/lib/dialog.interfaces.js → esm2020/dialog/lib/dialog.interfaces.mjs} +0 -0
  76. package/{esm2015/dialog/lib/dialog.module.js → esm2020/dialog/lib/dialog.module.mjs} +5 -9
  77. package/{esm2015/dialog/lib/dialog.ref.js → esm2020/dialog/lib/dialog.ref.mjs} +0 -0
  78. package/{esm2015/dialog/lib/dialog.service.js → esm2020/dialog/lib/dialog.service.mjs} +5 -5
  79. package/{esm2015/dialog/public_api.js → esm2020/dialog/public_api.mjs} +0 -0
  80. package/{esm2015/elements/bravobit-bb-foundation-elements.js → esm2020/elements/bravobit-bb-foundation-elements.mjs} +0 -0
  81. package/esm2020/elements/lib/avatar/avatar.component.mjs +142 -0
  82. package/esm2020/elements/lib/button/button.component.mjs +61 -0
  83. package/esm2020/elements/lib/checkbox/checkbox.component.mjs +73 -0
  84. package/esm2020/elements/lib/date-picker/date-picker.component.mjs +304 -0
  85. package/{esm2015/elements/lib/directives/addon.directive.js → esm2020/elements/lib/directives/addon.directive.mjs} +7 -7
  86. package/esm2020/elements/lib/directives/autosize.directive.mjs +72 -0
  87. package/{esm2015/elements/lib/directives/focus-trap.directive.js → esm2020/elements/lib/directives/focus-trap.directive.mjs} +4 -4
  88. package/{esm2015/elements/lib/directives/focus.directive.js → esm2020/elements/lib/directives/focus.directive.mjs} +4 -4
  89. package/esm2020/elements/lib/directives/form-submit.directive.mjs +50 -0
  90. package/esm2020/elements/lib/directives/input.directive.mjs +136 -0
  91. package/{esm2015/elements/lib/directives/template.directive.js → esm2020/elements/lib/directives/template.directive.mjs} +4 -4
  92. package/esm2020/elements/lib/dropdown/dropdown.component.mjs +100 -0
  93. package/{esm2015/elements/lib/elements.interfaces.js → esm2020/elements/lib/elements.interfaces.mjs} +0 -0
  94. package/{esm2015/elements/lib/elements.module.js → esm2020/elements/lib/elements.module.mjs} +5 -5
  95. package/esm2020/elements/lib/file-picker/file-picker.component.mjs +236 -0
  96. package/esm2020/elements/lib/form-control/form-control.component.mjs +49 -0
  97. package/esm2020/elements/lib/form-error/form-error.component.mjs +108 -0
  98. package/esm2020/elements/lib/form-group/form-group.component.mjs +18 -0
  99. package/esm2020/elements/lib/icon/icon.component.mjs +102 -0
  100. package/esm2020/elements/lib/image-picker/image-picker.component.mjs +106 -0
  101. package/esm2020/elements/lib/pipes/file-image.pipe.mjs +42 -0
  102. package/{esm2015/elements/lib/pipes/file-size.pipe.js → esm2020/elements/lib/pipes/file-size.pipe.mjs} +4 -4
  103. package/esm2020/elements/lib/pipes/relative-time.pipe.mjs +94 -0
  104. package/esm2020/elements/lib/spinner/spinner.component.mjs +25 -0
  105. package/esm2020/elements/lib/tag/tag.component.mjs +18 -0
  106. package/{esm2015/elements/public_api.js → esm2020/elements/public_api.mjs} +0 -0
  107. package/{esm2015/http/bravobit-bb-foundation-http.js → esm2020/http/bravobit-bb-foundation-http.mjs} +0 -0
  108. package/esm2020/http/lib/classes/http.config.mjs +29 -0
  109. package/esm2020/http/lib/classes/http.error.mjs +20 -0
  110. package/{esm2015/http/lib/http.interfaces.js → esm2020/http/lib/http.interfaces.mjs} +0 -0
  111. package/{esm2015/http/lib/http.module.js → esm2020/http/lib/http.module.mjs} +5 -5
  112. package/esm2020/http/lib/interceptors/base-url.interceptor.mjs +50 -0
  113. package/esm2020/http/lib/interceptors/error.interceptor.mjs +32 -0
  114. package/{esm2015/http/public_api.js → esm2020/http/public_api.mjs} +0 -0
  115. package/{esm2015/lib/core/miscellaneous/regex.js → esm2020/lib/core/miscellaneous/regex.mjs} +0 -0
  116. package/esm2020/lib/core/miscellaneous/validator.mjs +85 -0
  117. package/esm2020/lib/core/mixins/can-disable.mjs +16 -0
  118. package/{esm2015/lib/core/mixins/can-hide-errors.js → esm2020/lib/core/mixins/can-hide-errors.mjs} +2 -2
  119. package/esm2020/lib/core/mixins/can-load.mjs +16 -0
  120. package/{esm2015/lib/core/mixins/constructor.js → esm2020/lib/core/mixins/constructor.mjs} +0 -0
  121. package/esm2020/lib/core/mixins/has-error.mjs +16 -0
  122. package/esm2020/lib/core/mixins/is-focused.mjs +16 -0
  123. package/esm2020/lib/core/mixins/is-grouped.mjs +16 -0
  124. package/esm2020/lib/core/mixins/is-readonly.mjs +16 -0
  125. package/esm2020/lib/core/mixins/is-required.mjs +16 -0
  126. package/esm2020/lib/core/services/clipboard.service.mjs +70 -0
  127. package/esm2020/lib/core/services/exif.service.mjs +163 -0
  128. package/esm2020/lib/core/services/file-loader.service.mjs +87 -0
  129. package/esm2020/lib/core/services/image-converter.service.mjs +123 -0
  130. package/{esm2015/lib/core/services/languages.service.js → esm2020/lib/core/services/languages.service.mjs} +4 -4
  131. package/{esm2015/lib/core/services/network.service.js → esm2020/lib/core/services/network.service.mjs} +5 -6
  132. package/esm2020/lib/core/services/patch.service.mjs +63 -0
  133. package/{esm2015/lib/core/services/platform.service.js → esm2020/lib/core/services/platform.service.mjs} +5 -5
  134. package/{esm2015/lib/core/tokens/accept-language.token.js → esm2020/lib/core/tokens/accept-language.token.mjs} +0 -0
  135. package/{esm2015/lib/core/tokens/base-url.token.js → esm2020/lib/core/tokens/base-url.token.mjs} +0 -0
  136. package/{esm2015/lib/core/tokens/cookie.token.js → esm2020/lib/core/tokens/cookie.token.mjs} +0 -0
  137. package/{esm2015/lib/core/tokens/location.token.js → esm2020/lib/core/tokens/location.token.mjs} +0 -0
  138. package/{esm2015/lib/core/tokens/navigator.token.js → esm2020/lib/core/tokens/navigator.token.mjs} +0 -0
  139. package/{esm2015/lib/core/tokens/window.token.js → esm2020/lib/core/tokens/window.token.mjs} +0 -0
  140. package/{esm2015/localize/bravobit-bb-foundation-localize.js → esm2020/localize/bravobit-bb-foundation-localize.mjs} +0 -0
  141. package/{esm2015/localize/lib/functions/date.function.js → esm2020/localize/lib/functions/date.function.mjs} +0 -0
  142. package/{esm2015/localize/lib/functions/lowercase.function.js → esm2020/localize/lib/functions/lowercase.function.mjs} +0 -0
  143. package/{esm2015/localize/lib/functions/uppercase.function.js → esm2020/localize/lib/functions/uppercase.function.mjs} +0 -0
  144. package/{esm2015/localize/lib/handlers/missing.handler.js → esm2020/localize/lib/handlers/missing.handler.mjs} +0 -0
  145. package/{esm2015/localize/lib/interfaces/config.interfaces.js → esm2020/localize/lib/interfaces/config.interfaces.mjs} +0 -0
  146. package/{esm2015/localize/lib/interfaces/dictionary.interfaces.js → esm2020/localize/lib/interfaces/dictionary.interfaces.mjs} +0 -0
  147. package/{esm2015/localize/lib/interfaces/functions.interfaces.js → esm2020/localize/lib/interfaces/functions.interfaces.mjs} +0 -0
  148. package/{esm2015/localize/lib/interfaces/handlers.interfaces.js → esm2020/localize/lib/interfaces/handlers.interfaces.mjs} +0 -0
  149. package/{esm2015/localize/lib/interfaces/options.interfaces.js → esm2020/localize/lib/interfaces/options.interfaces.mjs} +0 -0
  150. package/{esm2015/localize/lib/localizations/dutch.localization.js → esm2020/localize/lib/localizations/dutch.localization.mjs} +0 -0
  151. package/{esm2015/localize/lib/localizations/english.localization.js → esm2020/localize/lib/localizations/english.localization.mjs} +0 -0
  152. package/esm2020/localize/lib/localize.dictionary.mjs +135 -0
  153. package/{esm2015/localize/lib/localize.module.js → esm2020/localize/lib/localize.module.mjs} +5 -5
  154. package/{esm2015/localize/lib/localize.pipe.js → esm2020/localize/lib/localize.pipe.mjs} +5 -5
  155. package/esm2020/localize/lib/localize.service.mjs +277 -0
  156. package/esm2020/localize/lib/views/localize-string/localize-string.component.mjs +88 -0
  157. package/{esm2015/localize/lib/views/localize-template-or-string.directive.js → esm2020/localize/lib/views/localize-template-or-string.directive.mjs} +4 -4
  158. package/{esm2015/localize/lib/views/localize-template.directive.js → esm2020/localize/lib/views/localize-template.directive.mjs} +4 -4
  159. package/{esm2015/localize/public_api.js → esm2020/localize/public_api.mjs} +0 -0
  160. package/{esm2015/notifications/bravobit-bb-foundation-notifications.js → esm2020/notifications/bravobit-bb-foundation-notifications.mjs} +0 -0
  161. package/esm2020/notifications/lib/notifications-item/notifications-item.component.mjs +100 -0
  162. package/esm2020/notifications/lib/notifications-list/notifications-list.component.mjs +47 -0
  163. package/{esm2015/notifications/lib/notifications.animations.js → esm2020/notifications/lib/notifications.animations.mjs} +0 -0
  164. package/{esm2015/notifications/lib/notifications.injector.js → esm2020/notifications/lib/notifications.injector.mjs} +0 -0
  165. package/{esm2015/notifications/lib/notifications.interfaces.js → esm2020/notifications/lib/notifications.interfaces.mjs} +0 -0
  166. package/{esm2015/notifications/lib/notifications.module.js → esm2020/notifications/lib/notifications.module.mjs} +6 -7
  167. package/{esm2015/notifications/lib/notifications.service.js → esm2020/notifications/lib/notifications.service.mjs} +5 -5
  168. package/{esm2015/notifications/public_api.js → esm2020/notifications/public_api.mjs} +0 -0
  169. package/{esm2015/public_api.js → esm2020/public_api.mjs} +1 -2
  170. package/{esm2015/recaptcha/bravobit-bb-foundation-recaptcha.js → esm2020/recaptcha/bravobit-bb-foundation-recaptcha.mjs} +0 -0
  171. package/esm2020/recaptcha/lib/recaptcha/recaptcha.component.mjs +185 -0
  172. package/esm2020/recaptcha/lib/recaptcha-loader.service.mjs +90 -0
  173. package/{esm2015/recaptcha/lib/recaptcha.interface.js → esm2020/recaptcha/lib/recaptcha.interface.mjs} +0 -0
  174. package/{esm2015/recaptcha/lib/recaptcha.module.js → esm2020/recaptcha/lib/recaptcha.module.mjs} +5 -5
  175. package/{esm2015/recaptcha/public_api.js → esm2020/recaptcha/public_api.mjs} +0 -0
  176. package/{esm2015/rxjs/bravobit-bb-foundation-rxjs.js → esm2020/rxjs/bravobit-bb-foundation-rxjs.mjs} +0 -0
  177. package/esm2020/rxjs/lib/operators/combine-latest-map.operator.mjs +10 -0
  178. package/{esm2015/rxjs/lib/operators/filter-nil.operator.js → esm2020/rxjs/lib/operators/filter-nil.operator.mjs} +0 -0
  179. package/{esm2015/rxjs/public_api.js → esm2020/rxjs/public_api.mjs} +0 -0
  180. package/{esm2015/storage/bravobit-bb-foundation-storage.js → esm2020/storage/bravobit-bb-foundation-storage.mjs} +0 -0
  181. package/{esm2015/storage/lib/interfaces/attributes.interface.js → esm2020/storage/lib/interfaces/attributes.interface.mjs} +0 -0
  182. package/{esm2015/storage/lib/interfaces/memory.interface.js → esm2020/storage/lib/interfaces/memory.interface.mjs} +0 -0
  183. package/{esm2015/storage/lib/interfaces/strategy.interface.js → esm2020/storage/lib/interfaces/strategy.interface.mjs} +0 -0
  184. package/esm2020/storage/lib/storage.service.mjs +109 -0
  185. package/esm2020/storage/lib/strategies/cookie-storage.strategy.mjs +142 -0
  186. package/{esm2015/storage/lib/strategies/memory-storage.strategy.js → esm2020/storage/lib/strategies/memory-storage.strategy.mjs} +2 -2
  187. package/esm2020/storage/lib/strategies/polyfill-storage.strategy.mjs +102 -0
  188. package/{esm2015/storage/public_api.js → esm2020/storage/public_api.mjs} +0 -0
  189. package/{esm2015/table/bravobit-bb-foundation-table.js → esm2020/table/bravobit-bb-foundation-table.mjs} +0 -0
  190. package/esm2020/table/lib/components/table/table.component.mjs +191 -0
  191. package/esm2020/table/lib/components/table-cell/table-cell.component.mjs +11 -0
  192. package/esm2020/table/lib/components/table-header-cell/table-header-cell.component.mjs +131 -0
  193. package/esm2020/table/lib/components/table-pager/table-pager.component.mjs +136 -0
  194. package/esm2020/table/lib/data/datasource.data.mjs +32 -0
  195. package/esm2020/table/lib/data/generic.data.mjs +72 -0
  196. package/{esm2015/table/lib/interfaces/datasource.interface.js → esm2020/table/lib/interfaces/datasource.interface.mjs} +0 -0
  197. package/{esm2015/table/lib/interfaces/table.interfaces.js → esm2020/table/lib/interfaces/table.interfaces.mjs} +0 -0
  198. package/{esm2015/table/lib/table.module.js → esm2020/table/lib/table.module.mjs} +5 -5
  199. package/{esm2015/table/public_api.js → esm2020/table/public_api.mjs} +0 -0
  200. package/fesm2015/{bravobit-bb-foundation-auth.js → bravobit-bb-foundation-auth.mjs} +79 -68
  201. package/fesm2015/bravobit-bb-foundation-auth.mjs.map +1 -0
  202. package/fesm2015/{bravobit-bb-foundation-collections.js → bravobit-bb-foundation-collections.mjs} +45 -57
  203. package/fesm2015/bravobit-bb-foundation-collections.mjs.map +1 -0
  204. package/fesm2015/bravobit-bb-foundation-controls.mjs +235 -0
  205. package/fesm2015/bravobit-bb-foundation-controls.mjs.map +1 -0
  206. package/fesm2015/bravobit-bb-foundation-dashboard.mjs +416 -0
  207. package/fesm2015/bravobit-bb-foundation-dashboard.mjs.map +1 -0
  208. package/fesm2015/{bravobit-bb-foundation-dialog.js → bravobit-bb-foundation-dialog.mjs} +45 -106
  209. package/fesm2015/bravobit-bb-foundation-dialog.mjs.map +1 -0
  210. package/fesm2015/{bravobit-bb-foundation-elements.js → bravobit-bb-foundation-elements.mjs} +195 -303
  211. package/fesm2015/bravobit-bb-foundation-elements.mjs.map +1 -0
  212. package/fesm2015/{bravobit-bb-foundation-http.js → bravobit-bb-foundation-http.mjs} +18 -16
  213. package/fesm2015/bravobit-bb-foundation-http.mjs.map +1 -0
  214. package/fesm2015/{bravobit-bb-foundation-localize.js → bravobit-bb-foundation-localize.mjs} +63 -69
  215. package/fesm2015/bravobit-bb-foundation-localize.mjs.map +1 -0
  216. package/fesm2015/bravobit-bb-foundation-notifications.mjs +377 -0
  217. package/fesm2015/bravobit-bb-foundation-notifications.mjs.map +1 -0
  218. package/fesm2015/{bravobit-bb-foundation-recaptcha.js → bravobit-bb-foundation-recaptcha.mjs} +40 -47
  219. package/fesm2015/bravobit-bb-foundation-recaptcha.mjs.map +1 -0
  220. package/fesm2015/{bravobit-bb-foundation-rxjs.js → bravobit-bb-foundation-rxjs.mjs} +1 -1
  221. package/fesm2015/bravobit-bb-foundation-rxjs.mjs.map +1 -0
  222. package/fesm2015/{bravobit-bb-foundation-storage.js → bravobit-bb-foundation-storage.mjs} +12 -10
  223. package/fesm2015/bravobit-bb-foundation-storage.mjs.map +1 -0
  224. package/fesm2015/bravobit-bb-foundation-table.mjs +603 -0
  225. package/fesm2015/bravobit-bb-foundation-table.mjs.map +1 -0
  226. package/fesm2015/{bravobit-bb-foundation.js → bravobit-bb-foundation.mjs} +76 -69
  227. package/fesm2015/bravobit-bb-foundation.mjs.map +1 -0
  228. package/fesm2020/bravobit-bb-foundation-auth.mjs +928 -0
  229. package/fesm2020/bravobit-bb-foundation-auth.mjs.map +1 -0
  230. package/fesm2020/bravobit-bb-foundation-collections.mjs +441 -0
  231. package/fesm2020/bravobit-bb-foundation-collections.mjs.map +1 -0
  232. package/fesm2020/bravobit-bb-foundation-controls.mjs +233 -0
  233. package/fesm2020/bravobit-bb-foundation-controls.mjs.map +1 -0
  234. package/fesm2020/bravobit-bb-foundation-dashboard.mjs +404 -0
  235. package/fesm2020/bravobit-bb-foundation-dashboard.mjs.map +1 -0
  236. package/fesm2020/bravobit-bb-foundation-dialog.mjs +584 -0
  237. package/fesm2020/bravobit-bb-foundation-dialog.mjs.map +1 -0
  238. package/fesm2020/bravobit-bb-foundation-elements.mjs +1994 -0
  239. package/fesm2020/bravobit-bb-foundation-elements.mjs.map +1 -0
  240. package/fesm2020/bravobit-bb-foundation-http.mjs +168 -0
  241. package/fesm2020/bravobit-bb-foundation-http.mjs.map +1 -0
  242. package/fesm2020/bravobit-bb-foundation-localize.mjs +832 -0
  243. package/fesm2020/bravobit-bb-foundation-localize.mjs.map +1 -0
  244. package/fesm2020/bravobit-bb-foundation-notifications.mjs +375 -0
  245. package/fesm2020/bravobit-bb-foundation-notifications.mjs.map +1 -0
  246. package/fesm2020/bravobit-bb-foundation-recaptcha.mjs +300 -0
  247. package/fesm2020/bravobit-bb-foundation-recaptcha.mjs.map +1 -0
  248. package/fesm2020/bravobit-bb-foundation-rxjs.mjs +21 -0
  249. package/fesm2020/bravobit-bb-foundation-rxjs.mjs.map +1 -0
  250. package/fesm2020/bravobit-bb-foundation-storage.mjs +413 -0
  251. package/fesm2020/bravobit-bb-foundation-storage.mjs.map +1 -0
  252. package/fesm2020/bravobit-bb-foundation-table.mjs +592 -0
  253. package/fesm2020/bravobit-bb-foundation-table.mjs.map +1 -0
  254. package/fesm2020/bravobit-bb-foundation.mjs +892 -0
  255. package/fesm2020/bravobit-bb-foundation.mjs.map +1 -0
  256. package/http/package.json +5 -5
  257. package/localize/package.json +5 -5
  258. package/notifications/package.json +5 -5
  259. package/package.json +126 -8
  260. package/public_api.d.ts +0 -1
  261. package/recaptcha/package.json +5 -5
  262. package/rxjs/package.json +5 -5
  263. package/storage/package.json +5 -5
  264. package/table/package.json +5 -5
  265. package/bundles/bravobit-bb-foundation-auth.umd.js +0 -1483
  266. package/bundles/bravobit-bb-foundation-auth.umd.js.map +0 -1
  267. package/bundles/bravobit-bb-foundation-collections.umd.js +0 -868
  268. package/bundles/bravobit-bb-foundation-collections.umd.js.map +0 -1
  269. package/bundles/bravobit-bb-foundation-dashboard.umd.js +0 -876
  270. package/bundles/bravobit-bb-foundation-dashboard.umd.js.map +0 -1
  271. package/bundles/bravobit-bb-foundation-dialog.umd.js +0 -716
  272. package/bundles/bravobit-bb-foundation-dialog.umd.js.map +0 -1
  273. package/bundles/bravobit-bb-foundation-elements.umd.js +0 -2768
  274. package/bundles/bravobit-bb-foundation-elements.umd.js.map +0 -1
  275. package/bundles/bravobit-bb-foundation-http.umd.js +0 -535
  276. package/bundles/bravobit-bb-foundation-http.umd.js.map +0 -1
  277. package/bundles/bravobit-bb-foundation-localize.umd.js +0 -1292
  278. package/bundles/bravobit-bb-foundation-localize.umd.js.map +0 -1
  279. package/bundles/bravobit-bb-foundation-notifications.umd.js +0 -794
  280. package/bundles/bravobit-bb-foundation-notifications.umd.js.map +0 -1
  281. package/bundles/bravobit-bb-foundation-recaptcha.umd.js +0 -683
  282. package/bundles/bravobit-bb-foundation-recaptcha.umd.js.map +0 -1
  283. package/bundles/bravobit-bb-foundation-rxjs.umd.js +0 -29
  284. package/bundles/bravobit-bb-foundation-rxjs.umd.js.map +0 -1
  285. package/bundles/bravobit-bb-foundation-storage.umd.js +0 -799
  286. package/bundles/bravobit-bb-foundation-storage.umd.js.map +0 -1
  287. package/bundles/bravobit-bb-foundation-table.umd.js +0 -1084
  288. package/bundles/bravobit-bb-foundation-table.umd.js.map +0 -1
  289. package/bundles/bravobit-bb-foundation.umd.js +0 -1440
  290. package/bundles/bravobit-bb-foundation.umd.js.map +0 -1
  291. package/esm2015/auth/lib/auth.interceptor.js +0 -95
  292. package/esm2015/auth/lib/auth.service.js +0 -299
  293. package/esm2015/auth/lib/auth.session.js +0 -136
  294. package/esm2015/auth/lib/directives/permission.directive.js +0 -81
  295. package/esm2015/auth/lib/directives/role.directive.js +0 -38
  296. package/esm2015/auth/lib/guards/anonymous.guard.js +0 -35
  297. package/esm2015/auth/lib/guards/authenticated.guard.js +0 -36
  298. package/esm2015/auth/lib/permissions.service.js +0 -58
  299. package/esm2015/auth/lib/providers/email.provider.js +0 -26
  300. package/esm2015/auth/lib/providers/verify.provider.js +0 -20
  301. package/esm2015/collections/lib/collection.js +0 -104
  302. package/esm2015/collections/lib/components/collections-pager/collections-pager.component.js +0 -136
  303. package/esm2015/collections/lib/components/collections-viewer/collections-viewer.component.js +0 -39
  304. package/esm2015/collections/lib/providers/api-collection.provider.js +0 -69
  305. package/esm2015/collections/lib/providers/collection.provider.js +0 -14
  306. package/esm2015/dashboard/lib/dashboard/dashboard.component.js +0 -64
  307. package/esm2015/dashboard/lib/dashboard-header/dashboard-header.component.js +0 -41
  308. package/esm2015/dashboard/lib/dashboard-menu/dashboard-menu.component.js +0 -39
  309. package/esm2015/dashboard/lib/dashboard-menu-item/dashboard-menu-item.component.js +0 -38
  310. package/esm2015/dashboard/lib/dashboard-sidebar/dashboard-sidebar.component.js +0 -83
  311. package/esm2015/dashboard/lib/dashboard-sidebar-group/dashboard-sidebar-group.component.js +0 -110
  312. package/esm2015/dashboard/lib/dashboard-sidebar-item/dashboard-sidebar-item.component.js +0 -71
  313. package/esm2015/dialog/lib/dialog-actions/dialog-actions.component.js +0 -20
  314. package/esm2015/dialog/lib/dialog-confirm/dialog-confirm.component.js +0 -45
  315. package/esm2015/dialog/lib/dialog-header/dialog-header.component.js +0 -33
  316. package/esm2015/dialog/lib/dialog-link/dialog-link.component.js +0 -19
  317. package/esm2015/dialog/lib/dialog-modal/dialog-modal.component.js +0 -54
  318. package/esm2015/dialog/lib/dialog-overlay/dialog-overlay.component.js +0 -143
  319. package/esm2015/elements/lib/avatar/avatar.component.js +0 -151
  320. package/esm2015/elements/lib/button/button.component.js +0 -79
  321. package/esm2015/elements/lib/checkbox/checkbox.component.js +0 -83
  322. package/esm2015/elements/lib/date-picker/date-picker.component.js +0 -322
  323. package/esm2015/elements/lib/directives/autosize.directive.js +0 -74
  324. package/esm2015/elements/lib/directives/form-submit.directive.js +0 -53
  325. package/esm2015/elements/lib/directives/input.directive.js +0 -139
  326. package/esm2015/elements/lib/dropdown/dropdown.component.js +0 -111
  327. package/esm2015/elements/lib/file-picker/file-picker.component.js +0 -247
  328. package/esm2015/elements/lib/form-control/form-control.component.js +0 -58
  329. package/esm2015/elements/lib/form-error/form-error.component.js +0 -116
  330. package/esm2015/elements/lib/form-group/form-group.component.js +0 -27
  331. package/esm2015/elements/lib/icon/icon.component.js +0 -110
  332. package/esm2015/elements/lib/image-picker/image-picker.component.js +0 -119
  333. package/esm2015/elements/lib/pipes/file-image.pipe.js +0 -45
  334. package/esm2015/elements/lib/pipes/relative-time.pipe.js +0 -96
  335. package/esm2015/elements/lib/spinner/spinner.component.js +0 -34
  336. package/esm2015/elements/lib/tag/tag.component.js +0 -26
  337. package/esm2015/http/lib/classes/http.config.js +0 -31
  338. package/esm2015/http/lib/classes/http.error.js +0 -21
  339. package/esm2015/http/lib/interceptors/base-url.interceptor.js +0 -52
  340. package/esm2015/http/lib/interceptors/error.interceptor.js +0 -33
  341. package/esm2015/lib/core/coercions/boolean-coercion.js +0 -4
  342. package/esm2015/lib/core/miscellaneous/validator.js +0 -86
  343. package/esm2015/lib/core/mixins/can-disable.js +0 -16
  344. package/esm2015/lib/core/mixins/can-load.js +0 -16
  345. package/esm2015/lib/core/mixins/has-error.js +0 -16
  346. package/esm2015/lib/core/mixins/is-focused.js +0 -16
  347. package/esm2015/lib/core/mixins/is-grouped.js +0 -16
  348. package/esm2015/lib/core/mixins/is-readonly.js +0 -16
  349. package/esm2015/lib/core/mixins/is-required.js +0 -16
  350. package/esm2015/lib/core/services/clipboard.service.js +0 -72
  351. package/esm2015/lib/core/services/exif.service.js +0 -168
  352. package/esm2015/lib/core/services/file-loader.service.js +0 -90
  353. package/esm2015/lib/core/services/image-converter.service.js +0 -130
  354. package/esm2015/lib/core/services/patch.service.js +0 -65
  355. package/esm2015/localize/lib/localize.dictionary.js +0 -137
  356. package/esm2015/localize/lib/localize.service.js +0 -282
  357. package/esm2015/localize/lib/views/localize-string/localize-string.component.js +0 -99
  358. package/esm2015/notifications/lib/notifications-item/notifications-item.component.js +0 -108
  359. package/esm2015/notifications/lib/notifications-list/notifications-list.component.js +0 -56
  360. package/esm2015/recaptcha/lib/recaptcha/recaptcha.component.js +0 -199
  361. package/esm2015/recaptcha/lib/recaptcha-loader.service.js +0 -93
  362. package/esm2015/rxjs/lib/operators/combine-latest-map.operator.js +0 -7
  363. package/esm2015/storage/lib/storage.service.js +0 -111
  364. package/esm2015/storage/lib/strategies/cookie-storage.strategy.js +0 -143
  365. package/esm2015/storage/lib/strategies/polyfill-storage.strategy.js +0 -102
  366. package/esm2015/table/lib/components/table/table.component.js +0 -204
  367. package/esm2015/table/lib/components/table-cell/table-cell.component.js +0 -19
  368. package/esm2015/table/lib/components/table-header-cell/table-header-cell.component.js +0 -143
  369. package/esm2015/table/lib/components/table-pager/table-pager.component.js +0 -146
  370. package/esm2015/table/lib/data/datasource.data.js +0 -32
  371. package/esm2015/table/lib/data/generic.data.js +0 -73
  372. package/fesm2015/bravobit-bb-foundation-auth.js.map +0 -1
  373. package/fesm2015/bravobit-bb-foundation-collections.js.map +0 -1
  374. package/fesm2015/bravobit-bb-foundation-dashboard.js +0 -468
  375. package/fesm2015/bravobit-bb-foundation-dashboard.js.map +0 -1
  376. package/fesm2015/bravobit-bb-foundation-dialog.js.map +0 -1
  377. package/fesm2015/bravobit-bb-foundation-elements.js.map +0 -1
  378. package/fesm2015/bravobit-bb-foundation-http.js.map +0 -1
  379. package/fesm2015/bravobit-bb-foundation-localize.js.map +0 -1
  380. package/fesm2015/bravobit-bb-foundation-notifications.js +0 -393
  381. package/fesm2015/bravobit-bb-foundation-notifications.js.map +0 -1
  382. package/fesm2015/bravobit-bb-foundation-recaptcha.js.map +0 -1
  383. package/fesm2015/bravobit-bb-foundation-rxjs.js.map +0 -1
  384. package/fesm2015/bravobit-bb-foundation-storage.js.map +0 -1
  385. package/fesm2015/bravobit-bb-foundation-table.js +0 -636
  386. package/fesm2015/bravobit-bb-foundation-table.js.map +0 -1
  387. package/fesm2015/bravobit-bb-foundation.js.map +0 -1
  388. package/lib/core/coercions/boolean-coercion.d.ts +0 -1
@@ -1,716 +0,0 @@
1
- (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('rxjs/operators'), require('rxjs'), require('@angular/core'), require('@angular/animations'), require('@bravobit/bb-foundation'), require('@angular/common'), require('@bravobit/bb-foundation/elements'), require('@bravobit/bb-foundation/localize')) :
3
- typeof define === 'function' && define.amd ? define('@bravobit/bb-foundation/dialog', ['exports', 'rxjs/operators', 'rxjs', '@angular/core', '@angular/animations', '@bravobit/bb-foundation', '@angular/common', '@bravobit/bb-foundation/elements', '@bravobit/bb-foundation/localize'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.bravobit = global.bravobit || {}, global.bravobit["bb-foundation"] = global.bravobit["bb-foundation"] || {}, global.bravobit["bb-foundation"].dialog = {}), global.rxjs.operators, global.rxjs, global.ng.core, global.ng.animations, global.bravobit["bb-foundation"], global.ng.common, global.bravobit["bb-foundation"].elements, global.bravobit["bb-foundation"].localize));
5
- })(this, (function (exports, operators, rxjs, i0, animations, i1, i1$1, i6, i8) { 'use strict';
6
-
7
- function _interopNamespace(e) {
8
- if (e && e.__esModule) return e;
9
- var n = Object.create(null);
10
- if (e) {
11
- Object.keys(e).forEach(function (k) {
12
- if (k !== 'default') {
13
- var d = Object.getOwnPropertyDescriptor(e, k);
14
- Object.defineProperty(n, k, d.get ? d : {
15
- enumerable: true,
16
- get: function () { return e[k]; }
17
- });
18
- }
19
- });
20
- }
21
- n["default"] = e;
22
- return Object.freeze(n);
23
- }
24
-
25
- var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
26
- var i1__namespace = /*#__PURE__*/_interopNamespace(i1);
27
- var i1__namespace$1 = /*#__PURE__*/_interopNamespace(i1$1);
28
- var i6__namespace = /*#__PURE__*/_interopNamespace(i6);
29
- var i8__namespace = /*#__PURE__*/_interopNamespace(i8);
30
-
31
- var BbDialogRef = /** @class */ (function () {
32
- function BbDialogRef() {
33
- // Data.
34
- this._afterClosed$ = new rxjs.Subject();
35
- this._overlayClicked$ = new rxjs.Subject();
36
- }
37
- Object.defineProperty(BbDialogRef.prototype, "afterClosed", {
38
- get: function () {
39
- return this._afterClosed$.pipe(operators.take(1));
40
- },
41
- enumerable: false,
42
- configurable: true
43
- });
44
- Object.defineProperty(BbDialogRef.prototype, "overlayClicked", {
45
- get: function () {
46
- return this._overlayClicked$.pipe(operators.take(1));
47
- },
48
- enumerable: false,
49
- configurable: true
50
- });
51
- BbDialogRef.prototype.onOverlayClicked = function () {
52
- this._overlayClicked$.next();
53
- };
54
- BbDialogRef.prototype.close = function (result) {
55
- this._afterClosed$.next(result);
56
- };
57
- return BbDialogRef;
58
- }());
59
-
60
- var BbDialogConfig = /** @class */ (function () {
61
- function BbDialogConfig() {
62
- }
63
- return BbDialogConfig;
64
- }());
65
-
66
- var BbDialogOverlay = /** @class */ (function () {
67
- function BbDialogOverlay(_elementRef, _changeDetection) {
68
- this._elementRef = _elementRef;
69
- this._changeDetection = _changeDetection;
70
- // Inputs.
71
- this.animations = true;
72
- // Outputs.
73
- this.closeRequested = new i0.EventEmitter();
74
- // State.
75
- this._state = 'open';
76
- this._closed$ = new rxjs.Subject();
77
- }
78
- Object.defineProperty(BbDialogOverlay.prototype, "state", {
79
- get: function () {
80
- return this.animations
81
- ? this._state
82
- : 'none';
83
- },
84
- enumerable: false,
85
- configurable: true
86
- });
87
- BbDialogOverlay.prototype.ngAfterViewInit = function () {
88
- this.listenForClicks();
89
- };
90
- BbDialogOverlay.prototype.ngOnDestroy = function () {
91
- var _a;
92
- (_a = this._subscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
93
- };
94
- BbDialogOverlay.prototype.onKeyEvent = function (event) {
95
- if (event.key === 'Escape') {
96
- this.closeRequested.emit();
97
- }
98
- };
99
- BbDialogOverlay.prototype.onAnimationDone = function (event) {
100
- // Check if the dialog is being destroyed.
101
- if (!['close', 'none'].includes(event.toState)) {
102
- return;
103
- }
104
- this._closed$.next();
105
- this._closed$.complete();
106
- };
107
- BbDialogOverlay.prototype.close = function () {
108
- // We need change detection to run
109
- // here else it won't close in all scenario's.
110
- this._state = 'close';
111
- this._changeDetection.markForCheck();
112
- // Listen for the closed trigger.
113
- return this._closed$.pipe(operators.take(1)).toPromise();
114
- };
115
- BbDialogOverlay.prototype.listenForClicks = function () {
116
- var _this = this;
117
- if (!this._elementRef || !this._elementRef.nativeElement) {
118
- return;
119
- }
120
- var mouseDown$ = rxjs.fromEvent(this._elementRef.nativeElement, 'mousedown');
121
- var touchStart$ = rxjs.fromEvent(this._elementRef.nativeElement, 'touchstart');
122
- var start$ = rxjs.race([mouseDown$, touchStart$]);
123
- var mouseUp$ = rxjs.fromEvent(this._elementRef.nativeElement, 'mouseup');
124
- var touchEnd$ = rxjs.fromEvent(this._elementRef.nativeElement, 'touchend');
125
- var end$ = rxjs.race([mouseUp$, touchEnd$]);
126
- this._subscription = start$.pipe(operators.switchMap(function () { return end$; })).subscribe(function () {
127
- _this.closeRequested.next();
128
- });
129
- };
130
- return BbDialogOverlay;
131
- }());
132
- BbDialogOverlay.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogOverlay, deps: [{ token: i0__namespace.ElementRef }, { token: i0__namespace.ChangeDetectorRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
133
- BbDialogOverlay.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogOverlay, selector: "bb-dialog-overlay", inputs: { animations: "animations" }, outputs: { closeRequested: "closeRequested" }, host: { listeners: { "window:keyup": "onKeyEvent($event)", "@bbDialogAnimation.done": "onAnimationDone($event)" }, properties: { "@bbDialogAnimation": "state" }, classAttribute: "bb-dialog-overlay" }, ngImport: i0__namespace, template: "<div class=\"bb-dialog-overlay-backdrop\"></div>\n\n<ng-content select=\"[bb-dialog-modal]\"></ng-content>\n", styles: [".bb-dialog-overlay,.bb-dialog-overlay-backdrop{top:0;left:0;right:0;bottom:0;display:flex;z-index:1000;position:fixed;flex-direction:column}.bb-dialog-overlay{padding:20px}.bb-dialog-overlay-backdrop{background-color:#00000080}.bb-dialog-overlay-component{z-index:1001;display:block;position:relative}\n"], animations: [
134
- animations.trigger('bbDialogAnimation', [
135
- animations.transition('* => none', []),
136
- animations.transition(':enter, * => open', [
137
- animations.group([
138
- animations.query('.bb-dialog-overlay-backdrop', [
139
- animations.style({ opacity: 0 }),
140
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 1 }))
141
- ]),
142
- animations.query('.bb-dialog-modal', [
143
- animations.style({ transform: 'scale(0.95)' }),
144
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ transform: 'scale(1)' }))
145
- ])
146
- ])
147
- ]),
148
- animations.transition(':leave, * => close', [
149
- animations.group([
150
- animations.query('.bb-dialog-overlay-backdrop', [
151
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 0 }))
152
- ]),
153
- animations.query('.bb-dialog-modal', [
154
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 0, transform: 'scale(0.95)' }))
155
- ])
156
- ])
157
- ])
158
- ])
159
- ], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
160
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogOverlay, decorators: [{
161
- type: i0.Component,
162
- args: [{
163
- selector: 'bb-dialog-overlay',
164
- templateUrl: './dialog-overlay.component.html',
165
- styleUrls: ['./dialog-overlay.component.scss'],
166
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
167
- encapsulation: i0.ViewEncapsulation.None,
168
- preserveWhitespaces: false,
169
- host: { 'class': 'bb-dialog-overlay', '[@bbDialogAnimation]': 'state' },
170
- animations: [
171
- animations.trigger('bbDialogAnimation', [
172
- animations.transition('* => none', []),
173
- animations.transition(':enter, * => open', [
174
- animations.group([
175
- animations.query('.bb-dialog-overlay-backdrop', [
176
- animations.style({ opacity: 0 }),
177
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 1 }))
178
- ]),
179
- animations.query('.bb-dialog-modal', [
180
- animations.style({ transform: 'scale(0.95)' }),
181
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ transform: 'scale(1)' }))
182
- ])
183
- ])
184
- ]),
185
- animations.transition(':leave, * => close', [
186
- animations.group([
187
- animations.query('.bb-dialog-overlay-backdrop', [
188
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 0 }))
189
- ]),
190
- animations.query('.bb-dialog-modal', [
191
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({ opacity: 0, transform: 'scale(0.95)' }))
192
- ])
193
- ])
194
- ])
195
- ])
196
- ]
197
- }]
198
- }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }, { type: i0__namespace.ChangeDetectorRef }]; }, propDecorators: { animations: [{
199
- type: i0.Input
200
- }], closeRequested: [{
201
- type: i0.Output
202
- }], onKeyEvent: [{
203
- type: i0.HostListener,
204
- args: ['window:keyup', ['$event']]
205
- }], onAnimationDone: [{
206
- type: i0.HostListener,
207
- args: ['@bbDialogAnimation.done', ['$event']]
208
- }] } });
209
-
210
- var BbDialogModal = /** @class */ (function () {
211
- function BbDialogModal(_patch) {
212
- this._patch = _patch;
213
- // Styling.
214
- this.maxWidth = '420px';
215
- }
216
- BbDialogModal.prototype.onOverlayClickedEvent = function (event) {
217
- event.stopPropagation();
218
- };
219
- BbDialogModal.prototype.ngOnInit = function () {
220
- this._patch.mobileVerticalHeight();
221
- };
222
- return BbDialogModal;
223
- }());
224
- BbDialogModal.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogModal, deps: [{ token: i1__namespace.Patch }], target: i0__namespace.ɵɵFactoryTarget.Component });
225
- BbDialogModal.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogModal, selector: "[bb-dialog-modal]", inputs: { maxWidth: "maxWidth" }, host: { attributes: { "role": "dialog" }, listeners: { "click": "onOverlayClickedEvent($event)", "touchstart": "onOverlayClickedEvent($event)", "touchend": "onOverlayClickedEvent($event)", "mouseup": "onOverlayClickedEvent($event)", "mousedown": "onOverlayClickedEvent($event)" }, properties: { "style.max-width": "this.maxWidth" }, classAttribute: "bb-dialog-modal" }, ngImport: i0__namespace, template: "<ng-content select=\"[bb-dialog-header]\">\n\n</ng-content>\n\n<div class=\"bb-dialog-modal-body\">\n <ng-content></ng-content>\n</div>\n\n<ng-content select=\"[bb-dialog-actions]\">\n\n</ng-content>\n", styles: [".bb-dialog-modal{width:100%;margin:auto;z-index:1001;display:flex;max-width:420px;border-radius:4px;position:relative;flex-direction:column;background-color:#fff;max-height:calc(1vh * 100 - 40px);max-height:calc(var(--vh, 1vh) * 100 - 40px)}.bb-dialog-modal-body{padding:20px;color:#738694;font-size:13px;overflow-y:auto;line-height:1.4;background-color:#f1f3f6}\n"], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
226
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogModal, decorators: [{
227
- type: i0.Component,
228
- args: [{
229
- selector: '[bb-dialog-modal]',
230
- templateUrl: './dialog-modal.component.html',
231
- styleUrls: ['./dialog-modal.component.scss'],
232
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
233
- encapsulation: i0.ViewEncapsulation.None,
234
- preserveWhitespaces: false,
235
- host: {
236
- 'class': 'bb-dialog-modal',
237
- 'role': 'dialog'
238
- }
239
- }]
240
- }], ctorParameters: function () { return [{ type: i1__namespace.Patch }]; }, propDecorators: { maxWidth: [{
241
- type: i0.HostBinding,
242
- args: ['style.max-width']
243
- }, {
244
- type: i0.Input
245
- }], onOverlayClickedEvent: [{
246
- type: i0.HostListener,
247
- args: ['click', ['$event']]
248
- }, {
249
- type: i0.HostListener,
250
- args: ['touchstart', ['$event']]
251
- }, {
252
- type: i0.HostListener,
253
- args: ['touchend', ['$event']]
254
- }, {
255
- type: i0.HostListener,
256
- args: ['mouseup', ['$event']]
257
- }, {
258
- type: i0.HostListener,
259
- args: ['mousedown', ['$event']]
260
- }] } });
261
-
262
- var BbDialogHeader = /** @class */ (function () {
263
- function BbDialogHeader() {
264
- // Inputs.
265
- this.iconName = null;
266
- this.iconColor = 'black';
267
- // Outputs.
268
- this.closeRequested = new i0.EventEmitter();
269
- }
270
- return BbDialogHeader;
271
- }());
272
- BbDialogHeader.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogHeader, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
273
- BbDialogHeader.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogHeader, selector: "[bb-dialog-header]", inputs: { iconName: "iconName", iconColor: "iconColor" }, outputs: { closeRequested: "closeRequested" }, host: { classAttribute: "bb-dialog-header" }, ngImport: i0__namespace, template: "<div class=\"bb-dialog-header-row\">\n <div *ngIf=\"iconName as icon\"\n [style.color]=\"iconColor\"\n class=\"bb-dialog-header-icon\">\n <i class=\"material-icons\">{{ icon }}</i>\n </div>\n\n <div class=\"bb-dialog-header-content\">\n <ng-content></ng-content>\n </div>\n\n <button *ngIf=\"closeRequested?.observers?.length > 0\"\n (click)=\"closeRequested?.emit()\"\n type=\"button\"\n class=\"bb-dialog-header-close\">\n </button>\n</div>\n\n<nav class=\"bb-dialog-header-navigation\">\n <ng-content select=\"[bb-dialog-link]\"></ng-content>\n</nav>\n", styles: [".bb-dialog-header{display:flex;min-height:60px;flex-direction:column;justify-content:center;background-color:#fff;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom:1px solid #d8d8d8}.bb-dialog-header .bb-dialog-header-content,.bb-dialog-header .bb-dialog-header-content h1{max-width:100%;font-size:20px;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bb-dialog-header-row,.bb-dialog-header-navigation{width:100%;display:flex;align-items:center}.bb-dialog-header-row{padding:10px 20px}.bb-dialog-header-navigation{width:100%;padding:0 20px;overflow-x:auto;white-space:nowrap}.bb-dialog-header-navigation:empty{margin:0;height:0;padding:0;visibility:hidden}.bb-dialog-header-content{flex:1}.bb-dialog-header-icon{width:40px;height:40px;display:flex;min-width:40px;overflow:hidden;min-height:40px;margin-right:10px;border-radius:50%;position:relative;align-items:center;justify-content:center}.bb-dialog-header-icon:after{top:0;left:0;right:0;bottom:0;content:\"\";opacity:.14;position:absolute;background-color:currentColor}.bb-dialog-header-close{width:32px;height:32px;border:none;min-width:32px;min-height:32px;overflow:hidden;margin-left:10px;border-radius:4px;position:relative;margin-right:-10px;display:inline-block;background-color:transparent}.bb-dialog-header-close:before,.bb-dialog-header-close:after{top:50%;left:20%;width:60%;height:2px;content:\"\";margin-top:-1px;position:absolute;background-color:#a2a9ba}.bb-dialog-header-close:before{transform:rotate(45deg)}.bb-dialog-header-close:after{transform:rotate(-45deg)}.bb-dialog-header-close:hover{background-color:#00000014}.bb-dialog-header-close:focus{background-color:#0000001f}.bb-dialog-header-close:active{background-color:#00000029}\n"], directives: [{ type: i1__namespace$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
274
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogHeader, decorators: [{
275
- type: i0.Component,
276
- args: [{
277
- selector: '[bb-dialog-header]',
278
- templateUrl: './dialog-header.component.html',
279
- styleUrls: ['./dialog-header.component.scss'],
280
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
281
- encapsulation: i0.ViewEncapsulation.None,
282
- preserveWhitespaces: false,
283
- host: { 'class': 'bb-dialog-header' }
284
- }]
285
- }], propDecorators: { iconName: [{
286
- type: i0.Input
287
- }], iconColor: [{
288
- type: i0.Input
289
- }], closeRequested: [{
290
- type: i0.Output
291
- }] } });
292
-
293
- var BbDialogLink = /** @class */ (function () {
294
- function BbDialogLink() {
295
- }
296
- return BbDialogLink;
297
- }());
298
- BbDialogLink.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogLink, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
299
- BbDialogLink.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogLink, selector: "[bb-dialog-link]", host: { classAttribute: "bb-dialog-link" }, ngImport: i0__namespace, template: "<ng-content></ng-content>\n", styles: [".bb-dialog-link{height:30px;display:flex;font-size:16px;font-weight:500;white-space:nowrap;align-items:center;color:#6b5c5c!important;background-color:transparent;text-decoration:none!important;border-bottom:2px solid transparent}.bb-dialog-link+.bb-dialog-link{margin-left:10px}.bb-dialog-link:hover:not(.disabled){border-bottom:2px solid rgba(117,119,148,.2)}.bb-dialog-link.active,.bb-dialog-link.active:hover{color:#5b53ff!important;border-bottom-color:#5b53ff}.bb-dialog-link.disabled,.bb-dialog-link.disabled:focus,.bb-dialog-link.disabled:hover,.bb-dialog-link.disabled:active{opacity:.4;cursor:default;box-shadow:none}\n"], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
300
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogLink, decorators: [{
301
- type: i0.Component,
302
- args: [{
303
- selector: '[bb-dialog-link]',
304
- templateUrl: './dialog-link.component.html',
305
- styleUrls: ['./dialog-link.component.scss'],
306
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
307
- encapsulation: i0.ViewEncapsulation.None,
308
- preserveWhitespaces: false,
309
- host: { 'class': 'bb-dialog-link' }
310
- }]
311
- }] });
312
-
313
- var BbDialogActions = /** @class */ (function () {
314
- function BbDialogActions() {
315
- }
316
- return BbDialogActions;
317
- }());
318
- BbDialogActions.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogActions, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
319
- BbDialogActions.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogActions, selector: "[bb-dialog-actions]", host: { classAttribute: "bb-dialog-actions" }, ngImport: i0__namespace, template: "<bb-form-group class=\"end\">\n <ng-content></ng-content>\n</bb-form-group>\n", styles: [".bb-dialog-actions{padding:20px;display:block;background-color:#fff;border-top:1px solid #d8d8d8;border-bottom-left-radius:4px;border-bottom-right-radius:4px}\n"], components: [{ type: i6__namespace.BbFormGroup, selector: "bb-form-group", inputs: ["grouped"] }], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
320
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogActions, decorators: [{
321
- type: i0.Component,
322
- args: [{
323
- selector: '[bb-dialog-actions]',
324
- templateUrl: './dialog-actions.component.html',
325
- styleUrls: ['./dialog-actions.component.scss'],
326
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
327
- encapsulation: i0.ViewEncapsulation.None,
328
- preserveWhitespaces: false,
329
- host: { 'class': 'bb-dialog-actions' }
330
- }]
331
- }] });
332
-
333
- var BbDialogInsertion = /** @class */ (function () {
334
- function BbDialogInsertion(viewContainerRef) {
335
- this.viewContainerRef = viewContainerRef;
336
- }
337
- return BbDialogInsertion;
338
- }());
339
- BbDialogInsertion.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogInsertion, deps: [{ token: i0__namespace.ViewContainerRef }], target: i0__namespace.ɵɵFactoryTarget.Directive });
340
- BbDialogInsertion.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogInsertion, selector: "[bbDialogInsertion]", ngImport: i0__namespace });
341
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogInsertion, decorators: [{
342
- type: i0.Directive,
343
- args: [{
344
- selector: '[bbDialogInsertion]'
345
- }]
346
- }], ctorParameters: function () { return [{ type: i0__namespace.ViewContainerRef }]; } });
347
-
348
- var BbDialogContainer = /** @class */ (function () {
349
- function BbDialogContainer(_elementRef, _changeDetection, _componentFactoryResolver) {
350
- this._elementRef = _elementRef;
351
- this._changeDetection = _changeDetection;
352
- this._componentFactoryResolver = _componentFactoryResolver;
353
- // Data.
354
- this.componentRef = null;
355
- this.childComponentType = null;
356
- // State.
357
- this.overlayClicked$ = new rxjs.Subject();
358
- }
359
- Object.defineProperty(BbDialogContainer.prototype, "onOverlayClicked", {
360
- get: function () {
361
- return this.overlayClicked$.pipe(operators.take(1));
362
- },
363
- enumerable: false,
364
- configurable: true
365
- });
366
- BbDialogContainer.prototype.ngAfterViewInit = function () {
367
- // Load the child component.
368
- this.loadChildComponent(this.childComponentType);
369
- // Listen for mouse click on the dialog container.
370
- this.listenForClicks();
371
- // Detect changes to notify change detection.
372
- this._changeDetection.detectChanges();
373
- };
374
- BbDialogContainer.prototype.ngOnDestroy = function () {
375
- this._subscription && this._subscription.unsubscribe();
376
- };
377
- BbDialogContainer.prototype.onAnimationDone = function (event) {
378
- // Check if the dialog is being destroyed.
379
- if (event.toState !== 'void') {
380
- return;
381
- }
382
- // Destroy the ref if it exists.
383
- this.componentRef && this.componentRef.destroy();
384
- };
385
- BbDialogContainer.prototype.listenForClicks = function () {
386
- var _this = this;
387
- if (!this._elementRef || !this._elementRef.nativeElement) {
388
- return;
389
- }
390
- var mouseDown$ = rxjs.fromEvent(this._elementRef.nativeElement, 'mousedown');
391
- var touchStart$ = rxjs.fromEvent(this._elementRef.nativeElement, 'touchstart');
392
- var start$ = rxjs.race([mouseDown$, touchStart$]);
393
- var mouseUp$ = rxjs.fromEvent(this._elementRef.nativeElement, 'mouseup');
394
- var touchEnd$ = rxjs.fromEvent(this._elementRef.nativeElement, 'touchend');
395
- var end$ = rxjs.race([mouseUp$, touchEnd$]);
396
- this._subscription = start$.pipe(operators.switchMap(function () { return end$; })).subscribe(function () {
397
- _this.overlayClicked$.next();
398
- });
399
- };
400
- BbDialogContainer.prototype.loadChildComponent = function (componentType) {
401
- // Resolve the component.
402
- var componentFactory = this._componentFactoryResolver.resolveComponentFactory(componentType);
403
- // Get the view container ref and clear it.
404
- var viewContainerRef = this.insertion.viewContainerRef;
405
- viewContainerRef.clear();
406
- // Create an instance of the component.
407
- this.componentRef = viewContainerRef.createComponent(componentFactory);
408
- };
409
- return BbDialogContainer;
410
- }());
411
- BbDialogContainer.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogContainer, deps: [{ token: i0__namespace.ElementRef }, { token: i0__namespace.ChangeDetectorRef }, { token: i0__namespace.ComponentFactoryResolver }], target: i0__namespace.ɵɵFactoryTarget.Component });
412
- BbDialogContainer.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogContainer, selector: "bb-dialog-container", host: { listeners: { "@bbDialogAnimation.done": "onAnimationDone($event)" }, properties: { "@bbDialogAnimation": "true" }, classAttribute: "bb-dialog-container" }, viewQueries: [{ propertyName: "insertion", first: true, predicate: BbDialogInsertion, descendants: true, static: true }], ngImport: i0__namespace, template: "<div class=\"bb-dialog-container-backdrop\">\n</div>\n\n<div class=\"bb-dialog-container-component\">\n <ng-container bbDialogInsertion>\n </ng-container>\n</div>\n", styles: [".bb-dialog-container,.bb-dialog-container-backdrop{top:0;left:0;right:0;bottom:0;z-index:1000;position:fixed}.bb-dialog-container{display:flex}.bb-dialog-container-backdrop{background-color:#00000080}.bb-dialog-container-component{width:100%;margin:auto;padding:20px;z-index:1001;display:block}\n"], directives: [{ type: BbDialogInsertion, selector: "[bbDialogInsertion]" }], animations: [
413
- animations.trigger('bbDialogAnimation', [
414
- animations.transition(':enter', [
415
- animations.group([
416
- animations.query('.bb-dialog-container-backdrop', [
417
- animations.style({
418
- opacity: 0
419
- }),
420
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
421
- opacity: 1
422
- }))
423
- ]),
424
- animations.query('.bb-dialog-container-component', [
425
- animations.style({
426
- transform: 'scale(0.95)'
427
- }),
428
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
429
- transform: 'scale(1)'
430
- }))
431
- ])
432
- ])
433
- ]),
434
- animations.transition(':leave', [
435
- animations.group([
436
- animations.query('.bb-dialog-container-backdrop', [
437
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
438
- opacity: 0
439
- }))
440
- ]),
441
- animations.query('.bb-dialog-container-component', [
442
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
443
- opacity: 0,
444
- transform: 'scale(0.95)'
445
- }))
446
- ])
447
- ])
448
- ])
449
- ])
450
- ], changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
451
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogContainer, decorators: [{
452
- type: i0.Component,
453
- args: [{
454
- selector: 'bb-dialog-container',
455
- templateUrl: './dialog-container.component.html',
456
- styleUrls: ['./dialog-container.component.scss'],
457
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
458
- encapsulation: i0.ViewEncapsulation.None,
459
- host: { 'class': 'bb-dialog-container', '[@bbDialogAnimation]': 'true' },
460
- preserveWhitespaces: false,
461
- animations: [
462
- animations.trigger('bbDialogAnimation', [
463
- animations.transition(':enter', [
464
- animations.group([
465
- animations.query('.bb-dialog-container-backdrop', [
466
- animations.style({
467
- opacity: 0
468
- }),
469
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
470
- opacity: 1
471
- }))
472
- ]),
473
- animations.query('.bb-dialog-container-component', [
474
- animations.style({
475
- transform: 'scale(0.95)'
476
- }),
477
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
478
- transform: 'scale(1)'
479
- }))
480
- ])
481
- ])
482
- ]),
483
- animations.transition(':leave', [
484
- animations.group([
485
- animations.query('.bb-dialog-container-backdrop', [
486
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
487
- opacity: 0
488
- }))
489
- ]),
490
- animations.query('.bb-dialog-container-component', [
491
- animations.animate('150ms cubic-bezier(0, 0, 0.2, 1)', animations.style({
492
- opacity: 0,
493
- transform: 'scale(0.95)'
494
- }))
495
- ])
496
- ])
497
- ])
498
- ])
499
- ]
500
- }]
501
- }], ctorParameters: function () { return [{ type: i0__namespace.ElementRef }, { type: i0__namespace.ChangeDetectorRef }, { type: i0__namespace.ComponentFactoryResolver }]; }, propDecorators: { insertion: [{
502
- type: i0.ViewChild,
503
- args: [BbDialogInsertion, { static: true }]
504
- }], onAnimationDone: [{
505
- type: i0.HostListener,
506
- args: ['@bbDialogAnimation.done', ['$event']]
507
- }] } });
508
-
509
- var nextUniqueId = 0;
510
- var BbDialogConfirm = /** @class */ (function () {
511
- function BbDialogConfirm(config, dialogRef) {
512
- this.config = config;
513
- this.dialogRef = dialogRef;
514
- // Id.
515
- this.dialogId = "bb-dialog-confirm-" + nextUniqueId++;
516
- }
517
- BbDialogConfirm.prototype.ngAfterViewInit = function () {
518
- // Initial focus the button.
519
- this.confirmButton.focus();
520
- };
521
- BbDialogConfirm.prototype.onClose = function (result) {
522
- this.dialogRef.close(result);
523
- };
524
- return BbDialogConfirm;
525
- }());
526
- BbDialogConfirm.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogConfirm, deps: [{ token: BbDialogConfig }, { token: BbDialogRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
527
- BbDialogConfirm.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.11", type: BbDialogConfirm, selector: "bb-dialog-confirm", host: { classAttribute: "bb-dialog-confirm" }, viewQueries: [{ propertyName: "confirmButton", first: true, predicate: ["confirm"], descendants: true, read: i6.BbButton }], ngImport: i0__namespace, template: "<div [attr.aria-labelledby]=\"dialogId\"\n bb-dialog-modal\n bbFocusTrap>\n <header bb-dialog-header>\n <h1 *ngIf=\"config?.data?.title as title\"\n [id]=\"dialogId\">\n {{ title | bbLocalize:{optional: true} }}\n </h1>\n </header>\n\n <p>\n {{ config?.data?.description | bbLocalize:{optional: true} }}\n </p>\n\n <footer bb-dialog-actions>\n <button *ngIf=\"config?.data?.cancelButtonText as cancelButtonText\"\n (click)=\"onClose(false)\"\n bb-button\n type=\"button\">\n {{ cancelButtonText | bbLocalize:{optional: true} }}\n </button>\n <button #confirm\n *ngIf=\"config?.data?.confirmButtonText as confirmButtonText\"\n (click)=\"onClose(true)\"\n bb-button\n type=\"button\"\n class=\"destructive\">\n {{ confirmButtonText | bbLocalize:{optional: true} }}\n </button>\n </footer>\n</div>\n", styles: [".bb-dialog-confirm{display:block}\n"], components: [{ type: BbDialogModal, selector: "[bb-dialog-modal]", inputs: ["maxWidth"] }, { type: BbDialogHeader, selector: "[bb-dialog-header]", inputs: ["iconName", "iconColor"], outputs: ["closeRequested"] }, { type: BbDialogActions, selector: "[bb-dialog-actions]" }, { type: i6__namespace.BbButton, selector: "button[bb-button]", inputs: ["disabled", "loading"], exportAs: ["bbButton"] }], directives: [{ type: i6__namespace.BbFocusTrap, selector: "[bbFocusTrap]" }, { type: i1__namespace$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], pipes: { "bbLocalize": i8__namespace.BbLocalize }, changeDetection: i0__namespace.ChangeDetectionStrategy.OnPush, encapsulation: i0__namespace.ViewEncapsulation.None });
528
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: BbDialogConfirm, decorators: [{
529
- type: i0.Component,
530
- args: [{
531
- selector: 'bb-dialog-confirm',
532
- templateUrl: './dialog-confirm.component.html',
533
- styleUrls: ['./dialog-confirm.component.scss'],
534
- changeDetection: i0.ChangeDetectionStrategy.OnPush,
535
- encapsulation: i0.ViewEncapsulation.None,
536
- preserveWhitespaces: false,
537
- host: { 'class': 'bb-dialog-confirm' }
538
- }]
539
- }], ctorParameters: function () { return [{ type: BbDialogConfig }, { type: BbDialogRef }]; }, propDecorators: { confirmButton: [{
540
- type: i0.ViewChild,
541
- args: ['confirm', { read: i6.BbButton }]
542
- }] } });
543
-
544
- var BbDialogInjector = /** @class */ (function () {
545
- function BbDialogInjector(_parentInjector, _additionalTokens) {
546
- this._parentInjector = _parentInjector;
547
- this._additionalTokens = _additionalTokens;
548
- }
549
- BbDialogInjector.prototype.get = function (token, notFoundValue) {
550
- // First check if the additional token
551
- // contains the token.
552
- var value = this._additionalTokens.get(token);
553
- // If that value exists return it.
554
- if (value) {
555
- return value;
556
- }
557
- // Else query the parent injector.
558
- return this._parentInjector.get(token, notFoundValue);
559
- };
560
- return BbDialogInjector;
561
- }());
562
-
563
- var Dialog = /** @class */ (function () {
564
- function Dialog(_injector, _applicationRef, _componentFactoryResolver) {
565
- this._injector = _injector;
566
- this._applicationRef = _applicationRef;
567
- this._componentFactoryResolver = _componentFactoryResolver;
568
- }
569
- Dialog.prototype.open = function (componentType, config) {
570
- return this.createDialog(componentType, config);
571
- };
572
- Dialog.prototype.confirm = function (title, description, options) {
573
- if (options === void 0) { options = {}; }
574
- return this.open(BbDialogConfirm, {
575
- data: {
576
- title: title,
577
- description: description,
578
- cancelButtonText: options.cancelButtonText || 'dialog.default_cancel_button',
579
- confirmButtonText: options.confirmButtonText || 'dialog.default_confirm_button'
580
- }
581
- });
582
- };
583
- Dialog.prototype.createDialog = function (componentType, config) {
584
- var _this = this;
585
- // Create a reference.
586
- var dialogRef = new BbDialogRef();
587
- // Create a map with the config.
588
- var map = new WeakMap();
589
- map.set(BbDialogConfig, config);
590
- map.set(BbDialogRef, dialogRef);
591
- // Create a custom injector.
592
- var dialogInjector = new BbDialogInjector(this._injector, map);
593
- // Resolve the dialog component reference.
594
- var dialogComponentRef = this._componentFactoryResolver
595
- .resolveComponentFactory(BbDialogContainer)
596
- .create(dialogInjector);
597
- // Attach the host view to the application.
598
- this._applicationRef.attachView(dialogComponentRef.hostView);
599
- try {
600
- // Remove the current focus.
601
- var activeElement = document.activeElement;
602
- activeElement.blur();
603
- // Append the element to the DOM.
604
- document.body.appendChild(dialogComponentRef.location.nativeElement);
605
- }
606
- catch (_a) {
607
- // Don't do anything, because it must've failed.
608
- }
609
- // Set the child component type on the component.
610
- dialogComponentRef.instance.childComponentType = componentType;
611
- dialogComponentRef.instance.onOverlayClicked.subscribe(function () { return dialogRef.onOverlayClicked(); });
612
- // Listen for close events.
613
- dialogRef.afterClosed.subscribe(function () { return _this.deleteDialog(dialogComponentRef); });
614
- // Return the reference.
615
- return dialogRef;
616
- };
617
- Dialog.prototype.deleteDialog = function (dialogComponentRef) {
618
- // Only continue if the dialog component ref exists.
619
- if (!dialogComponentRef) {
620
- return;
621
- }
622
- // Detach the dialog.
623
- this._applicationRef.detachView(dialogComponentRef.hostView);
624
- // Destroy the dialog.
625
- dialogComponentRef.destroy();
626
- dialogComponentRef = null;
627
- };
628
- return Dialog;
629
- }());
630
- Dialog.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: Dialog, deps: [{ token: i0__namespace.Injector }, { token: i0__namespace.ApplicationRef }, { token: i0__namespace.ComponentFactoryResolver }], target: i0__namespace.ɵɵFactoryTarget.Injectable });
631
- Dialog.ɵprov = i0__namespace.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: Dialog });
632
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: Dialog, decorators: [{
633
- type: i0.Injectable
634
- }], ctorParameters: function () { return [{ type: i0__namespace.Injector }, { type: i0__namespace.ApplicationRef }, { type: i0__namespace.ComponentFactoryResolver }]; } });
635
-
636
- var DialogModule = /** @class */ (function () {
637
- function DialogModule() {
638
- }
639
- DialogModule.forRoot = function () {
640
- return {
641
- ngModule: DialogModule,
642
- providers: [Dialog]
643
- };
644
- };
645
- return DialogModule;
646
- }());
647
- DialogModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: DialogModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
648
- DialogModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: DialogModule, declarations: [BbDialogContainer,
649
- BbDialogOverlay,
650
- BbDialogModal,
651
- BbDialogHeader,
652
- BbDialogLink,
653
- BbDialogActions,
654
- BbDialogConfirm,
655
- BbDialogInsertion], imports: [i1$1.CommonModule,
656
- i8.LocalizeModule,
657
- i6.ElementsModule], exports: [BbDialogOverlay,
658
- BbDialogModal,
659
- BbDialogHeader,
660
- BbDialogLink,
661
- BbDialogActions] });
662
- DialogModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: DialogModule, imports: [[
663
- i1$1.CommonModule,
664
- i8.LocalizeModule,
665
- i6.ElementsModule
666
- ]] });
667
- i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.11", ngImport: i0__namespace, type: DialogModule, decorators: [{
668
- type: i0.NgModule,
669
- args: [{
670
- imports: [
671
- i1$1.CommonModule,
672
- i8.LocalizeModule,
673
- i6.ElementsModule
674
- ],
675
- declarations: [
676
- BbDialogContainer,
677
- BbDialogOverlay,
678
- BbDialogModal,
679
- BbDialogHeader,
680
- BbDialogLink,
681
- BbDialogActions,
682
- BbDialogConfirm,
683
- BbDialogInsertion
684
- ],
685
- entryComponents: [
686
- BbDialogContainer,
687
- BbDialogConfirm
688
- ],
689
- exports: [
690
- BbDialogOverlay,
691
- BbDialogModal,
692
- BbDialogHeader,
693
- BbDialogLink,
694
- BbDialogActions
695
- ]
696
- }]
697
- }] });
698
-
699
- /**
700
- * Generated bundle index. Do not edit.
701
- */
702
-
703
- exports.BbDialogActions = BbDialogActions;
704
- exports.BbDialogConfig = BbDialogConfig;
705
- exports.BbDialogHeader = BbDialogHeader;
706
- exports.BbDialogLink = BbDialogLink;
707
- exports.BbDialogModal = BbDialogModal;
708
- exports.BbDialogOverlay = BbDialogOverlay;
709
- exports.BbDialogRef = BbDialogRef;
710
- exports.Dialog = Dialog;
711
- exports.DialogModule = DialogModule;
712
-
713
- Object.defineProperty(exports, '__esModule', { value: true });
714
-
715
- }));
716
- //# sourceMappingURL=bravobit-bb-foundation-dialog.umd.js.map