@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
|
@@ -1,590 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, ViewChild, Input, ContentChildren, ViewChildren, HostBinding, Injectable, HostListener, NgModule } from '@angular/core';
|
|
3
|
-
import * as i2 from '@angular/common';
|
|
4
|
-
import { CommonModule } from '@angular/common';
|
|
5
|
-
import * as i3 from '@angular/cdk/portal';
|
|
6
|
-
import { DomPortal, PortalModule } from '@angular/cdk/portal';
|
|
7
|
-
import { BsCardModule } from '@mintplayer/ng-bootstrap/card';
|
|
8
|
-
import * as i5 from '@mintplayer/ng-bootstrap/splitter';
|
|
9
|
-
import { BsSplitterModule } from '@mintplayer/ng-bootstrap/splitter';
|
|
10
|
-
import * as i7 from '@mintplayer/ng-bootstrap/resizable';
|
|
11
|
-
import { BsResizableModule } from '@mintplayer/ng-bootstrap/resizable';
|
|
12
|
-
import * as i6 from '@mintplayer/ng-bootstrap/tab-control';
|
|
13
|
-
import { BsTabControlModule } from '@mintplayer/ng-bootstrap/tab-control';
|
|
14
|
-
import * as i4 from '@mintplayer/ng-bootstrap/instance-of';
|
|
15
|
-
import { BsInstanceOfModule } from '@mintplayer/ng-bootstrap/instance-of';
|
|
16
|
-
import { BehaviorSubject, Subject, takeUntil, map, take } from 'rxjs';
|
|
17
|
-
import { deepClone } from '@mintplayer/parentify';
|
|
18
|
-
import * as i1 from '@angular/cdk/overlay';
|
|
19
|
-
|
|
20
|
-
class BsDockPanelComponent {
|
|
21
|
-
constructor() {
|
|
22
|
-
this.panelId = '';
|
|
23
|
-
}
|
|
24
|
-
ngAfterViewInit() {
|
|
25
|
-
this.headerPortal = new DomPortal(this.headerElement.nativeElement);
|
|
26
|
-
this.contentPortal = new DomPortal(this.contentElement.nativeElement);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
BsDockPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
30
|
-
BsDockPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsDockPanelComponent, selector: "bs-dock-panel", inputs: { panelId: "panelId" }, viewQueries: [{ propertyName: "headerElement", first: true, predicate: ["headerElement"], descendants: true }, { propertyName: "contentElement", first: true, predicate: ["contentElement"], descendants: true }], ngImport: i0, template: "<!-- <bs-split-panel> -->\n<div #headerElement class=\"dock-header\">\n <ng-content select=\"bs-dock-panel-header\"></ng-content>\n</div>\n<div #contentElement>\n <ng-content></ng-content>\n</div>\n<!-- </bs-split-panel> -->", styles: [".dock-header{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);margin:calc(-1 * var(--bs-nav-link-padding-y)) calc(-1 * var(--bs-nav-link-padding-x))}\n"] });
|
|
31
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPanelComponent, decorators: [{
|
|
32
|
-
type: Component,
|
|
33
|
-
args: [{ selector: 'bs-dock-panel', template: "<!-- <bs-split-panel> -->\n<div #headerElement class=\"dock-header\">\n <ng-content select=\"bs-dock-panel-header\"></ng-content>\n</div>\n<div #contentElement>\n <ng-content></ng-content>\n</div>\n<!-- </bs-split-panel> -->", styles: [".dock-header{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);margin:calc(-1 * var(--bs-nav-link-padding-y)) calc(-1 * var(--bs-nav-link-padding-x))}\n"] }]
|
|
34
|
-
}], propDecorators: { headerElement: [{
|
|
35
|
-
type: ViewChild,
|
|
36
|
-
args: ['headerElement']
|
|
37
|
-
}], contentElement: [{
|
|
38
|
-
type: ViewChild,
|
|
39
|
-
args: ['contentElement']
|
|
40
|
-
}], panelId: [{
|
|
41
|
-
type: Input
|
|
42
|
-
}] } });
|
|
43
|
-
|
|
44
|
-
class BsDockPane {
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
class BsTabGroupPane extends BsDockPane {
|
|
48
|
-
constructor(data) {
|
|
49
|
-
super();
|
|
50
|
-
this.panes = [];
|
|
51
|
-
Object.assign(this, data);
|
|
52
|
-
}
|
|
53
|
-
get isEmpty() {
|
|
54
|
-
return this.panes.length === 0;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
class BsDocumentHost extends BsDockPane {
|
|
59
|
-
constructor(data) {
|
|
60
|
-
super();
|
|
61
|
-
Object.assign(this, data);
|
|
62
|
-
}
|
|
63
|
-
get isEmpty() {
|
|
64
|
-
return this.rootPane?.isEmpty ?? true;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
class BsContentPane extends BsDockPane {
|
|
69
|
-
constructor(data) {
|
|
70
|
-
super();
|
|
71
|
-
Object.assign(this, data);
|
|
72
|
-
}
|
|
73
|
-
get isEmpty() {
|
|
74
|
-
return false;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
class BsFloatingPane extends BsDockPane {
|
|
79
|
-
constructor(data) {
|
|
80
|
-
super();
|
|
81
|
-
Object.assign(this, data);
|
|
82
|
-
}
|
|
83
|
-
get isEmpty() {
|
|
84
|
-
return this.pane?.isEmpty ?? true;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
class BsSplitPane extends BsDockPane {
|
|
89
|
-
constructor(data) {
|
|
90
|
-
super();
|
|
91
|
-
this.orientation = 'horizontal';
|
|
92
|
-
this.panes = [];
|
|
93
|
-
Object.assign(this, data);
|
|
94
|
-
}
|
|
95
|
-
get isEmpty() {
|
|
96
|
-
return this.panes.length === 0;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
var EPaneType;
|
|
101
|
-
(function (EPaneType) {
|
|
102
|
-
EPaneType[EPaneType["documentHost"] = 1] = "documentHost";
|
|
103
|
-
EPaneType[EPaneType["splitPane"] = 2] = "splitPane";
|
|
104
|
-
EPaneType[EPaneType["contentPane"] = 3] = "contentPane";
|
|
105
|
-
EPaneType[EPaneType["tabGroupPane"] = 4] = "tabGroupPane";
|
|
106
|
-
})(EPaneType || (EPaneType = {}));
|
|
107
|
-
|
|
108
|
-
class BsDockPaneRendererComponent {
|
|
109
|
-
constructor(overlay, element) {
|
|
110
|
-
this.overlay = overlay;
|
|
111
|
-
this.paneTypes = EPaneType;
|
|
112
|
-
this.BsDocumentHostType = BsDocumentHost;
|
|
113
|
-
this.BsTabGroupType = BsTabGroupPane;
|
|
114
|
-
this.BsSplitterType = BsSplitPane;
|
|
115
|
-
this.BsContentPaneType = BsContentPane;
|
|
116
|
-
this.BsFloatingPaneType = BsFloatingPane;
|
|
117
|
-
//#region Layout
|
|
118
|
-
this.layout$ = new BehaviorSubject(null);
|
|
119
|
-
this.portal = new DomPortal(element);
|
|
120
|
-
}
|
|
121
|
-
get layout() {
|
|
122
|
-
return this.layout$.value;
|
|
123
|
-
}
|
|
124
|
-
set layout(value) {
|
|
125
|
-
this.layout$.next(value);
|
|
126
|
-
}
|
|
127
|
-
moveToOverlay() {
|
|
128
|
-
if (!this.overlayRef && !this.portal.isAttached) {
|
|
129
|
-
this.overlayRef = this.overlay.create({});
|
|
130
|
-
this.portal.attach(this.overlayRef);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
disposeOverlay() {
|
|
134
|
-
if (this.overlayRef) {
|
|
135
|
-
this.portal.detach();
|
|
136
|
-
this.overlayRef.dispose();
|
|
137
|
-
this.overlayRef = undefined;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
BsDockPaneRendererComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPaneRendererComponent, deps: [{ token: i1.Overlay }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
142
|
-
BsDockPaneRendererComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsDockPaneRendererComponent, selector: "bs-dock-pane-renderer", inputs: { layout: "layout" }, ngImport: i0, template: "<!-- <ng-content></ng-content> -->\n<ng-container [bsInstanceof]=\"layout$ | async\">\n <div *bsInstanceofCase=\"BsDocumentHostType; let documentHost\" data-hello>\n <bs-dock-pane-renderer [layout]=\"documentHost\"></bs-dock-pane-renderer>\n </div>\n <bs-tab-control *bsInstanceofCase=\"BsTabGroupType; let tabGroup\" [allowDragDrop]=\"false\" class=\"d-flex flex-column h-100 dock-tabs\">\n <bs-tab-page *ngFor=\"let tab of tabGroup.panes\">\n <ng-container *bsTabPageHeader>\n <ng-template [cdkPortalOutlet]=\"tab.dockPanel.headerPortal\"></ng-template>\n </ng-container>\n <bs-dock-pane-renderer [layout]=\"tab\"></bs-dock-pane-renderer>\n </bs-tab-page>\n </bs-tab-control>\n <bs-splitter *bsInstanceofCase=\"BsSplitterType; let splitter\" [orientation]=\"splitter.orientation\">\n <bs-split-panel *ngFor=\"let panel of splitter.panes\">\n <bs-dock-pane-renderer [layout]=\"panel\"></bs-dock-pane-renderer>\n </bs-split-panel>\n </bs-splitter>\n <ng-container *bsInstanceofCase=\"BsContentPaneType; let content\">\n <ng-template [cdkPortalOutlet]=\"content.dockPanel.contentPortal\"></ng-template>\n </ng-container>\n <ng-container *bsInstanceofCase=\"BsFloatingPaneType; let floating\">\n <bs-resizable *ngIf=\"floating.pane\" [positioning]=\"'absolute'\" [presetPosition]=\"{ left: floating.location?.x ?? 0, top: floating.location?.y ?? 0, width: floating.size?.width ?? 200, height: floating.size?.height ?? 100 }\">\n <bs-dock-pane-renderer [layout]=\"floating.pane\"></bs-dock-pane-renderer>\n </bs-resizable>\n </ng-container>\n <div *bsInstanceofDefault>\n No match\n </div>\n</ng-container>", styles: [".dock-tabs{background:#F3F3F3}:host ::ng-deep .tab-page-content{background:#FFF;min-height:100%}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "directive", type: i4.BsInstanceOfDirective, selector: "[bsInstanceof]", inputs: ["bsInstanceof"] }, { kind: "directive", type: i4.BsInstanceofCaseDirective, selector: "[bsInstanceofCase]", inputs: ["bsInstanceofCase"] }, { kind: "directive", type: i4.BsInstanceOfDefaultDirective, selector: "[bsInstanceofDefault]" }, { kind: "component", type: i5.BsSplitterComponent, selector: "bs-splitter", inputs: ["orientation"] }, { kind: "component", type: i5.BsSplitPanelComponent, selector: "bs-split-panel" }, { kind: "component", type: i6.BsTabControlComponent, selector: "bs-tab-control", inputs: ["border", "restrictDragging", "selectFirstTab", "tabsPosition", "allowDragDrop"] }, { kind: "component", type: i6.BsTabPageComponent, selector: "bs-tab-page", inputs: ["disabled"] }, { kind: "directive", type: i6.BsTabPageHeaderDirective, selector: "[bsTabPageHeader]" }, { kind: "component", type: i7.BsResizableComponent, selector: "bs-resizable", inputs: ["positioning", "presetPosition"] }, { kind: "component", type: BsDockPaneRendererComponent, selector: "bs-dock-pane-renderer", inputs: ["layout"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] });
|
|
143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPaneRendererComponent, decorators: [{
|
|
144
|
-
type: Component,
|
|
145
|
-
args: [{ selector: 'bs-dock-pane-renderer', template: "<!-- <ng-content></ng-content> -->\n<ng-container [bsInstanceof]=\"layout$ | async\">\n <div *bsInstanceofCase=\"BsDocumentHostType; let documentHost\" data-hello>\n <bs-dock-pane-renderer [layout]=\"documentHost\"></bs-dock-pane-renderer>\n </div>\n <bs-tab-control *bsInstanceofCase=\"BsTabGroupType; let tabGroup\" [allowDragDrop]=\"false\" class=\"d-flex flex-column h-100 dock-tabs\">\n <bs-tab-page *ngFor=\"let tab of tabGroup.panes\">\n <ng-container *bsTabPageHeader>\n <ng-template [cdkPortalOutlet]=\"tab.dockPanel.headerPortal\"></ng-template>\n </ng-container>\n <bs-dock-pane-renderer [layout]=\"tab\"></bs-dock-pane-renderer>\n </bs-tab-page>\n </bs-tab-control>\n <bs-splitter *bsInstanceofCase=\"BsSplitterType; let splitter\" [orientation]=\"splitter.orientation\">\n <bs-split-panel *ngFor=\"let panel of splitter.panes\">\n <bs-dock-pane-renderer [layout]=\"panel\"></bs-dock-pane-renderer>\n </bs-split-panel>\n </bs-splitter>\n <ng-container *bsInstanceofCase=\"BsContentPaneType; let content\">\n <ng-template [cdkPortalOutlet]=\"content.dockPanel.contentPortal\"></ng-template>\n </ng-container>\n <ng-container *bsInstanceofCase=\"BsFloatingPaneType; let floating\">\n <bs-resizable *ngIf=\"floating.pane\" [positioning]=\"'absolute'\" [presetPosition]=\"{ left: floating.location?.x ?? 0, top: floating.location?.y ?? 0, width: floating.size?.width ?? 200, height: floating.size?.height ?? 100 }\">\n <bs-dock-pane-renderer [layout]=\"floating.pane\"></bs-dock-pane-renderer>\n </bs-resizable>\n </ng-container>\n <div *bsInstanceofDefault>\n No match\n </div>\n</ng-container>", styles: [".dock-tabs{background:#F3F3F3}:host ::ng-deep .tab-page-content{background:#FFF;min-height:100%}\n"] }]
|
|
146
|
-
}], ctorParameters: function () { return [{ type: i1.Overlay }, { type: i0.ElementRef }]; }, propDecorators: { layout: [{
|
|
147
|
-
type: Input
|
|
148
|
-
}] } });
|
|
149
|
-
|
|
150
|
-
class BsDockComponent {
|
|
151
|
-
constructor() {
|
|
152
|
-
//#region Panels
|
|
153
|
-
this.panels$ = new BehaviorSubject([]);
|
|
154
|
-
//#endregion
|
|
155
|
-
this.floating$ = new BehaviorSubject([]);
|
|
156
|
-
this.positionAbsolute = true;
|
|
157
|
-
this.positionPx = 0;
|
|
158
|
-
this.destroyed$ = new Subject();
|
|
159
|
-
const tabs = new BsTabGroupPane();
|
|
160
|
-
const docHost = new BsDocumentHost();
|
|
161
|
-
docHost.rootPane = tabs;
|
|
162
|
-
this.layout$ = new BehaviorSubject({
|
|
163
|
-
rootPane: docHost,
|
|
164
|
-
floatingPanes: []
|
|
165
|
-
});
|
|
166
|
-
// combineLatest([this.layout$, this.panels$])
|
|
167
|
-
// .pipe(takeUntil(this.destroyed$))
|
|
168
|
-
// .subscribe(([layout, panels]) => {
|
|
169
|
-
// })
|
|
170
|
-
this.floating$.pipe(takeUntil(this.destroyed$))
|
|
171
|
-
.subscribe((floating) => {
|
|
172
|
-
floating.forEach((panel) => panel.moveToOverlay());
|
|
173
|
-
});
|
|
174
|
-
this.parentifiedLayout$ = this.layout$.pipe(map(layout => {
|
|
175
|
-
const clone = deepClone(layout, true,
|
|
176
|
-
// []
|
|
177
|
-
[BsContentPane, BsDocumentHost, BsFloatingPane, BsSplitPane, BsTabGroupPane], true, this.paneCache);
|
|
178
|
-
this.paneCache = clone.cache;
|
|
179
|
-
return clone.result;
|
|
180
|
-
}));
|
|
181
|
-
this.parentifiedLayout$.pipe(takeUntil(this.destroyed$)).subscribe(console.log);
|
|
182
|
-
}
|
|
183
|
-
set panels(value) {
|
|
184
|
-
this.panels$.next(value.toArray());
|
|
185
|
-
}
|
|
186
|
-
get layout() {
|
|
187
|
-
return this.layout$.value;
|
|
188
|
-
}
|
|
189
|
-
set layout(value) {
|
|
190
|
-
this.layout$.next(value);
|
|
191
|
-
}
|
|
192
|
-
set floatingPanes(value) {
|
|
193
|
-
this.floating$.next(value.toArray());
|
|
194
|
-
}
|
|
195
|
-
ngOnDestroy() {
|
|
196
|
-
this.destroyed$.next(true);
|
|
197
|
-
this.floating$.value.forEach(panel => panel.disposeOverlay());
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
BsDockComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
201
|
-
BsDockComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsDockComponent, selector: "bs-dock", inputs: { layout: "layout" }, host: { properties: { "class.position-absolute": "this.positionAbsolute", "style.top": "this.positionPx", "style.left": "this.positionPx", "style.bottom": "this.positionPx", "style.right": "this.positionPx" } }, queries: [{ propertyName: "panels", predicate: BsDockPanelComponent }], viewQueries: [{ propertyName: "floatingPanes", predicate: ["floating"], descendants: true }], ngImport: i0, template: "<ng-content></ng-content>\n<ng-container *ngIf=\"(layout$ | async) as layout\">\n <bs-dock-pane-renderer [layout]=\"layout.rootPane\"></bs-dock-pane-renderer>\n\n <ng-container *ngFor=\"let pane of layout.floatingPanes\">\n <bs-dock-pane-renderer #floating *ngIf=\"pane.pane\" [layout]=\"pane\"></bs-dock-pane-renderer>\n </ng-container>\n</ng-container>\n<!-- <bs-splitter>\n <ng-content></ng-content>\n <ng-container *ngFor=\"let panel of (panels$ | async)\">\n <bs-split-panel>\n <ng-template [cdkPortalOutlet]=\"panel.portal\"></ng-template>\n </bs-split-panel>\n </ng-container>\n</bs-splitter> -->\n", styles: [":host ::ng-deep .tab-content{max-height:calc(100% - 41px);overflow:auto}:host ::ng-deep bs-dock-pane-renderer{min-width:100%;min-height:100%}:host ::ng-deep>bs-dock-panel>*{display:none}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: BsDockPaneRendererComponent, selector: "bs-dock-pane-renderer", inputs: ["layout"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }] });
|
|
202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockComponent, decorators: [{
|
|
203
|
-
type: Component,
|
|
204
|
-
args: [{ selector: 'bs-dock', template: "<ng-content></ng-content>\n<ng-container *ngIf=\"(layout$ | async) as layout\">\n <bs-dock-pane-renderer [layout]=\"layout.rootPane\"></bs-dock-pane-renderer>\n\n <ng-container *ngFor=\"let pane of layout.floatingPanes\">\n <bs-dock-pane-renderer #floating *ngIf=\"pane.pane\" [layout]=\"pane\"></bs-dock-pane-renderer>\n </ng-container>\n</ng-container>\n<!-- <bs-splitter>\n <ng-content></ng-content>\n <ng-container *ngFor=\"let panel of (panels$ | async)\">\n <bs-split-panel>\n <ng-template [cdkPortalOutlet]=\"panel.portal\"></ng-template>\n </bs-split-panel>\n </ng-container>\n</bs-splitter> -->\n", styles: [":host ::ng-deep .tab-content{max-height:calc(100% - 41px);overflow:auto}:host ::ng-deep bs-dock-pane-renderer{min-width:100%;min-height:100%}:host ::ng-deep>bs-dock-panel>*{display:none}\n"] }]
|
|
205
|
-
}], ctorParameters: function () { return []; }, propDecorators: { panels: [{
|
|
206
|
-
type: ContentChildren,
|
|
207
|
-
args: [BsDockPanelComponent]
|
|
208
|
-
}], layout: [{
|
|
209
|
-
type: Input
|
|
210
|
-
}], floatingPanes: [{
|
|
211
|
-
type: ViewChildren,
|
|
212
|
-
args: ['floating']
|
|
213
|
-
}], positionAbsolute: [{
|
|
214
|
-
type: HostBinding,
|
|
215
|
-
args: ['class.position-absolute']
|
|
216
|
-
}], positionPx: [{
|
|
217
|
-
type: HostBinding,
|
|
218
|
-
args: ['style.top']
|
|
219
|
-
}, {
|
|
220
|
-
type: HostBinding,
|
|
221
|
-
args: ['style.left']
|
|
222
|
-
}, {
|
|
223
|
-
type: HostBinding,
|
|
224
|
-
args: ['style.bottom']
|
|
225
|
-
}, {
|
|
226
|
-
type: HostBinding,
|
|
227
|
-
args: ['style.right']
|
|
228
|
-
}] } });
|
|
229
|
-
|
|
230
|
-
class BsDockService {
|
|
231
|
-
buildTraces(layout) {
|
|
232
|
-
const result = [layout.rootPane, ...layout.floatingPanes].map(pane => this.buildTracesPrivate([pane]));
|
|
233
|
-
// const result = this.buildTracesPrivate([layout.rootPane]);
|
|
234
|
-
return result.flatMap(traceGroup => traceGroup);
|
|
235
|
-
}
|
|
236
|
-
buildTracesPrivate(currentSequence) {
|
|
237
|
-
const children = this.getChildPanes(currentSequence[currentSequence.length - 1]);
|
|
238
|
-
if (children.length === 0) {
|
|
239
|
-
return [{
|
|
240
|
-
finished: true,
|
|
241
|
-
trace: currentSequence
|
|
242
|
-
}];
|
|
243
|
-
}
|
|
244
|
-
else {
|
|
245
|
-
const result = children.map(child => this.buildTracesPrivate([...currentSequence, child]));
|
|
246
|
-
return result.flatMap(r => r);
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
getChildPanes(pane) {
|
|
250
|
-
if (pane instanceof BsContentPane) {
|
|
251
|
-
return [];
|
|
252
|
-
}
|
|
253
|
-
else if (pane instanceof BsTabGroupPane) {
|
|
254
|
-
return pane.panes;
|
|
255
|
-
}
|
|
256
|
-
else if (pane instanceof BsSplitPane) {
|
|
257
|
-
return pane.panes;
|
|
258
|
-
}
|
|
259
|
-
else if (pane instanceof BsFloatingPane) {
|
|
260
|
-
return pane.pane ? [pane.pane] : [];
|
|
261
|
-
}
|
|
262
|
-
else if (pane instanceof BsDocumentHost) {
|
|
263
|
-
return pane.rootPane ? [pane.rootPane] : [];
|
|
264
|
-
}
|
|
265
|
-
else {
|
|
266
|
-
return [];
|
|
267
|
-
}
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
|
-
BsDockService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
271
|
-
BsDockService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockService, providedIn: 'root' });
|
|
272
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockService, decorators: [{
|
|
273
|
-
type: Injectable,
|
|
274
|
-
args: [{
|
|
275
|
-
providedIn: 'root'
|
|
276
|
-
}]
|
|
277
|
-
}] });
|
|
278
|
-
|
|
279
|
-
class BsDockPanelHeaderComponent {
|
|
280
|
-
constructor(dockPanel, dock, dockService, element) {
|
|
281
|
-
this.dockPanel = dockPanel;
|
|
282
|
-
this.dock = dock;
|
|
283
|
-
this.dockService = dockService;
|
|
284
|
-
this.element = element;
|
|
285
|
-
this.isMouseDown = false;
|
|
286
|
-
this.isDragging = false;
|
|
287
|
-
this.dBlock = true;
|
|
288
|
-
}
|
|
289
|
-
onMouseDown(ev) {
|
|
290
|
-
ev.preventDefault();
|
|
291
|
-
this.isMouseDown = true;
|
|
292
|
-
}
|
|
293
|
-
onMouseMove(ev) {
|
|
294
|
-
if (this.isMouseDown) {
|
|
295
|
-
if (!this.isDragging) {
|
|
296
|
-
this.isDragging = true;
|
|
297
|
-
this.dock.parentifiedLayout$.pipe(take(1)).subscribe((layout) => {
|
|
298
|
-
// this.dock.layout$.pipe(take(1)).subscribe((layout) => {
|
|
299
|
-
const traces = this.dockService.buildTraces(layout);
|
|
300
|
-
console.log('traces', { layout, traces });
|
|
301
|
-
const matching = traces.filter(t => {
|
|
302
|
-
const lastPane = t.trace[t.trace.length - 1];
|
|
303
|
-
// return (lastPane instanceof BsContentPane) && (lastPane.dockPanel === this.dockPanel);
|
|
304
|
-
return (lastPane instanceof BsContentPane) && (lastPane.dockPanel === this.dockPanel);
|
|
305
|
-
});
|
|
306
|
-
console.log('matching', matching);
|
|
307
|
-
if (matching.length !== 1) {
|
|
308
|
-
return;
|
|
309
|
-
}
|
|
310
|
-
// const tabs = matching[0].trace.filter(pane => pane instanceof BsTabGroupPane);
|
|
311
|
-
// const lastTabGroup = tabs[tabs.length - 1];
|
|
312
|
-
// // console.log('last tabgroup', lastTabGroup);
|
|
313
|
-
let tabControlEl = this.element.nativeElement;
|
|
314
|
-
do {
|
|
315
|
-
if (tabControlEl.parentElement) {
|
|
316
|
-
tabControlEl = tabControlEl.parentElement;
|
|
317
|
-
}
|
|
318
|
-
else {
|
|
319
|
-
throw 'No more parents';
|
|
320
|
-
}
|
|
321
|
-
} while (tabControlEl.tagName.toUpperCase() !== 'BS-TAB-CONTROL');
|
|
322
|
-
const coords = {
|
|
323
|
-
width: tabControlEl.clientWidth,
|
|
324
|
-
height: tabControlEl.clientHeight,
|
|
325
|
-
left: ev.clientX - ev.offsetX,
|
|
326
|
-
top: ev.clientY - ev.offsetY,
|
|
327
|
-
};
|
|
328
|
-
// this.dockPanel.headerPortal?.isAttached && this.dockPanel.headerPortal?.detach();
|
|
329
|
-
// this.dockPanel.contentPortal?.isAttached && this.dockPanel.contentPortal?.detach();
|
|
330
|
-
// this.removeFromPane(layout.rootPane, this.dockPanel);
|
|
331
|
-
const trace = [...matching[0].trace];
|
|
332
|
-
this.dockPanel.headerPortal?.isAttached && this.dockPanel.headerPortal?.detach();
|
|
333
|
-
this.dockPanel.contentPortal?.isAttached && this.dockPanel.contentPortal?.detach();
|
|
334
|
-
for (let index = trace.length - 1; index >= 0; index--) {
|
|
335
|
-
if (index > 0) {
|
|
336
|
-
this.removeFromPaneBis(trace[index - 1], trace[index]);
|
|
337
|
-
if (!trace[index - 1].isEmpty)
|
|
338
|
-
break;
|
|
339
|
-
}
|
|
340
|
-
else {
|
|
341
|
-
const floatingIndex = layout.floatingPanes.indexOf(trace[0]);
|
|
342
|
-
if (trace[0].isEmpty && (floatingIndex > -1)) {
|
|
343
|
-
layout.floatingPanes.splice(floatingIndex, 1);
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
}
|
|
347
|
-
// this.removeFromPane((<any>matching[0].trace[0])['$original'], this.dockPanel);
|
|
348
|
-
const floatingPane = new BsFloatingPane({
|
|
349
|
-
pane: new BsTabGroupPane({
|
|
350
|
-
panes: [
|
|
351
|
-
new BsContentPane({
|
|
352
|
-
dockPanel: this.dockPanel
|
|
353
|
-
})
|
|
354
|
-
]
|
|
355
|
-
}),
|
|
356
|
-
size: {
|
|
357
|
-
width: coords.width,
|
|
358
|
-
height: coords.height,
|
|
359
|
-
},
|
|
360
|
-
location: {
|
|
361
|
-
x: coords.left,
|
|
362
|
-
y: coords.top,
|
|
363
|
-
}
|
|
364
|
-
});
|
|
365
|
-
this.dragOperation = {
|
|
366
|
-
offsetX: ev.offsetX,
|
|
367
|
-
offsetY: ev.offsetY,
|
|
368
|
-
floatingPane
|
|
369
|
-
};
|
|
370
|
-
layout.floatingPanes.push(floatingPane);
|
|
371
|
-
setTimeout(() => this.dock.layout$.next(layout), 5);
|
|
372
|
-
// console.log('traces', { traces, matching, dockPanel: this.dockPanel, equals: traces[2].trace[3] });
|
|
373
|
-
// let element: HTMLElement | null = this.element.nativeElement;
|
|
374
|
-
// let tree: HTMLElement[] = [];
|
|
375
|
-
// do {
|
|
376
|
-
// tree.push(element!);
|
|
377
|
-
// element = element!.parentElement;
|
|
378
|
-
// } while (element);
|
|
379
|
-
// const tabControls = tree.filter(el => el.tagName.toUpperCase() === 'BS-TAB-CONTROL');
|
|
380
|
-
// if (tabControls.length > 0) {
|
|
381
|
-
// const coords = {
|
|
382
|
-
// width: tabControls[0].clientWidth,
|
|
383
|
-
// height: tabControls[0].clientHeight,
|
|
384
|
-
// left: ev.clientX - ev.offsetX,
|
|
385
|
-
// top: ev.clientY - ev.offsetY,
|
|
386
|
-
// };
|
|
387
|
-
// this.dockPanel.headerPortal?.isAttached && this.dockPanel.headerPortal?.detach();
|
|
388
|
-
// this.dockPanel.contentPortal?.isAttached && this.dockPanel.contentPortal?.detach();
|
|
389
|
-
// this.removeFromPane(layout.rootPane, this.dockPanel);
|
|
390
|
-
// const floatingPane = new BsFloatingPane({
|
|
391
|
-
// pane: new BsTabGroupPane({
|
|
392
|
-
// panes: [
|
|
393
|
-
// new BsContentPane({
|
|
394
|
-
// dockPanel: this.dockPanel
|
|
395
|
-
// })
|
|
396
|
-
// ]
|
|
397
|
-
// }),
|
|
398
|
-
// size: {
|
|
399
|
-
// width: coords.width,
|
|
400
|
-
// height: coords.height,
|
|
401
|
-
// },
|
|
402
|
-
// location: {
|
|
403
|
-
// x: coords.left,
|
|
404
|
-
// y: coords.top,
|
|
405
|
-
// }
|
|
406
|
-
// });
|
|
407
|
-
// this.dragOperation = {
|
|
408
|
-
// offsetX: ev.offsetX,
|
|
409
|
-
// offsetY: ev.offsetY,
|
|
410
|
-
// floatingPane
|
|
411
|
-
// };
|
|
412
|
-
// layout.floatingPanes.push(floatingPane);
|
|
413
|
-
// this.dock.layout$.next(layout);
|
|
414
|
-
// }
|
|
415
|
-
});
|
|
416
|
-
}
|
|
417
|
-
else {
|
|
418
|
-
if (this.dragOperation) {
|
|
419
|
-
if (this.dragOperation.floatingPane.location) {
|
|
420
|
-
this.dragOperation.floatingPane.location.x = ev.clientX - this.dragOperation.offsetX;
|
|
421
|
-
this.dragOperation.floatingPane.location.y = ev.clientY - this.dragOperation.offsetY;
|
|
422
|
-
}
|
|
423
|
-
// } else {
|
|
424
|
-
// const traces = this.dockService.buildTraces(this.dock.layout);
|
|
425
|
-
// const matchingTrace = traces.filter(trace => {
|
|
426
|
-
// const pane = trace.trace[trace.trace.length - 1];
|
|
427
|
-
// return (pane instanceof BsContentPane) && (pane.dockPanel === this.dockPanel);
|
|
428
|
-
// });
|
|
429
|
-
// console.log('matching', { traces, matchingTrace });
|
|
430
|
-
// // this.dragOperation = {
|
|
431
|
-
// // }
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
removeFromPaneBis(host, pane) {
|
|
437
|
-
if (host instanceof BsContentPane) {
|
|
438
|
-
}
|
|
439
|
-
else if (host instanceof BsDocumentHost) {
|
|
440
|
-
// Actually documentHost should never be removed
|
|
441
|
-
}
|
|
442
|
-
else if (host instanceof BsTabGroupPane) {
|
|
443
|
-
if (pane instanceof BsContentPane) {
|
|
444
|
-
const index = host.panes.indexOf(pane);
|
|
445
|
-
host.panes.splice(index, 1);
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
else if (host instanceof BsSplitPane) {
|
|
449
|
-
const index = host.panes.indexOf(pane);
|
|
450
|
-
host.panes.splice(index, 1);
|
|
451
|
-
}
|
|
452
|
-
else if (host instanceof BsFloatingPane) {
|
|
453
|
-
}
|
|
454
|
-
else {
|
|
455
|
-
throw 'Unknown pane type';
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
// removeFromPane(host: BsDockPane, panel: BsDockPanelComponent /*, parents: BsDockPane[] */): RemoveFromPaneResult {
|
|
459
|
-
// if (host instanceof BsContentPane) {
|
|
460
|
-
// return { paneRemoved: false, hostIsEmpty: false };
|
|
461
|
-
// } else if (host instanceof BsDocumentHost) {
|
|
462
|
-
// // Actually documentHost should never be removed
|
|
463
|
-
// if (!host.rootPane) {
|
|
464
|
-
// return { paneRemoved: false, hostIsEmpty: true };
|
|
465
|
-
// }
|
|
466
|
-
// const result = this.removeFromPane(host.rootPane, panel);
|
|
467
|
-
// return { paneRemoved: result.paneRemoved, hostIsEmpty: result.hostIsEmpty };
|
|
468
|
-
// } else if (host instanceof BsTabGroupPane) {
|
|
469
|
-
// const matching = host.panes.filter(p => p.dockPanel === panel);
|
|
470
|
-
// if (matching.length > 0) {
|
|
471
|
-
// host.panes.splice(host.panes.findIndex(p => p.dockPanel === panel), 1);
|
|
472
|
-
// return { paneRemoved: true, hostIsEmpty: host.panes.length === 0 };
|
|
473
|
-
// } else {
|
|
474
|
-
// // ATM. all panes are ContentPanes anyway.
|
|
475
|
-
// // So unless you'd want to have splitters inside the tabs,
|
|
476
|
-
// // This code will not be hit.
|
|
477
|
-
// // const result = host.panes
|
|
478
|
-
// // .map(parentPane => this.removeFromPane(parentPane, panel))
|
|
479
|
-
// // .filter(r => r.paneRemoved);
|
|
480
|
-
// //
|
|
481
|
-
// // if (result.length > 0) {
|
|
482
|
-
// // return { paneRemoved: true, hostIsEmpty: }
|
|
483
|
-
// // }
|
|
484
|
-
// return { paneRemoved: false, hostIsEmpty: host.panes.length === 0 };
|
|
485
|
-
// }
|
|
486
|
-
// } else if (host instanceof BsSplitPane) {
|
|
487
|
-
// const matching = host.panes
|
|
488
|
-
// .filter(p => p instanceof BsContentPane)
|
|
489
|
-
// .map(p => <BsContentPane>p)
|
|
490
|
-
// .filter(p => p.dockPanel === panel);
|
|
491
|
-
// if (matching.length > 0) {
|
|
492
|
-
// host.panes.splice(host.panes.findIndex(p => (p instanceof BsContentPane) && matching.includes(p)), 1);
|
|
493
|
-
// // TODO: Remove splitter if only 1 pane left?
|
|
494
|
-
// return { paneRemoved: true, hostIsEmpty: host.panes.length === 0 };
|
|
495
|
-
// } else {
|
|
496
|
-
// for (let splitPane of host.panes) {
|
|
497
|
-
// const result = this.removeFromPane(splitPane, panel);
|
|
498
|
-
// if (result.paneRemoved && result.hostIsEmpty) {
|
|
499
|
-
// // splitPane is empty now, so we can remove it from this splitter
|
|
500
|
-
// host.panes.splice(host.panes.indexOf(splitPane), 1);
|
|
501
|
-
// return { paneRemoved: true, hostIsEmpty: host.panes.length === 0 };
|
|
502
|
-
// }
|
|
503
|
-
// }
|
|
504
|
-
// }
|
|
505
|
-
// return { paneRemoved: false, hostIsEmpty: host.panes.length === 0 };
|
|
506
|
-
// } else {
|
|
507
|
-
// throw 'unknown host type';
|
|
508
|
-
// }
|
|
509
|
-
// }
|
|
510
|
-
onMouseUp(ev) {
|
|
511
|
-
this.isMouseDown = false;
|
|
512
|
-
this.isDragging = false;
|
|
513
|
-
this.dragOperation = undefined;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
BsDockPanelHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPanelHeaderComponent, deps: [{ token: BsDockPanelComponent }, { token: BsDockComponent }, { token: BsDockService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
517
|
-
BsDockPanelHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsDockPanelHeaderComponent, selector: "bs-dock-panel-header", host: { listeners: { "mousedown": "onMouseDown($event)", "document:mousemove": "onMouseMove($event)", "document:mouseup": "onMouseUp($event)" }, properties: { "class.d-block": "this.dBlock" } }, ngImport: i0, template: "<ng-content></ng-content>", styles: [":host{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);margin:calc(-1 * var(--bs-nav-link-padding-y)) calc(-1 * var(--bs-nav-link-padding-x))}\n"] });
|
|
518
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockPanelHeaderComponent, decorators: [{
|
|
519
|
-
type: Component,
|
|
520
|
-
args: [{ selector: 'bs-dock-panel-header', template: "<ng-content></ng-content>", styles: [":host{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);margin:calc(-1 * var(--bs-nav-link-padding-y)) calc(-1 * var(--bs-nav-link-padding-x))}\n"] }]
|
|
521
|
-
}], ctorParameters: function () { return [{ type: BsDockPanelComponent }, { type: BsDockComponent }, { type: BsDockService }, { type: i0.ElementRef }]; }, propDecorators: { onMouseDown: [{
|
|
522
|
-
type: HostListener,
|
|
523
|
-
args: ['mousedown', ['$event']]
|
|
524
|
-
}], onMouseMove: [{
|
|
525
|
-
type: HostListener,
|
|
526
|
-
args: ['document:mousemove', ['$event']]
|
|
527
|
-
}], onMouseUp: [{
|
|
528
|
-
type: HostListener,
|
|
529
|
-
args: ['document:mouseup', ['$event']]
|
|
530
|
-
}], dBlock: [{
|
|
531
|
-
type: HostBinding,
|
|
532
|
-
args: ['class.d-block']
|
|
533
|
-
}] } });
|
|
534
|
-
|
|
535
|
-
class BsDockModule {
|
|
536
|
-
}
|
|
537
|
-
BsDockModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
538
|
-
BsDockModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsDockModule, declarations: [BsDockComponent,
|
|
539
|
-
BsDockPanelComponent,
|
|
540
|
-
BsDockPanelHeaderComponent,
|
|
541
|
-
BsDockPaneRendererComponent], imports: [CommonModule,
|
|
542
|
-
PortalModule,
|
|
543
|
-
BsCardModule,
|
|
544
|
-
BsInstanceOfModule,
|
|
545
|
-
BsSplitterModule,
|
|
546
|
-
BsTabControlModule,
|
|
547
|
-
BsResizableModule], exports: [BsDockComponent,
|
|
548
|
-
BsDockPanelComponent,
|
|
549
|
-
BsDockPanelHeaderComponent,
|
|
550
|
-
BsDockPaneRendererComponent] });
|
|
551
|
-
BsDockModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockModule, imports: [CommonModule,
|
|
552
|
-
PortalModule,
|
|
553
|
-
BsCardModule,
|
|
554
|
-
BsInstanceOfModule,
|
|
555
|
-
BsSplitterModule,
|
|
556
|
-
BsTabControlModule,
|
|
557
|
-
BsResizableModule] });
|
|
558
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsDockModule, decorators: [{
|
|
559
|
-
type: NgModule,
|
|
560
|
-
args: [{
|
|
561
|
-
declarations: [
|
|
562
|
-
BsDockComponent,
|
|
563
|
-
BsDockPanelComponent,
|
|
564
|
-
BsDockPanelHeaderComponent,
|
|
565
|
-
BsDockPaneRendererComponent
|
|
566
|
-
],
|
|
567
|
-
imports: [
|
|
568
|
-
CommonModule,
|
|
569
|
-
PortalModule,
|
|
570
|
-
BsCardModule,
|
|
571
|
-
BsInstanceOfModule,
|
|
572
|
-
BsSplitterModule,
|
|
573
|
-
BsTabControlModule,
|
|
574
|
-
BsResizableModule
|
|
575
|
-
],
|
|
576
|
-
exports: [
|
|
577
|
-
BsDockComponent,
|
|
578
|
-
BsDockPanelComponent,
|
|
579
|
-
BsDockPanelHeaderComponent,
|
|
580
|
-
BsDockPaneRendererComponent
|
|
581
|
-
]
|
|
582
|
-
}]
|
|
583
|
-
}] });
|
|
584
|
-
|
|
585
|
-
/**
|
|
586
|
-
* Generated bundle index. Do not edit.
|
|
587
|
-
*/
|
|
588
|
-
|
|
589
|
-
export { BsContentPane, BsDockComponent, BsDockModule, BsDockPane, BsDockPaneRendererComponent, BsDockPanelComponent, BsDockPanelHeaderComponent, BsDockService, BsDocumentHost, BsFloatingPane, BsSplitPane, BsTabGroupPane, EPaneType };
|
|
590
|
-
//# sourceMappingURL=mintplayer-ng-bootstrap-dock.mjs.map
|