@mintplayer/ng-bootstrap 15.20.5 → 15.21.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/card/src/card/card.component.d.ts +2 -1
- package/card/src/card-header/card-header.component.d.ts +2 -1
- package/dock/index.d.ts +1 -0
- package/dock/src/dock/dock.component.d.ts +17 -0
- package/dock/src/dock-pane-renderer/dock-pane-renderer.component.d.ts +21 -0
- package/dock/src/dock-panel/dock-panel.component.d.ts +12 -0
- package/dock/src/dock-panel-header/dock-panel-header.component.d.ts +16 -0
- package/dock/src/dock.module.d.ts +16 -0
- package/dock/src/enums/index.d.ts +1 -0
- package/dock/src/enums/pane-type.enum.d.ts +6 -0
- package/dock/src/index.d.ts +8 -0
- package/dock/src/interfaces/dock-layout.d.ts +6 -0
- package/dock/src/interfaces/index.d.ts +3 -0
- package/dock/src/interfaces/point.d.ts +4 -0
- package/dock/src/interfaces/size.d.ts +4 -0
- package/dock/src/panes/content-pane.d.ts +7 -0
- package/dock/src/panes/dock-pane.d.ts +2 -0
- package/dock/src/panes/document-host-pane.d.ts +5 -0
- package/dock/src/panes/floating-pane.d.ts +8 -0
- package/dock/src/panes/index.d.ts +6 -0
- package/dock/src/panes/split-pane.d.ts +7 -0
- package/dock/src/panes/tab-group-pane.d.ts +5 -0
- package/dock/src/types/split-pane-orientation.type.d.ts +1 -0
- package/esm2020/accordion/src/accordion/accordion.component.mjs +3 -3
- package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +3 -3
- package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +3 -3
- package/esm2020/accordion/src/accordion.module.mjs +4 -4
- package/esm2020/alert/src/alert/alert.component.mjs +3 -3
- package/esm2020/alert/src/alert-close/alert-close.component.mjs +3 -3
- package/esm2020/alert/src/alert.module.mjs +4 -4
- package/esm2020/badge/src/badge.component.mjs +3 -3
- package/esm2020/badge/src/badge.module.mjs +4 -4
- package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +3 -3
- package/esm2020/breadcrumb/src/breadcrumb.module.mjs +4 -4
- package/esm2020/button-group/src/button-group/button-group.component.mjs +3 -3
- package/esm2020/button-group/src/button-group.module.mjs +4 -4
- package/esm2020/button-type/src/button-type/button-type.directive.mjs +3 -3
- package/esm2020/button-type/src/button-type/button-type.module.mjs +4 -4
- package/esm2020/calendar/src/calendar.component.mjs +3 -3
- package/esm2020/calendar/src/calendar.module.mjs +4 -4
- package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +4 -4
- package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +3 -3
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +4 -4
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +3 -3
- package/esm2020/calendar-month/src/service/calendar-month.service.mjs +3 -3
- package/esm2020/card/src/card/card.component.mjs +12 -7
- package/esm2020/card/src/card-header/card-header.component.mjs +12 -7
- package/esm2020/card/src/card.module.mjs +4 -4
- package/esm2020/carousel/src/carousel/carousel.component.mjs +3 -3
- package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +3 -3
- package/esm2020/carousel/src/carousel.module.mjs +4 -4
- package/esm2020/close/src/close.component.mjs +3 -3
- package/esm2020/close/src/close.module.mjs +4 -4
- package/esm2020/code-snippet/src/code-snippet.component.mjs +3 -3
- package/esm2020/code-snippet/src/code-snippet.module.mjs +4 -4
- package/esm2020/context-menu/src/context-menu.directive.mjs +3 -3
- package/esm2020/context-menu/src/context-menu.module.mjs +4 -4
- package/esm2020/copy/src/copy.directive.mjs +3 -3
- package/esm2020/copy/src/copy.module.mjs +4 -4
- package/esm2020/datatable/src/datatable/datatable.component.mjs +3 -3
- package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +3 -3
- package/esm2020/datatable/src/datatable.module.mjs +4 -4
- package/esm2020/datatable/src/row-template/row-template.directive.mjs +3 -3
- package/esm2020/datepicker/src/datepicker.component.mjs +3 -3
- package/esm2020/datepicker/src/datepicker.module.mjs +4 -4
- package/esm2020/dock/index.mjs +2 -0
- package/esm2020/dock/mintplayer-ng-bootstrap-dock.mjs +5 -0
- package/esm2020/dock/src/dock/dock.component.mjs +51 -0
- package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +56 -0
- package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +24 -0
- package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +49 -0
- package/esm2020/dock/src/dock.module.mjs +59 -0
- package/esm2020/dock/src/enums/index.mjs +2 -0
- package/esm2020/dock/src/enums/pane-type.enum.mjs +8 -0
- package/esm2020/dock/src/index.mjs +9 -0
- package/esm2020/dock/src/interfaces/dock-layout.mjs +2 -0
- package/esm2020/dock/src/interfaces/index.mjs +4 -0
- package/esm2020/dock/src/interfaces/point.mjs +2 -0
- package/esm2020/dock/src/interfaces/size.mjs +2 -0
- package/esm2020/dock/src/panes/content-pane.mjs +8 -0
- package/esm2020/dock/src/panes/dock-pane.mjs +3 -0
- package/esm2020/dock/src/panes/document-host-pane.mjs +8 -0
- package/esm2020/dock/src/panes/floating-pane.mjs +3 -0
- package/esm2020/dock/src/panes/index.mjs +7 -0
- package/esm2020/dock/src/panes/split-pane.mjs +10 -0
- package/esm2020/dock/src/panes/tab-group-pane.mjs +9 -0
- package/esm2020/dock/src/types/split-pane-orientation.type.mjs +2 -0
- package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +3 -3
- package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +3 -3
- package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +3 -3
- package/esm2020/dropdown/src/dropdown.module.mjs +4 -4
- package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +3 -3
- package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +4 -4
- package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +3 -3
- package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +3 -3
- package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +4 -4
- package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +3 -3
- package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +4 -4
- package/esm2020/enum/src/service/enum.service.mjs +3 -3
- package/esm2020/file-upload/src/component/file-upload.component.mjs +3 -3
- package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +3 -3
- package/esm2020/file-upload/src/file-upload.module.mjs +4 -4
- package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +3 -3
- package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +3 -3
- package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +4 -4
- package/esm2020/for/src/for.directive.mjs +3 -3
- package/esm2020/for/src/for.module.mjs +4 -4
- package/esm2020/form/src/form/form.component.mjs +3 -3
- package/esm2020/form/src/form-control/form-control.directive.mjs +3 -3
- package/esm2020/form/src/form-group/form-group.directive.mjs +3 -3
- package/esm2020/form/src/form.module.mjs +4 -4
- package/esm2020/grid/src/component/grid.component.mjs +3 -3
- package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +3 -3
- package/esm2020/grid/src/directives/column/column.directive.mjs +3 -3
- package/esm2020/grid/src/directives/row/row.directive.mjs +3 -3
- package/esm2020/grid/src/grid.module.mjs +4 -4
- package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +3 -3
- package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +4 -4
- package/esm2020/icon/src/icon.component.mjs +3 -3
- package/esm2020/icon/src/icon.module.mjs +4 -4
- package/esm2020/input-group/src/input-group/input-group.component.mjs +3 -3
- package/esm2020/input-group/src/input-group.module.mjs +4 -4
- package/esm2020/instance-of/index.mjs +2 -0
- package/esm2020/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +5 -0
- package/esm2020/instance-of/src/directives/index.mjs +5 -0
- package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +47 -0
- package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +30 -0
- package/esm2020/instance-of/src/directives/instanceof.directive.mjs +62 -0
- package/esm2020/instance-of/src/directives/switch-view.mjs +30 -0
- package/esm2020/instance-of/src/index.mjs +6 -0
- package/esm2020/instance-of/src/instance-of.module.mjs +37 -0
- package/esm2020/instance-of/src/interfaces/index.mjs +2 -0
- package/esm2020/instance-of/src/interfaces/instance-of-context.mjs +7 -0
- package/esm2020/instance-of/src/pipes/index.mjs +2 -0
- package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +17 -0
- package/esm2020/instance-of/src/types/abstract.type.mjs +2 -0
- package/esm2020/instance-of/src/types/index.mjs +2 -0
- package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +3 -3
- package/esm2020/lazy-loading/src/lazy-loading.module.mjs +4 -4
- package/esm2020/let/directive/let.directive.mjs +3 -3
- package/esm2020/let/let.module.mjs +4 -4
- package/esm2020/lib/pipes/font-color/font-color.module.mjs +4 -4
- package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +3 -3
- package/esm2020/lib/pipes/in-list/in-list.module.mjs +4 -4
- package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +3 -3
- package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +4 -4
- package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +3 -3
- package/esm2020/list-group/src/list-group/list-group.component.mjs +3 -3
- package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +3 -3
- package/esm2020/list-group/src/list-group.module.mjs +4 -4
- package/esm2020/markdown/src/bold/bold.pipe.mjs +3 -3
- package/esm2020/markdown/src/italic/italic.pipe.mjs +3 -3
- package/esm2020/markdown/src/markdown.module.mjs +4 -4
- package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +3 -3
- package/esm2020/markdown/src/underline/underline.pipe.mjs +3 -3
- package/esm2020/modal/src/components/modal/modal.component.mjs +3 -3
- package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +3 -3
- package/esm2020/modal/src/directives/modal/modal.directive.mjs +3 -3
- package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +3 -3
- package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +3 -3
- package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +3 -3
- package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +3 -3
- package/esm2020/modal/src/modal.module.mjs +4 -4
- package/esm2020/multiselect/src/component/multiselect.component.mjs +3 -3
- package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +3 -3
- package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +3 -3
- package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +3 -3
- package/esm2020/multiselect/src/multiselect.module.mjs +4 -4
- package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +3 -3
- package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +3 -3
- package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +3 -3
- package/esm2020/navbar/src/navbar/navbar.component.mjs +3 -3
- package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +3 -3
- package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +3 -3
- package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +3 -3
- package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +3 -3
- package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +3 -3
- package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +3 -3
- package/esm2020/navbar/src/navbar.module.mjs +4 -4
- package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +3 -3
- package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +3 -3
- package/esm2020/navigation-lock/src/navigation-lock.module.mjs +4 -4
- package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +3 -3
- package/esm2020/no-noscript/src/no-noscript.module.mjs +4 -4
- package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +3 -3
- package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +3 -3
- package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +3 -3
- package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +3 -3
- package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +3 -3
- package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +3 -3
- package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +3 -3
- package/esm2020/offcanvas/src/offcanvas.module.mjs +4 -4
- package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +3 -3
- package/esm2020/ordinal-number/src/ordinal-number.module.mjs +4 -4
- package/esm2020/pagination/src/component/pagination/pagination.component.mjs +3 -3
- package/esm2020/pagination/src/pagination.module.mjs +4 -4
- package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +3 -3
- package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +3 -3
- package/esm2020/placeholder/src/placeholder.module.mjs +4 -4
- package/esm2020/popover/src/component/popover.component.mjs +3 -3
- package/esm2020/popover/src/directives/popover/popover.directive.mjs +3 -3
- package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +3 -3
- package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +3 -3
- package/esm2020/popover/src/popover.module.mjs +4 -4
- package/esm2020/progress-bar/src/progress/progress.component.mjs +3 -3
- package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +3 -3
- package/esm2020/progress-bar/src/progress-bar.module.mjs +4 -4
- package/esm2020/range/src/component/range.component.mjs +3 -3
- package/esm2020/range/src/range.module.mjs +4 -4
- package/esm2020/range/src/value-accessor/range-value-accessor.mjs +3 -3
- package/esm2020/rating/src/component/rating.component.mjs +3 -3
- package/esm2020/rating/src/rating.module.mjs +4 -4
- package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +3 -3
- package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +3 -3
- package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +3 -3
- package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +3 -3
- package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +3 -3
- package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +3 -3
- package/esm2020/scheduler/src/scheduler.module.mjs +4 -4
- package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +3 -3
- package/esm2020/scrollspy/src/component/scrollspy.component.mjs +3 -3
- package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +3 -3
- package/esm2020/scrollspy/src/scrollspy.module.mjs +4 -4
- package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +3 -3
- package/esm2020/select/src/component/select.component.mjs +3 -3
- package/esm2020/select/src/select.module.mjs +4 -4
- package/esm2020/select/src/value-accessors/select-value-accessor.mjs +6 -6
- package/esm2020/select2/src/component/select2.component.mjs +3 -3
- package/esm2020/select2/src/directive/item-template.directive.mjs +3 -3
- package/esm2020/select2/src/select2.module.mjs +4 -4
- package/esm2020/snackbar/src/component/snackbar.component.mjs +3 -3
- package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +3 -3
- package/esm2020/snackbar/src/service/snackbar.service.mjs +3 -3
- package/esm2020/snackbar/src/snackbar.module.mjs +4 -4
- package/esm2020/spinner/src/spinner.component.mjs +3 -3
- package/esm2020/spinner/src/spinner.module.mjs +4 -4
- package/esm2020/splitter/src/element-at/element-at.pipe.mjs +3 -3
- package/esm2020/splitter/src/split-panel/split-panel.component.mjs +3 -3
- package/esm2020/splitter/src/splitter/splitter.component.mjs +3 -3
- package/esm2020/splitter/src/splitter.module.mjs +4 -4
- package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +39 -10
- package/esm2020/tab-control/src/tab-control.module.mjs +9 -5
- package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +5 -5
- package/esm2020/table/src/component/table.component.mjs +3 -3
- package/esm2020/table/src/table.module.mjs +4 -4
- package/esm2020/timepicker/src/timepicker.component.mjs +3 -3
- package/esm2020/timepicker/src/timepicker.module.mjs +4 -4
- package/esm2020/toast/src/components/toast/toast.component.mjs +3 -3
- package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +3 -3
- package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +3 -3
- package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +3 -3
- package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +3 -3
- package/esm2020/toast/src/pipes/add-properties.pipe.mjs +3 -3
- package/esm2020/toast/src/services/toast/toast.service.mjs +3 -3
- package/esm2020/toast/src/toast.module.mjs +4 -4
- package/esm2020/toggle-button/src/component/toggle-button.component.mjs +3 -3
- package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +3 -3
- package/esm2020/toggle-button/src/toggle-button.module.mjs +4 -4
- package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +3 -3
- package/esm2020/tooltip/src/component/tooltip.component.mjs +3 -3
- package/esm2020/tooltip/src/directive/tooltip.directive.mjs +3 -3
- package/esm2020/tooltip/src/tooltip.module.mjs +4 -4
- package/esm2020/typeahead/src/typeahead.component.mjs +3 -3
- package/esm2020/typeahead/src/typeahead.module.mjs +4 -4
- package/esm2020/user-agent/src/directive/user-agent.directive.mjs +3 -3
- package/esm2020/user-agent/src/user-agent.module.mjs +4 -4
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +17 -17
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs +25 -15
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +1 -1
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +265 -0
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +3 -3
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +16 -16
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +222 -0
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +16 -16
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +25 -25
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +16 -16
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +34 -34
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +25 -25
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +16 -16
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +25 -25
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +49 -16
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -1
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +25 -25
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +13 -13
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +10 -10
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +7 -7
- package/fesm2015/mintplayer-ng-bootstrap.mjs +21 -21
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +17 -17
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs +25 -15
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +264 -0
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +3 -3
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +16 -16
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +218 -0
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +16 -16
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +25 -25
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +16 -16
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +34 -34
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +25 -25
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +16 -16
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +25 -25
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +49 -16
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -1
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +25 -25
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +13 -13
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +10 -10
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +7 -7
- package/fesm2020/mintplayer-ng-bootstrap.mjs +21 -21
- package/instance-of/index.d.ts +1 -0
- package/instance-of/src/directives/index.d.ts +4 -0
- package/instance-of/src/directives/instanceof-case.directive.d.ts +23 -0
- package/instance-of/src/directives/instanceof-default.directive.d.ts +10 -0
- package/instance-of/src/directives/instanceof.directive.d.ts +21 -0
- package/instance-of/src/directives/switch-view.d.ts +12 -0
- package/instance-of/src/index.d.ts +5 -0
- package/instance-of/src/instance-of.module.d.ts +11 -0
- package/instance-of/src/interfaces/index.d.ts +1 -0
- package/instance-of/src/interfaces/instance-of-context.d.ts +4 -0
- package/instance-of/src/pipes/index.d.ts +1 -0
- package/instance-of/src/pipes/instance-of.pipe.d.ts +8 -0
- package/instance-of/src/types/abstract.type.d.ts +1 -0
- package/instance-of/src/types/index.d.ts +1 -0
- package/package.json +19 -3
- package/tab-control/src/tab-control/tab-control.component.d.ts +12 -7
- package/tab-control/src/tab-control.module.d.ts +3 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ViewContainerRef, TemplateRef } from "@angular/core";
|
|
2
|
+
import { BsInstanceOfContext } from "../interfaces/instance-of-context";
|
|
3
|
+
export declare class SwitchView<T = unknown> {
|
|
4
|
+
private _viewContainerRef;
|
|
5
|
+
private _templateRef;
|
|
6
|
+
private _created;
|
|
7
|
+
private _context;
|
|
8
|
+
constructor(_viewContainerRef: ViewContainerRef, _templateRef: TemplateRef<BsInstanceOfContext<T>>);
|
|
9
|
+
enforceState(result?: T): void;
|
|
10
|
+
private create;
|
|
11
|
+
private destroy;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./pipes/instance-of.pipe";
|
|
3
|
+
import * as i2 from "./directives/instanceof.directive";
|
|
4
|
+
import * as i3 from "./directives/instanceof-case.directive";
|
|
5
|
+
import * as i4 from "./directives/instanceof-default.directive";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
export declare class BsInstanceOfModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsInstanceOfModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsInstanceOfModule, [typeof i1.BsInstanceofPipe, typeof i2.BsInstanceOfDirective, typeof i3.BsInstanceofCaseDirective, typeof i4.BsInstanceOfDefaultDirective], [typeof i5.CommonModule], [typeof i1.BsInstanceofPipe, typeof i2.BsInstanceOfDirective, typeof i3.BsInstanceofCaseDirective, typeof i4.BsInstanceOfDefaultDirective]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BsInstanceOfModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './instance-of-context';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './instance-of.pipe';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { PipeTransform } from '@angular/core';
|
|
2
|
+
import { AbstractType } from '../types/abstract.type';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BsInstanceofPipe implements PipeTransform {
|
|
5
|
+
transform<V, R>(value: V, type: AbstractType<R>): R | undefined;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsInstanceofPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<BsInstanceofPipe, "bsInstanceof", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AbstractType<T> = abstract new (...args: any[]) => T;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './abstract.type';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintplayer/ng-bootstrap",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.21.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/MintPlayer/mintplayer-ng-bootstrap",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"@mintplayer/pagination": "^1.1.0",
|
|
22
22
|
"@mintplayer/ng-focus-on-load": "^15.2.0",
|
|
23
23
|
"@mintplayer/ng-swiper": "^15.1.0",
|
|
24
|
-
"@angular/platform-browser": "15.2.
|
|
25
|
-
"@angular/router": "15.2.
|
|
24
|
+
"@angular/platform-browser": "15.2.3",
|
|
25
|
+
"@angular/router": "15.2.3"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"tslib": "^2.3.0"
|
|
@@ -173,6 +173,14 @@
|
|
|
173
173
|
"node": "./fesm2015/mintplayer-ng-bootstrap-datepicker.mjs",
|
|
174
174
|
"default": "./fesm2020/mintplayer-ng-bootstrap-datepicker.mjs"
|
|
175
175
|
},
|
|
176
|
+
"./dock": {
|
|
177
|
+
"types": "./dock/index.d.ts",
|
|
178
|
+
"esm2020": "./esm2020/dock/mintplayer-ng-bootstrap-dock.mjs",
|
|
179
|
+
"es2020": "./fesm2020/mintplayer-ng-bootstrap-dock.mjs",
|
|
180
|
+
"es2015": "./fesm2015/mintplayer-ng-bootstrap-dock.mjs",
|
|
181
|
+
"node": "./fesm2015/mintplayer-ng-bootstrap-dock.mjs",
|
|
182
|
+
"default": "./fesm2020/mintplayer-ng-bootstrap-dock.mjs"
|
|
183
|
+
},
|
|
176
184
|
"./dropdown-divider": {
|
|
177
185
|
"types": "./dropdown-divider/index.d.ts",
|
|
178
186
|
"esm2020": "./esm2020/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs",
|
|
@@ -277,6 +285,14 @@
|
|
|
277
285
|
"node": "./fesm2015/mintplayer-ng-bootstrap-input-group.mjs",
|
|
278
286
|
"default": "./fesm2020/mintplayer-ng-bootstrap-input-group.mjs"
|
|
279
287
|
},
|
|
288
|
+
"./instance-of": {
|
|
289
|
+
"types": "./instance-of/index.d.ts",
|
|
290
|
+
"esm2020": "./esm2020/instance-of/mintplayer-ng-bootstrap-instance-of.mjs",
|
|
291
|
+
"es2020": "./fesm2020/mintplayer-ng-bootstrap-instance-of.mjs",
|
|
292
|
+
"es2015": "./fesm2015/mintplayer-ng-bootstrap-instance-of.mjs",
|
|
293
|
+
"node": "./fesm2015/mintplayer-ng-bootstrap-instance-of.mjs",
|
|
294
|
+
"default": "./fesm2020/mintplayer-ng-bootstrap-instance-of.mjs"
|
|
295
|
+
},
|
|
280
296
|
"./lazy-loading": {
|
|
281
297
|
"types": "./lazy-loading/index.d.ts",
|
|
282
298
|
"esm2020": "./esm2020/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
|
-
import { ElementRef, QueryList } from '@angular/core';
|
|
3
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { ElementRef, OnDestroy, QueryList } from '@angular/core';
|
|
3
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
4
4
|
import { BsTabPageComponent } from '../tab-page/tab-page.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class BsTabControlComponent {
|
|
6
|
+
export declare class BsTabControlComponent implements OnDestroy {
|
|
7
7
|
constructor(element: ElementRef<any>);
|
|
8
8
|
dBlock: boolean;
|
|
9
9
|
positionRelative: boolean;
|
|
@@ -12,15 +12,20 @@ export declare class BsTabControlComponent {
|
|
|
12
12
|
set restrictDragging(value: boolean);
|
|
13
13
|
dragBoundarySelector: string;
|
|
14
14
|
element: ElementRef<any>;
|
|
15
|
-
tabPages
|
|
15
|
+
tabPages$: BehaviorSubject<QueryList<BsTabPageComponent> | null>;
|
|
16
|
+
activeTab$: BehaviorSubject<BsTabPageComponent | null>;
|
|
16
17
|
orderedTabPages: BsTabPageComponent[];
|
|
17
|
-
activeTab: BsTabPageComponent | null;
|
|
18
18
|
tabControlId$: BehaviorSubject<number>;
|
|
19
19
|
tabControlName$: Observable<string>;
|
|
20
20
|
static tabControlCounter: number;
|
|
21
21
|
tabCounter: number;
|
|
22
|
+
destroyed$: Subject<unknown>;
|
|
23
|
+
selectFirstTab$: BehaviorSubject<boolean>;
|
|
24
|
+
get selectFirstTab(): boolean;
|
|
25
|
+
set selectFirstTab(value: boolean);
|
|
22
26
|
setActiveTab(tab: BsTabPageComponent): boolean;
|
|
23
|
-
moveTab(ev: CdkDragDrop<QueryList<BsTabPageComponent
|
|
27
|
+
moveTab(ev: CdkDragDrop<QueryList<BsTabPageComponent> | null>): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
24
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsTabControlComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BsTabControlComponent, "bs-tab-control", never, { "border": "border"; "restrictDragging": "restrictDragging"; }, {}, ["setTabPages"], ["*"], false, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BsTabControlComponent, "bs-tab-control", never, { "border": "border"; "restrictDragging": "restrictDragging"; "selectFirstTab": "selectFirstTab"; }, {}, ["setTabPages"], ["*"], false, never>;
|
|
26
31
|
}
|
|
@@ -3,9 +3,10 @@ import * as i1 from "./tab-control/tab-control.component";
|
|
|
3
3
|
import * as i2 from "./tab-page/tab-page.component";
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "@angular/cdk/drag-drop";
|
|
6
|
-
import * as i5 from "@mintplayer/ng-bootstrap/
|
|
6
|
+
import * as i5 from "@mintplayer/ng-bootstrap/let";
|
|
7
|
+
import * as i6 from "@mintplayer/ng-bootstrap/no-noscript";
|
|
7
8
|
export declare class BsTabControlModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsTabControlModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BsTabControlModule, [typeof i1.BsTabControlComponent, typeof i2.BsTabPageComponent], [typeof i3.CommonModule, typeof i4.DragDropModule, typeof i5.BsNoNoscriptModule], [typeof i1.BsTabControlComponent, typeof i2.BsTabPageComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsTabControlModule, [typeof i1.BsTabControlComponent, typeof i2.BsTabPageComponent], [typeof i3.CommonModule, typeof i4.DragDropModule, typeof i5.BsLetModule, typeof i6.BsNoNoscriptModule], [typeof i1.BsTabControlComponent, typeof i2.BsTabPageComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<BsTabControlModule>;
|
|
11
12
|
}
|