@mintplayer/ng-bootstrap 15.27.0 → 16.0.1

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 (1245) hide show
  1. package/accordion/src/accordion/accordion.component.d.ts +1 -1
  2. package/accordion/src/accordion-tab/accordion-tab.component.d.ts +1 -1
  3. package/alert/src/alert/alert.component.d.ts +1 -1
  4. package/badge/src/badge.component.d.ts +1 -1
  5. package/button-type/src/button-type/button-type.directive.d.ts +1 -1
  6. package/calendar/src/calendar.component.d.ts +1 -1
  7. package/card/src/card/card.component.d.ts +1 -1
  8. package/card/src/card-header/card-header.component.d.ts +1 -1
  9. package/carousel/src/carousel/carousel.component.d.ts +1 -1
  10. package/code-snippet/src/code-snippet.component.d.ts +1 -1
  11. package/copy/src/copy.directive.d.ts +1 -1
  12. package/datatable/src/datatable/datatable.component.d.ts +1 -1
  13. package/datatable/src/datatable-column/datatable-column.directive.d.ts +1 -1
  14. package/datepicker/src/datepicker.component.d.ts +1 -1
  15. package/dock/src/dock/dock.component.d.ts +1 -1
  16. package/dock/src/dock-pane-renderer/dock-pane-renderer.component.d.ts +1 -1
  17. package/dock/src/dock-panel/dock-panel.component.d.ts +1 -1
  18. package/dropdown/src/dropdown/dropdown.directive.d.ts +1 -1
  19. package/dropdown-menu/src/dropdown-item/dropdown-item.component.d.ts +1 -1
  20. package/dropdown-menu/src/dropdown-menu/dropdown-menu.component.d.ts +1 -1
  21. package/esm2022/accordion/src/accordion/accordion.component.mjs +27 -0
  22. package/esm2022/accordion/src/accordion-tab/accordion-tab.component.mjs +69 -0
  23. package/esm2022/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +22 -0
  24. package/esm2022/accordion/src/accordion.module.mjs +39 -0
  25. package/esm2022/alert/src/alert/alert.component.mjs +42 -0
  26. package/esm2022/alert/src/alert-close/alert-close.component.mjs +21 -0
  27. package/esm2022/alert/src/alert.module.mjs +28 -0
  28. package/esm2022/badge/src/badge.component.mjs +31 -0
  29. package/esm2022/badge/src/badge.module.mjs +19 -0
  30. package/esm2022/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +14 -0
  31. package/esm2022/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +19 -0
  32. package/esm2022/breadcrumb/src/breadcrumb.module.mjs +20 -0
  33. package/esm2022/button-group/src/button-group/button-group.component.mjs +14 -0
  34. package/esm2022/button-group/src/button-group.module.mjs +19 -0
  35. package/esm2022/button-type/src/button-type/button-type.directive.mjs +31 -0
  36. package/esm2022/button-type/src/button-type/button-type.module.mjs +25 -0
  37. package/esm2022/calendar/src/calendar.component.mjs +112 -0
  38. package/esm2022/calendar/src/calendar.module.mjs +40 -0
  39. package/esm2022/calendar-month/src/pipes/month-name/month-name.module.mjs +25 -0
  40. package/esm2022/calendar-month/src/pipes/month-name/month-name.pipe.mjs +22 -0
  41. package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +25 -0
  42. package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +17 -0
  43. package/esm2022/calendar-month/src/service/calendar-month.service.mjs +95 -0
  44. package/esm2022/card/src/card/card.component.mjs +17 -0
  45. package/esm2022/card/src/card-header/card-header.component.mjs +17 -0
  46. package/esm2022/card/src/card.module.mjs +28 -0
  47. package/esm2022/carousel/src/carousel/carousel.component.mjs +138 -0
  48. package/esm2022/carousel/src/carousel-image/carousel-image.directive.mjs +25 -0
  49. package/esm2022/carousel/src/carousel.module.mjs +38 -0
  50. package/esm2022/close/src/close.component.mjs +22 -0
  51. package/esm2022/close/src/close.module.mjs +19 -0
  52. package/esm2022/code-snippet/src/code-snippet.component.mjs +35 -0
  53. package/esm2022/code-snippet/src/code-snippet.module.mjs +37 -0
  54. package/esm2022/context-menu/src/context-menu.directive.mjs +85 -0
  55. package/esm2022/context-menu/src/context-menu.module.mjs +35 -0
  56. package/esm2022/copy/src/copy.directive.mjs +46 -0
  57. package/esm2022/copy/src/copy.module.mjs +25 -0
  58. package/esm2022/datatable/src/datatable/datatable.component.mjs +58 -0
  59. package/esm2022/datatable/src/datatable-column/datatable-column.directive.mjs +20 -0
  60. package/esm2022/datatable/src/datatable.module.mjs +47 -0
  61. package/esm2022/datatable/src/row-template/row-template.directive.mjs +20 -0
  62. package/esm2022/datepicker/src/datepicker.component.mjs +50 -0
  63. package/esm2022/datepicker/src/datepicker.module.mjs +41 -0
  64. package/esm2022/dock/src/dock/dock.component.mjs +94 -0
  65. package/esm2022/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +61 -0
  66. package/esm2022/dock/src/dock-panel/dock-panel.component.mjs +28 -0
  67. package/esm2022/dock/src/dock-panel-header/dock-panel-header.component.mjs +278 -0
  68. package/esm2022/dock/src/dock.module.mjs +64 -0
  69. package/esm2022/dock/src/services/dock/dock.service.mjs +57 -0
  70. package/esm2022/dropdown/src/dropdown/dropdown.directive.mjs +69 -0
  71. package/esm2022/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +115 -0
  72. package/esm2022/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +32 -0
  73. package/esm2022/dropdown/src/dropdown.module.mjs +44 -0
  74. package/esm2022/dropdown-divider/src/dropdown-divider.directive.mjs +20 -0
  75. package/esm2022/dropdown-divider/src/dropdown-divider.module.mjs +19 -0
  76. package/esm2022/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +20 -0
  77. package/esm2022/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +43 -0
  78. package/esm2022/dropdown-menu/src/dropdown-menu.module.mjs +27 -0
  79. package/esm2022/enhanced-paste/src/directive/enhanced-paste.directive.mjs +59 -0
  80. package/esm2022/enhanced-paste/src/enhanced-paste.module.mjs +25 -0
  81. package/esm2022/enum/src/service/enum.service.mjs +32 -0
  82. package/esm2022/file-upload/src/component/file-upload.component.mjs +90 -0
  83. package/esm2022/file-upload/src/directive/file-upload-template.directive.mjs +19 -0
  84. package/esm2022/file-upload/src/file-upload.module.mjs +51 -0
  85. package/esm2022/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +24 -0
  86. package/esm2022/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +21 -0
  87. package/esm2022/floating-labels/src/floating-labels/floating-labels.module.mjs +19 -0
  88. package/esm2022/for/src/for.directive.mjs +39 -0
  89. package/esm2022/for/src/for.module.mjs +25 -0
  90. package/esm2022/form/src/form/form.component.mjs +21 -0
  91. package/esm2022/form/src/form-control/form-control.directive.mjs +20 -0
  92. package/esm2022/form/src/form-group/form-group.directive.mjs +20 -0
  93. package/esm2022/form/src/form.module.mjs +21 -0
  94. package/esm2022/grid/src/component/grid.component.mjs +33 -0
  95. package/esm2022/grid/src/directives/col-form-label/col-form-label.directive.mjs +20 -0
  96. package/esm2022/grid/src/directives/column/column.directive.mjs +57 -0
  97. package/esm2022/grid/src/directives/row/row.directive.mjs +20 -0
  98. package/esm2022/grid/src/grid.module.mjs +22 -0
  99. package/esm2022/has-overlay/src/has-overlay/has-overlay.component.mjs +12 -0
  100. package/esm2022/has-overlay/src/has-overlay/has-overlay.module.mjs +19 -0
  101. package/esm2022/icon/src/icon.component.mjs +35 -0
  102. package/esm2022/icon/src/icon.module.mjs +19 -0
  103. package/esm2022/input-group/src/input-group/input-group.component.mjs +12 -0
  104. package/esm2022/input-group/src/input-group.module.mjs +19 -0
  105. package/esm2022/instance-of/src/directives/instanceof-case.directive.mjs +48 -0
  106. package/esm2022/instance-of/src/directives/instanceof-default.directive.mjs +31 -0
  107. package/esm2022/instance-of/src/directives/instanceof.directive.mjs +63 -0
  108. package/esm2022/instance-of/src/instance-of.module.mjs +38 -0
  109. package/esm2022/instance-of/src/pipes/instance-of.pipe.mjs +18 -0
  110. package/esm2022/lazy-loading/src/lazy-load/lazy-load.directive.mjs +33 -0
  111. package/esm2022/lazy-loading/src/lazy-loading.module.mjs +25 -0
  112. package/esm2022/let/directive/let.directive.mjs +39 -0
  113. package/esm2022/let/let.module.mjs +25 -0
  114. package/esm2022/lib/pipes/font-color/font-color.module.mjs +25 -0
  115. package/esm2022/lib/pipes/font-color/font-color.pipe.mjs +27 -0
  116. package/esm2022/lib/pipes/in-list/in-list.module.mjs +25 -0
  117. package/esm2022/lib/pipes/in-list/in-list.pipe.mjs +17 -0
  118. package/esm2022/lib/pipes/uc-first/uc-first.module.mjs +25 -0
  119. package/esm2022/lib/pipes/uc-first/uc-first.pipe.mjs +17 -0
  120. package/esm2022/list-group/src/list-group/list-group.component.mjs +20 -0
  121. package/esm2022/list-group/src/list-group-item/list-group-item.component.mjs +18 -0
  122. package/esm2022/list-group/src/list-group.module.mjs +28 -0
  123. package/esm2022/markdown/src/bold/bold.pipe.mjs +31 -0
  124. package/esm2022/markdown/src/italic/italic.pipe.mjs +31 -0
  125. package/esm2022/markdown/src/markdown.module.mjs +40 -0
  126. package/esm2022/markdown/src/strikethrough/strikethrough.pipe.mjs +31 -0
  127. package/esm2022/markdown/src/underline/underline.pipe.mjs +31 -0
  128. package/esm2022/modal/src/components/modal/modal.component.mjs +22 -0
  129. package/esm2022/modal/src/components/modal-host/modal-host.component.mjs +84 -0
  130. package/esm2022/modal/src/directives/modal/modal.directive.mjs +19 -0
  131. package/esm2022/modal/src/directives/modal-body/modal-body.directive.mjs +20 -0
  132. package/esm2022/modal/src/directives/modal-close/modal-close.directive.mjs +25 -0
  133. package/esm2022/modal/src/directives/modal-footer/modal-footer.directive.mjs +20 -0
  134. package/esm2022/modal/src/directives/modal-header/modal-header.directive.mjs +20 -0
  135. package/esm2022/modal/src/modal.module.mjs +76 -0
  136. package/esm2022/multiselect/src/component/multiselect.component.mjs +46 -0
  137. package/esm2022/multiselect/src/directives/button-template/button-template.directive.mjs +19 -0
  138. package/esm2022/multiselect/src/directives/footer-template/footer-template.directive.mjs +19 -0
  139. package/esm2022/multiselect/src/directives/header-template/header-template.directive.mjs +19 -0
  140. package/esm2022/multiselect/src/multiselect.module.mjs +64 -0
  141. package/esm2022/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +39 -0
  142. package/esm2022/navbar/src/expand-button/expand-button.directive.mjs +19 -0
  143. package/esm2022/navbar/src/nav-link/nav-link.directive.mjs +35 -0
  144. package/esm2022/navbar/src/navbar/navbar.component.mjs +142 -0
  145. package/esm2022/navbar/src/navbar-brand/navbar-brand.component.mjs +21 -0
  146. package/esm2022/navbar/src/navbar-content/navbar-content.directive.mjs +73 -0
  147. package/esm2022/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +144 -0
  148. package/esm2022/navbar/src/navbar-item/navbar-item.component.mjs +105 -0
  149. package/esm2022/navbar/src/navbar-nav/navbar-nav.component.mjs +70 -0
  150. package/esm2022/navbar/src/navbar-toggler/navbar-toggler.component.mjs +48 -0
  151. package/esm2022/navbar/src/navbar.module.mjs +92 -0
  152. package/esm2022/navigation-lock/src/directive/navigation-lock.directive.mjs +95 -0
  153. package/esm2022/navigation-lock/src/guard/navigation-lock.guard.mjs +23 -0
  154. package/esm2022/navigation-lock/src/navigation-lock.module.mjs +29 -0
  155. package/esm2022/no-noscript/src/no-noscript/no-noscript.directive.mjs +28 -0
  156. package/esm2022/no-noscript/src/no-noscript.module.mjs +19 -0
  157. package/esm2022/offcanvas/src/components/offcanvas/offcanvas.component.mjs +112 -0
  158. package/esm2022/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +19 -0
  159. package/esm2022/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +15 -0
  160. package/esm2022/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +144 -0
  161. package/esm2022/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +25 -0
  162. package/esm2022/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +19 -0
  163. package/esm2022/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +72 -0
  164. package/esm2022/offcanvas/src/offcanvas.module.mjs +76 -0
  165. package/esm2022/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +30 -0
  166. package/esm2022/ordinal-number/src/ordinal-number.module.mjs +25 -0
  167. package/esm2022/pagination/src/component/pagination/pagination.component.mjs +202 -0
  168. package/esm2022/pagination/src/pagination.module.mjs +25 -0
  169. package/esm2022/placeholder/src/placeholder/placeholder.component.mjs +27 -0
  170. package/esm2022/placeholder/src/placeholder-field/placeholder-field.directive.mjs +47 -0
  171. package/esm2022/placeholder/src/placeholder.module.mjs +20 -0
  172. package/esm2022/popover/src/component/popover.component.mjs +58 -0
  173. package/esm2022/popover/src/directives/popover/popover.directive.mjs +133 -0
  174. package/esm2022/popover/src/directives/popover-body/popover-body.directive.mjs +20 -0
  175. package/esm2022/popover/src/directives/popover-header/popover-header.directive.mjs +20 -0
  176. package/esm2022/popover/src/popover.module.mjs +37 -0
  177. package/esm2022/progress-bar/src/progress/progress.component.mjs +32 -0
  178. package/esm2022/progress-bar/src/progress-bar/progress-bar.component.mjs +122 -0
  179. package/esm2022/progress-bar/src/progress-bar.module.mjs +30 -0
  180. package/esm2022/range/src/component/range.component.mjs +26 -0
  181. package/esm2022/range/src/range.module.mjs +20 -0
  182. package/esm2022/range/src/value-accessor/range-value-accessor.mjs +63 -0
  183. package/esm2022/rating/src/component/rating.component.mjs +76 -0
  184. package/esm2022/rating/src/rating.module.mjs +25 -0
  185. package/esm2022/resizable/src/resizable/resizable.component.mjs +99 -0
  186. package/esm2022/resizable/src/resizable.module.mjs +30 -0
  187. package/esm2022/resizable/src/resize-glyph/resize-glyph.directive.mjs +220 -0
  188. package/esm2022/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +86 -0
  189. package/esm2022/scheduler/src/components/scheduler/scheduler.component.mjs +540 -0
  190. package/esm2022/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +17 -0
  191. package/esm2022/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +21 -0
  192. package/esm2022/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +21 -0
  193. package/esm2022/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +23 -0
  194. package/esm2022/scheduler/src/scheduler.module.mjs +46 -0
  195. package/esm2022/scheduler/src/services/timeline/timeline.service.mjs +66 -0
  196. package/esm2022/scrollspy/src/component/scrollspy.component.mjs +91 -0
  197. package/esm2022/scrollspy/src/directives/scrollspy.directive.mjs +17 -0
  198. package/esm2022/scrollspy/src/scrollspy.module.mjs +30 -0
  199. package/esm2022/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +32 -0
  200. package/esm2022/select/src/component/select.component.mjs +86 -0
  201. package/esm2022/select/src/select.module.mjs +32 -0
  202. package/esm2022/select/src/value-accessors/select-value-accessor.mjs +169 -0
  203. package/esm2022/select2/src/component/select2.component.mjs +86 -0
  204. package/esm2022/select2/src/directive/item-template.directive.mjs +20 -0
  205. package/esm2022/select2/src/select2.module.mjs +50 -0
  206. package/esm2022/snackbar/src/component/snackbar.component.mjs +37 -0
  207. package/esm2022/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +28 -0
  208. package/esm2022/snackbar/src/service/snackbar.service.mjs +46 -0
  209. package/esm2022/snackbar/src/snackbar.module.mjs +44 -0
  210. package/esm2022/spinner/src/spinner.component.mjs +44 -0
  211. package/esm2022/spinner/src/spinner.module.mjs +19 -0
  212. package/esm2022/splitter/src/element-at/element-at.pipe.mjs +22 -0
  213. package/esm2022/splitter/src/split-panel/split-panel.component.mjs +19 -0
  214. package/esm2022/splitter/src/splitter/splitter.component.mjs +207 -0
  215. package/esm2022/splitter/src/splitter.module.mjs +24 -0
  216. package/esm2022/tab-control/src/tab-control/tab-control.component.mjs +133 -0
  217. package/esm2022/tab-control/src/tab-control.module.mjs +47 -0
  218. package/esm2022/tab-control/src/tab-page/tab-page.component.mjs +31 -0
  219. package/esm2022/tab-control/src/tab-page-header/tab-page-header.directive.mjs +17 -0
  220. package/esm2022/table/src/component/table.component.mjs +48 -0
  221. package/esm2022/table/src/table.module.mjs +19 -0
  222. package/esm2022/timepicker/src/timepicker.component.mjs +118 -0
  223. package/esm2022/timepicker/src/timepicker.module.mjs +61 -0
  224. package/esm2022/toast/src/components/toast/toast.component.mjs +17 -0
  225. package/esm2022/toast/src/components/toast-body/toast-body.component.mjs +21 -0
  226. package/esm2022/toast/src/components/toast-container/toast-container.component.mjs +24 -0
  227. package/esm2022/toast/src/components/toast-header/toast-header.component.mjs +18 -0
  228. package/esm2022/toast/src/directives/toast-close/toast-close.directive.mjs +33 -0
  229. package/esm2022/toast/src/pipes/add-properties.pipe.mjs +18 -0
  230. package/esm2022/toast/src/services/toast/toast.service.mjs +57 -0
  231. package/esm2022/toast/src/toast.module.mjs +78 -0
  232. package/esm2022/toggle-button/src/component/toggle-button.component.mjs +159 -0
  233. package/esm2022/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +20 -0
  234. package/esm2022/toggle-button/src/toggle-button.module.mjs +35 -0
  235. package/esm2022/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +109 -0
  236. package/esm2022/tooltip/src/component/tooltip.component.mjs +39 -0
  237. package/esm2022/tooltip/src/directive/tooltip.directive.mjs +110 -0
  238. package/esm2022/tooltip/src/tooltip.module.mjs +36 -0
  239. package/esm2022/treeview/src/treeview/treeview.component.mjs +47 -0
  240. package/esm2022/treeview/src/treeview-item/treeview-item.component.mjs +28 -0
  241. package/esm2022/treeview/src/treeview.module.mjs +22 -0
  242. package/esm2022/typeahead/src/typeahead.component.mjs +83 -0
  243. package/esm2022/typeahead/src/typeahead.module.mjs +49 -0
  244. package/esm2022/user-agent/src/directive/user-agent.directive.mjs +99 -0
  245. package/esm2022/user-agent/src/user-agent.module.mjs +25 -0
  246. package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs +144 -0
  247. package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs.map +1 -0
  248. package/fesm2022/mintplayer-ng-bootstrap-alert.mjs +87 -0
  249. package/fesm2022/mintplayer-ng-bootstrap-alert.mjs.map +1 -0
  250. package/fesm2022/mintplayer-ng-bootstrap-badge.mjs +52 -0
  251. package/fesm2022/mintplayer-ng-bootstrap-badge.mjs.map +1 -0
  252. package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs +51 -0
  253. package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -0
  254. package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs +35 -0
  255. package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs.map +1 -0
  256. package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs +58 -0
  257. package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
  258. package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs +175 -0
  259. package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
  260. package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs +153 -0
  261. package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs.map +1 -0
  262. package/fesm2022/mintplayer-ng-bootstrap-card.mjs +60 -0
  263. package/fesm2022/mintplayer-ng-bootstrap-card.mjs.map +1 -0
  264. package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs +194 -0
  265. package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs.map +1 -0
  266. package/fesm2022/mintplayer-ng-bootstrap-close.mjs +43 -0
  267. package/fesm2022/mintplayer-ng-bootstrap-close.mjs.map +1 -0
  268. package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs +73 -0
  269. package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -0
  270. package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs +121 -0
  271. package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -0
  272. package/fesm2022/mintplayer-ng-bootstrap-copy.mjs +72 -0
  273. package/fesm2022/mintplayer-ng-bootstrap-copy.mjs.map +1 -0
  274. package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs +172 -0
  275. package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs.map +1 -0
  276. package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs +93 -0
  277. package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -0
  278. package/fesm2022/mintplayer-ng-bootstrap-dock.mjs +598 -0
  279. package/fesm2022/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
  280. package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs +41 -0
  281. package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +1 -0
  282. package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs +87 -0
  283. package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -0
  284. package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs +243 -0
  285. package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -0
  286. package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs +85 -0
  287. package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -0
  288. package/fesm2022/mintplayer-ng-bootstrap-enum.mjs +38 -0
  289. package/fesm2022/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
  290. package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs +175 -0
  291. package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -0
  292. package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs +41 -0
  293. package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs.map +1 -0
  294. package/fesm2022/mintplayer-ng-bootstrap-for.mjs +66 -0
  295. package/fesm2022/mintplayer-ng-bootstrap-for.mjs.map +1 -0
  296. package/fesm2022/mintplayer-ng-bootstrap-form.mjs +76 -0
  297. package/fesm2022/mintplayer-ng-bootstrap-form.mjs.map +1 -0
  298. package/fesm2022/mintplayer-ng-bootstrap-grid.mjs +141 -0
  299. package/fesm2022/mintplayer-ng-bootstrap-grid.mjs.map +1 -0
  300. package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
  301. package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
  302. package/fesm2022/mintplayer-ng-bootstrap-icon.mjs +56 -0
  303. package/fesm2022/mintplayer-ng-bootstrap-icon.mjs.map +1 -0
  304. package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs +33 -0
  305. package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
  306. package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs +218 -0
  307. package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
  308. package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs +60 -0
  309. package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs.map +1 -0
  310. package/fesm2022/mintplayer-ng-bootstrap-let.mjs +66 -0
  311. package/fesm2022/mintplayer-ng-bootstrap-let.mjs.map +1 -0
  312. package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs +63 -0
  313. package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs.map +1 -0
  314. package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs +147 -0
  315. package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs.map +1 -0
  316. package/fesm2022/mintplayer-ng-bootstrap-modal.mjs +259 -0
  317. package/fesm2022/mintplayer-ng-bootstrap-modal.mjs.map +1 -0
  318. package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs +151 -0
  319. package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -0
  320. package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs +724 -0
  321. package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs.map +1 -0
  322. package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs +145 -0
  323. package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs.map +1 -0
  324. package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs +48 -0
  325. package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs.map +1 -0
  326. package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs +452 -0
  327. package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -0
  328. package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs +56 -0
  329. package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs.map +1 -0
  330. package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs +229 -0
  331. package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs.map +1 -0
  332. package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs +89 -0
  333. package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -0
  334. package/fesm2022/mintplayer-ng-bootstrap-popover.mjs +256 -0
  335. package/fesm2022/mintplayer-ng-bootstrap-popover.mjs.map +1 -0
  336. package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs +182 -0
  337. package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -0
  338. package/fesm2022/mintplayer-ng-bootstrap-range.mjs +105 -0
  339. package/fesm2022/mintplayer-ng-bootstrap-range.mjs.map +1 -0
  340. package/fesm2022/mintplayer-ng-bootstrap-rating.mjs +103 -0
  341. package/fesm2022/mintplayer-ng-bootstrap-rating.mjs.map +1 -0
  342. package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs +346 -0
  343. package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs.map +1 -0
  344. package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs +813 -0
  345. package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -0
  346. package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs +161 -0
  347. package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -0
  348. package/fesm2022/mintplayer-ng-bootstrap-select.mjs +282 -0
  349. package/fesm2022/mintplayer-ng-bootstrap-select.mjs.map +1 -0
  350. package/fesm2022/mintplayer-ng-bootstrap-select2.mjs +152 -0
  351. package/fesm2022/mintplayer-ng-bootstrap-select2.mjs.map +1 -0
  352. package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs +144 -0
  353. package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -0
  354. package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs +65 -0
  355. package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs.map +1 -0
  356. package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs +268 -0
  357. package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs.map +1 -0
  358. package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs +214 -0
  359. package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -0
  360. package/fesm2022/mintplayer-ng-bootstrap-table.mjs +69 -0
  361. package/fesm2022/mintplayer-ng-bootstrap-table.mjs.map +1 -0
  362. package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs +181 -0
  363. package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -0
  364. package/fesm2022/mintplayer-ng-bootstrap-toast.mjs +236 -0
  365. package/fesm2022/mintplayer-ng-bootstrap-toast.mjs.map +1 -0
  366. package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs +313 -0
  367. package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -0
  368. package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs +181 -0
  369. package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -0
  370. package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs +91 -0
  371. package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs.map +1 -0
  372. package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs +134 -0
  373. package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -0
  374. package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs +125 -0
  375. package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs.map +1 -0
  376. package/fesm2022/mintplayer-ng-bootstrap.mjs +144 -0
  377. package/fesm2022/mintplayer-ng-bootstrap.mjs.map +1 -0
  378. package/file-upload/src/component/file-upload.component.d.ts +1 -1
  379. package/for/src/for.directive.d.ts +1 -1
  380. package/grid/src/component/grid.component.d.ts +1 -1
  381. package/grid/src/directives/column/column.directive.d.ts +1 -1
  382. package/icon/src/icon.component.d.ts +1 -1
  383. package/instance-of/src/directives/instanceof-case.directive.d.ts +1 -1
  384. package/instance-of/src/directives/instanceof.directive.d.ts +1 -1
  385. package/lazy-loading/src/lazy-load/lazy-load.directive.d.ts +1 -1
  386. package/let/directive/let.directive.d.ts +1 -1
  387. package/modal/src/components/modal-host/modal-host.component.d.ts +1 -1
  388. package/multiselect/src/component/multiselect.component.d.ts +1 -1
  389. package/navbar/src/navbar/navbar.component.d.ts +1 -1
  390. package/navbar/src/navbar-brand/navbar-brand.component.d.ts +1 -1
  391. package/navbar/src/navbar-content/navbar-content.directive.d.ts +1 -1
  392. package/navbar/src/navbar-dropdown/navbar-dropdown.component.d.ts +1 -1
  393. package/navbar/src/navbar-nav/navbar-nav.component.d.ts +1 -1
  394. package/navbar/src/navbar-toggler/navbar-toggler.component.d.ts +1 -1
  395. package/navigation-lock/src/directive/navigation-lock.directive.d.ts +1 -1
  396. package/navigation-lock/src/guard/navigation-lock.guard.d.ts +2 -2
  397. package/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +1 -1
  398. package/offcanvas/src/components/offcanvas-body/offcanvas-body.component.d.ts +1 -1
  399. package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +1 -1
  400. package/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.d.ts +1 -1
  401. package/package.json +218 -353
  402. package/pagination/src/component/pagination/pagination.component.d.ts +1 -1
  403. package/placeholder/src/placeholder/placeholder.component.d.ts +1 -1
  404. package/popover/src/component/popover.component.d.ts +1 -1
  405. package/popover/src/directives/popover/popover.directive.d.ts +1 -1
  406. package/progress-bar/src/progress/progress.component.d.ts +1 -1
  407. package/progress-bar/src/progress-bar/progress-bar.component.d.ts +1 -1
  408. package/range/src/component/range.component.d.ts +1 -1
  409. package/rating/src/component/rating.component.d.ts +1 -1
  410. package/resizable/src/resizable/resizable.component.d.ts +1 -1
  411. package/resizable/src/resize-glyph/resize-glyph.directive.d.ts +1 -1
  412. package/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.d.ts +1 -1
  413. package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
  414. package/select/src/component/select.component.d.ts +1 -1
  415. package/select/src/value-accessors/select-value-accessor.d.ts +2 -2
  416. package/select2/src/component/select2.component.d.ts +1 -1
  417. package/snackbar/src/directives/snackbar-close/snackbar-close.directive.d.ts +1 -1
  418. package/spinner/src/spinner.component.d.ts +1 -1
  419. package/splitter/src/splitter/splitter.component.d.ts +1 -1
  420. package/tab-control/src/tab-control/tab-control.component.d.ts +1 -1
  421. package/tab-control/src/tab-page/tab-page.component.d.ts +1 -1
  422. package/table/src/component/table.component.d.ts +1 -1
  423. package/timepicker/src/timepicker.component.d.ts +1 -1
  424. package/toast/src/components/toast/toast.component.d.ts +1 -1
  425. package/toast/src/directives/toast-close/toast-close.directive.d.ts +1 -1
  426. package/toggle-button/src/component/toggle-button.component.d.ts +1 -1
  427. package/tooltip/src/component/tooltip.component.d.ts +1 -1
  428. package/tooltip/src/directive/tooltip.directive.d.ts +1 -1
  429. package/treeview/src/treeview/treeview.component.d.ts +1 -1
  430. package/typeahead/src/typeahead.component.d.ts +1 -1
  431. package/esm2020/accordion/src/accordion/accordion.component.mjs +0 -26
  432. package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +0 -68
  433. package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +0 -21
  434. package/esm2020/accordion/src/accordion.module.mjs +0 -38
  435. package/esm2020/alert/src/alert/alert.component.mjs +0 -41
  436. package/esm2020/alert/src/alert-close/alert-close.component.mjs +0 -20
  437. package/esm2020/alert/src/alert.module.mjs +0 -27
  438. package/esm2020/badge/src/badge.component.mjs +0 -30
  439. package/esm2020/badge/src/badge.module.mjs +0 -18
  440. package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +0 -13
  441. package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +0 -18
  442. package/esm2020/breadcrumb/src/breadcrumb.module.mjs +0 -19
  443. package/esm2020/button-group/src/button-group/button-group.component.mjs +0 -13
  444. package/esm2020/button-group/src/button-group.module.mjs +0 -18
  445. package/esm2020/button-type/src/button-type/button-type.directive.mjs +0 -30
  446. package/esm2020/button-type/src/button-type/button-type.module.mjs +0 -24
  447. package/esm2020/calendar/src/calendar.component.mjs +0 -111
  448. package/esm2020/calendar/src/calendar.module.mjs +0 -39
  449. package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +0 -24
  450. package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +0 -21
  451. package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +0 -24
  452. package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
  453. package/esm2020/calendar-month/src/service/calendar-month.service.mjs +0 -94
  454. package/esm2020/card/src/card/card.component.mjs +0 -16
  455. package/esm2020/card/src/card-header/card-header.component.mjs +0 -16
  456. package/esm2020/card/src/card.module.mjs +0 -27
  457. package/esm2020/carousel/src/carousel/carousel.component.mjs +0 -137
  458. package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +0 -24
  459. package/esm2020/carousel/src/carousel.module.mjs +0 -37
  460. package/esm2020/close/src/close.component.mjs +0 -21
  461. package/esm2020/close/src/close.module.mjs +0 -18
  462. package/esm2020/code-snippet/src/code-snippet.component.mjs +0 -34
  463. package/esm2020/code-snippet/src/code-snippet.module.mjs +0 -36
  464. package/esm2020/context-menu/src/context-menu.directive.mjs +0 -84
  465. package/esm2020/context-menu/src/context-menu.module.mjs +0 -34
  466. package/esm2020/copy/src/copy.directive.mjs +0 -45
  467. package/esm2020/copy/src/copy.module.mjs +0 -24
  468. package/esm2020/datatable/src/datatable/datatable.component.mjs +0 -57
  469. package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +0 -19
  470. package/esm2020/datatable/src/datatable.module.mjs +0 -46
  471. package/esm2020/datatable/src/row-template/row-template.directive.mjs +0 -19
  472. package/esm2020/datepicker/src/datepicker.component.mjs +0 -49
  473. package/esm2020/datepicker/src/datepicker.module.mjs +0 -40
  474. package/esm2020/dock/src/dock/dock.component.mjs +0 -93
  475. package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +0 -60
  476. package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +0 -27
  477. package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +0 -277
  478. package/esm2020/dock/src/dock.module.mjs +0 -63
  479. package/esm2020/dock/src/services/dock/dock.service.mjs +0 -56
  480. package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +0 -68
  481. package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +0 -114
  482. package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -31
  483. package/esm2020/dropdown/src/dropdown.module.mjs +0 -43
  484. package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +0 -19
  485. package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +0 -18
  486. package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +0 -19
  487. package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +0 -42
  488. package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +0 -26
  489. package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +0 -58
  490. package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +0 -24
  491. package/esm2020/enum/src/service/enum.service.mjs +0 -31
  492. package/esm2020/file-upload/src/component/file-upload.component.mjs +0 -89
  493. package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +0 -18
  494. package/esm2020/file-upload/src/file-upload.module.mjs +0 -50
  495. package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +0 -23
  496. package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +0 -20
  497. package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +0 -18
  498. package/esm2020/for/src/for.directive.mjs +0 -38
  499. package/esm2020/for/src/for.module.mjs +0 -24
  500. package/esm2020/form/src/form/form.component.mjs +0 -20
  501. package/esm2020/form/src/form-control/form-control.directive.mjs +0 -19
  502. package/esm2020/form/src/form-group/form-group.directive.mjs +0 -19
  503. package/esm2020/form/src/form.module.mjs +0 -20
  504. package/esm2020/grid/src/component/grid.component.mjs +0 -32
  505. package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +0 -19
  506. package/esm2020/grid/src/directives/column/column.directive.mjs +0 -56
  507. package/esm2020/grid/src/directives/row/row.directive.mjs +0 -19
  508. package/esm2020/grid/src/grid.module.mjs +0 -21
  509. package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +0 -11
  510. package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +0 -18
  511. package/esm2020/icon/src/icon.component.mjs +0 -34
  512. package/esm2020/icon/src/icon.module.mjs +0 -18
  513. package/esm2020/input-group/src/input-group/input-group.component.mjs +0 -11
  514. package/esm2020/input-group/src/input-group.module.mjs +0 -18
  515. package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +0 -47
  516. package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +0 -30
  517. package/esm2020/instance-of/src/directives/instanceof.directive.mjs +0 -62
  518. package/esm2020/instance-of/src/instance-of.module.mjs +0 -37
  519. package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +0 -17
  520. package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +0 -32
  521. package/esm2020/lazy-loading/src/lazy-loading.module.mjs +0 -24
  522. package/esm2020/let/directive/let.directive.mjs +0 -38
  523. package/esm2020/let/let.module.mjs +0 -24
  524. package/esm2020/lib/pipes/font-color/font-color.module.mjs +0 -24
  525. package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +0 -26
  526. package/esm2020/lib/pipes/in-list/in-list.module.mjs +0 -24
  527. package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +0 -16
  528. package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +0 -24
  529. package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +0 -16
  530. package/esm2020/list-group/src/list-group/list-group.component.mjs +0 -19
  531. package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +0 -17
  532. package/esm2020/list-group/src/list-group.module.mjs +0 -27
  533. package/esm2020/markdown/src/bold/bold.pipe.mjs +0 -30
  534. package/esm2020/markdown/src/italic/italic.pipe.mjs +0 -30
  535. package/esm2020/markdown/src/markdown.module.mjs +0 -39
  536. package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +0 -30
  537. package/esm2020/markdown/src/underline/underline.pipe.mjs +0 -30
  538. package/esm2020/modal/src/components/modal/modal.component.mjs +0 -21
  539. package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +0 -83
  540. package/esm2020/modal/src/directives/modal/modal.directive.mjs +0 -18
  541. package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +0 -19
  542. package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +0 -24
  543. package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +0 -19
  544. package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +0 -19
  545. package/esm2020/modal/src/modal.module.mjs +0 -75
  546. package/esm2020/multiselect/src/component/multiselect.component.mjs +0 -45
  547. package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +0 -18
  548. package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +0 -18
  549. package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +0 -18
  550. package/esm2020/multiselect/src/multiselect.module.mjs +0 -63
  551. package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -38
  552. package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +0 -18
  553. package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +0 -34
  554. package/esm2020/navbar/src/navbar/navbar.component.mjs +0 -141
  555. package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +0 -20
  556. package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +0 -72
  557. package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +0 -143
  558. package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +0 -104
  559. package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +0 -69
  560. package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +0 -47
  561. package/esm2020/navbar/src/navbar.module.mjs +0 -91
  562. package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +0 -94
  563. package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +0 -22
  564. package/esm2020/navigation-lock/src/navigation-lock.module.mjs +0 -28
  565. package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +0 -27
  566. package/esm2020/no-noscript/src/no-noscript.module.mjs +0 -18
  567. package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +0 -111
  568. package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +0 -18
  569. package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +0 -14
  570. package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +0 -143
  571. package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +0 -24
  572. package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +0 -18
  573. package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +0 -71
  574. package/esm2020/offcanvas/src/offcanvas.module.mjs +0 -75
  575. package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +0 -29
  576. package/esm2020/ordinal-number/src/ordinal-number.module.mjs +0 -24
  577. package/esm2020/pagination/src/component/pagination/pagination.component.mjs +0 -201
  578. package/esm2020/pagination/src/pagination.module.mjs +0 -24
  579. package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +0 -26
  580. package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +0 -46
  581. package/esm2020/placeholder/src/placeholder.module.mjs +0 -19
  582. package/esm2020/popover/src/component/popover.component.mjs +0 -57
  583. package/esm2020/popover/src/directives/popover/popover.directive.mjs +0 -132
  584. package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +0 -19
  585. package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +0 -19
  586. package/esm2020/popover/src/popover.module.mjs +0 -36
  587. package/esm2020/progress-bar/src/progress/progress.component.mjs +0 -31
  588. package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +0 -121
  589. package/esm2020/progress-bar/src/progress-bar.module.mjs +0 -29
  590. package/esm2020/range/src/component/range.component.mjs +0 -25
  591. package/esm2020/range/src/range.module.mjs +0 -19
  592. package/esm2020/range/src/value-accessor/range-value-accessor.mjs +0 -62
  593. package/esm2020/rating/src/component/rating.component.mjs +0 -75
  594. package/esm2020/rating/src/rating.module.mjs +0 -24
  595. package/esm2020/resizable/src/resizable/resizable.component.mjs +0 -98
  596. package/esm2020/resizable/src/resizable.module.mjs +0 -29
  597. package/esm2020/resizable/src/resize-glyph/resize-glyph.directive.mjs +0 -219
  598. package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +0 -85
  599. package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +0 -539
  600. package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +0 -16
  601. package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +0 -20
  602. package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +0 -20
  603. package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +0 -22
  604. package/esm2020/scheduler/src/scheduler.module.mjs +0 -45
  605. package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +0 -65
  606. package/esm2020/scrollspy/src/component/scrollspy.component.mjs +0 -90
  607. package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +0 -16
  608. package/esm2020/scrollspy/src/scrollspy.module.mjs +0 -29
  609. package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +0 -31
  610. package/esm2020/select/src/component/select.component.mjs +0 -85
  611. package/esm2020/select/src/select.module.mjs +0 -31
  612. package/esm2020/select/src/value-accessors/select-value-accessor.mjs +0 -167
  613. package/esm2020/select2/src/component/select2.component.mjs +0 -85
  614. package/esm2020/select2/src/directive/item-template.directive.mjs +0 -19
  615. package/esm2020/select2/src/select2.module.mjs +0 -49
  616. package/esm2020/snackbar/src/component/snackbar.component.mjs +0 -36
  617. package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +0 -27
  618. package/esm2020/snackbar/src/service/snackbar.service.mjs +0 -45
  619. package/esm2020/snackbar/src/snackbar.module.mjs +0 -43
  620. package/esm2020/spinner/src/spinner.component.mjs +0 -43
  621. package/esm2020/spinner/src/spinner.module.mjs +0 -18
  622. package/esm2020/splitter/src/element-at/element-at.pipe.mjs +0 -21
  623. package/esm2020/splitter/src/split-panel/split-panel.component.mjs +0 -18
  624. package/esm2020/splitter/src/splitter/splitter.component.mjs +0 -206
  625. package/esm2020/splitter/src/splitter.module.mjs +0 -23
  626. package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +0 -132
  627. package/esm2020/tab-control/src/tab-control.module.mjs +0 -46
  628. package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +0 -30
  629. package/esm2020/tab-control/src/tab-page-header/tab-page-header.directive.mjs +0 -16
  630. package/esm2020/table/src/component/table.component.mjs +0 -47
  631. package/esm2020/table/src/table.module.mjs +0 -18
  632. package/esm2020/timepicker/src/timepicker.component.mjs +0 -117
  633. package/esm2020/timepicker/src/timepicker.module.mjs +0 -60
  634. package/esm2020/toast/src/components/toast/toast.component.mjs +0 -16
  635. package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +0 -20
  636. package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +0 -23
  637. package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +0 -17
  638. package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +0 -32
  639. package/esm2020/toast/src/pipes/add-properties.pipe.mjs +0 -17
  640. package/esm2020/toast/src/services/toast/toast.service.mjs +0 -56
  641. package/esm2020/toast/src/toast.module.mjs +0 -77
  642. package/esm2020/toggle-button/src/component/toggle-button.component.mjs +0 -158
  643. package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +0 -19
  644. package/esm2020/toggle-button/src/toggle-button.module.mjs +0 -34
  645. package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +0 -108
  646. package/esm2020/tooltip/src/component/tooltip.component.mjs +0 -38
  647. package/esm2020/tooltip/src/directive/tooltip.directive.mjs +0 -109
  648. package/esm2020/tooltip/src/tooltip.module.mjs +0 -35
  649. package/esm2020/treeview/src/treeview/treeview.component.mjs +0 -46
  650. package/esm2020/treeview/src/treeview-item/treeview-item.component.mjs +0 -27
  651. package/esm2020/treeview/src/treeview.module.mjs +0 -21
  652. package/esm2020/typeahead/src/typeahead.component.mjs +0 -82
  653. package/esm2020/typeahead/src/typeahead.module.mjs +0 -48
  654. package/esm2020/user-agent/src/directive/user-agent.directive.mjs +0 -98
  655. package/esm2020/user-agent/src/user-agent.module.mjs +0 -24
  656. package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +0 -144
  657. package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
  658. package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +0 -87
  659. package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
  660. package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +0 -52
  661. package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
  662. package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
  663. package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
  664. package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +0 -35
  665. package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
  666. package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +0 -58
  667. package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
  668. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +0 -178
  669. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
  670. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +0 -153
  671. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
  672. package/fesm2015/mintplayer-ng-bootstrap-card.mjs +0 -60
  673. package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +0 -1
  674. package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +0 -196
  675. package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
  676. package/fesm2015/mintplayer-ng-bootstrap-close.mjs +0 -43
  677. package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +0 -1
  678. package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
  679. package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
  680. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +0 -123
  681. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
  682. package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +0 -75
  683. package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
  684. package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +0 -171
  685. package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
  686. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
  687. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
  688. package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +0 -601
  689. package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
  690. package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
  691. package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
  692. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -89
  693. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
  694. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +0 -248
  695. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
  696. package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
  697. package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
  698. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +0 -38
  699. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
  700. package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
  701. package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
  702. package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +0 -43
  703. package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
  704. package/fesm2015/mintplayer-ng-bootstrap-for.mjs +0 -66
  705. package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +0 -1
  706. package/fesm2015/mintplayer-ng-bootstrap-form.mjs +0 -76
  707. package/fesm2015/mintplayer-ng-bootstrap-form.mjs.map +0 -1
  708. package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +0 -141
  709. package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
  710. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
  711. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
  712. package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +0 -56
  713. package/fesm2015/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
  714. package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +0 -33
  715. package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
  716. package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +0 -222
  717. package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
  718. package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
  719. package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
  720. package/fesm2015/mintplayer-ng-bootstrap-let.mjs +0 -66
  721. package/fesm2015/mintplayer-ng-bootstrap-let.mjs.map +0 -1
  722. package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +0 -63
  723. package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
  724. package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +0 -147
  725. package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
  726. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +0 -263
  727. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
  728. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
  729. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
  730. package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +0 -735
  731. package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
  732. package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -148
  733. package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
  734. package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +0 -50
  735. package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
  736. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +0 -456
  737. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
  738. package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
  739. package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
  740. package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +0 -229
  741. package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
  742. package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
  743. package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
  744. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +0 -261
  745. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
  746. package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
  747. package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
  748. package/fesm2015/mintplayer-ng-bootstrap-range.mjs +0 -105
  749. package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +0 -1
  750. package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +0 -103
  751. package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
  752. package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs +0 -338
  753. package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
  754. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
  755. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
  756. package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +0 -166
  757. package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
  758. package/fesm2015/mintplayer-ng-bootstrap-select.mjs +0 -284
  759. package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +0 -1
  760. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +0 -152
  761. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
  762. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +0 -147
  763. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
  764. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +0 -65
  765. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
  766. package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +0 -268
  767. package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
  768. package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
  769. package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
  770. package/fesm2015/mintplayer-ng-bootstrap-table.mjs +0 -69
  771. package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +0 -1
  772. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
  773. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
  774. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +0 -238
  775. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
  776. package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
  777. package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
  778. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +0 -185
  779. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
  780. package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs +0 -93
  781. package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
  782. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
  783. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
  784. package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +0 -127
  785. package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
  786. package/fesm2015/mintplayer-ng-bootstrap.mjs +0 -144
  787. package/fesm2015/mintplayer-ng-bootstrap.mjs.map +0 -1
  788. package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +0 -144
  789. package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
  790. package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +0 -87
  791. package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
  792. package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +0 -52
  793. package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
  794. package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
  795. package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
  796. package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +0 -35
  797. package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
  798. package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +0 -58
  799. package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
  800. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +0 -175
  801. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
  802. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +0 -153
  803. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
  804. package/fesm2020/mintplayer-ng-bootstrap-card.mjs +0 -60
  805. package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +0 -1
  806. package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +0 -194
  807. package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
  808. package/fesm2020/mintplayer-ng-bootstrap-close.mjs +0 -43
  809. package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +0 -1
  810. package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
  811. package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
  812. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +0 -121
  813. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
  814. package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +0 -72
  815. package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
  816. package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +0 -172
  817. package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
  818. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
  819. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
  820. package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +0 -598
  821. package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
  822. package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
  823. package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
  824. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -87
  825. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
  826. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +0 -243
  827. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
  828. package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
  829. package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
  830. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +0 -38
  831. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
  832. package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
  833. package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
  834. package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +0 -41
  835. package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
  836. package/fesm2020/mintplayer-ng-bootstrap-for.mjs +0 -66
  837. package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +0 -1
  838. package/fesm2020/mintplayer-ng-bootstrap-form.mjs +0 -76
  839. package/fesm2020/mintplayer-ng-bootstrap-form.mjs.map +0 -1
  840. package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +0 -141
  841. package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
  842. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
  843. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
  844. package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +0 -56
  845. package/fesm2020/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
  846. package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +0 -33
  847. package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
  848. package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +0 -218
  849. package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
  850. package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
  851. package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
  852. package/fesm2020/mintplayer-ng-bootstrap-let.mjs +0 -66
  853. package/fesm2020/mintplayer-ng-bootstrap-let.mjs.map +0 -1
  854. package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +0 -63
  855. package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
  856. package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +0 -147
  857. package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
  858. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +0 -259
  859. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
  860. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
  861. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
  862. package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +0 -724
  863. package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
  864. package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -145
  865. package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
  866. package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +0 -48
  867. package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
  868. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +0 -452
  869. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
  870. package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
  871. package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
  872. package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +0 -229
  873. package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
  874. package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
  875. package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
  876. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +0 -256
  877. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
  878. package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
  879. package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
  880. package/fesm2020/mintplayer-ng-bootstrap-range.mjs +0 -105
  881. package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +0 -1
  882. package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +0 -103
  883. package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
  884. package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs +0 -346
  885. package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
  886. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
  887. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
  888. package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +0 -161
  889. package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
  890. package/fesm2020/mintplayer-ng-bootstrap-select.mjs +0 -282
  891. package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +0 -1
  892. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +0 -152
  893. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
  894. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +0 -144
  895. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
  896. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +0 -65
  897. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
  898. package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +0 -268
  899. package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
  900. package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
  901. package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
  902. package/fesm2020/mintplayer-ng-bootstrap-table.mjs +0 -69
  903. package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +0 -1
  904. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
  905. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
  906. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +0 -236
  907. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
  908. package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
  909. package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
  910. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +0 -181
  911. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
  912. package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs +0 -91
  913. package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
  914. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
  915. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
  916. package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +0 -125
  917. package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
  918. package/fesm2020/mintplayer-ng-bootstrap.mjs +0 -144
  919. package/fesm2020/mintplayer-ng-bootstrap.mjs.map +0 -1
  920. /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
  921. /package/{esm2020 → esm2022}/accordion/mintplayer-ng-bootstrap-accordion.mjs +0 -0
  922. /package/{esm2020 → esm2022}/accordion/src/index.mjs +0 -0
  923. /package/{esm2020 → esm2022}/alert/index.mjs +0 -0
  924. /package/{esm2020 → esm2022}/alert/mintplayer-ng-bootstrap-alert.mjs +0 -0
  925. /package/{esm2020 → esm2022}/alert/src/index.mjs +0 -0
  926. /package/{esm2020 → esm2022}/badge/index.mjs +0 -0
  927. /package/{esm2020 → esm2022}/badge/mintplayer-ng-bootstrap-badge.mjs +0 -0
  928. /package/{esm2020 → esm2022}/badge/src/index.mjs +0 -0
  929. /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
  930. /package/{esm2020 → esm2022}/breadcrumb/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -0
  931. /package/{esm2020 → esm2022}/breadcrumb/src/index.mjs +0 -0
  932. /package/{esm2020 → esm2022}/button-group/index.mjs +0 -0
  933. /package/{esm2020 → esm2022}/button-group/mintplayer-ng-bootstrap-button-group.mjs +0 -0
  934. /package/{esm2020 → esm2022}/button-group/src/index.mjs +0 -0
  935. /package/{esm2020 → esm2022}/button-type/index.mjs +0 -0
  936. /package/{esm2020 → esm2022}/button-type/mintplayer-ng-bootstrap-button-type.mjs +0 -0
  937. /package/{esm2020 → esm2022}/button-type/src/index.mjs +0 -0
  938. /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
  939. /package/{esm2020 → esm2022}/calendar/mintplayer-ng-bootstrap-calendar.mjs +0 -0
  940. /package/{esm2020 → esm2022}/calendar/src/index.mjs +0 -0
  941. /package/{esm2020 → esm2022}/calendar-month/index.mjs +0 -0
  942. /package/{esm2020 → esm2022}/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +0 -0
  943. /package/{esm2020 → esm2022}/calendar-month/src/index.mjs +0 -0
  944. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/date-day-of-month.mjs +0 -0
  945. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/first-and-last-date.mjs +0 -0
  946. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/index.mjs +0 -0
  947. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/week.mjs +0 -0
  948. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/weekday.mjs +0 -0
  949. /package/{esm2020 → esm2022}/calendar-month/src/pipes/index.mjs +0 -0
  950. /package/{esm2020 → esm2022}/calendar-month/src/pipes/month-name/index.mjs +0 -0
  951. /package/{esm2020 → esm2022}/calendar-month/src/pipes/weekday-name/index.mjs +0 -0
  952. /package/{esm2020 → esm2022}/card/index.mjs +0 -0
  953. /package/{esm2020 → esm2022}/card/mintplayer-ng-bootstrap-card.mjs +0 -0
  954. /package/{esm2020 → esm2022}/card/src/index.mjs +0 -0
  955. /package/{esm2020 → esm2022}/carousel/index.mjs +0 -0
  956. /package/{esm2020 → esm2022}/carousel/mintplayer-ng-bootstrap-carousel.mjs +0 -0
  957. /package/{esm2020 → esm2022}/carousel/src/index.mjs +0 -0
  958. /package/{esm2020 → esm2022}/close/index.mjs +0 -0
  959. /package/{esm2020 → esm2022}/close/mintplayer-ng-bootstrap-close.mjs +0 -0
  960. /package/{esm2020 → esm2022}/close/src/index.mjs +0 -0
  961. /package/{esm2020 → esm2022}/code-snippet/index.mjs +0 -0
  962. /package/{esm2020 → esm2022}/code-snippet/mintplayer-ng-bootstrap-code-snippet.mjs +0 -0
  963. /package/{esm2020 → esm2022}/code-snippet/src/index.mjs +0 -0
  964. /package/{esm2020 → esm2022}/context-menu/index.mjs +0 -0
  965. /package/{esm2020 → esm2022}/context-menu/mintplayer-ng-bootstrap-context-menu.mjs +0 -0
  966. /package/{esm2020 → esm2022}/context-menu/src/index.mjs +0 -0
  967. /package/{esm2020 → esm2022}/copy/index.mjs +0 -0
  968. /package/{esm2020 → esm2022}/copy/mintplayer-ng-bootstrap-copy.mjs +0 -0
  969. /package/{esm2020 → esm2022}/copy/src/index.mjs +0 -0
  970. /package/{esm2020 → esm2022}/datatable/index.mjs +0 -0
  971. /package/{esm2020 → esm2022}/datatable/mintplayer-ng-bootstrap-datatable.mjs +0 -0
  972. /package/{esm2020 → esm2022}/datatable/src/datatable-column/datatable-column-metadata.mjs +0 -0
  973. /package/{esm2020 → esm2022}/datatable/src/datatable-column/index.mjs +0 -0
  974. /package/{esm2020 → esm2022}/datatable/src/datatable-settings.mjs +0 -0
  975. /package/{esm2020 → esm2022}/datatable/src/index.mjs +0 -0
  976. /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
  977. /package/{esm2020 → esm2022}/datepicker/mintplayer-ng-bootstrap-datepicker.mjs +0 -0
  978. /package/{esm2020 → esm2022}/datepicker/src/index.mjs +0 -0
  979. /package/{esm2020 → esm2022}/dock/index.mjs +0 -0
  980. /package/{esm2020 → esm2022}/dock/mintplayer-ng-bootstrap-dock.mjs +0 -0
  981. /package/{esm2020 → esm2022}/dock/src/enums/index.mjs +0 -0
  982. /package/{esm2020 → esm2022}/dock/src/enums/pane-type.enum.mjs +0 -0
  983. /package/{esm2020 → esm2022}/dock/src/index.mjs +0 -0
  984. /package/{esm2020 → esm2022}/dock/src/interfaces/dock-layout.mjs +0 -0
  985. /package/{esm2020 → esm2022}/dock/src/interfaces/drag-operation.mjs +0 -0
  986. /package/{esm2020 → esm2022}/dock/src/interfaces/index.mjs +0 -0
  987. /package/{esm2020 → esm2022}/dock/src/interfaces/point.mjs +0 -0
  988. /package/{esm2020 → esm2022}/dock/src/interfaces/remove-from-pane-result.mjs +0 -0
  989. /package/{esm2020 → esm2022}/dock/src/interfaces/size.mjs +0 -0
  990. /package/{esm2020 → esm2022}/dock/src/panes/content-pane.mjs +0 -0
  991. /package/{esm2020 → esm2022}/dock/src/panes/dock-pane.mjs +0 -0
  992. /package/{esm2020 → esm2022}/dock/src/panes/document-host-pane.mjs +0 -0
  993. /package/{esm2020 → esm2022}/dock/src/panes/floating-pane.mjs +0 -0
  994. /package/{esm2020 → esm2022}/dock/src/panes/index.mjs +0 -0
  995. /package/{esm2020 → esm2022}/dock/src/panes/split-pane.mjs +0 -0
  996. /package/{esm2020 → esm2022}/dock/src/panes/tab-group-pane.mjs +0 -0
  997. /package/{esm2020 → esm2022}/dock/src/services/index.mjs +0 -0
  998. /package/{esm2020 → esm2022}/dock/src/types/split-pane-orientation.type.mjs +0 -0
  999. /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
  1000. /package/{esm2020 → esm2022}/dropdown/mintplayer-ng-bootstrap-dropdown.mjs +0 -0
  1001. /package/{esm2020 → esm2022}/dropdown/src/index.mjs +0 -0
  1002. /package/{esm2020 → esm2022}/dropdown-divider/index.mjs +0 -0
  1003. /package/{esm2020 → esm2022}/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -0
  1004. /package/{esm2020 → esm2022}/dropdown-divider/src/index.mjs +0 -0
  1005. /package/{esm2020 → esm2022}/dropdown-menu/index.mjs +0 -0
  1006. /package/{esm2020 → esm2022}/dropdown-menu/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -0
  1007. /package/{esm2020 → esm2022}/dropdown-menu/src/index.mjs +0 -0
  1008. /package/{esm2020 → esm2022}/enhanced-paste/index.mjs +0 -0
  1009. /package/{esm2020 → esm2022}/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -0
  1010. /package/{esm2020 → esm2022}/enhanced-paste/src/index.mjs +0 -0
  1011. /package/{esm2020 → esm2022}/enhanced-paste/src/interfaces/number-overflow.mjs +0 -0
  1012. /package/{esm2020 → esm2022}/enum/index.mjs +0 -0
  1013. /package/{esm2020 → esm2022}/enum/mintplayer-ng-bootstrap-enum.mjs +0 -0
  1014. /package/{esm2020 → esm2022}/enum/src/index.mjs +0 -0
  1015. /package/{esm2020 → esm2022}/enum/src/interfaces/enum-item.mjs +0 -0
  1016. /package/{esm2020 → esm2022}/enum/src/interfaces/index.mjs +0 -0
  1017. /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
  1018. /package/{esm2020 → esm2022}/file-upload/mintplayer-ng-bootstrap-file-upload.mjs +0 -0
  1019. /package/{esm2020 → esm2022}/file-upload/src/file-upload.mjs +0 -0
  1020. /package/{esm2020 → esm2022}/file-upload/src/index.mjs +0 -0
  1021. /package/{esm2020 → esm2022}/file-upload/src/pipes/index.mjs +0 -0
  1022. /package/{esm2020 → esm2022}/floating-labels/index.mjs +0 -0
  1023. /package/{esm2020 → esm2022}/floating-labels/mintplayer-ng-bootstrap-floating-labels.mjs +0 -0
  1024. /package/{esm2020 → esm2022}/floating-labels/src/index.mjs +0 -0
  1025. /package/{esm2020 → esm2022}/for/index.mjs +0 -0
  1026. /package/{esm2020 → esm2022}/for/mintplayer-ng-bootstrap-for.mjs +0 -0
  1027. /package/{esm2020 → esm2022}/for/src/index.mjs +0 -0
  1028. /package/{esm2020 → esm2022}/form/index.mjs +0 -0
  1029. /package/{esm2020 → esm2022}/form/mintplayer-ng-bootstrap-form.mjs +0 -0
  1030. /package/{esm2020 → esm2022}/form/src/index.mjs +0 -0
  1031. /package/{esm2020 → esm2022}/grid/index.mjs +0 -0
  1032. /package/{esm2020 → esm2022}/grid/mintplayer-ng-bootstrap-grid.mjs +0 -0
  1033. /package/{esm2020 → esm2022}/grid/src/directives/index.mjs +0 -0
  1034. /package/{esm2020 → esm2022}/grid/src/index.mjs +0 -0
  1035. /package/{esm2020 → esm2022}/grid/src/interfaces/column-definition.mjs +0 -0
  1036. /package/{esm2020 → esm2022}/grid/src/interfaces/index.mjs +0 -0
  1037. /package/{esm2020 → esm2022}/has-overlay/index.mjs +0 -0
  1038. /package/{esm2020 → esm2022}/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +0 -0
  1039. /package/{esm2020 → esm2022}/has-overlay/src/index.mjs +0 -0
  1040. /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
  1041. /package/{esm2020 → esm2022}/icon/mintplayer-ng-bootstrap-icon.mjs +0 -0
  1042. /package/{esm2020 → esm2022}/index.mjs +0 -0
  1043. /package/{esm2020 → esm2022}/input-group/index.mjs +0 -0
  1044. /package/{esm2020 → esm2022}/input-group/mintplayer-ng-bootstrap-input-group.mjs +0 -0
  1045. /package/{esm2020 → esm2022}/input-group/src/index.mjs +0 -0
  1046. /package/{esm2020 → esm2022}/instance-of/index.mjs +0 -0
  1047. /package/{esm2020 → esm2022}/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +0 -0
  1048. /package/{esm2020 → esm2022}/instance-of/src/directives/index.mjs +0 -0
  1049. /package/{esm2020 → esm2022}/instance-of/src/directives/switch-view.mjs +0 -0
  1050. /package/{esm2020 → esm2022}/instance-of/src/index.mjs +0 -0
  1051. /package/{esm2020 → esm2022}/instance-of/src/interfaces/index.mjs +0 -0
  1052. /package/{esm2020 → esm2022}/instance-of/src/interfaces/instance-of-context.mjs +0 -0
  1053. /package/{esm2020 → esm2022}/instance-of/src/pipes/index.mjs +0 -0
  1054. /package/{esm2020 → esm2022}/instance-of/src/types/abstract.type.mjs +0 -0
  1055. /package/{esm2020 → esm2022}/instance-of/src/types/index.mjs +0 -0
  1056. /package/{esm2020 → esm2022}/lazy-loading/index.mjs +0 -0
  1057. /package/{esm2020 → esm2022}/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -0
  1058. /package/{esm2020 → esm2022}/lazy-loading/src/index.mjs +0 -0
  1059. /package/{esm2020 → esm2022}/let/index.mjs +0 -0
  1060. /package/{esm2020 → esm2022}/let/interfaces/index.mjs +0 -0
  1061. /package/{esm2020 → esm2022}/let/interfaces/let-context.mjs +0 -0
  1062. /package/{esm2020 → esm2022}/let/mintplayer-ng-bootstrap-let.mjs +0 -0
  1063. /package/{esm2020 → esm2022}/lib/enums/color.enum.mjs +0 -0
  1064. /package/{esm2020 → esm2022}/lib/enums/index.mjs +0 -0
  1065. /package/{esm2020 → esm2022}/lib/pipes/font-color/index.mjs +0 -0
  1066. /package/{esm2020 → esm2022}/lib/pipes/in-list/index.mjs +0 -0
  1067. /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
  1068. /package/{esm2020 → esm2022}/lib/pipes/uc-first/index.mjs +0 -0
  1069. /package/{esm2020 → esm2022}/lib/providers/development.provider.mjs +0 -0
  1070. /package/{esm2020 → esm2022}/lib/providers/index.mjs +0 -0
  1071. /package/{esm2020 → esm2022}/lib/types/breakpoint.mjs +0 -0
  1072. /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
  1073. /package/{esm2020 → esm2022}/lib/types/position.mjs +0 -0
  1074. /package/{esm2020 → esm2022}/lib/types/size.mjs +0 -0
  1075. /package/{esm2020 → esm2022}/lib/types/view-state.type.mjs +0 -0
  1076. /package/{esm2020 → esm2022}/list-group/index.mjs +0 -0
  1077. /package/{esm2020 → esm2022}/list-group/mintplayer-ng-bootstrap-list-group.mjs +0 -0
  1078. /package/{esm2020 → esm2022}/list-group/src/index.mjs +0 -0
  1079. /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
  1080. /package/{esm2020 → esm2022}/markdown/mintplayer-ng-bootstrap-markdown.mjs +0 -0
  1081. /package/{esm2020 → esm2022}/mintplayer-ng-bootstrap.mjs +0 -0
  1082. /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
  1083. /package/{esm2020 → esm2022}/modal/mintplayer-ng-bootstrap-modal.mjs +0 -0
  1084. /package/{esm2020 → esm2022}/modal/src/components/index.mjs +0 -0
  1085. /package/{esm2020 → esm2022}/modal/src/directives/index.mjs +0 -0
  1086. /package/{esm2020 → esm2022}/modal/src/index.mjs +0 -0
  1087. /package/{esm2020 → esm2022}/modal/src/providers/modal-content.provider.mjs +0 -0
  1088. /package/{esm2020 → esm2022}/modal/src/providers/portal-factory.provider.mjs +0 -0
  1089. /package/{esm2020 → esm2022}/multiselect/index.mjs +0 -0
  1090. /package/{esm2020 → esm2022}/multiselect/mintplayer-ng-bootstrap-multiselect.mjs +0 -0
  1091. /package/{esm2020 → esm2022}/multiselect/src/directives/index.mjs +0 -0
  1092. /package/{esm2020 → esm2022}/multiselect/src/index.mjs +0 -0
  1093. /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
  1094. /package/{esm2020 → esm2022}/navbar/mintplayer-ng-bootstrap-navbar.mjs +0 -0
  1095. /package/{esm2020 → esm2022}/navbar/src/index.mjs +0 -0
  1096. /package/{esm2020 → esm2022}/navigation-lock/index.mjs +0 -0
  1097. /package/{esm2020 → esm2022}/navigation-lock/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -0
  1098. /package/{esm2020 → esm2022}/navigation-lock/src/index.mjs +0 -0
  1099. /package/{esm2020 → esm2022}/navigation-lock/src/interface/has-navigation-lock.mjs +0 -0
  1100. /package/{esm2020 → esm2022}/no-noscript/index.mjs +0 -0
  1101. /package/{esm2020 → esm2022}/no-noscript/mintplayer-ng-bootstrap-no-noscript.mjs +0 -0
  1102. /package/{esm2020 → esm2022}/no-noscript/src/index.mjs +0 -0
  1103. /package/{esm2020 → esm2022}/offcanvas/index.mjs +0 -0
  1104. /package/{esm2020 → esm2022}/offcanvas/mintplayer-ng-bootstrap-offcanvas.mjs +0 -0
  1105. /package/{esm2020 → esm2022}/offcanvas/src/components/index.mjs +0 -0
  1106. /package/{esm2020 → esm2022}/offcanvas/src/directives/index.mjs +0 -0
  1107. /package/{esm2020 → esm2022}/offcanvas/src/index.mjs +0 -0
  1108. /package/{esm2020 → esm2022}/offcanvas/src/providers/offcanvas-content.provider.mjs +0 -0
  1109. /package/{esm2020 → esm2022}/offcanvas/src/providers/portal-factory.provider.mjs +0 -0
  1110. /package/{esm2020 → esm2022}/ordinal-number/index.mjs +0 -0
  1111. /package/{esm2020 → esm2022}/ordinal-number/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -0
  1112. /package/{esm2020 → esm2022}/ordinal-number/src/index.mjs +0 -0
  1113. /package/{esm2020 → esm2022}/pagination/index.mjs +0 -0
  1114. /package/{esm2020 → esm2022}/pagination/mintplayer-ng-bootstrap-pagination.mjs +0 -0
  1115. /package/{esm2020 → esm2022}/pagination/src/component/index.mjs +0 -0
  1116. /package/{esm2020 → esm2022}/pagination/src/index.mjs +0 -0
  1117. /package/{esm2020 → esm2022}/pagination/src/interfaces/index.mjs +0 -0
  1118. /package/{esm2020 → esm2022}/pagination/src/interfaces/page-with-selection.mjs +0 -0
  1119. /package/{esm2020 → esm2022}/pagination/src/types/index.mjs +0 -0
  1120. /package/{esm2020 → esm2022}/pagination/src/types/page-number.type.mjs +0 -0
  1121. /package/{esm2020 → esm2022}/placeholder/index.mjs +0 -0
  1122. /package/{esm2020 → esm2022}/placeholder/mintplayer-ng-bootstrap-placeholder.mjs +0 -0
  1123. /package/{esm2020 → esm2022}/placeholder/src/index.mjs +0 -0
  1124. /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
  1125. /package/{esm2020 → esm2022}/popover/mintplayer-ng-bootstrap-popover.mjs +0 -0
  1126. /package/{esm2020 → esm2022}/popover/src/directives/index.mjs +0 -0
  1127. /package/{esm2020 → esm2022}/popover/src/index.mjs +0 -0
  1128. /package/{esm2020 → esm2022}/popover/src/providers/popover-content.provider.mjs +0 -0
  1129. /package/{esm2020 → esm2022}/popover/src/providers/portal-factory.provider.mjs +0 -0
  1130. /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
  1131. /package/{esm2020 → esm2022}/progress-bar/mintplayer-ng-bootstrap-progress-bar.mjs +0 -0
  1132. /package/{esm2020 → esm2022}/progress-bar/src/index.mjs +0 -0
  1133. /package/{esm2020 → esm2022}/range/index.mjs +0 -0
  1134. /package/{esm2020 → esm2022}/range/mintplayer-ng-bootstrap-range.mjs +0 -0
  1135. /package/{esm2020 → esm2022}/range/src/index.mjs +0 -0
  1136. /package/{esm2020 → esm2022}/rating/index.mjs +0 -0
  1137. /package/{esm2020 → esm2022}/rating/mintplayer-ng-bootstrap-rating.mjs +0 -0
  1138. /package/{esm2020 → esm2022}/rating/src/index.mjs +0 -0
  1139. /package/{esm2020 → esm2022}/resizable/index.mjs +0 -0
  1140. /package/{esm2020 → esm2022}/resizable/mintplayer-ng-bootstrap-resizable.mjs +0 -0
  1141. /package/{esm2020 → esm2022}/resizable/src/index.mjs +0 -0
  1142. /package/{esm2020 → esm2022}/resizable/src/interfaces/index.mjs +0 -0
  1143. /package/{esm2020 → esm2022}/resizable/src/interfaces/pointer-data.mjs +0 -0
  1144. /package/{esm2020 → esm2022}/resizable/src/interfaces/preset-position.mjs +0 -0
  1145. /package/{esm2020 → esm2022}/resizable/src/interfaces/resize-action.mjs +0 -0
  1146. /package/{esm2020 → esm2022}/resizable/src/providers/index.mjs +0 -0
  1147. /package/{esm2020 → esm2022}/resizable/src/providers/resizable.provider.mjs +0 -0
  1148. /package/{esm2020 → esm2022}/resizable/src/types/index.mjs +0 -0
  1149. /package/{esm2020 → esm2022}/resizable/src/types/positioning.mjs +0 -0
  1150. /package/{esm2020 → esm2022}/scheduler/index.mjs +0 -0
  1151. /package/{esm2020 → esm2022}/scheduler/mintplayer-ng-bootstrap-scheduler.mjs +0 -0
  1152. /package/{esm2020 → esm2022}/scheduler/src/components/index.mjs +0 -0
  1153. /package/{esm2020 → esm2022}/scheduler/src/constants/available-scales.mjs +0 -0
  1154. /package/{esm2020 → esm2022}/scheduler/src/constants/index.mjs +0 -0
  1155. /package/{esm2020 → esm2022}/scheduler/src/enums/drag-operation.mjs +0 -0
  1156. /package/{esm2020 → esm2022}/scheduler/src/enums/index.mjs +0 -0
  1157. /package/{esm2020 → esm2022}/scheduler/src/enums/scheduler-mode.mjs +0 -0
  1158. /package/{esm2020 → esm2022}/scheduler/src/index.mjs +0 -0
  1159. /package/{esm2020 → esm2022}/scheduler/src/interfaces/drag-operation.mjs +0 -0
  1160. /package/{esm2020 → esm2022}/scheduler/src/interfaces/index.mjs +0 -0
  1161. /package/{esm2020 → esm2022}/scheduler/src/interfaces/preview-event.mjs +0 -0
  1162. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-group.mjs +0 -0
  1163. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-or-group.mjs +0 -0
  1164. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource.mjs +0 -0
  1165. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-part.mjs +0 -0
  1166. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-with-parts.mjs +0 -0
  1167. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event.mjs +0 -0
  1168. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-schale.mjs +0 -0
  1169. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-stamp-with-slots.mjs +0 -0
  1170. /package/{esm2020 → esm2022}/scheduler/src/interfaces/time-slot.mjs +0 -0
  1171. /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-options.mjs +0 -0
  1172. /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-track.mjs +0 -0
  1173. /package/{esm2020 → esm2022}/scheduler/src/interfaces/week-options.mjs +0 -0
  1174. /package/{esm2020 → esm2022}/scrollspy/index.mjs +0 -0
  1175. /package/{esm2020 → esm2022}/scrollspy/mintplayer-ng-bootstrap-scrollspy.mjs +0 -0
  1176. /package/{esm2020 → esm2022}/scrollspy/src/index.mjs +0 -0
  1177. /package/{esm2020 → esm2022}/scrollspy/src/services/index.mjs +0 -0
  1178. /package/{esm2020 → esm2022}/select/index.mjs +0 -0
  1179. /package/{esm2020 → esm2022}/select/mintplayer-ng-bootstrap-select.mjs +0 -0
  1180. /package/{esm2020 → esm2022}/select/src/index.mjs +0 -0
  1181. /package/{esm2020 → esm2022}/select/src/types/index.mjs +0 -0
  1182. /package/{esm2020 → esm2022}/select/src/types/select-size.mjs +0 -0
  1183. /package/{esm2020 → esm2022}/select/src/value-accessors/index.mjs +0 -0
  1184. /package/{esm2020 → esm2022}/select2/index.mjs +0 -0
  1185. /package/{esm2020 → esm2022}/select2/mintplayer-ng-bootstrap-select2.mjs +0 -0
  1186. /package/{esm2020 → esm2022}/select2/src/index.mjs +0 -0
  1187. /package/{esm2020 → esm2022}/snackbar/index.mjs +0 -0
  1188. /package/{esm2020 → esm2022}/snackbar/mintplayer-ng-bootstrap-snackbar.mjs +0 -0
  1189. /package/{esm2020 → esm2022}/snackbar/src/directives/index.mjs +0 -0
  1190. /package/{esm2020 → esm2022}/snackbar/src/index.mjs +0 -0
  1191. /package/{esm2020 → esm2022}/snackbar/src/interfaces/index.mjs +0 -0
  1192. /package/{esm2020 → esm2022}/snackbar/src/interfaces/snackbar-animation-meta.mjs +0 -0
  1193. /package/{esm2020 → esm2022}/snackbar/src/providers/snackbar-content.provider.mjs +0 -0
  1194. /package/{esm2020 → esm2022}/spinner/index.mjs +0 -0
  1195. /package/{esm2020 → esm2022}/spinner/mintplayer-ng-bootstrap-spinner.mjs +0 -0
  1196. /package/{esm2020 → esm2022}/spinner/src/index.mjs +0 -0
  1197. /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
  1198. /package/{esm2020 → esm2022}/splitter/mintplayer-ng-bootstrap-splitter.mjs +0 -0
  1199. /package/{esm2020 → esm2022}/splitter/src/index.mjs +0 -0
  1200. /package/{esm2020 → esm2022}/splitter/src/interfaces/drag-operation.mjs +0 -0
  1201. /package/{esm2020 → esm2022}/splitter/src/interfaces/point.mjs +0 -0
  1202. /package/{esm2020 → esm2022}/splitter/src/types/direction.type.mjs +0 -0
  1203. /package/{esm2020 → esm2022}/splitter/src/types/index.mjs +0 -0
  1204. /package/{esm2020 → esm2022}/tab-control/index.mjs +0 -0
  1205. /package/{esm2020 → esm2022}/tab-control/mintplayer-ng-bootstrap-tab-control.mjs +0 -0
  1206. /package/{esm2020 → esm2022}/tab-control/src/index.mjs +0 -0
  1207. /package/{esm2020 → esm2022}/tab-control/src/tabs-position.mjs +0 -0
  1208. /package/{esm2020 → esm2022}/table/index.mjs +0 -0
  1209. /package/{esm2020 → esm2022}/table/mintplayer-ng-bootstrap-table.mjs +0 -0
  1210. /package/{esm2020 → esm2022}/table/src/index.mjs +0 -0
  1211. /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
  1212. /package/{esm2020 → esm2022}/timepicker/mintplayer-ng-bootstrap-timepicker.mjs +0 -0
  1213. /package/{esm2020 → esm2022}/timepicker/src/index.mjs +0 -0
  1214. /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
  1215. /package/{esm2020 → esm2022}/toast/mintplayer-ng-bootstrap-toast.mjs +0 -0
  1216. /package/{esm2020 → esm2022}/toast/src/components/index.mjs +0 -0
  1217. /package/{esm2020 → esm2022}/toast/src/directives/index.mjs +0 -0
  1218. /package/{esm2020 → esm2022}/toast/src/index.mjs +0 -0
  1219. /package/{esm2020 → esm2022}/toast/src/providers/portal-factory.provider.mjs +0 -0
  1220. /package/{esm2020 → esm2022}/toast/src/services/index.mjs +0 -0
  1221. /package/{esm2020 → esm2022}/toggle-button/index.mjs +0 -0
  1222. /package/{esm2020 → esm2022}/toggle-button/mintplayer-ng-bootstrap-toggle-button.mjs +0 -0
  1223. /package/{esm2020 → esm2022}/toggle-button/src/directives/index.mjs +0 -0
  1224. /package/{esm2020 → esm2022}/toggle-button/src/index.mjs +0 -0
  1225. /package/{esm2020 → esm2022}/toggle-button/src/types/check-style.mjs +0 -0
  1226. /package/{esm2020 → esm2022}/toggle-button/src/types/index.mjs +0 -0
  1227. /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
  1228. /package/{esm2020 → esm2022}/tooltip/mintplayer-ng-bootstrap-tooltip.mjs +0 -0
  1229. /package/{esm2020 → esm2022}/tooltip/src/index.mjs +0 -0
  1230. /package/{esm2020 → esm2022}/tooltip/src/providers/tooltip-content.provider.mjs +0 -0
  1231. /package/{esm2020 → esm2022}/treeview/index.mjs +0 -0
  1232. /package/{esm2020 → esm2022}/treeview/mintplayer-ng-bootstrap-treeview.mjs +0 -0
  1233. /package/{esm2020 → esm2022}/treeview/src/index.mjs +0 -0
  1234. /package/{esm2020 → esm2022}/typeahead/index.mjs +0 -0
  1235. /package/{esm2020 → esm2022}/typeahead/mintplayer-ng-bootstrap-typeahead.mjs +0 -0
  1236. /package/{esm2020 → esm2022}/typeahead/src/index.mjs +0 -0
  1237. /package/{esm2020 → esm2022}/user-agent/index.mjs +0 -0
  1238. /package/{esm2020 → esm2022}/user-agent/mintplayer-ng-bootstrap-user-agent.mjs +0 -0
  1239. /package/{esm2020 → esm2022}/user-agent/src/directive/index.mjs +0 -0
  1240. /package/{esm2020 → esm2022}/user-agent/src/index.mjs +0 -0
  1241. /package/{esm2020 → esm2022}/user-agent/src/interfaces/index.mjs +0 -0
  1242. /package/{esm2020 → esm2022}/user-agent/src/interfaces/user-agent.mjs +0 -0
  1243. /package/{esm2020 → esm2022}/user-agent/src/types/index.mjs +0 -0
  1244. /package/{esm2020 → esm2022}/user-agent/src/types/operating-system.type.mjs +0 -0
  1245. /package/{esm2020 → esm2022}/user-agent/src/types/webbrowser.type.mjs +0 -0
@@ -1,218 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, Input, Optional, Host, Pipe, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsInstanceOfDirective {
6
- constructor() {
7
- this._defaultUsed = false;
8
- this._caseCount = 0;
9
- this._lastCaseCheckIndex = 0;
10
- this._lastCasesMatched = false;
11
- }
12
- set bsInstanceof(newValue) {
13
- this._instanceof = newValue;
14
- if (this._caseCount === 0) {
15
- this._updateDefaultCases(true);
16
- }
17
- }
18
- /** @internal */
19
- _addCase() {
20
- return this._caseCount++;
21
- }
22
- /** @internal */
23
- _addDefault(view) {
24
- if (!this._defaultViews) {
25
- this._defaultViews = [];
26
- }
27
- this._defaultViews.push(view);
28
- }
29
- /** @internal */
30
- _matchCase(type) {
31
- const matched = this._instanceof instanceof type
32
- ? this._instanceof
33
- : undefined;
34
- this._lastCasesMatched = this._lastCasesMatched || !!matched;
35
- this._lastCaseCheckIndex++;
36
- if (this._lastCaseCheckIndex === this._caseCount) {
37
- this._updateDefaultCases(!this._lastCasesMatched);
38
- this._lastCaseCheckIndex = 0;
39
- this._lastCasesMatched = false;
40
- }
41
- // debugger;
42
- return matched;
43
- }
44
- _updateDefaultCases(useDefault) {
45
- if (this._defaultViews && useDefault !== this._defaultUsed) {
46
- this._defaultUsed = useDefault;
47
- for (let i = 0; i < this._defaultViews.length; i++) {
48
- const defaultView = this._defaultViews[i];
49
- defaultView.enforceState(useDefault);
50
- }
51
- }
52
- }
53
- }
54
- BsInstanceOfDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
55
- BsInstanceOfDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsInstanceOfDirective, selector: "[bsInstanceof]", inputs: { bsInstanceof: "bsInstanceof" }, ngImport: i0 });
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfDirective, decorators: [{
57
- type: Directive,
58
- args: [{
59
- selector: '[bsInstanceof]',
60
- }]
61
- }], propDecorators: { bsInstanceof: [{
62
- type: Input
63
- }] } });
64
-
65
- class BsInstanceOfContext {
66
- constructor() {
67
- this.$implicit = null;
68
- this.bsInstanceofCase = null;
69
- }
70
- }
71
-
72
- class SwitchView {
73
- constructor(_viewContainerRef, _templateRef) {
74
- this._viewContainerRef = _viewContainerRef;
75
- this._templateRef = _templateRef;
76
- this._created = false;
77
- this._context = new BsInstanceOfContext();
78
- }
79
- enforceState(result) {
80
- if (result && !this._created) {
81
- this.create(result);
82
- }
83
- else if (!result && this._created) {
84
- this.destroy();
85
- }
86
- else if (result) {
87
- this._context.$implicit = this._context.bsInstanceofCase = result;
88
- }
89
- }
90
- create(result) {
91
- this._created = true;
92
- this._context.$implicit = this._context.bsInstanceofCase = result;
93
- this._viewContainerRef.createEmbeddedView(this._templateRef, this._context);
94
- }
95
- destroy() {
96
- this._created = false;
97
- this._viewContainerRef.clear();
98
- }
99
- }
100
-
101
- class BsInstanceofCaseDirective {
102
- constructor(viewContainer, templateRef, bsInstanceof) {
103
- this.bsInstanceof = bsInstanceof;
104
- if (!bsInstanceof) {
105
- this.throwError('bsInstanceofCase');
106
- }
107
- bsInstanceof._addCase();
108
- this._view = new SwitchView(viewContainer, templateRef);
109
- }
110
- /**
111
- * Asserts the correct type of the context for the template that `InstanceofCaseDirective` will render.
112
- *
113
- * The presence of this method is a signal to the Ivy template type-check compiler that the
114
- * `InstanceofCaseDirective` structural directive renders its template with a specific context type.
115
- * Magic happens here!
116
- */
117
- static ngTemplateContextGuard(dir, ctx) {
118
- return true;
119
- }
120
- ngDoCheck() {
121
- this._view.enforceState(this.bsInstanceof._matchCase(this.bsInstanceofCase));
122
- }
123
- throwError(directiveName) {
124
- throw new Error(`An element with the "${directiveName}" attribute (matching the "${directiveName}" directive) must be located inside an element with the "bsInstanceof" attribute (matching "BsInstanceofDirective" directive)`);
125
- }
126
- ;
127
- }
128
- BsInstanceofCaseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceofCaseDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: BsInstanceOfDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
129
- BsInstanceofCaseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsInstanceofCaseDirective, selector: "[bsInstanceofCase]", inputs: { bsInstanceofCase: "bsInstanceofCase" }, ngImport: i0 });
130
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceofCaseDirective, decorators: [{
131
- type: Directive,
132
- args: [{
133
- selector: '[bsInstanceofCase]',
134
- }]
135
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: BsInstanceOfDirective, decorators: [{
136
- type: Optional
137
- }, {
138
- type: Host
139
- }] }]; }, propDecorators: { bsInstanceofCase: [{
140
- type: Input
141
- }] } });
142
-
143
- class BsInstanceOfDefaultDirective {
144
- constructor(viewContainer, templateRef, bsInstanceof) {
145
- if (!bsInstanceof) {
146
- this.throwError('bsInstanceofDefault');
147
- }
148
- bsInstanceof._addDefault(new SwitchView(viewContainer, templateRef));
149
- }
150
- throwError(directiveName) {
151
- throw new Error(`An element with the "${directiveName}" attribute (matching the "${directiveName}" directive) must be located inside an element with the "bsInstanceof" attribute (matching "BsInstanceofDirective" directive)`);
152
- }
153
- ;
154
- }
155
- BsInstanceOfDefaultDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfDefaultDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: BsInstanceOfDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
156
- BsInstanceOfDefaultDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsInstanceOfDefaultDirective, selector: "[bsInstanceofDefault]", ngImport: i0 });
157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfDefaultDirective, decorators: [{
158
- type: Directive,
159
- args: [{
160
- selector: '[bsInstanceofDefault]',
161
- }]
162
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: BsInstanceOfDirective, decorators: [{
163
- type: Optional
164
- }, {
165
- type: Host
166
- }] }]; } });
167
-
168
- class BsInstanceofPipe {
169
- transform(value, type) {
170
- return value instanceof type ? value : undefined;
171
- }
172
- }
173
- BsInstanceofPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceofPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
174
- BsInstanceofPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceofPipe, name: "bsInstanceof" });
175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceofPipe, decorators: [{
176
- type: Pipe,
177
- args: [{
178
- name: 'bsInstanceof',
179
- pure: true,
180
- }]
181
- }] });
182
-
183
- class BsInstanceOfModule {
184
- }
185
- BsInstanceOfModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
186
- BsInstanceOfModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfModule, declarations: [BsInstanceofPipe,
187
- BsInstanceOfDirective,
188
- BsInstanceofCaseDirective,
189
- BsInstanceOfDefaultDirective], imports: [CommonModule], exports: [BsInstanceofPipe,
190
- BsInstanceOfDirective,
191
- BsInstanceofCaseDirective,
192
- BsInstanceOfDefaultDirective] });
193
- BsInstanceOfModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfModule, imports: [CommonModule] });
194
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsInstanceOfModule, decorators: [{
195
- type: NgModule,
196
- args: [{
197
- declarations: [
198
- BsInstanceofPipe,
199
- BsInstanceOfDirective,
200
- BsInstanceofCaseDirective,
201
- BsInstanceOfDefaultDirective
202
- ],
203
- imports: [CommonModule],
204
- exports: [
205
- BsInstanceofPipe,
206
- BsInstanceOfDirective,
207
- BsInstanceofCaseDirective,
208
- BsInstanceOfDefaultDirective
209
- ]
210
- }]
211
- }] });
212
-
213
- /**
214
- * Generated bundle index. Do not edit.
215
- */
216
-
217
- export { BsInstanceOfContext, BsInstanceOfDefaultDirective, BsInstanceOfDirective, BsInstanceOfModule, BsInstanceofCaseDirective, BsInstanceofPipe, SwitchView };
218
- //# sourceMappingURL=mintplayer-ng-bootstrap-instance-of.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-instance-of.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/interfaces/instance-of-context.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/switch-view.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof-case.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof-default.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/pipes/instance-of.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/instance-of.module.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/mintplayer-ng-bootstrap-instance-of.ts"],"sourcesContent":["import { Directive, Input } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { AbstractType } from \"../types/abstract.type\";\n\n@Directive({\n selector: '[bsInstanceof]',\n})\nexport class BsInstanceOfDirective {\n private _defaultViews!: SwitchView[];\n private _defaultUsed = false;\n private _caseCount = 0;\n private _lastCaseCheckIndex = 0;\n private _lastCasesMatched = false;\n private _instanceof: any;\n\n @Input()\n public set bsInstanceof(newValue: any) {\n this._instanceof = newValue;\n if (this._caseCount === 0) {\n this._updateDefaultCases(true);\n }\n }\n\n /** @internal */\n public _addCase(): number {\n return this._caseCount++;\n }\n\n /** @internal */\n public _addDefault(view: SwitchView): void {\n if (!this._defaultViews) {\n this._defaultViews = [];\n }\n this._defaultViews.push(view);\n }\n\n /** @internal */\n public _matchCase<T>(type: AbstractType<T>): T | undefined {\n const matched =\n this._instanceof instanceof type\n ? this._instanceof\n : undefined;\n this._lastCasesMatched = this._lastCasesMatched || !!matched;\n this._lastCaseCheckIndex++;\n if (this._lastCaseCheckIndex === this._caseCount) {\n this._updateDefaultCases(!this._lastCasesMatched);\n this._lastCaseCheckIndex = 0;\n this._lastCasesMatched = false;\n }\n // debugger;\n return matched;\n }\n\n private _updateDefaultCases(useDefault: boolean): void {\n if (this._defaultViews && useDefault !== this._defaultUsed) {\n this._defaultUsed = useDefault;\n for (let i = 0; i < this._defaultViews.length; i++) {\n const defaultView = this._defaultViews[i];\n defaultView.enforceState(useDefault);\n }\n }\n }\n}\n","export class BsInstanceOfContext<T = unknown> {\n public $implicit: T = null!;\n public bsInstanceofCase: T = null!;\n}","import { ViewContainerRef, TemplateRef } from \"@angular/core\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\n\nexport class SwitchView<T = unknown> {\n private _created = false;\n private _context = new BsInstanceOfContext<T>();\n \n public constructor(private _viewContainerRef: ViewContainerRef, private _templateRef: TemplateRef<BsInstanceOfContext<T>>) {}\n \n public enforceState(result?: T) {\n if (result && !this._created) {\n this.create(result);\n } else if (!result && this._created) {\n this.destroy();\n } else if (result) {\n this._context.$implicit = this._context.bsInstanceofCase = result;\n }\n }\n \n private create(result: T) {\n this._created = true;\n this._context.$implicit = this._context.bsInstanceofCase = result;\n this._viewContainerRef.createEmbeddedView(this._templateRef, this._context);\n }\n \n private destroy() {\n this._created = false;\n this._viewContainerRef.clear();\n }\n}","import { Directive, Input, DoCheck, ViewContainerRef, Optional, Host, TemplateRef } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\nimport { AbstractType } from \"../types/abstract.type\";\nimport { BsInstanceOfDirective } from \"./instanceof.directive\";\n\n@Directive({\n selector: '[bsInstanceofCase]',\n})\nexport class BsInstanceofCaseDirective<T> implements DoCheck {\n @Input() public bsInstanceofCase!: AbstractType<T>;\n\n private _view: SwitchView<T>;\n\n public constructor(\n viewContainer: ViewContainerRef,\n templateRef: TemplateRef<BsInstanceOfContext<T>>,\n @Optional() @Host() private bsInstanceof: BsInstanceOfDirective\n ) {\n if (!bsInstanceof) {\n this.throwError('bsInstanceofCase');\n }\n bsInstanceof._addCase();\n this._view = new SwitchView<T>(viewContainer, templateRef);\n }\n\n /**\n * Asserts the correct type of the context for the template that `InstanceofCaseDirective` will render.\n *\n * The presence of this method is a signal to the Ivy template type-check compiler that the\n * `InstanceofCaseDirective` structural directive renders its template with a specific context type.\n * Magic happens here!\n */\n public static ngTemplateContextGuard<T>(\n dir: BsInstanceofCaseDirective<T>,\n ctx: any\n ): ctx is BsInstanceOfContext<Exclude<T, false | 0 | '' | null | undefined>> {\n return true;\n }\n\n public ngDoCheck() {\n this._view.enforceState(\n this.bsInstanceof._matchCase(this.bsInstanceofCase)\n );\n }\n\n throwError(directiveName: string) {\n throw new Error(\n `An element with the \"${directiveName}\" attribute (matching the \"${directiveName}\" directive) must be located inside an element with the \"bsInstanceof\" attribute (matching \"BsInstanceofDirective\" directive)`\n );\n };\n}\n","import { Directive, ViewContainerRef, Optional, Host, TemplateRef } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\nimport { BsInstanceOfDirective } from \"./instanceof.directive\";\n\n@Directive({\n selector: '[bsInstanceofDefault]',\n})\nexport class BsInstanceOfDefaultDirective {\n public constructor(\n viewContainer: ViewContainerRef,\n templateRef: TemplateRef<BsInstanceOfContext>,\n @Optional() @Host() bsInstanceof: BsInstanceOfDirective\n ) {\n if (!bsInstanceof) {\n this.throwError('bsInstanceofDefault');\n }\n bsInstanceof._addDefault(new SwitchView(viewContainer, templateRef));\n }\n\n throwError(directiveName: string) {\n throw new Error(\n `An element with the \"${directiveName}\" attribute (matching the \"${directiveName}\" directive) must be located inside an element with the \"bsInstanceof\" attribute (matching \"BsInstanceofDirective\" directive)`\n );\n };\n}","import { Pipe } from '@angular/core';\nimport type { PipeTransform } from '@angular/core';\nimport { AbstractType } from '../types/abstract.type';\n\n@Pipe({\n name: 'bsInstanceof',\n pure: true,\n})\nexport class BsInstanceofPipe implements PipeTransform {\n public transform<V, R>(value: V, type: AbstractType<R>): R | undefined {\n return value instanceof type ? value : undefined;\n }\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsInstanceOfDirective } from './directives/instanceof.directive';\nimport { BsInstanceofCaseDirective } from './directives/instanceof-case.directive';\nimport { BsInstanceOfDefaultDirective } from './directives/instanceof-default.directive';\nimport { BsInstanceofPipe } from './pipes/instance-of.pipe';\n\n@NgModule({\n declarations: [\n BsInstanceofPipe,\n BsInstanceOfDirective,\n BsInstanceofCaseDirective,\n BsInstanceOfDefaultDirective\n ],\n imports: [CommonModule],\n exports: [\n BsInstanceofPipe,\n BsInstanceOfDirective,\n BsInstanceofCaseDirective,\n BsInstanceOfDefaultDirective\n ]\n})\nexport class BsInstanceOfModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1.BsInstanceOfDirective"],"mappings":";;;;MAOa,qBAAqB,CAAA;AAHlC,IAAA,WAAA,GAAA;QAKU,IAAY,CAAA,YAAA,GAAG,KAAK,CAAC;QACrB,IAAU,CAAA,UAAA,GAAG,CAAC,CAAC;QACf,IAAmB,CAAA,mBAAA,GAAG,CAAC,CAAC;QACxB,IAAiB,CAAA,iBAAA,GAAG,KAAK,CAAC;AAkDnC,KAAA;IA/CC,IACW,YAAY,CAAC,QAAa,EAAA;AACnC,QAAA,IAAI,CAAC,WAAW,GAAG,QAAQ,CAAC;AAC5B,QAAA,IAAI,IAAI,CAAC,UAAU,KAAK,CAAC,EAAE;AACzB,YAAA,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;AAChC,SAAA;KACF;;IAGM,QAAQ,GAAA;AACb,QAAA,OAAO,IAAI,CAAC,UAAU,EAAE,CAAC;KAC1B;;AAGM,IAAA,WAAW,CAAC,IAAgB,EAAA;AACjC,QAAA,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;AACvB,YAAA,IAAI,CAAC,aAAa,GAAG,EAAE,CAAC;AACzB,SAAA;AACD,QAAA,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC/B;;AAGM,IAAA,UAAU,CAAI,IAAqB,EAAA;AACxC,QAAA,MAAM,OAAO,GACX,IAAI,CAAC,WAAW,YAAY,IAAI;cAC5B,IAAI,CAAC,WAAW;cAChB,SAAS,CAAC;QAChB,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,IAAI,CAAC,CAAC,OAAO,CAAC;QAC7D,IAAI,CAAC,mBAAmB,EAAE,CAAC;AAC3B,QAAA,IAAI,IAAI,CAAC,mBAAmB,KAAK,IAAI,CAAC,UAAU,EAAE;YAChD,IAAI,CAAC,mBAAmB,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;AAClD,YAAA,IAAI,CAAC,mBAAmB,GAAG,CAAC,CAAC;AAC7B,YAAA,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;AAChC,SAAA;;AAED,QAAA,OAAO,OAAO,CAAC;KAChB;AAEO,IAAA,mBAAmB,CAAC,UAAmB,EAAA;QAC7C,IAAI,IAAI,CAAC,aAAa,IAAI,UAAU,KAAK,IAAI,CAAC,YAAY,EAAE;AAC1D,YAAA,IAAI,CAAC,YAAY,GAAG,UAAU,CAAC;AAC/B,YAAA,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;gBAClD,MAAM,WAAW,GAAG,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;AAC1C,gBAAA,WAAW,CAAC,YAAY,CAAC,UAAU,CAAC,CAAC;AACtC,aAAA;AACF,SAAA;KACF;;kHAtDU,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;sGAArB,qBAAqB,EAAA,QAAA,EAAA,gBAAA,EAAA,MAAA,EAAA,EAAA,YAAA,EAAA,cAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAArB,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAHjC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,gBAAgB;AAC3B,iBAAA,CAAA;8BAUY,YAAY,EAAA,CAAA;sBADtB,KAAK;;;MCfK,mBAAmB,CAAA;AAAhC,IAAA,WAAA,GAAA;QACW,IAAS,CAAA,SAAA,GAAM,IAAK,CAAC;QACrB,IAAgB,CAAA,gBAAA,GAAM,IAAK,CAAC;KACtC;AAAA;;MCAY,UAAU,CAAA;IAInB,WAA2B,CAAA,iBAAmC,EAAU,YAAiD,EAAA;QAA9F,IAAiB,CAAA,iBAAA,GAAjB,iBAAiB,CAAkB;QAAU,IAAY,CAAA,YAAA,GAAZ,YAAY,CAAqC;QAHjH,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AACjB,QAAA,IAAA,CAAA,QAAQ,GAAG,IAAI,mBAAmB,EAAK,CAAC;KAE6E;AAEtH,IAAA,YAAY,CAAC,MAAU,EAAA;AAC1B,QAAA,IAAI,MAAM,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;AAC1B,YAAA,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AACvB,SAAA;AAAM,aAAA,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,QAAQ,EAAE;YACjC,IAAI,CAAC,OAAO,EAAE,CAAC;AAClB,SAAA;AAAM,aAAA,IAAI,MAAM,EAAE;AACf,YAAA,IAAI,CAAC,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,gBAAgB,GAAG,MAAM,CAAC;AACrE,SAAA;KACJ;AAEO,IAAA,MAAM,CAAC,MAAS,EAAA;AACpB,QAAA,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;AACrB,QAAA,IAAI,CAAC,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,gBAAgB,GAAG,MAAM,CAAC;AAClE,QAAA,IAAI,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KAC/E;IAEO,OAAO,GAAA;AACX,QAAA,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;AACtB,QAAA,IAAI,CAAC,iBAAiB,CAAC,KAAK,EAAE,CAAC;KAClC;AACJ;;MCpBY,yBAAyB,CAAA;AAKpC,IAAA,WAAA,CACE,aAA+B,EAC/B,WAAgD,EACpB,YAAmC,EAAA;QAAnC,IAAY,CAAA,YAAA,GAAZ,YAAY,CAAuB;QAE/D,IAAI,CAAC,YAAY,EAAE;AACjB,YAAA,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC;AACrC,SAAA;QACD,YAAY,CAAC,QAAQ,EAAE,CAAC;QACxB,IAAI,CAAC,KAAK,GAAG,IAAI,UAAU,CAAI,aAAa,EAAE,WAAW,CAAC,CAAC;KAC5D;AAED;;;;;;AAMG;AACI,IAAA,OAAO,sBAAsB,CAClC,GAAiC,EACjC,GAAQ,EAAA;AAER,QAAA,OAAO,IAAI,CAAC;KACb;IAEM,SAAS,GAAA;AACd,QAAA,IAAI,CAAC,KAAK,CAAC,YAAY,CACrB,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,gBAAgB,CAAC,CACpD,CAAC;KACH;AAED,IAAA,UAAU,CAAC,aAAqB,EAAA;QAC9B,MAAM,IAAI,KAAK,CACb,CAAA,qBAAA,EAAwB,aAAa,CAA8B,2BAAA,EAAA,aAAa,CAA+H,6HAAA,CAAA,CAChN,CAAC;KACH;;;sHAzCU,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,WAAA,EAAA,EAAA,EAAA,KAAA,EAAAA,qBAAA,EAAA,IAAA,EAAA,IAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;0GAAzB,yBAAyB,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,EAAA,gBAAA,EAAA,kBAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAHrC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,oBAAoB;AAC/B,iBAAA,CAAA;;0BASI,QAAQ;;0BAAI,IAAI;4CAPH,gBAAgB,EAAA,CAAA;sBAA/B,KAAK;;;MCFK,4BAA4B,CAAA;AACvC,IAAA,WAAA,CACE,aAA+B,EAC/B,WAA6C,EACzB,YAAmC,EAAA;QAEvD,IAAI,CAAC,YAAY,EAAE;AACjB,YAAA,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,CAAC;AACxC,SAAA;QACD,YAAY,CAAC,WAAW,CAAC,IAAI,UAAU,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC,CAAC;KACtE;AAED,IAAA,UAAU,CAAC,aAAqB,EAAA;QAC9B,MAAM,IAAI,KAAK,CACb,CAAA,qBAAA,EAAwB,aAAa,CAA8B,2BAAA,EAAA,aAAa,CAA+H,6HAAA,CAAA,CAChN,CAAC;KACH;;;yHAhBU,4BAA4B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,WAAA,EAAA,EAAA,EAAA,KAAA,EAAAA,qBAAA,EAAA,IAAA,EAAA,IAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;6GAA5B,4BAA4B,EAAA,QAAA,EAAA,uBAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAA5B,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBAHxC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,uBAAuB;AAClC,iBAAA,CAAA;;0BAKI,QAAQ;;0BAAI,IAAI;;;MCJR,gBAAgB,CAAA;IACpB,SAAS,CAAO,KAAQ,EAAE,IAAqB,EAAA;QACpD,OAAO,KAAK,YAAY,IAAI,GAAG,KAAK,GAAG,SAAS,CAAC;KAClD;;6GAHU,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,IAAA,EAAA,CAAA,CAAA;2GAAhB,gBAAgB,EAAA,IAAA,EAAA,cAAA,EAAA,CAAA,CAAA;2FAAhB,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAJ5B,IAAI;AAAC,YAAA,IAAA,EAAA,CAAA;AACJ,oBAAA,IAAI,EAAE,cAAc;AACpB,oBAAA,IAAI,EAAE,IAAI;AACX,iBAAA,CAAA;;;MCeY,kBAAkB,CAAA;;+GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAlB,kBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,iBAb3B,gBAAgB;QAChB,qBAAqB;QACrB,yBAAyB;QACzB,4BAA4B,CAAA,EAAA,OAAA,EAAA,CAEpB,YAAY,CAAA,EAAA,OAAA,EAAA,CAEpB,gBAAgB;QAChB,qBAAqB;QACrB,yBAAyB;QACzB,4BAA4B,CAAA,EAAA,CAAA,CAAA;AAGnB,kBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,YARnB,YAAY,CAAA,EAAA,CAAA,CAAA;2FAQX,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAf9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,gBAAgB;wBAChB,qBAAqB;wBACrB,yBAAyB;wBACzB,4BAA4B;AAC7B,qBAAA;oBACD,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,OAAO,EAAE;wBACP,gBAAgB;wBAChB,qBAAqB;wBACrB,yBAAyB;wBACzB,4BAA4B;AAC7B,qBAAA;AACF,iBAAA,CAAA;;;ACrBD;;AAEG;;;;"}
@@ -1,60 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, Input, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsLazyLoadDirective {
6
- constructor(vcref) {
7
- this.vcref = vcref;
8
- this.contentNodes = [];
9
- }
10
- set lazyLoad(factory) {
11
- if (factory) {
12
- factory.then(type => {
13
- this.vcref.createComponent(type, { projectableNodes: this.contentNodes });
14
- });
15
- }
16
- else {
17
- this.vcref.clear();
18
- }
19
- }
20
- }
21
- BsLazyLoadDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
22
- BsLazyLoadDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsLazyLoadDirective, selector: "[bsLazyLoad]", inputs: { contentNodes: "contentNodes", lazyLoad: ["bsLazyLoad", "lazyLoad"] }, ngImport: i0 });
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadDirective, decorators: [{
24
- type: Directive,
25
- args: [{
26
- selector: '[bsLazyLoad]'
27
- }]
28
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { contentNodes: [{
29
- type: Input
30
- }], lazyLoad: [{
31
- type: Input,
32
- args: ['bsLazyLoad']
33
- }] } });
34
-
35
- class BsLazyLoadingModule {
36
- }
37
- BsLazyLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
38
- BsLazyLoadingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadingModule, declarations: [BsLazyLoadDirective], imports: [CommonModule], exports: [BsLazyLoadDirective] });
39
- BsLazyLoadingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadingModule, imports: [CommonModule] });
40
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLazyLoadingModule, decorators: [{
41
- type: NgModule,
42
- args: [{
43
- declarations: [
44
- BsLazyLoadDirective
45
- ],
46
- imports: [
47
- CommonModule
48
- ],
49
- exports: [
50
- BsLazyLoadDirective
51
- ]
52
- }]
53
- }] });
54
-
55
- /**
56
- * Generated bundle index. Do not edit.
57
- */
58
-
59
- export { BsLazyLoadDirective, BsLazyLoadingModule };
60
- //# sourceMappingURL=mintplayer-ng-bootstrap-lazy-loading.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-lazy-loading.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/lazy-loading/src/lazy-load/lazy-load.directive.ts","../../../../libs/mintplayer-ng-bootstrap/lazy-loading/src/lazy-loading.module.ts","../../../../libs/mintplayer-ng-bootstrap/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.ts"],"sourcesContent":["import { Directive, Input, ViewContainerRef } from '@angular/core';\n\nexport interface ComponentType<T> {\n new (...args: any[]): T;\n}\n\n@Directive({\n selector: '[bsLazyLoad]'\n})\nexport class BsLazyLoadDirective<T> {\n constructor(private vcref: ViewContainerRef) {}\n\n @Input() contentNodes: Node[][] = [];\n\n @Input('bsLazyLoad') set lazyLoad(factory: Promise<ComponentType<T>> | undefined) {\n if (factory) {\n factory.then(type => {\n this.vcref.createComponent(type, { projectableNodes: this.contentNodes });\n });\n } else {\n this.vcref.clear();\n }\n }\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsLazyLoadDirective } from './lazy-load/lazy-load.directive';\n\n\n\n@NgModule({\n declarations: [\n BsLazyLoadDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsLazyLoadDirective\n ]\n})\nexport class BsLazyLoadingModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MASa,mBAAmB,CAAA;AAC9B,IAAA,WAAA,CAAoB,KAAuB,EAAA;QAAvB,IAAK,CAAA,KAAA,GAAL,KAAK,CAAkB;QAElC,IAAY,CAAA,YAAA,GAAa,EAAE,CAAC;KAFU;IAI/C,IAAyB,QAAQ,CAAC,OAA8C,EAAA;AAC9E,QAAA,IAAI,OAAO,EAAE;AACX,YAAA,OAAO,CAAC,IAAI,CAAC,IAAI,IAAG;AAClB,gBAAA,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,IAAI,EAAE,EAAE,gBAAgB,EAAE,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;AAC5E,aAAC,CAAC,CAAC;AACJ,SAAA;AAAM,aAAA;AACL,YAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;AACpB,SAAA;KACF;;gHAbU,mBAAmB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;oGAAnB,mBAAmB,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,EAAA,YAAA,EAAA,cAAA,EAAA,QAAA,EAAA,CAAA,YAAA,EAAA,UAAA,CAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAnB,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAH/B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,cAAc;AACzB,iBAAA,CAAA;uGAIU,YAAY,EAAA,CAAA;sBAApB,KAAK;gBAEmB,QAAQ,EAAA,CAAA;sBAAhC,KAAK;uBAAC,YAAY,CAAA;;;MCGR,mBAAmB,CAAA;;gHAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAnB,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mBAAmB,EAT5B,YAAA,EAAA,CAAA,mBAAmB,CAGnB,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,mBAAmB,CAAA,EAAA,CAAA,CAAA;AAGV,mBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,mBAAmB,YAN5B,YAAY,CAAA,EAAA,CAAA,CAAA;2FAMH,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAX/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,mBAAmB;AACpB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,mBAAmB;AACpB,qBAAA;AACF,iBAAA,CAAA;;;AChBD;;AAEG;;;;"}
@@ -1,66 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, Input, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsLetDirective {
6
- // eslint-disable-next-line no-unused-vars
7
- constructor(viewContainer, templateRef) {
8
- this.viewContainer = viewContainer;
9
- this.templateRef = templateRef;
10
- this.context = { bsLet: null, $implicit: null };
11
- this.hasView = false;
12
- }
13
- set bsLet(value) {
14
- this.context.$implicit = this.context.bsLet = value;
15
- if (!this.hasView) {
16
- this.hasView = true;
17
- this.viewContainer.createEmbeddedView(this.templateRef, this.context);
18
- }
19
- }
20
- /**
21
- * Asserts the correct type of the context for the template that `NgLet` will render.
22
- *
23
- * The presence of this method is a signal to the Ivy template type-check compiler that the
24
- * `NgLet` structural directive renders its template with a specific context type.
25
- */
26
- static ngTemplateContextGuard(dir, ctx) {
27
- return true;
28
- }
29
- }
30
- BsLetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLetDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
31
- BsLetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsLetDirective, selector: "[bsLet]", inputs: { bsLet: "bsLet" }, ngImport: i0 });
32
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLetDirective, decorators: [{
33
- type: Directive,
34
- args: [{
35
- selector: '[bsLet]'
36
- }]
37
- }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, propDecorators: { bsLet: [{
38
- type: Input
39
- }] } });
40
-
41
- class BsLetModule {
42
- }
43
- BsLetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
44
- BsLetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsLetModule, declarations: [BsLetDirective], imports: [CommonModule], exports: [BsLetDirective] });
45
- BsLetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLetModule, imports: [CommonModule] });
46
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsLetModule, decorators: [{
47
- type: NgModule,
48
- args: [{
49
- declarations: [
50
- BsLetDirective
51
- ],
52
- imports: [
53
- CommonModule
54
- ],
55
- exports: [
56
- BsLetDirective
57
- ]
58
- }]
59
- }] });
60
-
61
- /**
62
- * Generated bundle index. Do not edit.
63
- */
64
-
65
- export { BsLetDirective, BsLetModule };
66
- //# sourceMappingURL=mintplayer-ng-bootstrap-let.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-let.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/let/directive/let.directive.ts","../../../../libs/mintplayer-ng-bootstrap/let/let.module.ts","../../../../libs/mintplayer-ng-bootstrap/let/mintplayer-ng-bootstrap-let.ts"],"sourcesContent":["import { Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';\nimport { BsLetContext } from '../interfaces/let-context';\n\n@Directive({\n selector: '[bsLet]'\n})\nexport class BsLetDirective<T> {\n\n private context: BsLetContext<T | null> = { bsLet: null, $implicit: null };\n private hasView: boolean = false;\n\n // eslint-disable-next-line no-unused-vars\n constructor(private viewContainer: ViewContainerRef, private templateRef: TemplateRef<BsLetContext<T>>) { }\n\n @Input() set bsLet(value: T) {\n this.context.$implicit = this.context.bsLet = value;\n if (!this.hasView) {\n this.hasView = true;\n this.viewContainer.createEmbeddedView(this.templateRef, this.context);\n }\n }\n\n /** @internal */\n public static bsLetUseIfTypeGuard: void;\n\n /**\n * Assert the correct type of the expression bound to the `NgLet` input within the template.\n *\n * The presence of this static field is a signal to the Ivy template type check compiler that\n * when the `NgLet` structural directive renders its template, the type of the expression bound\n * to `NgLet` should be narrowed in some way. For `NgLet`, the binding expression itself is used to\n * narrow its type, which allows the strictNullChecks feature of TypeScript to work with `NgLet`.\n */\n static ngTemplateGuard_bsLet: 'binding';\n\n /**\n * Asserts the correct type of the context for the template that `NgLet` will render.\n *\n * The presence of this method is a signal to the Ivy template type-check compiler that the\n * `NgLet` structural directive renders its template with a specific context type.\n */\n static ngTemplateContextGuard<T>(dir: BsLetDirective<T>, ctx: any): ctx is BsLetContext<T> {\n return true;\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsLetDirective } from './directive/let.directive';\n\n@NgModule({\n declarations: [\n BsLetDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsLetDirective\n ]\n})\nexport class BsLetModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAMa,cAAc,CAAA;;IAMzB,WAAoB,CAAA,aAA+B,EAAU,WAAyC,EAAA;QAAlF,IAAa,CAAA,aAAA,GAAb,aAAa,CAAkB;QAAU,IAAW,CAAA,WAAA,GAAX,WAAW,CAA8B;QAJ9F,IAAO,CAAA,OAAA,GAA2B,EAAE,KAAK,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;QACnE,IAAO,CAAA,OAAA,GAAY,KAAK,CAAC;KAG0E;IAE3G,IAAa,KAAK,CAAC,KAAQ,EAAA;AACvB,QAAA,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,GAAG,KAAK,CAAC;AACpD,QAAA,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;AACf,YAAA,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;AACpB,YAAA,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;AACzE,SAAA;KACJ;AAeD;;;;;AAKG;AACH,IAAA,OAAO,sBAAsB,CAAI,GAAsB,EAAE,GAAQ,EAAA;AAC7D,QAAA,OAAO,IAAI,CAAC;KACf;;2GArCU,cAAc,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,WAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;+FAAd,cAAc,EAAA,QAAA,EAAA,SAAA,EAAA,MAAA,EAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAd,cAAc,EAAA,UAAA,EAAA,CAAA;kBAH1B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,SAAS;AACpB,iBAAA,CAAA;iIASc,KAAK,EAAA,CAAA;sBAAjB,KAAK;;;MCCK,WAAW,CAAA;;wGAAX,WAAW,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAX,WAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAW,EATpB,YAAA,EAAA,CAAA,cAAc,CAGd,EAAA,OAAA,EAAA,CAAA,YAAY,aAGZ,cAAc,CAAA,EAAA,CAAA,CAAA;AAGL,WAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAW,YANpB,YAAY,CAAA,EAAA,CAAA,CAAA;2FAMH,WAAW,EAAA,UAAA,EAAA,CAAA;kBAXvB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ,cAAc;AACf,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,YAAY;AACb,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,cAAc;AACf,qBAAA;AACF,iBAAA,CAAA;;;ACdD;;AAEG;;;;"}
@@ -1,63 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Component, HostBinding, ContentChildren, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsListGroupItemComponent {
6
- constructor() {
7
- this.classes = true;
8
- }
9
- }
10
- BsListGroupItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
- BsListGroupItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsListGroupItemComponent, selector: "bs-list-group-item", host: { properties: { "class.list-group-item": "this.classes" } }, ngImport: i0, template: "<!-- <li class=\"list-group-item\"> -->\n <ng-content></ng-content>\n<!-- </li> -->", styles: [".list-group-item{margin-bottom:-1px}\n"] });
12
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupItemComponent, decorators: [{
13
- type: Component,
14
- args: [{ selector: 'bs-list-group-item', template: "<!-- <li class=\"list-group-item\"> -->\n <ng-content></ng-content>\n<!-- </li> -->", styles: [".list-group-item{margin-bottom:-1px}\n"] }]
15
- }], propDecorators: { classes: [{
16
- type: HostBinding,
17
- args: ['class.list-group-item']
18
- }] } });
19
-
20
- class BsListGroupComponent {
21
- constructor() {
22
- }
23
- ngOnInit() {
24
- }
25
- }
26
- BsListGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
27
- BsListGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsListGroupComponent, selector: "bs-list-group", queries: [{ propertyName: "items", predicate: BsListGroupItemComponent }], ngImport: i0, template: "<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>", styles: [":host ::ng-deep .list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: 1px;--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}:host ::ng-deep .list-group-numbered{list-style-type:none;counter-reset:section}:host ::ng-deep .list-group-numbered>.list-group-item:before{content:counters(section,\".\") \". \";counter-increment:section}:host ::ng-deep .list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}:host ::ng-deep .list-group-item-action:hover,:host ::ng-deep .list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}:host ::ng-deep .list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}:host ::ng-deep .list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}:host ::ng-deep .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:host ::ng-deep .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:host ::ng-deep .list-group-item.disabled,:host ::ng-deep .list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}:host ::ng-deep .list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}:host ::ng-deep .list-group-item+.list-group-item{border-top-width:0}:host ::ng-deep .list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}:host ::ng-deep .list-group-horizontal{flex-direction:row}:host ::ng-deep .list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width: 576px){:host ::ng-deep .list-group-horizontal-sm{flex-direction:row}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 768px){:host ::ng-deep .list-group-horizontal-md{flex-direction:row}:host ::ng-deep .list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 992px){:host ::ng-deep .list-group-horizontal-lg{flex-direction:row}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1200px){:host ::ng-deep .list-group-horizontal-xl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1400px){:host ::ng-deep .list-group-horizontal-xxl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}:host ::ng-deep .list-group-flush{border-radius:0}:host ::ng-deep .list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}:host ::ng-deep .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:host ::ng-deep .list-group-item-primary{color:#084298;background-color:#cfe2ff}:host ::ng-deep .list-group-item-primary.list-group-item-action:hover,:host ::ng-deep .list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}:host ::ng-deep .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}:host ::ng-deep .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}:host ::ng-deep .list-group-item-secondary.list-group-item-action:hover,:host ::ng-deep .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}:host ::ng-deep .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}:host ::ng-deep .list-group-item-success{color:#0f5132;background-color:#d1e7dd}:host ::ng-deep .list-group-item-success.list-group-item-action:hover,:host ::ng-deep .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}:host ::ng-deep .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}:host ::ng-deep .list-group-item-info{color:#055160;background-color:#cff4fc}:host ::ng-deep .list-group-item-info.list-group-item-action:hover,:host ::ng-deep .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}:host ::ng-deep .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}:host ::ng-deep .list-group-item-warning{color:#664d03;background-color:#fff3cd}:host ::ng-deep .list-group-item-warning.list-group-item-action:hover,:host ::ng-deep .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}:host ::ng-deep .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}:host ::ng-deep .list-group-item-danger{color:#842029;background-color:#f8d7da}:host ::ng-deep .list-group-item-danger.list-group-item-action:hover,:host ::ng-deep .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}:host ::ng-deep .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}:host ::ng-deep .list-group-item-light{color:#636464;background-color:#fefefe}:host ::ng-deep .list-group-item-light.list-group-item-action:hover,:host ::ng-deep .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}:host ::ng-deep .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}:host ::ng-deep .list-group-item-dark{color:#141619;background-color:#d3d3d4}:host ::ng-deep .list-group-item-dark.list-group-item-action:hover,:host ::ng-deep .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}:host ::ng-deep .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}\n"] });
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupComponent, decorators: [{
29
- type: Component,
30
- args: [{ selector: 'bs-list-group', template: "<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>", styles: [":host ::ng-deep .list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: 1px;--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}:host ::ng-deep .list-group-numbered{list-style-type:none;counter-reset:section}:host ::ng-deep .list-group-numbered>.list-group-item:before{content:counters(section,\".\") \". \";counter-increment:section}:host ::ng-deep .list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}:host ::ng-deep .list-group-item-action:hover,:host ::ng-deep .list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}:host ::ng-deep .list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}:host ::ng-deep .list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}:host ::ng-deep .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:host ::ng-deep .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:host ::ng-deep .list-group-item.disabled,:host ::ng-deep .list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}:host ::ng-deep .list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}:host ::ng-deep .list-group-item+.list-group-item{border-top-width:0}:host ::ng-deep .list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}:host ::ng-deep .list-group-horizontal{flex-direction:row}:host ::ng-deep .list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width: 576px){:host ::ng-deep .list-group-horizontal-sm{flex-direction:row}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 768px){:host ::ng-deep .list-group-horizontal-md{flex-direction:row}:host ::ng-deep .list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 992px){:host ::ng-deep .list-group-horizontal-lg{flex-direction:row}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1200px){:host ::ng-deep .list-group-horizontal-xl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1400px){:host ::ng-deep .list-group-horizontal-xxl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}:host ::ng-deep .list-group-flush{border-radius:0}:host ::ng-deep .list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}:host ::ng-deep .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:host ::ng-deep .list-group-item-primary{color:#084298;background-color:#cfe2ff}:host ::ng-deep .list-group-item-primary.list-group-item-action:hover,:host ::ng-deep .list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}:host ::ng-deep .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}:host ::ng-deep .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}:host ::ng-deep .list-group-item-secondary.list-group-item-action:hover,:host ::ng-deep .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}:host ::ng-deep .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}:host ::ng-deep .list-group-item-success{color:#0f5132;background-color:#d1e7dd}:host ::ng-deep .list-group-item-success.list-group-item-action:hover,:host ::ng-deep .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}:host ::ng-deep .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}:host ::ng-deep .list-group-item-info{color:#055160;background-color:#cff4fc}:host ::ng-deep .list-group-item-info.list-group-item-action:hover,:host ::ng-deep .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}:host ::ng-deep .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}:host ::ng-deep .list-group-item-warning{color:#664d03;background-color:#fff3cd}:host ::ng-deep .list-group-item-warning.list-group-item-action:hover,:host ::ng-deep .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}:host ::ng-deep .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}:host ::ng-deep .list-group-item-danger{color:#842029;background-color:#f8d7da}:host ::ng-deep .list-group-item-danger.list-group-item-action:hover,:host ::ng-deep .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}:host ::ng-deep .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}:host ::ng-deep .list-group-item-light{color:#636464;background-color:#fefefe}:host ::ng-deep .list-group-item-light.list-group-item-action:hover,:host ::ng-deep .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}:host ::ng-deep .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}:host ::ng-deep .list-group-item-dark{color:#141619;background-color:#d3d3d4}:host ::ng-deep .list-group-item-dark.list-group-item-action:hover,:host ::ng-deep .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}:host ::ng-deep .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}\n"] }]
31
- }], ctorParameters: function () { return []; }, propDecorators: { items: [{
32
- type: ContentChildren,
33
- args: [BsListGroupItemComponent]
34
- }] } });
35
-
36
- class BsListGroupModule {
37
- }
38
- BsListGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
39
- BsListGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupModule, declarations: [BsListGroupComponent,
40
- BsListGroupItemComponent], imports: [CommonModule], exports: [BsListGroupComponent,
41
- BsListGroupItemComponent] });
42
- BsListGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupModule, imports: [CommonModule] });
43
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsListGroupModule, decorators: [{
44
- type: NgModule,
45
- args: [{
46
- imports: [CommonModule],
47
- declarations: [
48
- BsListGroupComponent,
49
- BsListGroupItemComponent
50
- ],
51
- exports: [
52
- BsListGroupComponent,
53
- BsListGroupItemComponent
54
- ]
55
- }]
56
- }] });
57
-
58
- /**
59
- * Generated bundle index. Do not edit.
60
- */
61
-
62
- export { BsListGroupComponent, BsListGroupItemComponent, BsListGroupModule };
63
- //# sourceMappingURL=mintplayer-ng-bootstrap-list-group.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-list-group.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/list-group/src/list-group-item/list-group-item.component.ts","../../../../libs/mintplayer-ng-bootstrap/list-group/src/list-group-item/list-group-item.component.html","../../../../libs/mintplayer-ng-bootstrap/list-group/src/list-group/list-group.component.ts","../../../../libs/mintplayer-ng-bootstrap/list-group/src/list-group/list-group.component.html","../../../../libs/mintplayer-ng-bootstrap/list-group/src/list-group.module.ts","../../../../libs/mintplayer-ng-bootstrap/list-group/mintplayer-ng-bootstrap-list-group.ts"],"sourcesContent":["import { Component, HostBinding } from '@angular/core';\n\n@Component({\n selector: 'bs-list-group-item',\n templateUrl: './list-group-item.component.html',\n styleUrls: ['./list-group-item.component.scss']\n})\nexport class BsListGroupItemComponent {\n @HostBinding('class.list-group-item') classes = true;\n}\n","<!-- <li class=\"list-group-item\"> -->\n <ng-content></ng-content>\n<!-- </li> -->","import { Component, ContentChildren, OnInit, QueryList } from '@angular/core';\nimport { BsListGroupItemComponent } from '../list-group-item/list-group-item.component';\n\n@Component({\n selector: 'bs-list-group',\n templateUrl: './list-group.component.html',\n styleUrls: ['./list-group.component.scss']\n})\nexport class BsListGroupComponent implements OnInit {\n\n constructor() {\n }\n\n ngOnInit() {\n }\n\n @ContentChildren(BsListGroupItemComponent) items!: QueryList<BsListGroupItemComponent>;\n\n}\n","<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsListGroupComponent } from './list-group/list-group.component';\nimport { BsListGroupItemComponent } from './list-group-item/list-group-item.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ],\n exports: [\n BsListGroupComponent,\n BsListGroupItemComponent\n ]\n})\nexport class BsListGroupModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAOa,wBAAwB,CAAA;AALrC,IAAA,WAAA,GAAA;QAMwC,IAAO,CAAA,OAAA,GAAG,IAAI,CAAC;AACtD,KAAA;;qHAFY,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAxB,wBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,6HCPrC,wFAEc,EAAA,MAAA,EAAA,CAAA,wCAAA,CAAA,EAAA,CAAA,CAAA;2FDKD,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,SAAS;+BACE,oBAAoB,EAAA,QAAA,EAAA,wFAAA,EAAA,MAAA,EAAA,CAAA,wCAAA,CAAA,EAAA,CAAA;8BAKQ,OAAO,EAAA,CAAA;sBAA5C,WAAW;uBAAC,uBAAuB,CAAA;;;MEAzB,oBAAoB,CAAA;AAE/B,IAAA,WAAA,GAAA;KACC;IAED,QAAQ,GAAA;KACP;;iHANU,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;qGAApB,oBAAoB,EAAA,QAAA,EAAA,eAAA,EAAA,OAAA,EAAA,CAAA,EAAA,YAAA,EAAA,OAAA,EAAA,SAAA,EAQd,wBAAwB,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EChB3C,sEAEK,EAAA,MAAA,EAAA,CAAA,8yVAAA,CAAA,EAAA,CAAA,CAAA;2FDMQ,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,eAAe,EAAA,QAAA,EAAA,sEAAA,EAAA,MAAA,EAAA,CAAA,8yVAAA,CAAA,EAAA,CAAA;0EAYkB,KAAK,EAAA,CAAA;sBAA/C,eAAe;uBAAC,wBAAwB,CAAA;;;MEA9B,iBAAiB,CAAA;;8GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAjB,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,iBAR1B,oBAAoB;QACpB,wBAAwB,CAAA,EAAA,OAAA,EAAA,CAHhB,YAAY,CAAA,EAAA,OAAA,EAAA,CAMpB,oBAAoB;QACpB,wBAAwB,CAAA,EAAA,CAAA,CAAA;AAGf,iBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,YAVlB,YAAY,CAAA,EAAA,CAAA,CAAA;2FAUX,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAX7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,YAAY,EAAE;wBACZ,oBAAoB;wBACpB,wBAAwB;AACzB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,oBAAoB;wBACpB,wBAAwB;AACzB,qBAAA;AACF,iBAAA,CAAA;;;ACfD;;AAEG;;;;"}