@bravobit/bb-foundation 0.32.1 → 0.40.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 (457) hide show
  1. package/auth/lib/auth.config.d.ts +5 -0
  2. package/auth/lib/auth.interceptor.d.ts +2 -2
  3. package/auth/lib/auth.module.d.ts +1 -4
  4. package/auth/lib/auth.service.d.ts +2 -2
  5. package/auth/lib/directives/authenticated.directive.d.ts +11 -4
  6. package/auth/lib/guards/anonymous.guard.d.ts +2 -15
  7. package/auth/lib/guards/authenticated.guard.d.ts +2 -15
  8. package/auth/lib/interfaces/config.interface.d.ts +2 -1
  9. package/auth/public_api.d.ts +1 -0
  10. package/collections/lib/collections.module.d.ts +12 -3
  11. package/collections/lib/components/collections-actions/collections-actions.component.d.ts +10 -0
  12. package/collections/lib/components/collections-grid/collections-grid.component.d.ts +18 -0
  13. package/collections/lib/components/collections-pager/collections-pager.component.d.ts +15 -14
  14. package/collections/lib/components/collections-table/collections-table.component.d.ts +24 -0
  15. package/collections/lib/components/collections-table-label/collections-table-label.component.d.ts +11 -0
  16. package/collections/lib/components/collections-table-sorting/collections-table-sorting.component.d.ts +18 -0
  17. package/collections/lib/components/collections-viewer/collections-viewer.component.d.ts +9 -5
  18. package/collections/lib/directives/collections-data-row.directive.d.ts +14 -0
  19. package/collections/lib/directives/collections-data.directive.d.ts +14 -0
  20. package/collections/lib/directives/collections-empty.directive.d.ts +14 -0
  21. package/collections/lib/directives/collections-error.directive.d.ts +14 -0
  22. package/collections/lib/directives/collections-initial.directive.d.ts +11 -0
  23. package/collections/lib/directives/collections-item.directive.d.ts +14 -0
  24. package/collections/public_api.d.ts +11 -1
  25. package/dashboard/lib/dashboard/dashboard.component.d.ts +5 -8
  26. package/dashboard/lib/dashboard-header/dashboard-header.component.d.ts +3 -5
  27. package/dashboard/lib/dashboard-menu/dashboard-menu.component.d.ts +1 -1
  28. package/dashboard/lib/dashboard-menu-item/dashboard-menu-item.component.d.ts +4 -7
  29. package/dashboard/lib/dashboard-sidebar/dashboard-sidebar.component.d.ts +3 -5
  30. package/dashboard/lib/dashboard-sidebar-group/dashboard-sidebar-group.component.d.ts +6 -11
  31. package/dashboard/lib/dashboard-sidebar-item/dashboard-sidebar-item.component.d.ts +2 -2
  32. package/dashboard/lib/dashboard.module.d.ts +1 -4
  33. package/dialog/lib/dialog-actions/dialog-actions.component.d.ts +1 -1
  34. package/dialog/lib/dialog-confirm/dialog-confirm.component.d.ts +2 -2
  35. package/dialog/lib/dialog-container/dialog-container.component.d.ts +2 -2
  36. package/dialog/lib/dialog-header/dialog-header.component.d.ts +1 -1
  37. package/dialog/lib/dialog-link/dialog-link.component.d.ts +1 -1
  38. package/dialog/lib/dialog-modal/dialog-modal.component.d.ts +1 -1
  39. package/dialog/lib/dialog-overlay/dialog-overlay.component.d.ts +2 -2
  40. package/dialog/lib/dialog.config.d.ts +3 -0
  41. package/dialog/lib/dialog.insertion.d.ts +1 -1
  42. package/dialog/lib/dialog.interfaces.d.ts +2 -0
  43. package/dialog/lib/dialog.module.d.ts +2 -4
  44. package/dialog/lib/directives/confirm.directive.d.ts +13 -0
  45. package/dialog/public_api.d.ts +2 -0
  46. package/elements/lib/avatar/avatar.component.d.ts +2 -1
  47. package/elements/lib/button/button.component.d.ts +12 -14
  48. package/elements/lib/checkbox/checkbox.component.d.ts +29 -22
  49. package/elements/lib/checkbox-group/checkbox-group.component.d.ts +13 -0
  50. package/elements/lib/date-picker/date-picker.component.d.ts +17 -10
  51. package/elements/lib/directives/addon.directive.d.ts +2 -2
  52. package/elements/lib/directives/extra-error-controls.directive.d.ts +13 -0
  53. package/elements/lib/directives/form-submit.directive.d.ts +1 -1
  54. package/elements/lib/directives/form-submitter.directive.d.ts +1 -1
  55. package/elements/lib/directives/image-upload.directive.d.ts +28 -0
  56. package/elements/lib/directives/input.directive.d.ts +9 -31
  57. package/elements/lib/elements.config.d.ts +84 -0
  58. package/elements/lib/elements.module.d.ts +21 -102
  59. package/elements/lib/file-picker/file-picker.component.d.ts +14 -10
  60. package/elements/lib/form-control/form-control.component.d.ts +8 -9
  61. package/elements/lib/form-error/form-error.component.d.ts +12 -9
  62. package/elements/lib/form-group/form-group.component.d.ts +4 -7
  63. package/elements/lib/icon/icon.component.d.ts +4 -4
  64. package/elements/lib/image-picker/image-picker.component.d.ts +9 -9
  65. package/elements/lib/multi-file-control/multi-file-control.component.d.ts +58 -0
  66. package/elements/lib/pipes/date.pipe.d.ts +9 -0
  67. package/elements/lib/pipes/file-image.pipe.d.ts +1 -1
  68. package/elements/lib/pipes/file-size.pipe.d.ts +1 -1
  69. package/elements/lib/pipes/relative-time.pipe.d.ts +1 -1
  70. package/elements/lib/radio-button/radio-button.component.d.ts +18 -0
  71. package/elements/lib/radio-group/radio-group.component.d.ts +38 -0
  72. package/elements/lib/spinner/spinner.component.d.ts +4 -7
  73. package/elements/public_api.d.ts +9 -3
  74. package/esm2022/auth/lib/auth.config.mjs +16 -0
  75. package/esm2022/auth/lib/auth.interceptor.mjs +10 -7
  76. package/esm2022/auth/lib/auth.module.mjs +9 -19
  77. package/esm2022/auth/lib/auth.service.mjs +22 -13
  78. package/esm2022/auth/lib/directives/authenticated.directive.mjs +45 -11
  79. package/esm2022/auth/lib/guards/anonymous.guard.mjs +27 -51
  80. package/esm2022/auth/lib/guards/authenticated.guard.mjs +30 -54
  81. package/esm2022/auth/lib/helpers/jwt.helper.mjs +2 -2
  82. package/esm2022/auth/lib/interfaces/config.interface.mjs +2 -3
  83. package/esm2022/auth/public_api.mjs +2 -1
  84. package/esm2022/collections/lib/collections.module.mjs +53 -23
  85. package/esm2022/collections/lib/components/collections-actions/collections-actions.component.mjs +39 -0
  86. package/esm2022/collections/lib/components/collections-grid/collections-grid.component.mjs +52 -0
  87. package/esm2022/collections/lib/components/collections-pager/collections-pager.component.mjs +51 -60
  88. package/esm2022/collections/lib/components/collections-table/collections-table.component.mjs +86 -0
  89. package/esm2022/collections/lib/components/collections-table-label/collections-table-label.component.mjs +33 -0
  90. package/esm2022/collections/lib/components/collections-table-sorting/collections-table-sorting.component.mjs +62 -0
  91. package/esm2022/collections/lib/components/collections-viewer/collections-viewer.component.mjs +10 -7
  92. package/esm2022/collections/lib/directives/collections-data-row.directive.mjs +26 -0
  93. package/esm2022/collections/lib/directives/collections-data.directive.mjs +26 -0
  94. package/esm2022/collections/lib/directives/collections-empty.directive.mjs +26 -0
  95. package/esm2022/collections/lib/directives/collections-error.directive.mjs +26 -0
  96. package/esm2022/collections/lib/directives/collections-initial.directive.mjs +22 -0
  97. package/esm2022/collections/lib/directives/collections-item.directive.mjs +26 -0
  98. package/esm2022/collections/public_api.mjs +12 -2
  99. package/esm2022/combobox/combobox/combobox-container.directive.mjs +3 -3
  100. package/esm2022/combobox/combobox/combobox.component.mjs +6 -6
  101. package/esm2022/combobox/combobox-label.directive.mjs +3 -3
  102. package/esm2022/combobox/combobox-option.directive.mjs +3 -3
  103. package/esm2022/combobox/combobox-panel/combobox-panel.component.mjs +5 -5
  104. package/esm2022/dashboard/lib/dashboard/dashboard.component.mjs +17 -24
  105. package/esm2022/dashboard/lib/dashboard-header/dashboard-header.component.mjs +12 -15
  106. package/esm2022/dashboard/lib/dashboard-menu/dashboard-menu.component.mjs +7 -8
  107. package/esm2022/dashboard/lib/dashboard-menu-item/dashboard-menu-item.component.mjs +20 -15
  108. package/esm2022/dashboard/lib/dashboard-sidebar/dashboard-sidebar.component.mjs +15 -14
  109. package/esm2022/dashboard/lib/dashboard-sidebar-group/dashboard-sidebar-group.component.mjs +20 -27
  110. package/esm2022/dashboard/lib/dashboard-sidebar-item/dashboard-sidebar-item.component.mjs +6 -10
  111. package/esm2022/dashboard/lib/dashboard.module.mjs +30 -27
  112. package/esm2022/dialog/lib/dialog-actions/dialog-actions.component.mjs +6 -6
  113. package/esm2022/dialog/lib/dialog-confirm/dialog-confirm.component.mjs +12 -15
  114. package/esm2022/dialog/lib/dialog-container/dialog-container.component.mjs +10 -7
  115. package/esm2022/dialog/lib/dialog-header/dialog-header.component.mjs +5 -6
  116. package/esm2022/dialog/lib/dialog-link/dialog-link.component.mjs +5 -5
  117. package/esm2022/dialog/lib/dialog-modal/dialog-modal.component.mjs +7 -7
  118. package/esm2022/dialog/lib/dialog-overlay/dialog-overlay.component.mjs +11 -7
  119. package/esm2022/dialog/lib/dialog.config.mjs +8 -0
  120. package/esm2022/dialog/lib/dialog.insertion.mjs +6 -5
  121. package/esm2022/dialog/lib/dialog.interfaces.mjs +3 -1
  122. package/esm2022/dialog/lib/dialog.module.mjs +17 -25
  123. package/esm2022/dialog/lib/dialog.service.mjs +8 -5
  124. package/esm2022/dialog/lib/directives/confirm.directive.mjs +50 -0
  125. package/esm2022/dialog/public_api.mjs +3 -1
  126. package/esm2022/elements/lib/avatar/avatar.component.mjs +15 -14
  127. package/esm2022/elements/lib/button/button.component.mjs +37 -32
  128. package/esm2022/elements/lib/checkbox/checkbox.component.mjs +86 -47
  129. package/esm2022/elements/lib/checkbox-group/checkbox-group.component.mjs +36 -0
  130. package/esm2022/elements/lib/date-picker/date-picker.component.mjs +64 -51
  131. package/esm2022/elements/lib/directives/addon.directive.mjs +11 -13
  132. package/esm2022/elements/lib/directives/extra-error-controls.directive.mjs +43 -0
  133. package/esm2022/elements/lib/directives/form-submit.directive.mjs +6 -5
  134. package/esm2022/elements/lib/directives/form-submitter.directive.mjs +6 -5
  135. package/esm2022/elements/lib/directives/image-upload.directive.mjs +140 -0
  136. package/esm2022/elements/lib/directives/input.directive.mjs +21 -110
  137. package/esm2022/elements/lib/elements.config.mjs +42 -0
  138. package/esm2022/elements/lib/elements.module.mjs +42 -77
  139. package/esm2022/elements/lib/file-picker/file-picker.component.mjs +36 -24
  140. package/esm2022/elements/lib/form-control/form-control.component.mjs +21 -24
  141. package/esm2022/elements/lib/form-error/form-error.component.mjs +35 -60
  142. package/esm2022/elements/lib/form-group/form-group.component.mjs +15 -12
  143. package/esm2022/elements/lib/icon/icon.component.mjs +19 -24
  144. package/esm2022/elements/lib/image-picker/image-picker.component.mjs +33 -19
  145. package/esm2022/elements/lib/multi-file-control/multi-file-control.component.mjs +165 -0
  146. package/esm2022/elements/lib/pipes/date.pipe.mjs +30 -0
  147. package/esm2022/elements/lib/pipes/file-image.pipe.mjs +6 -5
  148. package/esm2022/elements/lib/pipes/file-size.pipe.mjs +6 -5
  149. package/esm2022/elements/lib/pipes/relative-time.pipe.mjs +6 -5
  150. package/esm2022/elements/lib/radio-button/radio-button.component.mjs +59 -0
  151. package/esm2022/elements/lib/radio-group/radio-group.component.mjs +102 -0
  152. package/esm2022/elements/lib/spinner/spinner.component.mjs +12 -13
  153. package/esm2022/elements/public_api.mjs +10 -4
  154. package/esm2022/http/lib/http.config.mjs +18 -0
  155. package/esm2022/http/lib/http.interfaces.mjs +4 -2
  156. package/esm2022/http/lib/http.module.mjs +9 -22
  157. package/esm2022/http/lib/interceptors/base-url.interceptor.mjs +9 -5
  158. package/esm2022/http/lib/interceptors/error.interceptor.mjs +10 -6
  159. package/esm2022/http/public_api.mjs +2 -1
  160. package/esm2022/lib/core/functions/array.utils.mjs +7 -0
  161. package/esm2022/lib/core/miscellaneous/coercion.mjs +5 -0
  162. package/esm2022/lib/core/miscellaneous/regex.mjs +41 -2
  163. package/esm2022/lib/core/services/exif.service.mjs +3 -3
  164. package/esm2022/lib/core/services/file-loader.service.mjs +3 -3
  165. package/esm2022/lib/core/services/files.service.mjs +86 -0
  166. package/esm2022/lib/core/services/image-converter.service.mjs +3 -3
  167. package/esm2022/lib/core/services/languages.service.mjs +3 -3
  168. package/esm2022/lib/core/services/network.service.mjs +5 -5
  169. package/esm2022/lib/core/services/patch.service.mjs +3 -3
  170. package/esm2022/localize/lib/interfaces/config.interfaces.mjs +2 -7
  171. package/esm2022/localize/lib/interfaces/functions.interfaces.mjs +6 -6
  172. package/esm2022/localize/lib/localizations/dutch.localization.mjs +19 -1
  173. package/esm2022/localize/lib/localizations/english.localization.mjs +19 -1
  174. package/esm2022/localize/lib/localize.config.mjs +43 -0
  175. package/esm2022/localize/lib/localize.module.mjs +10 -54
  176. package/esm2022/localize/lib/localize.pipe.mjs +6 -5
  177. package/esm2022/localize/lib/localize.service.mjs +26 -13
  178. package/esm2022/localize/lib/localize.tokens.mjs +18 -0
  179. package/esm2022/localize/lib/transforms/interpolate.transform.mjs +3 -2
  180. package/esm2022/localize/lib/transforms/plural.transform.mjs +5 -3
  181. package/esm2022/localize/lib/transforms/reference.transform.mjs +5 -3
  182. package/esm2022/localize/lib/views/localize-string/localize-string.component.mjs +6 -10
  183. package/esm2022/localize/lib/views/localize-template.directive.mjs +6 -5
  184. package/esm2022/localize/public_api.mjs +3 -3
  185. package/esm2022/masking/lib/directives/currency-mask.directive.mjs +6 -5
  186. package/esm2022/masking/lib/directives/date-mask.directive.mjs +6 -5
  187. package/esm2022/masking/lib/directives/input-mask.directive.mjs +6 -5
  188. package/esm2022/masking/lib/masking.module.mjs +6 -6
  189. package/esm2022/masking/lib/masking.service.mjs +3 -3
  190. package/esm2022/notifications/lib/notifications-item/notifications-item.component.mjs +7 -9
  191. package/esm2022/notifications/lib/notifications-list/notifications-list.component.mjs +8 -8
  192. package/esm2022/notifications/lib/notifications.config.mjs +8 -0
  193. package/esm2022/notifications/lib/notifications.interfaces.mjs +3 -1
  194. package/esm2022/notifications/lib/notifications.module.mjs +8 -18
  195. package/esm2022/notifications/lib/notifications.service.mjs +14 -8
  196. package/esm2022/notifications/public_api.mjs +2 -1
  197. package/esm2022/permissions/lib/directives/permission.directive.mjs +6 -5
  198. package/esm2022/permissions/lib/guards/permission.guard.mjs +23 -54
  199. package/esm2022/permissions/lib/permissions.config.mjs +20 -0
  200. package/esm2022/permissions/lib/permissions.interface.mjs +3 -1
  201. package/esm2022/permissions/lib/permissions.module.mjs +9 -23
  202. package/esm2022/permissions/lib/permissions.service.mjs +8 -5
  203. package/esm2022/permissions/public_api.mjs +2 -1
  204. package/esm2022/public_api.mjs +4 -11
  205. package/esm2022/recaptcha/lib/recaptcha/recaptcha.component.mjs +12 -13
  206. package/esm2022/recaptcha/lib/recaptcha-loader.service.mjs +21 -36
  207. package/esm2022/recaptcha/lib/recaptcha.config.mjs +8 -0
  208. package/esm2022/recaptcha/lib/recaptcha.module.mjs +8 -8
  209. package/esm2022/recaptcha/public_api.mjs +2 -1
  210. package/esm2022/rxjs/lib/observables/get-route-param.observable.mjs +5 -0
  211. package/esm2022/rxjs/public_api.mjs +2 -1
  212. package/esm2022/select/bravobit-bb-foundation-select.mjs +5 -0
  213. package/esm2022/select/lib/select/select.component.mjs +210 -0
  214. package/esm2022/select/lib/select-label.directive.mjs +17 -0
  215. package/esm2022/select/lib/select-option-group.directive.mjs +17 -0
  216. package/esm2022/select/lib/select-option.directive.mjs +17 -0
  217. package/esm2022/select/lib/select.module.mjs +35 -0
  218. package/esm2022/select/public_api.mjs +6 -0
  219. package/esm2022/storage/lib/storage.service.mjs +3 -3
  220. package/esm2022/storage/lib/strategies/polyfill-storage.strategy.mjs +2 -5
  221. package/esm2022/table/lib/components/table/table.component.mjs +21 -22
  222. package/esm2022/table/lib/components/table-cell/table-cell.component.mjs +5 -5
  223. package/esm2022/table/lib/components/table-header-cell/table-header-cell.component.mjs +14 -14
  224. package/esm2022/table/lib/components/table-pager/table-pager.component.mjs +15 -17
  225. package/esm2022/table/lib/table.module.mjs +23 -21
  226. package/esm2022/tooltip/lib/tooltip-container/tooltip-container.component.mjs +11 -17
  227. package/esm2022/tooltip/lib/tooltip.directive.mjs +17 -27
  228. package/esm2022/tooltip/lib/tooltip.module.mjs +7 -22
  229. package/esm2022/tooltip/public_api.mjs +2 -2
  230. package/esm2022/utils/lib/directives/autosize.directive.mjs +9 -7
  231. package/esm2022/utils/lib/directives/focus-trap.directive.mjs +6 -5
  232. package/esm2022/utils/lib/directives/focus.directive.mjs +6 -5
  233. package/esm2022/utils/lib/directives/template.directive.mjs +6 -5
  234. package/esm2022/utils/lib/utils.module.mjs +6 -6
  235. package/fesm2022/bravobit-bb-foundation-auth.mjs +140 -175
  236. package/fesm2022/bravobit-bb-foundation-auth.mjs.map +1 -1
  237. package/fesm2022/bravobit-bb-foundation-collections.mjs +451 -106
  238. package/fesm2022/bravobit-bb-foundation-collections.mjs.map +1 -1
  239. package/fesm2022/bravobit-bb-foundation-combobox.mjs +18 -18
  240. package/fesm2022/bravobit-bb-foundation-combobox.mjs.map +1 -1
  241. package/fesm2022/bravobit-bb-foundation-dashboard.mjs +106 -116
  242. package/fesm2022/bravobit-bb-foundation-dashboard.mjs.map +1 -1
  243. package/fesm2022/bravobit-bb-foundation-dialog.mjs +125 -70
  244. package/fesm2022/bravobit-bb-foundation-dialog.mjs.map +1 -1
  245. package/fesm2022/bravobit-bb-foundation-elements.mjs +1780 -1368
  246. package/fesm2022/bravobit-bb-foundation-elements.mjs.map +1 -1
  247. package/fesm2022/bravobit-bb-foundation-http.mjs +38 -27
  248. package/fesm2022/bravobit-bb-foundation-http.mjs.map +1 -1
  249. package/fesm2022/bravobit-bb-foundation-localize.mjs +310 -264
  250. package/fesm2022/bravobit-bb-foundation-localize.mjs.map +1 -1
  251. package/fesm2022/bravobit-bb-foundation-masking.mjs +23 -20
  252. package/fesm2022/bravobit-bb-foundation-masking.mjs.map +1 -1
  253. package/fesm2022/bravobit-bb-foundation-notifications.mjs +67 -62
  254. package/fesm2022/bravobit-bb-foundation-notifications.mjs.map +1 -1
  255. package/fesm2022/bravobit-bb-foundation-permissions.mjs +54 -72
  256. package/fesm2022/bravobit-bb-foundation-permissions.mjs.map +1 -1
  257. package/fesm2022/bravobit-bb-foundation-recaptcha.mjs +44 -54
  258. package/fesm2022/bravobit-bb-foundation-recaptcha.mjs.map +1 -1
  259. package/fesm2022/bravobit-bb-foundation-rxjs.mjs +5 -1
  260. package/fesm2022/bravobit-bb-foundation-rxjs.mjs.map +1 -1
  261. package/fesm2022/bravobit-bb-foundation-select.mjs +288 -0
  262. package/fesm2022/bravobit-bb-foundation-select.mjs.map +1 -0
  263. package/fesm2022/bravobit-bb-foundation-storage.mjs +4 -7
  264. package/fesm2022/bravobit-bb-foundation-storage.mjs.map +1 -1
  265. package/fesm2022/bravobit-bb-foundation-table.mjs +67 -66
  266. package/fesm2022/bravobit-bb-foundation-table.mjs.map +1 -1
  267. package/fesm2022/bravobit-bb-foundation-tooltip.mjs +31 -61
  268. package/fesm2022/bravobit-bb-foundation-tooltip.mjs.map +1 -1
  269. package/fesm2022/bravobit-bb-foundation-utils.mjs +28 -23
  270. package/fesm2022/bravobit-bb-foundation-utils.mjs.map +1 -1
  271. package/fesm2022/bravobit-bb-foundation.mjs +166 -222
  272. package/fesm2022/bravobit-bb-foundation.mjs.map +1 -1
  273. package/http/lib/http.config.d.ts +5 -0
  274. package/http/lib/http.interfaces.d.ts +3 -0
  275. package/http/lib/http.module.d.ts +2 -6
  276. package/http/public_api.d.ts +1 -0
  277. package/lib/core/functions/array.utils.d.ts +1 -0
  278. package/lib/core/miscellaneous/coercion.d.ts +2 -0
  279. package/lib/core/miscellaneous/regex.d.ts +1 -0
  280. package/lib/core/services/files.service.d.ts +19 -0
  281. package/localize/lib/interfaces/config.interfaces.d.ts +1 -1
  282. package/localize/lib/interfaces/functions.interfaces.d.ts +0 -2
  283. package/localize/lib/localizations/dutch.localization.d.ts +18 -0
  284. package/localize/lib/localizations/english.localization.d.ts +18 -0
  285. package/localize/lib/localize.config.d.ts +6 -0
  286. package/localize/lib/localize.module.d.ts +2 -7
  287. package/localize/lib/localize.pipe.d.ts +1 -1
  288. package/localize/lib/localize.service.d.ts +4 -4
  289. package/localize/lib/localize.tokens.d.ts +11 -0
  290. package/localize/lib/views/localize-string/localize-string.component.d.ts +1 -1
  291. package/localize/lib/views/localize-template.directive.d.ts +1 -1
  292. package/localize/public_api.d.ts +2 -2
  293. package/masking/lib/directives/currency-mask.directive.d.ts +1 -1
  294. package/masking/lib/directives/date-mask.directive.d.ts +1 -1
  295. package/masking/lib/directives/input-mask.directive.d.ts +1 -1
  296. package/masking/lib/masking.module.d.ts +1 -1
  297. package/notifications/lib/notifications-item/notifications-item.component.d.ts +1 -1
  298. package/notifications/lib/notifications-list/notifications-list.component.d.ts +1 -1
  299. package/notifications/lib/notifications.config.d.ts +3 -0
  300. package/notifications/lib/notifications.interfaces.d.ts +2 -1
  301. package/notifications/lib/notifications.module.d.ts +1 -5
  302. package/notifications/public_api.d.ts +1 -0
  303. package/package.json +31 -36
  304. package/permissions/lib/directives/permission.directive.d.ts +1 -1
  305. package/permissions/lib/guards/permission.guard.d.ts +3 -15
  306. package/permissions/lib/permissions.config.d.ts +3 -0
  307. package/permissions/lib/permissions.interface.d.ts +2 -1
  308. package/permissions/lib/permissions.module.d.ts +1 -1
  309. package/permissions/public_api.d.ts +1 -0
  310. package/public_api.d.ts +3 -10
  311. package/recaptcha/lib/recaptcha/recaptcha.component.d.ts +4 -7
  312. package/recaptcha/lib/recaptcha-loader.service.d.ts +9 -13
  313. package/recaptcha/lib/recaptcha.config.d.ts +3 -0
  314. package/recaptcha/lib/recaptcha.module.d.ts +2 -2
  315. package/recaptcha/public_api.d.ts +1 -0
  316. package/rxjs/lib/observables/get-route-param.observable.d.ts +3 -0
  317. package/rxjs/public_api.d.ts +1 -0
  318. package/{theming → select}/index.d.ts +1 -1
  319. package/select/lib/select/select.component.d.ts +75 -0
  320. package/select/lib/select-label.directive.d.ts +8 -0
  321. package/select/lib/select-option-group.directive.d.ts +8 -0
  322. package/select/lib/select-option.directive.d.ts +8 -0
  323. package/select/lib/select.module.d.ts +10 -0
  324. package/select/public_api.d.ts +5 -0
  325. package/styles/colors.scss +20 -0
  326. package/styles/grid.scss +98 -0
  327. package/styles/reset.scss +65 -0
  328. package/styles/theme.scss +88 -0
  329. package/table/lib/components/table/table.component.d.ts +4 -6
  330. package/table/lib/components/table-cell/table-cell.component.d.ts +1 -1
  331. package/table/lib/components/table-header-cell/table-header-cell.component.d.ts +4 -7
  332. package/table/lib/components/table-pager/table-pager.component.d.ts +4 -8
  333. package/table/lib/table.module.d.ts +1 -5
  334. package/tooltip/lib/tooltip-container/tooltip-container.component.d.ts +3 -4
  335. package/tooltip/lib/tooltip.directive.d.ts +8 -17
  336. package/tooltip/lib/tooltip.module.d.ts +2 -5
  337. package/tooltip/public_api.d.ts +1 -1
  338. package/utils/lib/directives/autosize.directive.d.ts +2 -1
  339. package/utils/lib/directives/focus-trap.directive.d.ts +1 -1
  340. package/utils/lib/directives/focus.directive.d.ts +1 -1
  341. package/utils/lib/directives/template.directive.d.ts +1 -1
  342. package/utils/lib/utils.module.d.ts +1 -1
  343. package/auth/lib/directives/abstract.directive.d.ts +0 -12
  344. package/collections/lib/components/collections.directive.d.ts +0 -17
  345. package/controls/index.d.ts +0 -5
  346. package/controls/lib/checkbox/checkbox/checkbox.component.d.ts +0 -51
  347. package/controls/lib/checkbox/checkbox-group/checkbox-group.component.d.ts +0 -23
  348. package/controls/lib/checkbox/checkbox.module.d.ts +0 -10
  349. package/controls/lib/control-error/control-error/control-error.animation.d.ts +0 -1
  350. package/controls/lib/control-error/control-error/control-error.component.d.ts +0 -17
  351. package/controls/lib/control-error/control-error-submit.directive.d.ts +0 -15
  352. package/controls/lib/control-error/control-error.defaults.d.ts +0 -2
  353. package/controls/lib/control-error/control-error.interface.d.ts +0 -12
  354. package/controls/lib/control-error/control-error.module.d.ts +0 -9
  355. package/controls/lib/control-error/control-error.utils.d.ts +0 -3
  356. package/controls/lib/controls.interfaces.d.ts +0 -4
  357. package/controls/lib/controls.module.d.ts +0 -14
  358. package/controls/lib/form-control/form-control/form-control.component.d.ts +0 -29
  359. package/controls/lib/form-control/form-control-addon/form-control-addon.component.d.ts +0 -6
  360. package/controls/lib/form-control/form-control-input.directive.d.ts +0 -35
  361. package/controls/lib/form-control/form-control.module.d.ts +0 -12
  362. package/controls/lib/radio/radio-button/radio-button.component.d.ts +0 -24
  363. package/controls/lib/radio/radio-group/radio-group.component.d.ts +0 -53
  364. package/controls/lib/radio/radio.module.d.ts +0 -11
  365. package/controls/lib/toggle/toggle/toggle.component.d.ts +0 -45
  366. package/controls/lib/toggle/toggle-group/toggle-group.component.d.ts +0 -23
  367. package/controls/lib/toggle/toggle.module.d.ts +0 -10
  368. package/controls/public_api.d.ts +0 -20
  369. package/elements/lib/dropdown/dropdown.component.d.ts +0 -21
  370. package/elements/lib/tag/tag.component.d.ts +0 -7
  371. package/esm2022/auth/lib/directives/abstract.directive.mjs +0 -40
  372. package/esm2022/collections/lib/components/collections.directive.mjs +0 -43
  373. package/esm2022/controls/bravobit-bb-foundation-controls.mjs +0 -5
  374. package/esm2022/controls/lib/checkbox/checkbox/checkbox.component.mjs +0 -178
  375. package/esm2022/controls/lib/checkbox/checkbox-group/checkbox-group.component.mjs +0 -68
  376. package/esm2022/controls/lib/checkbox/checkbox.module.mjs +0 -20
  377. package/esm2022/controls/lib/control-error/control-error/control-error.animation.mjs +0 -14
  378. package/esm2022/controls/lib/control-error/control-error/control-error.component.mjs +0 -63
  379. package/esm2022/controls/lib/control-error/control-error-submit.directive.mjs +0 -47
  380. package/esm2022/controls/lib/control-error/control-error.defaults.mjs +0 -26
  381. package/esm2022/controls/lib/control-error/control-error.interface.mjs +0 -3
  382. package/esm2022/controls/lib/control-error/control-error.module.mjs +0 -19
  383. package/esm2022/controls/lib/control-error/control-error.utils.mjs +0 -20
  384. package/esm2022/controls/lib/controls.interfaces.mjs +0 -2
  385. package/esm2022/controls/lib/controls.module.mjs +0 -62
  386. package/esm2022/controls/lib/form-control/form-control/form-control.component.mjs +0 -79
  387. package/esm2022/controls/lib/form-control/form-control-addon/form-control-addon.component.mjs +0 -22
  388. package/esm2022/controls/lib/form-control/form-control-input.directive.mjs +0 -124
  389. package/esm2022/controls/lib/form-control/form-control.module.mjs +0 -34
  390. package/esm2022/controls/lib/radio/radio-button/radio-button.component.mjs +0 -75
  391. package/esm2022/controls/lib/radio/radio-group/radio-group.component.mjs +0 -168
  392. package/esm2022/controls/lib/radio/radio.module.mjs +0 -21
  393. package/esm2022/controls/lib/toggle/toggle/toggle.component.mjs +0 -153
  394. package/esm2022/controls/lib/toggle/toggle-group/toggle-group.component.mjs +0 -62
  395. package/esm2022/controls/lib/toggle/toggle.module.mjs +0 -20
  396. package/esm2022/controls/public_api.mjs +0 -21
  397. package/esm2022/elements/lib/dropdown/dropdown.component.mjs +0 -100
  398. package/esm2022/elements/lib/tag/tag.component.mjs +0 -18
  399. package/esm2022/lib/core/mixins/can-disable.mjs +0 -16
  400. package/esm2022/lib/core/mixins/can-hide-errors.mjs +0 -16
  401. package/esm2022/lib/core/mixins/can-load.mjs +0 -16
  402. package/esm2022/lib/core/mixins/constructor.mjs +0 -2
  403. package/esm2022/lib/core/mixins/has-error.mjs +0 -16
  404. package/esm2022/lib/core/mixins/is-focused.mjs +0 -16
  405. package/esm2022/lib/core/mixins/is-grouped.mjs +0 -16
  406. package/esm2022/lib/core/mixins/is-readonly.mjs +0 -16
  407. package/esm2022/lib/core/mixins/is-required.mjs +0 -16
  408. package/esm2022/lib/core/services/clipboard.service.mjs +0 -70
  409. package/esm2022/localize/lib/interfaces/transforms.interfaces.mjs +0 -3
  410. package/esm2022/localize/lib/locale.token.mjs +0 -14
  411. package/esm2022/theming/bravobit-bb-foundation-theming.mjs +0 -5
  412. package/esm2022/theming/lib/themes/checkbox-group.theme.mjs +0 -17
  413. package/esm2022/theming/lib/themes/checkbox.theme.mjs +0 -35
  414. package/esm2022/theming/lib/themes/control-error.theme.mjs +0 -11
  415. package/esm2022/theming/lib/themes/form-control-addon.theme.mjs +0 -6
  416. package/esm2022/theming/lib/themes/form-control.theme.mjs +0 -45
  417. package/esm2022/theming/lib/themes/radio-button.theme.mjs +0 -29
  418. package/esm2022/theming/lib/themes/radio-group.theme.mjs +0 -20
  419. package/esm2022/theming/lib/themes/toggle-group.theme.mjs +0 -17
  420. package/esm2022/theming/lib/themes/toggle.theme.mjs +0 -28
  421. package/esm2022/theming/lib/theming.data.mjs +0 -90
  422. package/esm2022/theming/lib/theming.directive.mjs +0 -38
  423. package/esm2022/theming/lib/theming.interface.mjs +0 -2
  424. package/esm2022/theming/lib/theming.module.mjs +0 -16
  425. package/esm2022/theming/lib/utils/theming.variable.mjs +0 -41
  426. package/esm2022/theming/public_api.mjs +0 -10
  427. package/fesm2022/bravobit-bb-foundation-controls.mjs +0 -1191
  428. package/fesm2022/bravobit-bb-foundation-controls.mjs.map +0 -1
  429. package/fesm2022/bravobit-bb-foundation-theming.mjs +0 -381
  430. package/fesm2022/bravobit-bb-foundation-theming.mjs.map +0 -1
  431. package/lib/core/mixins/can-disable.d.ts +0 -6
  432. package/lib/core/mixins/can-hide-errors.d.ts +0 -6
  433. package/lib/core/mixins/can-load.d.ts +0 -6
  434. package/lib/core/mixins/constructor.d.ts +0 -1
  435. package/lib/core/mixins/has-error.d.ts +0 -6
  436. package/lib/core/mixins/is-focused.d.ts +0 -6
  437. package/lib/core/mixins/is-grouped.d.ts +0 -6
  438. package/lib/core/mixins/is-readonly.d.ts +0 -6
  439. package/lib/core/mixins/is-required.d.ts +0 -6
  440. package/lib/core/services/clipboard.service.d.ts +0 -18
  441. package/localize/lib/interfaces/transforms.interfaces.d.ts +0 -3
  442. package/localize/lib/locale.token.d.ts +0 -3
  443. package/theming/lib/themes/checkbox-group.theme.d.ts +0 -16
  444. package/theming/lib/themes/checkbox.theme.d.ts +0 -32
  445. package/theming/lib/themes/control-error.theme.d.ts +0 -9
  446. package/theming/lib/themes/form-control-addon.theme.d.ts +0 -5
  447. package/theming/lib/themes/form-control.theme.d.ts +0 -32
  448. package/theming/lib/themes/radio-button.theme.d.ts +0 -26
  449. package/theming/lib/themes/radio-group.theme.d.ts +0 -17
  450. package/theming/lib/themes/toggle-group.theme.d.ts +0 -16
  451. package/theming/lib/themes/toggle.theme.d.ts +0 -25
  452. package/theming/lib/theming.data.d.ts +0 -17
  453. package/theming/lib/theming.directive.d.ts +0 -13
  454. package/theming/lib/theming.interface.d.ts +0 -34
  455. package/theming/lib/theming.module.d.ts +0 -7
  456. package/theming/lib/utils/theming.variable.d.ts +0 -16
  457. package/theming/public_api.d.ts +0 -9
@@ -1,17 +0,0 @@
1
- import { ControlError } from '../control-error.interface';
2
- import { Localize } from '@bravobit/bb-foundation/localize';
3
- import { ValidationErrors } from '@angular/forms';
4
- import * as i0 from "@angular/core";
5
- export declare class BbiControlError {
6
- private _localize?;
7
- private _functions?;
8
- readonly errorFunctions: ControlError;
9
- animation: boolean;
10
- set errors(errors: ValidationErrors | null);
11
- error: string | null;
12
- constructor(_localize?: Localize, _functions?: ControlError[]);
13
- private parseError;
14
- private getErrorSentence;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiControlError, [{ optional: true; }, { optional: true; }]>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiControlError, "bbi-control-error", never, { "errors": { "alias": "errors"; "required": false; }; }, {}, never, never, false, never>;
17
- }
@@ -1,15 +0,0 @@
1
- import { ElementRef, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class BbiControlErrorSubmit implements OnInit {
4
- private _elementRef;
5
- private _submitted$;
6
- private _subscription;
7
- constructor(_elementRef: ElementRef<HTMLFormElement>);
8
- ngOnInit(): void;
9
- get submitted(): boolean;
10
- submit(): void;
11
- reset(): void;
12
- private handleNativeForm;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiControlErrorSubmit, never>;
14
- static ɵdir: i0.ɵɵDirectiveDeclaration<BbiControlErrorSubmit, "form", ["bbiControlErrorSubmit"], {}, {}, never, never, false, never>;
15
- }
@@ -1,2 +0,0 @@
1
- import { ControlError } from './control-error.interface';
2
- export declare const controlErrorDefaults: ControlError;
@@ -1,12 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- export type ControlErrorData = {
3
- [key: string]: any;
4
- };
5
- export type ControlError = {
6
- [name: string]: (data: ControlErrorData) => string | {
7
- token: string;
8
- data: object;
9
- };
10
- };
11
- export declare const BBI_CONTROL_ERRORS: InjectionToken<ControlError[]>;
12
- export type ControlErrorMode = 'blur' | 'changes' | 'hidden';
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./control-error/control-error.component";
3
- import * as i2 from "./control-error-submit.directive";
4
- import * as i3 from "@angular/common";
5
- export declare class ControlErrorModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ControlErrorModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<ControlErrorModule, [typeof i1.BbiControlError, typeof i2.BbiControlErrorSubmit], [typeof i3.CommonModule], [typeof i1.BbiControlError, typeof i2.BbiControlErrorSubmit]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<ControlErrorModule>;
9
- }
@@ -1,3 +0,0 @@
1
- import { ControlErrorMode } from './control-error.interface';
2
- import { NgControl } from '@angular/forms';
3
- export declare function shouldShowErrors(mode: ControlErrorMode, control: NgControl, submitted: boolean, focused: boolean, readonly: boolean): boolean;
@@ -1,4 +0,0 @@
1
- import { ControlError } from './control-error/control-error.interface';
2
- export interface ControlsConfig {
3
- errors?: ControlError;
4
- }
@@ -1,14 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import { ControlsConfig } from './controls.interfaces';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "./form-control/form-control.module";
5
- import * as i2 from "./checkbox/checkbox.module";
6
- import * as i3 from "./radio/radio.module";
7
- import * as i4 from "./toggle/toggle.module";
8
- import * as i5 from "./control-error/control-error.module";
9
- export declare class ControlsModule {
10
- static forRoot(config?: ControlsConfig): ModuleWithProviders<ControlsModule>;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<ControlsModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<ControlsModule, never, [typeof i1.FormControlModule, typeof i2.CheckboxModule, typeof i3.RadioModule, typeof i4.ToggleModule, typeof i5.ControlErrorModule], [typeof i1.FormControlModule, typeof i2.CheckboxModule, typeof i3.RadioModule, typeof i4.ToggleModule, typeof i5.ControlErrorModule]>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<ControlsModule>;
14
- }
@@ -1,29 +0,0 @@
1
- import { ChangeDetectorRef, DoCheck, TemplateRef } from '@angular/core';
2
- import { BbiControlErrorSubmit } from '../../control-error/control-error-submit.directive';
3
- import { ControlErrorMode } from '../../control-error/control-error.interface';
4
- import { BooleanInput } from '@angular/cdk/coercion';
5
- import { BbiFormControlInput } from '../form-control-input.directive';
6
- import { ValidationErrors } from '@angular/forms';
7
- import { BehaviorSubject } from 'rxjs';
8
- import * as i0 from "@angular/core";
9
- export declare class BbiFormControl implements DoCheck {
10
- private _changeDetectorRef;
11
- private _errorSubmit?;
12
- readonly labelId: string;
13
- formControlInput?: BbiFormControlInput;
14
- label: string | TemplateRef<any> | null;
15
- hint: string | TemplateRef<any> | null;
16
- errorMode: ControlErrorMode;
17
- validationErrors$: BehaviorSubject<ValidationErrors>;
18
- get grouped(): boolean;
19
- set grouped(value: BooleanInput);
20
- private _grouped;
21
- constructor(_changeDetectorRef: ChangeDetectorRef, _errorSubmit?: BbiControlErrorSubmit);
22
- ngDoCheck(): void;
23
- static ngAcceptInputType_label: string | TemplateRef<any> | null | undefined;
24
- static ngAcceptInputType_hint: string | TemplateRef<any> | null | undefined;
25
- static ngAcceptInputType_errorMode: ControlErrorMode;
26
- static ngAcceptInputType_grouped: BooleanInput;
27
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiFormControl, [null, { optional: true; }]>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiFormControl, "bbi-form-control", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "errorMode": { "alias": "errorMode"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; }, {}, ["formControlInput"], ["[bbi-form-control-addon=prefix]", "input[bbiFormControlInput]", "[bbi-form-control-addon=suffix]"], false, never>;
29
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class BbiFormControlAddon {
3
- type: 'prefix' | 'suffix' | null;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiFormControlAddon, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiFormControlAddon, "[bbi-form-control-addon]", never, { "type": { "alias": "bbi-form-control-addon"; "required": false; }; }, {}, never, ["*"], false, never>;
6
- }
@@ -1,35 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core';
2
- import { BooleanInput } from '@angular/cdk/coercion';
3
- import { NgControl, ValidationErrors } from '@angular/forms';
4
- import { BbiFormControl } from './form-control/form-control.component';
5
- import * as i0 from "@angular/core";
6
- export declare class BbiFormControlInput implements OnInit, OnDestroy {
7
- private _elementRef;
8
- private _formControl;
9
- private _changeDetectorRef;
10
- private _ngControl;
11
- readonly labelId: string;
12
- errors: ValidationErrors | null;
13
- focused: boolean;
14
- private _subscription;
15
- constructor(_elementRef: ElementRef, _formControl: BbiFormControl, _changeDetectorRef: ChangeDetectorRef, _ngControl: NgControl);
16
- ngOnInit(): void;
17
- ngOnDestroy(): void;
18
- get control(): NgControl;
19
- get disabled(): boolean;
20
- set disabled(value: BooleanInput);
21
- private _disabled;
22
- get readonly(): boolean;
23
- set readonly(value: BooleanInput);
24
- private _readonly;
25
- get required(): BooleanInput;
26
- set required(value: BooleanInput);
27
- private _required;
28
- private handleControlErrorStatus;
29
- private handleControlDisabledStatus;
30
- private handleFocusedState;
31
- static ngAcceptInputType_disabled: BooleanInput;
32
- static ngAcceptInputType_required: BooleanInput;
33
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiFormControlInput, [null, null, null, { optional: true; self: true; }]>;
34
- static ɵdir: i0.ɵɵDirectiveDeclaration<BbiFormControlInput, "input[bbiFormControlInput]", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never>;
35
- }
@@ -1,12 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./form-control/form-control.component";
3
- import * as i2 from "./form-control-input.directive";
4
- import * as i3 from "./form-control-addon/form-control-addon.component";
5
- import * as i4 from "@angular/common";
6
- import * as i5 from "../control-error/control-error.module";
7
- import * as i6 from "@bravobit/bb-foundation/utils";
8
- export declare class FormControlModule {
9
- static ɵfac: i0.ɵɵFactoryDeclaration<FormControlModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<FormControlModule, [typeof i1.BbiFormControl, typeof i2.BbiFormControlInput, typeof i3.BbiFormControlAddon], [typeof i4.CommonModule, typeof i5.ControlErrorModule, typeof i6.UtilsModule], [typeof i1.BbiFormControl, typeof i2.BbiFormControlInput, typeof i3.BbiFormControlAddon]>;
11
- static ɵinj: i0.ɵɵInjectorDeclaration<FormControlModule>;
12
- }
@@ -1,24 +0,0 @@
1
- import { ChangeDetectorRef } from '@angular/core';
2
- import { BooleanInput } from '@angular/cdk/coercion';
3
- import { BbiRadioGroup } from '../radio-group/radio-group.component';
4
- import * as i0 from "@angular/core";
5
- export declare class BbiRadioButton {
6
- private _radioGroup;
7
- private _changeDetectorRef;
8
- value: any | null;
9
- get disabled(): boolean;
10
- set disabled(value: BooleanInput);
11
- private _disabled;
12
- get hideText(): boolean;
13
- set hideText(value: BooleanInput);
14
- private _hideText;
15
- onClick(): void;
16
- onSpacePressed(): void;
17
- get selected(): boolean;
18
- constructor(_radioGroup: BbiRadioGroup, _changeDetectorRef: ChangeDetectorRef);
19
- static ngAcceptInputType_value: any;
20
- static ngAcceptInputType_disabled: BooleanInput;
21
- static ngAcceptInputType_hideText: BooleanInput;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiRadioButton, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiRadioButton, "bbi-radio-button", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideText": { "alias": "hideText"; "required": false; }; }, {}, never, ["*"], false, never>;
24
- }
@@ -1,53 +0,0 @@
1
- import { ChangeDetectorRef, DoCheck, EventEmitter, Injector, TemplateRef } from '@angular/core';
2
- import { ControlValueAccessor, ValidationErrors } from '@angular/forms';
3
- import { BbiControlErrorSubmit } from '../../control-error/control-error-submit.directive';
4
- import { ControlErrorMode } from '../../control-error/control-error.interface';
5
- import { BooleanInput } from '@angular/cdk/coercion';
6
- import { BehaviorSubject } from 'rxjs';
7
- import * as i0 from "@angular/core";
8
- export declare class BbiRadioGroup implements DoCheck, ControlValueAccessor {
9
- private _injector;
10
- private _changeDetectorRef;
11
- private _errorSubmit?;
12
- label: string | TemplateRef<any> | null;
13
- errorMode: ControlErrorMode;
14
- valueChange: EventEmitter<any>;
15
- validationErrors$: BehaviorSubject<ValidationErrors>;
16
- get value(): any;
17
- set value(value: any);
18
- private _value;
19
- get disabled(): boolean;
20
- set disabled(value: BooleanInput);
21
- private _disabled;
22
- get grouped(): boolean;
23
- set grouped(value: BooleanInput);
24
- private _grouped;
25
- get readonly(): boolean;
26
- set readonly(value: BooleanInput);
27
- private _readonly;
28
- get required(): boolean;
29
- set required(value: BooleanInput);
30
- private _required;
31
- get inline(): boolean;
32
- set inline(value: BooleanInput);
33
- private _inline;
34
- onChange: (newValue: any) => void;
35
- onTouched: () => void;
36
- constructor(_injector: Injector, _changeDetectorRef: ChangeDetectorRef, _errorSubmit?: BbiControlErrorSubmit);
37
- ngDoCheck(): void;
38
- select(value: any): void;
39
- registerOnChange(fn: (newValue: boolean) => void): void;
40
- registerOnTouched(fn: () => void): void;
41
- setDisabledState(isDisabled: boolean): void;
42
- writeValue(newValue: any): void;
43
- static ngAcceptInputType_label: string | TemplateRef<any> | null | undefined;
44
- static ngAcceptInputType_value: any;
45
- static ngAcceptInputType_disabled: BooleanInput;
46
- static ngAcceptInputType_readonly: BooleanInput;
47
- static ngAcceptInputType_grouped: BooleanInput;
48
- static ngAcceptInputType_required: BooleanInput;
49
- static ngAcceptInputType_inline: BooleanInput;
50
- static ngAcceptInputType_errorMode: ControlErrorMode;
51
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiRadioGroup, [null, null, { optional: true; }]>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiRadioGroup, "bbi-radio-group", never, { "label": { "alias": "label"; "required": false; }; "errorMode": { "alias": "errorMode"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, { "valueChange": "valueChange"; }, never, ["bbi-radio-button"], false, never>;
53
- }
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./radio-group/radio-group.component";
3
- import * as i2 from "./radio-button/radio-button.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "../control-error/control-error.module";
6
- import * as i5 from "@bravobit/bb-foundation/utils";
7
- export declare class RadioModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<RadioModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<RadioModule, [typeof i1.BbiRadioGroup, typeof i2.BbiRadioButton], [typeof i3.CommonModule, typeof i4.ControlErrorModule, typeof i5.UtilsModule], [typeof i1.BbiRadioGroup, typeof i2.BbiRadioButton]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<RadioModule>;
11
- }
@@ -1,45 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
2
- import { BooleanInput } from '@angular/cdk/coercion';
3
- import { ControlValueAccessor } from '@angular/forms';
4
- import * as i0 from "@angular/core";
5
- export declare class BbiToggle implements ControlValueAccessor {
6
- private _renderer;
7
- private _changeDetectorRef;
8
- readonly labelId: string;
9
- inputElementRef: ElementRef<HTMLInputElement>;
10
- checkedChange: EventEmitter<boolean>;
11
- get checked(): boolean;
12
- set checked(value: BooleanInput);
13
- private _checked;
14
- get disabled(): boolean;
15
- set disabled(value: BooleanInput);
16
- private _disabled;
17
- get grouped(): boolean;
18
- set grouped(value: BooleanInput);
19
- private _grouped;
20
- get required(): boolean;
21
- set required(value: BooleanInput);
22
- private _required;
23
- get hideText(): boolean;
24
- set hideText(value: BooleanInput);
25
- private _hideText;
26
- onChange: (newValue: boolean) => void;
27
- onTouched: () => void;
28
- constructor(_renderer: Renderer2, _changeDetectorRef: ChangeDetectorRef);
29
- registerOnChange(fn: (newValue: boolean) => void): void;
30
- registerOnTouched(fn: () => void): void;
31
- setDisabledState(isDisabled: boolean): void;
32
- writeValue(newValue: boolean): void;
33
- toggle(): void;
34
- onClickEvent(event: Event): void;
35
- onChangeEvent(event: Event): void;
36
- private emitChangeEvent;
37
- private syncField;
38
- static ngAcceptInputType_checked: BooleanInput;
39
- static ngAcceptInputType_disabled: BooleanInput;
40
- static ngAcceptInputType_required: BooleanInput;
41
- static ngAcceptInputType_grouped: BooleanInput;
42
- static ngAcceptInputType_hideText: BooleanInput;
43
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiToggle, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiToggle, "bbi-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; "required": { "alias": "required"; "required": false; }; "hideText": { "alias": "hideText"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, ["*"], false, never>;
45
- }
@@ -1,23 +0,0 @@
1
- import { ChangeDetectorRef, TemplateRef } from '@angular/core';
2
- import { BooleanInput } from '@angular/cdk/coercion';
3
- import * as i0 from "@angular/core";
4
- export declare class BbiToggleGroup {
5
- private _changeDetectorRef;
6
- label: string | TemplateRef<any> | null;
7
- get grouped(): boolean;
8
- set grouped(value: BooleanInput);
9
- private _grouped;
10
- get required(): boolean;
11
- set required(value: BooleanInput);
12
- private _required;
13
- get inline(): boolean;
14
- set inline(value: BooleanInput);
15
- private _inline;
16
- constructor(_changeDetectorRef: ChangeDetectorRef);
17
- static ngAcceptInputType_label: string | TemplateRef<any> | null | undefined;
18
- static ngAcceptInputType_grouped: BooleanInput;
19
- static ngAcceptInputType_required: BooleanInput;
20
- static ngAcceptInputType_inline: BooleanInput;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<BbiToggleGroup, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<BbiToggleGroup, "bbi-toggle-group", never, { "label": { "alias": "label"; "required": false; }; "grouped": { "alias": "grouped"; "required": false; }; "required": { "alias": "required"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, ["bbi-toggle"], false, never>;
23
- }
@@ -1,10 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./toggle/toggle.component";
3
- import * as i2 from "./toggle-group/toggle-group.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@bravobit/bb-foundation/utils";
6
- export declare class ToggleModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ToggleModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<ToggleModule, [typeof i1.BbiToggle, typeof i2.BbiToggleGroup], [typeof i3.CommonModule, typeof i4.UtilsModule], [typeof i1.BbiToggle, typeof i2.BbiToggleGroup]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<ToggleModule>;
10
- }
@@ -1,20 +0,0 @@
1
- export * from './lib/checkbox/checkbox-group/checkbox-group.component';
2
- export * from './lib/checkbox/checkbox/checkbox.component';
3
- export * from './lib/checkbox/checkbox.module';
4
- export * from './lib/toggle/toggle-group/toggle-group.component';
5
- export * from './lib/toggle/toggle/toggle.component';
6
- export * from './lib/toggle/toggle.module';
7
- export * from './lib/radio/radio-group/radio-group.component';
8
- export * from './lib/radio/radio-button/radio-button.component';
9
- export * from './lib/radio/radio.module';
10
- export * from './lib/form-control/form-control/form-control.component';
11
- export * from './lib/form-control/form-control-addon/form-control-addon.component';
12
- export * from './lib/form-control/form-control-input.directive';
13
- export * from './lib/form-control/form-control.module';
14
- export * from './lib/control-error/control-error/control-error.component';
15
- export * from './lib/control-error/control-error-submit.directive';
16
- export * from './lib/control-error/control-error.interface';
17
- export * from './lib/control-error/control-error.utils';
18
- export * from './lib/control-error/control-error.defaults';
19
- export * from './lib/control-error/control-error.module';
20
- export * from './lib/controls.module';
@@ -1,21 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import { BehaviorSubject } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class BbDropdown {
5
- private _elementRef;
6
- visible$: BehaviorSubject<boolean>;
7
- constructor(_elementRef: ElementRef);
8
- toggle(): void;
9
- close(): void;
10
- onDocumentClick(target: HTMLElement): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<BbDropdown, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<BbDropdown, "bb-dropdown", never, {}, {}, never, ["*", "[bbDropdownItem], hr"], false, never>;
13
- }
14
- export declare class BbDropdownItem {
15
- private _parent?;
16
- closeOnClick: boolean;
17
- constructor(_parent?: BbDropdown);
18
- onClick(): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<BbDropdownItem, [{ optional: true; host: true; }]>;
20
- static ɵdir: i0.ɵɵDirectiveDeclaration<BbDropdownItem, "[bbDropdownItem]", never, { "closeOnClick": { "alias": "closeOnClick"; "required": false; }; }, {}, never, never, false, never>;
21
- }
@@ -1,7 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class BbTag {
4
- onClose: EventEmitter<void>;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<BbTag, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<BbTag, "bb-tag", never, {}, { "onClose": "onClose"; }, never, ["*"], false, never>;
7
- }
@@ -1,40 +0,0 @@
1
- export class AbstractAuthDirective {
2
- constructor(templateRef, viewContainerRef) {
3
- this.templateRef = templateRef;
4
- this.viewContainerRef = viewContainerRef;
5
- // Data.
6
- this.valid = false;
7
- // Templates.
8
- this.elseTemplateRef = null;
9
- // View refs.
10
- this.thenViewRef = null;
11
- this.elseViewRef = null;
12
- }
13
- updateView() {
14
- if (this.valid) {
15
- if (!this.thenViewRef) {
16
- this.viewContainerRef.clear();
17
- this.elseViewRef = null;
18
- if (this.templateRef) {
19
- this.thenViewRef = this.viewContainerRef.createEmbeddedView(this.templateRef);
20
- }
21
- }
22
- }
23
- else {
24
- if (!this.elseViewRef) {
25
- this.viewContainerRef.clear();
26
- this.thenViewRef = null;
27
- if (this.elseTemplateRef) {
28
- this.elseViewRef = this.viewContainerRef.createEmbeddedView(this.elseTemplateRef);
29
- }
30
- }
31
- }
32
- }
33
- assertTemplate(property, templateRef) {
34
- const isTemplateRefOrNull = !!(!templateRef || templateRef.createEmbeddedView);
35
- if (!isTemplateRefOrNull) {
36
- throw new Error(`${property} must be a TemplateRef.`);
37
- }
38
- }
39
- }
40
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWJzdHJhY3QuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmItZm91bmRhdGlvbi9hdXRoL3NyYy9saWIvZGlyZWN0aXZlcy9hYnN0cmFjdC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFnQixxQkFBcUI7SUFZdkMsWUFBZ0MsV0FBNkIsRUFDN0IsZ0JBQWtDO1FBRGxDLGdCQUFXLEdBQVgsV0FBVyxDQUFrQjtRQUM3QixxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBWGxFLFFBQVE7UUFDRSxVQUFLLEdBQVksS0FBSyxDQUFDO1FBRWpDLGFBQWE7UUFDSCxvQkFBZSxHQUE0QixJQUFJLENBQUM7UUFFMUQsYUFBYTtRQUNILGdCQUFXLEdBQWdDLElBQUksQ0FBQztRQUNoRCxnQkFBVyxHQUFnQyxJQUFJLENBQUM7SUFJMUQsQ0FBQztJQUVTLFVBQVU7UUFDaEIsSUFBSSxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUM7WUFDYixJQUFJLENBQUMsSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO2dCQUNwQixJQUFJLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxFQUFFLENBQUM7Z0JBQzlCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDO2dCQUN4QixJQUFJLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztvQkFDbkIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsa0JBQWtCLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO2dCQUNsRixDQUFDO1lBQ0wsQ0FBQztRQUNMLENBQUM7YUFBTSxDQUFDO1lBQ0osSUFBSSxDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQztnQkFDcEIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEtBQUssRUFBRSxDQUFDO2dCQUM5QixJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQztnQkFDeEIsSUFBSSxJQUFJLENBQUMsZUFBZSxFQUFFLENBQUM7b0JBQ3ZCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsQ0FBQztnQkFDdEYsQ0FBQztZQUNMLENBQUM7UUFDTCxDQUFDO0lBQ0wsQ0FBQztJQUVTLGNBQWMsQ0FBQyxRQUFnQixFQUFFLFdBQW9DO1FBQzNFLE1BQU0sbUJBQW1CLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxXQUFXLElBQUksV0FBVyxDQUFDLGtCQUFrQixDQUFDLENBQUM7UUFDL0UsSUFBSSxDQUFDLG1CQUFtQixFQUFFLENBQUM7WUFDdkIsTUFBTSxJQUFJLEtBQUssQ0FBQyxHQUFHLFFBQVEseUJBQXlCLENBQUMsQ0FBQztRQUMxRCxDQUFDO0lBQ0wsQ0FBQztDQUVKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtFbWJlZGRlZFZpZXdSZWYsIFRlbXBsYXRlUmVmLCBWaWV3Q29udGFpbmVyUmVmfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEFic3RyYWN0QXV0aERpcmVjdGl2ZSB7XG5cbiAgICAvLyBEYXRhLlxuICAgIHByb3RlY3RlZCB2YWxpZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgLy8gVGVtcGxhdGVzLlxuICAgIHByb3RlY3RlZCBlbHNlVGVtcGxhdGVSZWY6IFRlbXBsYXRlUmVmPGFueT4gfCBudWxsID0gbnVsbDtcblxuICAgIC8vIFZpZXcgcmVmcy5cbiAgICBwcm90ZWN0ZWQgdGhlblZpZXdSZWY6IEVtYmVkZGVkVmlld1JlZjxhbnk+IHwgbnVsbCA9IG51bGw7XG4gICAgcHJvdGVjdGVkIGVsc2VWaWV3UmVmOiBFbWJlZGRlZFZpZXdSZWY8YW55PiB8IG51bGwgPSBudWxsO1xuXG4gICAgcHJvdGVjdGVkIGNvbnN0cnVjdG9yKHByb3RlY3RlZCB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55PixcbiAgICAgICAgICAgICAgICAgICAgICAgICAgcHJvdGVjdGVkIHZpZXdDb250YWluZXJSZWY6IFZpZXdDb250YWluZXJSZWYpIHtcbiAgICB9XG5cbiAgICBwcm90ZWN0ZWQgdXBkYXRlVmlldygpIHtcbiAgICAgICAgaWYgKHRoaXMudmFsaWQpIHtcbiAgICAgICAgICAgIGlmICghdGhpcy50aGVuVmlld1JlZikge1xuICAgICAgICAgICAgICAgIHRoaXMudmlld0NvbnRhaW5lclJlZi5jbGVhcigpO1xuICAgICAgICAgICAgICAgIHRoaXMuZWxzZVZpZXdSZWYgPSBudWxsO1xuICAgICAgICAgICAgICAgIGlmICh0aGlzLnRlbXBsYXRlUmVmKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMudGhlblZpZXdSZWYgPSB0aGlzLnZpZXdDb250YWluZXJSZWYuY3JlYXRlRW1iZWRkZWRWaWV3KHRoaXMudGVtcGxhdGVSZWYpO1xuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIGlmICghdGhpcy5lbHNlVmlld1JlZikge1xuICAgICAgICAgICAgICAgIHRoaXMudmlld0NvbnRhaW5lclJlZi5jbGVhcigpO1xuICAgICAgICAgICAgICAgIHRoaXMudGhlblZpZXdSZWYgPSBudWxsO1xuICAgICAgICAgICAgICAgIGlmICh0aGlzLmVsc2VUZW1wbGF0ZVJlZikge1xuICAgICAgICAgICAgICAgICAgICB0aGlzLmVsc2VWaWV3UmVmID0gdGhpcy52aWV3Q29udGFpbmVyUmVmLmNyZWF0ZUVtYmVkZGVkVmlldyh0aGlzLmVsc2VUZW1wbGF0ZVJlZik7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgcHJvdGVjdGVkIGFzc2VydFRlbXBsYXRlKHByb3BlcnR5OiBzdHJpbmcsIHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjxhbnk+IHwgbnVsbCkge1xuICAgICAgICBjb25zdCBpc1RlbXBsYXRlUmVmT3JOdWxsID0gISEoIXRlbXBsYXRlUmVmIHx8IHRlbXBsYXRlUmVmLmNyZWF0ZUVtYmVkZGVkVmlldyk7XG4gICAgICAgIGlmICghaXNUZW1wbGF0ZVJlZk9yTnVsbCkge1xuICAgICAgICAgICAgdGhyb3cgbmV3IEVycm9yKGAke3Byb3BlcnR5fSBtdXN0IGJlIGEgVGVtcGxhdGVSZWYuYCk7XG4gICAgICAgIH1cbiAgICB9XG5cbn1cbiJdfQ==
@@ -1,43 +0,0 @@
1
- import { Directive } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class BbCollectionsData {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsData, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: BbCollectionsData, selector: "[bbCollectionsData]", ngImport: i0 }); }
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsData, decorators: [{
8
- type: Directive,
9
- args: [{
10
- selector: '[bbCollectionsData]'
11
- }]
12
- }] });
13
- export class BbCollectionsEmpty {
14
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsEmpty, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
15
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: BbCollectionsEmpty, selector: "[bbCollectionsEmpty]", ngImport: i0 }); }
16
- }
17
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsEmpty, decorators: [{
18
- type: Directive,
19
- args: [{
20
- selector: '[bbCollectionsEmpty]'
21
- }]
22
- }] });
23
- export class BbCollectionsError {
24
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsError, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
25
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: BbCollectionsError, selector: "[bbCollectionsError]", ngImport: i0 }); }
26
- }
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsError, decorators: [{
28
- type: Directive,
29
- args: [{
30
- selector: '[bbCollectionsError]'
31
- }]
32
- }] });
33
- export class BbCollectionsInitial {
34
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsInitial, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
35
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.1", type: BbCollectionsInitial, selector: "[bbCollectionsInitial]", ngImport: i0 }); }
36
- }
37
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.1", ngImport: i0, type: BbCollectionsInitial, decorators: [{
38
- type: Directive,
39
- args: [{
40
- selector: '[bbCollectionsInitial]'
41
- }]
42
- }] });
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sbGVjdGlvbnMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmItZm91bmRhdGlvbi9jb2xsZWN0aW9ucy9zcmMvbGliL2NvbXBvbmVudHMvY29sbGVjdGlvbnMuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7O0FBS3hDLE1BQU0sT0FBTyxpQkFBaUI7OEdBQWpCLGlCQUFpQjtrR0FBakIsaUJBQWlCOzsyRkFBakIsaUJBQWlCO2tCQUg3QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxxQkFBcUI7aUJBQ2xDOztBQU9ELE1BQU0sT0FBTyxrQkFBa0I7OEdBQWxCLGtCQUFrQjtrR0FBbEIsa0JBQWtCOzsyRkFBbEIsa0JBQWtCO2tCQUg5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxzQkFBc0I7aUJBQ25DOztBQU9ELE1BQU0sT0FBTyxrQkFBa0I7OEdBQWxCLGtCQUFrQjtrR0FBbEIsa0JBQWtCOzsyRkFBbEIsa0JBQWtCO2tCQUg5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxzQkFBc0I7aUJBQ25DOztBQU9ELE1BQU0sT0FBTyxvQkFBb0I7OEdBQXBCLG9CQUFvQjtrR0FBcEIsb0JBQW9COzsyRkFBcEIsb0JBQW9CO2tCQUhoQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSx3QkFBd0I7aUJBQ3JDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtEaXJlY3RpdmV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ1tiYkNvbGxlY3Rpb25zRGF0YV0nXG59KVxuZXhwb3J0IGNsYXNzIEJiQ29sbGVjdGlvbnNEYXRhPFQ+IHtcbn1cblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbYmJDb2xsZWN0aW9uc0VtcHR5XSdcbn0pXG5leHBvcnQgY2xhc3MgQmJDb2xsZWN0aW9uc0VtcHR5IHtcbn1cblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbYmJDb2xsZWN0aW9uc0Vycm9yXSdcbn0pXG5leHBvcnQgY2xhc3MgQmJDb2xsZWN0aW9uc0Vycm9yIHtcbn1cblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbYmJDb2xsZWN0aW9uc0luaXRpYWxdJ1xufSlcbmV4cG9ydCBjbGFzcyBCYkNvbGxlY3Rpb25zSW5pdGlhbCB7XG59XG4iXX0=
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public_api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhdm9iaXQtYmItZm91bmRhdGlvbi1jb250cm9scy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2JiLWZvdW5kYXRpb24vY29udHJvbHMvc3JjL2JyYXZvYml0LWJiLWZvdW5kYXRpb24tY29udHJvbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==