@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
@@ -1,4 +1,3 @@
1
1
  export * from './offcanvas.module';
2
2
  export * from './components';
3
3
  export * from './directives';
4
- export * from './types';
@@ -7,8 +7,9 @@ import * as i5 from "./components/offcanvas-header/offcanvas-header.component";
7
7
  import * as i6 from "./components/offcanvas-body/offcanvas-body.component";
8
8
  import * as i7 from "@angular/common";
9
9
  import * as i8 from "@angular/cdk/overlay";
10
+ import * as i9 from "@mintplayer/ng-bootstrap/has-overlay";
10
11
  export declare class BsOffcanvasModule {
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<BsOffcanvasModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsOffcanvasModule, [typeof i1.BsOffcanvasComponent, typeof i2.BsOffcanvasContentDirective, typeof i3.BsOffcanvasHostComponent, typeof i4.BsOffcanvasCloseDirective, typeof i5.OffcanvasHeaderComponent, typeof i6.OffcanvasBodyComponent], [typeof i7.CommonModule, typeof i8.OverlayModule], [typeof i1.BsOffcanvasComponent, typeof i2.BsOffcanvasContentDirective, typeof i3.BsOffcanvasHostComponent, typeof i4.BsOffcanvasCloseDirective, typeof i5.OffcanvasHeaderComponent, typeof i6.OffcanvasBodyComponent]>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsOffcanvasModule, [typeof i1.BsOffcanvasComponent, typeof i2.BsOffcanvasContentDirective, typeof i3.BsOffcanvasHostComponent, typeof i4.BsOffcanvasCloseDirective, typeof i5.OffcanvasHeaderComponent, typeof i6.OffcanvasBodyComponent], [typeof i7.CommonModule, typeof i8.OverlayModule, typeof i9.BsHasOverlayModule], [typeof i1.BsOffcanvasComponent, typeof i2.BsOffcanvasContentDirective, typeof i3.BsOffcanvasHostComponent, typeof i4.BsOffcanvasCloseDirective, typeof i5.OffcanvasHeaderComponent, typeof i6.OffcanvasBodyComponent]>;
13
14
  static ɵinj: i0.ɵɵInjectorDeclaration<BsOffcanvasModule>;
14
15
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mintplayer/ng-bootstrap",
3
3
  "private": false,
4
- "version": "15.0.4",
4
+ "version": "15.1.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/MintPlayer/mintplayer-ng-bootstrap",
@@ -84,6 +84,14 @@
84
84
  "node": "./fesm2015/mintplayer-ng-bootstrap-button-group.mjs",
85
85
  "default": "./fesm2020/mintplayer-ng-bootstrap-button-group.mjs"
86
86
  },
87
+ "./calendar-month": {
88
+ "types": "./calendar-month/index.d.ts",
89
+ "esm2020": "./esm2020/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs",
90
+ "es2020": "./fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs",
91
+ "es2015": "./fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs",
92
+ "node": "./fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs",
93
+ "default": "./fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs"
94
+ },
87
95
  "./calendar": {
88
96
  "types": "./calendar/index.d.ts",
89
97
  "esm2020": "./esm2020/calendar/mintplayer-ng-bootstrap-calendar.mjs",
@@ -180,6 +188,14 @@
180
188
  "node": "./fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs",
181
189
  "default": "./fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs"
182
190
  },
191
+ "./enum": {
192
+ "types": "./enum/index.d.ts",
193
+ "esm2020": "./esm2020/enum/mintplayer-ng-bootstrap-enum.mjs",
194
+ "es2020": "./fesm2020/mintplayer-ng-bootstrap-enum.mjs",
195
+ "es2015": "./fesm2015/mintplayer-ng-bootstrap-enum.mjs",
196
+ "node": "./fesm2015/mintplayer-ng-bootstrap-enum.mjs",
197
+ "default": "./fesm2020/mintplayer-ng-bootstrap-enum.mjs"
198
+ },
183
199
  "./file-upload": {
184
200
  "types": "./file-upload/index.d.ts",
185
201
  "esm2020": "./esm2020/file-upload/mintplayer-ng-bootstrap-file-upload.mjs",
@@ -204,6 +220,14 @@
204
220
  "node": "./fesm2015/mintplayer-ng-bootstrap-grid.mjs",
205
221
  "default": "./fesm2020/mintplayer-ng-bootstrap-grid.mjs"
206
222
  },
223
+ "./has-overlay": {
224
+ "types": "./has-overlay/index.d.ts",
225
+ "esm2020": "./esm2020/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs",
226
+ "es2020": "./fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs",
227
+ "es2015": "./fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs",
228
+ "node": "./fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs",
229
+ "default": "./fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs"
230
+ },
207
231
  "./list-group": {
208
232
  "types": "./list-group/index.d.ts",
209
233
  "esm2020": "./esm2020/list-group/mintplayer-ng-bootstrap-list-group.mjs",
@@ -356,6 +380,14 @@
356
380
  "node": "./fesm2015/mintplayer-ng-bootstrap-table.mjs",
357
381
  "default": "./fesm2020/mintplayer-ng-bootstrap-table.mjs"
358
382
  },
383
+ "./testing": {
384
+ "types": "./testing/index.d.ts",
385
+ "esm2020": "./esm2020/testing/mintplayer-ng-bootstrap-testing.mjs",
386
+ "es2020": "./fesm2020/mintplayer-ng-bootstrap-testing.mjs",
387
+ "es2015": "./fesm2015/mintplayer-ng-bootstrap-testing.mjs",
388
+ "node": "./fesm2015/mintplayer-ng-bootstrap-testing.mjs",
389
+ "default": "./fesm2020/mintplayer-ng-bootstrap-testing.mjs"
390
+ },
359
391
  "./timepicker": {
360
392
  "types": "./timepicker/index.d.ts",
361
393
  "esm2020": "./esm2020/timepicker/mintplayer-ng-bootstrap-timepicker.mjs",
@@ -4,7 +4,6 @@ import { BehaviorSubject, Observable } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class BsPopoverComponent {
6
6
  constructor(content: TemplateRef<any>);
7
- positions: typeof Position;
8
7
  position$: BehaviorSubject<Position>;
9
8
  get position(): Position;
10
9
  set position(value: Position);
@@ -12,6 +11,7 @@ export declare class BsPopoverComponent {
12
11
  get isVisible(): boolean;
13
12
  set isVisible(value: boolean);
14
13
  marginClass$: Observable<string>;
14
+ positionClass$: Observable<string>;
15
15
  template: TemplateRef<any>;
16
16
  positionRelative: boolean;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<BsPopoverComponent, never>;
@@ -5,8 +5,9 @@ import * as i3 from "./directives/popover-header/popover-header.directive";
5
5
  import * as i4 from "./directives/popover-body/popover-body.directive";
6
6
  import * as i5 from "@angular/common";
7
7
  import * as i6 from "@angular/cdk/overlay";
8
+ import * as i7 from "@mintplayer/ng-bootstrap/has-overlay";
8
9
  export declare class BsPopoverModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<BsPopoverModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsPopoverModule, [typeof i1.BsPopoverComponent, typeof i2.BsPopoverDirective, typeof i3.BsPopoverHeaderDirective, typeof i4.BsPopoverBodyDirective], [typeof i5.CommonModule, typeof i6.OverlayModule], [typeof i2.BsPopoverDirective, typeof i3.BsPopoverHeaderDirective, typeof i4.BsPopoverBodyDirective]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsPopoverModule, [typeof i1.BsPopoverComponent, typeof i2.BsPopoverDirective, typeof i3.BsPopoverHeaderDirective, typeof i4.BsPopoverBodyDirective], [typeof i5.CommonModule, typeof i6.OverlayModule, typeof i7.BsHasOverlayModule], [typeof i2.BsPopoverDirective, typeof i3.BsPopoverHeaderDirective, typeof i4.BsPopoverBodyDirective]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<BsPopoverModule>;
12
13
  }
@@ -1,6 +1,6 @@
1
1
  import { ElementRef, EventEmitter, OnDestroy, QueryList } from '@angular/core';
2
2
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
3
- import { BsCalendarMonthService } from '@mintplayer/ng-bootstrap';
3
+ import { BsCalendarMonthService } from '@mintplayer/ng-bootstrap/calendar-month';
4
4
  import { ESchedulerMode } from '../../enums/scheduler-mode';
5
5
  import { DragOperation } from '../../interfaces/drag-operation';
6
6
  import { PreviewEvent } from '../../interfaces/preview-event';
@@ -3,8 +3,9 @@ import * as i1 from "./component/snackbar.component";
3
3
  import * as i2 from "./directives/snackbar-close/snackbar-close.directive";
4
4
  import * as i3 from "@angular/common";
5
5
  import * as i4 from "@angular/cdk/overlay";
6
+ import * as i5 from "@mintplayer/ng-bootstrap/has-overlay";
6
7
  export declare class BsSnackbarModule {
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<BsSnackbarModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<BsSnackbarModule, [typeof i1.BsSnackbarComponent, typeof i2.BsSnackbarCloseDirective], [typeof i3.CommonModule, typeof i4.OverlayModule], [typeof i1.BsSnackbarComponent, typeof i2.BsSnackbarCloseDirective]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsSnackbarModule, [typeof i1.BsSnackbarComponent, typeof i2.BsSnackbarCloseDirective], [typeof i3.CommonModule, typeof i4.OverlayModule, typeof i5.BsHasOverlayModule], [typeof i1.BsSnackbarComponent, typeof i2.BsSnackbarCloseDirective]>;
9
10
  static ɵinj: i0.ɵɵInjectorDeclaration<BsSnackbarModule>;
10
11
  }
@@ -0,0 +1 @@
1
+ export * from './src';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsAccordionMockComponent {
3
+ highlightActiveTab: boolean;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionMockComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionMockComponent, "bs-accordion", never, { "highlightActiveTab": "highlightActiveTab"; }, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,10 @@
1
+ import { QueryList } from '@angular/core';
2
+ import { BsAccordionMockComponent } from '../accordion/accordion.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsAccordionTabMockComponent {
5
+ accordion: BsAccordionMockComponent;
6
+ constructor(accordion: BsAccordionMockComponent);
7
+ childAccordions: QueryList<BsAccordionMockComponent>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTabMockComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabMockComponent, "bs-accordion-tab", never, {}, {}, ["childAccordions"], never, false, never>;
10
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsAccordionTabHeaderMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTabHeaderMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsAccordionTabHeaderMockComponent, "bs-accordion-tab-header", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./accordion/accordion.component";
3
+ import * as i2 from "./accordion-tab/accordion-tab.component";
4
+ import * as i3 from "./accordion-tab-header/accordion-tab-header.component";
5
+ import * as i4 from "@angular/common";
6
+ export declare class BsAccordionTestingModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAccordionTestingModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsAccordionTestingModule, [typeof i1.BsAccordionMockComponent, typeof i2.BsAccordionTabMockComponent, typeof i3.BsAccordionTabHeaderMockComponent], [typeof i4.CommonModule], [typeof i1.BsAccordionMockComponent, typeof i2.BsAccordionTabMockComponent, typeof i3.BsAccordionTabHeaderMockComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsAccordionTestingModule>;
10
+ }
@@ -0,0 +1,4 @@
1
+ export * from './accordion-testing.module';
2
+ export * from './accordion/accordion.component';
3
+ export * from './accordion-tab/accordion-tab.component';
4
+ export * from './accordion-tab-header/accordion-tab-header.component';
@@ -0,0 +1,11 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { Color } from '@mintplayer/ng-bootstrap';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BsAlertMockComponent {
5
+ type: Color;
6
+ isVisible: boolean;
7
+ isVisibleChange: EventEmitter<boolean>;
8
+ afterOpenedOrClosed: EventEmitter<any>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAlertMockComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsAlertMockComponent, "bs-alert", never, { "type": "type"; "isVisible": "isVisible"; }, { "isVisibleChange": "isVisibleChange"; "afterOpenedOrClosed": "afterOpenedOrClosed"; }, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsAlertCloseMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAlertCloseMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsAlertCloseMockComponent, "bs-alert-close", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./alert/alert.component";
3
+ import * as i2 from "./alert-close/alert-close.component";
4
+ import * as i3 from "@angular/common";
5
+ export declare class BsAlertTestingModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsAlertTestingModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsAlertTestingModule, [typeof i1.BsAlertMockComponent, typeof i2.BsAlertCloseMockComponent], [typeof i3.CommonModule], [typeof i1.BsAlertMockComponent, typeof i2.BsAlertCloseMockComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsAlertTestingModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './alert-testing.module';
2
+ export * from './alert/alert.component';
3
+ export * from './alert-close/alert-close.component';
@@ -0,0 +1,7 @@
1
+ import { Color } from '@mintplayer/ng-bootstrap';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsBadgeMockComponent {
4
+ type: Color;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsBadgeMockComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsBadgeMockComponent, "bs-badge", never, { "type": "type"; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./badge/badge.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsBadgeTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsBadgeTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsBadgeTestingModule, [typeof i1.BsBadgeMockComponent], [typeof i2.CommonModule], [typeof i1.BsBadgeMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsBadgeTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './badge-testing.module';
2
+ export * from './badge/badge.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsBreadcrumbMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsBreadcrumbMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsBreadcrumbMockComponent, "bs-breadcrumb", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsBreadcrumbItemMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsBreadcrumbItemMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsBreadcrumbItemMockComponent, "bs-breadcrumb-item", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./breadcrumb/breadcrumb.component";
3
+ import * as i2 from "./breadcrumb-item/breadcrumb-item.component";
4
+ import * as i3 from "@angular/common";
5
+ export declare class BsBreadcrumbTestingModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsBreadcrumbTestingModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsBreadcrumbTestingModule, [typeof i1.BsBreadcrumbMockComponent, typeof i2.BsBreadcrumbItemMockComponent], [typeof i3.CommonModule], [typeof i1.BsBreadcrumbMockComponent, typeof i2.BsBreadcrumbItemMockComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsBreadcrumbTestingModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './breadcrumb-testing.module';
2
+ export * from './breadcrumb/breadcrumb.component';
3
+ export * from './breadcrumb-item/breadcrumb-item.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsButtonGroupMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsButtonGroupMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsButtonGroupMockComponent, "bs-button-group", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button-group/button-group.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsButtonGroupTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsButtonGroupTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsButtonGroupTestingModule, [typeof i1.BsButtonGroupMockComponent], [typeof i2.CommonModule], [typeof i1.BsButtonGroupMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsButtonGroupTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './button-group-testing.module';
2
+ export * from './button-group/button-group.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCalendarMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCalendarMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCalendarMockComponent, "bs-calendar", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./calendar/calendar.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsCalendarTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCalendarTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCalendarTestingModule, [typeof i1.BsCalendarMockComponent], [typeof i2.CommonModule], [typeof i1.BsCalendarMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCalendarTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './calendar-testing.module';
2
+ export * from './calendar/calendar.component';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCardMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCardMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCardMockComponent, "bs-card", never, {}, {}, never, ["bs-card-header", "*"], false, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCardHeaderMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCardHeaderMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCardHeaderMockComponent, "bs-card-header", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./card/card.component";
3
+ import * as i2 from "./card-header/card-header.component";
4
+ import * as i3 from "@angular/common";
5
+ export declare class BsCardTestingModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCardTestingModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCardTestingModule, [typeof i1.BsCardMockComponent, typeof i2.BsCardHeaderMockComponent], [typeof i3.CommonModule], [typeof i1.BsCardMockComponent, typeof i2.BsCardHeaderMockComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCardTestingModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './card-testing.module';
2
+ export * from './card/card.component';
3
+ export * from './card-header/card-header.component';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCarouselMockComponent {
3
+ animation: 'fade' | 'slide';
4
+ indicators: boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselMockComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCarouselMockComponent, "bs-carousel", never, { "animation": "animation"; "indicators": "indicators"; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCarouselImageMockDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselImageMockDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsCarouselImageMockDirective, "[bsCarouselImage]", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./carousel/carousel.component";
3
+ import * as i2 from "./carousel-image/carousel-image.directive";
4
+ import * as i3 from "@angular/common";
5
+ export declare class BsCarouselTestingModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCarouselTestingModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCarouselTestingModule, [typeof i1.BsCarouselMockComponent, typeof i2.BsCarouselImageMockDirective], [typeof i3.CommonModule], [typeof i1.BsCarouselMockComponent, typeof i2.BsCarouselImageMockDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCarouselTestingModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export * from './carousel-testing.module';
2
+ export * from './carousel/carousel.component';
3
+ export * from './carousel-image/carousel-image.directive';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCloseMockComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCloseMockComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCloseMockComponent, "bs-close", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./close/close.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsCloseTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCloseTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCloseTestingModule, [typeof i1.BsCloseMockComponent], [typeof i2.CommonModule], [typeof i1.BsCloseMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCloseTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './close-testing.module';
2
+ export * from './close/close.component';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCodeSnippetMockComponent {
3
+ htmlToCopy: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCodeSnippetMockComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsCodeSnippetMockComponent, "bs-code-snippet", never, { "htmlToCopy": "htmlToCopy"; }, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./code-snippet/code-snippet.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsCodeSnippetTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCodeSnippetTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCodeSnippetTestingModule, [typeof i1.BsCodeSnippetMockComponent], [typeof i2.CommonModule], [typeof i1.BsCodeSnippetMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCodeSnippetTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './code-snippet-testing.module';
2
+ export * from './code-snippet/code-snippet.component';
@@ -0,0 +1,13 @@
1
+ export declare enum Color {
2
+ primary = 0,
3
+ secondary = 1,
4
+ success = 2,
5
+ danger = 3,
6
+ warning = 4,
7
+ info = 5,
8
+ light = 6,
9
+ dark = 7,
10
+ body = 8,
11
+ white = 9,
12
+ transparent = 10
13
+ }
@@ -0,0 +1 @@
1
+ export * from './color.enum';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./context-menu.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsContextMenuTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsContextMenuTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsContextMenuTestingModule, [typeof i1.BsContextMenuMockDirective], [typeof i2.CommonModule], [typeof i1.BsContextMenuMockDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsContextMenuTestingModule>;
8
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsContextMenuMockDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsContextMenuMockDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsContextMenuMockDirective, "[bsContextMenu]", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './context-menu-testing.module';
2
+ export * from './context-menu.directive';
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./copy.directive";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsCopyTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCopyTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsCopyTestingModule, [typeof i1.BsCopyMockDirective], [typeof i2.CommonModule], [typeof i1.BsCopyMockDirective]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsCopyTestingModule>;
8
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsCopyMockDirective {
3
+ bsCopy: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsCopyMockDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsCopyMockDirective, "[bsCopy]", never, { "bsCopy": "bsCopy"; }, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,2 @@
1
+ export * from './copy-testing.module';
2
+ export * from './copy.directive';
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { PaginationResponse } from '@mintplayer/pagination';
3
+ import { BsDatatableColumnMockDirective } from '../datatable-column/datatable-column.directive';
4
+ import { DatatableSettingsMock } from '../datatable-settings';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BsDatatableMockComponent {
7
+ constructor();
8
+ settings: DatatableSettingsMock;
9
+ data?: PaginationResponse<any>;
10
+ reloadData: EventEmitter<any>;
11
+ columns: BsDatatableColumnMockDirective[];
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableMockComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatatableMockComponent, "bs-datatable", never, { "settings": "settings"; "data": "data"; }, { "reloadData": "reloadData"; }, ["columns"], never, false, never>;
14
+ }
@@ -0,0 +1,12 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsDatatableColumnMockDirective {
4
+ bsDatatableColumn: DatatableColumnMetadataMock;
5
+ templateRef: TemplateRef<any> | null;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableColumnMockDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsDatatableColumnMockDirective, "[bsDatatableColumn]", never, { "bsDatatableColumn": "bsDatatableColumn"; }, {}, never, never, false, never>;
8
+ }
9
+ export interface DatatableColumnMetadataMock {
10
+ name: string;
11
+ sortable: boolean;
12
+ }
@@ -0,0 +1,13 @@
1
+ export declare class DatatableSettingsMock {
2
+ constructor(data?: Partial<DatatableSettingsMock>);
3
+ sortProperty: string;
4
+ sortDirection: 'ascending' | 'descending';
5
+ perPage: {
6
+ values: number[];
7
+ selected: number;
8
+ };
9
+ page: {
10
+ values: number[];
11
+ selected: number;
12
+ };
13
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datatable/datatable.component";
3
+ import * as i2 from "./datatable-column/datatable-column.directive";
4
+ import * as i3 from "./row-template/row-template.directive";
5
+ import * as i4 from "@angular/common";
6
+ export declare class BsDatatableTestingModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatatableTestingModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsDatatableTestingModule, [typeof i1.BsDatatableMockComponent, typeof i2.BsDatatableColumnMockDirective, typeof i3.BsRowTemplateMockDirective], [typeof i4.CommonModule], [typeof i1.BsDatatableMockComponent, typeof i2.BsDatatableColumnMockDirective, typeof i3.BsRowTemplateMockDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsDatatableTestingModule>;
10
+ }
@@ -0,0 +1,5 @@
1
+ export * from './datatable-testing.module';
2
+ export * from './datatable/datatable.component';
3
+ export * from './datatable-column/datatable-column.directive';
4
+ export * from './row-template/row-template.directive';
5
+ export * from './datatable-settings';
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsRowTemplateMockDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsRowTemplateMockDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsRowTemplateMockDirective, "[bsRowTemplate]", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BsDatepickerMockComponent {
4
+ selectedDate: Date;
5
+ selectedDateChange: EventEmitter<Date>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatepickerMockComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<BsDatepickerMockComponent, "bs-datepicker", never, { "selectedDate": "selectedDate"; }, { "selectedDateChange": "selectedDateChange"; }, never, never, false, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datepicker/datepicker.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class BsDatepickerTestingModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDatepickerTestingModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsDatepickerTestingModule, [typeof i1.BsDatepickerMockComponent], [typeof i2.CommonModule], [typeof i1.BsDatepickerMockComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsDatepickerTestingModule>;
8
+ }
@@ -0,0 +1,2 @@
1
+ export * from './datepicker-testing.module';
2
+ export * from './datepicker/datepicker.component';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BsDropdownMenuMockDirective {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownMenuMockDirective, never>;
5
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BsDropdownMenuMockDirective, "[bsDropdownMenu]", never, {}, {}, never, never, false, never>;
6
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown.directive";
3
+ import * as i2 from "./dropdown-menu.directive";
4
+ import * as i3 from "./dropdown-toggle.directive";
5
+ import * as i4 from "@angular/common";
6
+ export declare class BsDropdownTestingModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownTestingModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BsDropdownTestingModule, [typeof i1.BsDropdownMockDirective, typeof i2.BsDropdownMenuMockDirective, typeof i3.BsDropdownToggleMockDirective], [typeof i4.CommonModule], [typeof i1.BsDropdownMockDirective, typeof i2.BsDropdownMenuMockDirective, typeof i3.BsDropdownToggleMockDirective]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<BsDropdownTestingModule>;
10
+ }