@mintplayer/ng-bootstrap 15.27.0 → 16.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1244) 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/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +1 -1
  397. package/offcanvas/src/components/offcanvas-body/offcanvas-body.component.d.ts +1 -1
  398. package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +1 -1
  399. package/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.d.ts +1 -1
  400. package/package.json +218 -353
  401. package/pagination/src/component/pagination/pagination.component.d.ts +1 -1
  402. package/placeholder/src/placeholder/placeholder.component.d.ts +1 -1
  403. package/popover/src/component/popover.component.d.ts +1 -1
  404. package/popover/src/directives/popover/popover.directive.d.ts +1 -1
  405. package/progress-bar/src/progress/progress.component.d.ts +1 -1
  406. package/progress-bar/src/progress-bar/progress-bar.component.d.ts +1 -1
  407. package/range/src/component/range.component.d.ts +1 -1
  408. package/rating/src/component/rating.component.d.ts +1 -1
  409. package/resizable/src/resizable/resizable.component.d.ts +1 -1
  410. package/resizable/src/resize-glyph/resize-glyph.directive.d.ts +1 -1
  411. package/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.d.ts +1 -1
  412. package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
  413. package/select/src/component/select.component.d.ts +1 -1
  414. package/select/src/value-accessors/select-value-accessor.d.ts +2 -2
  415. package/select2/src/component/select2.component.d.ts +1 -1
  416. package/snackbar/src/directives/snackbar-close/snackbar-close.directive.d.ts +1 -1
  417. package/spinner/src/spinner.component.d.ts +1 -1
  418. package/splitter/src/splitter/splitter.component.d.ts +1 -1
  419. package/tab-control/src/tab-control/tab-control.component.d.ts +1 -1
  420. package/tab-control/src/tab-page/tab-page.component.d.ts +1 -1
  421. package/table/src/component/table.component.d.ts +1 -1
  422. package/timepicker/src/timepicker.component.d.ts +1 -1
  423. package/toast/src/components/toast/toast.component.d.ts +1 -1
  424. package/toast/src/directives/toast-close/toast-close.directive.d.ts +1 -1
  425. package/toggle-button/src/component/toggle-button.component.d.ts +1 -1
  426. package/tooltip/src/component/tooltip.component.d.ts +1 -1
  427. package/tooltip/src/directive/tooltip.directive.d.ts +1 -1
  428. package/treeview/src/treeview/treeview.component.d.ts +1 -1
  429. package/typeahead/src/typeahead.component.d.ts +1 -1
  430. package/esm2020/accordion/src/accordion/accordion.component.mjs +0 -26
  431. package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +0 -68
  432. package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +0 -21
  433. package/esm2020/accordion/src/accordion.module.mjs +0 -38
  434. package/esm2020/alert/src/alert/alert.component.mjs +0 -41
  435. package/esm2020/alert/src/alert-close/alert-close.component.mjs +0 -20
  436. package/esm2020/alert/src/alert.module.mjs +0 -27
  437. package/esm2020/badge/src/badge.component.mjs +0 -30
  438. package/esm2020/badge/src/badge.module.mjs +0 -18
  439. package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +0 -13
  440. package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +0 -18
  441. package/esm2020/breadcrumb/src/breadcrumb.module.mjs +0 -19
  442. package/esm2020/button-group/src/button-group/button-group.component.mjs +0 -13
  443. package/esm2020/button-group/src/button-group.module.mjs +0 -18
  444. package/esm2020/button-type/src/button-type/button-type.directive.mjs +0 -30
  445. package/esm2020/button-type/src/button-type/button-type.module.mjs +0 -24
  446. package/esm2020/calendar/src/calendar.component.mjs +0 -111
  447. package/esm2020/calendar/src/calendar.module.mjs +0 -39
  448. package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +0 -24
  449. package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +0 -21
  450. package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +0 -24
  451. package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
  452. package/esm2020/calendar-month/src/service/calendar-month.service.mjs +0 -94
  453. package/esm2020/card/src/card/card.component.mjs +0 -16
  454. package/esm2020/card/src/card-header/card-header.component.mjs +0 -16
  455. package/esm2020/card/src/card.module.mjs +0 -27
  456. package/esm2020/carousel/src/carousel/carousel.component.mjs +0 -137
  457. package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +0 -24
  458. package/esm2020/carousel/src/carousel.module.mjs +0 -37
  459. package/esm2020/close/src/close.component.mjs +0 -21
  460. package/esm2020/close/src/close.module.mjs +0 -18
  461. package/esm2020/code-snippet/src/code-snippet.component.mjs +0 -34
  462. package/esm2020/code-snippet/src/code-snippet.module.mjs +0 -36
  463. package/esm2020/context-menu/src/context-menu.directive.mjs +0 -84
  464. package/esm2020/context-menu/src/context-menu.module.mjs +0 -34
  465. package/esm2020/copy/src/copy.directive.mjs +0 -45
  466. package/esm2020/copy/src/copy.module.mjs +0 -24
  467. package/esm2020/datatable/src/datatable/datatable.component.mjs +0 -57
  468. package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +0 -19
  469. package/esm2020/datatable/src/datatable.module.mjs +0 -46
  470. package/esm2020/datatable/src/row-template/row-template.directive.mjs +0 -19
  471. package/esm2020/datepicker/src/datepicker.component.mjs +0 -49
  472. package/esm2020/datepicker/src/datepicker.module.mjs +0 -40
  473. package/esm2020/dock/src/dock/dock.component.mjs +0 -93
  474. package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +0 -60
  475. package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +0 -27
  476. package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +0 -277
  477. package/esm2020/dock/src/dock.module.mjs +0 -63
  478. package/esm2020/dock/src/services/dock/dock.service.mjs +0 -56
  479. package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +0 -68
  480. package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +0 -114
  481. package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -31
  482. package/esm2020/dropdown/src/dropdown.module.mjs +0 -43
  483. package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +0 -19
  484. package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +0 -18
  485. package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +0 -19
  486. package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +0 -42
  487. package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +0 -26
  488. package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +0 -58
  489. package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +0 -24
  490. package/esm2020/enum/src/service/enum.service.mjs +0 -31
  491. package/esm2020/file-upload/src/component/file-upload.component.mjs +0 -89
  492. package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +0 -18
  493. package/esm2020/file-upload/src/file-upload.module.mjs +0 -50
  494. package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +0 -23
  495. package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +0 -20
  496. package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +0 -18
  497. package/esm2020/for/src/for.directive.mjs +0 -38
  498. package/esm2020/for/src/for.module.mjs +0 -24
  499. package/esm2020/form/src/form/form.component.mjs +0 -20
  500. package/esm2020/form/src/form-control/form-control.directive.mjs +0 -19
  501. package/esm2020/form/src/form-group/form-group.directive.mjs +0 -19
  502. package/esm2020/form/src/form.module.mjs +0 -20
  503. package/esm2020/grid/src/component/grid.component.mjs +0 -32
  504. package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +0 -19
  505. package/esm2020/grid/src/directives/column/column.directive.mjs +0 -56
  506. package/esm2020/grid/src/directives/row/row.directive.mjs +0 -19
  507. package/esm2020/grid/src/grid.module.mjs +0 -21
  508. package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +0 -11
  509. package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +0 -18
  510. package/esm2020/icon/src/icon.component.mjs +0 -34
  511. package/esm2020/icon/src/icon.module.mjs +0 -18
  512. package/esm2020/input-group/src/input-group/input-group.component.mjs +0 -11
  513. package/esm2020/input-group/src/input-group.module.mjs +0 -18
  514. package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +0 -47
  515. package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +0 -30
  516. package/esm2020/instance-of/src/directives/instanceof.directive.mjs +0 -62
  517. package/esm2020/instance-of/src/instance-of.module.mjs +0 -37
  518. package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +0 -17
  519. package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +0 -32
  520. package/esm2020/lazy-loading/src/lazy-loading.module.mjs +0 -24
  521. package/esm2020/let/directive/let.directive.mjs +0 -38
  522. package/esm2020/let/let.module.mjs +0 -24
  523. package/esm2020/lib/pipes/font-color/font-color.module.mjs +0 -24
  524. package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +0 -26
  525. package/esm2020/lib/pipes/in-list/in-list.module.mjs +0 -24
  526. package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +0 -16
  527. package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +0 -24
  528. package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +0 -16
  529. package/esm2020/list-group/src/list-group/list-group.component.mjs +0 -19
  530. package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +0 -17
  531. package/esm2020/list-group/src/list-group.module.mjs +0 -27
  532. package/esm2020/markdown/src/bold/bold.pipe.mjs +0 -30
  533. package/esm2020/markdown/src/italic/italic.pipe.mjs +0 -30
  534. package/esm2020/markdown/src/markdown.module.mjs +0 -39
  535. package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +0 -30
  536. package/esm2020/markdown/src/underline/underline.pipe.mjs +0 -30
  537. package/esm2020/modal/src/components/modal/modal.component.mjs +0 -21
  538. package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +0 -83
  539. package/esm2020/modal/src/directives/modal/modal.directive.mjs +0 -18
  540. package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +0 -19
  541. package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +0 -24
  542. package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +0 -19
  543. package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +0 -19
  544. package/esm2020/modal/src/modal.module.mjs +0 -75
  545. package/esm2020/multiselect/src/component/multiselect.component.mjs +0 -45
  546. package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +0 -18
  547. package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +0 -18
  548. package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +0 -18
  549. package/esm2020/multiselect/src/multiselect.module.mjs +0 -63
  550. package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -38
  551. package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +0 -18
  552. package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +0 -34
  553. package/esm2020/navbar/src/navbar/navbar.component.mjs +0 -141
  554. package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +0 -20
  555. package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +0 -72
  556. package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +0 -143
  557. package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +0 -104
  558. package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +0 -69
  559. package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +0 -47
  560. package/esm2020/navbar/src/navbar.module.mjs +0 -91
  561. package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +0 -94
  562. package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +0 -22
  563. package/esm2020/navigation-lock/src/navigation-lock.module.mjs +0 -28
  564. package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +0 -27
  565. package/esm2020/no-noscript/src/no-noscript.module.mjs +0 -18
  566. package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +0 -111
  567. package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +0 -18
  568. package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +0 -14
  569. package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +0 -143
  570. package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +0 -24
  571. package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +0 -18
  572. package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +0 -71
  573. package/esm2020/offcanvas/src/offcanvas.module.mjs +0 -75
  574. package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +0 -29
  575. package/esm2020/ordinal-number/src/ordinal-number.module.mjs +0 -24
  576. package/esm2020/pagination/src/component/pagination/pagination.component.mjs +0 -201
  577. package/esm2020/pagination/src/pagination.module.mjs +0 -24
  578. package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +0 -26
  579. package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +0 -46
  580. package/esm2020/placeholder/src/placeholder.module.mjs +0 -19
  581. package/esm2020/popover/src/component/popover.component.mjs +0 -57
  582. package/esm2020/popover/src/directives/popover/popover.directive.mjs +0 -132
  583. package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +0 -19
  584. package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +0 -19
  585. package/esm2020/popover/src/popover.module.mjs +0 -36
  586. package/esm2020/progress-bar/src/progress/progress.component.mjs +0 -31
  587. package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +0 -121
  588. package/esm2020/progress-bar/src/progress-bar.module.mjs +0 -29
  589. package/esm2020/range/src/component/range.component.mjs +0 -25
  590. package/esm2020/range/src/range.module.mjs +0 -19
  591. package/esm2020/range/src/value-accessor/range-value-accessor.mjs +0 -62
  592. package/esm2020/rating/src/component/rating.component.mjs +0 -75
  593. package/esm2020/rating/src/rating.module.mjs +0 -24
  594. package/esm2020/resizable/src/resizable/resizable.component.mjs +0 -98
  595. package/esm2020/resizable/src/resizable.module.mjs +0 -29
  596. package/esm2020/resizable/src/resize-glyph/resize-glyph.directive.mjs +0 -219
  597. package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +0 -85
  598. package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +0 -539
  599. package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +0 -16
  600. package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +0 -20
  601. package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +0 -20
  602. package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +0 -22
  603. package/esm2020/scheduler/src/scheduler.module.mjs +0 -45
  604. package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +0 -65
  605. package/esm2020/scrollspy/src/component/scrollspy.component.mjs +0 -90
  606. package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +0 -16
  607. package/esm2020/scrollspy/src/scrollspy.module.mjs +0 -29
  608. package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +0 -31
  609. package/esm2020/select/src/component/select.component.mjs +0 -85
  610. package/esm2020/select/src/select.module.mjs +0 -31
  611. package/esm2020/select/src/value-accessors/select-value-accessor.mjs +0 -167
  612. package/esm2020/select2/src/component/select2.component.mjs +0 -85
  613. package/esm2020/select2/src/directive/item-template.directive.mjs +0 -19
  614. package/esm2020/select2/src/select2.module.mjs +0 -49
  615. package/esm2020/snackbar/src/component/snackbar.component.mjs +0 -36
  616. package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +0 -27
  617. package/esm2020/snackbar/src/service/snackbar.service.mjs +0 -45
  618. package/esm2020/snackbar/src/snackbar.module.mjs +0 -43
  619. package/esm2020/spinner/src/spinner.component.mjs +0 -43
  620. package/esm2020/spinner/src/spinner.module.mjs +0 -18
  621. package/esm2020/splitter/src/element-at/element-at.pipe.mjs +0 -21
  622. package/esm2020/splitter/src/split-panel/split-panel.component.mjs +0 -18
  623. package/esm2020/splitter/src/splitter/splitter.component.mjs +0 -206
  624. package/esm2020/splitter/src/splitter.module.mjs +0 -23
  625. package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +0 -132
  626. package/esm2020/tab-control/src/tab-control.module.mjs +0 -46
  627. package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +0 -30
  628. package/esm2020/tab-control/src/tab-page-header/tab-page-header.directive.mjs +0 -16
  629. package/esm2020/table/src/component/table.component.mjs +0 -47
  630. package/esm2020/table/src/table.module.mjs +0 -18
  631. package/esm2020/timepicker/src/timepicker.component.mjs +0 -117
  632. package/esm2020/timepicker/src/timepicker.module.mjs +0 -60
  633. package/esm2020/toast/src/components/toast/toast.component.mjs +0 -16
  634. package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +0 -20
  635. package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +0 -23
  636. package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +0 -17
  637. package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +0 -32
  638. package/esm2020/toast/src/pipes/add-properties.pipe.mjs +0 -17
  639. package/esm2020/toast/src/services/toast/toast.service.mjs +0 -56
  640. package/esm2020/toast/src/toast.module.mjs +0 -77
  641. package/esm2020/toggle-button/src/component/toggle-button.component.mjs +0 -158
  642. package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +0 -19
  643. package/esm2020/toggle-button/src/toggle-button.module.mjs +0 -34
  644. package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +0 -108
  645. package/esm2020/tooltip/src/component/tooltip.component.mjs +0 -38
  646. package/esm2020/tooltip/src/directive/tooltip.directive.mjs +0 -109
  647. package/esm2020/tooltip/src/tooltip.module.mjs +0 -35
  648. package/esm2020/treeview/src/treeview/treeview.component.mjs +0 -46
  649. package/esm2020/treeview/src/treeview-item/treeview-item.component.mjs +0 -27
  650. package/esm2020/treeview/src/treeview.module.mjs +0 -21
  651. package/esm2020/typeahead/src/typeahead.component.mjs +0 -82
  652. package/esm2020/typeahead/src/typeahead.module.mjs +0 -48
  653. package/esm2020/user-agent/src/directive/user-agent.directive.mjs +0 -98
  654. package/esm2020/user-agent/src/user-agent.module.mjs +0 -24
  655. package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +0 -144
  656. package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
  657. package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +0 -87
  658. package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
  659. package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +0 -52
  660. package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
  661. package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
  662. package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
  663. package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +0 -35
  664. package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
  665. package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +0 -58
  666. package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
  667. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +0 -178
  668. package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
  669. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +0 -153
  670. package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
  671. package/fesm2015/mintplayer-ng-bootstrap-card.mjs +0 -60
  672. package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +0 -1
  673. package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +0 -196
  674. package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
  675. package/fesm2015/mintplayer-ng-bootstrap-close.mjs +0 -43
  676. package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +0 -1
  677. package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
  678. package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
  679. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +0 -123
  680. package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
  681. package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +0 -75
  682. package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
  683. package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +0 -171
  684. package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
  685. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
  686. package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
  687. package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +0 -601
  688. package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
  689. package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
  690. package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
  691. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -89
  692. package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
  693. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +0 -248
  694. package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
  695. package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
  696. package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
  697. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +0 -38
  698. package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
  699. package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
  700. package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
  701. package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +0 -43
  702. package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
  703. package/fesm2015/mintplayer-ng-bootstrap-for.mjs +0 -66
  704. package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +0 -1
  705. package/fesm2015/mintplayer-ng-bootstrap-form.mjs +0 -76
  706. package/fesm2015/mintplayer-ng-bootstrap-form.mjs.map +0 -1
  707. package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +0 -141
  708. package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
  709. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
  710. package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
  711. package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +0 -56
  712. package/fesm2015/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
  713. package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +0 -33
  714. package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
  715. package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +0 -222
  716. package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
  717. package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
  718. package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
  719. package/fesm2015/mintplayer-ng-bootstrap-let.mjs +0 -66
  720. package/fesm2015/mintplayer-ng-bootstrap-let.mjs.map +0 -1
  721. package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +0 -63
  722. package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
  723. package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +0 -147
  724. package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
  725. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +0 -263
  726. package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
  727. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
  728. package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
  729. package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +0 -735
  730. package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
  731. package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -148
  732. package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
  733. package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +0 -50
  734. package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
  735. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +0 -456
  736. package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
  737. package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
  738. package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
  739. package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +0 -229
  740. package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
  741. package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
  742. package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
  743. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +0 -261
  744. package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
  745. package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
  746. package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
  747. package/fesm2015/mintplayer-ng-bootstrap-range.mjs +0 -105
  748. package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +0 -1
  749. package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +0 -103
  750. package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
  751. package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs +0 -338
  752. package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
  753. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
  754. package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
  755. package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +0 -166
  756. package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
  757. package/fesm2015/mintplayer-ng-bootstrap-select.mjs +0 -284
  758. package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +0 -1
  759. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +0 -152
  760. package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
  761. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +0 -147
  762. package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
  763. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +0 -65
  764. package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
  765. package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +0 -268
  766. package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
  767. package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
  768. package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
  769. package/fesm2015/mintplayer-ng-bootstrap-table.mjs +0 -69
  770. package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +0 -1
  771. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
  772. package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
  773. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +0 -238
  774. package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
  775. package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
  776. package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
  777. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +0 -185
  778. package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
  779. package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs +0 -93
  780. package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
  781. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
  782. package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
  783. package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +0 -127
  784. package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
  785. package/fesm2015/mintplayer-ng-bootstrap.mjs +0 -144
  786. package/fesm2015/mintplayer-ng-bootstrap.mjs.map +0 -1
  787. package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +0 -144
  788. package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
  789. package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +0 -87
  790. package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
  791. package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +0 -52
  792. package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
  793. package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
  794. package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
  795. package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +0 -35
  796. package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
  797. package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +0 -58
  798. package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
  799. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +0 -175
  800. package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
  801. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +0 -153
  802. package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
  803. package/fesm2020/mintplayer-ng-bootstrap-card.mjs +0 -60
  804. package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +0 -1
  805. package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +0 -194
  806. package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
  807. package/fesm2020/mintplayer-ng-bootstrap-close.mjs +0 -43
  808. package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +0 -1
  809. package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
  810. package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
  811. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +0 -121
  812. package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
  813. package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +0 -72
  814. package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
  815. package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +0 -172
  816. package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
  817. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
  818. package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
  819. package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +0 -598
  820. package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
  821. package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
  822. package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
  823. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -87
  824. package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
  825. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +0 -243
  826. package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
  827. package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
  828. package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
  829. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +0 -38
  830. package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
  831. package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
  832. package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
  833. package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +0 -41
  834. package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
  835. package/fesm2020/mintplayer-ng-bootstrap-for.mjs +0 -66
  836. package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +0 -1
  837. package/fesm2020/mintplayer-ng-bootstrap-form.mjs +0 -76
  838. package/fesm2020/mintplayer-ng-bootstrap-form.mjs.map +0 -1
  839. package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +0 -141
  840. package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
  841. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
  842. package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
  843. package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +0 -56
  844. package/fesm2020/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
  845. package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +0 -33
  846. package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
  847. package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +0 -218
  848. package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
  849. package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
  850. package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
  851. package/fesm2020/mintplayer-ng-bootstrap-let.mjs +0 -66
  852. package/fesm2020/mintplayer-ng-bootstrap-let.mjs.map +0 -1
  853. package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +0 -63
  854. package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
  855. package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +0 -147
  856. package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
  857. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +0 -259
  858. package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
  859. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
  860. package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
  861. package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +0 -724
  862. package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
  863. package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -145
  864. package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
  865. package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +0 -48
  866. package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
  867. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +0 -452
  868. package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
  869. package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
  870. package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
  871. package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +0 -229
  872. package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
  873. package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
  874. package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
  875. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +0 -256
  876. package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
  877. package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
  878. package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
  879. package/fesm2020/mintplayer-ng-bootstrap-range.mjs +0 -105
  880. package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +0 -1
  881. package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +0 -103
  882. package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
  883. package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs +0 -346
  884. package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
  885. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
  886. package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
  887. package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +0 -161
  888. package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
  889. package/fesm2020/mintplayer-ng-bootstrap-select.mjs +0 -282
  890. package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +0 -1
  891. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +0 -152
  892. package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
  893. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +0 -144
  894. package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
  895. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +0 -65
  896. package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
  897. package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +0 -268
  898. package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
  899. package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
  900. package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
  901. package/fesm2020/mintplayer-ng-bootstrap-table.mjs +0 -69
  902. package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +0 -1
  903. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
  904. package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
  905. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +0 -236
  906. package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
  907. package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
  908. package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
  909. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +0 -181
  910. package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
  911. package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs +0 -91
  912. package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
  913. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
  914. package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
  915. package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +0 -125
  916. package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
  917. package/fesm2020/mintplayer-ng-bootstrap.mjs +0 -144
  918. package/fesm2020/mintplayer-ng-bootstrap.mjs.map +0 -1
  919. /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
  920. /package/{esm2020 → esm2022}/accordion/mintplayer-ng-bootstrap-accordion.mjs +0 -0
  921. /package/{esm2020 → esm2022}/accordion/src/index.mjs +0 -0
  922. /package/{esm2020 → esm2022}/alert/index.mjs +0 -0
  923. /package/{esm2020 → esm2022}/alert/mintplayer-ng-bootstrap-alert.mjs +0 -0
  924. /package/{esm2020 → esm2022}/alert/src/index.mjs +0 -0
  925. /package/{esm2020 → esm2022}/badge/index.mjs +0 -0
  926. /package/{esm2020 → esm2022}/badge/mintplayer-ng-bootstrap-badge.mjs +0 -0
  927. /package/{esm2020 → esm2022}/badge/src/index.mjs +0 -0
  928. /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
  929. /package/{esm2020 → esm2022}/breadcrumb/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -0
  930. /package/{esm2020 → esm2022}/breadcrumb/src/index.mjs +0 -0
  931. /package/{esm2020 → esm2022}/button-group/index.mjs +0 -0
  932. /package/{esm2020 → esm2022}/button-group/mintplayer-ng-bootstrap-button-group.mjs +0 -0
  933. /package/{esm2020 → esm2022}/button-group/src/index.mjs +0 -0
  934. /package/{esm2020 → esm2022}/button-type/index.mjs +0 -0
  935. /package/{esm2020 → esm2022}/button-type/mintplayer-ng-bootstrap-button-type.mjs +0 -0
  936. /package/{esm2020 → esm2022}/button-type/src/index.mjs +0 -0
  937. /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
  938. /package/{esm2020 → esm2022}/calendar/mintplayer-ng-bootstrap-calendar.mjs +0 -0
  939. /package/{esm2020 → esm2022}/calendar/src/index.mjs +0 -0
  940. /package/{esm2020 → esm2022}/calendar-month/index.mjs +0 -0
  941. /package/{esm2020 → esm2022}/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +0 -0
  942. /package/{esm2020 → esm2022}/calendar-month/src/index.mjs +0 -0
  943. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/date-day-of-month.mjs +0 -0
  944. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/first-and-last-date.mjs +0 -0
  945. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/index.mjs +0 -0
  946. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/week.mjs +0 -0
  947. /package/{esm2020 → esm2022}/calendar-month/src/interfaces/weekday.mjs +0 -0
  948. /package/{esm2020 → esm2022}/calendar-month/src/pipes/index.mjs +0 -0
  949. /package/{esm2020 → esm2022}/calendar-month/src/pipes/month-name/index.mjs +0 -0
  950. /package/{esm2020 → esm2022}/calendar-month/src/pipes/weekday-name/index.mjs +0 -0
  951. /package/{esm2020 → esm2022}/card/index.mjs +0 -0
  952. /package/{esm2020 → esm2022}/card/mintplayer-ng-bootstrap-card.mjs +0 -0
  953. /package/{esm2020 → esm2022}/card/src/index.mjs +0 -0
  954. /package/{esm2020 → esm2022}/carousel/index.mjs +0 -0
  955. /package/{esm2020 → esm2022}/carousel/mintplayer-ng-bootstrap-carousel.mjs +0 -0
  956. /package/{esm2020 → esm2022}/carousel/src/index.mjs +0 -0
  957. /package/{esm2020 → esm2022}/close/index.mjs +0 -0
  958. /package/{esm2020 → esm2022}/close/mintplayer-ng-bootstrap-close.mjs +0 -0
  959. /package/{esm2020 → esm2022}/close/src/index.mjs +0 -0
  960. /package/{esm2020 → esm2022}/code-snippet/index.mjs +0 -0
  961. /package/{esm2020 → esm2022}/code-snippet/mintplayer-ng-bootstrap-code-snippet.mjs +0 -0
  962. /package/{esm2020 → esm2022}/code-snippet/src/index.mjs +0 -0
  963. /package/{esm2020 → esm2022}/context-menu/index.mjs +0 -0
  964. /package/{esm2020 → esm2022}/context-menu/mintplayer-ng-bootstrap-context-menu.mjs +0 -0
  965. /package/{esm2020 → esm2022}/context-menu/src/index.mjs +0 -0
  966. /package/{esm2020 → esm2022}/copy/index.mjs +0 -0
  967. /package/{esm2020 → esm2022}/copy/mintplayer-ng-bootstrap-copy.mjs +0 -0
  968. /package/{esm2020 → esm2022}/copy/src/index.mjs +0 -0
  969. /package/{esm2020 → esm2022}/datatable/index.mjs +0 -0
  970. /package/{esm2020 → esm2022}/datatable/mintplayer-ng-bootstrap-datatable.mjs +0 -0
  971. /package/{esm2020 → esm2022}/datatable/src/datatable-column/datatable-column-metadata.mjs +0 -0
  972. /package/{esm2020 → esm2022}/datatable/src/datatable-column/index.mjs +0 -0
  973. /package/{esm2020 → esm2022}/datatable/src/datatable-settings.mjs +0 -0
  974. /package/{esm2020 → esm2022}/datatable/src/index.mjs +0 -0
  975. /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
  976. /package/{esm2020 → esm2022}/datepicker/mintplayer-ng-bootstrap-datepicker.mjs +0 -0
  977. /package/{esm2020 → esm2022}/datepicker/src/index.mjs +0 -0
  978. /package/{esm2020 → esm2022}/dock/index.mjs +0 -0
  979. /package/{esm2020 → esm2022}/dock/mintplayer-ng-bootstrap-dock.mjs +0 -0
  980. /package/{esm2020 → esm2022}/dock/src/enums/index.mjs +0 -0
  981. /package/{esm2020 → esm2022}/dock/src/enums/pane-type.enum.mjs +0 -0
  982. /package/{esm2020 → esm2022}/dock/src/index.mjs +0 -0
  983. /package/{esm2020 → esm2022}/dock/src/interfaces/dock-layout.mjs +0 -0
  984. /package/{esm2020 → esm2022}/dock/src/interfaces/drag-operation.mjs +0 -0
  985. /package/{esm2020 → esm2022}/dock/src/interfaces/index.mjs +0 -0
  986. /package/{esm2020 → esm2022}/dock/src/interfaces/point.mjs +0 -0
  987. /package/{esm2020 → esm2022}/dock/src/interfaces/remove-from-pane-result.mjs +0 -0
  988. /package/{esm2020 → esm2022}/dock/src/interfaces/size.mjs +0 -0
  989. /package/{esm2020 → esm2022}/dock/src/panes/content-pane.mjs +0 -0
  990. /package/{esm2020 → esm2022}/dock/src/panes/dock-pane.mjs +0 -0
  991. /package/{esm2020 → esm2022}/dock/src/panes/document-host-pane.mjs +0 -0
  992. /package/{esm2020 → esm2022}/dock/src/panes/floating-pane.mjs +0 -0
  993. /package/{esm2020 → esm2022}/dock/src/panes/index.mjs +0 -0
  994. /package/{esm2020 → esm2022}/dock/src/panes/split-pane.mjs +0 -0
  995. /package/{esm2020 → esm2022}/dock/src/panes/tab-group-pane.mjs +0 -0
  996. /package/{esm2020 → esm2022}/dock/src/services/index.mjs +0 -0
  997. /package/{esm2020 → esm2022}/dock/src/types/split-pane-orientation.type.mjs +0 -0
  998. /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
  999. /package/{esm2020 → esm2022}/dropdown/mintplayer-ng-bootstrap-dropdown.mjs +0 -0
  1000. /package/{esm2020 → esm2022}/dropdown/src/index.mjs +0 -0
  1001. /package/{esm2020 → esm2022}/dropdown-divider/index.mjs +0 -0
  1002. /package/{esm2020 → esm2022}/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -0
  1003. /package/{esm2020 → esm2022}/dropdown-divider/src/index.mjs +0 -0
  1004. /package/{esm2020 → esm2022}/dropdown-menu/index.mjs +0 -0
  1005. /package/{esm2020 → esm2022}/dropdown-menu/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -0
  1006. /package/{esm2020 → esm2022}/dropdown-menu/src/index.mjs +0 -0
  1007. /package/{esm2020 → esm2022}/enhanced-paste/index.mjs +0 -0
  1008. /package/{esm2020 → esm2022}/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -0
  1009. /package/{esm2020 → esm2022}/enhanced-paste/src/index.mjs +0 -0
  1010. /package/{esm2020 → esm2022}/enhanced-paste/src/interfaces/number-overflow.mjs +0 -0
  1011. /package/{esm2020 → esm2022}/enum/index.mjs +0 -0
  1012. /package/{esm2020 → esm2022}/enum/mintplayer-ng-bootstrap-enum.mjs +0 -0
  1013. /package/{esm2020 → esm2022}/enum/src/index.mjs +0 -0
  1014. /package/{esm2020 → esm2022}/enum/src/interfaces/enum-item.mjs +0 -0
  1015. /package/{esm2020 → esm2022}/enum/src/interfaces/index.mjs +0 -0
  1016. /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
  1017. /package/{esm2020 → esm2022}/file-upload/mintplayer-ng-bootstrap-file-upload.mjs +0 -0
  1018. /package/{esm2020 → esm2022}/file-upload/src/file-upload.mjs +0 -0
  1019. /package/{esm2020 → esm2022}/file-upload/src/index.mjs +0 -0
  1020. /package/{esm2020 → esm2022}/file-upload/src/pipes/index.mjs +0 -0
  1021. /package/{esm2020 → esm2022}/floating-labels/index.mjs +0 -0
  1022. /package/{esm2020 → esm2022}/floating-labels/mintplayer-ng-bootstrap-floating-labels.mjs +0 -0
  1023. /package/{esm2020 → esm2022}/floating-labels/src/index.mjs +0 -0
  1024. /package/{esm2020 → esm2022}/for/index.mjs +0 -0
  1025. /package/{esm2020 → esm2022}/for/mintplayer-ng-bootstrap-for.mjs +0 -0
  1026. /package/{esm2020 → esm2022}/for/src/index.mjs +0 -0
  1027. /package/{esm2020 → esm2022}/form/index.mjs +0 -0
  1028. /package/{esm2020 → esm2022}/form/mintplayer-ng-bootstrap-form.mjs +0 -0
  1029. /package/{esm2020 → esm2022}/form/src/index.mjs +0 -0
  1030. /package/{esm2020 → esm2022}/grid/index.mjs +0 -0
  1031. /package/{esm2020 → esm2022}/grid/mintplayer-ng-bootstrap-grid.mjs +0 -0
  1032. /package/{esm2020 → esm2022}/grid/src/directives/index.mjs +0 -0
  1033. /package/{esm2020 → esm2022}/grid/src/index.mjs +0 -0
  1034. /package/{esm2020 → esm2022}/grid/src/interfaces/column-definition.mjs +0 -0
  1035. /package/{esm2020 → esm2022}/grid/src/interfaces/index.mjs +0 -0
  1036. /package/{esm2020 → esm2022}/has-overlay/index.mjs +0 -0
  1037. /package/{esm2020 → esm2022}/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +0 -0
  1038. /package/{esm2020 → esm2022}/has-overlay/src/index.mjs +0 -0
  1039. /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
  1040. /package/{esm2020 → esm2022}/icon/mintplayer-ng-bootstrap-icon.mjs +0 -0
  1041. /package/{esm2020 → esm2022}/index.mjs +0 -0
  1042. /package/{esm2020 → esm2022}/input-group/index.mjs +0 -0
  1043. /package/{esm2020 → esm2022}/input-group/mintplayer-ng-bootstrap-input-group.mjs +0 -0
  1044. /package/{esm2020 → esm2022}/input-group/src/index.mjs +0 -0
  1045. /package/{esm2020 → esm2022}/instance-of/index.mjs +0 -0
  1046. /package/{esm2020 → esm2022}/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +0 -0
  1047. /package/{esm2020 → esm2022}/instance-of/src/directives/index.mjs +0 -0
  1048. /package/{esm2020 → esm2022}/instance-of/src/directives/switch-view.mjs +0 -0
  1049. /package/{esm2020 → esm2022}/instance-of/src/index.mjs +0 -0
  1050. /package/{esm2020 → esm2022}/instance-of/src/interfaces/index.mjs +0 -0
  1051. /package/{esm2020 → esm2022}/instance-of/src/interfaces/instance-of-context.mjs +0 -0
  1052. /package/{esm2020 → esm2022}/instance-of/src/pipes/index.mjs +0 -0
  1053. /package/{esm2020 → esm2022}/instance-of/src/types/abstract.type.mjs +0 -0
  1054. /package/{esm2020 → esm2022}/instance-of/src/types/index.mjs +0 -0
  1055. /package/{esm2020 → esm2022}/lazy-loading/index.mjs +0 -0
  1056. /package/{esm2020 → esm2022}/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -0
  1057. /package/{esm2020 → esm2022}/lazy-loading/src/index.mjs +0 -0
  1058. /package/{esm2020 → esm2022}/let/index.mjs +0 -0
  1059. /package/{esm2020 → esm2022}/let/interfaces/index.mjs +0 -0
  1060. /package/{esm2020 → esm2022}/let/interfaces/let-context.mjs +0 -0
  1061. /package/{esm2020 → esm2022}/let/mintplayer-ng-bootstrap-let.mjs +0 -0
  1062. /package/{esm2020 → esm2022}/lib/enums/color.enum.mjs +0 -0
  1063. /package/{esm2020 → esm2022}/lib/enums/index.mjs +0 -0
  1064. /package/{esm2020 → esm2022}/lib/pipes/font-color/index.mjs +0 -0
  1065. /package/{esm2020 → esm2022}/lib/pipes/in-list/index.mjs +0 -0
  1066. /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
  1067. /package/{esm2020 → esm2022}/lib/pipes/uc-first/index.mjs +0 -0
  1068. /package/{esm2020 → esm2022}/lib/providers/development.provider.mjs +0 -0
  1069. /package/{esm2020 → esm2022}/lib/providers/index.mjs +0 -0
  1070. /package/{esm2020 → esm2022}/lib/types/breakpoint.mjs +0 -0
  1071. /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
  1072. /package/{esm2020 → esm2022}/lib/types/position.mjs +0 -0
  1073. /package/{esm2020 → esm2022}/lib/types/size.mjs +0 -0
  1074. /package/{esm2020 → esm2022}/lib/types/view-state.type.mjs +0 -0
  1075. /package/{esm2020 → esm2022}/list-group/index.mjs +0 -0
  1076. /package/{esm2020 → esm2022}/list-group/mintplayer-ng-bootstrap-list-group.mjs +0 -0
  1077. /package/{esm2020 → esm2022}/list-group/src/index.mjs +0 -0
  1078. /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
  1079. /package/{esm2020 → esm2022}/markdown/mintplayer-ng-bootstrap-markdown.mjs +0 -0
  1080. /package/{esm2020 → esm2022}/mintplayer-ng-bootstrap.mjs +0 -0
  1081. /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
  1082. /package/{esm2020 → esm2022}/modal/mintplayer-ng-bootstrap-modal.mjs +0 -0
  1083. /package/{esm2020 → esm2022}/modal/src/components/index.mjs +0 -0
  1084. /package/{esm2020 → esm2022}/modal/src/directives/index.mjs +0 -0
  1085. /package/{esm2020 → esm2022}/modal/src/index.mjs +0 -0
  1086. /package/{esm2020 → esm2022}/modal/src/providers/modal-content.provider.mjs +0 -0
  1087. /package/{esm2020 → esm2022}/modal/src/providers/portal-factory.provider.mjs +0 -0
  1088. /package/{esm2020 → esm2022}/multiselect/index.mjs +0 -0
  1089. /package/{esm2020 → esm2022}/multiselect/mintplayer-ng-bootstrap-multiselect.mjs +0 -0
  1090. /package/{esm2020 → esm2022}/multiselect/src/directives/index.mjs +0 -0
  1091. /package/{esm2020 → esm2022}/multiselect/src/index.mjs +0 -0
  1092. /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
  1093. /package/{esm2020 → esm2022}/navbar/mintplayer-ng-bootstrap-navbar.mjs +0 -0
  1094. /package/{esm2020 → esm2022}/navbar/src/index.mjs +0 -0
  1095. /package/{esm2020 → esm2022}/navigation-lock/index.mjs +0 -0
  1096. /package/{esm2020 → esm2022}/navigation-lock/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -0
  1097. /package/{esm2020 → esm2022}/navigation-lock/src/index.mjs +0 -0
  1098. /package/{esm2020 → esm2022}/navigation-lock/src/interface/has-navigation-lock.mjs +0 -0
  1099. /package/{esm2020 → esm2022}/no-noscript/index.mjs +0 -0
  1100. /package/{esm2020 → esm2022}/no-noscript/mintplayer-ng-bootstrap-no-noscript.mjs +0 -0
  1101. /package/{esm2020 → esm2022}/no-noscript/src/index.mjs +0 -0
  1102. /package/{esm2020 → esm2022}/offcanvas/index.mjs +0 -0
  1103. /package/{esm2020 → esm2022}/offcanvas/mintplayer-ng-bootstrap-offcanvas.mjs +0 -0
  1104. /package/{esm2020 → esm2022}/offcanvas/src/components/index.mjs +0 -0
  1105. /package/{esm2020 → esm2022}/offcanvas/src/directives/index.mjs +0 -0
  1106. /package/{esm2020 → esm2022}/offcanvas/src/index.mjs +0 -0
  1107. /package/{esm2020 → esm2022}/offcanvas/src/providers/offcanvas-content.provider.mjs +0 -0
  1108. /package/{esm2020 → esm2022}/offcanvas/src/providers/portal-factory.provider.mjs +0 -0
  1109. /package/{esm2020 → esm2022}/ordinal-number/index.mjs +0 -0
  1110. /package/{esm2020 → esm2022}/ordinal-number/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -0
  1111. /package/{esm2020 → esm2022}/ordinal-number/src/index.mjs +0 -0
  1112. /package/{esm2020 → esm2022}/pagination/index.mjs +0 -0
  1113. /package/{esm2020 → esm2022}/pagination/mintplayer-ng-bootstrap-pagination.mjs +0 -0
  1114. /package/{esm2020 → esm2022}/pagination/src/component/index.mjs +0 -0
  1115. /package/{esm2020 → esm2022}/pagination/src/index.mjs +0 -0
  1116. /package/{esm2020 → esm2022}/pagination/src/interfaces/index.mjs +0 -0
  1117. /package/{esm2020 → esm2022}/pagination/src/interfaces/page-with-selection.mjs +0 -0
  1118. /package/{esm2020 → esm2022}/pagination/src/types/index.mjs +0 -0
  1119. /package/{esm2020 → esm2022}/pagination/src/types/page-number.type.mjs +0 -0
  1120. /package/{esm2020 → esm2022}/placeholder/index.mjs +0 -0
  1121. /package/{esm2020 → esm2022}/placeholder/mintplayer-ng-bootstrap-placeholder.mjs +0 -0
  1122. /package/{esm2020 → esm2022}/placeholder/src/index.mjs +0 -0
  1123. /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
  1124. /package/{esm2020 → esm2022}/popover/mintplayer-ng-bootstrap-popover.mjs +0 -0
  1125. /package/{esm2020 → esm2022}/popover/src/directives/index.mjs +0 -0
  1126. /package/{esm2020 → esm2022}/popover/src/index.mjs +0 -0
  1127. /package/{esm2020 → esm2022}/popover/src/providers/popover-content.provider.mjs +0 -0
  1128. /package/{esm2020 → esm2022}/popover/src/providers/portal-factory.provider.mjs +0 -0
  1129. /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
  1130. /package/{esm2020 → esm2022}/progress-bar/mintplayer-ng-bootstrap-progress-bar.mjs +0 -0
  1131. /package/{esm2020 → esm2022}/progress-bar/src/index.mjs +0 -0
  1132. /package/{esm2020 → esm2022}/range/index.mjs +0 -0
  1133. /package/{esm2020 → esm2022}/range/mintplayer-ng-bootstrap-range.mjs +0 -0
  1134. /package/{esm2020 → esm2022}/range/src/index.mjs +0 -0
  1135. /package/{esm2020 → esm2022}/rating/index.mjs +0 -0
  1136. /package/{esm2020 → esm2022}/rating/mintplayer-ng-bootstrap-rating.mjs +0 -0
  1137. /package/{esm2020 → esm2022}/rating/src/index.mjs +0 -0
  1138. /package/{esm2020 → esm2022}/resizable/index.mjs +0 -0
  1139. /package/{esm2020 → esm2022}/resizable/mintplayer-ng-bootstrap-resizable.mjs +0 -0
  1140. /package/{esm2020 → esm2022}/resizable/src/index.mjs +0 -0
  1141. /package/{esm2020 → esm2022}/resizable/src/interfaces/index.mjs +0 -0
  1142. /package/{esm2020 → esm2022}/resizable/src/interfaces/pointer-data.mjs +0 -0
  1143. /package/{esm2020 → esm2022}/resizable/src/interfaces/preset-position.mjs +0 -0
  1144. /package/{esm2020 → esm2022}/resizable/src/interfaces/resize-action.mjs +0 -0
  1145. /package/{esm2020 → esm2022}/resizable/src/providers/index.mjs +0 -0
  1146. /package/{esm2020 → esm2022}/resizable/src/providers/resizable.provider.mjs +0 -0
  1147. /package/{esm2020 → esm2022}/resizable/src/types/index.mjs +0 -0
  1148. /package/{esm2020 → esm2022}/resizable/src/types/positioning.mjs +0 -0
  1149. /package/{esm2020 → esm2022}/scheduler/index.mjs +0 -0
  1150. /package/{esm2020 → esm2022}/scheduler/mintplayer-ng-bootstrap-scheduler.mjs +0 -0
  1151. /package/{esm2020 → esm2022}/scheduler/src/components/index.mjs +0 -0
  1152. /package/{esm2020 → esm2022}/scheduler/src/constants/available-scales.mjs +0 -0
  1153. /package/{esm2020 → esm2022}/scheduler/src/constants/index.mjs +0 -0
  1154. /package/{esm2020 → esm2022}/scheduler/src/enums/drag-operation.mjs +0 -0
  1155. /package/{esm2020 → esm2022}/scheduler/src/enums/index.mjs +0 -0
  1156. /package/{esm2020 → esm2022}/scheduler/src/enums/scheduler-mode.mjs +0 -0
  1157. /package/{esm2020 → esm2022}/scheduler/src/index.mjs +0 -0
  1158. /package/{esm2020 → esm2022}/scheduler/src/interfaces/drag-operation.mjs +0 -0
  1159. /package/{esm2020 → esm2022}/scheduler/src/interfaces/index.mjs +0 -0
  1160. /package/{esm2020 → esm2022}/scheduler/src/interfaces/preview-event.mjs +0 -0
  1161. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-group.mjs +0 -0
  1162. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-or-group.mjs +0 -0
  1163. /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource.mjs +0 -0
  1164. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-part.mjs +0 -0
  1165. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-with-parts.mjs +0 -0
  1166. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event.mjs +0 -0
  1167. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-schale.mjs +0 -0
  1168. /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-stamp-with-slots.mjs +0 -0
  1169. /package/{esm2020 → esm2022}/scheduler/src/interfaces/time-slot.mjs +0 -0
  1170. /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-options.mjs +0 -0
  1171. /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-track.mjs +0 -0
  1172. /package/{esm2020 → esm2022}/scheduler/src/interfaces/week-options.mjs +0 -0
  1173. /package/{esm2020 → esm2022}/scrollspy/index.mjs +0 -0
  1174. /package/{esm2020 → esm2022}/scrollspy/mintplayer-ng-bootstrap-scrollspy.mjs +0 -0
  1175. /package/{esm2020 → esm2022}/scrollspy/src/index.mjs +0 -0
  1176. /package/{esm2020 → esm2022}/scrollspy/src/services/index.mjs +0 -0
  1177. /package/{esm2020 → esm2022}/select/index.mjs +0 -0
  1178. /package/{esm2020 → esm2022}/select/mintplayer-ng-bootstrap-select.mjs +0 -0
  1179. /package/{esm2020 → esm2022}/select/src/index.mjs +0 -0
  1180. /package/{esm2020 → esm2022}/select/src/types/index.mjs +0 -0
  1181. /package/{esm2020 → esm2022}/select/src/types/select-size.mjs +0 -0
  1182. /package/{esm2020 → esm2022}/select/src/value-accessors/index.mjs +0 -0
  1183. /package/{esm2020 → esm2022}/select2/index.mjs +0 -0
  1184. /package/{esm2020 → esm2022}/select2/mintplayer-ng-bootstrap-select2.mjs +0 -0
  1185. /package/{esm2020 → esm2022}/select2/src/index.mjs +0 -0
  1186. /package/{esm2020 → esm2022}/snackbar/index.mjs +0 -0
  1187. /package/{esm2020 → esm2022}/snackbar/mintplayer-ng-bootstrap-snackbar.mjs +0 -0
  1188. /package/{esm2020 → esm2022}/snackbar/src/directives/index.mjs +0 -0
  1189. /package/{esm2020 → esm2022}/snackbar/src/index.mjs +0 -0
  1190. /package/{esm2020 → esm2022}/snackbar/src/interfaces/index.mjs +0 -0
  1191. /package/{esm2020 → esm2022}/snackbar/src/interfaces/snackbar-animation-meta.mjs +0 -0
  1192. /package/{esm2020 → esm2022}/snackbar/src/providers/snackbar-content.provider.mjs +0 -0
  1193. /package/{esm2020 → esm2022}/spinner/index.mjs +0 -0
  1194. /package/{esm2020 → esm2022}/spinner/mintplayer-ng-bootstrap-spinner.mjs +0 -0
  1195. /package/{esm2020 → esm2022}/spinner/src/index.mjs +0 -0
  1196. /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
  1197. /package/{esm2020 → esm2022}/splitter/mintplayer-ng-bootstrap-splitter.mjs +0 -0
  1198. /package/{esm2020 → esm2022}/splitter/src/index.mjs +0 -0
  1199. /package/{esm2020 → esm2022}/splitter/src/interfaces/drag-operation.mjs +0 -0
  1200. /package/{esm2020 → esm2022}/splitter/src/interfaces/point.mjs +0 -0
  1201. /package/{esm2020 → esm2022}/splitter/src/types/direction.type.mjs +0 -0
  1202. /package/{esm2020 → esm2022}/splitter/src/types/index.mjs +0 -0
  1203. /package/{esm2020 → esm2022}/tab-control/index.mjs +0 -0
  1204. /package/{esm2020 → esm2022}/tab-control/mintplayer-ng-bootstrap-tab-control.mjs +0 -0
  1205. /package/{esm2020 → esm2022}/tab-control/src/index.mjs +0 -0
  1206. /package/{esm2020 → esm2022}/tab-control/src/tabs-position.mjs +0 -0
  1207. /package/{esm2020 → esm2022}/table/index.mjs +0 -0
  1208. /package/{esm2020 → esm2022}/table/mintplayer-ng-bootstrap-table.mjs +0 -0
  1209. /package/{esm2020 → esm2022}/table/src/index.mjs +0 -0
  1210. /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
  1211. /package/{esm2020 → esm2022}/timepicker/mintplayer-ng-bootstrap-timepicker.mjs +0 -0
  1212. /package/{esm2020 → esm2022}/timepicker/src/index.mjs +0 -0
  1213. /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
  1214. /package/{esm2020 → esm2022}/toast/mintplayer-ng-bootstrap-toast.mjs +0 -0
  1215. /package/{esm2020 → esm2022}/toast/src/components/index.mjs +0 -0
  1216. /package/{esm2020 → esm2022}/toast/src/directives/index.mjs +0 -0
  1217. /package/{esm2020 → esm2022}/toast/src/index.mjs +0 -0
  1218. /package/{esm2020 → esm2022}/toast/src/providers/portal-factory.provider.mjs +0 -0
  1219. /package/{esm2020 → esm2022}/toast/src/services/index.mjs +0 -0
  1220. /package/{esm2020 → esm2022}/toggle-button/index.mjs +0 -0
  1221. /package/{esm2020 → esm2022}/toggle-button/mintplayer-ng-bootstrap-toggle-button.mjs +0 -0
  1222. /package/{esm2020 → esm2022}/toggle-button/src/directives/index.mjs +0 -0
  1223. /package/{esm2020 → esm2022}/toggle-button/src/index.mjs +0 -0
  1224. /package/{esm2020 → esm2022}/toggle-button/src/types/check-style.mjs +0 -0
  1225. /package/{esm2020 → esm2022}/toggle-button/src/types/index.mjs +0 -0
  1226. /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
  1227. /package/{esm2020 → esm2022}/tooltip/mintplayer-ng-bootstrap-tooltip.mjs +0 -0
  1228. /package/{esm2020 → esm2022}/tooltip/src/index.mjs +0 -0
  1229. /package/{esm2020 → esm2022}/tooltip/src/providers/tooltip-content.provider.mjs +0 -0
  1230. /package/{esm2020 → esm2022}/treeview/index.mjs +0 -0
  1231. /package/{esm2020 → esm2022}/treeview/mintplayer-ng-bootstrap-treeview.mjs +0 -0
  1232. /package/{esm2020 → esm2022}/treeview/src/index.mjs +0 -0
  1233. /package/{esm2020 → esm2022}/typeahead/index.mjs +0 -0
  1234. /package/{esm2020 → esm2022}/typeahead/mintplayer-ng-bootstrap-typeahead.mjs +0 -0
  1235. /package/{esm2020 → esm2022}/typeahead/src/index.mjs +0 -0
  1236. /package/{esm2020 → esm2022}/user-agent/index.mjs +0 -0
  1237. /package/{esm2020 → esm2022}/user-agent/mintplayer-ng-bootstrap-user-agent.mjs +0 -0
  1238. /package/{esm2020 → esm2022}/user-agent/src/directive/index.mjs +0 -0
  1239. /package/{esm2020 → esm2022}/user-agent/src/index.mjs +0 -0
  1240. /package/{esm2020 → esm2022}/user-agent/src/interfaces/index.mjs +0 -0
  1241. /package/{esm2020 → esm2022}/user-agent/src/interfaces/user-agent.mjs +0 -0
  1242. /package/{esm2020 → esm2022}/user-agent/src/types/index.mjs +0 -0
  1243. /package/{esm2020 → esm2022}/user-agent/src/types/operating-system.type.mjs +0 -0
  1244. /package/{esm2020 → esm2022}/user-agent/src/types/webbrowser.type.mjs +0 -0
@@ -1,85 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { EventEmitter, Directive, Output, HostListener, NgModule } from '@angular/core';
3
- import * as i1 from '@angular/forms';
4
- import { CommonModule } from '@angular/common';
5
-
6
- class EnhancedPasteDirective {
7
- constructor(element, model) {
8
- this.element = element;
9
- this.model = model;
10
- this.numberOverflow = new EventEmitter();
11
- }
12
- onPaste(event) {
13
- // Prevent the default paste event
14
- event.preventDefault();
15
- // Get data from clipboard
16
- const data = event.clipboardData || window.clipboardData;
17
- const contents = data.getData('text');
18
- // Get min and max from input
19
- const min = parseFloat(this.element.nativeElement.min);
20
- const max = parseFloat(this.element.nativeElement.max);
21
- const filtered = this.filterInput(contents, min, max);
22
- if (filtered) {
23
- this.numberOverflow.emit(filtered);
24
- if (filtered.boundaryValue) {
25
- // Update NgModel
26
- this.model.control.setValue(filtered?.boundaryValue, { emitEvent: false, onlySelf: true });
27
- }
28
- }
29
- }
30
- filterInput(value, min, max) {
31
- const val = parseInt(value);
32
- if (isNaN(val)) {
33
- return { boundary: 'invalid' };
34
- }
35
- else if (val > max) {
36
- return { boundary: 'max', inputValue: val, boundaryValue: max };
37
- }
38
- else if (val < min) {
39
- return { boundary: 'min', inputValue: val, boundaryValue: min };
40
- }
41
- else {
42
- return null;
43
- }
44
- }
45
- }
46
- EnhancedPasteDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteDirective, deps: [{ token: i0.ElementRef }, { token: i1.NgModel }], target: i0.ɵɵFactoryTarget.Directive });
47
- EnhancedPasteDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: EnhancedPasteDirective, selector: "input[type=\"number\"][bsEnhancedPaste]", outputs: { numberOverflow: "numberOverflow" }, host: { listeners: { "paste": "onPaste($event)" } }, ngImport: i0 });
48
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteDirective, decorators: [{
49
- type: Directive,
50
- args: [{
51
- selector: 'input[type="number"][bsEnhancedPaste]'
52
- }]
53
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.NgModel }]; }, propDecorators: { numberOverflow: [{
54
- type: Output
55
- }], onPaste: [{
56
- type: HostListener,
57
- args: ['paste', ['$event']]
58
- }] } });
59
-
60
- class EnhancedPasteModule {
61
- }
62
- EnhancedPasteModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
63
- EnhancedPasteModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteModule, declarations: [EnhancedPasteDirective], imports: [CommonModule], exports: [EnhancedPasteDirective] });
64
- EnhancedPasteModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteModule, imports: [CommonModule] });
65
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnhancedPasteModule, decorators: [{
66
- type: NgModule,
67
- args: [{
68
- declarations: [
69
- EnhancedPasteDirective
70
- ],
71
- imports: [
72
- CommonModule
73
- ],
74
- exports: [
75
- EnhancedPasteDirective
76
- ]
77
- }]
78
- }] });
79
-
80
- /**
81
- * Generated bundle index. Do not edit.
82
- */
83
-
84
- export { EnhancedPasteDirective, EnhancedPasteModule };
85
- //# sourceMappingURL=mintplayer-ng-bootstrap-enhanced-paste.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-enhanced-paste.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/enhanced-paste/src/directive/enhanced-paste.directive.ts","../../../../libs/mintplayer-ng-bootstrap/enhanced-paste/src/enhanced-paste.module.ts","../../../../libs/mintplayer-ng-bootstrap/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.ts"],"sourcesContent":["import { Directive, ElementRef, EventEmitter, HostListener, Output } from '@angular/core';\nimport { NgModel } from '@angular/forms';\nimport { NumberOverflow } from '../interfaces/number-overflow';\n\n@Directive({\n selector: 'input[type=\"number\"][bsEnhancedPaste]'\n})\nexport class EnhancedPasteDirective {\n\n constructor(private element: ElementRef<HTMLInputElement>, private model: NgModel) {\n }\n\n @Output() public numberOverflow = new EventEmitter<NumberOverflow>();\n\n @HostListener('paste', ['$event'])\n onPaste(event: ClipboardEvent) {\n // Prevent the default paste event\n event.preventDefault();\n \n // Get data from clipboard\n const data = event.clipboardData || (<any>window).clipboardData;\n const contents = data.getData('text');\n\n // Get min and max from input\n const min = parseFloat(this.element.nativeElement.min);\n const max = parseFloat(this.element.nativeElement.max);\n\n const filtered = this.filterInput(contents, min, max);\n if (filtered) {\n this.numberOverflow.emit(filtered);\n if (filtered.boundaryValue) {\n // Update NgModel\n this.model.control.setValue(filtered?.boundaryValue, { emitEvent: false, onlySelf: true });\n }\n }\n\n }\n\n filterInput(value: any, min: number, max: number): NumberOverflow | null {\n const val = parseInt(value);\n if (isNaN(val)) {\n return { boundary: 'invalid' };\n } else if (val > max) {\n return { boundary: 'max', inputValue: val, boundaryValue: max };\n } else if (val < min) {\n return { boundary: 'min', inputValue: val, boundaryValue: min };\n } else {\n return null;\n }\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { EnhancedPasteDirective } from './directive/enhanced-paste.directive';\n\n@NgModule({\n declarations: [\n EnhancedPasteDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n EnhancedPasteDirective\n ]\n})\nexport class EnhancedPasteModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -1,38 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Injectable } from '@angular/core';
3
-
4
- class EnumService {
5
- getKeys(en) {
6
- const items = Object.keys(en);
7
- const halfLength = items.length / 2;
8
- return items.slice(halfLength);
9
- }
10
- getValues(en) {
11
- const items = Object.keys(en);
12
- const halfLength = items.length / 2;
13
- return items.slice(0, halfLength);
14
- }
15
- getItems(en) {
16
- return this.getKeys(en).map((key) => {
17
- return {
18
- key,
19
- value: en[key],
20
- };
21
- });
22
- }
23
- }
24
- EnumService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnumService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
25
- EnumService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnumService, providedIn: 'root' });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: EnumService, decorators: [{
27
- type: Injectable,
28
- args: [{
29
- providedIn: 'root'
30
- }]
31
- }] });
32
-
33
- /**
34
- * Generated bundle index. Do not edit.
35
- */
36
-
37
- export { EnumService };
38
- //# sourceMappingURL=mintplayer-ng-bootstrap-enum.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-enum.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/enum/src/service/enum.service.ts","../../../../libs/mintplayer-ng-bootstrap/enum/mintplayer-ng-bootstrap-enum.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { EnumItem } from '../interfaces/enum-item';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class EnumService {\n\n public getKeys(en: Record<string, unknown>) {\n const items = Object.keys(en);\n const halfLength = items.length / 2;\n return items.slice(halfLength);\n }\n \n public getValues(en: Record<string, unknown>) {\n const items = Object.keys(en);\n const halfLength = items.length / 2;\n return items.slice(0, halfLength);\n }\n\n public getItems(en: Record<string, unknown>) {\n return this.getKeys(en).map((key) => {\n return <EnumItem>{\n key,\n value: en[key],\n }\n });\n }\n\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;MAMa,WAAW,CAAA;AAEf,IAAA,OAAO,CAAC,EAA2B,EAAA;QACxC,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC9B,QAAA,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;AACpC,QAAA,OAAO,KAAK,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;KAChC;AAEM,IAAA,SAAS,CAAC,EAA2B,EAAA;QAC1C,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AAC9B,QAAA,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC;QACpC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC;KACnC;AAEM,IAAA,QAAQ,CAAC,EAA2B,EAAA;AACzC,QAAA,OAAO,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,KAAI;YAClC,OAAiB;gBACf,GAAG;AACH,gBAAA,KAAK,EAAE,EAAE,CAAC,GAAG,CAAC;aACf,CAAA;AACH,SAAC,CAAC,CAAC;KACJ;;wGArBU,WAAW,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAX,WAAA,CAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAW,cAFV,MAAM,EAAA,CAAA,CAAA;2FAEP,WAAW,EAAA,UAAA,EAAA,CAAA;kBAHvB,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;ACLD;;AAEG;;;;"}
@@ -1,175 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Pipe, EventEmitter, Component, Input, Output, HostListener, Directive, NgModule } from '@angular/core';
3
- import { Color } from '@mintplayer/ng-bootstrap';
4
- import * as i1 from '@angular/common';
5
- import { CommonModule } from '@angular/common';
6
- import * as i2 from '@mintplayer/ng-bootstrap/for';
7
- import { BsForModule } from '@mintplayer/ng-bootstrap/for';
8
- import * as i3 from '@mintplayer/ng-bootstrap/progress-bar';
9
- import { BsProgressBarModule } from '@mintplayer/ng-bootstrap/progress-bar';
10
- import * as i4 from '@mintplayer/ng-bootstrap/list-group';
11
- import { BsListGroupModule } from '@mintplayer/ng-bootstrap/list-group';
12
- import { BsButtonTypeModule } from '@mintplayer/ng-bootstrap/button-type';
13
-
14
- class BsFormatBytesPipe {
15
- transform(value, decimals = 2) {
16
- if (value === 0) {
17
- return "0 Bytes";
18
- }
19
- const k = 1024;
20
- const dm = decimals <= 0 ? 0 : decimals;
21
- const sizes = ["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
22
- const i = Math.floor(Math.log(value) / Math.log(k));
23
- return parseFloat((value / Math.pow(k, i)).toFixed(dm)) + " " + sizes[i];
24
- }
25
- }
26
- BsFormatBytesPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormatBytesPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
27
- BsFormatBytesPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsFormatBytesPipe, name: "bsFormatBytes" });
28
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormatBytesPipe, decorators: [{
29
- type: Pipe,
30
- args: [{
31
- name: 'bsFormatBytes'
32
- }]
33
- }] });
34
-
35
- class BsFileUploadComponent {
36
- constructor() {
37
- this.dropFilesCaption = 'Drop your files here';
38
- this.browseFilesCaption = 'Browse for files';
39
- this.placeholder = 'Drop files to upload';
40
- this.colors = Color;
41
- this.isDraggingFile = false;
42
- this.files = [];
43
- this.filesDropped = new EventEmitter();
44
- }
45
- onChange(event) {
46
- if (!event.target)
47
- return;
48
- if (!('files' in event.target))
49
- return;
50
- if (!event.target['files'])
51
- return;
52
- const files = event.target.files;
53
- if (!files)
54
- return;
55
- this.processDroppedFiles(files);
56
- }
57
- onDragOver(event) {
58
- event.preventDefault();
59
- event.stopPropagation();
60
- if (event.dataTransfer) {
61
- this.isDraggingFile = true;
62
- event.dataTransfer.effectAllowed = "copy";
63
- }
64
- }
65
- onDragLeave(event) {
66
- event.preventDefault();
67
- event.stopPropagation();
68
- this.isDraggingFile = false;
69
- }
70
- onDrop(event) {
71
- event.preventDefault();
72
- event.stopPropagation();
73
- this.isDraggingFile = false;
74
- if (event.dataTransfer && event.dataTransfer.files) {
75
- this.processDroppedFiles(event.dataTransfer.files);
76
- }
77
- }
78
- processDroppedFiles(fileList) {
79
- const newFiles = [...Array(fileList.length).keys()]
80
- .map(i => fileList.item(i))
81
- .filter(f => !!f)
82
- .map((file, index) => ({ file, progress: 0, index: this.files.length + index }));
83
- this.files.push(...newFiles);
84
- this.filesDropped.emit(newFiles);
85
- }
86
- trackByFile(index, file) {
87
- return file.index;
88
- }
89
- }
90
- BsFileUploadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
91
- BsFileUploadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsFileUploadComponent, selector: "bs-file-upload", inputs: { dropFilesCaption: "dropFilesCaption", browseFilesCaption: "browseFilesCaption", placeholder: "placeholder", files: "files" }, outputs: { filesDropped: "filesDropped" }, host: { listeners: { "dragover": "onDragOver($event)", "dragleave": "onDragLeave($event)", "drop": "onDrop($event)" } }, ngImport: i0, template: "<div class=\"dropzone border position-relative p-5\" [class.dragging]=\"isDraggingFile\">\n <input type=\"file\" multiple #fileUpload (change)=\"onChange($event)\" [title]=\"placeholder\" [placeholder]=\"placeholder\" class=\"position-absolute w-100 h-100\">\n <!-- <img src=\"/assets/ic-file-upload.svg\" [alt]=\"placeholder\"> -->\n <span class=\"h3 d-block\">{{ dropFilesCaption }}</span>\n <label class=\"btn btn-primary position-relative\" [bsFor]=\"fileUpload\">{{ browseFilesCaption }}</label>\n</div>\n<bs-list-group class=\"files-list\">\n <bs-list-group-item *ngFor=\"let upload of files; trackBy: trackByFile\">\n <ng-container *ngTemplateOutlet=\"fileTemplate ?? defaultFileTemplate; context: { $implicit: upload }\"></ng-container>\n </bs-list-group-item>\n</bs-list-group>\n\n<ng-template #defaultFileTemplate let-upload>\n <div class=\"d-flex flex-row mx-auto\">\n <div class=\"file-img\"></div>\n <div class=\"flex-grow-1 text-start px-2\">\n <span class=\"d-block text-truncate text-secondary\">{{ upload.file.name }}</span>\n <span class=\"d-block text-grey mb-0\">{{ upload.file.size | bsFormatBytes }}</span>\n <bs-progress [height]=\"4\">\n <bs-progress-bar [minimum]=\"0\" [maximum]=\"upload.file.size\" [value]=\"upload.progress\"></bs-progress-bar>\n </bs-progress>\n </div>\n </div>\n</ng-template>", styles: [".dropzone{z-index:1}.dropzone.dragging{border:4px solid #CB1535!important;background:#DC88A8;margin:-3px -3px -4px}.dropzone input{opacity:0;z-index:2;top:0;left:0}.dropzone .btn{z-index:5}.files-list{margin-top:-1px}.files-list .d-flex{max-width:400px}.text-grey{color:#999}.list-group span{margin:-5px auto}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.BsForDirective, selector: "[bsFor]", inputs: ["bsFor"] }, { kind: "component", type: i3.BsProgressBarComponent, selector: "bs-progress-bar", inputs: ["minimum", "maximum", "value", "color", "striped", "animated"] }, { kind: "component", type: i3.BsProgressComponent, selector: "bs-progress", inputs: ["height", "isIndeterminate"] }, { kind: "component", type: i4.BsListGroupComponent, selector: "bs-list-group" }, { kind: "component", type: i4.BsListGroupItemComponent, selector: "bs-list-group-item" }, { kind: "pipe", type: BsFormatBytesPipe, name: "bsFormatBytes" }] });
92
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadComponent, decorators: [{
93
- type: Component,
94
- args: [{ selector: 'bs-file-upload', template: "<div class=\"dropzone border position-relative p-5\" [class.dragging]=\"isDraggingFile\">\n <input type=\"file\" multiple #fileUpload (change)=\"onChange($event)\" [title]=\"placeholder\" [placeholder]=\"placeholder\" class=\"position-absolute w-100 h-100\">\n <!-- <img src=\"/assets/ic-file-upload.svg\" [alt]=\"placeholder\"> -->\n <span class=\"h3 d-block\">{{ dropFilesCaption }}</span>\n <label class=\"btn btn-primary position-relative\" [bsFor]=\"fileUpload\">{{ browseFilesCaption }}</label>\n</div>\n<bs-list-group class=\"files-list\">\n <bs-list-group-item *ngFor=\"let upload of files; trackBy: trackByFile\">\n <ng-container *ngTemplateOutlet=\"fileTemplate ?? defaultFileTemplate; context: { $implicit: upload }\"></ng-container>\n </bs-list-group-item>\n</bs-list-group>\n\n<ng-template #defaultFileTemplate let-upload>\n <div class=\"d-flex flex-row mx-auto\">\n <div class=\"file-img\"></div>\n <div class=\"flex-grow-1 text-start px-2\">\n <span class=\"d-block text-truncate text-secondary\">{{ upload.file.name }}</span>\n <span class=\"d-block text-grey mb-0\">{{ upload.file.size | bsFormatBytes }}</span>\n <bs-progress [height]=\"4\">\n <bs-progress-bar [minimum]=\"0\" [maximum]=\"upload.file.size\" [value]=\"upload.progress\"></bs-progress-bar>\n </bs-progress>\n </div>\n </div>\n</ng-template>", styles: [".dropzone{z-index:1}.dropzone.dragging{border:4px solid #CB1535!important;background:#DC88A8;margin:-3px -3px -4px}.dropzone input{opacity:0;z-index:2;top:0;left:0}.dropzone .btn{z-index:5}.files-list{margin-top:-1px}.files-list .d-flex{max-width:400px}.text-grey{color:#999}.list-group span{margin:-5px auto}\n"] }]
95
- }], propDecorators: { dropFilesCaption: [{
96
- type: Input
97
- }], browseFilesCaption: [{
98
- type: Input
99
- }], placeholder: [{
100
- type: Input
101
- }], files: [{
102
- type: Input
103
- }], filesDropped: [{
104
- type: Output
105
- }], onDragOver: [{
106
- type: HostListener,
107
- args: ['dragover', ['$event']]
108
- }], onDragLeave: [{
109
- type: HostListener,
110
- args: ['dragleave', ['$event']]
111
- }], onDrop: [{
112
- type: HostListener,
113
- args: ['drop', ['$event']]
114
- }] } });
115
-
116
- class BsFileUploadTemplateDirective {
117
- constructor(fileUploadComponent, templateRef) {
118
- fileUploadComponent.fileTemplate = templateRef;
119
- }
120
- }
121
- BsFileUploadTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadTemplateDirective, deps: [{ token: BsFileUploadComponent }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
122
- BsFileUploadTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsFileUploadTemplateDirective, selector: "[bsFileUploadTemplate]", ngImport: i0 });
123
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadTemplateDirective, decorators: [{
124
- type: Directive,
125
- args: [{
126
- selector: '[bsFileUploadTemplate]'
127
- }]
128
- }], ctorParameters: function () { return [{ type: BsFileUploadComponent }, { type: i0.TemplateRef }]; } });
129
-
130
- class BsFileUploadModule {
131
- }
132
- BsFileUploadModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
133
- BsFileUploadModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadModule, declarations: [BsFileUploadComponent,
134
- BsFileUploadTemplateDirective,
135
- BsFormatBytesPipe], imports: [CommonModule,
136
- BsForModule,
137
- BsProgressBarModule,
138
- BsListGroupModule,
139
- BsButtonTypeModule], exports: [BsFileUploadComponent,
140
- BsFileUploadTemplateDirective,
141
- BsFormatBytesPipe] });
142
- BsFileUploadModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadModule, imports: [CommonModule,
143
- BsForModule,
144
- BsProgressBarModule,
145
- BsListGroupModule,
146
- BsButtonTypeModule] });
147
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFileUploadModule, decorators: [{
148
- type: NgModule,
149
- args: [{
150
- declarations: [
151
- BsFileUploadComponent,
152
- BsFileUploadTemplateDirective,
153
- BsFormatBytesPipe
154
- ],
155
- imports: [
156
- CommonModule,
157
- BsForModule,
158
- BsProgressBarModule,
159
- BsListGroupModule,
160
- BsButtonTypeModule,
161
- ],
162
- exports: [
163
- BsFileUploadComponent,
164
- BsFileUploadTemplateDirective,
165
- BsFormatBytesPipe
166
- ]
167
- }]
168
- }] });
169
-
170
- /**
171
- * Generated bundle index. Do not edit.
172
- */
173
-
174
- export { BsFileUploadComponent, BsFileUploadModule, BsFileUploadTemplateDirective, BsFormatBytesPipe };
175
- //# sourceMappingURL=mintplayer-ng-bootstrap-file-upload.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-file-upload.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/file-upload/src/pipes/format-bytes/format-bytes.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/file-upload/src/component/file-upload.component.ts","../../../../libs/mintplayer-ng-bootstrap/file-upload/src/component/file-upload.component.html","../../../../libs/mintplayer-ng-bootstrap/file-upload/src/directive/file-upload-template.directive.ts","../../../../libs/mintplayer-ng-bootstrap/file-upload/src/file-upload.module.ts","../../../../libs/mintplayer-ng-bootstrap/file-upload/mintplayer-ng-bootstrap-file-upload.ts"],"sourcesContent":["import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'bsFormatBytes'\n})\nexport class BsFormatBytesPipe implements PipeTransform {\n\n transform(value: number, decimals = 2) {\n if (value === 0) {\n return \"0 Bytes\";\n }\n\n const k = 1024;\n const dm = decimals <= 0 ? 0 : decimals;\n const sizes = [\"Bytes\", \"KB\", \"MB\", \"GB\", \"TB\", \"PB\", \"EB\", \"ZB\", \"YB\"];\n const i = Math.floor(Math.log(value) / Math.log(k));\n\n return parseFloat((value / Math.pow(k, i)).toFixed(dm)) + \" \" + sizes[i];\n }\n\n}\n","import { Component, EventEmitter, HostListener, Input, Output, TemplateRef } from '@angular/core';\nimport { Color } from '@mintplayer/ng-bootstrap';\nimport { FileUpload } from '../file-upload';\n\n@Component({\n selector: 'bs-file-upload',\n templateUrl: './file-upload.component.html',\n styleUrls: ['./file-upload.component.scss']\n})\nexport class BsFileUploadComponent {\n\n @Input() public dropFilesCaption = 'Drop your files here';\n @Input() public browseFilesCaption = 'Browse for files';\n @Input() public placeholder = 'Drop files to upload';\n\n colors = Color;\n isDraggingFile = false;\n fileTemplate?: TemplateRef<FileUpload>;\n @Input() public files: FileUpload[] = [];\n @Output() public filesDropped = new EventEmitter<FileUpload[]>();\n\n onChange(event: Event) {\n if (!event.target) return;\n if (!('files' in event.target)) return;\n if (!event.target['files']) return;\n\n const files = (<HTMLInputElement>event.target).files;\n if (!files) return;\n \n this.processDroppedFiles(files);\n }\n\n @HostListener('dragover', ['$event'])\n onDragOver(event: DragEvent) {\n event.preventDefault();\n event.stopPropagation();\n \n if (event.dataTransfer) {\n this.isDraggingFile = true;\n event.dataTransfer.effectAllowed = \"copy\";\n }\n }\n\n @HostListener('dragleave', ['$event'])\n onDragLeave(event: DragEvent) {\n event.preventDefault();\n event.stopPropagation();\n this.isDraggingFile = false;\n }\n\n @HostListener('drop', ['$event'])\n onDrop(event: DragEvent) {\n event.preventDefault();\n event.stopPropagation();\n this.isDraggingFile = false;\n if (event.dataTransfer && event.dataTransfer.files) {\n this.processDroppedFiles(event.dataTransfer.files);\n }\n }\n\n private processDroppedFiles(fileList: FileList) {\n const newFiles = [...Array(fileList.length).keys()]\n .map(i => fileList.item(i))\n .filter(f => !!f)\n .map((file, index) => <FileUpload>{ file, progress: 0, index: this.files.length + index });\n \n this.files.push(...newFiles);\n this.filesDropped.emit(newFiles);\n }\n\n trackByFile(index: number, file: FileUpload) {\n return file.index;\n }\n}\n","<div class=\"dropzone border position-relative p-5\" [class.dragging]=\"isDraggingFile\">\n <input type=\"file\" multiple #fileUpload (change)=\"onChange($event)\" [title]=\"placeholder\" [placeholder]=\"placeholder\" class=\"position-absolute w-100 h-100\">\n <!-- <img src=\"/assets/ic-file-upload.svg\" [alt]=\"placeholder\"> -->\n <span class=\"h3 d-block\">{{ dropFilesCaption }}</span>\n <label class=\"btn btn-primary position-relative\" [bsFor]=\"fileUpload\">{{ browseFilesCaption }}</label>\n</div>\n<bs-list-group class=\"files-list\">\n <bs-list-group-item *ngFor=\"let upload of files; trackBy: trackByFile\">\n <ng-container *ngTemplateOutlet=\"fileTemplate ?? defaultFileTemplate; context: { $implicit: upload }\"></ng-container>\n </bs-list-group-item>\n</bs-list-group>\n\n<ng-template #defaultFileTemplate let-upload>\n <div class=\"d-flex flex-row mx-auto\">\n <div class=\"file-img\"></div>\n <div class=\"flex-grow-1 text-start px-2\">\n <span class=\"d-block text-truncate text-secondary\">{{ upload.file.name }}</span>\n <span class=\"d-block text-grey mb-0\">{{ upload.file.size | bsFormatBytes }}</span>\n <bs-progress [height]=\"4\">\n <bs-progress-bar [minimum]=\"0\" [maximum]=\"upload.file.size\" [value]=\"upload.progress\"></bs-progress-bar>\n </bs-progress>\n </div>\n </div>\n</ng-template>","import { Directive, TemplateRef } from '@angular/core';\nimport { BsFileUploadComponent } from '../component/file-upload.component';\n\n@Directive({\n selector: '[bsFileUploadTemplate]'\n})\nexport class BsFileUploadTemplateDirective {\n\n constructor(fileUploadComponent: BsFileUploadComponent, templateRef: TemplateRef<any>) {\n fileUploadComponent.fileTemplate = templateRef;\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsForModule } from '@mintplayer/ng-bootstrap/for';\nimport { BsProgressBarModule } from '@mintplayer/ng-bootstrap/progress-bar';\nimport { BsListGroupModule } from '@mintplayer/ng-bootstrap/list-group';\nimport { BsButtonTypeModule } from '@mintplayer/ng-bootstrap/button-type';\nimport { BsFileUploadComponent } from './component/file-upload.component';\nimport { BsFileUploadTemplateDirective } from './directive/file-upload-template.directive';\nimport { BsFormatBytesPipe } from './pipes/format-bytes/format-bytes.pipe';\n\n@NgModule({\n declarations: [\n BsFileUploadComponent,\n BsFileUploadTemplateDirective,\n BsFormatBytesPipe\n ],\n imports: [\n CommonModule,\n BsForModule,\n BsProgressBarModule,\n BsListGroupModule,\n BsButtonTypeModule,\n ],\n exports: [\n BsFileUploadComponent,\n BsFileUploadTemplateDirective,\n BsFormatBytesPipe\n ]\n})\nexport class BsFileUploadModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i5.BsFormatBytesPipe","i1.BsFileUploadComponent"],"mappings":"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"}
@@ -1,41 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Component, Optional, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
- import * as i1 from '@mintplayer/ng-bootstrap/form';
5
-
6
- class BsFloatingLabelComponent {
7
- constructor(bsForm) {
8
- if (!bsForm) {
9
- throw '<bs-floating-label> must be inside a <bs-form>';
10
- }
11
- }
12
- }
13
- BsFloatingLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelComponent, deps: [{ token: i1.BsFormComponent, optional: true }], target: i0.ɵɵFactoryTarget.Component });
14
- BsFloatingLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsFloatingLabelComponent, selector: "bs-floating-label", ngImport: i0, template: "<div class=\"form-floating\">\n <ng-content select=\"input\"></ng-content>\n <ng-content select=\"label\"></ng-content>\n</div>", styles: [":host ::ng-deep .form-floating{position:relative}:host ::ng-deep .form-floating>.form-control,:host ::ng-deep .form-floating>.form-control-plaintext,:host ::ng-deep .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}:host ::ng-deep .form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){:host ::ng-deep .form-floating>label{transition:none}}:host ::ng-deep .form-floating>.form-control,:host ::ng-deep .form-floating>.form-control-plaintext{padding:1rem .75rem}:host ::ng-deep .form-floating>.form-control::placeholder,:host ::ng-deep .form-floating>.form-control-plaintext::placeholder{color:transparent}:host ::ng-deep .form-floating>.form-control:focus,:host ::ng-deep .form-floating>.form-control:not(:placeholder-shown),:host ::ng-deep .form-floating>.form-control-plaintext:focus,:host ::ng-deep .form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-control:-webkit-autofill,:host ::ng-deep .form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-control:focus~label,:host ::ng-deep .form-floating>.form-control:not(:placeholder-shown)~label,:host ::ng-deep .form-floating>.form-control-plaintext~label,:host ::ng-deep .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}:host ::ng-deep .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}:host ::ng-deep .form-floating>.form-control-plaintext~label{border-width:1px 0}\n"] });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelComponent, decorators: [{
16
- type: Component,
17
- args: [{ selector: 'bs-floating-label', template: "<div class=\"form-floating\">\n <ng-content select=\"input\"></ng-content>\n <ng-content select=\"label\"></ng-content>\n</div>", styles: [":host ::ng-deep .form-floating{position:relative}:host ::ng-deep .form-floating>.form-control,:host ::ng-deep .form-floating>.form-control-plaintext,:host ::ng-deep .form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}:host ::ng-deep .form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion: reduce){:host ::ng-deep .form-floating>label{transition:none}}:host ::ng-deep .form-floating>.form-control,:host ::ng-deep .form-floating>.form-control-plaintext{padding:1rem .75rem}:host ::ng-deep .form-floating>.form-control::placeholder,:host ::ng-deep .form-floating>.form-control-plaintext::placeholder{color:transparent}:host ::ng-deep .form-floating>.form-control:focus,:host ::ng-deep .form-floating>.form-control:not(:placeholder-shown),:host ::ng-deep .form-floating>.form-control-plaintext:focus,:host ::ng-deep .form-floating>.form-control-plaintext:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-control:-webkit-autofill,:host ::ng-deep .form-floating>.form-control-plaintext:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}:host ::ng-deep .form-floating>.form-control:focus~label,:host ::ng-deep .form-floating>.form-control:not(:placeholder-shown)~label,:host ::ng-deep .form-floating>.form-control-plaintext~label,:host ::ng-deep .form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}:host ::ng-deep .form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translate(.15rem)}:host ::ng-deep .form-floating>.form-control-plaintext~label{border-width:1px 0}\n"] }]
18
- }], ctorParameters: function () { return [{ type: i1.BsFormComponent, decorators: [{
19
- type: Optional
20
- }] }]; } });
21
-
22
- class BsFloatingLabelsModule {
23
- }
24
- BsFloatingLabelsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
25
- BsFloatingLabelsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelsModule, declarations: [BsFloatingLabelComponent], imports: [CommonModule], exports: [BsFloatingLabelComponent] });
26
- BsFloatingLabelsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelsModule, imports: [CommonModule] });
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFloatingLabelsModule, decorators: [{
28
- type: NgModule,
29
- args: [{
30
- declarations: [BsFloatingLabelComponent],
31
- imports: [CommonModule],
32
- exports: [BsFloatingLabelComponent],
33
- }]
34
- }] });
35
-
36
- /**
37
- * Generated bundle index. Do not edit.
38
- */
39
-
40
- export { BsFloatingLabelComponent, BsFloatingLabelsModule };
41
- //# sourceMappingURL=mintplayer-ng-bootstrap-floating-labels.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-floating-labels.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/floating-labels/src/floating-labels/floating-label/floating-label.component.ts","../../../../libs/mintplayer-ng-bootstrap/floating-labels/src/floating-labels/floating-label/floating-label.component.html","../../../../libs/mintplayer-ng-bootstrap/floating-labels/src/floating-labels/floating-labels.module.ts","../../../../libs/mintplayer-ng-bootstrap/floating-labels/mintplayer-ng-bootstrap-floating-labels.ts"],"sourcesContent":["import { Optional, Component, ContentChild, ElementRef } from '@angular/core';\nimport { BsFormComponent } from '@mintplayer/ng-bootstrap/form';\n\n@Component({\n selector: 'bs-floating-label',\n templateUrl: './floating-label.component.html',\n styleUrls: ['./floating-label.component.scss'],\n})\nexport class BsFloatingLabelComponent {\n constructor(@Optional() bsForm: BsFormComponent) {\n if (!bsForm) {\n throw '<bs-floating-label> must be inside a <bs-form>';\n }\n }\n\n // @ContentChild(BsFloatingFormControlDirective, { read: ElementRef }) input!: ElementRef<HTMLInputElement>;\n\n // ngAfterContentInit() {\n // this.input.nativeElement.classList.add('form-control');\n // }\n}\n","<div class=\"form-floating\">\n <ng-content select=\"input\"></ng-content>\n <ng-content select=\"label\"></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsFloatingLabelComponent } from './floating-label/floating-label.component';\n\n@NgModule({\n declarations: [BsFloatingLabelComponent],\n imports: [CommonModule],\n exports: [BsFloatingLabelComponent],\n})\nexport class BsFloatingLabelsModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;MAQa,wBAAwB,CAAA;AACnC,IAAA,WAAA,CAAwB,MAAuB,EAAA;QAC7C,IAAI,CAAC,MAAM,EAAE;AACX,YAAA,MAAM,gDAAgD,CAAC;AACxD,SAAA;KACF;;qHALU,wBAAwB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,eAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,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,yDCRrC,uIAGM,EAAA,MAAA,EAAA,CAAA,g+DAAA,CAAA,EAAA,CAAA,CAAA;2FDKO,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,SAAS;+BACE,mBAAmB,EAAA,QAAA,EAAA,uIAAA,EAAA,MAAA,EAAA,CAAA,g+DAAA,CAAA,EAAA,CAAA;;0BAKhB,QAAQ;;;MEAV,sBAAsB,CAAA;;mHAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAtB,sBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,EAJlB,YAAA,EAAA,CAAA,wBAAwB,CAC7B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,wBAAwB,CAAA,EAAA,CAAA,CAAA;AAEvB,sBAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,YAHvB,YAAY,CAAA,EAAA,CAAA,CAAA;2FAGX,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBALlC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,wBAAwB,CAAC;oBACxC,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,wBAAwB,CAAC;AACpC,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
@@ -1,66 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, HostBinding, Input, HostListener, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsForDirective {
6
- constructor() {
7
- this.defaultCursor = true;
8
- }
9
- onMouseClick() {
10
- if (!('tagName' in this.bsFor)) {
11
- this.bsFor.focus();
12
- }
13
- else if (this.bsFor.tagName.toLowerCase() !== 'input') {
14
- this.bsFor.focus();
15
- }
16
- else if (this.bsFor.type.toLowerCase() === 'file') {
17
- this.bsFor.click();
18
- }
19
- else {
20
- this.bsFor.focus();
21
- }
22
- }
23
- }
24
- BsForDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsForDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
25
- BsForDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsForDirective, selector: "[bsFor]", inputs: { bsFor: "bsFor" }, host: { listeners: { "click": "onMouseClick()" }, properties: { "class.cursor-default": "this.defaultCursor" } }, ngImport: i0 });
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsForDirective, decorators: [{
27
- type: Directive,
28
- args: [{
29
- selector: '[bsFor]'
30
- }]
31
- }], propDecorators: { defaultCursor: [{
32
- type: HostBinding,
33
- args: ['class.cursor-default']
34
- }], bsFor: [{
35
- type: Input
36
- }], onMouseClick: [{
37
- type: HostListener,
38
- args: ['click']
39
- }] } });
40
-
41
- class BsForModule {
42
- }
43
- BsForModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsForModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
44
- BsForModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsForModule, declarations: [BsForDirective], imports: [CommonModule], exports: [BsForDirective] });
45
- BsForModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsForModule, imports: [CommonModule] });
46
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsForModule, decorators: [{
47
- type: NgModule,
48
- args: [{
49
- declarations: [
50
- BsForDirective
51
- ],
52
- imports: [
53
- CommonModule
54
- ],
55
- exports: [
56
- BsForDirective
57
- ]
58
- }]
59
- }] });
60
-
61
- /**
62
- * Generated bundle index. Do not edit.
63
- */
64
-
65
- export { BsForDirective, BsForModule };
66
- //# sourceMappingURL=mintplayer-ng-bootstrap-for.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mintplayer-ng-bootstrap-for.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/for/src/for.directive.ts","../../../../libs/mintplayer-ng-bootstrap/for/src/for.module.ts","../../../../libs/mintplayer-ng-bootstrap/for/mintplayer-ng-bootstrap-for.ts"],"sourcesContent":["import { Directive, HostBinding, HostListener, Input } from '@angular/core';\n\n@Directive({\n selector: '[bsFor]'\n})\nexport class BsForDirective {\n\n @HostBinding('class.cursor-default') defaultCursor = true;\n\n @Input() bsFor: any;\n @HostListener('click') onMouseClick() {\n if (!('tagName' in this.bsFor)) {\n this.bsFor.focus();\n } else if (this.bsFor.tagName.toLowerCase() !== 'input') {\n this.bsFor.focus();\n } else if (this.bsFor.type.toLowerCase() === 'file') {\n this.bsFor.click();\n } else {\n this.bsFor.focus();\n }\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsForDirective } from './for.directive';\n\n@NgModule({\n declarations: [\n BsForDirective\n ],\n imports: [\n CommonModule\n ],\n exports: [\n BsForDirective\n ]\n})\nexport class BsForModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAKa,cAAc,CAAA;AAH3B,IAAA,WAAA,GAAA;QAKuC,IAAa,CAAA,aAAA,GAAG,IAAI,CAAC;AAe3D,KAAA;IAZwB,YAAY,GAAA;QACjC,IAAI,EAAE,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,EAAE;AAC9B,YAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;AACpB,SAAA;aAAM,IAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,EAAE,KAAK,OAAO,EAAE;AACvD,YAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;AACpB,SAAA;aAAM,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,MAAM,EAAE;AACnD,YAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;AACpB,SAAA;AAAM,aAAA;AACL,YAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;AACpB,SAAA;KACF;;2GAfU,cAAc,EAAA,IAAA,EAAA,EAAA,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,IAAA,EAAA,EAAA,SAAA,EAAA,EAAA,OAAA,EAAA,gBAAA,EAAA,EAAA,UAAA,EAAA,EAAA,sBAAA,EAAA,oBAAA,EAAA,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;8BAGsC,aAAa,EAAA,CAAA;sBAAjD,WAAW;uBAAC,sBAAsB,CAAA;gBAE1B,KAAK,EAAA,CAAA;sBAAb,KAAK;gBACiB,YAAY,EAAA,CAAA;sBAAlC,YAAY;uBAAC,OAAO,CAAA;;;MCKV,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,76 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { EventEmitter, Component, Output, Directive, HostBinding, NgModule } from '@angular/core';
3
- import { CommonModule } from '@angular/common';
4
-
5
- class BsFormComponent {
6
- constructor() {
7
- this.submitted = new EventEmitter();
8
- }
9
- onSubmit(ev) {
10
- this.submitted.emit(ev);
11
- return false;
12
- }
13
- }
14
- BsFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
- BsFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsFormComponent, selector: "bs-form", outputs: { submitted: "submitted" }, ngImport: i0, template: "<form (submit)=\"onSubmit($event)\">\n <ng-content></ng-content>\n</form>", styles: ["::ng-deep .form-label{margin-bottom:.5rem}::ng-deep .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}::ng-deep .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}::ng-deep .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}::ng-deep .form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}::ng-deep .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){::ng-deep .form-control{transition:none}}::ng-deep .form-control[type=file]{overflow:hidden}::ng-deep .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}::ng-deep .form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}::ng-deep .form-control::-webkit-date-and-time-value{height:1.5em}::ng-deep .form-control::placeholder{color:#6c757d;opacity:1}::ng-deep .form-control:disabled{background-color:#e9ecef;opacity:1}::ng-deep .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){::ng-deep .form-control::file-selector-button{transition:none}}::ng-deep .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}::ng-deep .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}::ng-deep .form-control-plaintext:focus{outline:0}::ng-deep .form-control-plaintext.form-control-sm,::ng-deep .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}::ng-deep .form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}::ng-deep .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}::ng-deep .form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}::ng-deep .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}::ng-deep textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}::ng-deep textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}::ng-deep textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}::ng-deep .form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}::ng-deep .form-control-color:not(:disabled):not([readonly]){cursor:pointer}::ng-deep .form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}::ng-deep .form-control-color::-webkit-color-swatch{border-radius:.375rem}::ng-deep .form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}::ng-deep .form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}::ng-deep .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}::ng-deep .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated ::ng-deep:valid~.valid-feedback,.was-validated ::ng-deep:valid~.valid-tooltip,::ng-deep .is-valid~.valid-feedback,::ng-deep .is-valid~.valid-tooltip{display:block}.was-validated ::ng-deep .form-control:valid,::ng-deep .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-control:valid:focus,::ng-deep .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep textarea.form-control:valid,::ng-deep textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated ::ng-deep .form-select:valid,::ng-deep .form-select.is-valid{border-color:#198754}.was-validated ::ng-deep .form-select:valid:not([multiple]):not([size]),.was-validated ::ng-deep .form-select:valid:not([multiple])[size=\"1\"],::ng-deep .form-select.is-valid:not([multiple]):not([size]),::ng-deep .form-select.is-valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-select:valid:focus,::ng-deep .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep .form-control-color:valid,::ng-deep .form-control-color.is-valid{width:calc(3.75rem + 1.5em)}.was-validated ::ng-deep .form-check-input:valid,::ng-deep .form-check-input.is-valid{border-color:#198754}.was-validated ::ng-deep .form-check-input:valid:checked,::ng-deep .form-check-input.is-valid:checked{background-color:#198754}.was-validated ::ng-deep .form-check-input:valid:focus,::ng-deep .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep .form-check-input:valid~.form-check-label,::ng-deep .form-check-input.is-valid~.form-check-label{color:#198754}::ng-deep .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated ::ng-deep .input-group>.form-control:not(:focus):valid,::ng-deep .input-group>.form-control:not(:focus).is-valid,.was-validated ::ng-deep .input-group>.form-select:not(:focus):valid,::ng-deep .input-group>.form-select:not(:focus).is-valid,.was-validated ::ng-deep .input-group>.form-floating:not(:focus-within):valid,::ng-deep .input-group>.form-floating:not(:focus-within).is-valid{z-index:3}::ng-deep .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}::ng-deep .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated ::ng-deep:invalid~.invalid-feedback,.was-validated ::ng-deep:invalid~.invalid-tooltip,::ng-deep .is-invalid~.invalid-feedback,::ng-deep .is-invalid~.invalid-tooltip{display:block}.was-validated ::ng-deep .form-control:invalid,::ng-deep .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-control:invalid:focus,::ng-deep .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep textarea.form-control:invalid,::ng-deep textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated ::ng-deep .form-select:invalid,::ng-deep .form-select.is-invalid{border-color:#dc3545}.was-validated ::ng-deep .form-select:invalid:not([multiple]):not([size]),.was-validated ::ng-deep .form-select:invalid:not([multiple])[size=\"1\"],::ng-deep .form-select.is-invalid:not([multiple]):not([size]),::ng-deep .form-select.is-invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-select:invalid:focus,::ng-deep .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep .form-control-color:invalid,::ng-deep .form-control-color.is-invalid{width:calc(3.75rem + 1.5em)}.was-validated ::ng-deep .form-check-input:invalid,::ng-deep .form-check-input.is-invalid{border-color:#dc3545}.was-validated ::ng-deep .form-check-input:invalid:checked,::ng-deep .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated ::ng-deep .form-check-input:invalid:focus,::ng-deep .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep .form-check-input:invalid~.form-check-label,::ng-deep .form-check-input.is-invalid~.form-check-label{color:#dc3545}::ng-deep .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated ::ng-deep .input-group>.form-control:not(:focus):invalid,::ng-deep .input-group>.form-control:not(:focus).is-invalid,.was-validated ::ng-deep .input-group>.form-select:not(:focus):invalid,::ng-deep .input-group>.form-select:not(:focus).is-invalid,.was-validated ::ng-deep .input-group>.form-floating:not(:focus-within):invalid,::ng-deep .input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}\n"] });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormComponent, decorators: [{
17
- type: Component,
18
- args: [{ selector: 'bs-form', template: "<form (submit)=\"onSubmit($event)\">\n <ng-content></ng-content>\n</form>", styles: ["::ng-deep .form-label{margin-bottom:.5rem}::ng-deep .col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}::ng-deep .col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}::ng-deep .col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}::ng-deep .form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}::ng-deep .form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;appearance:none;border-radius:.375rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){::ng-deep .form-control{transition:none}}::ng-deep .form-control[type=file]{overflow:hidden}::ng-deep .form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}::ng-deep .form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem #0d6efd40}::ng-deep .form-control::-webkit-date-and-time-value{height:1.5em}::ng-deep .form-control::placeholder{color:#6c757d;opacity:1}::ng-deep .form-control:disabled{background-color:#e9ecef;opacity:1}::ng-deep .form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion: reduce){::ng-deep .form-control::file-selector-button{transition:none}}::ng-deep .form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}::ng-deep .form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}::ng-deep .form-control-plaintext:focus{outline:0}::ng-deep .form-control-plaintext.form-control-sm,::ng-deep .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}::ng-deep .form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}::ng-deep .form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}::ng-deep .form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}::ng-deep .form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}::ng-deep textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}::ng-deep textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}::ng-deep textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}::ng-deep .form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}::ng-deep .form-control-color:not(:disabled):not([readonly]){cursor:pointer}::ng-deep .form-control-color::-moz-color-swatch{border:0!important;border-radius:.375rem}::ng-deep .form-control-color::-webkit-color-swatch{border-radius:.375rem}::ng-deep .form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}::ng-deep .form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}::ng-deep .valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}::ng-deep .valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#198754e6;border-radius:.375rem}.was-validated ::ng-deep:valid~.valid-feedback,.was-validated ::ng-deep:valid~.valid-tooltip,::ng-deep .is-valid~.valid-feedback,::ng-deep .is-valid~.valid-tooltip{display:block}.was-validated ::ng-deep .form-control:valid,::ng-deep .form-control.is-valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-control:valid:focus,::ng-deep .form-control.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep textarea.form-control:valid,::ng-deep textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated ::ng-deep .form-select:valid,::ng-deep .form-select.is-valid{border-color:#198754}.was-validated ::ng-deep .form-select:valid:not([multiple]):not([size]),.was-validated ::ng-deep .form-select:valid:not([multiple])[size=\"1\"],::ng-deep .form-select.is-valid:not([multiple]):not([size]),::ng-deep .form-select.is-valid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-select:valid:focus,::ng-deep .form-select.is-valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep .form-control-color:valid,::ng-deep .form-control-color.is-valid{width:calc(3.75rem + 1.5em)}.was-validated ::ng-deep .form-check-input:valid,::ng-deep .form-check-input.is-valid{border-color:#198754}.was-validated ::ng-deep .form-check-input:valid:checked,::ng-deep .form-check-input.is-valid:checked{background-color:#198754}.was-validated ::ng-deep .form-check-input:valid:focus,::ng-deep .form-check-input.is-valid:focus{box-shadow:0 0 0 .25rem #19875440}.was-validated ::ng-deep .form-check-input:valid~.form-check-label,::ng-deep .form-check-input.is-valid~.form-check-label{color:#198754}::ng-deep .form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.was-validated ::ng-deep .input-group>.form-control:not(:focus):valid,::ng-deep .input-group>.form-control:not(:focus).is-valid,.was-validated ::ng-deep .input-group>.form-select:not(:focus):valid,::ng-deep .input-group>.form-select:not(:focus).is-valid,.was-validated ::ng-deep .input-group>.form-floating:not(:focus-within):valid,::ng-deep .input-group>.form-floating:not(:focus-within).is-valid{z-index:3}::ng-deep .invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}::ng-deep .invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:#dc3545e6;border-radius:.375rem}.was-validated ::ng-deep:invalid~.invalid-feedback,.was-validated ::ng-deep:invalid~.invalid-tooltip,::ng-deep .is-invalid~.invalid-feedback,::ng-deep .is-invalid~.invalid-tooltip{display:block}.was-validated ::ng-deep .form-control:invalid,::ng-deep .form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-control:invalid:focus,::ng-deep .form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep textarea.form-control:invalid,::ng-deep textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated ::ng-deep .form-select:invalid,::ng-deep .form-select.is-invalid{border-color:#dc3545}.was-validated ::ng-deep .form-select:invalid:not([multiple]):not([size]),.was-validated ::ng-deep .form-select:invalid:not([multiple])[size=\"1\"],::ng-deep .form-select.is-invalid:not([multiple]):not([size]),::ng-deep .form-select.is-invalid:not([multiple])[size=\"1\"]{padding-right:4.125rem;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e\"),url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated ::ng-deep .form-select:invalid:focus,::ng-deep .form-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep .form-control-color:invalid,::ng-deep .form-control-color.is-invalid{width:calc(3.75rem + 1.5em)}.was-validated ::ng-deep .form-check-input:invalid,::ng-deep .form-check-input.is-invalid{border-color:#dc3545}.was-validated ::ng-deep .form-check-input:invalid:checked,::ng-deep .form-check-input.is-invalid:checked{background-color:#dc3545}.was-validated ::ng-deep .form-check-input:invalid:focus,::ng-deep .form-check-input.is-invalid:focus{box-shadow:0 0 0 .25rem #dc354540}.was-validated ::ng-deep .form-check-input:invalid~.form-check-label,::ng-deep .form-check-input.is-invalid~.form-check-label{color:#dc3545}::ng-deep .form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.was-validated ::ng-deep .input-group>.form-control:not(:focus):invalid,::ng-deep .input-group>.form-control:not(:focus).is-invalid,.was-validated ::ng-deep .input-group>.form-select:not(:focus):invalid,::ng-deep .input-group>.form-select:not(:focus).is-invalid,.was-validated ::ng-deep .input-group>.form-floating:not(:focus-within):invalid,::ng-deep .input-group>.form-floating:not(:focus-within).is-invalid{z-index:4}\n"] }]
19
- }], propDecorators: { submitted: [{
20
- type: Output
21
- }] } });
22
-
23
- class BsFormControlDirective {
24
- constructor() {
25
- this.formControlClass = true;
26
- }
27
- }
28
- BsFormControlDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormControlDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
29
- BsFormControlDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsFormControlDirective, selector: "bs-form input:not(.no-form-control), bs-form textarea:not(.no-form-control)", host: { properties: { "class.form-control": "this.formControlClass" } }, ngImport: i0 });
30
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormControlDirective, decorators: [{
31
- type: Directive,
32
- args: [{
33
- selector: 'bs-form input:not(.no-form-control), bs-form textarea:not(.no-form-control)'
34
- }]
35
- }], propDecorators: { formControlClass: [{
36
- type: HostBinding,
37
- args: ['class.form-control']
38
- }] } });
39
-
40
- class BsFormGroupDirective {
41
- constructor() {
42
- this.formGroupClass = true;
43
- }
44
- }
45
- BsFormGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
46
- BsFormGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsFormGroupDirective, selector: "[bsFormGroup]", host: { properties: { "class.form-group": "this.formGroupClass" } }, ngImport: i0 });
47
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormGroupDirective, decorators: [{
48
- type: Directive,
49
- args: [{
50
- selector: '[bsFormGroup]'
51
- }]
52
- }], propDecorators: { formGroupClass: [{
53
- type: HostBinding,
54
- args: ['class.form-group']
55
- }] } });
56
-
57
- class BsFormModule {
58
- }
59
- BsFormModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
60
- BsFormModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsFormModule, declarations: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective], imports: [CommonModule], exports: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective] });
61
- BsFormModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormModule, imports: [CommonModule] });
62
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsFormModule, decorators: [{
63
- type: NgModule,
64
- args: [{
65
- declarations: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective],
66
- imports: [CommonModule],
67
- exports: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective],
68
- }]
69
- }] });
70
-
71
- /**
72
- * Generated bundle index. Do not edit.
73
- */
74
-
75
- export { BsFormComponent, BsFormControlDirective, BsFormGroupDirective, BsFormModule };
76
- //# sourceMappingURL=mintplayer-ng-bootstrap-form.mjs.map