@mintplayer/ng-bootstrap 15.0.4 → 15.1.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 (684) hide show
  1. package/_bootstrap.scss +0 -1
  2. package/calendar/src/calendar.component.d.ts +1 -1
  3. package/calendar/src/calendar.module.d.ts +2 -1
  4. package/calendar-month/index.d.ts +1 -0
  5. package/calendar-month/src/index.d.ts +3 -0
  6. package/{lib → calendar-month/src}/interfaces/date-day-of-month.d.ts +0 -0
  7. package/{lib → calendar-month/src}/interfaces/first-and-last-date.d.ts +0 -0
  8. package/{lib → calendar-month/src}/interfaces/index.d.ts +1 -1
  9. package/{lib → calendar-month/src}/interfaces/week.d.ts +0 -0
  10. package/{lib → calendar-month/src}/interfaces/weekday.d.ts +0 -0
  11. package/calendar-month/src/pipes/index.d.ts +2 -0
  12. package/{lib → calendar-month/src}/pipes/month-name/index.d.ts +0 -0
  13. package/{lib → calendar-month/src}/pipes/month-name/month-name.module.d.ts +0 -0
  14. package/{lib → calendar-month/src}/pipes/month-name/month-name.pipe.d.ts +0 -0
  15. package/{lib → calendar-month/src}/pipes/weekday-name/index.d.ts +0 -0
  16. package/{lib → calendar-month/src}/pipes/weekday-name/weekday-name.module.d.ts +0 -0
  17. package/{lib → calendar-month/src}/pipes/weekday-name/weekday-name.pipe.d.ts +0 -0
  18. package/{lib/services/calendar-month → calendar-month/src/service}/calendar-month.service.d.ts +2 -2
  19. package/context-menu/src/context-menu.module.d.ts +3 -2
  20. package/enum/index.d.ts +1 -0
  21. package/enum/src/index.d.ts +2 -0
  22. package/{lib → enum/src}/interfaces/enum-item.d.ts +0 -0
  23. package/enum/src/interfaces/index.d.ts +1 -0
  24. package/{lib/services/enum → enum/src/service}/enum.service.d.ts +1 -1
  25. package/esm2020/calendar/src/calendar.component.mjs +5 -4
  26. package/esm2020/calendar/src/calendar.module.mjs +3 -5
  27. package/esm2020/calendar-month/index.mjs +2 -0
  28. package/esm2020/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +5 -0
  29. package/esm2020/calendar-month/src/index.mjs +4 -0
  30. package/esm2020/calendar-month/src/interfaces/date-day-of-month.mjs +2 -0
  31. package/esm2020/calendar-month/src/interfaces/first-and-last-date.mjs +2 -0
  32. package/esm2020/calendar-month/src/interfaces/index.mjs +5 -0
  33. package/esm2020/calendar-month/src/interfaces/week.mjs +2 -0
  34. package/esm2020/calendar-month/src/interfaces/weekday.mjs +2 -0
  35. package/esm2020/calendar-month/src/pipes/index.mjs +3 -0
  36. package/esm2020/calendar-month/src/pipes/month-name/index.mjs +3 -0
  37. package/esm2020/{lib → calendar-month/src}/pipes/month-name/month-name.module.mjs +1 -1
  38. package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +21 -0
  39. package/esm2020/calendar-month/src/pipes/weekday-name/index.mjs +3 -0
  40. package/esm2020/{lib → calendar-month/src}/pipes/weekday-name/weekday-name.module.mjs +1 -1
  41. package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +16 -0
  42. package/esm2020/calendar-month/src/service/calendar-month.service.mjs +94 -0
  43. package/esm2020/context-menu/src/context-menu.module.mjs +10 -4
  44. package/esm2020/datepicker/src/datepicker.component.mjs +3 -3
  45. package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +5 -2
  46. package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +5 -2
  47. package/esm2020/dropdown/src/dropdown.module.mjs +10 -15
  48. package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +2 -1
  49. package/esm2020/enum/index.mjs +2 -0
  50. package/esm2020/enum/mintplayer-ng-bootstrap-enum.mjs +5 -0
  51. package/esm2020/enum/src/index.mjs +3 -0
  52. package/esm2020/enum/src/interfaces/enum-item.mjs +2 -0
  53. package/esm2020/enum/src/interfaces/index.mjs +2 -0
  54. package/esm2020/enum/src/service/enum.service.mjs +31 -0
  55. package/esm2020/has-overlay/index.mjs +2 -0
  56. package/esm2020/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +5 -0
  57. package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +11 -0
  58. package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +18 -0
  59. package/esm2020/has-overlay/src/index.mjs +3 -0
  60. package/esm2020/index.mjs +1 -3
  61. package/esm2020/lib/enums/index.mjs +1 -2
  62. package/esm2020/lib/pipes/index.mjs +1 -4
  63. package/esm2020/lib/types/index.mjs +3 -2
  64. package/esm2020/lib/types/position.mjs +2 -0
  65. package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +4 -3
  66. package/esm2020/modal/src/modal.module.mjs +9 -5
  67. package/esm2020/multiselect/src/component/multiselect.component.mjs +4 -3
  68. package/esm2020/multiselect/src/multiselect.module.mjs +5 -1
  69. package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +4 -3
  70. package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +1 -1
  71. package/esm2020/offcanvas/src/index.mjs +1 -2
  72. package/esm2020/offcanvas/src/offcanvas.module.mjs +8 -4
  73. package/esm2020/popover/src/component/popover.component.mjs +10 -9
  74. package/esm2020/popover/src/directives/popover/popover.directive.mjs +5 -6
  75. package/esm2020/popover/src/popover.module.mjs +5 -4
  76. package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +3 -3
  77. package/esm2020/select2/src/component/select2.component.mjs +3 -3
  78. package/esm2020/snackbar/src/component/snackbar.component.mjs +4 -3
  79. package/esm2020/snackbar/src/snackbar.module.mjs +8 -4
  80. package/esm2020/spinner/src/spinner.component.mjs +2 -2
  81. package/esm2020/testing/index.mjs +2 -0
  82. package/esm2020/testing/mintplayer-ng-bootstrap-testing.mjs +5 -0
  83. package/esm2020/testing/src/accordion/accordion/accordion.component.mjs +21 -0
  84. package/esm2020/testing/src/accordion/accordion-tab/accordion-tab.component.mjs +24 -0
  85. package/esm2020/testing/src/accordion/accordion-tab-header/accordion-tab-header.component.mjs +16 -0
  86. package/esm2020/testing/src/accordion/accordion-testing.module.mjs +40 -0
  87. package/esm2020/testing/src/accordion/index.mjs +5 -0
  88. package/esm2020/testing/src/alert/alert/alert.component.mjs +32 -0
  89. package/esm2020/testing/src/alert/alert-close/alert-close.component.mjs +16 -0
  90. package/esm2020/testing/src/alert/alert-testing.module.mjs +27 -0
  91. package/esm2020/testing/src/alert/index.mjs +4 -0
  92. package/esm2020/testing/src/badge/badge/badge.component.mjs +22 -0
  93. package/esm2020/testing/src/badge/badge-testing.module.mjs +24 -0
  94. package/esm2020/testing/src/badge/index.mjs +3 -0
  95. package/esm2020/testing/src/breadcrumb/breadcrumb/breadcrumb.component.mjs +16 -0
  96. package/esm2020/testing/src/breadcrumb/breadcrumb-item/breadcrumb-item.component.mjs +16 -0
  97. package/esm2020/testing/src/breadcrumb/breadcrumb-testing.module.mjs +27 -0
  98. package/esm2020/testing/src/breadcrumb/index.mjs +4 -0
  99. package/esm2020/testing/src/button-group/button-group/button-group.component.mjs +16 -0
  100. package/esm2020/testing/src/button-group/button-group-testing.module.mjs +24 -0
  101. package/esm2020/testing/src/button-group/index.mjs +3 -0
  102. package/esm2020/testing/src/calendar/calendar/calendar.component.mjs +16 -0
  103. package/esm2020/testing/src/calendar/calendar-testing.module.mjs +24 -0
  104. package/esm2020/testing/src/calendar/index.mjs +3 -0
  105. package/esm2020/testing/src/card/card/card.component.mjs +16 -0
  106. package/esm2020/testing/src/card/card-header/card-header.component.mjs +16 -0
  107. package/esm2020/testing/src/card/card-testing.module.mjs +27 -0
  108. package/esm2020/testing/src/card/index.mjs +4 -0
  109. package/esm2020/testing/src/carousel/carousel/carousel.component.mjs +24 -0
  110. package/esm2020/testing/src/carousel/carousel-image/carousel-image.directive.mjs +13 -0
  111. package/esm2020/testing/src/carousel/carousel-testing.module.mjs +25 -0
  112. package/esm2020/testing/src/carousel/index.mjs +4 -0
  113. package/esm2020/testing/src/close/close/close.component.mjs +16 -0
  114. package/esm2020/testing/src/close/close-testing.module.mjs +24 -0
  115. package/esm2020/testing/src/close/index.mjs +3 -0
  116. package/esm2020/testing/src/code-snippet/code-snippet/code-snippet.component.mjs +21 -0
  117. package/esm2020/testing/src/code-snippet/code-snippet-testing.module.mjs +24 -0
  118. package/esm2020/testing/src/code-snippet/index.mjs +3 -0
  119. package/esm2020/testing/src/common/color.enum.mjs +15 -0
  120. package/esm2020/testing/src/common/index.mjs +2 -0
  121. package/esm2020/testing/src/context-menu/context-menu-testing.module.mjs +24 -0
  122. package/esm2020/testing/src/context-menu/context-menu.directive.mjs +13 -0
  123. package/esm2020/testing/src/context-menu/index.mjs +3 -0
  124. package/esm2020/testing/src/copy/copy-testing.module.mjs +24 -0
  125. package/esm2020/testing/src/copy/copy.directive.mjs +15 -0
  126. package/esm2020/testing/src/copy/index.mjs +3 -0
  127. package/esm2020/testing/src/datatable/datatable/datatable.component.mjs +33 -0
  128. package/esm2020/testing/src/datatable/datatable-column/datatable-column.directive.mjs +25 -0
  129. package/esm2020/testing/src/datatable/datatable-settings.mjs +15 -0
  130. package/esm2020/testing/src/datatable/datatable-testing.module.mjs +28 -0
  131. package/esm2020/testing/src/datatable/index.mjs +6 -0
  132. package/esm2020/testing/src/datatable/row-template/row-template.directive.mjs +13 -0
  133. package/esm2020/testing/src/datepicker/datepicker/datepicker.component.mjs +24 -0
  134. package/esm2020/testing/src/datepicker/datepicker-testing.module.mjs +24 -0
  135. package/esm2020/testing/src/datepicker/index.mjs +3 -0
  136. package/esm2020/testing/src/dropdown/dropdown-menu.directive.mjs +14 -0
  137. package/esm2020/testing/src/dropdown/dropdown-testing.module.mjs +34 -0
  138. package/esm2020/testing/src/dropdown/dropdown-toggle.directive.mjs +14 -0
  139. package/esm2020/testing/src/dropdown/dropdown.directive.mjs +21 -0
  140. package/esm2020/testing/src/dropdown/index.mjs +5 -0
  141. package/esm2020/testing/src/dropdown-menu/dropdown-item/dropdown-item.component.mjs +16 -0
  142. package/esm2020/testing/src/dropdown-menu/dropdown-menu/dropdown-menu.component.mjs +16 -0
  143. package/esm2020/testing/src/dropdown-menu/dropdown-menu-testing.module.mjs +27 -0
  144. package/esm2020/testing/src/dropdown-menu/index.mjs +4 -0
  145. package/esm2020/testing/src/enhanced-paste/enhanced-paste-testing.module.mjs +24 -0
  146. package/esm2020/testing/src/enhanced-paste/enhanced-paste.directive.mjs +13 -0
  147. package/esm2020/testing/src/enhanced-paste/index.mjs +4 -0
  148. package/esm2020/testing/src/enhanced-paste/number-overflow.mjs +2 -0
  149. package/esm2020/testing/src/file-upload/file-upload/file-upload.component.mjs +21 -0
  150. package/esm2020/testing/src/file-upload/file-upload-template/file-upload-template.directive.mjs +13 -0
  151. package/esm2020/testing/src/file-upload/file-upload-testing.module.mjs +25 -0
  152. package/esm2020/testing/src/file-upload/file-upload.mjs +2 -0
  153. package/esm2020/testing/src/file-upload/index.mjs +5 -0
  154. package/esm2020/testing/src/for/for-testing.module.mjs +24 -0
  155. package/esm2020/testing/src/for/for.directive.mjs +15 -0
  156. package/esm2020/testing/src/for/index.mjs +3 -0
  157. package/esm2020/testing/src/grid/column.directive.mjs +15 -0
  158. package/esm2020/testing/src/grid/grid/grid.component.mjs +21 -0
  159. package/esm2020/testing/src/grid/grid-testing.module.mjs +26 -0
  160. package/esm2020/testing/src/grid/index.mjs +5 -0
  161. package/esm2020/testing/src/grid/row.directive.mjs +13 -0
  162. package/esm2020/testing/src/has-overlay/has-overlay/has-overlay.component.mjs +11 -0
  163. package/esm2020/testing/src/has-overlay/has-overlay.module.mjs +18 -0
  164. package/esm2020/testing/src/has-overlay/index.mjs +3 -0
  165. package/esm2020/testing/src/highlight/highlight.directive.mjs +15 -0
  166. package/esm2020/testing/src/highlight/highlight.module.mjs +24 -0
  167. package/esm2020/testing/src/highlight/index.mjs +3 -0
  168. package/esm2020/testing/src/index.mjs +50 -0
  169. package/esm2020/testing/src/list-group/index.mjs +4 -0
  170. package/esm2020/testing/src/list-group/list-group/list-group.component.mjs +16 -0
  171. package/esm2020/testing/src/list-group/list-group-item/list-group-item.component.mjs +16 -0
  172. package/esm2020/testing/src/list-group/list-group-testing.module.mjs +27 -0
  173. package/esm2020/testing/src/modal/index.mjs +3 -0
  174. package/esm2020/testing/src/modal/modal-host/modal-host.component.mjs +19 -0
  175. package/esm2020/testing/src/modal/modal-testing.module.mjs +18 -0
  176. package/esm2020/testing/src/multiselect/index.mjs +3 -0
  177. package/esm2020/testing/src/multiselect/multiselect/multiselect.component.mjs +24 -0
  178. package/esm2020/testing/src/multiselect/multiselect-testing.module.mjs +24 -0
  179. package/esm2020/testing/src/navbar/index.mjs +8 -0
  180. package/esm2020/testing/src/navbar/navbar/navbar.component.mjs +16 -0
  181. package/esm2020/testing/src/navbar/navbar-brand/navbar-brand.component.mjs +16 -0
  182. package/esm2020/testing/src/navbar/navbar-content/navbar-content.directive.mjs +17 -0
  183. package/esm2020/testing/src/navbar/navbar-dropdown/navbar-dropdown.component.mjs +16 -0
  184. package/esm2020/testing/src/navbar/navbar-item/navbar-item.component.mjs +19 -0
  185. package/esm2020/testing/src/navbar/navbar-nav/navbar-nav.component.mjs +18 -0
  186. package/esm2020/testing/src/navbar/navbar-testing.module.mjs +47 -0
  187. package/esm2020/testing/src/offcanvas/index.mjs +4 -0
  188. package/esm2020/testing/src/offcanvas/offcanvas-content/offcanvas-content.directive.mjs +18 -0
  189. package/esm2020/testing/src/offcanvas/offcanvas-host/offcanvas-host.component.mjs +33 -0
  190. package/esm2020/testing/src/offcanvas/offcanvas-testing.module.mjs +24 -0
  191. package/esm2020/testing/src/pagination/index.mjs +3 -0
  192. package/esm2020/testing/src/pagination/pagination/pagination.component.mjs +34 -0
  193. package/esm2020/testing/src/pagination/pagination-testing.module.mjs +24 -0
  194. package/esm2020/testing/src/placeholder/index.mjs +3 -0
  195. package/esm2020/testing/src/placeholder/placeholder/placeholder.component.mjs +21 -0
  196. package/esm2020/testing/src/placeholder/placeholder-testing.module.mjs +24 -0
  197. package/esm2020/testing/src/popover/directive/popover.directive.mjs +18 -0
  198. package/esm2020/testing/src/popover/index.mjs +3 -0
  199. package/esm2020/testing/src/popover/popover-testing.module.mjs +18 -0
  200. package/esm2020/testing/src/progress-bar/index.mjs +4 -0
  201. package/esm2020/testing/src/progress-bar/progress/progress.component.mjs +19 -0
  202. package/esm2020/testing/src/progress-bar/progress-bar/progress-bar.component.mjs +32 -0
  203. package/esm2020/testing/src/progress-bar/progress-bar-testing.module.mjs +19 -0
  204. package/esm2020/testing/src/range/component/range.component.mjs +16 -0
  205. package/esm2020/testing/src/range/directives/range-value-accessor.directive.mjs +33 -0
  206. package/esm2020/testing/src/range/index.mjs +4 -0
  207. package/esm2020/testing/src/range/range-testing.module.mjs +25 -0
  208. package/esm2020/testing/src/rating/index.mjs +3 -0
  209. package/esm2020/testing/src/rating/rating/rating.component.mjs +19 -0
  210. package/esm2020/testing/src/rating/rating-testing.module.mjs +18 -0
  211. package/esm2020/testing/src/scheduler/enums/index.mjs +2 -0
  212. package/esm2020/testing/src/scheduler/enums/scheduler-mode.mjs +6 -0
  213. package/esm2020/testing/src/scheduler/index.mjs +5 -0
  214. package/esm2020/testing/src/scheduler/interfaces/index.mjs +6 -0
  215. package/esm2020/testing/src/scheduler/interfaces/resource-group.mjs +2 -0
  216. package/esm2020/testing/src/scheduler/interfaces/resource.mjs +2 -0
  217. package/esm2020/testing/src/scheduler/interfaces/scheduler-event.mjs +2 -0
  218. package/esm2020/testing/src/scheduler/interfaces/timeline-options.mjs +2 -0
  219. package/esm2020/testing/src/scheduler/interfaces/week-options.mjs +2 -0
  220. package/esm2020/testing/src/scheduler/scheduler/scheduler.component.mjs +31 -0
  221. package/esm2020/testing/src/scheduler/scheduler-testing.module.mjs +18 -0
  222. package/esm2020/testing/src/scrollspy/component/scrollspy.component.mjs +26 -0
  223. package/esm2020/testing/src/scrollspy/directive/scrollspy.directive.mjs +22 -0
  224. package/esm2020/testing/src/scrollspy/index.mjs +4 -0
  225. package/esm2020/testing/src/scrollspy/scrollspy-testing.module.mjs +27 -0
  226. package/esm2020/testing/src/select/component/select.component.mjs +21 -0
  227. package/esm2020/testing/src/select/directives/index.mjs +3 -0
  228. package/esm2020/testing/src/select/directives/select-option.directive.mjs +22 -0
  229. package/esm2020/testing/src/select/directives/select-value-accessor.directive.mjs +34 -0
  230. package/esm2020/testing/src/select/index.mjs +4 -0
  231. package/esm2020/testing/src/select/select-testing.module.mjs +20 -0
  232. package/esm2020/testing/src/select2/index.mjs +3 -0
  233. package/esm2020/testing/src/select2/select2/select2.component.mjs +22 -0
  234. package/esm2020/testing/src/select2/select2-testing.module.mjs +18 -0
  235. package/esm2020/testing/src/snackbar/index.mjs +3 -0
  236. package/esm2020/testing/src/snackbar/service/snackbar.service.mjs +15 -0
  237. package/esm2020/testing/src/snackbar/snackbar-testing.module.mjs +25 -0
  238. package/esm2020/testing/src/spinner/component/spinner.component.mjs +20 -0
  239. package/esm2020/testing/src/spinner/index.mjs +3 -0
  240. package/esm2020/testing/src/spinner/spinner-testing.module.mjs +18 -0
  241. package/esm2020/testing/src/tab-control/index.mjs +4 -0
  242. package/esm2020/testing/src/tab-control/tab-control/tab-control.component.mjs +16 -0
  243. package/esm2020/testing/src/tab-control/tab-control-testing.module.mjs +19 -0
  244. package/esm2020/testing/src/tab-control/tab-page/tab-page.component.mjs +16 -0
  245. package/esm2020/testing/src/table/index.mjs +3 -0
  246. package/esm2020/testing/src/table/table/table.component.mjs +27 -0
  247. package/esm2020/testing/src/table/table-testing.module.mjs +24 -0
  248. package/esm2020/testing/src/timepicker/component/timepicker.component.mjs +16 -0
  249. package/esm2020/testing/src/timepicker/index.mjs +3 -0
  250. package/esm2020/testing/src/timepicker/timepicker-testing.module.mjs +18 -0
  251. package/esm2020/testing/src/toast/components/index.mjs +4 -0
  252. package/esm2020/testing/src/toast/components/toast/toast.component.mjs +21 -0
  253. package/esm2020/testing/src/toast/components/toast-body/toast-body.component.mjs +16 -0
  254. package/esm2020/testing/src/toast/components/toast-header/toast-header.component.mjs +16 -0
  255. package/esm2020/testing/src/toast/index.mjs +7 -0
  256. package/esm2020/testing/src/toast/pipes/add-properties.pipe.mjs +16 -0
  257. package/esm2020/testing/src/toast/pipes/index.mjs +2 -0
  258. package/esm2020/testing/src/toast/providers/index.mjs +2 -0
  259. package/esm2020/testing/src/toast/providers/portal-factory.provider.mjs +3 -0
  260. package/esm2020/testing/src/toast/service/toast.service.mjs +26 -0
  261. package/esm2020/testing/src/toast/toast-container/toast-container.component.mjs +22 -0
  262. package/esm2020/testing/src/toast/toast-testing.module.mjs +64 -0
  263. package/esm2020/testing/src/toggle-button/directives/index.mjs +3 -0
  264. package/esm2020/testing/src/toggle-button/directives/toggle-button-group.directive.mjs +23 -0
  265. package/esm2020/testing/src/toggle-button/directives/toggle-button-value-accessor.directive.mjs +33 -0
  266. package/esm2020/testing/src/toggle-button/index.mjs +5 -0
  267. package/esm2020/testing/src/toggle-button/toggle-button/toggle-button.component.mjs +42 -0
  268. package/esm2020/testing/src/toggle-button/toggle-button-testing.module.mjs +20 -0
  269. package/esm2020/testing/src/toggle-button/types/check-style.mjs +2 -0
  270. package/esm2020/testing/src/toggle-button/types/index.mjs +2 -0
  271. package/esm2020/testing/src/tooltip/index.mjs +3 -0
  272. package/esm2020/testing/src/tooltip/tooltip-testing.module.mjs +24 -0
  273. package/esm2020/testing/src/tooltip/tooltip.directive.mjs +18 -0
  274. package/esm2020/testing/src/typeahead/index.mjs +3 -0
  275. package/esm2020/testing/src/typeahead/typeahead/typeahead.component.mjs +31 -0
  276. package/esm2020/testing/src/typeahead/typeahead-testing.module.mjs +18 -0
  277. package/esm2020/testing/src/types/index.mjs +3 -0
  278. package/esm2020/testing/src/types/position.mjs +2 -0
  279. package/esm2020/testing/src/types/view-state.mjs +2 -0
  280. package/esm2020/testing/src/uc-first.pipe/index.mjs +3 -0
  281. package/esm2020/testing/src/uc-first.pipe/uc-first-testing.module.mjs +30 -0
  282. package/esm2020/testing/src/uc-first.pipe/uc-first.pipe.mjs +16 -0
  283. package/esm2020/timepicker/src/timepicker.component.mjs +3 -3
  284. package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +5 -4
  285. package/esm2020/toast/src/index.mjs +2 -1
  286. package/esm2020/{lib/pipes/add-properties → toast/src/pipes}/add-properties.pipe.mjs +1 -1
  287. package/esm2020/toast/src/toast.module.mjs +12 -7
  288. package/esm2020/tooltip/src/component/tooltip.component.mjs +15 -6
  289. package/esm2020/tooltip/src/directive/tooltip.directive.mjs +11 -12
  290. package/esm2020/tooltip/src/tooltip.module.mjs +8 -4
  291. package/esm2020/typeahead/src/typeahead.component.mjs +3 -3
  292. package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +1 -1
  293. package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +1 -1
  294. package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +1 -1
  295. package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -1
  296. package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +1 -1
  297. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +178 -0
  298. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
  299. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +5 -6
  300. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +1 -1
  301. package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +1 -1
  302. package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +1 -1
  303. package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +1 -1
  304. package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -1
  305. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +9 -3
  306. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -1
  307. package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +1 -1
  308. package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +1 -1
  309. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +2 -2
  310. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -1
  311. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +1 -0
  312. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -1
  313. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +17 -16
  314. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -1
  315. package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -1
  316. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +38 -0
  317. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
  318. package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -1
  319. package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +1 -1
  320. package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +1 -1
  321. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
  322. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
  323. package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +1 -1
  324. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +10 -5
  325. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +1 -1
  326. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +7 -2
  327. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -1
  328. package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +1 -1
  329. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +10 -5
  330. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -1
  331. package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +1 -1
  332. package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -1
  333. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +17 -15
  334. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +1 -1
  335. package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -1
  336. package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +1 -1
  337. package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +1 -1
  338. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +1 -1
  339. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -1
  340. package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -1
  341. package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +1 -1
  342. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +2 -2
  343. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +1 -1
  344. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +10 -5
  345. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -1
  346. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +2 -2
  347. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +1 -1
  348. package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -1
  349. package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +1 -1
  350. package/fesm2015/mintplayer-ng-bootstrap-testing.mjs +2412 -0
  351. package/fesm2015/mintplayer-ng-bootstrap-testing.mjs.map +1 -0
  352. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +2 -2
  353. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -1
  354. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +30 -11
  355. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +1 -1
  356. package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -1
  357. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +30 -17
  358. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -1
  359. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +2 -2
  360. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -1
  361. package/fesm2015/mintplayer-ng-bootstrap.mjs +2 -242
  362. package/fesm2015/mintplayer-ng-bootstrap.mjs.map +1 -1
  363. package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +1 -1
  364. package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +1 -1
  365. package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +1 -1
  366. package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -1
  367. package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +1 -1
  368. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +175 -0
  369. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
  370. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +5 -6
  371. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +1 -1
  372. package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +1 -1
  373. package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +1 -1
  374. package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +1 -1
  375. package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -1
  376. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +9 -3
  377. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -1
  378. package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +1 -1
  379. package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +1 -1
  380. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +2 -2
  381. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -1
  382. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +1 -0
  383. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -1
  384. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +17 -16
  385. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -1
  386. package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -1
  387. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +38 -0
  388. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
  389. package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -1
  390. package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +1 -1
  391. package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +1 -1
  392. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
  393. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
  394. package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +1 -1
  395. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +10 -5
  396. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +1 -1
  397. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +7 -2
  398. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -1
  399. package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +1 -1
  400. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +10 -5
  401. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -1
  402. package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +1 -1
  403. package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -1
  404. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +17 -15
  405. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +1 -1
  406. package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -1
  407. package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +1 -1
  408. package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +1 -1
  409. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +1 -1
  410. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -1
  411. package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -1
  412. package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +1 -1
  413. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +2 -2
  414. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +1 -1
  415. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +10 -5
  416. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -1
  417. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +2 -2
  418. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +1 -1
  419. package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -1
  420. package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +1 -1
  421. package/fesm2020/mintplayer-ng-bootstrap-testing.mjs +2411 -0
  422. package/fesm2020/mintplayer-ng-bootstrap-testing.mjs.map +1 -0
  423. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +2 -2
  424. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -1
  425. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +30 -11
  426. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +1 -1
  427. package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -1
  428. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +30 -17
  429. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -1
  430. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +2 -2
  431. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -1
  432. package/fesm2020/mintplayer-ng-bootstrap.mjs +2 -239
  433. package/fesm2020/mintplayer-ng-bootstrap.mjs.map +1 -1
  434. package/has-overlay/index.d.ts +1 -0
  435. package/has-overlay/src/has-overlay/has-overlay.component.d.ts +5 -0
  436. package/has-overlay/src/has-overlay/has-overlay.module.d.ts +8 -0
  437. package/has-overlay/src/index.d.ts +2 -0
  438. package/index.d.ts +0 -2
  439. package/lib/enums/index.d.ts +0 -1
  440. package/lib/pipes/index.d.ts +0 -3
  441. package/lib/types/index.d.ts +2 -1
  442. package/lib/types/position.d.ts +1 -0
  443. package/modal/src/modal.module.d.ts +2 -1
  444. package/multiselect/src/multiselect.module.d.ts +3 -2
  445. package/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +4 -5
  446. package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +4 -5
  447. package/offcanvas/src/index.d.ts +0 -1
  448. package/offcanvas/src/offcanvas.module.d.ts +2 -1
  449. package/package.json +33 -1
  450. package/popover/src/component/popover.component.d.ts +1 -1
  451. package/popover/src/popover.module.d.ts +2 -1
  452. package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
  453. package/snackbar/src/snackbar.module.d.ts +2 -1
  454. package/testing/index.d.ts +1 -0
  455. package/testing/src/accordion/accordion/accordion.component.d.ts +6 -0
  456. package/testing/src/accordion/accordion-tab/accordion-tab.component.d.ts +10 -0
  457. package/testing/src/accordion/accordion-tab-header/accordion-tab-header.component.d.ts +5 -0
  458. package/testing/src/accordion/accordion-testing.module.d.ts +10 -0
  459. package/testing/src/accordion/index.d.ts +4 -0
  460. package/testing/src/alert/alert/alert.component.d.ts +11 -0
  461. package/testing/src/alert/alert-close/alert-close.component.d.ts +5 -0
  462. package/testing/src/alert/alert-testing.module.d.ts +9 -0
  463. package/testing/src/alert/index.d.ts +3 -0
  464. package/testing/src/badge/badge/badge.component.d.ts +7 -0
  465. package/testing/src/badge/badge-testing.module.d.ts +8 -0
  466. package/testing/src/badge/index.d.ts +2 -0
  467. package/testing/src/breadcrumb/breadcrumb/breadcrumb.component.d.ts +5 -0
  468. package/testing/src/breadcrumb/breadcrumb-item/breadcrumb-item.component.d.ts +5 -0
  469. package/testing/src/breadcrumb/breadcrumb-testing.module.d.ts +9 -0
  470. package/testing/src/breadcrumb/index.d.ts +3 -0
  471. package/testing/src/button-group/button-group/button-group.component.d.ts +5 -0
  472. package/testing/src/button-group/button-group-testing.module.d.ts +8 -0
  473. package/testing/src/button-group/index.d.ts +2 -0
  474. package/testing/src/calendar/calendar/calendar.component.d.ts +5 -0
  475. package/testing/src/calendar/calendar-testing.module.d.ts +8 -0
  476. package/testing/src/calendar/index.d.ts +2 -0
  477. package/testing/src/card/card/card.component.d.ts +5 -0
  478. package/testing/src/card/card-header/card-header.component.d.ts +5 -0
  479. package/testing/src/card/card-testing.module.d.ts +9 -0
  480. package/testing/src/card/index.d.ts +3 -0
  481. package/testing/src/carousel/carousel/carousel.component.d.ts +7 -0
  482. package/testing/src/carousel/carousel-image/carousel-image.directive.d.ts +5 -0
  483. package/testing/src/carousel/carousel-testing.module.d.ts +9 -0
  484. package/testing/src/carousel/index.d.ts +3 -0
  485. package/testing/src/close/close/close.component.d.ts +5 -0
  486. package/testing/src/close/close-testing.module.d.ts +8 -0
  487. package/testing/src/close/index.d.ts +2 -0
  488. package/testing/src/code-snippet/code-snippet/code-snippet.component.d.ts +6 -0
  489. package/testing/src/code-snippet/code-snippet-testing.module.d.ts +8 -0
  490. package/testing/src/code-snippet/index.d.ts +2 -0
  491. package/testing/src/common/color.enum.d.ts +13 -0
  492. package/testing/src/common/index.d.ts +1 -0
  493. package/testing/src/context-menu/context-menu-testing.module.d.ts +8 -0
  494. package/testing/src/context-menu/context-menu.directive.d.ts +5 -0
  495. package/testing/src/context-menu/index.d.ts +2 -0
  496. package/testing/src/copy/copy-testing.module.d.ts +8 -0
  497. package/testing/src/copy/copy.directive.d.ts +6 -0
  498. package/testing/src/copy/index.d.ts +2 -0
  499. package/testing/src/datatable/datatable/datatable.component.d.ts +14 -0
  500. package/testing/src/datatable/datatable-column/datatable-column.directive.d.ts +12 -0
  501. package/testing/src/datatable/datatable-settings.d.ts +13 -0
  502. package/testing/src/datatable/datatable-testing.module.d.ts +10 -0
  503. package/testing/src/datatable/index.d.ts +5 -0
  504. package/testing/src/datatable/row-template/row-template.directive.d.ts +5 -0
  505. package/testing/src/datepicker/datepicker/datepicker.component.d.ts +8 -0
  506. package/testing/src/datepicker/datepicker-testing.module.d.ts +8 -0
  507. package/testing/src/datepicker/index.d.ts +2 -0
  508. package/testing/src/dropdown/dropdown-menu.directive.d.ts +6 -0
  509. package/testing/src/dropdown/dropdown-testing.module.d.ts +10 -0
  510. package/testing/src/dropdown/dropdown-toggle.directive.d.ts +6 -0
  511. package/testing/src/dropdown/dropdown.directive.d.ts +7 -0
  512. package/testing/src/dropdown/index.d.ts +4 -0
  513. package/testing/src/dropdown-menu/dropdown-item/dropdown-item.component.d.ts +5 -0
  514. package/testing/src/dropdown-menu/dropdown-menu/dropdown-menu.component.d.ts +5 -0
  515. package/testing/src/dropdown-menu/dropdown-menu-testing.module.d.ts +9 -0
  516. package/testing/src/dropdown-menu/index.d.ts +3 -0
  517. package/testing/src/enhanced-paste/enhanced-paste-testing.module.d.ts +8 -0
  518. package/testing/src/enhanced-paste/enhanced-paste.directive.d.ts +5 -0
  519. package/testing/src/enhanced-paste/index.d.ts +3 -0
  520. package/testing/src/enhanced-paste/number-overflow.d.ts +5 -0
  521. package/testing/src/file-upload/file-upload/file-upload.component.d.ts +7 -0
  522. package/testing/src/file-upload/file-upload-template/file-upload-template.directive.d.ts +5 -0
  523. package/testing/src/file-upload/file-upload-testing.module.d.ts +9 -0
  524. package/testing/src/file-upload/file-upload.d.ts +4 -0
  525. package/testing/src/file-upload/index.d.ts +4 -0
  526. package/testing/src/for/for-testing.module.d.ts +8 -0
  527. package/testing/src/for/for.directive.d.ts +6 -0
  528. package/testing/src/for/index.d.ts +2 -0
  529. package/testing/src/grid/column.directive.d.ts +6 -0
  530. package/testing/src/grid/grid/grid.component.d.ts +6 -0
  531. package/testing/src/grid/grid-testing.module.d.ts +10 -0
  532. package/testing/src/grid/index.d.ts +4 -0
  533. package/testing/src/grid/row.directive.d.ts +5 -0
  534. package/testing/src/has-overlay/has-overlay/has-overlay.component.d.ts +5 -0
  535. package/testing/src/has-overlay/has-overlay.module.d.ts +8 -0
  536. package/testing/src/has-overlay/index.d.ts +2 -0
  537. package/testing/src/highlight/highlight.directive.d.ts +6 -0
  538. package/testing/src/highlight/highlight.module.d.ts +8 -0
  539. package/testing/src/highlight/index.d.ts +2 -0
  540. package/testing/src/index.d.ts +49 -0
  541. package/testing/src/list-group/index.d.ts +3 -0
  542. package/testing/src/list-group/list-group/list-group.component.d.ts +5 -0
  543. package/testing/src/list-group/list-group-item/list-group-item.component.d.ts +5 -0
  544. package/testing/src/list-group/list-group-testing.module.d.ts +9 -0
  545. package/testing/src/modal/index.d.ts +2 -0
  546. package/testing/src/modal/modal-host/modal-host.component.d.ts +8 -0
  547. package/testing/src/modal/modal-testing.module.d.ts +8 -0
  548. package/testing/src/multiselect/index.d.ts +2 -0
  549. package/testing/src/multiselect/multiselect/multiselect.component.d.ts +7 -0
  550. package/testing/src/multiselect/multiselect-testing.module.d.ts +8 -0
  551. package/testing/src/navbar/index.d.ts +7 -0
  552. package/testing/src/navbar/navbar/navbar.component.d.ts +5 -0
  553. package/testing/src/navbar/navbar-brand/navbar-brand.component.d.ts +5 -0
  554. package/testing/src/navbar/navbar-content/navbar-content.directive.d.ts +7 -0
  555. package/testing/src/navbar/navbar-dropdown/navbar-dropdown.component.d.ts +5 -0
  556. package/testing/src/navbar/navbar-item/navbar-item.component.d.ts +8 -0
  557. package/testing/src/navbar/navbar-nav/navbar-nav.component.d.ts +6 -0
  558. package/testing/src/navbar/navbar-testing.module.d.ts +13 -0
  559. package/testing/src/offcanvas/index.d.ts +3 -0
  560. package/testing/src/offcanvas/offcanvas-content/offcanvas-content.directive.d.ts +8 -0
  561. package/testing/src/offcanvas/offcanvas-host/offcanvas-host.component.d.ts +13 -0
  562. package/testing/src/offcanvas/offcanvas-testing.module.d.ts +9 -0
  563. package/testing/src/pagination/index.d.ts +2 -0
  564. package/testing/src/pagination/pagination/pagination.component.d.ts +11 -0
  565. package/testing/src/pagination/pagination-testing.module.d.ts +8 -0
  566. package/testing/src/placeholder/index.d.ts +2 -0
  567. package/testing/src/placeholder/placeholder/placeholder.component.d.ts +6 -0
  568. package/testing/src/placeholder/placeholder-testing.module.d.ts +8 -0
  569. package/testing/src/popover/directive/popover.directive.d.ts +7 -0
  570. package/testing/src/popover/index.d.ts +2 -0
  571. package/testing/src/popover/popover-testing.module.d.ts +8 -0
  572. package/testing/src/progress-bar/index.d.ts +3 -0
  573. package/testing/src/progress-bar/progress/progress.component.d.ts +7 -0
  574. package/testing/src/progress-bar/progress-bar/progress-bar.component.d.ts +12 -0
  575. package/testing/src/progress-bar/progress-bar-testing.module.d.ts +9 -0
  576. package/testing/src/range/component/range.component.d.ts +5 -0
  577. package/testing/src/range/directives/range-value-accessor.directive.d.ts +12 -0
  578. package/testing/src/range/index.d.ts +3 -0
  579. package/testing/src/range/range-testing.module.d.ts +9 -0
  580. package/testing/src/rating/index.d.ts +2 -0
  581. package/testing/src/rating/rating/rating.component.d.ts +7 -0
  582. package/testing/src/rating/rating-testing.module.d.ts +8 -0
  583. package/testing/src/scheduler/enums/index.d.ts +1 -0
  584. package/testing/src/scheduler/enums/scheduler-mode.d.ts +4 -0
  585. package/testing/src/scheduler/index.d.ts +4 -0
  586. package/testing/src/scheduler/interfaces/index.d.ts +5 -0
  587. package/testing/src/scheduler/interfaces/resource-group.d.ts +5 -0
  588. package/testing/src/scheduler/interfaces/resource.d.ts +5 -0
  589. package/testing/src/scheduler/interfaces/scheduler-event.d.ts +6 -0
  590. package/testing/src/scheduler/interfaces/timeline-options.d.ts +3 -0
  591. package/testing/src/scheduler/interfaces/week-options.d.ts +3 -0
  592. package/testing/src/scheduler/scheduler/scheduler.component.d.ts +14 -0
  593. package/testing/src/scheduler/scheduler-testing.module.d.ts +8 -0
  594. package/testing/src/scrollspy/component/scrollspy.component.d.ts +9 -0
  595. package/testing/src/scrollspy/directive/scrollspy.directive.d.ts +8 -0
  596. package/testing/src/scrollspy/index.d.ts +3 -0
  597. package/testing/src/scrollspy/scrollspy-testing.module.d.ts +9 -0
  598. package/testing/src/select/component/select.component.d.ts +6 -0
  599. package/testing/src/select/directives/index.d.ts +2 -0
  600. package/testing/src/select/directives/select-option.directive.d.ts +8 -0
  601. package/testing/src/select/directives/select-value-accessor.directive.d.ts +10 -0
  602. package/testing/src/select/index.d.ts +3 -0
  603. package/testing/src/select/select-testing.module.d.ts +10 -0
  604. package/testing/src/select2/index.d.ts +2 -0
  605. package/testing/src/select2/select2/select2.component.d.ts +9 -0
  606. package/testing/src/select2/select2-testing.module.d.ts +8 -0
  607. package/testing/src/snackbar/index.d.ts +2 -0
  608. package/testing/src/snackbar/service/snackbar.service.d.ts +9 -0
  609. package/testing/src/snackbar/snackbar-testing.module.d.ts +7 -0
  610. package/testing/src/spinner/component/spinner.component.d.ts +8 -0
  611. package/testing/src/spinner/index.d.ts +2 -0
  612. package/testing/src/spinner/spinner-testing.module.d.ts +8 -0
  613. package/testing/src/tab-control/index.d.ts +3 -0
  614. package/testing/src/tab-control/tab-control/tab-control.component.d.ts +6 -0
  615. package/testing/src/tab-control/tab-control-testing.module.d.ts +9 -0
  616. package/testing/src/tab-control/tab-page/tab-page.component.d.ts +6 -0
  617. package/testing/src/table/index.d.ts +2 -0
  618. package/testing/src/table/table/table.component.d.ts +8 -0
  619. package/testing/src/table/table-testing.module.d.ts +8 -0
  620. package/testing/src/timepicker/component/timepicker.component.d.ts +6 -0
  621. package/testing/src/timepicker/index.d.ts +2 -0
  622. package/testing/src/timepicker/timepicker-testing.module.d.ts +8 -0
  623. package/testing/src/toast/components/index.d.ts +3 -0
  624. package/testing/src/toast/components/toast/toast.component.d.ts +6 -0
  625. package/testing/src/toast/components/toast-body/toast-body.component.d.ts +5 -0
  626. package/testing/src/toast/components/toast-header/toast-header.component.d.ts +5 -0
  627. package/testing/src/toast/index.d.ts +6 -0
  628. package/testing/src/toast/pipes/add-properties.pipe.d.ts +7 -0
  629. package/testing/src/toast/pipes/index.d.ts +1 -0
  630. package/testing/src/toast/providers/index.d.ts +1 -0
  631. package/testing/src/toast/providers/portal-factory.provider.d.ts +3 -0
  632. package/testing/src/toast/service/toast.service.d.ts +14 -0
  633. package/testing/src/toast/toast-container/toast-container.component.d.ts +8 -0
  634. package/testing/src/toast/toast-testing.module.d.ts +11 -0
  635. package/testing/src/toggle-button/directives/index.d.ts +2 -0
  636. package/testing/src/toggle-button/directives/toggle-button-group.directive.d.ts +8 -0
  637. package/testing/src/toggle-button/directives/toggle-button-value-accessor.directive.d.ts +12 -0
  638. package/testing/src/toggle-button/index.d.ts +4 -0
  639. package/testing/src/toggle-button/toggle-button/toggle-button.component.d.ts +16 -0
  640. package/testing/src/toggle-button/toggle-button-testing.module.d.ts +10 -0
  641. package/testing/src/toggle-button/types/check-style.d.ts +1 -0
  642. package/testing/src/toggle-button/types/index.d.ts +1 -0
  643. package/testing/src/tooltip/index.d.ts +2 -0
  644. package/testing/src/tooltip/tooltip-testing.module.d.ts +8 -0
  645. package/testing/src/tooltip/tooltip.directive.d.ts +7 -0
  646. package/testing/src/typeahead/index.d.ts +2 -0
  647. package/testing/src/typeahead/typeahead/typeahead.component.d.ts +12 -0
  648. package/testing/src/typeahead/typeahead-testing.module.d.ts +8 -0
  649. package/testing/src/types/index.d.ts +2 -0
  650. package/testing/src/types/position.d.ts +1 -0
  651. package/testing/src/types/view-state.d.ts +1 -0
  652. package/testing/src/uc-first.pipe/index.d.ts +2 -0
  653. package/testing/src/uc-first.pipe/uc-first-testing.module.d.ts +8 -0
  654. package/testing/src/uc-first.pipe/uc-first.pipe.d.ts +7 -0
  655. package/toast/src/index.d.ts +1 -0
  656. package/{lib/pipes/add-properties → toast/src/pipes}/add-properties.pipe.d.ts +0 -0
  657. package/toast/src/toast.module.d.ts +5 -4
  658. package/tooltip/src/component/tooltip.component.d.ts +5 -2
  659. package/tooltip/src/directive/tooltip.directive.d.ts +3 -3
  660. package/tooltip/src/tooltip.module.d.ts +2 -1
  661. package/esm2020/lib/enums/position.enum.mjs +0 -8
  662. package/esm2020/lib/interfaces/date-day-of-month.mjs +0 -2
  663. package/esm2020/lib/interfaces/enum-item.mjs +0 -2
  664. package/esm2020/lib/interfaces/first-and-last-date.mjs +0 -2
  665. package/esm2020/lib/interfaces/index.mjs +0 -5
  666. package/esm2020/lib/interfaces/week.mjs +0 -2
  667. package/esm2020/lib/interfaces/weekday.mjs +0 -2
  668. package/esm2020/lib/pipes/add-properties/add-properties.module.mjs +0 -24
  669. package/esm2020/lib/pipes/add-properties/index.mjs +0 -3
  670. package/esm2020/lib/pipes/month-name/index.mjs +0 -3
  671. package/esm2020/lib/pipes/month-name/month-name.pipe.mjs +0 -21
  672. package/esm2020/lib/pipes/weekday-name/index.mjs +0 -3
  673. package/esm2020/lib/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
  674. package/esm2020/lib/services/calendar-month/calendar-month.service.mjs +0 -94
  675. package/esm2020/lib/services/enum/enum.service.mjs +0 -31
  676. package/esm2020/lib/services/index.mjs +0 -3
  677. package/esm2020/offcanvas/src/types/index.mjs +0 -2
  678. package/esm2020/offcanvas/src/types/position.mjs +0 -2
  679. package/lib/enums/position.enum.d.ts +0 -6
  680. package/lib/pipes/add-properties/add-properties.module.d.ts +0 -8
  681. package/lib/pipes/add-properties/index.d.ts +0 -2
  682. package/lib/services/index.d.ts +0 -2
  683. package/offcanvas/src/types/index.d.ts +0 -1
  684. package/offcanvas/src/types/position.d.ts +0 -1
@@ -0,0 +1,2412 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, Input, forwardRef, ContentChildren, NgModule, EventEmitter, Output, Directive, Injectable, Pipe, InjectionToken, Inject } from '@angular/core';
3
+ import * as i1 from '@angular/common';
4
+ import { CommonModule } from '@angular/common';
5
+ import { BsAccordionComponent, BsAccordionTabComponent, BsAccordionTabHeaderComponent } from '@mintplayer/ng-bootstrap/accordion';
6
+ import { Color as Color$1, UcFirstPipe } from '@mintplayer/ng-bootstrap';
7
+ import { BsAlertComponent, BsAlertCloseComponent } from '@mintplayer/ng-bootstrap/alert';
8
+ import { BsBadgeComponent } from '@mintplayer/ng-bootstrap/badge';
9
+ import { BsBreadcrumbComponent, BsBreadcrumbItemComponent } from '@mintplayer/ng-bootstrap/breadcrumb';
10
+ import { BsButtonGroupComponent } from '@mintplayer/ng-bootstrap/button-group';
11
+ import { BsCalendarComponent } from '@mintplayer/ng-bootstrap/calendar';
12
+ import { BsCardComponent, BsCardHeaderComponent } from '@mintplayer/ng-bootstrap/card';
13
+ import { BsCarouselComponent } from '@mintplayer/ng-bootstrap/carousel';
14
+ import { BsCloseComponent } from '@mintplayer/ng-bootstrap/close';
15
+ import { BsCodeSnippetComponent } from '@mintplayer/ng-bootstrap/code-snippet';
16
+ import { BsDatatableColumnDirective, BsDatatableComponent } from '@mintplayer/ng-bootstrap/datatable';
17
+ import { BsDatepickerComponent } from '@mintplayer/ng-bootstrap/datepicker';
18
+ import { BsDropdownItemComponent, BsDropdownMenuComponent } from '@mintplayer/ng-bootstrap/dropdown-menu';
19
+ import { BsFileUploadComponent } from '@mintplayer/ng-bootstrap/file-upload';
20
+ import { BsGridComponent } from '@mintplayer/ng-bootstrap/grid';
21
+ import { BsListGroupComponent, BsListGroupItemComponent } from '@mintplayer/ng-bootstrap/list-group';
22
+ import { BsMultiselectComponent } from '@mintplayer/ng-bootstrap/multiselect';
23
+ import { BsNavbarComponent, BsNavbarNavComponent, BsNavbarDropdownComponent, BsNavbarItemComponent, BsNavbarBrandComponent } from '@mintplayer/ng-bootstrap/navbar';
24
+ import * as i1$1 from '@mintplayer/ng-bootstrap/offcanvas';
25
+ import { BsOffcanvasHostComponent } from '@mintplayer/ng-bootstrap/offcanvas';
26
+ import { BsPaginationComponent } from '@mintplayer/ng-bootstrap/pagination';
27
+ import { BsPlaceholderComponent } from '@mintplayer/ng-bootstrap/placeholder';
28
+ import { BsRangeComponent } from '@mintplayer/ng-bootstrap/range';
29
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
30
+ import { BsSchedulerComponent } from '@mintplayer/ng-bootstrap/scheduler';
31
+ import { BsScrollspyDirective, BsScrollspyComponent } from '@mintplayer/ng-bootstrap/scrollspy';
32
+ import { BsSelectComponent, BsSelectValueAccessor } from '@mintplayer/ng-bootstrap/select';
33
+ import { BsSnackbarService } from '@mintplayer/ng-bootstrap/snackbar';
34
+ import { BsTableComponent } from '@mintplayer/ng-bootstrap/table';
35
+ import * as i1$2 from '@mintplayer/ng-bootstrap/toast';
36
+ import { BsToastContainerComponent, BsToastHeaderComponent, BsToastBodyComponent, BsToastService, BsAddPropertiesPipe, BsToastComponent } from '@mintplayer/ng-bootstrap/toast';
37
+ import { ComponentPortal } from '@angular/cdk/portal';
38
+ import * as i1$3 from '@angular/cdk/overlay';
39
+ import { BsToggleButtonGroupDirective, BsToggleButtonComponent } from '@mintplayer/ng-bootstrap/toggle-button';
40
+
41
+ class BsAccordionMockComponent {
42
+ constructor() {
43
+ this.highlightActiveTab = false;
44
+ }
45
+ }
46
+ BsAccordionMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47
+ BsAccordionMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsAccordionMockComponent, selector: "bs-accordion", inputs: { highlightActiveTab: "highlightActiveTab" }, providers: [
48
+ { provide: BsAccordionComponent, useExisting: BsAccordionMockComponent }
49
+ ], ngImport: i0, template: "<p>accordion works!</p>\n", styles: [""] });
50
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionMockComponent, decorators: [{
51
+ type: Component,
52
+ args: [{ selector: 'bs-accordion', providers: [
53
+ { provide: BsAccordionComponent, useExisting: BsAccordionMockComponent }
54
+ ], template: "<p>accordion works!</p>\n" }]
55
+ }], propDecorators: { highlightActiveTab: [{
56
+ type: Input
57
+ }] } });
58
+
59
+ class BsAccordionTabMockComponent {
60
+ constructor(accordion) {
61
+ this.accordion = accordion;
62
+ }
63
+ }
64
+ BsAccordionTabMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTabMockComponent, deps: [{ token: BsAccordionMockComponent }], target: i0.ɵɵFactoryTarget.Component });
65
+ BsAccordionTabMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsAccordionTabMockComponent, selector: "bs-accordion-tab", providers: [
66
+ { provide: BsAccordionTabComponent, useExisting: BsAccordionTabMockComponent }
67
+ ], queries: [{ propertyName: "childAccordions", predicate: () => forwardRef(() => BsAccordionMockComponent) }], ngImport: i0, template: "<p>accordion-tab works!</p>\n", styles: [""] });
68
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTabMockComponent, decorators: [{
69
+ type: Component,
70
+ args: [{ selector: 'bs-accordion-tab', providers: [
71
+ { provide: BsAccordionTabComponent, useExisting: BsAccordionTabMockComponent }
72
+ ], template: "<p>accordion-tab works!</p>\n" }]
73
+ }], ctorParameters: function () { return [{ type: BsAccordionMockComponent }]; }, propDecorators: { childAccordions: [{
74
+ type: ContentChildren,
75
+ args: [() => forwardRef(() => BsAccordionMockComponent)]
76
+ }] } });
77
+
78
+ class BsAccordionTabHeaderMockComponent {
79
+ }
80
+ BsAccordionTabHeaderMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTabHeaderMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81
+ BsAccordionTabHeaderMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsAccordionTabHeaderMockComponent, selector: "bs-accordion-tab-header", providers: [
82
+ { provide: BsAccordionTabHeaderComponent, useExisting: BsAccordionTabHeaderMockComponent }
83
+ ], ngImport: i0, template: "<p>accordion-tab-header works!</p>\n", styles: [""] });
84
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTabHeaderMockComponent, decorators: [{
85
+ type: Component,
86
+ args: [{ selector: 'bs-accordion-tab-header', providers: [
87
+ { provide: BsAccordionTabHeaderComponent, useExisting: BsAccordionTabHeaderMockComponent }
88
+ ], template: "<p>accordion-tab-header works!</p>\n" }]
89
+ }] });
90
+
91
+ class BsAccordionTestingModule {
92
+ }
93
+ BsAccordionTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
94
+ BsAccordionTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTestingModule, declarations: [BsAccordionMockComponent,
95
+ BsAccordionTabMockComponent,
96
+ BsAccordionTabHeaderMockComponent], imports: [CommonModule], exports: [BsAccordionMockComponent,
97
+ BsAccordionTabMockComponent,
98
+ BsAccordionTabHeaderMockComponent] });
99
+ BsAccordionTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTestingModule, providers: [
100
+ { provide: BsAccordionComponent, useClass: BsAccordionMockComponent },
101
+ { provide: BsAccordionTabHeaderComponent, useClass: BsAccordionTabHeaderMockComponent },
102
+ ], imports: [CommonModule] });
103
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAccordionTestingModule, decorators: [{
104
+ type: NgModule,
105
+ args: [{
106
+ declarations: [
107
+ BsAccordionMockComponent,
108
+ BsAccordionTabMockComponent,
109
+ BsAccordionTabHeaderMockComponent,
110
+ ],
111
+ imports: [CommonModule],
112
+ exports: [
113
+ BsAccordionMockComponent,
114
+ BsAccordionTabMockComponent,
115
+ BsAccordionTabHeaderMockComponent,
116
+ ],
117
+ providers: [
118
+ { provide: BsAccordionComponent, useClass: BsAccordionMockComponent },
119
+ { provide: BsAccordionTabHeaderComponent, useClass: BsAccordionTabHeaderMockComponent },
120
+ ],
121
+ }]
122
+ }] });
123
+
124
+ class BsAlertMockComponent {
125
+ constructor() {
126
+ this.type = Color$1.primary;
127
+ this.isVisible = true;
128
+ this.isVisibleChange = new EventEmitter();
129
+ this.afterOpenedOrClosed = new EventEmitter();
130
+ }
131
+ }
132
+ BsAlertMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
133
+ BsAlertMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsAlertMockComponent, selector: "bs-alert", inputs: { type: "type", isVisible: "isVisible" }, outputs: { isVisibleChange: "isVisibleChange", afterOpenedOrClosed: "afterOpenedOrClosed" }, providers: [
134
+ { provide: BsAlertComponent, useExisting: BsAlertMockComponent }
135
+ ], ngImport: i0, template: "<div *ngIf=\"isVisible\">\n <div class=\"alert mb-0\">\n <ng-content></ng-content>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertMockComponent, decorators: [{
137
+ type: Component,
138
+ args: [{ selector: 'bs-alert', providers: [
139
+ { provide: BsAlertComponent, useExisting: BsAlertMockComponent }
140
+ ], template: "<div *ngIf=\"isVisible\">\n <div class=\"alert mb-0\">\n <ng-content></ng-content>\n </div>\n</div>" }]
141
+ }], propDecorators: { type: [{
142
+ type: Input
143
+ }], isVisible: [{
144
+ type: Input
145
+ }], isVisibleChange: [{
146
+ type: Output
147
+ }], afterOpenedOrClosed: [{
148
+ type: Output
149
+ }] } });
150
+
151
+ class BsAlertCloseMockComponent {
152
+ }
153
+ BsAlertCloseMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertCloseMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
154
+ BsAlertCloseMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsAlertCloseMockComponent, selector: "bs-alert-close", providers: [
155
+ { provide: BsAlertCloseComponent, useExisting: BsAlertCloseMockComponent }
156
+ ], ngImport: i0, template: "<button>\n <span>\u00D7</span>\n</button>", styles: [""] });
157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertCloseMockComponent, decorators: [{
158
+ type: Component,
159
+ args: [{ selector: 'bs-alert-close', providers: [
160
+ { provide: BsAlertCloseComponent, useExisting: BsAlertCloseMockComponent }
161
+ ], template: "<button>\n <span>\u00D7</span>\n</button>" }]
162
+ }] });
163
+
164
+ class BsAlertTestingModule {
165
+ }
166
+ BsAlertTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
167
+ BsAlertTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsAlertTestingModule, declarations: [BsAlertMockComponent, BsAlertCloseMockComponent], imports: [CommonModule], exports: [BsAlertMockComponent, BsAlertCloseMockComponent] });
168
+ BsAlertTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertTestingModule, providers: [
169
+ { provide: BsAlertComponent, useClass: BsAlertMockComponent },
170
+ { provide: BsAlertCloseComponent, useClass: BsAlertCloseMockComponent }
171
+ ], imports: [CommonModule] });
172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAlertTestingModule, decorators: [{
173
+ type: NgModule,
174
+ args: [{
175
+ declarations: [BsAlertMockComponent, BsAlertCloseMockComponent],
176
+ imports: [CommonModule],
177
+ exports: [BsAlertMockComponent, BsAlertCloseMockComponent],
178
+ providers: [
179
+ { provide: BsAlertComponent, useClass: BsAlertMockComponent },
180
+ { provide: BsAlertCloseComponent, useClass: BsAlertCloseMockComponent }
181
+ ]
182
+ }]
183
+ }] });
184
+
185
+ class BsBadgeMockComponent {
186
+ constructor() {
187
+ this.type = Color$1.primary;
188
+ }
189
+ }
190
+ BsBadgeMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
191
+ BsBadgeMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsBadgeMockComponent, selector: "bs-badge", inputs: { type: "type" }, providers: [
192
+ { provide: BsBadgeComponent, useExisting: BsBadgeMockComponent }
193
+ ], ngImport: i0, template: "<span class=\"badge\">\n <ng-content></ng-content>\n</span>", styles: [""] });
194
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeMockComponent, decorators: [{
195
+ type: Component,
196
+ args: [{ selector: 'bs-badge', providers: [
197
+ { provide: BsBadgeComponent, useExisting: BsBadgeMockComponent }
198
+ ], template: "<span class=\"badge\">\n <ng-content></ng-content>\n</span>" }]
199
+ }], propDecorators: { type: [{
200
+ type: Input
201
+ }] } });
202
+
203
+ class BsBadgeTestingModule {
204
+ }
205
+ BsBadgeTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
206
+ BsBadgeTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeTestingModule, declarations: [BsBadgeMockComponent], imports: [CommonModule], exports: [BsBadgeMockComponent] });
207
+ BsBadgeTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeTestingModule, providers: [
208
+ { provide: BsBadgeComponent, useClass: BsBadgeMockComponent }
209
+ ], imports: [CommonModule] });
210
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBadgeTestingModule, decorators: [{
211
+ type: NgModule,
212
+ args: [{
213
+ declarations: [BsBadgeMockComponent],
214
+ imports: [CommonModule],
215
+ exports: [BsBadgeMockComponent],
216
+ providers: [
217
+ { provide: BsBadgeComponent, useClass: BsBadgeMockComponent }
218
+ ]
219
+ }]
220
+ }] });
221
+
222
+ class BsBreadcrumbMockComponent {
223
+ }
224
+ BsBreadcrumbMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
225
+ BsBreadcrumbMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsBreadcrumbMockComponent, selector: "bs-breadcrumb", providers: [
226
+ { provide: BsBreadcrumbComponent, useExisting: BsBreadcrumbMockComponent }
227
+ ], ngImport: i0, template: "<nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-content></ng-content>\n </ol>\n</nav>", styles: [""] });
228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbMockComponent, decorators: [{
229
+ type: Component,
230
+ args: [{ selector: 'bs-breadcrumb', providers: [
231
+ { provide: BsBreadcrumbComponent, useExisting: BsBreadcrumbMockComponent }
232
+ ], template: "<nav aria-label=\"breadcrumb\">\n <ol class=\"breadcrumb\">\n <ng-content></ng-content>\n </ol>\n</nav>" }]
233
+ }] });
234
+
235
+ class BsBreadcrumbItemMockComponent {
236
+ }
237
+ BsBreadcrumbItemMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbItemMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
238
+ BsBreadcrumbItemMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsBreadcrumbItemMockComponent, selector: "bs-breadcrumb-item", providers: [
239
+ { provide: BsBreadcrumbItemComponent, useExisting: BsBreadcrumbItemMockComponent }
240
+ ], ngImport: i0, template: "<li>\n <ng-content></ng-content>\n</li>", styles: [""] });
241
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbItemMockComponent, decorators: [{
242
+ type: Component,
243
+ args: [{ selector: 'bs-breadcrumb-item', providers: [
244
+ { provide: BsBreadcrumbItemComponent, useExisting: BsBreadcrumbItemMockComponent }
245
+ ], template: "<li>\n <ng-content></ng-content>\n</li>" }]
246
+ }] });
247
+
248
+ class BsBreadcrumbTestingModule {
249
+ }
250
+ BsBreadcrumbTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
251
+ BsBreadcrumbTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbTestingModule, declarations: [BsBreadcrumbMockComponent, BsBreadcrumbItemMockComponent], imports: [CommonModule], exports: [BsBreadcrumbMockComponent, BsBreadcrumbItemMockComponent] });
252
+ BsBreadcrumbTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbTestingModule, providers: [
253
+ { provide: BsBreadcrumbComponent, useClass: BsBreadcrumbMockComponent },
254
+ { provide: BsBreadcrumbItemComponent, useClass: BsBreadcrumbItemMockComponent },
255
+ ], imports: [CommonModule] });
256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsBreadcrumbTestingModule, decorators: [{
257
+ type: NgModule,
258
+ args: [{
259
+ declarations: [BsBreadcrumbMockComponent, BsBreadcrumbItemMockComponent],
260
+ imports: [CommonModule],
261
+ exports: [BsBreadcrumbMockComponent, BsBreadcrumbItemMockComponent],
262
+ providers: [
263
+ { provide: BsBreadcrumbComponent, useClass: BsBreadcrumbMockComponent },
264
+ { provide: BsBreadcrumbItemComponent, useClass: BsBreadcrumbItemMockComponent },
265
+ ]
266
+ }]
267
+ }] });
268
+
269
+ class BsButtonGroupMockComponent {
270
+ }
271
+ BsButtonGroupMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
272
+ BsButtonGroupMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsButtonGroupMockComponent, selector: "bs-button-group", providers: [
273
+ { provide: BsButtonGroupComponent, useExisting: BsButtonGroupMockComponent }
274
+ ], ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>", styles: [""] });
275
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupMockComponent, decorators: [{
276
+ type: Component,
277
+ args: [{ selector: 'bs-button-group', providers: [
278
+ { provide: BsButtonGroupComponent, useExisting: BsButtonGroupMockComponent }
279
+ ], template: "<div>\n <ng-content></ng-content>\n</div>" }]
280
+ }] });
281
+
282
+ class BsButtonGroupTestingModule {
283
+ }
284
+ BsButtonGroupTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
285
+ BsButtonGroupTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupTestingModule, declarations: [BsButtonGroupMockComponent], imports: [CommonModule], exports: [BsButtonGroupMockComponent] });
286
+ BsButtonGroupTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupTestingModule, providers: [
287
+ { provide: BsButtonGroupComponent, useClass: BsButtonGroupMockComponent }
288
+ ], imports: [CommonModule] });
289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsButtonGroupTestingModule, decorators: [{
290
+ type: NgModule,
291
+ args: [{
292
+ declarations: [BsButtonGroupMockComponent],
293
+ imports: [CommonModule],
294
+ exports: [BsButtonGroupMockComponent],
295
+ providers: [
296
+ { provide: BsButtonGroupComponent, useClass: BsButtonGroupMockComponent }
297
+ ]
298
+ }]
299
+ }] });
300
+
301
+ class BsCalendarMockComponent {
302
+ }
303
+ BsCalendarMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
304
+ BsCalendarMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCalendarMockComponent, selector: "bs-calendar", providers: [
305
+ { provide: BsCalendarComponent, useExisting: BsCalendarMockComponent }
306
+ ], ngImport: i0, template: "<p>calendar works!</p>\n", styles: [""] });
307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarMockComponent, decorators: [{
308
+ type: Component,
309
+ args: [{ selector: 'bs-calendar', providers: [
310
+ { provide: BsCalendarComponent, useExisting: BsCalendarMockComponent }
311
+ ], template: "<p>calendar works!</p>\n" }]
312
+ }] });
313
+
314
+ class BsCalendarTestingModule {
315
+ }
316
+ BsCalendarTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
317
+ BsCalendarTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarTestingModule, declarations: [BsCalendarMockComponent], imports: [CommonModule], exports: [BsCalendarMockComponent] });
318
+ BsCalendarTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarTestingModule, providers: [
319
+ { provide: BsCalendarComponent, useClass: BsCalendarMockComponent }
320
+ ], imports: [CommonModule] });
321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCalendarTestingModule, decorators: [{
322
+ type: NgModule,
323
+ args: [{
324
+ declarations: [BsCalendarMockComponent],
325
+ imports: [CommonModule],
326
+ exports: [BsCalendarMockComponent],
327
+ providers: [
328
+ { provide: BsCalendarComponent, useClass: BsCalendarMockComponent }
329
+ ]
330
+ }]
331
+ }] });
332
+
333
+ class BsCardMockComponent {
334
+ }
335
+ BsCardMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
336
+ BsCardMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCardMockComponent, selector: "bs-card", providers: [
337
+ { provide: BsCardComponent, useExisting: BsCardMockComponent }
338
+ ], ngImport: i0, template: "<div>\n <ng-content select=\"bs-card-header\"></ng-content>\n <div>\n <ng-content></ng-content>\n </div>\n</div>", styles: [""] });
339
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardMockComponent, decorators: [{
340
+ type: Component,
341
+ args: [{ selector: 'bs-card', providers: [
342
+ { provide: BsCardComponent, useExisting: BsCardMockComponent }
343
+ ], template: "<div>\n <ng-content select=\"bs-card-header\"></ng-content>\n <div>\n <ng-content></ng-content>\n </div>\n</div>" }]
344
+ }] });
345
+
346
+ class BsCardHeaderMockComponent {
347
+ }
348
+ BsCardHeaderMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardHeaderMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
349
+ BsCardHeaderMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCardHeaderMockComponent, selector: "bs-card-header", providers: [
350
+ { provide: BsCardHeaderComponent, useExisting: BsCardHeaderMockComponent }
351
+ ], ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>", styles: [""] });
352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardHeaderMockComponent, decorators: [{
353
+ type: Component,
354
+ args: [{ selector: 'bs-card-header', providers: [
355
+ { provide: BsCardHeaderComponent, useExisting: BsCardHeaderMockComponent }
356
+ ], template: "<div>\n <ng-content></ng-content>\n</div>" }]
357
+ }] });
358
+
359
+ class BsCardTestingModule {
360
+ }
361
+ BsCardTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
362
+ BsCardTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCardTestingModule, declarations: [BsCardMockComponent, BsCardHeaderMockComponent], imports: [CommonModule], exports: [BsCardMockComponent, BsCardHeaderMockComponent] });
363
+ BsCardTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardTestingModule, providers: [
364
+ { provide: BsCardComponent, useClass: BsCardMockComponent },
365
+ { provide: BsCardHeaderComponent, useClass: BsCardHeaderMockComponent }
366
+ ], imports: [CommonModule] });
367
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCardTestingModule, decorators: [{
368
+ type: NgModule,
369
+ args: [{
370
+ declarations: [BsCardMockComponent, BsCardHeaderMockComponent],
371
+ imports: [CommonModule],
372
+ exports: [BsCardMockComponent, BsCardHeaderMockComponent],
373
+ providers: [
374
+ { provide: BsCardComponent, useClass: BsCardMockComponent },
375
+ { provide: BsCardHeaderComponent, useClass: BsCardHeaderMockComponent }
376
+ ]
377
+ }]
378
+ }] });
379
+
380
+ class BsCarouselMockComponent {
381
+ constructor() {
382
+ this.animation = 'slide';
383
+ this.indicators = true;
384
+ }
385
+ }
386
+ BsCarouselMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
387
+ BsCarouselMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCarouselMockComponent, selector: "bs-carousel", inputs: { animation: "animation", indicators: "indicators" }, providers: [
388
+ { provide: BsCarouselComponent, useExisting: BsCarouselMockComponent }
389
+ ], ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>", styles: [""] });
390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselMockComponent, decorators: [{
391
+ type: Component,
392
+ args: [{ selector: 'bs-carousel', providers: [
393
+ { provide: BsCarouselComponent, useExisting: BsCarouselMockComponent }
394
+ ], template: "<div>\n <ng-content></ng-content>\n</div>" }]
395
+ }], propDecorators: { animation: [{
396
+ type: Input
397
+ }], indicators: [{
398
+ type: Input
399
+ }] } });
400
+
401
+ class BsCarouselImageMockDirective {
402
+ }
403
+ BsCarouselImageMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselImageMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
404
+ BsCarouselImageMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsCarouselImageMockDirective, selector: "[bsCarouselImage]", ngImport: i0 });
405
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselImageMockDirective, decorators: [{
406
+ type: Directive,
407
+ args: [{
408
+ selector: '[bsCarouselImage]'
409
+ }]
410
+ }] });
411
+
412
+ class BsCarouselTestingModule {
413
+ }
414
+ BsCarouselTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
415
+ BsCarouselTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselTestingModule, declarations: [BsCarouselMockComponent, BsCarouselImageMockDirective], imports: [CommonModule], exports: [BsCarouselMockComponent, BsCarouselImageMockDirective] });
416
+ BsCarouselTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselTestingModule, providers: [
417
+ { provide: BsCarouselComponent, useClass: BsCarouselMockComponent }
418
+ ], imports: [CommonModule] });
419
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCarouselTestingModule, decorators: [{
420
+ type: NgModule,
421
+ args: [{
422
+ declarations: [BsCarouselMockComponent, BsCarouselImageMockDirective],
423
+ imports: [CommonModule],
424
+ exports: [BsCarouselMockComponent, BsCarouselImageMockDirective],
425
+ providers: [
426
+ { provide: BsCarouselComponent, useClass: BsCarouselMockComponent }
427
+ ]
428
+ }]
429
+ }] });
430
+
431
+ class BsCloseMockComponent {
432
+ }
433
+ BsCloseMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCloseMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
434
+ BsCloseMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCloseMockComponent, selector: "bs-close", providers: [
435
+ { provide: BsCloseComponent, useExisting: BsCloseMockComponent }
436
+ ], ngImport: i0, template: "<button>Close</button>", styles: [""] });
437
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCloseMockComponent, decorators: [{
438
+ type: Component,
439
+ args: [{ selector: 'bs-close', providers: [
440
+ { provide: BsCloseComponent, useExisting: BsCloseMockComponent }
441
+ ], template: "<button>Close</button>" }]
442
+ }] });
443
+
444
+ class BsCloseTestingModule {
445
+ }
446
+ BsCloseTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCloseTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
447
+ BsCloseTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCloseTestingModule, declarations: [BsCloseMockComponent], imports: [CommonModule], exports: [BsCloseMockComponent] });
448
+ BsCloseTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCloseTestingModule, providers: [
449
+ { provide: BsCloseComponent, useClass: BsCloseMockComponent }
450
+ ], imports: [CommonModule] });
451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCloseTestingModule, decorators: [{
452
+ type: NgModule,
453
+ args: [{
454
+ declarations: [BsCloseMockComponent],
455
+ imports: [CommonModule],
456
+ exports: [BsCloseMockComponent],
457
+ providers: [
458
+ { provide: BsCloseComponent, useClass: BsCloseMockComponent }
459
+ ]
460
+ }]
461
+ }] });
462
+
463
+ class BsCodeSnippetMockComponent {
464
+ constructor() {
465
+ this.htmlToCopy = '';
466
+ }
467
+ }
468
+ BsCodeSnippetMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
469
+ BsCodeSnippetMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsCodeSnippetMockComponent, selector: "bs-code-snippet", inputs: { htmlToCopy: "htmlToCopy" }, providers: [
470
+ { provide: BsCodeSnippetComponent, useExisting: BsCodeSnippetMockComponent }
471
+ ], ngImport: i0, template: "<p>code-snippet works!</p>\n", styles: [""] });
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetMockComponent, decorators: [{
473
+ type: Component,
474
+ args: [{ selector: 'bs-code-snippet', providers: [
475
+ { provide: BsCodeSnippetComponent, useExisting: BsCodeSnippetMockComponent }
476
+ ], template: "<p>code-snippet works!</p>\n" }]
477
+ }], propDecorators: { htmlToCopy: [{
478
+ type: Input
479
+ }] } });
480
+
481
+ class BsCodeSnippetTestingModule {
482
+ }
483
+ BsCodeSnippetTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
484
+ BsCodeSnippetTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetTestingModule, declarations: [BsCodeSnippetMockComponent], imports: [CommonModule], exports: [BsCodeSnippetMockComponent] });
485
+ BsCodeSnippetTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetTestingModule, providers: [
486
+ { provide: BsCodeSnippetComponent, useClass: BsCodeSnippetMockComponent }
487
+ ], imports: [CommonModule] });
488
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCodeSnippetTestingModule, decorators: [{
489
+ type: NgModule,
490
+ args: [{
491
+ declarations: [BsCodeSnippetMockComponent],
492
+ imports: [CommonModule],
493
+ exports: [BsCodeSnippetMockComponent],
494
+ providers: [
495
+ { provide: BsCodeSnippetComponent, useClass: BsCodeSnippetMockComponent }
496
+ ]
497
+ }]
498
+ }] });
499
+
500
+ var Color;
501
+ (function (Color) {
502
+ Color[Color["primary"] = 0] = "primary";
503
+ Color[Color["secondary"] = 1] = "secondary";
504
+ Color[Color["success"] = 2] = "success";
505
+ Color[Color["danger"] = 3] = "danger";
506
+ Color[Color["warning"] = 4] = "warning";
507
+ Color[Color["info"] = 5] = "info";
508
+ Color[Color["light"] = 6] = "light";
509
+ Color[Color["dark"] = 7] = "dark";
510
+ Color[Color["body"] = 8] = "body";
511
+ Color[Color["white"] = 9] = "white";
512
+ Color[Color["transparent"] = 10] = "transparent";
513
+ })(Color || (Color = {}));
514
+
515
+ class BsContextMenuMockDirective {
516
+ }
517
+ BsContextMenuMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
518
+ BsContextMenuMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsContextMenuMockDirective, selector: "[bsContextMenu]", ngImport: i0 });
519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuMockDirective, decorators: [{
520
+ type: Directive,
521
+ args: [{
522
+ selector: '[bsContextMenu]'
523
+ }]
524
+ }] });
525
+
526
+ class BsContextMenuTestingModule {
527
+ }
528
+ BsContextMenuTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
529
+ BsContextMenuTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuTestingModule, declarations: [BsContextMenuMockDirective], imports: [CommonModule], exports: [BsContextMenuMockDirective] });
530
+ BsContextMenuTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuTestingModule, imports: [CommonModule] });
531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsContextMenuTestingModule, decorators: [{
532
+ type: NgModule,
533
+ args: [{
534
+ declarations: [
535
+ BsContextMenuMockDirective
536
+ ],
537
+ imports: [
538
+ CommonModule
539
+ ],
540
+ exports: [
541
+ BsContextMenuMockDirective
542
+ ]
543
+ }]
544
+ }] });
545
+
546
+ class BsCopyMockDirective {
547
+ }
548
+ BsCopyMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCopyMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
549
+ BsCopyMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsCopyMockDirective, selector: "[bsCopy]", inputs: { bsCopy: "bsCopy" }, ngImport: i0 });
550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCopyMockDirective, decorators: [{
551
+ type: Directive,
552
+ args: [{
553
+ selector: '[bsCopy]'
554
+ }]
555
+ }], propDecorators: { bsCopy: [{
556
+ type: Input
557
+ }] } });
558
+
559
+ class BsCopyTestingModule {
560
+ }
561
+ BsCopyTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCopyTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
562
+ BsCopyTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsCopyTestingModule, declarations: [BsCopyMockDirective], imports: [CommonModule], exports: [BsCopyMockDirective] });
563
+ BsCopyTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCopyTestingModule, imports: [CommonModule] });
564
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsCopyTestingModule, decorators: [{
565
+ type: NgModule,
566
+ args: [{
567
+ declarations: [
568
+ BsCopyMockDirective
569
+ ],
570
+ imports: [
571
+ CommonModule
572
+ ],
573
+ exports: [
574
+ BsCopyMockDirective
575
+ ]
576
+ }]
577
+ }] });
578
+
579
+ class BsDatatableColumnMockDirective {
580
+ constructor() {
581
+ this.bsDatatableColumn = { name: '', sortable: true };
582
+ this.templateRef = null;
583
+ }
584
+ }
585
+ BsDatatableColumnMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableColumnMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
586
+ BsDatatableColumnMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsDatatableColumnMockDirective, selector: "[bsDatatableColumn]", inputs: { bsDatatableColumn: "bsDatatableColumn" }, providers: [
587
+ { provide: BsDatatableColumnDirective, useExisting: BsDatatableColumnMockDirective },
588
+ ], ngImport: i0 });
589
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableColumnMockDirective, decorators: [{
590
+ type: Directive,
591
+ args: [{
592
+ selector: '[bsDatatableColumn]',
593
+ providers: [
594
+ { provide: BsDatatableColumnDirective, useExisting: BsDatatableColumnMockDirective },
595
+ ]
596
+ }]
597
+ }], propDecorators: { bsDatatableColumn: [{
598
+ type: Input
599
+ }] } });
600
+
601
+ class DatatableSettingsMock {
602
+ constructor(data) {
603
+ this.sortProperty = '';
604
+ this.sortDirection = 'ascending';
605
+ this.perPage = {
606
+ values: [10, 20, 50],
607
+ selected: 20
608
+ };
609
+ this.page = {
610
+ values: [1, 2, 3],
611
+ selected: 1
612
+ };
613
+ }
614
+ }
615
+
616
+ class BsDatatableMockComponent {
617
+ constructor() {
618
+ this.reloadData = new EventEmitter();
619
+ this.settings = new DatatableSettingsMock();
620
+ }
621
+ }
622
+ BsDatatableMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
623
+ BsDatatableMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsDatatableMockComponent, selector: "bs-datatable", inputs: { settings: "settings", data: "data" }, outputs: { reloadData: "reloadData" }, providers: [
624
+ { provide: BsDatatableComponent, useExisting: BsDatatableMockComponent }
625
+ ], queries: [{ propertyName: "columns", predicate: BsDatatableColumnMockDirective }], ngImport: i0, template: "<div class=\"table-responsive overflow-y-hidden mb-3\">\n <table class=\"table table-striped table-hover w-100 mb-0\" cellspacing=\"0\" role=\"grid\">\n <thead>\n <tr>\n <th *ngFor=\"let column of columns\" class=\"text-nowrap\" [class.sort]=\"column.bsDatatableColumn.sortable\"\n [class.sort-asc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty == column.bsDatatableColumn.name) && (settings.sortDirection == 'ascending')\"\n [class.sort-desc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty == column.bsDatatableColumn.name) && (settings.sortDirection == 'descending')\">\n <ng-container *ngTemplateOutlet=\"column.templateRef\"></ng-container>\n </th>\n </tr>\n </thead>\n <tbody></tbody>\n </table>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableMockComponent, decorators: [{
627
+ type: Component,
628
+ args: [{ selector: 'bs-datatable', providers: [
629
+ { provide: BsDatatableComponent, useExisting: BsDatatableMockComponent }
630
+ ], template: "<div class=\"table-responsive overflow-y-hidden mb-3\">\n <table class=\"table table-striped table-hover w-100 mb-0\" cellspacing=\"0\" role=\"grid\">\n <thead>\n <tr>\n <th *ngFor=\"let column of columns\" class=\"text-nowrap\" [class.sort]=\"column.bsDatatableColumn.sortable\"\n [class.sort-asc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty == column.bsDatatableColumn.name) && (settings.sortDirection == 'ascending')\"\n [class.sort-desc]=\"column.bsDatatableColumn.sortable && (settings.sortProperty == column.bsDatatableColumn.name) && (settings.sortDirection == 'descending')\">\n <ng-container *ngTemplateOutlet=\"column.templateRef\"></ng-container>\n </th>\n </tr>\n </thead>\n <tbody></tbody>\n </table>\n</div>" }]
631
+ }], ctorParameters: function () { return []; }, propDecorators: { settings: [{
632
+ type: Input
633
+ }], data: [{
634
+ type: Input
635
+ }], reloadData: [{
636
+ type: Output
637
+ }], columns: [{
638
+ type: ContentChildren,
639
+ args: [BsDatatableColumnMockDirective]
640
+ }] } });
641
+
642
+ class BsRowTemplateMockDirective {
643
+ }
644
+ BsRowTemplateMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRowTemplateMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
645
+ BsRowTemplateMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsRowTemplateMockDirective, selector: "[bsRowTemplate]", ngImport: i0 });
646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRowTemplateMockDirective, decorators: [{
647
+ type: Directive,
648
+ args: [{
649
+ selector: '[bsRowTemplate]'
650
+ }]
651
+ }] });
652
+
653
+ class BsDatatableTestingModule {
654
+ }
655
+ BsDatatableTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
656
+ BsDatatableTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableTestingModule, declarations: [BsDatatableMockComponent, BsDatatableColumnMockDirective, BsRowTemplateMockDirective], imports: [CommonModule], exports: [BsDatatableMockComponent, BsDatatableColumnMockDirective, BsRowTemplateMockDirective] });
657
+ BsDatatableTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableTestingModule, providers: [
658
+ { provide: BsDatatableComponent, useClass: BsDatatableMockComponent },
659
+ { provide: BsDatatableColumnDirective, useClass: BsDatatableColumnMockDirective },
660
+ ], imports: [CommonModule] });
661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatatableTestingModule, decorators: [{
662
+ type: NgModule,
663
+ args: [{
664
+ declarations: [BsDatatableMockComponent, BsDatatableColumnMockDirective, BsRowTemplateMockDirective],
665
+ imports: [CommonModule],
666
+ exports: [BsDatatableMockComponent, BsDatatableColumnMockDirective, BsRowTemplateMockDirective],
667
+ providers: [
668
+ { provide: BsDatatableComponent, useClass: BsDatatableMockComponent },
669
+ { provide: BsDatatableColumnDirective, useClass: BsDatatableColumnMockDirective },
670
+ ]
671
+ }]
672
+ }] });
673
+
674
+ class BsDatepickerMockComponent {
675
+ constructor() {
676
+ this.selectedDate = new Date();
677
+ this.selectedDateChange = new EventEmitter();
678
+ }
679
+ }
680
+ BsDatepickerMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
681
+ BsDatepickerMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsDatepickerMockComponent, selector: "bs-datepicker", inputs: { selectedDate: "selectedDate" }, outputs: { selectedDateChange: "selectedDateChange" }, providers: [
682
+ { provide: BsDatepickerComponent, useExisting: BsDatepickerMockComponent }
683
+ ], ngImport: i0, template: "Date picker", styles: [""] });
684
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerMockComponent, decorators: [{
685
+ type: Component,
686
+ args: [{ selector: 'bs-datepicker', providers: [
687
+ { provide: BsDatepickerComponent, useExisting: BsDatepickerMockComponent }
688
+ ], template: "Date picker" }]
689
+ }], propDecorators: { selectedDate: [{
690
+ type: Input
691
+ }], selectedDateChange: [{
692
+ type: Output
693
+ }] } });
694
+
695
+ class BsDatepickerTestingModule {
696
+ }
697
+ BsDatepickerTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
698
+ BsDatepickerTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerTestingModule, declarations: [BsDatepickerMockComponent], imports: [CommonModule], exports: [BsDatepickerMockComponent] });
699
+ BsDatepickerTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerTestingModule, providers: [
700
+ { provide: BsDatepickerComponent, useClass: BsDatepickerMockComponent }
701
+ ], imports: [CommonModule] });
702
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDatepickerTestingModule, decorators: [{
703
+ type: NgModule,
704
+ args: [{
705
+ declarations: [BsDatepickerMockComponent],
706
+ imports: [CommonModule],
707
+ exports: [BsDatepickerMockComponent],
708
+ providers: [
709
+ { provide: BsDatepickerComponent, useClass: BsDatepickerMockComponent }
710
+ ]
711
+ }]
712
+ }] });
713
+
714
+ class BsDropdownMockDirective {
715
+ constructor() {
716
+ this.hasBackdrop = false;
717
+ this.closeOnClickOutside = false;
718
+ }
719
+ }
720
+ BsDropdownMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
721
+ BsDropdownMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsDropdownMockDirective, selector: "[bsDropdown]", inputs: { hasBackdrop: "hasBackdrop", closeOnClickOutside: "closeOnClickOutside" }, ngImport: i0 });
722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMockDirective, decorators: [{
723
+ type: Directive,
724
+ args: [{
725
+ selector: '[bsDropdown]'
726
+ }]
727
+ }], propDecorators: { hasBackdrop: [{
728
+ type: Input
729
+ }], closeOnClickOutside: [{
730
+ type: Input
731
+ }] } });
732
+
733
+ class BsDropdownMenuMockDirective {
734
+ constructor() { }
735
+ }
736
+ BsDropdownMenuMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
737
+ BsDropdownMenuMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsDropdownMenuMockDirective, selector: "[bsDropdownMenu]", ngImport: i0 });
738
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuMockDirective, decorators: [{
739
+ type: Directive,
740
+ args: [{
741
+ selector: '[bsDropdownMenu]'
742
+ }]
743
+ }], ctorParameters: function () { return []; } });
744
+
745
+ class BsDropdownToggleMockDirective {
746
+ constructor() { }
747
+ }
748
+ BsDropdownToggleMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownToggleMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
749
+ BsDropdownToggleMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsDropdownToggleMockDirective, selector: "[bsDropdownToggle]", ngImport: i0 });
750
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownToggleMockDirective, decorators: [{
751
+ type: Directive,
752
+ args: [{
753
+ selector: '[bsDropdownToggle]'
754
+ }]
755
+ }], ctorParameters: function () { return []; } });
756
+
757
+ class BsDropdownTestingModule {
758
+ }
759
+ BsDropdownTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
760
+ BsDropdownTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownTestingModule, declarations: [BsDropdownMockDirective,
761
+ BsDropdownMenuMockDirective,
762
+ BsDropdownToggleMockDirective], imports: [CommonModule], exports: [BsDropdownMockDirective,
763
+ BsDropdownMenuMockDirective,
764
+ BsDropdownToggleMockDirective] });
765
+ BsDropdownTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownTestingModule, imports: [CommonModule] });
766
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownTestingModule, decorators: [{
767
+ type: NgModule,
768
+ args: [{
769
+ declarations: [
770
+ BsDropdownMockDirective,
771
+ BsDropdownMenuMockDirective,
772
+ BsDropdownToggleMockDirective
773
+ ],
774
+ imports: [
775
+ CommonModule
776
+ ],
777
+ exports: [
778
+ BsDropdownMockDirective,
779
+ BsDropdownMenuMockDirective,
780
+ BsDropdownToggleMockDirective
781
+ ]
782
+ }]
783
+ }] });
784
+
785
+ class BsDropdownItemMockComponent {
786
+ }
787
+ BsDropdownItemMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownItemMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
788
+ BsDropdownItemMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsDropdownItemMockComponent, selector: "bs-dropdown-item", providers: [
789
+ { provide: BsDropdownItemComponent, useExisting: BsDropdownItemMockComponent }
790
+ ], ngImport: i0, template: "<p>dropdown-item works!</p>\n", styles: [""] });
791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownItemMockComponent, decorators: [{
792
+ type: Component,
793
+ args: [{ selector: 'bs-dropdown-item', providers: [
794
+ { provide: BsDropdownItemComponent, useExisting: BsDropdownItemMockComponent }
795
+ ], template: "<p>dropdown-item works!</p>\n" }]
796
+ }] });
797
+
798
+ class BsDropdownMenuMockComponent {
799
+ }
800
+ BsDropdownMenuMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
801
+ BsDropdownMenuMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsDropdownMenuMockComponent, selector: "bs-dropdown-menu", providers: [
802
+ { provide: BsDropdownMenuComponent, useExisting: BsDropdownMenuMockComponent }
803
+ ], ngImport: i0, template: "<p>dropdown-menu works!</p>\n", styles: [""] });
804
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuMockComponent, decorators: [{
805
+ type: Component,
806
+ args: [{ selector: 'bs-dropdown-menu', providers: [
807
+ { provide: BsDropdownMenuComponent, useExisting: BsDropdownMenuMockComponent }
808
+ ], template: "<p>dropdown-menu works!</p>\n" }]
809
+ }] });
810
+
811
+ class BsDropdownMenuTestingModule {
812
+ }
813
+ BsDropdownMenuTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
814
+ BsDropdownMenuTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuTestingModule, declarations: [BsDropdownItemMockComponent, BsDropdownMenuMockComponent], imports: [CommonModule], exports: [BsDropdownItemMockComponent, BsDropdownMenuMockComponent] });
815
+ BsDropdownMenuTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuTestingModule, providers: [
816
+ { provide: BsDropdownItemMockComponent, useClass: BsDropdownItemComponent },
817
+ { provide: BsDropdownMenuMockComponent, useClass: BsDropdownMenuComponent },
818
+ ], imports: [CommonModule] });
819
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsDropdownMenuTestingModule, decorators: [{
820
+ type: NgModule,
821
+ args: [{
822
+ declarations: [BsDropdownItemMockComponent, BsDropdownMenuMockComponent],
823
+ imports: [CommonModule],
824
+ exports: [BsDropdownItemMockComponent, BsDropdownMenuMockComponent],
825
+ providers: [
826
+ { provide: BsDropdownItemMockComponent, useClass: BsDropdownItemComponent },
827
+ { provide: BsDropdownMenuMockComponent, useClass: BsDropdownMenuComponent },
828
+ ]
829
+ }]
830
+ }] });
831
+
832
+ class EnhancedPasteMockDirective {
833
+ }
834
+ EnhancedPasteMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
835
+ EnhancedPasteMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: EnhancedPasteMockDirective, selector: "[bsEnhancedPaste]", ngImport: i0 });
836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteMockDirective, decorators: [{
837
+ type: Directive,
838
+ args: [{
839
+ selector: '[bsEnhancedPaste]'
840
+ }]
841
+ }] });
842
+
843
+ class EnhancedPasteTestingModule {
844
+ }
845
+ EnhancedPasteTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
846
+ EnhancedPasteTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteTestingModule, declarations: [EnhancedPasteMockDirective], imports: [CommonModule], exports: [EnhancedPasteMockDirective] });
847
+ EnhancedPasteTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteTestingModule, imports: [CommonModule] });
848
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: EnhancedPasteTestingModule, decorators: [{
849
+ type: NgModule,
850
+ args: [{
851
+ declarations: [
852
+ EnhancedPasteMockDirective
853
+ ],
854
+ imports: [
855
+ CommonModule
856
+ ],
857
+ exports: [
858
+ EnhancedPasteMockDirective
859
+ ]
860
+ }]
861
+ }] });
862
+
863
+ class BsFileUploadMockComponent {
864
+ constructor() {
865
+ this.files = [];
866
+ }
867
+ }
868
+ BsFileUploadMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
869
+ BsFileUploadMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsFileUploadMockComponent, selector: "bs-file-upload", inputs: { files: "files" }, providers: [
870
+ { provide: BsFileUploadComponent, useExisting: BsFileUploadMockComponent }
871
+ ], ngImport: i0, template: "<p>file-upload works!</p>\n", styles: [""] });
872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadMockComponent, decorators: [{
873
+ type: Component,
874
+ args: [{ selector: 'bs-file-upload', providers: [
875
+ { provide: BsFileUploadComponent, useExisting: BsFileUploadMockComponent }
876
+ ], template: "<p>file-upload works!</p>\n" }]
877
+ }], propDecorators: { files: [{
878
+ type: Input
879
+ }] } });
880
+
881
+ class BsFileUploadTemplateMockDirective {
882
+ }
883
+ BsFileUploadTemplateMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTemplateMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
884
+ BsFileUploadTemplateMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsFileUploadTemplateMockDirective, selector: "[bsFileUploadTemplate]", ngImport: i0 });
885
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTemplateMockDirective, decorators: [{
886
+ type: Directive,
887
+ args: [{
888
+ selector: '[bsFileUploadTemplate]'
889
+ }]
890
+ }] });
891
+
892
+ class BsFileUploadTestingModule {
893
+ }
894
+ BsFileUploadTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
895
+ BsFileUploadTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTestingModule, declarations: [BsFileUploadMockComponent, BsFileUploadTemplateMockDirective], imports: [CommonModule], exports: [BsFileUploadMockComponent, BsFileUploadTemplateMockDirective] });
896
+ BsFileUploadTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTestingModule, providers: [
897
+ { provide: BsFileUploadComponent, useClass: BsFileUploadMockComponent }
898
+ ], imports: [CommonModule] });
899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsFileUploadTestingModule, decorators: [{
900
+ type: NgModule,
901
+ args: [{
902
+ declarations: [BsFileUploadMockComponent, BsFileUploadTemplateMockDirective],
903
+ imports: [CommonModule],
904
+ exports: [BsFileUploadMockComponent, BsFileUploadTemplateMockDirective],
905
+ providers: [
906
+ { provide: BsFileUploadComponent, useClass: BsFileUploadMockComponent }
907
+ ]
908
+ }]
909
+ }] });
910
+
911
+ class BsForMockDirective {
912
+ }
913
+ BsForMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsForMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
914
+ BsForMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsForMockDirective, selector: "[bsFor]", inputs: { bsFor: "bsFor" }, ngImport: i0 });
915
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsForMockDirective, decorators: [{
916
+ type: Directive,
917
+ args: [{
918
+ selector: '[bsFor]'
919
+ }]
920
+ }], propDecorators: { bsFor: [{
921
+ type: Input
922
+ }] } });
923
+
924
+ class BsForTestingModule {
925
+ }
926
+ BsForTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsForTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
927
+ BsForTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsForTestingModule, declarations: [BsForMockDirective], imports: [CommonModule], exports: [BsForMockDirective] });
928
+ BsForTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsForTestingModule, imports: [CommonModule] });
929
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsForTestingModule, decorators: [{
930
+ type: NgModule,
931
+ args: [{
932
+ declarations: [
933
+ BsForMockDirective
934
+ ],
935
+ imports: [
936
+ CommonModule
937
+ ],
938
+ exports: [
939
+ BsForMockDirective
940
+ ]
941
+ }]
942
+ }] });
943
+
944
+ class BsGridMockComponent {
945
+ constructor() {
946
+ this.stopFullWidthAt = 'sm';
947
+ }
948
+ }
949
+ BsGridMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsGridMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
950
+ BsGridMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsGridMockComponent, selector: "bs-grid", inputs: { stopFullWidthAt: "stopFullWidthAt" }, providers: [
951
+ { provide: BsGridComponent, useExisting: BsGridMockComponent },
952
+ ], ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>\n", styles: [""] });
953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsGridMockComponent, decorators: [{
954
+ type: Component,
955
+ args: [{ selector: 'bs-grid', providers: [
956
+ { provide: BsGridComponent, useExisting: BsGridMockComponent },
957
+ ], template: "<div>\n <ng-content></ng-content>\n</div>\n" }]
958
+ }], propDecorators: { stopFullWidthAt: [{
959
+ type: Input
960
+ }] } });
961
+
962
+ class BsRowMockDirective {
963
+ }
964
+ BsRowMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRowMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
965
+ BsRowMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsRowMockDirective, selector: "[bsRow]", ngImport: i0 });
966
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRowMockDirective, decorators: [{
967
+ type: Directive,
968
+ args: [{
969
+ selector: '[bsRow]'
970
+ }]
971
+ }] });
972
+
973
+ class BsColumnMockDirective {
974
+ }
975
+ BsColumnMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsColumnMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
976
+ BsColumnMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsColumnMockDirective, selector: "[bsColumn]", inputs: { bsColumn: "bsColumn" }, ngImport: i0 });
977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsColumnMockDirective, decorators: [{
978
+ type: Directive,
979
+ args: [{
980
+ selector: '[bsColumn]'
981
+ }]
982
+ }], propDecorators: { bsColumn: [{
983
+ type: Input
984
+ }] } });
985
+
986
+ class BsGridTestingModule {
987
+ }
988
+ BsGridTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsGridTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
989
+ BsGridTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsGridTestingModule, declarations: [BsGridMockComponent, BsRowMockDirective, BsColumnMockDirective], imports: [CommonModule], exports: [BsGridMockComponent, BsRowMockDirective, BsColumnMockDirective] });
990
+ BsGridTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsGridTestingModule, providers: [
991
+ { provide: BsGridComponent, useClass: BsGridMockComponent }
992
+ ], imports: [CommonModule] });
993
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsGridTestingModule, decorators: [{
994
+ type: NgModule,
995
+ args: [{
996
+ declarations: [BsGridMockComponent, BsRowMockDirective, BsColumnMockDirective],
997
+ imports: [CommonModule],
998
+ exports: [BsGridMockComponent, BsRowMockDirective, BsColumnMockDirective],
999
+ providers: [
1000
+ { provide: BsGridComponent, useClass: BsGridMockComponent }
1001
+ ]
1002
+ }]
1003
+ }] });
1004
+
1005
+ class BsHasOverlayMockComponent {
1006
+ }
1007
+ BsHasOverlayMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1008
+ BsHasOverlayMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsHasOverlayMockComponent, selector: "bs-has-overlay", ngImport: i0, template: "", styles: [""] });
1009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayMockComponent, decorators: [{
1010
+ type: Component,
1011
+ args: [{ selector: 'bs-has-overlay', template: "" }]
1012
+ }] });
1013
+
1014
+ class BsHasOverlayTestingModule {
1015
+ }
1016
+ BsHasOverlayTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1017
+ BsHasOverlayTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayTestingModule, declarations: [BsHasOverlayMockComponent], imports: [CommonModule], exports: [BsHasOverlayMockComponent] });
1018
+ BsHasOverlayTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayTestingModule, imports: [CommonModule] });
1019
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsHasOverlayTestingModule, decorators: [{
1020
+ type: NgModule,
1021
+ args: [{
1022
+ declarations: [BsHasOverlayMockComponent],
1023
+ imports: [CommonModule],
1024
+ exports: [BsHasOverlayMockComponent],
1025
+ }]
1026
+ }] });
1027
+
1028
+ class HighlightMockDirective {
1029
+ }
1030
+ HighlightMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: HighlightMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1031
+ HighlightMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: HighlightMockDirective, selector: "[highlight]", inputs: { highlight: "highlight" }, ngImport: i0 });
1032
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: HighlightMockDirective, decorators: [{
1033
+ type: Directive,
1034
+ args: [{
1035
+ selector: '[highlight]'
1036
+ }]
1037
+ }], propDecorators: { highlight: [{
1038
+ type: Input
1039
+ }] } });
1040
+
1041
+ class HighlightTestingModule {
1042
+ }
1043
+ HighlightTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: HighlightTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1044
+ HighlightTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: HighlightTestingModule, declarations: [HighlightMockDirective], imports: [CommonModule], exports: [HighlightMockDirective] });
1045
+ HighlightTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: HighlightTestingModule, imports: [CommonModule] });
1046
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: HighlightTestingModule, decorators: [{
1047
+ type: NgModule,
1048
+ args: [{
1049
+ declarations: [
1050
+ HighlightMockDirective
1051
+ ],
1052
+ imports: [
1053
+ CommonModule
1054
+ ],
1055
+ exports: [
1056
+ HighlightMockDirective
1057
+ ]
1058
+ }]
1059
+ }] });
1060
+
1061
+ class BsListGroupMockComponent {
1062
+ }
1063
+ BsListGroupMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1064
+ BsListGroupMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsListGroupMockComponent, selector: "bs-list-group", providers: [
1065
+ { provide: BsListGroupComponent, useExisting: BsListGroupMockComponent },
1066
+ ], ngImport: i0, template: "<ul>\n <ng-content></ng-content>\n</ul>", styles: [""] });
1067
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupMockComponent, decorators: [{
1068
+ type: Component,
1069
+ args: [{ selector: 'bs-list-group', providers: [
1070
+ { provide: BsListGroupComponent, useExisting: BsListGroupMockComponent },
1071
+ ], template: "<ul>\n <ng-content></ng-content>\n</ul>" }]
1072
+ }] });
1073
+
1074
+ class BsListGroupItemMockComponent {
1075
+ }
1076
+ BsListGroupItemMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupItemMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1077
+ BsListGroupItemMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsListGroupItemMockComponent, selector: "bs-list-group-item", providers: [
1078
+ { provide: BsListGroupItemComponent, useExisting: BsListGroupItemMockComponent },
1079
+ ], ngImport: i0, template: "<li>\n <ng-content></ng-content>\n</li>", styles: [""] });
1080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupItemMockComponent, decorators: [{
1081
+ type: Component,
1082
+ args: [{ selector: 'bs-list-group-item', providers: [
1083
+ { provide: BsListGroupItemComponent, useExisting: BsListGroupItemMockComponent },
1084
+ ], template: "<li>\n <ng-content></ng-content>\n</li>" }]
1085
+ }] });
1086
+
1087
+ class BsListGroupTestingModule {
1088
+ }
1089
+ BsListGroupTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1090
+ BsListGroupTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupTestingModule, declarations: [BsListGroupMockComponent, BsListGroupItemMockComponent], imports: [CommonModule], exports: [BsListGroupMockComponent, BsListGroupItemMockComponent] });
1091
+ BsListGroupTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupTestingModule, providers: [
1092
+ { provide: BsListGroupComponent, useClass: BsListGroupMockComponent },
1093
+ { provide: BsListGroupItemComponent, useClass: BsListGroupItemMockComponent },
1094
+ ], imports: [CommonModule] });
1095
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsListGroupTestingModule, decorators: [{
1096
+ type: NgModule,
1097
+ args: [{
1098
+ declarations: [BsListGroupMockComponent, BsListGroupItemMockComponent],
1099
+ imports: [CommonModule],
1100
+ exports: [BsListGroupMockComponent, BsListGroupItemMockComponent],
1101
+ providers: [
1102
+ { provide: BsListGroupComponent, useClass: BsListGroupMockComponent },
1103
+ { provide: BsListGroupItemComponent, useClass: BsListGroupItemMockComponent },
1104
+ ]
1105
+ }]
1106
+ }] });
1107
+
1108
+ class BsModalHostMockComponent {
1109
+ constructor() {
1110
+ this.isOpen = false;
1111
+ this.isOpenChange = new EventEmitter();
1112
+ }
1113
+ }
1114
+ BsModalHostMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsModalHostMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1115
+ BsModalHostMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsModalHostMockComponent, selector: "bs-modal", inputs: { isOpen: "isOpen" }, outputs: { isOpenChange: "isOpenChange" }, ngImport: i0, template: "modal", styles: [""] });
1116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsModalHostMockComponent, decorators: [{
1117
+ type: Component,
1118
+ args: [{ selector: 'bs-modal', template: "modal" }]
1119
+ }], propDecorators: { isOpen: [{
1120
+ type: Input
1121
+ }], isOpenChange: [{
1122
+ type: Output
1123
+ }] } });
1124
+
1125
+ class BsModalTestingModule {
1126
+ }
1127
+ BsModalTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsModalTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1128
+ BsModalTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsModalTestingModule, declarations: [BsModalHostMockComponent], imports: [CommonModule], exports: [BsModalHostMockComponent] });
1129
+ BsModalTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsModalTestingModule, imports: [CommonModule] });
1130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsModalTestingModule, decorators: [{
1131
+ type: NgModule,
1132
+ args: [{
1133
+ declarations: [BsModalHostMockComponent],
1134
+ imports: [CommonModule],
1135
+ exports: [BsModalHostMockComponent],
1136
+ }]
1137
+ }] });
1138
+
1139
+ class BsMultiselectMockComponent {
1140
+ constructor() {
1141
+ this.items = [];
1142
+ this.selectedItems = [];
1143
+ }
1144
+ }
1145
+ BsMultiselectMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1146
+ BsMultiselectMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsMultiselectMockComponent, selector: "bs-multiselect", inputs: { items: "items", selectedItems: "selectedItems" }, providers: [
1147
+ { provide: BsMultiselectComponent, useExisting: BsMultiselectMockComponent },
1148
+ ], ngImport: i0, template: "<p>multiselect works!</p>\n", styles: [""] });
1149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectMockComponent, decorators: [{
1150
+ type: Component,
1151
+ args: [{ selector: 'bs-multiselect', providers: [
1152
+ { provide: BsMultiselectComponent, useExisting: BsMultiselectMockComponent },
1153
+ ], template: "<p>multiselect works!</p>\n" }]
1154
+ }], propDecorators: { items: [{
1155
+ type: Input
1156
+ }], selectedItems: [{
1157
+ type: Input
1158
+ }] } });
1159
+
1160
+ class BsMultiselectTestingModule {
1161
+ }
1162
+ BsMultiselectTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1163
+ BsMultiselectTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectTestingModule, declarations: [BsMultiselectMockComponent], imports: [CommonModule], exports: [BsMultiselectMockComponent] });
1164
+ BsMultiselectTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectTestingModule, providers: [
1165
+ { provide: BsMultiselectComponent, useClass: BsMultiselectMockComponent },
1166
+ ], imports: [CommonModule] });
1167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsMultiselectTestingModule, decorators: [{
1168
+ type: NgModule,
1169
+ args: [{
1170
+ declarations: [BsMultiselectMockComponent],
1171
+ imports: [CommonModule],
1172
+ exports: [BsMultiselectMockComponent],
1173
+ providers: [
1174
+ { provide: BsMultiselectComponent, useClass: BsMultiselectMockComponent },
1175
+ ]
1176
+ }]
1177
+ }] });
1178
+
1179
+ class BsNavbarMockComponent {
1180
+ }
1181
+ BsNavbarMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1182
+ BsNavbarMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsNavbarMockComponent, selector: "bs-navbar", providers: [
1183
+ { provide: BsNavbarComponent, useExisting: BsNavbarMockComponent }
1184
+ ], ngImport: i0, template: "<p>navbar works!</p>\n", styles: [""] });
1185
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarMockComponent, decorators: [{
1186
+ type: Component,
1187
+ args: [{ selector: 'bs-navbar', providers: [
1188
+ { provide: BsNavbarComponent, useExisting: BsNavbarMockComponent }
1189
+ ], template: "<p>navbar works!</p>\n" }]
1190
+ }] });
1191
+
1192
+ class BsNavbarNavMockComponent {
1193
+ }
1194
+ BsNavbarNavMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarNavMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1195
+ BsNavbarNavMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsNavbarNavMockComponent, selector: "bs-navbar-nav", inputs: { collapse: "collapse" }, providers: [
1196
+ { provide: BsNavbarNavComponent, useExisting: BsNavbarNavMockComponent }
1197
+ ], ngImport: i0, template: "<p>navbar-nav works!</p>\n", styles: [""] });
1198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarNavMockComponent, decorators: [{
1199
+ type: Component,
1200
+ args: [{ selector: 'bs-navbar-nav', providers: [
1201
+ { provide: BsNavbarNavComponent, useExisting: BsNavbarNavMockComponent }
1202
+ ], template: "<p>navbar-nav works!</p>\n" }]
1203
+ }], propDecorators: { collapse: [{
1204
+ type: Input
1205
+ }] } });
1206
+
1207
+ class BsNavbarDropdownMockComponent {
1208
+ }
1209
+ BsNavbarDropdownMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarDropdownMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1210
+ BsNavbarDropdownMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsNavbarDropdownMockComponent, selector: "bs-navbar-dropdown", providers: [
1211
+ { provide: BsNavbarDropdownComponent, useExisting: BsNavbarDropdownMockComponent }
1212
+ ], ngImport: i0, template: "<ul>\n <ng-content></ng-content>\n</ul>", styles: [""] });
1213
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarDropdownMockComponent, decorators: [{
1214
+ type: Component,
1215
+ args: [{ selector: 'bs-navbar-dropdown', providers: [
1216
+ { provide: BsNavbarDropdownComponent, useExisting: BsNavbarDropdownMockComponent }
1217
+ ], template: "<ul>\n <ng-content></ng-content>\n</ul>" }]
1218
+ }] });
1219
+
1220
+ class BsNavbarItemMockComponent {
1221
+ }
1222
+ BsNavbarItemMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarItemMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1223
+ BsNavbarItemMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsNavbarItemMockComponent, selector: "bs-navbar-item", providers: [
1224
+ { provide: BsNavbarItemComponent, useExisting: BsNavbarItemMockComponent }
1225
+ ], queries: [{ propertyName: "dropdowns", predicate: BsNavbarDropdownComponent }], ngImport: i0, template: "<li>\n <ng-content></ng-content>\n</li>", styles: [""] });
1226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarItemMockComponent, decorators: [{
1227
+ type: Component,
1228
+ args: [{ selector: 'bs-navbar-item', providers: [
1229
+ { provide: BsNavbarItemComponent, useExisting: BsNavbarItemMockComponent }
1230
+ ], template: "<li>\n <ng-content></ng-content>\n</li>" }]
1231
+ }], propDecorators: { dropdowns: [{
1232
+ type: ContentChildren,
1233
+ args: [BsNavbarDropdownComponent]
1234
+ }] } });
1235
+
1236
+ class NavbarContentMockDirective {
1237
+ }
1238
+ NavbarContentMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: NavbarContentMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1239
+ NavbarContentMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: NavbarContentMockDirective, selector: "[navbarContent]", inputs: { navbar: ["navbarContent", "navbar"] }, ngImport: i0 });
1240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: NavbarContentMockDirective, decorators: [{
1241
+ type: Directive,
1242
+ args: [{
1243
+ selector: '[navbarContent]'
1244
+ }]
1245
+ }], propDecorators: { navbar: [{
1246
+ type: Input,
1247
+ args: ['navbarContent']
1248
+ }] } });
1249
+
1250
+ class BsNavbarBrandMockComponent {
1251
+ }
1252
+ BsNavbarBrandMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarBrandMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1253
+ BsNavbarBrandMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsNavbarBrandMockComponent, selector: "bs-navbar-brand", providers: [
1254
+ { provide: BsNavbarBrandComponent, useExisting: BsNavbarBrandMockComponent }
1255
+ ], ngImport: i0, template: "<p>navbar-brand works!</p>\n", styles: [""] });
1256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarBrandMockComponent, decorators: [{
1257
+ type: Component,
1258
+ args: [{ selector: 'bs-navbar-brand', providers: [
1259
+ { provide: BsNavbarBrandComponent, useExisting: BsNavbarBrandMockComponent }
1260
+ ], template: "<p>navbar-brand works!</p>\n" }]
1261
+ }] });
1262
+
1263
+ class BsNavbarTestingModule {
1264
+ }
1265
+ BsNavbarTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1266
+ BsNavbarTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarTestingModule, declarations: [BsNavbarMockComponent,
1267
+ BsNavbarNavMockComponent,
1268
+ BsNavbarDropdownMockComponent,
1269
+ BsNavbarItemMockComponent,
1270
+ NavbarContentMockDirective,
1271
+ BsNavbarBrandMockComponent], imports: [CommonModule], exports: [BsNavbarMockComponent,
1272
+ BsNavbarNavMockComponent,
1273
+ BsNavbarDropdownMockComponent,
1274
+ BsNavbarItemMockComponent,
1275
+ NavbarContentMockDirective,
1276
+ BsNavbarBrandMockComponent] });
1277
+ BsNavbarTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarTestingModule, imports: [CommonModule] });
1278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsNavbarTestingModule, decorators: [{
1279
+ type: NgModule,
1280
+ args: [{
1281
+ declarations: [
1282
+ BsNavbarMockComponent,
1283
+ BsNavbarNavMockComponent,
1284
+ BsNavbarDropdownMockComponent,
1285
+ BsNavbarItemMockComponent,
1286
+ NavbarContentMockDirective,
1287
+ BsNavbarBrandMockComponent,
1288
+ ],
1289
+ imports: [CommonModule],
1290
+ exports: [
1291
+ BsNavbarMockComponent,
1292
+ BsNavbarNavMockComponent,
1293
+ BsNavbarDropdownMockComponent,
1294
+ BsNavbarItemMockComponent,
1295
+ NavbarContentMockDirective,
1296
+ BsNavbarBrandMockComponent,
1297
+ ],
1298
+ }]
1299
+ }] });
1300
+
1301
+ class BsOffcanvasHostMockComponent {
1302
+ constructor() {
1303
+ this.backdropClick = new EventEmitter();
1304
+ this.state = 'closed';
1305
+ this.stateChange = new EventEmitter();
1306
+ this.position = 'top';
1307
+ this.hasBackdrop = true;
1308
+ }
1309
+ }
1310
+ BsOffcanvasHostMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasHostMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1311
+ BsOffcanvasHostMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsOffcanvasHostMockComponent, selector: "bs-offcanvas", inputs: { state: "state", position: "position", hasBackdrop: "hasBackdrop" }, outputs: { backdropClick: "backdropClick", stateChange: "stateChange" }, providers: [
1312
+ { provide: BsOffcanvasHostComponent, useExisting: BsOffcanvasHostMockComponent }
1313
+ ], ngImport: i0, template: "<p>offcanvas-host works!</p>\n", styles: [""] });
1314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasHostMockComponent, decorators: [{
1315
+ type: Component,
1316
+ args: [{ selector: 'bs-offcanvas', providers: [
1317
+ { provide: BsOffcanvasHostComponent, useExisting: BsOffcanvasHostMockComponent }
1318
+ ], template: "<p>offcanvas-host works!</p>\n" }]
1319
+ }], propDecorators: { backdropClick: [{
1320
+ type: Output
1321
+ }], state: [{
1322
+ type: Input
1323
+ }], stateChange: [{
1324
+ type: Output
1325
+ }], position: [{
1326
+ type: Input
1327
+ }], hasBackdrop: [{
1328
+ type: Input
1329
+ }] } });
1330
+
1331
+ class BsOffcanvasContentMockDirective {
1332
+ constructor(offcanvasHost, template) {
1333
+ offcanvasHost.content = template;
1334
+ }
1335
+ }
1336
+ BsOffcanvasContentMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasContentMockDirective, deps: [{ token: i1$1.BsOffcanvasHostComponent }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
1337
+ BsOffcanvasContentMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsOffcanvasContentMockDirective, selector: "[bsOffcanvasContent]", ngImport: i0 });
1338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasContentMockDirective, decorators: [{
1339
+ type: Directive,
1340
+ args: [{
1341
+ selector: '[bsOffcanvasContent]'
1342
+ }]
1343
+ }], ctorParameters: function () { return [{ type: i1$1.BsOffcanvasHostComponent }, { type: i0.TemplateRef }]; } });
1344
+
1345
+ class BsOffcanvasTestingModule {
1346
+ }
1347
+ BsOffcanvasTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1348
+ BsOffcanvasTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasTestingModule, declarations: [BsOffcanvasHostMockComponent, BsOffcanvasContentMockDirective], imports: [CommonModule], exports: [BsOffcanvasHostMockComponent, BsOffcanvasContentMockDirective] });
1349
+ BsOffcanvasTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasTestingModule, providers: [
1350
+ { provide: BsOffcanvasHostMockComponent, useClass: BsOffcanvasHostMockComponent }
1351
+ ], imports: [CommonModule] });
1352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsOffcanvasTestingModule, decorators: [{
1353
+ type: NgModule,
1354
+ args: [{
1355
+ declarations: [BsOffcanvasHostMockComponent, BsOffcanvasContentMockDirective],
1356
+ imports: [CommonModule],
1357
+ exports: [BsOffcanvasHostMockComponent, BsOffcanvasContentMockDirective],
1358
+ providers: [
1359
+ { provide: BsOffcanvasHostMockComponent, useClass: BsOffcanvasHostMockComponent }
1360
+ ]
1361
+ }]
1362
+ }] });
1363
+
1364
+ class BsPaginationMockComponent {
1365
+ constructor() {
1366
+ this.showArrows = true;
1367
+ this.numberOfBoxes = null;
1368
+ this.pageNumbers = [10];
1369
+ this.selectedPageNumber = 10;
1370
+ this.selectedPageNumberChange = new EventEmitter();
1371
+ }
1372
+ }
1373
+ BsPaginationMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1374
+ BsPaginationMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsPaginationMockComponent, selector: "bs-pagination", inputs: { showArrows: "showArrows", numberOfBoxes: "numberOfBoxes", pageNumbers: "pageNumbers", selectedPageNumber: "selectedPageNumber" }, outputs: { selectedPageNumberChange: "selectedPageNumberChange" }, providers: [
1375
+ { provide: BsPaginationComponent, useExisting: BsPaginationMockComponent },
1376
+ ], ngImport: i0, template: "<ul>\n <li *ngFor=\"let pageNumber of pageNumbers\">\n <a class=\"page-link\">{{ pageNumber }}</a>\n </li>\n</ul>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1377
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationMockComponent, decorators: [{
1378
+ type: Component,
1379
+ args: [{ selector: 'bs-pagination', providers: [
1380
+ { provide: BsPaginationComponent, useExisting: BsPaginationMockComponent },
1381
+ ], template: "<ul>\n <li *ngFor=\"let pageNumber of pageNumbers\">\n <a class=\"page-link\">{{ pageNumber }}</a>\n </li>\n</ul>\n" }]
1382
+ }], propDecorators: { showArrows: [{
1383
+ type: Input
1384
+ }], numberOfBoxes: [{
1385
+ type: Input
1386
+ }], pageNumbers: [{
1387
+ type: Input
1388
+ }], selectedPageNumber: [{
1389
+ type: Input
1390
+ }], selectedPageNumberChange: [{
1391
+ type: Output
1392
+ }] } });
1393
+
1394
+ class BsPaginationTestingModule {
1395
+ }
1396
+ BsPaginationTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1397
+ BsPaginationTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationTestingModule, declarations: [BsPaginationMockComponent], imports: [CommonModule], exports: [BsPaginationMockComponent] });
1398
+ BsPaginationTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationTestingModule, providers: [
1399
+ { provide: BsPaginationComponent, useClass: BsPaginationMockComponent },
1400
+ ], imports: [CommonModule] });
1401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPaginationTestingModule, decorators: [{
1402
+ type: NgModule,
1403
+ args: [{
1404
+ declarations: [BsPaginationMockComponent],
1405
+ imports: [CommonModule],
1406
+ exports: [BsPaginationMockComponent],
1407
+ providers: [
1408
+ { provide: BsPaginationComponent, useClass: BsPaginationMockComponent },
1409
+ ]
1410
+ }]
1411
+ }] });
1412
+
1413
+ class BsPlaceholderMockComponent {
1414
+ constructor() {
1415
+ this.isLoading = false;
1416
+ }
1417
+ }
1418
+ BsPlaceholderMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1419
+ BsPlaceholderMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsPlaceholderMockComponent, selector: "bs-placeholder", inputs: { isLoading: "isLoading" }, providers: [
1420
+ { provide: BsPlaceholderComponent, useExisting: BsPlaceholderMockComponent },
1421
+ ], ngImport: i0, template: "<ng-content></ng-content>", styles: [""] });
1422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderMockComponent, decorators: [{
1423
+ type: Component,
1424
+ args: [{ selector: 'bs-placeholder', providers: [
1425
+ { provide: BsPlaceholderComponent, useExisting: BsPlaceholderMockComponent },
1426
+ ], template: "<ng-content></ng-content>" }]
1427
+ }], propDecorators: { isLoading: [{
1428
+ type: Input
1429
+ }] } });
1430
+
1431
+ class BsPlaceholderTestingModule {
1432
+ }
1433
+ BsPlaceholderTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1434
+ BsPlaceholderTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderTestingModule, declarations: [BsPlaceholderMockComponent], imports: [CommonModule], exports: [BsPlaceholderMockComponent] });
1435
+ BsPlaceholderTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderTestingModule, providers: [
1436
+ { provide: BsPlaceholderComponent, useClass: BsPlaceholderMockComponent },
1437
+ ], imports: [CommonModule] });
1438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPlaceholderTestingModule, decorators: [{
1439
+ type: NgModule,
1440
+ args: [{
1441
+ declarations: [BsPlaceholderMockComponent],
1442
+ imports: [CommonModule],
1443
+ exports: [BsPlaceholderMockComponent],
1444
+ providers: [
1445
+ { provide: BsPlaceholderComponent, useClass: BsPlaceholderMockComponent },
1446
+ ]
1447
+ }]
1448
+ }] });
1449
+
1450
+ class BsPopoverMockDirective {
1451
+ constructor() {
1452
+ this.bsPopover = 'top';
1453
+ }
1454
+ }
1455
+ BsPopoverMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1456
+ BsPopoverMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsPopoverMockDirective, selector: "*[bsPopover]", inputs: { bsPopover: "bsPopover" }, ngImport: i0 });
1457
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverMockDirective, decorators: [{
1458
+ type: Directive,
1459
+ args: [{
1460
+ selector: '*[bsPopover]',
1461
+ }]
1462
+ }], propDecorators: { bsPopover: [{
1463
+ type: Input
1464
+ }] } });
1465
+
1466
+ class BsPopoverTestingModule {
1467
+ }
1468
+ BsPopoverTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1469
+ BsPopoverTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverTestingModule, declarations: [BsPopoverMockDirective], imports: [CommonModule], exports: [BsPopoverMockDirective] });
1470
+ BsPopoverTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverTestingModule, imports: [CommonModule] });
1471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsPopoverTestingModule, decorators: [{
1472
+ type: NgModule,
1473
+ args: [{
1474
+ declarations: [BsPopoverMockDirective],
1475
+ imports: [CommonModule],
1476
+ exports: [BsPopoverMockDirective]
1477
+ }]
1478
+ }] });
1479
+
1480
+ class BsProgressMockComponent {
1481
+ constructor() {
1482
+ this.height = 30;
1483
+ this.isIndeterminate = false;
1484
+ }
1485
+ }
1486
+ BsProgressMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1487
+ BsProgressMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsProgressMockComponent, selector: "bs-progress", inputs: { height: "height", isIndeterminate: "isIndeterminate" }, ngImport: i0, template: "<div>\n <ng-content></ng-content>\n</div>", styles: [""] });
1488
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressMockComponent, decorators: [{
1489
+ type: Component,
1490
+ args: [{ selector: 'bs-progress', template: "<div>\n <ng-content></ng-content>\n</div>" }]
1491
+ }], propDecorators: { height: [{
1492
+ type: Input
1493
+ }], isIndeterminate: [{
1494
+ type: Input
1495
+ }] } });
1496
+
1497
+ class BsProgressBarMockComponent {
1498
+ constructor() {
1499
+ this.minimum = 0;
1500
+ this.maximum = 100;
1501
+ this.value = 50;
1502
+ this.color = Color;
1503
+ this.striped = false;
1504
+ this.animated = false;
1505
+ }
1506
+ }
1507
+ BsProgressBarMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1508
+ BsProgressBarMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsProgressBarMockComponent, selector: "bs-progress-bar", inputs: { minimum: "minimum", maximum: "maximum", value: "value", color: "color", striped: "striped", animated: "animated" }, ngImport: i0, template: "<p>progress-bar works!</p>\n", styles: [""] });
1509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarMockComponent, decorators: [{
1510
+ type: Component,
1511
+ args: [{ selector: 'bs-progress-bar', template: "<p>progress-bar works!</p>\n" }]
1512
+ }], propDecorators: { minimum: [{
1513
+ type: Input
1514
+ }], maximum: [{
1515
+ type: Input
1516
+ }], value: [{
1517
+ type: Input
1518
+ }], color: [{
1519
+ type: Input
1520
+ }], striped: [{
1521
+ type: Input
1522
+ }], animated: [{
1523
+ type: Input
1524
+ }] } });
1525
+
1526
+ class BsProgressBarTestingModule {
1527
+ }
1528
+ BsProgressBarTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1529
+ BsProgressBarTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarTestingModule, declarations: [BsProgressMockComponent, BsProgressBarMockComponent], imports: [CommonModule], exports: [BsProgressMockComponent, BsProgressBarMockComponent] });
1530
+ BsProgressBarTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarTestingModule, imports: [CommonModule] });
1531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsProgressBarTestingModule, decorators: [{
1532
+ type: NgModule,
1533
+ args: [{
1534
+ declarations: [BsProgressMockComponent, BsProgressBarMockComponent],
1535
+ imports: [CommonModule],
1536
+ exports: [BsProgressMockComponent, BsProgressBarMockComponent],
1537
+ }]
1538
+ }] });
1539
+
1540
+ class BsRangeMockComponent {
1541
+ }
1542
+ BsRangeMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1543
+ BsRangeMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsRangeMockComponent, selector: "bs-range", providers: [
1544
+ { provide: BsRangeComponent, useExisting: BsRangeMockComponent },
1545
+ ], ngImport: i0, template: "<input type=\"range\">", styles: [""] });
1546
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeMockComponent, decorators: [{
1547
+ type: Component,
1548
+ args: [{ selector: 'bs-range', providers: [
1549
+ { provide: BsRangeComponent, useExisting: BsRangeMockComponent },
1550
+ ], template: "<input type=\"range\">" }]
1551
+ }] });
1552
+
1553
+ class BsRangeMockValueAccessor {
1554
+ registerOnChange(fn) {
1555
+ this.onValueChange = fn;
1556
+ }
1557
+ registerOnTouched(fn) {
1558
+ this.onTouched = fn;
1559
+ }
1560
+ writeValue(value) {
1561
+ }
1562
+ setDisabledState(isDisabled) {
1563
+ }
1564
+ }
1565
+ BsRangeMockValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeMockValueAccessor, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1566
+ BsRangeMockValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsRangeMockValueAccessor, selector: "bs-range", providers: [{
1567
+ provide: NG_VALUE_ACCESSOR,
1568
+ useExisting: forwardRef(() => BsRangeMockValueAccessor),
1569
+ multi: true,
1570
+ }], ngImport: i0 });
1571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeMockValueAccessor, decorators: [{
1572
+ type: Directive,
1573
+ args: [{
1574
+ selector: 'bs-range',
1575
+ providers: [{
1576
+ provide: NG_VALUE_ACCESSOR,
1577
+ useExisting: forwardRef(() => BsRangeMockValueAccessor),
1578
+ multi: true,
1579
+ }],
1580
+ }]
1581
+ }] });
1582
+
1583
+ class BsRangeTestingModule {
1584
+ }
1585
+ BsRangeTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1586
+ BsRangeTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsRangeTestingModule, declarations: [BsRangeMockComponent, BsRangeMockValueAccessor], imports: [CommonModule], exports: [BsRangeMockComponent, BsRangeMockValueAccessor] });
1587
+ BsRangeTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeTestingModule, providers: [
1588
+ { provide: BsRangeComponent, useExisting: BsRangeMockComponent },
1589
+ ], imports: [CommonModule] });
1590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRangeTestingModule, decorators: [{
1591
+ type: NgModule,
1592
+ args: [{
1593
+ declarations: [BsRangeMockComponent, BsRangeMockValueAccessor],
1594
+ imports: [CommonModule],
1595
+ exports: [BsRangeMockComponent, BsRangeMockValueAccessor],
1596
+ providers: [
1597
+ { provide: BsRangeComponent, useExisting: BsRangeMockComponent },
1598
+ ]
1599
+ }]
1600
+ }] });
1601
+
1602
+ class BsRatingMockComponent {
1603
+ constructor() {
1604
+ this.maximum = 5;
1605
+ this.value = 0;
1606
+ }
1607
+ }
1608
+ BsRatingMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRatingMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1609
+ BsRatingMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsRatingMockComponent, selector: "bs-rating", inputs: { maximum: "maximum", value: "value" }, ngImport: i0, template: "", styles: [""] });
1610
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRatingMockComponent, decorators: [{
1611
+ type: Component,
1612
+ args: [{ selector: 'bs-rating', template: "" }]
1613
+ }], propDecorators: { maximum: [{
1614
+ type: Input
1615
+ }], value: [{
1616
+ type: Input
1617
+ }] } });
1618
+
1619
+ class BsRatingTestingModule {
1620
+ }
1621
+ BsRatingTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRatingTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1622
+ BsRatingTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsRatingTestingModule, declarations: [BsRatingMockComponent], imports: [CommonModule], exports: [BsRatingMockComponent] });
1623
+ BsRatingTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRatingTestingModule, imports: [CommonModule] });
1624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsRatingTestingModule, decorators: [{
1625
+ type: NgModule,
1626
+ args: [{
1627
+ declarations: [BsRatingMockComponent],
1628
+ imports: [CommonModule],
1629
+ exports: [BsRatingMockComponent],
1630
+ }]
1631
+ }] });
1632
+
1633
+ var ESchedulerMode;
1634
+ (function (ESchedulerMode) {
1635
+ ESchedulerMode[ESchedulerMode["week"] = 0] = "week";
1636
+ ESchedulerMode[ESchedulerMode["timeline"] = 1] = "timeline";
1637
+ })(ESchedulerMode || (ESchedulerMode = {}));
1638
+
1639
+ class BsSchedulerMockComponent {
1640
+ constructor() {
1641
+ this.weekOptions = { unitHeight: 40 };
1642
+ this.timelineOptions = { unitWidth: 60 };
1643
+ this.mode = ESchedulerMode.week;
1644
+ this.resources = [];
1645
+ }
1646
+ }
1647
+ BsSchedulerMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1648
+ BsSchedulerMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsSchedulerMockComponent, selector: "bs-scheduler", inputs: { weekOptions: "weekOptions", timelineOptions: "timelineOptions", mode: "mode", resources: "resources" }, providers: [
1649
+ { provide: BsSchedulerComponent, useExisting: BsSchedulerMockComponent }
1650
+ ], ngImport: i0, template: "<p>scheduler works!</p>\n", styles: [""] });
1651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerMockComponent, decorators: [{
1652
+ type: Component,
1653
+ args: [{ selector: 'bs-scheduler', providers: [
1654
+ { provide: BsSchedulerComponent, useExisting: BsSchedulerMockComponent }
1655
+ ], template: "<p>scheduler works!</p>\n" }]
1656
+ }], propDecorators: { weekOptions: [{
1657
+ type: Input
1658
+ }], timelineOptions: [{
1659
+ type: Input
1660
+ }], mode: [{
1661
+ type: Input
1662
+ }], resources: [{
1663
+ type: Input
1664
+ }] } });
1665
+
1666
+ class BsSchedulerTestingModule {
1667
+ }
1668
+ BsSchedulerTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1669
+ BsSchedulerTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerTestingModule, declarations: [BsSchedulerMockComponent], imports: [CommonModule], exports: [BsSchedulerMockComponent] });
1670
+ BsSchedulerTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerTestingModule, imports: [CommonModule] });
1671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSchedulerTestingModule, decorators: [{
1672
+ type: NgModule,
1673
+ args: [{
1674
+ declarations: [BsSchedulerMockComponent],
1675
+ imports: [CommonModule],
1676
+ exports: [BsSchedulerMockComponent],
1677
+ }]
1678
+ }] });
1679
+
1680
+ class BsScrollspyMockDirective {
1681
+ constructor(element) {
1682
+ this.element = element;
1683
+ }
1684
+ }
1685
+ BsScrollspyMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyMockDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
1686
+ BsScrollspyMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsScrollspyMockDirective, selector: "[bsScrollspy]", providers: [
1687
+ { provide: BsScrollspyDirective, useExisting: BsScrollspyMockDirective },
1688
+ ], ngImport: i0 });
1689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyMockDirective, decorators: [{
1690
+ type: Directive,
1691
+ args: [{
1692
+ selector: '[bsScrollspy]',
1693
+ providers: [
1694
+ { provide: BsScrollspyDirective, useExisting: BsScrollspyMockDirective },
1695
+ ]
1696
+ }]
1697
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
1698
+
1699
+ class BsScrollspyMockComponent {
1700
+ constructor() {
1701
+ this.animation = 'slide';
1702
+ }
1703
+ }
1704
+ BsScrollspyMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1705
+ BsScrollspyMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsScrollspyMockComponent, selector: "bs-scrollspy", inputs: { animation: "animation" }, providers: [
1706
+ { provide: BsScrollspyComponent, useExisting: BsScrollspyMockComponent },
1707
+ ], queries: [{ propertyName: "directives", predicate: BsScrollspyMockDirective, descendants: true }], ngImport: i0, template: "<ul>\n <li *ngFor=\"let dir of directives\">\n {{ dir.element.nativeElement.textContent }}\n </li>\n</ul>\n<div>\n <ng-content></ng-content>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyMockComponent, decorators: [{
1709
+ type: Component,
1710
+ args: [{ selector: 'bs-scrollspy', providers: [
1711
+ { provide: BsScrollspyComponent, useExisting: BsScrollspyMockComponent },
1712
+ ], template: "<ul>\n <li *ngFor=\"let dir of directives\">\n {{ dir.element.nativeElement.textContent }}\n </li>\n</ul>\n<div>\n <ng-content></ng-content>\n</div>" }]
1713
+ }], propDecorators: { animation: [{
1714
+ type: Input
1715
+ }], directives: [{
1716
+ type: ContentChildren,
1717
+ args: [BsScrollspyMockDirective, { descendants: true }]
1718
+ }] } });
1719
+
1720
+ class BsScrollspyTestingModule {
1721
+ }
1722
+ BsScrollspyTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1723
+ BsScrollspyTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyTestingModule, declarations: [BsScrollspyMockDirective, BsScrollspyMockComponent], imports: [CommonModule], exports: [BsScrollspyMockDirective, BsScrollspyMockComponent] });
1724
+ BsScrollspyTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyTestingModule, providers: [
1725
+ { provide: BsScrollspyDirective, useClass: BsScrollspyMockDirective },
1726
+ { provide: BsScrollspyComponent, useClass: BsScrollspyMockComponent },
1727
+ ], imports: [CommonModule] });
1728
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsScrollspyTestingModule, decorators: [{
1729
+ type: NgModule,
1730
+ args: [{
1731
+ declarations: [BsScrollspyMockDirective, BsScrollspyMockComponent],
1732
+ imports: [CommonModule],
1733
+ exports: [BsScrollspyMockDirective, BsScrollspyMockComponent],
1734
+ providers: [
1735
+ { provide: BsScrollspyDirective, useClass: BsScrollspyMockDirective },
1736
+ { provide: BsScrollspyComponent, useClass: BsScrollspyMockComponent },
1737
+ ]
1738
+ }]
1739
+ }] });
1740
+
1741
+ class BsSelectMockComponent {
1742
+ constructor() {
1743
+ this.identifier = 0;
1744
+ }
1745
+ }
1746
+ BsSelectMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1747
+ BsSelectMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsSelectMockComponent, selector: "bs-select", inputs: { identifier: "identifier" }, providers: [
1748
+ { provide: BsSelectComponent, useExisting: BsSelectMockComponent },
1749
+ ], ngImport: i0, template: "<select>\n <ng-content></ng-content>\n</select> ", styles: [""] });
1750
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectMockComponent, decorators: [{
1751
+ type: Component,
1752
+ args: [{ selector: 'bs-select', providers: [
1753
+ { provide: BsSelectComponent, useExisting: BsSelectMockComponent },
1754
+ ], template: "<select>\n <ng-content></ng-content>\n</select> " }]
1755
+ }], propDecorators: { identifier: [{
1756
+ type: Input
1757
+ }] } });
1758
+
1759
+ class BsSelectMockValueAccessor {
1760
+ registerOnChange(fn) { }
1761
+ registerOnTouched(fn) { }
1762
+ writeValue(value) { }
1763
+ setDisabledState(isDisabled) { }
1764
+ }
1765
+ BsSelectMockValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectMockValueAccessor, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1766
+ BsSelectMockValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsSelectMockValueAccessor, selector: "bs-select", providers: [{
1767
+ provide: BsSelectValueAccessor,
1768
+ useExisting: BsSelectMockValueAccessor
1769
+ }, {
1770
+ provide: NG_VALUE_ACCESSOR,
1771
+ useExisting: forwardRef(() => BsSelectMockValueAccessor),
1772
+ multi: true,
1773
+ }], ngImport: i0 });
1774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectMockValueAccessor, decorators: [{
1775
+ type: Directive,
1776
+ args: [{
1777
+ selector: 'bs-select',
1778
+ providers: [{
1779
+ provide: BsSelectValueAccessor,
1780
+ useExisting: BsSelectMockValueAccessor
1781
+ }, {
1782
+ provide: NG_VALUE_ACCESSOR,
1783
+ useExisting: forwardRef(() => BsSelectMockValueAccessor),
1784
+ multi: true,
1785
+ }]
1786
+ }]
1787
+ }] });
1788
+
1789
+ class BsSelectOptionMock {
1790
+ constructor() {
1791
+ this.ngValue = null;
1792
+ this.value = null;
1793
+ }
1794
+ setElementValue(value) { }
1795
+ }
1796
+ BsSelectOptionMock.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectOptionMock, deps: [], target: i0.ɵɵFactoryTarget.Directive });
1797
+ BsSelectOptionMock.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsSelectOptionMock, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
1798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectOptionMock, decorators: [{
1799
+ type: Directive,
1800
+ args: [{ selector: 'option' }]
1801
+ }], propDecorators: { ngValue: [{
1802
+ type: Input,
1803
+ args: ['ngValue']
1804
+ }], value: [{
1805
+ type: Input,
1806
+ args: ['value']
1807
+ }] } });
1808
+
1809
+ class BsSelectTestingModule {
1810
+ }
1811
+ BsSelectTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1812
+ BsSelectTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsSelectTestingModule, declarations: [BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock], imports: [CommonModule], exports: [BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock] });
1813
+ BsSelectTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectTestingModule, imports: [CommonModule] });
1814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelectTestingModule, decorators: [{
1815
+ type: NgModule,
1816
+ args: [{
1817
+ declarations: [BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock],
1818
+ imports: [CommonModule],
1819
+ exports: [BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock],
1820
+ }]
1821
+ }] });
1822
+
1823
+ class BsSelect2Component {
1824
+ constructor() {
1825
+ this.selectedItems = [];
1826
+ this.suggestions = [];
1827
+ this.provideSuggestions = new EventEmitter();
1828
+ }
1829
+ }
1830
+ BsSelect2Component.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2Component, deps: [], target: i0.ɵɵFactoryTarget.Component });
1831
+ BsSelect2Component.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsSelect2Component, selector: "bs-select2", inputs: { selectedItems: "selectedItems", suggestions: "suggestions" }, outputs: { provideSuggestions: "provideSuggestions" }, ngImport: i0, template: "<p>select2 works!</p>\n", styles: [""] });
1832
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2Component, decorators: [{
1833
+ type: Component,
1834
+ args: [{ selector: 'bs-select2', template: "<p>select2 works!</p>\n" }]
1835
+ }], propDecorators: { selectedItems: [{
1836
+ type: Input
1837
+ }], suggestions: [{
1838
+ type: Input
1839
+ }], provideSuggestions: [{
1840
+ type: Output
1841
+ }] } });
1842
+
1843
+ class BsSelect2TestingModule {
1844
+ }
1845
+ BsSelect2TestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2TestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1846
+ BsSelect2TestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2TestingModule, declarations: [BsSelect2Component], imports: [CommonModule], exports: [BsSelect2Component] });
1847
+ BsSelect2TestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2TestingModule, imports: [CommonModule] });
1848
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSelect2TestingModule, decorators: [{
1849
+ type: NgModule,
1850
+ args: [{
1851
+ declarations: [BsSelect2Component],
1852
+ imports: [CommonModule],
1853
+ exports: [BsSelect2Component],
1854
+ }]
1855
+ }] });
1856
+
1857
+ class BsSnackbarMockService {
1858
+ show(template) {
1859
+ return null;
1860
+ }
1861
+ hide(snackbar) {
1862
+ }
1863
+ }
1864
+ BsSnackbarMockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarMockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1865
+ BsSnackbarMockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarMockService });
1866
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarMockService, decorators: [{
1867
+ type: Injectable
1868
+ }] });
1869
+
1870
+ class BsSnackbarTestingModule {
1871
+ }
1872
+ BsSnackbarTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1873
+ BsSnackbarTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarTestingModule, imports: [CommonModule] });
1874
+ BsSnackbarTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarTestingModule, providers: [
1875
+ { provide: BsSnackbarService, useClass: BsSnackbarMockService }
1876
+ ], imports: [CommonModule] });
1877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSnackbarTestingModule, decorators: [{
1878
+ type: NgModule,
1879
+ args: [{
1880
+ declarations: [],
1881
+ imports: [
1882
+ CommonModule
1883
+ ],
1884
+ providers: [
1885
+ { provide: BsSnackbarService, useClass: BsSnackbarMockService }
1886
+ ]
1887
+ }]
1888
+ }] });
1889
+
1890
+ class BsSpinnerMockComponent {
1891
+ constructor() {
1892
+ this.type = 'border';
1893
+ this.color = Color.primary;
1894
+ }
1895
+ }
1896
+ BsSpinnerMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1897
+ BsSpinnerMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsSpinnerMockComponent, selector: "bs-spinner", inputs: { type: "type", color: "color" }, ngImport: i0, template: "<p>spinner works!</p>\n", styles: [""] });
1898
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerMockComponent, decorators: [{
1899
+ type: Component,
1900
+ args: [{ selector: 'bs-spinner', template: "<p>spinner works!</p>\n" }]
1901
+ }], propDecorators: { type: [{
1902
+ type: Input
1903
+ }], color: [{
1904
+ type: Input
1905
+ }] } });
1906
+
1907
+ class BsSpinnerTestingModule {
1908
+ }
1909
+ BsSpinnerTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1910
+ BsSpinnerTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerTestingModule, declarations: [BsSpinnerMockComponent], imports: [CommonModule], exports: [BsSpinnerMockComponent] });
1911
+ BsSpinnerTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerTestingModule, imports: [CommonModule] });
1912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsSpinnerTestingModule, decorators: [{
1913
+ type: NgModule,
1914
+ args: [{
1915
+ declarations: [BsSpinnerMockComponent],
1916
+ imports: [CommonModule],
1917
+ exports: [BsSpinnerMockComponent],
1918
+ }]
1919
+ }] });
1920
+
1921
+ class BsTabControlMockComponent {
1922
+ constructor() {
1923
+ this.border = true;
1924
+ }
1925
+ }
1926
+ BsTabControlMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1927
+ BsTabControlMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsTabControlMockComponent, selector: "bs-tab-control", inputs: { border: "border" }, ngImport: i0, template: "<p>tab-control works!</p>\n", styles: [""] });
1928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlMockComponent, decorators: [{
1929
+ type: Component,
1930
+ args: [{ selector: 'bs-tab-control', template: "<p>tab-control works!</p>\n" }]
1931
+ }], propDecorators: { border: [{
1932
+ type: Input
1933
+ }] } });
1934
+
1935
+ class BsTabPageMockComponent {
1936
+ constructor() {
1937
+ this.disabled = false;
1938
+ }
1939
+ }
1940
+ BsTabPageMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabPageMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1941
+ BsTabPageMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsTabPageMockComponent, selector: "bs-tab-page", inputs: { disabled: "disabled" }, ngImport: i0, template: "<p>tab-page works!</p>\n", styles: [""] });
1942
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabPageMockComponent, decorators: [{
1943
+ type: Component,
1944
+ args: [{ selector: 'bs-tab-page', template: "<p>tab-page works!</p>\n" }]
1945
+ }], propDecorators: { disabled: [{
1946
+ type: Input
1947
+ }] } });
1948
+
1949
+ class BsTabControlTestingModule {
1950
+ }
1951
+ BsTabControlTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1952
+ BsTabControlTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlTestingModule, declarations: [BsTabControlMockComponent, BsTabPageMockComponent], imports: [CommonModule], exports: [BsTabControlMockComponent, BsTabPageMockComponent] });
1953
+ BsTabControlTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlTestingModule, imports: [CommonModule] });
1954
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTabControlTestingModule, decorators: [{
1955
+ type: NgModule,
1956
+ args: [{
1957
+ declarations: [BsTabControlMockComponent, BsTabPageMockComponent],
1958
+ imports: [CommonModule],
1959
+ exports: [BsTabControlMockComponent, BsTabPageMockComponent],
1960
+ }]
1961
+ }] });
1962
+
1963
+ class BsTableMockComponent {
1964
+ constructor() {
1965
+ this.isResponsive = false;
1966
+ this.striped = false;
1967
+ this.hover = false;
1968
+ }
1969
+ }
1970
+ BsTableMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTableMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1971
+ BsTableMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsTableMockComponent, selector: "bs-table", inputs: { isResponsive: "isResponsive", striped: "striped", hover: "hover" }, providers: [
1972
+ { provide: BsTableComponent, useExisting: BsTableMockComponent },
1973
+ ], ngImport: i0, template: "<div>\n <table>\n <ng-content></ng-content>\n </table>\n</div>", styles: [""] });
1974
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTableMockComponent, decorators: [{
1975
+ type: Component,
1976
+ args: [{ selector: 'bs-table', providers: [
1977
+ { provide: BsTableComponent, useExisting: BsTableMockComponent },
1978
+ ], template: "<div>\n <table>\n <ng-content></ng-content>\n </table>\n</div>" }]
1979
+ }], propDecorators: { isResponsive: [{
1980
+ type: Input
1981
+ }], striped: [{
1982
+ type: Input
1983
+ }], hover: [{
1984
+ type: Input
1985
+ }] } });
1986
+
1987
+ class BsTableTestingModule {
1988
+ }
1989
+ BsTableTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTableTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1990
+ BsTableTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsTableTestingModule, declarations: [BsTableMockComponent], imports: [CommonModule], exports: [BsTableMockComponent] });
1991
+ BsTableTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTableTestingModule, providers: [
1992
+ { provide: BsTableComponent, useExisting: BsTableMockComponent },
1993
+ ], imports: [CommonModule] });
1994
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTableTestingModule, decorators: [{
1995
+ type: NgModule,
1996
+ args: [{
1997
+ declarations: [BsTableMockComponent],
1998
+ imports: [CommonModule],
1999
+ exports: [BsTableMockComponent],
2000
+ providers: [
2001
+ { provide: BsTableComponent, useExisting: BsTableMockComponent },
2002
+ ]
2003
+ }]
2004
+ }] });
2005
+
2006
+ class BsTimepickerMockComponent {
2007
+ constructor() {
2008
+ this.selectedTime = new Date();
2009
+ }
2010
+ }
2011
+ BsTimepickerMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2012
+ BsTimepickerMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsTimepickerMockComponent, selector: "bs-timepicker", inputs: { selectedTime: "selectedTime" }, ngImport: i0, template: "<p>timepicker works!</p>\n", styles: [""] });
2013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerMockComponent, decorators: [{
2014
+ type: Component,
2015
+ args: [{ selector: 'bs-timepicker', template: "<p>timepicker works!</p>\n" }]
2016
+ }], propDecorators: { selectedTime: [{
2017
+ type: Input
2018
+ }] } });
2019
+
2020
+ class BsTimepickerTestingModule {
2021
+ }
2022
+ BsTimepickerTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2023
+ BsTimepickerTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerTestingModule, declarations: [BsTimepickerMockComponent], imports: [CommonModule], exports: [BsTimepickerMockComponent] });
2024
+ BsTimepickerTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerTestingModule, imports: [CommonModule] });
2025
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTimepickerTestingModule, decorators: [{
2026
+ type: NgModule,
2027
+ args: [{
2028
+ declarations: [BsTimepickerMockComponent],
2029
+ imports: [CommonModule],
2030
+ exports: [BsTimepickerMockComponent],
2031
+ }]
2032
+ }] });
2033
+
2034
+ class BsAddPropertiesMockPipe {
2035
+ transform(value, toAdd) {
2036
+ return value;
2037
+ }
2038
+ }
2039
+ BsAddPropertiesMockPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAddPropertiesMockPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
2040
+ BsAddPropertiesMockPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsAddPropertiesMockPipe, name: "bsAddProperties" });
2041
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsAddPropertiesMockPipe, decorators: [{
2042
+ type: Pipe,
2043
+ args: [{
2044
+ name: 'bsAddProperties'
2045
+ }]
2046
+ }] });
2047
+
2048
+ class BsToastContainerMockComponent {
2049
+ constructor(toastService) {
2050
+ this.toastService = toastService;
2051
+ }
2052
+ }
2053
+ BsToastContainerMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastContainerMockComponent, deps: [{ token: i1$2.BsToastService }], target: i0.ɵɵFactoryTarget.Component });
2054
+ BsToastContainerMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsToastContainerMockComponent, selector: "bs-toast-container", providers: [
2055
+ { provide: BsToastContainerComponent, useExisting: BsToastContainerMockComponent }
2056
+ ], ngImport: i0, template: "<ng-container *ngFor=\"let toast of (toastService.toasts$ | async); let i = index\">\n <ng-container [ngTemplateOutlet]=\"toast.template\" [ngTemplateOutletContext]=\"toast.context | bsAddProperties: {toastIndex: i}\"></ng-container>\n</ng-container>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: BsAddPropertiesMockPipe, name: "bsAddProperties" }] });
2057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastContainerMockComponent, decorators: [{
2058
+ type: Component,
2059
+ args: [{ selector: 'bs-toast-container', providers: [
2060
+ { provide: BsToastContainerComponent, useExisting: BsToastContainerMockComponent }
2061
+ ], template: "<ng-container *ngFor=\"let toast of (toastService.toasts$ | async); let i = index\">\n <ng-container [ngTemplateOutlet]=\"toast.template\" [ngTemplateOutletContext]=\"toast.context | bsAddProperties: {toastIndex: i}\"></ng-container>\n</ng-container>" }]
2062
+ }], ctorParameters: function () { return [{ type: i1$2.BsToastService }]; } });
2063
+
2064
+ class BsToastHeaderMockComponent {
2065
+ }
2066
+ BsToastHeaderMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastHeaderMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2067
+ BsToastHeaderMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsToastHeaderMockComponent, selector: "bs-toast-header", providers: [
2068
+ { provide: BsToastHeaderComponent, useExisting: BsToastHeaderMockComponent },
2069
+ ], ngImport: i0, template: "<ng-content></ng-content>", styles: [""] });
2070
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastHeaderMockComponent, decorators: [{
2071
+ type: Component,
2072
+ args: [{ selector: 'bs-toast-header', providers: [
2073
+ { provide: BsToastHeaderComponent, useExisting: BsToastHeaderMockComponent },
2074
+ ], template: "<ng-content></ng-content>" }]
2075
+ }] });
2076
+
2077
+ class BsToastBodyMockComponent {
2078
+ }
2079
+ BsToastBodyMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastBodyMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2080
+ BsToastBodyMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsToastBodyMockComponent, selector: "bs-toast-body", providers: [
2081
+ { provide: BsToastBodyComponent, useExisting: BsToastBodyMockComponent },
2082
+ ], ngImport: i0, template: "<ng-content></ng-content>", styles: [""] });
2083
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastBodyMockComponent, decorators: [{
2084
+ type: Component,
2085
+ args: [{ selector: 'bs-toast-body', providers: [
2086
+ { provide: BsToastBodyComponent, useExisting: BsToastBodyMockComponent },
2087
+ ], template: "<ng-content></ng-content>" }]
2088
+ }] });
2089
+
2090
+ const PORTAL_FACTORY = new InjectionToken('ToastPortalFactory');
2091
+
2092
+ class BsToastMockService {
2093
+ constructor(overlayService, rootInjector, portalFactory) {
2094
+ this.overlayService = overlayService;
2095
+ this.rootInjector = rootInjector;
2096
+ this.portalFactory = portalFactory;
2097
+ }
2098
+ pushToast(toast) {
2099
+ const portal = this.portalFactory(this.rootInjector);
2100
+ const overlayRef = this.overlayService.create({});
2101
+ const component = overlayRef.attach(portal);
2102
+ }
2103
+ }
2104
+ BsToastMockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastMockService, deps: [{ token: i1$3.Overlay }, { token: i0.Injector }, { token: PORTAL_FACTORY }], target: i0.ɵɵFactoryTarget.Injectable });
2105
+ BsToastMockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastMockService });
2106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastMockService, decorators: [{
2107
+ type: Injectable
2108
+ }], ctorParameters: function () {
2109
+ return [{ type: i1$3.Overlay }, { type: i0.Injector }, { type: undefined, decorators: [{
2110
+ type: Inject,
2111
+ args: [PORTAL_FACTORY]
2112
+ }] }];
2113
+ } });
2114
+
2115
+ class BsToastTestingModule {
2116
+ }
2117
+ BsToastTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2118
+ BsToastTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsToastTestingModule, declarations: [BsToastContainerMockComponent,
2119
+ BsToastBodyMockComponent,
2120
+ BsToastHeaderMockComponent,
2121
+ BsToastBodyMockComponent,
2122
+ BsAddPropertiesMockPipe], imports: [CommonModule], exports: [BsToastContainerMockComponent,
2123
+ BsToastBodyMockComponent,
2124
+ BsToastHeaderMockComponent,
2125
+ BsToastBodyMockComponent,
2126
+ BsAddPropertiesMockPipe] });
2127
+ BsToastTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastTestingModule, providers: [
2128
+ { provide: BsToastService, useClass: BsToastMockService },
2129
+ { provide: BsAddPropertiesPipe, useClass: BsAddPropertiesMockPipe },
2130
+ {
2131
+ provide: PORTAL_FACTORY,
2132
+ useValue: (injector) => {
2133
+ return new ComponentPortal(BsToastContainerMockComponent, null, injector);
2134
+ }
2135
+ }
2136
+ ], imports: [CommonModule] });
2137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastTestingModule, decorators: [{
2138
+ type: NgModule,
2139
+ args: [{
2140
+ declarations: [
2141
+ BsToastContainerMockComponent,
2142
+ BsToastBodyMockComponent,
2143
+ BsToastHeaderMockComponent,
2144
+ BsToastBodyMockComponent,
2145
+ BsAddPropertiesMockPipe,
2146
+ ],
2147
+ imports: [CommonModule],
2148
+ exports: [
2149
+ BsToastContainerMockComponent,
2150
+ BsToastBodyMockComponent,
2151
+ BsToastHeaderMockComponent,
2152
+ BsToastBodyMockComponent,
2153
+ BsAddPropertiesMockPipe,
2154
+ ],
2155
+ providers: [
2156
+ { provide: BsToastService, useClass: BsToastMockService },
2157
+ { provide: BsAddPropertiesPipe, useClass: BsAddPropertiesMockPipe },
2158
+ {
2159
+ provide: PORTAL_FACTORY,
2160
+ useValue: (injector) => {
2161
+ return new ComponentPortal(BsToastContainerMockComponent, null, injector);
2162
+ }
2163
+ }
2164
+ ]
2165
+ }]
2166
+ }] });
2167
+
2168
+ class BsToastMockComponent {
2169
+ constructor() {
2170
+ this.isVisible = false;
2171
+ }
2172
+ }
2173
+ BsToastMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2174
+ BsToastMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsToastMockComponent, selector: "bs-toast", inputs: { isVisible: "isVisible" }, providers: [
2175
+ { provide: BsToastComponent, useExisting: BsToastMockComponent },
2176
+ ], ngImport: i0, template: "<div [class.show]=\"isVisible\">\n <ng-content></ng-content>\n</div>", styles: [""] });
2177
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToastMockComponent, decorators: [{
2178
+ type: Component,
2179
+ args: [{ selector: 'bs-toast', providers: [
2180
+ { provide: BsToastComponent, useExisting: BsToastMockComponent },
2181
+ ], template: "<div [class.show]=\"isVisible\">\n <ng-content></ng-content>\n</div>" }]
2182
+ }], propDecorators: { isVisible: [{
2183
+ type: Input
2184
+ }] } });
2185
+
2186
+ class BsToggleButtonGroupMockDirective {
2187
+ }
2188
+ BsToggleButtonGroupMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonGroupMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2189
+ BsToggleButtonGroupMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsToggleButtonGroupMockDirective, selector: "[bsToggleButtonGroup]", providers: [
2190
+ { provide: BsToggleButtonGroupDirective, useExisting: BsToggleButtonGroupMockDirective }
2191
+ ], queries: [{ propertyName: "toggleButtons", predicate: BsToggleButtonComponent, descendants: true }], exportAs: ["bsToggleButtonGroup"], ngImport: i0 });
2192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonGroupMockDirective, decorators: [{
2193
+ type: Directive,
2194
+ args: [{
2195
+ selector: '[bsToggleButtonGroup]',
2196
+ providers: [
2197
+ { provide: BsToggleButtonGroupDirective, useExisting: BsToggleButtonGroupMockDirective }
2198
+ ],
2199
+ exportAs: 'bsToggleButtonGroup'
2200
+ }]
2201
+ }], propDecorators: { toggleButtons: [{
2202
+ type: ContentChildren,
2203
+ args: [BsToggleButtonComponent, { descendants: true }]
2204
+ }] } });
2205
+
2206
+ class BsToggleButtonMockValueAccessor {
2207
+ registerOnChange(fn) {
2208
+ this.onValueChange = fn;
2209
+ }
2210
+ registerOnTouched(fn) {
2211
+ this.onTouched = fn;
2212
+ }
2213
+ writeValue(value) {
2214
+ }
2215
+ setDisabledState(isDisabled) {
2216
+ }
2217
+ }
2218
+ BsToggleButtonMockValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonMockValueAccessor, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2219
+ BsToggleButtonMockValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsToggleButtonMockValueAccessor, selector: "bs-toggle-button", providers: [{
2220
+ provide: NG_VALUE_ACCESSOR,
2221
+ useExisting: forwardRef(() => BsToggleButtonMockValueAccessor),
2222
+ multi: true,
2223
+ }], ngImport: i0 });
2224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonMockValueAccessor, decorators: [{
2225
+ type: Directive,
2226
+ args: [{
2227
+ selector: 'bs-toggle-button',
2228
+ providers: [{
2229
+ provide: NG_VALUE_ACCESSOR,
2230
+ useExisting: forwardRef(() => BsToggleButtonMockValueAccessor),
2231
+ multi: true,
2232
+ }],
2233
+ }]
2234
+ }] });
2235
+
2236
+ class BsToggleButtonMockComponent {
2237
+ constructor() {
2238
+ this.isToggledChange = new EventEmitter();
2239
+ this.isToggled = false;
2240
+ this.round = true;
2241
+ this.disabled = false;
2242
+ this.group = null;
2243
+ this.type = 'checkbox';
2244
+ this.value = null;
2245
+ this.name = null;
2246
+ }
2247
+ }
2248
+ BsToggleButtonMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2249
+ BsToggleButtonMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsToggleButtonMockComponent, selector: "bs-toggle-button", inputs: { isToggled: "isToggled", round: "round", disabled: "disabled", group: "group", type: "type", value: "value", name: "name" }, outputs: { isToggledChange: "isToggledChange" }, providers: [
2250
+ { provide: BsToggleButtonComponent, useExisting: BsToggleButtonMockComponent }
2251
+ ], ngImport: i0, template: "<p>toggle-button works!</p>\n", styles: [""] });
2252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonMockComponent, decorators: [{
2253
+ type: Component,
2254
+ args: [{ selector: 'bs-toggle-button', providers: [
2255
+ { provide: BsToggleButtonComponent, useExisting: BsToggleButtonMockComponent }
2256
+ ], template: "<p>toggle-button works!</p>\n" }]
2257
+ }], propDecorators: { isToggledChange: [{
2258
+ type: Output
2259
+ }], isToggled: [{
2260
+ type: Input
2261
+ }], round: [{
2262
+ type: Input
2263
+ }], disabled: [{
2264
+ type: Input
2265
+ }], group: [{
2266
+ type: Input
2267
+ }], type: [{
2268
+ type: Input
2269
+ }], value: [{
2270
+ type: Input
2271
+ }], name: [{
2272
+ type: Input
2273
+ }] } });
2274
+
2275
+ class BsToggleButtonTestingModule {
2276
+ }
2277
+ BsToggleButtonTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2278
+ BsToggleButtonTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonTestingModule, declarations: [BsToggleButtonMockComponent, BsToggleButtonGroupMockDirective, BsToggleButtonMockValueAccessor], imports: [CommonModule], exports: [BsToggleButtonMockComponent, BsToggleButtonGroupMockDirective, BsToggleButtonMockValueAccessor] });
2279
+ BsToggleButtonTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonTestingModule, imports: [CommonModule] });
2280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsToggleButtonTestingModule, decorators: [{
2281
+ type: NgModule,
2282
+ args: [{
2283
+ declarations: [BsToggleButtonMockComponent, BsToggleButtonGroupMockDirective, BsToggleButtonMockValueAccessor],
2284
+ imports: [CommonModule],
2285
+ exports: [BsToggleButtonMockComponent, BsToggleButtonGroupMockDirective, BsToggleButtonMockValueAccessor],
2286
+ }]
2287
+ }] });
2288
+
2289
+ class BsTooltipMockDirective {
2290
+ constructor() {
2291
+ this.bsTooltip = 'bottom';
2292
+ }
2293
+ }
2294
+ BsTooltipMockDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipMockDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
2295
+ BsTooltipMockDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.3", type: BsTooltipMockDirective, selector: "*[bsTooltip]", inputs: { bsTooltip: "bsTooltip" }, ngImport: i0 });
2296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipMockDirective, decorators: [{
2297
+ type: Directive,
2298
+ args: [{
2299
+ selector: '*[bsTooltip]'
2300
+ }]
2301
+ }], propDecorators: { bsTooltip: [{
2302
+ type: Input
2303
+ }] } });
2304
+
2305
+ class BsTooltipTestingModule {
2306
+ }
2307
+ BsTooltipTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2308
+ BsTooltipTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipTestingModule, declarations: [BsTooltipMockDirective], imports: [CommonModule], exports: [BsTooltipMockDirective] });
2309
+ BsTooltipTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipTestingModule, imports: [CommonModule] });
2310
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTooltipTestingModule, decorators: [{
2311
+ type: NgModule,
2312
+ args: [{
2313
+ declarations: [
2314
+ BsTooltipMockDirective
2315
+ ],
2316
+ imports: [
2317
+ CommonModule
2318
+ ],
2319
+ exports: [
2320
+ BsTooltipMockDirective
2321
+ ]
2322
+ }]
2323
+ }] });
2324
+
2325
+ class BsTypeaheadMockComponent {
2326
+ constructor() {
2327
+ this.searchterm = '';
2328
+ this.searchtermChange = new EventEmitter();
2329
+ this.provideSuggestions = new EventEmitter();
2330
+ this.suggestions = [];
2331
+ this.submitted = new EventEmitter();
2332
+ this.suggestionSelected = new EventEmitter();
2333
+ }
2334
+ }
2335
+ BsTypeaheadMockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadMockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
2336
+ BsTypeaheadMockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.3", type: BsTypeaheadMockComponent, selector: "bs-typeahead", inputs: { searchterm: "searchterm", suggestions: "suggestions" }, outputs: { searchtermChange: "searchtermChange", provideSuggestions: "provideSuggestions", submitted: "submitted", suggestionSelected: "suggestionSelected" }, ngImport: i0, template: "<div>\n <input type=\"text\">\n</div>", styles: [""] });
2337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadMockComponent, decorators: [{
2338
+ type: Component,
2339
+ args: [{ selector: 'bs-typeahead', template: "<div>\n <input type=\"text\">\n</div>" }]
2340
+ }], propDecorators: { searchterm: [{
2341
+ type: Input
2342
+ }], searchtermChange: [{
2343
+ type: Output
2344
+ }], provideSuggestions: [{
2345
+ type: Output
2346
+ }], suggestions: [{
2347
+ type: Input
2348
+ }], submitted: [{
2349
+ type: Output
2350
+ }], suggestionSelected: [{
2351
+ type: Output
2352
+ }] } });
2353
+
2354
+ class BsTypeaheadTestingModule {
2355
+ }
2356
+ BsTypeaheadTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2357
+ BsTypeaheadTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadTestingModule, declarations: [BsTypeaheadMockComponent], imports: [CommonModule], exports: [BsTypeaheadMockComponent] });
2358
+ BsTypeaheadTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadTestingModule, imports: [CommonModule] });
2359
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: BsTypeaheadTestingModule, decorators: [{
2360
+ type: NgModule,
2361
+ args: [{
2362
+ declarations: [BsTypeaheadMockComponent],
2363
+ imports: [CommonModule],
2364
+ exports: [BsTypeaheadMockComponent],
2365
+ }]
2366
+ }] });
2367
+
2368
+ class UcFirstMockPipe {
2369
+ transform(value, ...args) {
2370
+ return value[0].toUpperCase() + value.slice(1);
2371
+ }
2372
+ }
2373
+ UcFirstMockPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: UcFirstMockPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
2374
+ UcFirstMockPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: UcFirstMockPipe, name: "ucFirst" });
2375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: UcFirstMockPipe, decorators: [{
2376
+ type: Pipe,
2377
+ args: [{
2378
+ name: 'ucFirst'
2379
+ }]
2380
+ }] });
2381
+
2382
+ class UcFirstTestingModule {
2383
+ }
2384
+ UcFirstTestingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: UcFirstTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2385
+ UcFirstTestingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.3", ngImport: i0, type: UcFirstTestingModule, declarations: [UcFirstMockPipe], imports: [CommonModule], exports: [UcFirstMockPipe] });
2386
+ UcFirstTestingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: UcFirstTestingModule, providers: [
2387
+ { provide: UcFirstPipe, useClass: UcFirstMockPipe }
2388
+ ], imports: [CommonModule] });
2389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.3", ngImport: i0, type: UcFirstTestingModule, decorators: [{
2390
+ type: NgModule,
2391
+ args: [{
2392
+ declarations: [
2393
+ UcFirstMockPipe
2394
+ ],
2395
+ imports: [
2396
+ CommonModule
2397
+ ],
2398
+ providers: [
2399
+ { provide: UcFirstPipe, useClass: UcFirstMockPipe }
2400
+ ],
2401
+ exports: [
2402
+ UcFirstMockPipe
2403
+ ],
2404
+ }]
2405
+ }] });
2406
+
2407
+ /**
2408
+ * Generated bundle index. Do not edit.
2409
+ */
2410
+
2411
+ export { BsAccordionMockComponent, BsAccordionTabHeaderMockComponent, BsAccordionTabMockComponent, BsAccordionTestingModule, BsAddPropertiesMockPipe, BsAlertCloseMockComponent, BsAlertMockComponent, BsAlertTestingModule, BsBadgeMockComponent, BsBadgeTestingModule, BsBreadcrumbItemMockComponent, BsBreadcrumbMockComponent, BsBreadcrumbTestingModule, BsButtonGroupMockComponent, BsButtonGroupTestingModule, BsCalendarMockComponent, BsCalendarTestingModule, BsCardHeaderMockComponent, BsCardMockComponent, BsCardTestingModule, BsCarouselImageMockDirective, BsCarouselMockComponent, BsCarouselTestingModule, BsCloseMockComponent, BsCloseTestingModule, BsCodeSnippetMockComponent, BsCodeSnippetTestingModule, BsColumnMockDirective, BsContextMenuMockDirective, BsContextMenuTestingModule, BsCopyMockDirective, BsCopyTestingModule, BsDatatableColumnMockDirective, BsDatatableMockComponent, BsDatatableTestingModule, BsDatepickerMockComponent, BsDatepickerTestingModule, BsDropdownItemMockComponent, BsDropdownMenuMockComponent, BsDropdownMenuMockDirective, BsDropdownMenuTestingModule, BsDropdownMockDirective, BsDropdownTestingModule, BsDropdownToggleMockDirective, BsFileUploadMockComponent, BsFileUploadTemplateMockDirective, BsFileUploadTestingModule, BsForMockDirective, BsForTestingModule, BsGridMockComponent, BsGridTestingModule, BsHasOverlayMockComponent, BsHasOverlayTestingModule, BsListGroupItemMockComponent, BsListGroupMockComponent, BsListGroupTestingModule, BsModalHostMockComponent, BsModalTestingModule, BsMultiselectMockComponent, BsMultiselectTestingModule, BsNavbarBrandMockComponent, BsNavbarDropdownMockComponent, BsNavbarItemMockComponent, BsNavbarMockComponent, BsNavbarNavMockComponent, BsNavbarTestingModule, BsOffcanvasContentMockDirective, BsOffcanvasHostMockComponent, BsOffcanvasTestingModule, BsPaginationMockComponent, BsPaginationTestingModule, BsPlaceholderMockComponent, BsPlaceholderTestingModule, BsPopoverMockDirective, BsPopoverTestingModule, BsProgressBarMockComponent, BsProgressBarTestingModule, BsProgressMockComponent, BsRangeMockComponent, BsRangeMockValueAccessor, BsRangeTestingModule, BsRatingMockComponent, BsRatingTestingModule, BsRowMockDirective, BsRowTemplateMockDirective, BsSchedulerMockComponent, BsSchedulerTestingModule, BsScrollspyMockComponent, BsScrollspyMockDirective, BsScrollspyTestingModule, BsSelect2Component, BsSelect2TestingModule, BsSelectMockComponent, BsSelectMockValueAccessor, BsSelectOptionMock, BsSelectTestingModule, BsSnackbarMockService, BsSnackbarTestingModule, BsSpinnerMockComponent, BsSpinnerTestingModule, BsTabControlMockComponent, BsTabControlTestingModule, BsTabPageMockComponent, BsTableMockComponent, BsTableTestingModule, BsTimepickerMockComponent, BsTimepickerTestingModule, BsToastBodyMockComponent, BsToastContainerMockComponent, BsToastHeaderMockComponent, BsToastMockComponent, BsToastMockService, BsToastTestingModule, BsToggleButtonGroupMockDirective, BsToggleButtonMockComponent, BsToggleButtonMockValueAccessor, BsToggleButtonTestingModule, BsTooltipMockDirective, BsTooltipTestingModule, BsTypeaheadMockComponent, BsTypeaheadTestingModule, Color, DatatableSettingsMock, ESchedulerMode, EnhancedPasteMockDirective, EnhancedPasteTestingModule, HighlightMockDirective, HighlightTestingModule, NavbarContentMockDirective, PORTAL_FACTORY, UcFirstMockPipe, UcFirstTestingModule };
2412
+ //# sourceMappingURL=mintplayer-ng-bootstrap-testing.mjs.map