@mintplayer/ng-bootstrap 15.26.2 → 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.
- package/accordion/src/accordion/accordion.component.d.ts +1 -1
- package/accordion/src/accordion-tab/accordion-tab.component.d.ts +1 -1
- package/alert/src/alert/alert.component.d.ts +1 -1
- package/badge/src/badge.component.d.ts +1 -1
- package/button-type/src/button-type/button-type.directive.d.ts +1 -1
- package/calendar/src/calendar.component.d.ts +1 -1
- package/card/src/card/card.component.d.ts +1 -1
- package/card/src/card-header/card-header.component.d.ts +1 -1
- package/carousel/src/carousel/carousel.component.d.ts +1 -1
- package/code-snippet/src/code-snippet.component.d.ts +1 -1
- package/copy/src/copy.directive.d.ts +1 -1
- package/datatable/src/datatable/datatable.component.d.ts +1 -1
- package/datatable/src/datatable-column/datatable-column.directive.d.ts +1 -1
- package/datepicker/src/datepicker.component.d.ts +1 -1
- package/dock/src/dock/dock.component.d.ts +1 -1
- package/dock/src/dock-pane-renderer/dock-pane-renderer.component.d.ts +1 -1
- package/dock/src/dock-panel/dock-panel.component.d.ts +1 -1
- package/dock/src/dock-panel-header/dock-panel-header.component.d.ts +2 -0
- package/dropdown/src/dropdown/dropdown.directive.d.ts +1 -1
- package/dropdown-menu/src/dropdown-item/dropdown-item.component.d.ts +1 -1
- package/dropdown-menu/src/dropdown-menu/dropdown-menu.component.d.ts +1 -1
- package/esm2022/accordion/src/accordion/accordion.component.mjs +27 -0
- package/esm2022/accordion/src/accordion-tab/accordion-tab.component.mjs +69 -0
- package/esm2022/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +22 -0
- package/esm2022/accordion/src/accordion.module.mjs +39 -0
- package/esm2022/alert/src/alert/alert.component.mjs +42 -0
- package/esm2022/alert/src/alert-close/alert-close.component.mjs +21 -0
- package/esm2022/alert/src/alert.module.mjs +28 -0
- package/esm2022/badge/src/badge.component.mjs +31 -0
- package/esm2022/badge/src/badge.module.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +14 -0
- package/esm2022/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb.module.mjs +20 -0
- package/esm2022/button-group/src/button-group/button-group.component.mjs +14 -0
- package/esm2022/button-group/src/button-group.module.mjs +19 -0
- package/esm2022/button-type/src/button-type/button-type.directive.mjs +31 -0
- package/esm2022/button-type/src/button-type/button-type.module.mjs +25 -0
- package/esm2022/calendar/src/calendar.component.mjs +112 -0
- package/esm2022/calendar/src/calendar.module.mjs +40 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.pipe.mjs +22 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +17 -0
- package/esm2022/calendar-month/src/service/calendar-month.service.mjs +95 -0
- package/esm2022/card/src/card/card.component.mjs +17 -0
- package/esm2022/card/src/card-header/card-header.component.mjs +17 -0
- package/esm2022/card/src/card.module.mjs +28 -0
- package/esm2022/carousel/src/carousel/carousel.component.mjs +138 -0
- package/esm2022/carousel/src/carousel-image/carousel-image.directive.mjs +25 -0
- package/esm2022/carousel/src/carousel.module.mjs +38 -0
- package/esm2022/close/src/close.component.mjs +22 -0
- package/esm2022/close/src/close.module.mjs +19 -0
- package/esm2022/code-snippet/src/code-snippet.component.mjs +35 -0
- package/esm2022/code-snippet/src/code-snippet.module.mjs +37 -0
- package/esm2022/context-menu/src/context-menu.directive.mjs +85 -0
- package/esm2022/context-menu/src/context-menu.module.mjs +35 -0
- package/esm2022/copy/src/copy.directive.mjs +46 -0
- package/esm2022/copy/src/copy.module.mjs +25 -0
- package/esm2022/datatable/src/datatable/datatable.component.mjs +58 -0
- package/esm2022/datatable/src/datatable-column/datatable-column.directive.mjs +20 -0
- package/esm2022/datatable/src/datatable.module.mjs +47 -0
- package/esm2022/datatable/src/row-template/row-template.directive.mjs +20 -0
- package/esm2022/datepicker/src/datepicker.component.mjs +50 -0
- package/esm2022/datepicker/src/datepicker.module.mjs +41 -0
- package/esm2022/dock/src/dock/dock.component.mjs +94 -0
- package/esm2022/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +61 -0
- package/esm2022/dock/src/dock-panel/dock-panel.component.mjs +28 -0
- package/esm2022/dock/src/dock-panel-header/dock-panel-header.component.mjs +278 -0
- package/esm2022/dock/src/dock.module.mjs +64 -0
- package/esm2022/dock/src/services/dock/dock.service.mjs +57 -0
- package/esm2022/dropdown/src/dropdown/dropdown.directive.mjs +69 -0
- package/esm2022/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +115 -0
- package/esm2022/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +32 -0
- package/esm2022/dropdown/src/dropdown.module.mjs +44 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.directive.mjs +20 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.module.mjs +19 -0
- package/esm2022/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +20 -0
- package/esm2022/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +43 -0
- package/esm2022/dropdown-menu/src/dropdown-menu.module.mjs +27 -0
- package/esm2022/enhanced-paste/src/directive/enhanced-paste.directive.mjs +59 -0
- package/esm2022/enhanced-paste/src/enhanced-paste.module.mjs +25 -0
- package/esm2022/enum/src/service/enum.service.mjs +32 -0
- package/esm2022/file-upload/src/component/file-upload.component.mjs +90 -0
- package/esm2022/file-upload/src/directive/file-upload-template.directive.mjs +19 -0
- package/esm2022/file-upload/src/file-upload.module.mjs +51 -0
- package/esm2022/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +24 -0
- package/esm2022/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +21 -0
- package/esm2022/floating-labels/src/floating-labels/floating-labels.module.mjs +19 -0
- package/esm2022/for/src/for.directive.mjs +39 -0
- package/esm2022/for/src/for.module.mjs +25 -0
- package/esm2022/form/src/form/form.component.mjs +21 -0
- package/esm2022/form/src/form-control/form-control.directive.mjs +20 -0
- package/esm2022/form/src/form-group/form-group.directive.mjs +20 -0
- package/esm2022/form/src/form.module.mjs +21 -0
- package/esm2022/grid/src/component/grid.component.mjs +33 -0
- package/esm2022/grid/src/directives/col-form-label/col-form-label.directive.mjs +20 -0
- package/esm2022/grid/src/directives/column/column.directive.mjs +57 -0
- package/esm2022/grid/src/directives/row/row.directive.mjs +20 -0
- package/esm2022/grid/src/grid.module.mjs +22 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.component.mjs +12 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.module.mjs +19 -0
- package/esm2022/icon/src/icon.component.mjs +35 -0
- package/esm2022/icon/src/icon.module.mjs +19 -0
- package/esm2022/input-group/src/input-group/input-group.component.mjs +12 -0
- package/esm2022/input-group/src/input-group.module.mjs +19 -0
- package/esm2022/instance-of/src/directives/instanceof-case.directive.mjs +48 -0
- package/esm2022/instance-of/src/directives/instanceof-default.directive.mjs +31 -0
- package/esm2022/instance-of/src/directives/instanceof.directive.mjs +63 -0
- package/esm2022/instance-of/src/instance-of.module.mjs +38 -0
- package/esm2022/instance-of/src/pipes/instance-of.pipe.mjs +18 -0
- package/esm2022/lazy-loading/src/lazy-load/lazy-load.directive.mjs +33 -0
- package/esm2022/lazy-loading/src/lazy-loading.module.mjs +25 -0
- package/esm2022/let/directive/let.directive.mjs +39 -0
- package/esm2022/let/let.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/in-list/in-list.module.mjs +25 -0
- package/esm2022/lib/pipes/in-list/in-list.pipe.mjs +17 -0
- package/esm2022/lib/pipes/uc-first/uc-first.module.mjs +25 -0
- package/esm2022/lib/pipes/uc-first/uc-first.pipe.mjs +17 -0
- package/esm2022/list-group/src/list-group/list-group.component.mjs +20 -0
- package/esm2022/list-group/src/list-group-item/list-group-item.component.mjs +18 -0
- package/esm2022/list-group/src/list-group.module.mjs +28 -0
- package/esm2022/markdown/src/bold/bold.pipe.mjs +31 -0
- package/esm2022/markdown/src/italic/italic.pipe.mjs +31 -0
- package/esm2022/markdown/src/markdown.module.mjs +40 -0
- package/esm2022/markdown/src/strikethrough/strikethrough.pipe.mjs +31 -0
- package/esm2022/markdown/src/underline/underline.pipe.mjs +31 -0
- package/esm2022/modal/src/components/modal/modal.component.mjs +22 -0
- package/esm2022/modal/src/components/modal-host/modal-host.component.mjs +84 -0
- package/esm2022/modal/src/directives/modal/modal.directive.mjs +19 -0
- package/esm2022/modal/src/directives/modal-body/modal-body.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-close/modal-close.directive.mjs +25 -0
- package/esm2022/modal/src/directives/modal-footer/modal-footer.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-header/modal-header.directive.mjs +20 -0
- package/esm2022/modal/src/modal.module.mjs +76 -0
- package/esm2022/multiselect/src/component/multiselect.component.mjs +46 -0
- package/esm2022/multiselect/src/directives/button-template/button-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/footer-template/footer-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/header-template/header-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/multiselect.module.mjs +64 -0
- package/esm2022/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +39 -0
- package/esm2022/navbar/src/expand-button/expand-button.directive.mjs +19 -0
- package/esm2022/navbar/src/nav-link/nav-link.directive.mjs +35 -0
- package/esm2022/navbar/src/navbar/navbar.component.mjs +142 -0
- package/esm2022/navbar/src/navbar-brand/navbar-brand.component.mjs +21 -0
- package/esm2022/navbar/src/navbar-content/navbar-content.directive.mjs +73 -0
- package/esm2022/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +144 -0
- package/esm2022/navbar/src/navbar-item/navbar-item.component.mjs +105 -0
- package/esm2022/navbar/src/navbar-nav/navbar-nav.component.mjs +70 -0
- package/esm2022/navbar/src/navbar-toggler/navbar-toggler.component.mjs +48 -0
- package/esm2022/navbar/src/navbar.module.mjs +92 -0
- package/esm2022/navigation-lock/src/directive/navigation-lock.directive.mjs +95 -0
- package/esm2022/navigation-lock/src/guard/navigation-lock.guard.mjs +23 -0
- package/esm2022/navigation-lock/src/navigation-lock.module.mjs +29 -0
- package/esm2022/no-noscript/src/no-noscript/no-noscript.directive.mjs +28 -0
- package/esm2022/no-noscript/src/no-noscript.module.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas/offcanvas.component.mjs +112 -0
- package/esm2022/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +15 -0
- package/esm2022/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +144 -0
- package/esm2022/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +25 -0
- package/esm2022/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +19 -0
- package/esm2022/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +72 -0
- package/esm2022/offcanvas/src/offcanvas.module.mjs +76 -0
- package/esm2022/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +30 -0
- package/esm2022/ordinal-number/src/ordinal-number.module.mjs +25 -0
- package/esm2022/pagination/src/component/pagination/pagination.component.mjs +202 -0
- package/esm2022/pagination/src/pagination.module.mjs +25 -0
- package/esm2022/placeholder/src/placeholder/placeholder.component.mjs +27 -0
- package/esm2022/placeholder/src/placeholder-field/placeholder-field.directive.mjs +47 -0
- package/esm2022/placeholder/src/placeholder.module.mjs +20 -0
- package/esm2022/popover/src/component/popover.component.mjs +58 -0
- package/esm2022/popover/src/directives/popover/popover.directive.mjs +133 -0
- package/esm2022/popover/src/directives/popover-body/popover-body.directive.mjs +20 -0
- package/esm2022/popover/src/directives/popover-header/popover-header.directive.mjs +20 -0
- package/esm2022/popover/src/popover.module.mjs +37 -0
- package/esm2022/progress-bar/src/progress/progress.component.mjs +32 -0
- package/esm2022/progress-bar/src/progress-bar/progress-bar.component.mjs +122 -0
- package/esm2022/progress-bar/src/progress-bar.module.mjs +30 -0
- package/esm2022/range/src/component/range.component.mjs +26 -0
- package/esm2022/range/src/range.module.mjs +20 -0
- package/esm2022/range/src/value-accessor/range-value-accessor.mjs +63 -0
- package/esm2022/rating/src/component/rating.component.mjs +76 -0
- package/esm2022/rating/src/rating.module.mjs +25 -0
- package/esm2022/resizable/src/resizable/resizable.component.mjs +99 -0
- package/esm2022/resizable/src/resizable.module.mjs +30 -0
- package/esm2022/resizable/src/resize-glyph/resize-glyph.directive.mjs +220 -0
- package/esm2022/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +86 -0
- package/esm2022/scheduler/src/components/scheduler/scheduler.component.mjs +540 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +17 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +23 -0
- package/esm2022/scheduler/src/scheduler.module.mjs +46 -0
- package/esm2022/scheduler/src/services/timeline/timeline.service.mjs +66 -0
- package/esm2022/scrollspy/src/component/scrollspy.component.mjs +91 -0
- package/esm2022/scrollspy/src/directives/scrollspy.directive.mjs +17 -0
- package/esm2022/scrollspy/src/scrollspy.module.mjs +30 -0
- package/esm2022/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +32 -0
- package/esm2022/select/src/component/select.component.mjs +86 -0
- package/esm2022/select/src/select.module.mjs +32 -0
- package/esm2022/select/src/value-accessors/select-value-accessor.mjs +169 -0
- package/esm2022/select2/src/component/select2.component.mjs +86 -0
- package/esm2022/select2/src/directive/item-template.directive.mjs +20 -0
- package/esm2022/select2/src/select2.module.mjs +50 -0
- package/esm2022/snackbar/src/component/snackbar.component.mjs +37 -0
- package/esm2022/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +28 -0
- package/esm2022/snackbar/src/service/snackbar.service.mjs +46 -0
- package/esm2022/snackbar/src/snackbar.module.mjs +44 -0
- package/esm2022/spinner/src/spinner.component.mjs +44 -0
- package/esm2022/spinner/src/spinner.module.mjs +19 -0
- package/esm2022/splitter/src/element-at/element-at.pipe.mjs +22 -0
- package/esm2022/splitter/src/split-panel/split-panel.component.mjs +19 -0
- package/esm2022/splitter/src/splitter/splitter.component.mjs +207 -0
- package/esm2022/splitter/src/splitter.module.mjs +24 -0
- package/esm2022/tab-control/src/tab-control/tab-control.component.mjs +133 -0
- package/esm2022/tab-control/src/tab-control.module.mjs +47 -0
- package/esm2022/tab-control/src/tab-page/tab-page.component.mjs +31 -0
- package/esm2022/tab-control/src/tab-page-header/tab-page-header.directive.mjs +17 -0
- package/esm2022/table/src/component/table.component.mjs +48 -0
- package/esm2022/table/src/table.module.mjs +19 -0
- package/esm2022/timepicker/src/timepicker.component.mjs +118 -0
- package/esm2022/timepicker/src/timepicker.module.mjs +61 -0
- package/esm2022/toast/src/components/toast/toast.component.mjs +17 -0
- package/esm2022/toast/src/components/toast-body/toast-body.component.mjs +21 -0
- package/esm2022/toast/src/components/toast-container/toast-container.component.mjs +24 -0
- package/esm2022/toast/src/components/toast-header/toast-header.component.mjs +18 -0
- package/esm2022/toast/src/directives/toast-close/toast-close.directive.mjs +33 -0
- package/esm2022/toast/src/pipes/add-properties.pipe.mjs +18 -0
- package/esm2022/toast/src/services/toast/toast.service.mjs +57 -0
- package/esm2022/toast/src/toast.module.mjs +78 -0
- package/esm2022/toggle-button/src/component/toggle-button.component.mjs +159 -0
- package/esm2022/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +20 -0
- package/esm2022/toggle-button/src/toggle-button.module.mjs +35 -0
- package/esm2022/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +109 -0
- package/esm2022/tooltip/src/component/tooltip.component.mjs +39 -0
- package/esm2022/tooltip/src/directive/tooltip.directive.mjs +110 -0
- package/esm2022/tooltip/src/tooltip.module.mjs +36 -0
- package/esm2022/treeview/src/treeview/treeview.component.mjs +47 -0
- package/esm2022/treeview/src/treeview-item/treeview-item.component.mjs +28 -0
- package/esm2022/treeview/src/treeview.module.mjs +22 -0
- package/esm2022/typeahead/src/typeahead.component.mjs +83 -0
- package/esm2022/typeahead/src/typeahead.module.mjs +49 -0
- package/esm2022/user-agent/src/directive/user-agent.directive.mjs +99 -0
- package/esm2022/user-agent/src/user-agent.module.mjs +25 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs +52 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs +51 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs +35 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs +58 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs +153 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs +194 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs +43 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs +73 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs +121 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs +72 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs +172 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs +93 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs +598 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs +243 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs +85 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs +38 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs +76 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs +141 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs +218 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs +63 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs +147 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs +259 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs +151 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs +724 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs +145 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs +48 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs +452 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs +229 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs +89 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs +256 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs +182 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs +105 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs +103 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs +346 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs +813 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs +161 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs +282 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs +152 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs +65 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs +268 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs +214 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs +69 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs +236 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs +313 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs +91 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs +134 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs +125 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs.map +1 -0
- package/file-upload/src/component/file-upload.component.d.ts +1 -1
- package/for/src/for.directive.d.ts +1 -1
- package/grid/src/component/grid.component.d.ts +1 -1
- package/grid/src/directives/column/column.directive.d.ts +1 -1
- package/icon/src/icon.component.d.ts +1 -1
- package/instance-of/src/directives/instanceof-case.directive.d.ts +1 -1
- package/instance-of/src/directives/instanceof.directive.d.ts +1 -1
- package/lazy-loading/src/lazy-load/lazy-load.directive.d.ts +1 -1
- package/let/directive/let.directive.d.ts +1 -1
- package/modal/src/components/modal-host/modal-host.component.d.ts +1 -1
- package/multiselect/src/component/multiselect.component.d.ts +1 -1
- package/navbar/src/navbar/navbar.component.d.ts +1 -1
- package/navbar/src/navbar-brand/navbar-brand.component.d.ts +1 -1
- package/navbar/src/navbar-content/navbar-content.directive.d.ts +1 -1
- package/navbar/src/navbar-dropdown/navbar-dropdown.component.d.ts +1 -1
- package/navbar/src/navbar-nav/navbar-nav.component.d.ts +1 -1
- package/navbar/src/navbar-toggler/navbar-toggler.component.d.ts +1 -1
- package/navigation-lock/src/directive/navigation-lock.directive.d.ts +1 -1
- package/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-body/offcanvas-body.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +1 -1
- package/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.d.ts +1 -1
- package/package.json +218 -353
- package/pagination/src/component/pagination/pagination.component.d.ts +1 -1
- package/placeholder/src/placeholder/placeholder.component.d.ts +1 -1
- package/popover/src/component/popover.component.d.ts +1 -1
- package/popover/src/directives/popover/popover.directive.d.ts +1 -1
- package/progress-bar/src/progress/progress.component.d.ts +1 -1
- package/progress-bar/src/progress-bar/progress-bar.component.d.ts +1 -1
- package/range/src/component/range.component.d.ts +1 -1
- package/rating/src/component/rating.component.d.ts +1 -1
- package/resizable/src/resizable/resizable.component.d.ts +1 -1
- package/resizable/src/resize-glyph/resize-glyph.directive.d.ts +1 -1
- package/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.d.ts +1 -1
- package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
- package/select/src/component/select.component.d.ts +1 -1
- package/select/src/value-accessors/select-value-accessor.d.ts +2 -2
- package/select2/src/component/select2.component.d.ts +1 -1
- package/snackbar/src/directives/snackbar-close/snackbar-close.directive.d.ts +1 -1
- package/spinner/src/spinner.component.d.ts +1 -1
- package/splitter/src/splitter/splitter.component.d.ts +1 -1
- package/tab-control/src/tab-control/tab-control.component.d.ts +1 -1
- package/tab-control/src/tab-page/tab-page.component.d.ts +1 -1
- package/table/src/component/table.component.d.ts +1 -1
- package/timepicker/src/timepicker.component.d.ts +1 -1
- package/toast/src/components/toast/toast.component.d.ts +1 -1
- package/toast/src/directives/toast-close/toast-close.directive.d.ts +1 -1
- package/toggle-button/src/component/toggle-button.component.d.ts +1 -1
- package/tooltip/src/component/tooltip.component.d.ts +1 -1
- package/tooltip/src/directive/tooltip.directive.d.ts +1 -1
- package/treeview/src/treeview/treeview.component.d.ts +1 -1
- package/typeahead/src/typeahead.component.d.ts +1 -1
- package/esm2020/accordion/src/accordion/accordion.component.mjs +0 -26
- package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +0 -68
- package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +0 -21
- package/esm2020/accordion/src/accordion.module.mjs +0 -38
- package/esm2020/alert/src/alert/alert.component.mjs +0 -41
- package/esm2020/alert/src/alert-close/alert-close.component.mjs +0 -20
- package/esm2020/alert/src/alert.module.mjs +0 -27
- package/esm2020/badge/src/badge.component.mjs +0 -30
- package/esm2020/badge/src/badge.module.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +0 -13
- package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb.module.mjs +0 -19
- package/esm2020/button-group/src/button-group/button-group.component.mjs +0 -13
- package/esm2020/button-group/src/button-group.module.mjs +0 -18
- package/esm2020/button-type/src/button-type/button-type.directive.mjs +0 -30
- package/esm2020/button-type/src/button-type/button-type.module.mjs +0 -24
- package/esm2020/calendar/src/calendar.component.mjs +0 -111
- package/esm2020/calendar/src/calendar.module.mjs +0 -39
- package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +0 -21
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
- package/esm2020/calendar-month/src/service/calendar-month.service.mjs +0 -94
- package/esm2020/card/src/card/card.component.mjs +0 -16
- package/esm2020/card/src/card-header/card-header.component.mjs +0 -16
- package/esm2020/card/src/card.module.mjs +0 -27
- package/esm2020/carousel/src/carousel/carousel.component.mjs +0 -137
- package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +0 -24
- package/esm2020/carousel/src/carousel.module.mjs +0 -37
- package/esm2020/close/src/close.component.mjs +0 -21
- package/esm2020/close/src/close.module.mjs +0 -18
- package/esm2020/code-snippet/src/code-snippet.component.mjs +0 -34
- package/esm2020/code-snippet/src/code-snippet.module.mjs +0 -36
- package/esm2020/context-menu/src/context-menu.directive.mjs +0 -84
- package/esm2020/context-menu/src/context-menu.module.mjs +0 -34
- package/esm2020/copy/src/copy.directive.mjs +0 -45
- package/esm2020/copy/src/copy.module.mjs +0 -24
- package/esm2020/datatable/src/datatable/datatable.component.mjs +0 -57
- package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +0 -19
- package/esm2020/datatable/src/datatable.module.mjs +0 -46
- package/esm2020/datatable/src/row-template/row-template.directive.mjs +0 -19
- package/esm2020/datepicker/src/datepicker.component.mjs +0 -49
- package/esm2020/datepicker/src/datepicker.module.mjs +0 -40
- package/esm2020/dock/src/dock/dock.component.mjs +0 -92
- package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +0 -60
- package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +0 -27
- package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +0 -270
- package/esm2020/dock/src/dock.module.mjs +0 -63
- package/esm2020/dock/src/services/dock/dock.service.mjs +0 -56
- package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +0 -68
- package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +0 -114
- package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -31
- package/esm2020/dropdown/src/dropdown.module.mjs +0 -43
- package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +0 -19
- package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +0 -18
- package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +0 -19
- package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +0 -42
- package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +0 -26
- package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +0 -58
- package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +0 -24
- package/esm2020/enum/src/service/enum.service.mjs +0 -31
- package/esm2020/file-upload/src/component/file-upload.component.mjs +0 -89
- package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +0 -18
- package/esm2020/file-upload/src/file-upload.module.mjs +0 -50
- package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +0 -23
- package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +0 -20
- package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +0 -18
- package/esm2020/for/src/for.directive.mjs +0 -38
- package/esm2020/for/src/for.module.mjs +0 -24
- package/esm2020/form/src/form/form.component.mjs +0 -20
- package/esm2020/form/src/form-control/form-control.directive.mjs +0 -19
- package/esm2020/form/src/form-group/form-group.directive.mjs +0 -19
- package/esm2020/form/src/form.module.mjs +0 -20
- package/esm2020/grid/src/component/grid.component.mjs +0 -32
- package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +0 -19
- package/esm2020/grid/src/directives/column/column.directive.mjs +0 -56
- package/esm2020/grid/src/directives/row/row.directive.mjs +0 -19
- package/esm2020/grid/src/grid.module.mjs +0 -21
- package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +0 -11
- package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +0 -18
- package/esm2020/icon/src/icon.component.mjs +0 -34
- package/esm2020/icon/src/icon.module.mjs +0 -18
- package/esm2020/input-group/src/input-group/input-group.component.mjs +0 -11
- package/esm2020/input-group/src/input-group.module.mjs +0 -18
- package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +0 -47
- package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +0 -30
- package/esm2020/instance-of/src/directives/instanceof.directive.mjs +0 -62
- package/esm2020/instance-of/src/instance-of.module.mjs +0 -37
- package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +0 -17
- package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +0 -32
- package/esm2020/lazy-loading/src/lazy-loading.module.mjs +0 -24
- package/esm2020/let/directive/let.directive.mjs +0 -38
- package/esm2020/let/let.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +0 -26
- package/esm2020/lib/pipes/in-list/in-list.module.mjs +0 -24
- package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +0 -16
- package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +0 -24
- package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +0 -16
- package/esm2020/list-group/src/list-group/list-group.component.mjs +0 -19
- package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +0 -17
- package/esm2020/list-group/src/list-group.module.mjs +0 -27
- package/esm2020/markdown/src/bold/bold.pipe.mjs +0 -30
- package/esm2020/markdown/src/italic/italic.pipe.mjs +0 -30
- package/esm2020/markdown/src/markdown.module.mjs +0 -39
- package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +0 -30
- package/esm2020/markdown/src/underline/underline.pipe.mjs +0 -30
- package/esm2020/modal/src/components/modal/modal.component.mjs +0 -21
- package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +0 -83
- package/esm2020/modal/src/directives/modal/modal.directive.mjs +0 -18
- package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +0 -24
- package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +0 -19
- package/esm2020/modal/src/modal.module.mjs +0 -75
- package/esm2020/multiselect/src/component/multiselect.component.mjs +0 -45
- package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/multiselect.module.mjs +0 -63
- package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -38
- package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +0 -18
- package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +0 -34
- package/esm2020/navbar/src/navbar/navbar.component.mjs +0 -141
- package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +0 -20
- package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +0 -72
- package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +0 -143
- package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +0 -104
- package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +0 -69
- package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +0 -47
- package/esm2020/navbar/src/navbar.module.mjs +0 -91
- package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +0 -94
- package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +0 -22
- package/esm2020/navigation-lock/src/navigation-lock.module.mjs +0 -28
- package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +0 -27
- package/esm2020/no-noscript/src/no-noscript.module.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +0 -111
- package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +0 -14
- package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +0 -143
- package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +0 -24
- package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +0 -18
- package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +0 -71
- package/esm2020/offcanvas/src/offcanvas.module.mjs +0 -75
- package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +0 -29
- package/esm2020/ordinal-number/src/ordinal-number.module.mjs +0 -24
- package/esm2020/pagination/src/component/pagination/pagination.component.mjs +0 -201
- package/esm2020/pagination/src/pagination.module.mjs +0 -24
- package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +0 -26
- package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +0 -46
- package/esm2020/placeholder/src/placeholder.module.mjs +0 -19
- package/esm2020/popover/src/component/popover.component.mjs +0 -57
- package/esm2020/popover/src/directives/popover/popover.directive.mjs +0 -132
- package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +0 -19
- package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +0 -19
- package/esm2020/popover/src/popover.module.mjs +0 -36
- package/esm2020/progress-bar/src/progress/progress.component.mjs +0 -31
- package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +0 -121
- package/esm2020/progress-bar/src/progress-bar.module.mjs +0 -29
- package/esm2020/range/src/component/range.component.mjs +0 -25
- package/esm2020/range/src/range.module.mjs +0 -19
- package/esm2020/range/src/value-accessor/range-value-accessor.mjs +0 -62
- package/esm2020/rating/src/component/rating.component.mjs +0 -75
- package/esm2020/rating/src/rating.module.mjs +0 -24
- package/esm2020/resizable/src/resizable/resizable.component.mjs +0 -98
- package/esm2020/resizable/src/resizable.module.mjs +0 -29
- package/esm2020/resizable/src/resize-glyph/resize-glyph.directive.mjs +0 -219
- package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +0 -85
- package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +0 -539
- package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +0 -16
- package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +0 -22
- package/esm2020/scheduler/src/scheduler.module.mjs +0 -45
- package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +0 -65
- package/esm2020/scrollspy/src/component/scrollspy.component.mjs +0 -90
- package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +0 -16
- package/esm2020/scrollspy/src/scrollspy.module.mjs +0 -29
- package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +0 -31
- package/esm2020/select/src/component/select.component.mjs +0 -85
- package/esm2020/select/src/select.module.mjs +0 -31
- package/esm2020/select/src/value-accessors/select-value-accessor.mjs +0 -167
- package/esm2020/select2/src/component/select2.component.mjs +0 -85
- package/esm2020/select2/src/directive/item-template.directive.mjs +0 -19
- package/esm2020/select2/src/select2.module.mjs +0 -49
- package/esm2020/snackbar/src/component/snackbar.component.mjs +0 -36
- package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +0 -27
- package/esm2020/snackbar/src/service/snackbar.service.mjs +0 -45
- package/esm2020/snackbar/src/snackbar.module.mjs +0 -43
- package/esm2020/spinner/src/spinner.component.mjs +0 -43
- package/esm2020/spinner/src/spinner.module.mjs +0 -18
- package/esm2020/splitter/src/element-at/element-at.pipe.mjs +0 -21
- package/esm2020/splitter/src/split-panel/split-panel.component.mjs +0 -18
- package/esm2020/splitter/src/splitter/splitter.component.mjs +0 -206
- package/esm2020/splitter/src/splitter.module.mjs +0 -23
- package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +0 -132
- package/esm2020/tab-control/src/tab-control.module.mjs +0 -46
- package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +0 -30
- package/esm2020/tab-control/src/tab-page-header/tab-page-header.directive.mjs +0 -16
- package/esm2020/table/src/component/table.component.mjs +0 -47
- package/esm2020/table/src/table.module.mjs +0 -18
- package/esm2020/timepicker/src/timepicker.component.mjs +0 -117
- package/esm2020/timepicker/src/timepicker.module.mjs +0 -60
- package/esm2020/toast/src/components/toast/toast.component.mjs +0 -16
- package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +0 -20
- package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +0 -23
- package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +0 -17
- package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +0 -32
- package/esm2020/toast/src/pipes/add-properties.pipe.mjs +0 -17
- package/esm2020/toast/src/services/toast/toast.service.mjs +0 -56
- package/esm2020/toast/src/toast.module.mjs +0 -77
- package/esm2020/toggle-button/src/component/toggle-button.component.mjs +0 -158
- package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +0 -19
- package/esm2020/toggle-button/src/toggle-button.module.mjs +0 -34
- package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +0 -108
- package/esm2020/tooltip/src/component/tooltip.component.mjs +0 -38
- package/esm2020/tooltip/src/directive/tooltip.directive.mjs +0 -109
- package/esm2020/tooltip/src/tooltip.module.mjs +0 -35
- package/esm2020/treeview/src/treeview/treeview.component.mjs +0 -46
- package/esm2020/treeview/src/treeview-item/treeview-item.component.mjs +0 -27
- package/esm2020/treeview/src/treeview.module.mjs +0 -21
- package/esm2020/typeahead/src/typeahead.component.mjs +0 -82
- package/esm2020/typeahead/src/typeahead.module.mjs +0 -48
- package/esm2020/user-agent/src/directive/user-agent.directive.mjs +0 -98
- package/esm2020/user-agent/src/user-agent.module.mjs +0 -24
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +0 -178
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +0 -196
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +0 -123
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +0 -75
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +0 -171
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +0 -593
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +0 -248
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +0 -222
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +0 -263
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +0 -735
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -148
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +0 -50
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +0 -456
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +0 -261
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs +0 -338
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +0 -166
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs +0 -284
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +0 -238
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +0 -185
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +0 -127
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +0 -194
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +0 -121
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +0 -72
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +0 -172
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +0 -590
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +0 -243
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +0 -218
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +0 -259
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +0 -724
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -145
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +0 -48
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +0 -452
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +0 -256
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs +0 -346
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +0 -161
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs +0 -282
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +0 -236
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs +0 -91
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +0 -125
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +0 -1
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/mintplayer-ng-bootstrap-accordion.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/mintplayer-ng-bootstrap-alert.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/mintplayer-ng-bootstrap-badge.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/mintplayer-ng-bootstrap-button-group.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/mintplayer-ng-bootstrap-button-type.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/mintplayer-ng-bootstrap-calendar.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/date-day-of-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/first-and-last-date.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/week.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/weekday.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/month-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/weekday-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/mintplayer-ng-bootstrap-card.mjs +0 -0
- /package/{esm2020 → esm2022}/card/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/mintplayer-ng-bootstrap-carousel.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/mintplayer-ng-bootstrap-close.mjs +0 -0
- /package/{esm2020 → esm2022}/close/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/mintplayer-ng-bootstrap-code-snippet.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/mintplayer-ng-bootstrap-context-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/mintplayer-ng-bootstrap-copy.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/mintplayer-ng-bootstrap-datatable.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/datatable-column-metadata.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/mintplayer-ng-bootstrap-datepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/mintplayer-ng-bootstrap-dock.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/pane-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/dock-layout.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/remove-from-pane-result.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/size.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/content-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/dock-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/document-host-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/floating-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/split-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/tab-group-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/types/split-pane-orientation.type.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/mintplayer-ng-bootstrap-dropdown.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/interfaces/number-overflow.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/mintplayer-ng-bootstrap-enum.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/enum-item.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/mintplayer-ng-bootstrap-file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/mintplayer-ng-bootstrap-floating-labels.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/mintplayer-ng-bootstrap-for.mjs +0 -0
- /package/{esm2020 → esm2022}/for/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/mintplayer-ng-bootstrap-form.mjs +0 -0
- /package/{esm2020 → esm2022}/form/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/mintplayer-ng-bootstrap-grid.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/column-definition.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/mintplayer-ng-bootstrap-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/mintplayer-ng-bootstrap-input-group.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/switch-view.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/instance-of-context.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/abstract.type.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/let-context.mjs +0 -0
- /package/{esm2020 → esm2022}/let/mintplayer-ng-bootstrap-let.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/color.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/font-color/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/in-list/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/uc-first/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/development.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/breakpoint.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/position.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/size.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/view-state.type.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/mintplayer-ng-bootstrap-list-group.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/mintplayer-ng-bootstrap-markdown.mjs +0 -0
- /package/{esm2020 → esm2022}/mintplayer-ng-bootstrap.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/mintplayer-ng-bootstrap-modal.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/modal-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/mintplayer-ng-bootstrap-multiselect.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/mintplayer-ng-bootstrap-navbar.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/interface/has-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/index.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/mintplayer-ng-bootstrap-no-noscript.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/mintplayer-ng-bootstrap-offcanvas.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/offcanvas-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/index.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/mintplayer-ng-bootstrap-pagination.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/component/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/page-with-selection.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/page-number.type.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/index.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/mintplayer-ng-bootstrap-placeholder.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/mintplayer-ng-bootstrap-popover.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/popover-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/mintplayer-ng-bootstrap-progress-bar.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/mintplayer-ng-bootstrap-range.mjs +0 -0
- /package/{esm2020 → esm2022}/range/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/mintplayer-ng-bootstrap-rating.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/mintplayer-ng-bootstrap-resizable.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/pointer-data.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/preset-position.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/resize-action.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/resizable.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/positioning.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/mintplayer-ng-bootstrap-scheduler.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/available-scales.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/scheduler-mode.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/preview-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-or-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-part.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-with-parts.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-schale.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-stamp-with-slots.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/time-slot.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-track.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/week-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/mintplayer-ng-bootstrap-scrollspy.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/mintplayer-ng-bootstrap-select.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/select-size.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/value-accessors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/mintplayer-ng-bootstrap-select2.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/mintplayer-ng-bootstrap-snackbar.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/snackbar-animation-meta.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/providers/snackbar-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/mintplayer-ng-bootstrap-spinner.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/mintplayer-ng-bootstrap-splitter.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/direction.type.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/mintplayer-ng-bootstrap-tab-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/tabs-position.mjs +0 -0
- /package/{esm2020 → esm2022}/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table/mintplayer-ng-bootstrap-table.mjs +0 -0
- /package/{esm2020 → esm2022}/table/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/mintplayer-ng-bootstrap-timepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/mintplayer-ng-bootstrap-toast.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/mintplayer-ng-bootstrap-toggle-button.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/check-style.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/mintplayer-ng-bootstrap-tooltip.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/providers/tooltip-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/index.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/mintplayer-ng-bootstrap-treeview.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/mintplayer-ng-bootstrap-typeahead.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/mintplayer-ng-bootstrap-user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/directive/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/operating-system.type.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/webbrowser.type.mjs +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { OverlayModule } from '@angular/cdk/overlay';
|
|
4
|
+
import { ComponentPortal } from '@angular/cdk/portal';
|
|
5
|
+
import { BsHasOverlayModule } from '@mintplayer/ng-bootstrap/has-overlay';
|
|
6
|
+
import { BsModalComponent } from './components/modal/modal.component';
|
|
7
|
+
import { BsModalHostComponent } from './components/modal-host/modal-host.component';
|
|
8
|
+
import { BsModalHeaderDirective } from './directives/modal-header/modal-header.directive';
|
|
9
|
+
import { BsModalBodyDirective } from './directives/modal-body/modal-body.directive';
|
|
10
|
+
import { BsModalFooterDirective } from './directives/modal-footer/modal-footer.directive';
|
|
11
|
+
import { BsModalDirective } from './directives/modal/modal.directive';
|
|
12
|
+
import { BsModalCloseDirective } from './directives/modal-close/modal-close.directive';
|
|
13
|
+
import { PORTAL_FACTORY } from './providers/portal-factory.provider';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
class BsModalModule {
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsModalModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
17
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsModalModule, declarations: [BsModalHeaderDirective,
|
|
18
|
+
BsModalBodyDirective,
|
|
19
|
+
BsModalFooterDirective,
|
|
20
|
+
BsModalDirective,
|
|
21
|
+
BsModalCloseDirective,
|
|
22
|
+
BsModalComponent,
|
|
23
|
+
BsModalHostComponent], imports: [CommonModule,
|
|
24
|
+
OverlayModule,
|
|
25
|
+
BsHasOverlayModule], exports: [BsModalHeaderDirective,
|
|
26
|
+
BsModalBodyDirective,
|
|
27
|
+
BsModalFooterDirective,
|
|
28
|
+
BsModalDirective,
|
|
29
|
+
BsModalCloseDirective,
|
|
30
|
+
BsModalComponent,
|
|
31
|
+
BsModalHostComponent] }); }
|
|
32
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsModalModule, providers: [{
|
|
33
|
+
provide: PORTAL_FACTORY,
|
|
34
|
+
useValue: (injector) => {
|
|
35
|
+
return new ComponentPortal(BsModalComponent, null, injector);
|
|
36
|
+
}
|
|
37
|
+
}], imports: [CommonModule,
|
|
38
|
+
OverlayModule,
|
|
39
|
+
BsHasOverlayModule] }); }
|
|
40
|
+
}
|
|
41
|
+
export { BsModalModule };
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsModalModule, decorators: [{
|
|
43
|
+
type: NgModule,
|
|
44
|
+
args: [{
|
|
45
|
+
declarations: [
|
|
46
|
+
BsModalHeaderDirective,
|
|
47
|
+
BsModalBodyDirective,
|
|
48
|
+
BsModalFooterDirective,
|
|
49
|
+
BsModalDirective,
|
|
50
|
+
BsModalCloseDirective,
|
|
51
|
+
BsModalComponent,
|
|
52
|
+
BsModalHostComponent
|
|
53
|
+
],
|
|
54
|
+
imports: [
|
|
55
|
+
CommonModule,
|
|
56
|
+
OverlayModule,
|
|
57
|
+
BsHasOverlayModule
|
|
58
|
+
],
|
|
59
|
+
exports: [
|
|
60
|
+
BsModalHeaderDirective,
|
|
61
|
+
BsModalBodyDirective,
|
|
62
|
+
BsModalFooterDirective,
|
|
63
|
+
BsModalDirective,
|
|
64
|
+
BsModalCloseDirective,
|
|
65
|
+
BsModalComponent,
|
|
66
|
+
BsModalHostComponent
|
|
67
|
+
],
|
|
68
|
+
providers: [{
|
|
69
|
+
provide: PORTAL_FACTORY,
|
|
70
|
+
useValue: (injector) => {
|
|
71
|
+
return new ComponentPortal(BsModalComponent, null, injector);
|
|
72
|
+
}
|
|
73
|
+
}]
|
|
74
|
+
}]
|
|
75
|
+
}] });
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9tb2RhbC9zcmMvbW9kYWwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBWSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDdEQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDdEUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDcEYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFDMUYsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sOENBQThDLENBQUM7QUFDcEYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sa0RBQWtELENBQUM7QUFDMUYsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDdEUsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sZ0RBQWdELENBQUM7QUFDdkYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUVyRSxNQStCYSxhQUFhOzhHQUFiLGFBQWE7K0dBQWIsYUFBYSxpQkE3QnRCLHNCQUFzQjtZQUN0QixvQkFBb0I7WUFDcEIsc0JBQXNCO1lBQ3RCLGdCQUFnQjtZQUNoQixxQkFBcUI7WUFDckIsZ0JBQWdCO1lBQ2hCLG9CQUFvQixhQUdwQixZQUFZO1lBQ1osYUFBYTtZQUNiLGtCQUFrQixhQUdsQixzQkFBc0I7WUFDdEIsb0JBQW9CO1lBQ3BCLHNCQUFzQjtZQUN0QixnQkFBZ0I7WUFDaEIscUJBQXFCO1lBQ3JCLGdCQUFnQjtZQUNoQixvQkFBb0I7K0dBU1gsYUFBYSxhQVBiLENBQUM7Z0JBQ1YsT0FBTyxFQUFFLGNBQWM7Z0JBQ3ZCLFFBQVEsRUFBRSxDQUFDLFFBQWtCLEVBQUUsRUFBRTtvQkFDL0IsT0FBTyxJQUFJLGVBQWUsQ0FBQyxnQkFBZ0IsRUFBRSxJQUFJLEVBQUUsUUFBUSxDQUFDLENBQUM7Z0JBQy9ELENBQUM7YUFDRixDQUFDLFlBbEJBLFlBQVk7WUFDWixhQUFhO1lBQ2Isa0JBQWtCOztTQWtCVCxhQUFhOzJGQUFiLGFBQWE7a0JBL0J6QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixzQkFBc0I7d0JBQ3RCLG9CQUFvQjt3QkFDcEIsc0JBQXNCO3dCQUN0QixnQkFBZ0I7d0JBQ2hCLHFCQUFxQjt3QkFDckIsZ0JBQWdCO3dCQUNoQixvQkFBb0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLGFBQWE7d0JBQ2Isa0JBQWtCO3FCQUNuQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asc0JBQXNCO3dCQUN0QixvQkFBb0I7d0JBQ3BCLHNCQUFzQjt3QkFDdEIsZ0JBQWdCO3dCQUNoQixxQkFBcUI7d0JBQ3JCLGdCQUFnQjt3QkFDaEIsb0JBQW9CO3FCQUNyQjtvQkFDRCxTQUFTLEVBQUUsQ0FBQzs0QkFDVixPQUFPLEVBQUUsY0FBYzs0QkFDdkIsUUFBUSxFQUFFLENBQUMsUUFBa0IsRUFBRSxFQUFFO2dDQUMvQixPQUFPLElBQUksZUFBZSxDQUFDLGdCQUFnQixFQUFFLElBQUksRUFBRSxRQUFRLENBQUMsQ0FBQzs0QkFDL0QsQ0FBQzt5QkFDRixDQUFDO2lCQUNIIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0b3IsIE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgT3ZlcmxheU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9vdmVybGF5JztcbmltcG9ydCB7IENvbXBvbmVudFBvcnRhbCB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuaW1wb3J0IHsgQnNIYXNPdmVybGF5TW9kdWxlIH0gZnJvbSAnQG1pbnRwbGF5ZXIvbmctYm9vdHN0cmFwL2hhcy1vdmVybGF5JztcbmltcG9ydCB7IEJzTW9kYWxDb21wb25lbnQgfSBmcm9tICcuL2NvbXBvbmVudHMvbW9kYWwvbW9kYWwuY29tcG9uZW50JztcbmltcG9ydCB7IEJzTW9kYWxIb3N0Q29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzL21vZGFsLWhvc3QvbW9kYWwtaG9zdC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQnNNb2RhbEhlYWRlckRpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9tb2RhbC1oZWFkZXIvbW9kYWwtaGVhZGVyLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBCc01vZGFsQm9keURpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9tb2RhbC1ib2R5L21vZGFsLWJvZHkuZGlyZWN0aXZlJztcbmltcG9ydCB7IEJzTW9kYWxGb290ZXJEaXJlY3RpdmUgfSBmcm9tICcuL2RpcmVjdGl2ZXMvbW9kYWwtZm9vdGVyL21vZGFsLWZvb3Rlci5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgQnNNb2RhbERpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9tb2RhbC9tb2RhbC5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgQnNNb2RhbENsb3NlRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL21vZGFsLWNsb3NlL21vZGFsLWNsb3NlLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBQT1JUQUxfRkFDVE9SWSB9IGZyb20gJy4vcHJvdmlkZXJzL3BvcnRhbC1mYWN0b3J5LnByb3ZpZGVyJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgQnNNb2RhbEhlYWRlckRpcmVjdGl2ZSxcbiAgICBCc01vZGFsQm9keURpcmVjdGl2ZSxcbiAgICBCc01vZGFsRm9vdGVyRGlyZWN0aXZlLFxuICAgIEJzTW9kYWxEaXJlY3RpdmUsXG4gICAgQnNNb2RhbENsb3NlRGlyZWN0aXZlLFxuICAgIEJzTW9kYWxDb21wb25lbnQsXG4gICAgQnNNb2RhbEhvc3RDb21wb25lbnRcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBPdmVybGF5TW9kdWxlLFxuICAgIEJzSGFzT3ZlcmxheU1vZHVsZVxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgQnNNb2RhbEhlYWRlckRpcmVjdGl2ZSxcbiAgICBCc01vZGFsQm9keURpcmVjdGl2ZSxcbiAgICBCc01vZGFsRm9vdGVyRGlyZWN0aXZlLFxuICAgIEJzTW9kYWxEaXJlY3RpdmUsXG4gICAgQnNNb2RhbENsb3NlRGlyZWN0aXZlLFxuICAgIEJzTW9kYWxDb21wb25lbnQsXG4gICAgQnNNb2RhbEhvc3RDb21wb25lbnRcbiAgXSxcbiAgcHJvdmlkZXJzOiBbe1xuICAgIHByb3ZpZGU6IFBPUlRBTF9GQUNUT1JZLFxuICAgIHVzZVZhbHVlOiAoaW5qZWN0b3I6IEluamVjdG9yKSA9PiB7XG4gICAgICByZXR1cm4gbmV3IENvbXBvbmVudFBvcnRhbChCc01vZGFsQ29tcG9uZW50LCBudWxsLCBpbmplY3Rvcik7XG4gICAgfVxuICB9XVxufSlcbmV4cG9ydCBjbGFzcyBCc01vZGFsTW9kdWxlIHsgfVxuIl19
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Component, Input, TemplateRef, ViewChild } from '@angular/core';
|
|
2
|
+
import { Color } from '@mintplayer/ng-bootstrap';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
5
|
+
import * as i2 from "@angular/forms";
|
|
6
|
+
import * as i3 from "@mintplayer/ng-bootstrap/dropdown";
|
|
7
|
+
import * as i4 from "@mintplayer/ng-bootstrap/has-overlay";
|
|
8
|
+
import * as i5 from "@mintplayer/ng-bootstrap/toggle-button";
|
|
9
|
+
import * as i6 from "@mintplayer/ng-bootstrap/button-type";
|
|
10
|
+
class BsMultiselectComponent {
|
|
11
|
+
constructor() {
|
|
12
|
+
this.colors = Color;
|
|
13
|
+
this.items = [];
|
|
14
|
+
this.selectedItems = [];
|
|
15
|
+
}
|
|
16
|
+
// itemChange(item: any, ev: Event) {
|
|
17
|
+
itemChange(item, value) {
|
|
18
|
+
// const value = (<any>ev.target).checked;
|
|
19
|
+
if (value) {
|
|
20
|
+
this.selectedItems.push(item);
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
this.selectedItems.splice(this.selectedItems.findIndex((i) => i === item), 1);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
defaultTrackBy(index, item) {
|
|
27
|
+
return item;
|
|
28
|
+
}
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: BsMultiselectComponent, selector: "bs-multiselect", inputs: { items: "items", selectedItems: "selectedItems", itemsTrackBy: "itemsTrackBy" }, viewQueries: [{ propertyName: "defaultButtonTemplate", first: true, predicate: ["defaultButtonTemplate"], descendants: true }], ngImport: i0, template: "<bs-has-overlay></bs-has-overlay>\n<div bsDropdown [hasBackdrop]=\"true\" [closeOnClickOutside]=\"true\">\n <button bsDropdownToggle [color]=\"colors.primary\">\n <ng-container *ngTemplateOutlet=\"buttonTemplate ?? defaultButtonTemplate; context: { $implicit: selectedItems.length }\"></ng-container>\n </button>\n <div *bsDropdownMenu class=\"bg-white mw-250px p-3 border rounded shadow\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n <hr class=\"my-2\" *ngIf=\"headerTemplate\">\n <bs-toggle-button *ngFor=\"let item of items; trackBy: itemsTrackBy ?? defaultTrackBy\" [ngModel]=\"selectedItems.indexOf(item) > -1\" (ngModelChange)=\"itemChange(item, $event)\" class=\"d-block\">{{ item }}</bs-toggle-button>\n <hr class=\"my-2\" *ngIf=\"footerTemplate\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n</div>\n<ng-template #defaultButtonTemplate let-count>\n {{ count }} selected\n</ng-template>", styles: [".mw-250px{min-width:250px}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.BsDropdownDirective, selector: "[bsDropdown]", inputs: ["hasBackdrop", "sameWidth", "closeOnClickOutside", "sameDropdownWidth", "isOpen"], outputs: ["isOpenChange"] }, { kind: "directive", type: i3.BsDropdownToggleDirective, selector: "[bsDropdownToggle]" }, { kind: "directive", type: i3.BsDropdownMenuDirective, selector: "[bsDropdownMenu]" }, { kind: "component", type: i4.BsHasOverlayComponent, selector: "bs-has-overlay" }, { kind: "component", type: i5.BsToggleButtonComponent, selector: "bs-toggle-button", inputs: ["type", "isToggled", "disabled", "name", "value", "group"], outputs: ["isToggledChange"] }, { kind: "directive", type: i5.BsToggleButtonValueAccessor, selector: "bs-toggle-button" }, { kind: "directive", type: i6.BsButtonTypeDirective, selector: "button[color],input[type=\"button\"][color],input[type=\"submit\"][color]", inputs: ["color"] }] }); }
|
|
31
|
+
}
|
|
32
|
+
export { BsMultiselectComponent };
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectComponent, decorators: [{
|
|
34
|
+
type: Component,
|
|
35
|
+
args: [{ selector: 'bs-multiselect', template: "<bs-has-overlay></bs-has-overlay>\n<div bsDropdown [hasBackdrop]=\"true\" [closeOnClickOutside]=\"true\">\n <button bsDropdownToggle [color]=\"colors.primary\">\n <ng-container *ngTemplateOutlet=\"buttonTemplate ?? defaultButtonTemplate; context: { $implicit: selectedItems.length }\"></ng-container>\n </button>\n <div *bsDropdownMenu class=\"bg-white mw-250px p-3 border rounded shadow\">\n <ng-container *ngTemplateOutlet=\"headerTemplate\"></ng-container>\n <hr class=\"my-2\" *ngIf=\"headerTemplate\">\n <bs-toggle-button *ngFor=\"let item of items; trackBy: itemsTrackBy ?? defaultTrackBy\" [ngModel]=\"selectedItems.indexOf(item) > -1\" (ngModelChange)=\"itemChange(item, $event)\" class=\"d-block\">{{ item }}</bs-toggle-button>\n <hr class=\"my-2\" *ngIf=\"footerTemplate\">\n <ng-container *ngTemplateOutlet=\"footerTemplate\"></ng-container>\n </div>\n</div>\n<ng-template #defaultButtonTemplate let-count>\n {{ count }} selected\n</ng-template>", styles: [".mw-250px{min-width:250px}\n"] }]
|
|
36
|
+
}], propDecorators: { items: [{
|
|
37
|
+
type: Input
|
|
38
|
+
}], selectedItems: [{
|
|
39
|
+
type: Input
|
|
40
|
+
}], defaultButtonTemplate: [{
|
|
41
|
+
type: ViewChild,
|
|
42
|
+
args: ['defaultButtonTemplate']
|
|
43
|
+
}], itemsTrackBy: [{
|
|
44
|
+
type: Input
|
|
45
|
+
}] } });
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGlzZWxlY3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9tdWx0aXNlbGVjdC9zcmMvY29tcG9uZW50L211bHRpc2VsZWN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbWludHBsYXllci1uZy1ib290c3RyYXAvbXVsdGlzZWxlY3Qvc3JjL2NvbXBvbmVudC9tdWx0aXNlbGVjdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxXQUFXLEVBQW1CLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRixPQUFPLEVBQUUsS0FBSyxFQUFFLE1BQU0sMEJBQTBCLENBQUM7Ozs7Ozs7O0FBRWpELE1BS2Esc0JBQXNCO0lBTG5DO1FBVUUsV0FBTSxHQUFHLEtBQUssQ0FBQztRQUdDLFVBQUssR0FBUSxFQUFFLENBQUM7UUFDaEIsa0JBQWEsR0FBUSxFQUFFLENBQUM7S0FrQnpDO0lBZEMscUNBQXFDO0lBQ3JDLFVBQVUsQ0FBQyxJQUFPLEVBQUUsS0FBcUI7UUFDdkMsMENBQTBDO1FBQzFDLElBQUksS0FBSyxFQUFFO1lBQ1QsSUFBSSxDQUFDLGFBQWEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7U0FDL0I7YUFBTTtZQUNMLElBQUksQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxhQUFhLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7U0FDL0U7SUFDSCxDQUFDO0lBRUQsY0FBYyxDQUFDLEtBQWEsRUFBRSxJQUFPO1FBQ25DLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQzs4R0F6QlUsc0JBQXNCO2tHQUF0QixzQkFBc0IsZ1JDUm5DLHUvQkFlYzs7U0RQRCxzQkFBc0I7MkZBQXRCLHNCQUFzQjtrQkFMbEMsU0FBUzsrQkFDRSxnQkFBZ0I7OEJBWVYsS0FBSztzQkFBcEIsS0FBSztnQkFDVSxhQUFhO3NCQUE1QixLQUFLO2dCQUM4QixxQkFBcUI7c0JBQXhELFNBQVM7dUJBQUMsdUJBQXVCO2dCQUNsQixZQUFZO3NCQUEzQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgVGVtcGxhdGVSZWYsIFRyYWNrQnlGdW5jdGlvbiwgVmlld0NoaWxkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb2xvciB9IGZyb20gJ0BtaW50cGxheWVyL25nLWJvb3RzdHJhcCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2JzLW11bHRpc2VsZWN0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL211bHRpc2VsZWN0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vbXVsdGlzZWxlY3QuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBCc011bHRpc2VsZWN0Q29tcG9uZW50PFQ+IHtcblxuICBoZWFkZXJUZW1wbGF0ZSE6IFRlbXBsYXRlUmVmPGFueT47XG4gIGZvb3RlclRlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55PjtcbiAgYnV0dG9uVGVtcGxhdGUhOiBUZW1wbGF0ZVJlZjxhbnk+O1xuICBjb2xvcnMgPSBDb2xvcjtcblxuXG4gIEBJbnB1dCgpIHB1YmxpYyBpdGVtczogVFtdID0gW107XG4gIEBJbnB1dCgpIHB1YmxpYyBzZWxlY3RlZEl0ZW1zOiBUW10gPSBbXTtcbiAgQFZpZXdDaGlsZCgnZGVmYXVsdEJ1dHRvblRlbXBsYXRlJykgZGVmYXVsdEJ1dHRvblRlbXBsYXRlITogVGVtcGxhdGVSZWY8YW55PjtcbiAgQElucHV0KCkgcHVibGljIGl0ZW1zVHJhY2tCeT86IFRyYWNrQnlGdW5jdGlvbjxUPjtcblxuICAvLyBpdGVtQ2hhbmdlKGl0ZW06IGFueSwgZXY6IEV2ZW50KSB7XG4gIGl0ZW1DaGFuZ2UoaXRlbTogVCwgdmFsdWU6IGJvb2xlYW4gfCBudWxsKSB7XG4gICAgLy8gY29uc3QgdmFsdWUgPSAoPGFueT5ldi50YXJnZXQpLmNoZWNrZWQ7XG4gICAgaWYgKHZhbHVlKSB7XG4gICAgICB0aGlzLnNlbGVjdGVkSXRlbXMucHVzaChpdGVtKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5zZWxlY3RlZEl0ZW1zLnNwbGljZSh0aGlzLnNlbGVjdGVkSXRlbXMuZmluZEluZGV4KChpKSA9PiBpID09PSBpdGVtKSwgMSk7XG4gICAgfVxuICB9XG4gIFxuICBkZWZhdWx0VHJhY2tCeShpbmRleDogbnVtYmVyLCBpdGVtOiBUKSB7XG4gICAgcmV0dXJuIGl0ZW07XG4gIH1cblxufVxuIiwiPGJzLWhhcy1vdmVybGF5PjwvYnMtaGFzLW92ZXJsYXk+XG48ZGl2IGJzRHJvcGRvd24gW2hhc0JhY2tkcm9wXT1cInRydWVcIiBbY2xvc2VPbkNsaWNrT3V0c2lkZV09XCJ0cnVlXCI+XG4gICAgPGJ1dHRvbiBic0Ryb3Bkb3duVG9nZ2xlIFtjb2xvcl09XCJjb2xvcnMucHJpbWFyeVwiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiYnV0dG9uVGVtcGxhdGUgPz8gZGVmYXVsdEJ1dHRvblRlbXBsYXRlOyBjb250ZXh0OiB7ICRpbXBsaWNpdDogc2VsZWN0ZWRJdGVtcy5sZW5ndGggfVwiPjwvbmctY29udGFpbmVyPlxuICAgIDwvYnV0dG9uPlxuICAgIDxkaXYgKmJzRHJvcGRvd25NZW51IGNsYXNzPVwiYmctd2hpdGUgbXctMjUwcHggcC0zIGJvcmRlciByb3VuZGVkIHNoYWRvd1wiPlxuICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwiaGVhZGVyVGVtcGxhdGVcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgPGhyIGNsYXNzPVwibXktMlwiICpuZ0lmPVwiaGVhZGVyVGVtcGxhdGVcIj5cbiAgICAgICAgPGJzLXRvZ2dsZS1idXR0b24gKm5nRm9yPVwibGV0IGl0ZW0gb2YgaXRlbXM7IHRyYWNrQnk6IGl0ZW1zVHJhY2tCeSA/PyBkZWZhdWx0VHJhY2tCeVwiIFtuZ01vZGVsXT1cInNlbGVjdGVkSXRlbXMuaW5kZXhPZihpdGVtKSA+IC0xXCIgKG5nTW9kZWxDaGFuZ2UpPVwiaXRlbUNoYW5nZShpdGVtLCAkZXZlbnQpXCIgY2xhc3M9XCJkLWJsb2NrXCI+e3sgaXRlbSB9fTwvYnMtdG9nZ2xlLWJ1dHRvbj5cbiAgICAgICAgPGhyIGNsYXNzPVwibXktMlwiICpuZ0lmPVwiZm9vdGVyVGVtcGxhdGVcIj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cImZvb3RlclRlbXBsYXRlXCI+PC9uZy1jb250YWluZXI+XG4gICAgPC9kaXY+XG48L2Rpdj5cbjxuZy10ZW1wbGF0ZSAjZGVmYXVsdEJ1dHRvblRlbXBsYXRlIGxldC1jb3VudD5cbiAgICB7eyBjb3VudCB9fSBzZWxlY3RlZFxuPC9uZy10ZW1wbGF0ZT4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsMultiselectComponent } from '../../component/multiselect.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../component/multiselect.component";
|
|
5
|
+
class BsButtonTemplateDirective {
|
|
6
|
+
constructor(template, multiselect) {
|
|
7
|
+
multiselect.buttonTemplate = template;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsButtonTemplateDirective, deps: [{ token: i0.TemplateRef }, { token: i1.BsMultiselectComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: BsButtonTemplateDirective, selector: "[bsButtonTemplate]", ngImport: i0 }); }
|
|
11
|
+
}
|
|
12
|
+
export { BsButtonTemplateDirective };
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsButtonTemplateDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: '[bsButtonTemplate]'
|
|
17
|
+
}]
|
|
18
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i1.BsMultiselectComponent }]; } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLXRlbXBsYXRlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbWludHBsYXllci1uZy1ib290c3RyYXAvbXVsdGlzZWxlY3Qvc3JjL2RpcmVjdGl2ZXMvYnV0dG9uLXRlbXBsYXRlL2J1dHRvbi10ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7OztBQUUvRSxNQUdhLHlCQUF5QjtJQUVwQyxZQUFZLFFBQTBCLEVBQUUsV0FBc0M7UUFDNUUsV0FBVyxDQUFDLGNBQWMsR0FBRyxRQUFRLENBQUM7SUFDeEMsQ0FBQzs4R0FKVSx5QkFBeUI7a0dBQXpCLHlCQUF5Qjs7U0FBekIseUJBQXlCOzJGQUF6Qix5QkFBeUI7a0JBSHJDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtpQkFDL0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCc011bHRpc2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tcG9uZW50L211bHRpc2VsZWN0LmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tic0J1dHRvblRlbXBsYXRlXSdcbn0pXG5leHBvcnQgY2xhc3MgQnNCdXR0b25UZW1wbGF0ZURpcmVjdGl2ZTxUPiB7XG5cbiAgY29uc3RydWN0b3IodGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4sIG11bHRpc2VsZWN0OiBCc011bHRpc2VsZWN0Q29tcG9uZW50PFQ+KSB7XG4gICAgbXVsdGlzZWxlY3QuYnV0dG9uVGVtcGxhdGUgPSB0ZW1wbGF0ZTtcbiAgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsMultiselectComponent } from '../../component/multiselect.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../component/multiselect.component";
|
|
5
|
+
class BsFooterTemplateDirective {
|
|
6
|
+
constructor(template, multiselect) {
|
|
7
|
+
multiselect.footerTemplate = template;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsFooterTemplateDirective, deps: [{ token: i0.TemplateRef }, { token: i1.BsMultiselectComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: BsFooterTemplateDirective, selector: "[bsFooterTemplate]", ngImport: i0 }); }
|
|
11
|
+
}
|
|
12
|
+
export { BsFooterTemplateDirective };
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsFooterTemplateDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: '[bsFooterTemplate]'
|
|
17
|
+
}]
|
|
18
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i1.BsMultiselectComponent }]; } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLXRlbXBsYXRlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbWludHBsYXllci1uZy1ib290c3RyYXAvbXVsdGlzZWxlY3Qvc3JjL2RpcmVjdGl2ZXMvZm9vdGVyLXRlbXBsYXRlL2Zvb3Rlci10ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7OztBQUUvRSxNQUdhLHlCQUF5QjtJQUVwQyxZQUFZLFFBQTBCLEVBQUUsV0FBc0M7UUFDNUUsV0FBVyxDQUFDLGNBQWMsR0FBRyxRQUFRLENBQUM7SUFDeEMsQ0FBQzs4R0FKVSx5QkFBeUI7a0dBQXpCLHlCQUF5Qjs7U0FBekIseUJBQXlCOzJGQUF6Qix5QkFBeUI7a0JBSHJDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtpQkFDL0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCc011bHRpc2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tcG9uZW50L211bHRpc2VsZWN0LmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tic0Zvb3RlclRlbXBsYXRlXSdcbn0pXG5leHBvcnQgY2xhc3MgQnNGb290ZXJUZW1wbGF0ZURpcmVjdGl2ZTxUPiB7XG5cbiAgY29uc3RydWN0b3IodGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4sIG11bHRpc2VsZWN0OiBCc011bHRpc2VsZWN0Q29tcG9uZW50PFQ+KSB7XG4gICAgbXVsdGlzZWxlY3QuZm9vdGVyVGVtcGxhdGUgPSB0ZW1wbGF0ZTtcbiAgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsMultiselectComponent } from '../../component/multiselect.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../component/multiselect.component";
|
|
5
|
+
class BsHeaderTemplateDirective {
|
|
6
|
+
constructor(template, multiselect) {
|
|
7
|
+
multiselect.headerTemplate = template;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsHeaderTemplateDirective, deps: [{ token: i0.TemplateRef }, { token: i1.BsMultiselectComponent }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: BsHeaderTemplateDirective, selector: "[bsHeaderTemplate]", ngImport: i0 }); }
|
|
11
|
+
}
|
|
12
|
+
export { BsHeaderTemplateDirective };
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsHeaderTemplateDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: '[bsHeaderTemplate]'
|
|
17
|
+
}]
|
|
18
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i1.BsMultiselectComponent }]; } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXRlbXBsYXRlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbWludHBsYXllci1uZy1ib290c3RyYXAvbXVsdGlzZWxlY3Qvc3JjL2RpcmVjdGl2ZXMvaGVhZGVyLXRlbXBsYXRlL2hlYWRlci10ZW1wbGF0ZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7OztBQUUvRSxNQUdhLHlCQUF5QjtJQUVwQyxZQUFZLFFBQTBCLEVBQUUsV0FBc0M7UUFDNUUsV0FBVyxDQUFDLGNBQWMsR0FBRyxRQUFRLENBQUM7SUFDeEMsQ0FBQzs4R0FKVSx5QkFBeUI7a0dBQXpCLHlCQUF5Qjs7U0FBekIseUJBQXlCOzJGQUF6Qix5QkFBeUI7a0JBSHJDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG9CQUFvQjtpQkFDL0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCc011bHRpc2VsZWN0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tcG9uZW50L211bHRpc2VsZWN0LmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tic0hlYWRlclRlbXBsYXRlXSdcbn0pXG5leHBvcnQgY2xhc3MgQnNIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZTxUPiB7XG5cbiAgY29uc3RydWN0b3IodGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT4sIG11bHRpc2VsZWN0OiBCc011bHRpc2VsZWN0Q29tcG9uZW50PFQ+KSB7XG4gICAgbXVsdGlzZWxlY3QuaGVhZGVyVGVtcGxhdGUgPSB0ZW1wbGF0ZTtcbiAgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { FormsModule } from '@angular/forms';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import { FocusOnLoadModule } from '@mintplayer/ng-focus-on-load';
|
|
5
|
+
import { BsDropdownModule } from '@mintplayer/ng-bootstrap/dropdown';
|
|
6
|
+
import { BsToggleButtonModule } from '@mintplayer/ng-bootstrap/toggle-button';
|
|
7
|
+
import { BsHasOverlayModule } from '@mintplayer/ng-bootstrap/has-overlay';
|
|
8
|
+
import { BsButtonTypeModule } from '@mintplayer/ng-bootstrap/button-type';
|
|
9
|
+
import { BsMultiselectComponent } from './component/multiselect.component';
|
|
10
|
+
import { BsHeaderTemplateDirective } from './directives/header-template/header-template.directive';
|
|
11
|
+
import { BsFooterTemplateDirective } from './directives/footer-template/footer-template.directive';
|
|
12
|
+
import { BsButtonTemplateDirective } from './directives/button-template/button-template.directive';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
class BsMultiselectModule {
|
|
15
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
16
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectModule, declarations: [BsMultiselectComponent,
|
|
17
|
+
BsHeaderTemplateDirective,
|
|
18
|
+
BsFooterTemplateDirective,
|
|
19
|
+
BsButtonTemplateDirective], imports: [CommonModule,
|
|
20
|
+
FormsModule,
|
|
21
|
+
BsDropdownModule,
|
|
22
|
+
BsToggleButtonModule,
|
|
23
|
+
BsButtonTypeModule,
|
|
24
|
+
BsHasOverlayModule,
|
|
25
|
+
FocusOnLoadModule], exports: [BsMultiselectComponent,
|
|
26
|
+
BsHeaderTemplateDirective,
|
|
27
|
+
BsFooterTemplateDirective,
|
|
28
|
+
BsButtonTemplateDirective] }); }
|
|
29
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectModule, imports: [CommonModule,
|
|
30
|
+
FormsModule,
|
|
31
|
+
BsDropdownModule,
|
|
32
|
+
BsToggleButtonModule,
|
|
33
|
+
BsButtonTypeModule,
|
|
34
|
+
BsHasOverlayModule,
|
|
35
|
+
FocusOnLoadModule] }); }
|
|
36
|
+
}
|
|
37
|
+
export { BsMultiselectModule };
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMultiselectModule, decorators: [{
|
|
39
|
+
type: NgModule,
|
|
40
|
+
args: [{
|
|
41
|
+
declarations: [
|
|
42
|
+
BsMultiselectComponent,
|
|
43
|
+
BsHeaderTemplateDirective,
|
|
44
|
+
BsFooterTemplateDirective,
|
|
45
|
+
BsButtonTemplateDirective
|
|
46
|
+
],
|
|
47
|
+
imports: [
|
|
48
|
+
CommonModule,
|
|
49
|
+
FormsModule,
|
|
50
|
+
BsDropdownModule,
|
|
51
|
+
BsToggleButtonModule,
|
|
52
|
+
BsButtonTypeModule,
|
|
53
|
+
BsHasOverlayModule,
|
|
54
|
+
FocusOnLoadModule,
|
|
55
|
+
],
|
|
56
|
+
exports: [
|
|
57
|
+
BsMultiselectComponent,
|
|
58
|
+
BsHeaderTemplateDirective,
|
|
59
|
+
BsFooterTemplateDirective,
|
|
60
|
+
BsButtonTemplateDirective
|
|
61
|
+
]
|
|
62
|
+
}]
|
|
63
|
+
}] });
|
|
64
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGlzZWxlY3QubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9tdWx0aXNlbGVjdC9zcmMvbXVsdGlzZWxlY3QubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQzdDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNqRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUM5RSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUMxRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUMxRSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSx3REFBd0QsQ0FBQztBQUNuRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSx3REFBd0QsQ0FBQztBQUNuRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSx3REFBd0QsQ0FBQzs7QUFFbkcsTUF1QmEsbUJBQW1COzhHQUFuQixtQkFBbUI7K0dBQW5CLG1CQUFtQixpQkFyQjVCLHNCQUFzQjtZQUN0Qix5QkFBeUI7WUFDekIseUJBQXlCO1lBQ3pCLHlCQUF5QixhQUd6QixZQUFZO1lBQ1osV0FBVztZQUNYLGdCQUFnQjtZQUNoQixvQkFBb0I7WUFDcEIsa0JBQWtCO1lBQ2xCLGtCQUFrQjtZQUNsQixpQkFBaUIsYUFHakIsc0JBQXNCO1lBQ3RCLHlCQUF5QjtZQUN6Qix5QkFBeUI7WUFDekIseUJBQXlCOytHQUdoQixtQkFBbUIsWUFmNUIsWUFBWTtZQUNaLFdBQVc7WUFDWCxnQkFBZ0I7WUFDaEIsb0JBQW9CO1lBQ3BCLGtCQUFrQjtZQUNsQixrQkFBa0I7WUFDbEIsaUJBQWlCOztTQVNSLG1CQUFtQjsyRkFBbkIsbUJBQW1CO2tCQXZCL0IsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osc0JBQXNCO3dCQUN0Qix5QkFBeUI7d0JBQ3pCLHlCQUF5Qjt3QkFDekIseUJBQXlCO3FCQUMxQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGdCQUFnQjt3QkFDaEIsb0JBQW9CO3dCQUNwQixrQkFBa0I7d0JBQ2xCLGtCQUFrQjt3QkFDbEIsaUJBQWlCO3FCQUNsQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asc0JBQXNCO3dCQUN0Qix5QkFBeUI7d0JBQ3pCLHlCQUF5Qjt3QkFDekIseUJBQXlCO3FCQUMxQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBGb2N1c09uTG9hZE1vZHVsZSB9IGZyb20gJ0BtaW50cGxheWVyL25nLWZvY3VzLW9uLWxvYWQnO1xuaW1wb3J0IHsgQnNEcm9wZG93bk1vZHVsZSB9IGZyb20gJ0BtaW50cGxheWVyL25nLWJvb3RzdHJhcC9kcm9wZG93bic7XG5pbXBvcnQgeyBCc1RvZ2dsZUJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BtaW50cGxheWVyL25nLWJvb3RzdHJhcC90b2dnbGUtYnV0dG9uJztcbmltcG9ydCB7IEJzSGFzT3ZlcmxheU1vZHVsZSB9IGZyb20gJ0BtaW50cGxheWVyL25nLWJvb3RzdHJhcC9oYXMtb3ZlcmxheSc7XG5pbXBvcnQgeyBCc0J1dHRvblR5cGVNb2R1bGUgfSBmcm9tICdAbWludHBsYXllci9uZy1ib290c3RyYXAvYnV0dG9uLXR5cGUnO1xuaW1wb3J0IHsgQnNNdWx0aXNlbGVjdENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50L211bHRpc2VsZWN0LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCc0hlYWRlclRlbXBsYXRlRGlyZWN0aXZlIH0gZnJvbSAnLi9kaXJlY3RpdmVzL2hlYWRlci10ZW1wbGF0ZS9oZWFkZXItdGVtcGxhdGUuZGlyZWN0aXZlJztcbmltcG9ydCB7IEJzRm9vdGVyVGVtcGxhdGVEaXJlY3RpdmUgfSBmcm9tICcuL2RpcmVjdGl2ZXMvZm9vdGVyLXRlbXBsYXRlL2Zvb3Rlci10ZW1wbGF0ZS5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgQnNCdXR0b25UZW1wbGF0ZURpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcy9idXR0b24tdGVtcGxhdGUvYnV0dG9uLXRlbXBsYXRlLmRpcmVjdGl2ZSc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEJzTXVsdGlzZWxlY3RDb21wb25lbnQsXG4gICAgQnNIZWFkZXJUZW1wbGF0ZURpcmVjdGl2ZSxcbiAgICBCc0Zvb3RlclRlbXBsYXRlRGlyZWN0aXZlLFxuICAgIEJzQnV0dG9uVGVtcGxhdGVEaXJlY3RpdmVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBGb3Jtc01vZHVsZSxcbiAgICBCc0Ryb3Bkb3duTW9kdWxlLFxuICAgIEJzVG9nZ2xlQnV0dG9uTW9kdWxlLFxuICAgIEJzQnV0dG9uVHlwZU1vZHVsZSxcbiAgICBCc0hhc092ZXJsYXlNb2R1bGUsXG4gICAgRm9jdXNPbkxvYWRNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBCc011bHRpc2VsZWN0Q29tcG9uZW50LFxuICAgIEJzSGVhZGVyVGVtcGxhdGVEaXJlY3RpdmUsXG4gICAgQnNGb290ZXJUZW1wbGF0ZURpcmVjdGl2ZSxcbiAgICBCc0J1dHRvblRlbXBsYXRlRGlyZWN0aXZlXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQnNNdWx0aXNlbGVjdE1vZHVsZSB7IH1cbiJdfQ==
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ContentChildren, Directive, ElementRef, forwardRef, Inject, Optional } from '@angular/core';
|
|
2
|
+
import { BsNavbarItemComponent } from '../navbar-item/navbar-item.component';
|
|
3
|
+
import { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../navbar-item/navbar-item.component";
|
|
6
|
+
import * as i2 from "../navbar-dropdown/navbar-dropdown.component";
|
|
7
|
+
class DropdownToggleDirective {
|
|
8
|
+
constructor(elementRef, bsNavbarItem, parentDropdown) {
|
|
9
|
+
this.elementRef = elementRef;
|
|
10
|
+
this.bsNavbarItem = bsNavbarItem;
|
|
11
|
+
}
|
|
12
|
+
ngAfterContentInit() {
|
|
13
|
+
if (this.bsNavbarItem.dropdowns.length > 0) {
|
|
14
|
+
this.bsNavbarItem.hasDropdown = true;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: DropdownToggleDirective, deps: [{ token: i0.ElementRef }, { token: forwardRef(() => BsNavbarItemComponent) }, { token: forwardRef(() => BsNavbarDropdownComponent), optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
18
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: DropdownToggleDirective, selector: "bs-navbar-item", queries: [{ propertyName: "childDropdowns", predicate: BsNavbarDropdownComponent }], ngImport: i0 }); }
|
|
19
|
+
}
|
|
20
|
+
export { DropdownToggleDirective };
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: DropdownToggleDirective, decorators: [{
|
|
22
|
+
type: Directive,
|
|
23
|
+
args: [{
|
|
24
|
+
// selector: 'bs-navbar-item > a[routerLink]',
|
|
25
|
+
selector: 'bs-navbar-item',
|
|
26
|
+
queries: {
|
|
27
|
+
childDropdowns: new ContentChildren(BsNavbarDropdownComponent)
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.BsNavbarItemComponent, decorators: [{
|
|
31
|
+
type: Inject,
|
|
32
|
+
args: [forwardRef(() => BsNavbarItemComponent)]
|
|
33
|
+
}] }, { type: i2.BsNavbarDropdownComponent, decorators: [{
|
|
34
|
+
type: Optional
|
|
35
|
+
}, {
|
|
36
|
+
type: Inject,
|
|
37
|
+
args: [forwardRef(() => BsNavbarDropdownComponent)]
|
|
38
|
+
}] }]; } });
|
|
39
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJvcGRvd24tdG9nZ2xlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbWludHBsYXllci1uZy1ib290c3RyYXAvbmF2YmFyL3NyYy9kcm9wZG93bi10b2dnbGUvZHJvcGRvd24tdG9nZ2xlLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQStCLGVBQWUsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsUUFBUSxFQUFhLE1BQU0sZUFBZSxDQUFDO0FBQzdJLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQzdFLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDhDQUE4QyxDQUFDOzs7O0FBRXpGLE1BT2EsdUJBQXVCO0lBRWxDLFlBQ1UsVUFBeUMsRUFDUSxZQUFtQyxFQUMzQixjQUF5QztRQUZsRyxlQUFVLEdBQVYsVUFBVSxDQUErQjtRQUNRLGlCQUFZLEdBQVosWUFBWSxDQUF1QjtJQUc5RixDQUFDO0lBSUQsa0JBQWtCO1FBQ2hCLElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsTUFBTSxHQUFHLENBQUMsRUFBRTtZQUMxQyxJQUFJLENBQUMsWUFBWSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUM7U0FDdEM7SUFDSCxDQUFDOzhHQWZVLHVCQUF1Qiw0Q0FJeEIsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLHFCQUFxQixDQUFDLGFBQzNCLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztrR0FMdEQsdUJBQXVCLHFGQUhJLHlCQUF5Qjs7U0FHcEQsdUJBQXVCOzJGQUF2Qix1QkFBdUI7a0JBUG5DLFNBQVM7bUJBQUM7b0JBQ1QsOENBQThDO29CQUM5QyxRQUFRLEVBQUUsZ0JBQWdCO29CQUMxQixPQUFPLEVBQUU7d0JBQ1AsY0FBYyxFQUFFLElBQUksZUFBZSxDQUFDLHlCQUF5QixDQUFDO3FCQUMvRDtpQkFDRjs7MEJBS0ksTUFBTTsyQkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMscUJBQXFCLENBQUM7OzBCQUM5QyxRQUFROzswQkFBSSxNQUFNOzJCQUFDLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyQ29udGVudEluaXQsIENvbXBvbmVudCwgQ29udGVudENoaWxkcmVuLCBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIGZvcndhcmRSZWYsIEluamVjdCwgT3B0aW9uYWwsIFF1ZXJ5TGlzdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnNOYXZiYXJJdGVtQ29tcG9uZW50IH0gZnJvbSAnLi4vbmF2YmFyLWl0ZW0vbmF2YmFyLWl0ZW0uY29tcG9uZW50JztcbmltcG9ydCB7IEJzTmF2YmFyRHJvcGRvd25Db21wb25lbnQgfSBmcm9tICcuLi9uYXZiYXItZHJvcGRvd24vbmF2YmFyLWRyb3Bkb3duLmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICAvLyBzZWxlY3RvcjogJ2JzLW5hdmJhci1pdGVtID4gYVtyb3V0ZXJMaW5rXScsXG4gIHNlbGVjdG9yOiAnYnMtbmF2YmFyLWl0ZW0nLFxuICBxdWVyaWVzOiB7XG4gICAgY2hpbGREcm9wZG93bnM6IG5ldyBDb250ZW50Q2hpbGRyZW4oQnNOYXZiYXJEcm9wZG93bkNvbXBvbmVudClcbiAgfVxufSlcbmV4cG9ydCBjbGFzcyBEcm9wZG93blRvZ2dsZURpcmVjdGl2ZSBpbXBsZW1lbnRzIEFmdGVyQ29udGVudEluaXQge1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgZWxlbWVudFJlZjogRWxlbWVudFJlZjxIVE1MQW5jaG9yRWxlbWVudD4sXG4gICAgQEluamVjdChmb3J3YXJkUmVmKCgpID0+IEJzTmF2YmFySXRlbUNvbXBvbmVudCkpIHByaXZhdGUgYnNOYXZiYXJJdGVtOiBCc05hdmJhckl0ZW1Db21wb25lbnQsXG4gICAgQE9wdGlvbmFsKCkgQEluamVjdChmb3J3YXJkUmVmKCgpID0+IEJzTmF2YmFyRHJvcGRvd25Db21wb25lbnQpKSBwYXJlbnREcm9wZG93bjogQnNOYXZiYXJEcm9wZG93bkNvbXBvbmVudFxuICApIHtcbiAgfVxuXG4gIGNoaWxkRHJvcGRvd25zITogUXVlcnlMaXN0PEJzTmF2YmFyRHJvcGRvd25Db21wb25lbnQ+O1xuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpIHtcbiAgICBpZiAodGhpcy5ic05hdmJhckl0ZW0uZHJvcGRvd25zLmxlbmd0aCA+IDApIHtcbiAgICAgIHRoaXMuYnNOYXZiYXJJdGVtLmhhc0Ryb3Bkb3duID0gdHJ1ZTtcbiAgICB9XG4gIH1cbn0iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
2
|
+
import { BsNavbarComponent } from '../navbar/navbar.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../navbar/navbar.component";
|
|
5
|
+
class BsExpandButtonDirective {
|
|
6
|
+
constructor(navbar, templateRef) {
|
|
7
|
+
navbar.expandButtonTemplate = templateRef;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsExpandButtonDirective, deps: [{ token: i1.BsNavbarComponent }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
10
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: BsExpandButtonDirective, selector: "[bsExpandButton]", ngImport: i0 }); }
|
|
11
|
+
}
|
|
12
|
+
export { BsExpandButtonDirective };
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsExpandButtonDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: '[bsExpandButton]'
|
|
17
|
+
}]
|
|
18
|
+
}], ctorParameters: function () { return [{ type: i1.BsNavbarComponent }, { type: i0.TemplateRef }]; } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhwYW5kLWJ1dHRvbi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL21pbnRwbGF5ZXItbmctYm9vdHN0cmFwL25hdmJhci9zcmMvZXhwYW5kLWJ1dHRvbi9leHBhbmQtYnV0dG9uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQzs7O0FBRS9ELE1BR2EsdUJBQXVCO0lBRWxDLFlBQVksTUFBeUIsRUFBRSxXQUE2QjtRQUNsRSxNQUFNLENBQUMsb0JBQW9CLEdBQUcsV0FBVyxDQUFDO0lBQzVDLENBQUM7OEdBSlUsdUJBQXVCO2tHQUF2Qix1QkFBdUI7O1NBQXZCLHVCQUF1QjsyRkFBdkIsdUJBQXVCO2tCQUhuQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxrQkFBa0I7aUJBQzdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBUZW1wbGF0ZVJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnNOYXZiYXJDb21wb25lbnQgfSBmcm9tICcuLi9uYXZiYXIvbmF2YmFyLmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tic0V4cGFuZEJ1dHRvbl0nXG59KVxuZXhwb3J0IGNsYXNzIEJzRXhwYW5kQnV0dG9uRGlyZWN0aXZlIHtcblxuICBjb25zdHJ1Y3RvcihuYXZiYXI6IEJzTmF2YmFyQ29tcG9uZW50LCB0ZW1wbGF0ZVJlZjogVGVtcGxhdGVSZWY8YW55Pikge1xuICAgIG5hdmJhci5leHBhbmRCdXR0b25UZW1wbGF0ZSA9IHRlbXBsYXRlUmVmO1xuICB9XG5cbn1cbiJdfQ==
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Directive, ElementRef, forwardRef, HostBinding, Inject, Optional } from '@angular/core';
|
|
2
|
+
import { BsNavbarDropdownComponent } from '../navbar-dropdown/navbar-dropdown.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../navbar-dropdown/navbar-dropdown.component";
|
|
5
|
+
class NavLinkDirective {
|
|
6
|
+
constructor(elementRef, parentDropdown) {
|
|
7
|
+
this.elementRef = elementRef;
|
|
8
|
+
this.cursorPointer = true;
|
|
9
|
+
if (parentDropdown == null) {
|
|
10
|
+
this.elementRef.nativeElement.classList.add('nav-link');
|
|
11
|
+
}
|
|
12
|
+
else {
|
|
13
|
+
this.elementRef.nativeElement.classList.add('dropdown-item');
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NavLinkDirective, deps: [{ token: i0.ElementRef }, { token: forwardRef(() => BsNavbarDropdownComponent), optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
17
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0", type: NavLinkDirective, selector: "bs-navbar-item:first-child > a", host: { properties: { "class.cursor-pointer": "this.cursorPointer" } }, ngImport: i0 }); }
|
|
18
|
+
}
|
|
19
|
+
export { NavLinkDirective };
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: NavLinkDirective, decorators: [{
|
|
21
|
+
type: Directive,
|
|
22
|
+
args: [{
|
|
23
|
+
// selector: 'bs-navbar-item > a[routerLink]'
|
|
24
|
+
selector: 'bs-navbar-item:first-child > a'
|
|
25
|
+
}]
|
|
26
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.BsNavbarDropdownComponent, decorators: [{
|
|
27
|
+
type: Optional
|
|
28
|
+
}, {
|
|
29
|
+
type: Inject,
|
|
30
|
+
args: [forwardRef(() => BsNavbarDropdownComponent)]
|
|
31
|
+
}] }]; }, propDecorators: { cursorPointer: [{
|
|
32
|
+
type: HostBinding,
|
|
33
|
+
args: ['class.cursor-pointer']
|
|
34
|
+
}] } });
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2LWxpbmsuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9taW50cGxheWVyLW5nLWJvb3RzdHJhcC9uYXZiYXIvc3JjL25hdi1saW5rL25hdi1saW5rLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxVQUFVLEVBQUUsV0FBVyxFQUFFLE1BQU0sRUFBRSxRQUFRLEVBQWUsTUFBTSxlQUFlLENBQUM7QUFDOUcsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOENBQThDLENBQUM7OztBQUV6RixNQUlhLGdCQUFnQjtJQUUzQixZQUNVLFVBQXlDLEVBQ2dCLGNBQXlDO1FBRGxHLGVBQVUsR0FBVixVQUFVLENBQStCO1FBVWQsa0JBQWEsR0FBRyxJQUFJLENBQUM7UUFQeEQsSUFBSSxjQUFjLElBQUksSUFBSSxFQUFFO1lBQzFCLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLENBQUM7U0FDekQ7YUFBTTtZQUNMLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLFNBQVMsQ0FBQyxHQUFHLENBQUMsZUFBZSxDQUFDLENBQUM7U0FDOUQ7SUFDSCxDQUFDOzhHQVhVLGdCQUFnQiw0Q0FJTCxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMseUJBQXlCLENBQUM7a0dBSnRELGdCQUFnQjs7U0FBaEIsZ0JBQWdCOzJGQUFoQixnQkFBZ0I7a0JBSjVCLFNBQVM7bUJBQUM7b0JBQ1QsNkNBQTZDO29CQUM3QyxRQUFRLEVBQUUsZ0NBQWdDO2lCQUMzQzs7MEJBS0ksUUFBUTs7MEJBQUksTUFBTTsyQkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMseUJBQXlCLENBQUM7NENBUzVCLGFBQWE7c0JBQWpELFdBQVc7dUJBQUMsc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBmb3J3YXJkUmVmLCBIb3N0QmluZGluZywgSW5qZWN0LCBPcHRpb25hbCwgUExBVEZPUk1fSUQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEJzTmF2YmFyRHJvcGRvd25Db21wb25lbnQgfSBmcm9tICcuLi9uYXZiYXItZHJvcGRvd24vbmF2YmFyLWRyb3Bkb3duLmNvbXBvbmVudCc7XG5cbkBEaXJlY3RpdmUoe1xuICAvLyBzZWxlY3RvcjogJ2JzLW5hdmJhci1pdGVtID4gYVtyb3V0ZXJMaW5rXSdcbiAgc2VsZWN0b3I6ICdicy1uYXZiYXItaXRlbTpmaXJzdC1jaGlsZCA+IGEnXG59KVxuZXhwb3J0IGNsYXNzIE5hdkxpbmtEaXJlY3RpdmUge1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgZWxlbWVudFJlZjogRWxlbWVudFJlZjxIVE1MQW5jaG9yRWxlbWVudD4sXG4gICAgQE9wdGlvbmFsKCkgQEluamVjdChmb3J3YXJkUmVmKCgpID0+IEJzTmF2YmFyRHJvcGRvd25Db21wb25lbnQpKSBwYXJlbnREcm9wZG93bjogQnNOYXZiYXJEcm9wZG93bkNvbXBvbmVudFxuICApIHtcbiAgICBpZiAocGFyZW50RHJvcGRvd24gPT0gbnVsbCkge1xuICAgICAgdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuY2xhc3NMaXN0LmFkZCgnbmF2LWxpbmsnKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuY2xhc3NMaXN0LmFkZCgnZHJvcGRvd24taXRlbScpO1xuICAgIH1cbiAgfVxuXG4gIEBIb3N0QmluZGluZygnY2xhc3MuY3Vyc29yLXBvaW50ZXInKSBjdXJzb3JQb2ludGVyID0gdHJ1ZTtcblxufSJdfQ==
|