@mintplayer/ng-bootstrap 15.20.4 → 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 +14 -9
- package/esm2020/splitter/src/splitter.module.mjs +7 -6
- 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 +24 -18
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +1 -1
- 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 +24 -18
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +1 -1
- 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/splitter/src/splitter.module.d.ts +2 -1
- package/tab-control/src/tab-control/tab-control.component.d.ts +12 -7
- package/tab-control/src/tab-control.module.d.ts +3 -2
|
@@ -62,9 +62,9 @@ class BsTypeaheadComponent {
|
|
|
62
62
|
this.textbox.nativeElement.focus();
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
|
-
BsTypeaheadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
66
|
-
BsTypeaheadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
67
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
65
|
+
BsTypeaheadComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
66
|
+
BsTypeaheadComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: BsTypeaheadComponent, selector: "bs-typeahead", inputs: { searchterm: "searchterm", isLoadingText: "isLoadingText", noSuggestionsText: "noSuggestionsText", suggestions: "suggestions" }, outputs: { provideSuggestions: "provideSuggestions", suggestionSelected: "suggestionSelected", searchtermChange: "searchtermChange", submitted: "submitted" }, viewQueries: [{ propertyName: "textbox", first: true, predicate: ["textbox"], descendants: true }], ngImport: i0, template: "<!-- <bs-dropdown [(isOpen)]=\"isOpen\" [hasBackdrop]=\"false\"></bs-dropdown> -->\n<bs-has-overlay></bs-has-overlay>\n<bs-form>\n <div bsDropdown [(isOpen)]=\"isOpen\" [hasBackdrop]=\"false\" [sameDropdownWidth]=\"true\">\n <input type=\"text\" #textbox [(ngModel)]=\"searchterm\" (ngModelChange)=\"onProvideSuggestions($event)\" (keyup.enter)=\"onSubmit()\" />\n <bs-dropdown-menu *bsDropdownMenu>\n <bs-progress *ngIf=\"isLoading$ | async\" [height]=\"2\" [isIndeterminate]=\"true\"></bs-progress>\n <bs-dropdown-item *ngIf=\"isLoading$ | async\" [disabled]=\"true\">\n {{ isLoadingText }}\n </bs-dropdown-item>\n <ng-container *ngIf=\"(isLoading$ | async) === false\">\n <bs-dropdown-item *ngIf=\"showNoSuggestions$ | async\" [disabled]=\"true\">\n {{ noSuggestionsText }}\n </bs-dropdown-item>\n <bs-dropdown-item *ngFor=\"let suggestion of (suggestions$ | async)\" (click)=\"suggestionClicked(suggestion)\">\n {{ suggestion.text }}\n </bs-dropdown-item>\n </ng-container>\n </bs-dropdown-menu>\n </div>\n</bs-form>", styles: ["bs-progress{margin-top:-8px;margin-bottom:6px}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.BsFormComponent, selector: "bs-form", outputs: ["submitted"] }, { kind: "directive", type: i3.BsFormControlDirective, selector: "bs-form input:not(.no-form-control), bs-form textarea:not(.no-form-control)" }, { kind: "directive", type: i4.BsDropdownDirective, selector: "[bsDropdown]", inputs: ["hasBackdrop", "sameWidth", "closeOnClickOutside", "sameDropdownWidth", "isOpen"], outputs: ["isOpenChange"] }, { kind: "directive", type: i4.BsDropdownMenuDirective, selector: "[bsDropdownMenu]" }, { kind: "component", type: i5.BsHasOverlayComponent, selector: "bs-has-overlay" }, { kind: "component", type: i6.BsDropdownMenuComponent, selector: "bs-dropdown-menu", inputs: ["maxHeight"] }, { kind: "component", type: i6.BsDropdownItemComponent, selector: "bs-dropdown-item", inputs: ["isSelected", "disabled"] }, { kind: "component", type: i7.BsProgressComponent, selector: "bs-progress", inputs: ["height", "isIndeterminate"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
67
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadComponent, decorators: [{
|
|
68
68
|
type: Component,
|
|
69
69
|
args: [{ selector: 'bs-typeahead', template: "<!-- <bs-dropdown [(isOpen)]=\"isOpen\" [hasBackdrop]=\"false\"></bs-dropdown> -->\n<bs-has-overlay></bs-has-overlay>\n<bs-form>\n <div bsDropdown [(isOpen)]=\"isOpen\" [hasBackdrop]=\"false\" [sameDropdownWidth]=\"true\">\n <input type=\"text\" #textbox [(ngModel)]=\"searchterm\" (ngModelChange)=\"onProvideSuggestions($event)\" (keyup.enter)=\"onSubmit()\" />\n <bs-dropdown-menu *bsDropdownMenu>\n <bs-progress *ngIf=\"isLoading$ | async\" [height]=\"2\" [isIndeterminate]=\"true\"></bs-progress>\n <bs-dropdown-item *ngIf=\"isLoading$ | async\" [disabled]=\"true\">\n {{ isLoadingText }}\n </bs-dropdown-item>\n <ng-container *ngIf=\"(isLoading$ | async) === false\">\n <bs-dropdown-item *ngIf=\"showNoSuggestions$ | async\" [disabled]=\"true\">\n {{ noSuggestionsText }}\n </bs-dropdown-item>\n <bs-dropdown-item *ngFor=\"let suggestion of (suggestions$ | async)\" (click)=\"suggestionClicked(suggestion)\">\n {{ suggestion.text }}\n </bs-dropdown-item>\n </ng-container>\n </bs-dropdown-menu>\n </div>\n</bs-form>", styles: ["bs-progress{margin-top:-8px;margin-bottom:6px}\n"] }]
|
|
70
70
|
}], ctorParameters: function () { return []; }, propDecorators: { textbox: [{
|
|
@@ -90,22 +90,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
90
90
|
|
|
91
91
|
class BsTypeaheadModule {
|
|
92
92
|
}
|
|
93
|
-
BsTypeaheadModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
94
|
-
BsTypeaheadModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
93
|
+
BsTypeaheadModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
94
|
+
BsTypeaheadModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadModule, declarations: [BsTypeaheadComponent], imports: [CommonModule,
|
|
95
95
|
FormsModule,
|
|
96
96
|
BsFormModule,
|
|
97
97
|
BsDropdownModule,
|
|
98
98
|
BsDropdownMenuModule,
|
|
99
99
|
BsProgressBarModule,
|
|
100
100
|
BsHasOverlayModule], exports: [BsTypeaheadComponent] });
|
|
101
|
-
BsTypeaheadModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
101
|
+
BsTypeaheadModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadModule, imports: [CommonModule,
|
|
102
102
|
FormsModule,
|
|
103
103
|
BsFormModule,
|
|
104
104
|
BsDropdownModule,
|
|
105
105
|
BsDropdownMenuModule,
|
|
106
106
|
BsProgressBarModule,
|
|
107
107
|
BsHasOverlayModule] });
|
|
108
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsTypeaheadModule, decorators: [{
|
|
109
109
|
type: NgModule,
|
|
110
110
|
args: [{
|
|
111
111
|
declarations: [
|
|
@@ -71,9 +71,9 @@ class BsUserAgentDirective {
|
|
|
71
71
|
});
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
|
-
BsUserAgentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
75
|
-
BsUserAgentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
76
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
74
|
+
BsUserAgentDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentDirective, deps: [{ token: PLATFORM_ID }], target: i0.ɵɵFactoryTarget.Directive });
|
|
75
|
+
BsUserAgentDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsUserAgentDirective, selector: "[bsUserAgent]", outputs: { detected: "detected" }, host: { properties: { "class.os-android": "this.isAndroid", "class.os-ios": "this.isIos", "class.os-windows": "this.isWindows", "class": "this.browserClass" } }, ngImport: i0 });
|
|
76
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentDirective, decorators: [{
|
|
77
77
|
type: Directive,
|
|
78
78
|
args: [{
|
|
79
79
|
selector: '[bsUserAgent]'
|
|
@@ -99,10 +99,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
99
99
|
|
|
100
100
|
class BsUserAgentModule {
|
|
101
101
|
}
|
|
102
|
-
BsUserAgentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
103
|
-
BsUserAgentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
104
|
-
BsUserAgentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
102
|
+
BsUserAgentModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
103
|
+
BsUserAgentModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentModule, declarations: [BsUserAgentDirective], imports: [CommonModule], exports: [BsUserAgentDirective] });
|
|
104
|
+
BsUserAgentModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentModule, imports: [CommonModule] });
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUserAgentModule, decorators: [{
|
|
106
106
|
type: NgModule,
|
|
107
107
|
args: [{
|
|
108
108
|
declarations: [
|
|
@@ -32,9 +32,9 @@ class BsFontColorPipe {
|
|
|
32
32
|
return CONTRAST_HEX;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
BsFontColorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
36
|
-
BsFontColorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
35
|
+
BsFontColorPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
36
|
+
BsFontColorPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipe, name: "bsFontColor" });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipe, decorators: [{
|
|
38
38
|
type: Pipe,
|
|
39
39
|
args: [{
|
|
40
40
|
name: 'bsFontColor'
|
|
@@ -43,10 +43,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
43
43
|
|
|
44
44
|
class BsFontColorPipeModule {
|
|
45
45
|
}
|
|
46
|
-
BsFontColorPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
47
|
-
BsFontColorPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
48
|
-
BsFontColorPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
49
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
46
|
+
BsFontColorPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
47
|
+
BsFontColorPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipeModule, declarations: [BsFontColorPipe], imports: [CommonModule], exports: [BsFontColorPipe] });
|
|
48
|
+
BsFontColorPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipeModule, imports: [CommonModule] });
|
|
49
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsFontColorPipeModule, decorators: [{
|
|
50
50
|
type: NgModule,
|
|
51
51
|
args: [{
|
|
52
52
|
declarations: [
|
|
@@ -66,9 +66,9 @@ class UcFirstPipe {
|
|
|
66
66
|
return value[0].toUpperCase() + value.slice(1);
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
|
-
UcFirstPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
70
|
-
UcFirstPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
69
|
+
UcFirstPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: UcFirstPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
70
|
+
UcFirstPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: UcFirstPipe, name: "ucFirst" });
|
|
71
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: UcFirstPipe, decorators: [{
|
|
72
72
|
type: Pipe,
|
|
73
73
|
args: [{
|
|
74
74
|
name: 'ucFirst'
|
|
@@ -77,10 +77,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
77
77
|
|
|
78
78
|
class BsUcFirstPipeModule {
|
|
79
79
|
}
|
|
80
|
-
BsUcFirstPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
81
|
-
BsUcFirstPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
82
|
-
BsUcFirstPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
80
|
+
BsUcFirstPipeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUcFirstPipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
81
|
+
BsUcFirstPipeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsUcFirstPipeModule, declarations: [UcFirstPipe], imports: [CommonModule], exports: [UcFirstPipe] });
|
|
82
|
+
BsUcFirstPipeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUcFirstPipeModule, imports: [CommonModule] });
|
|
83
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUcFirstPipeModule, decorators: [{
|
|
84
84
|
type: NgModule,
|
|
85
85
|
args: [{
|
|
86
86
|
declarations: [
|
|
@@ -100,9 +100,9 @@ class BsInListPipe {
|
|
|
100
100
|
return items.some(item => item.id === parameter);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
|
-
BsInListPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
104
|
-
BsInListPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
103
|
+
BsInListPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInListPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
104
|
+
BsInListPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsInListPipe, name: "inList" });
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInListPipe, decorators: [{
|
|
106
106
|
type: Pipe,
|
|
107
107
|
args: [{
|
|
108
108
|
name: 'inList'
|
|
@@ -111,10 +111,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
111
111
|
|
|
112
112
|
class BsInListModule {
|
|
113
113
|
}
|
|
114
|
-
BsInListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
115
|
-
BsInListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
116
|
-
BsInListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
114
|
+
BsInListModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
115
|
+
BsInListModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsInListModule, declarations: [BsInListPipe], imports: [CommonModule], exports: [BsInListPipe] });
|
|
116
|
+
BsInListModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInListModule, imports: [CommonModule] });
|
|
117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInListModule, decorators: [{
|
|
118
118
|
type: NgModule,
|
|
119
119
|
args: [{
|
|
120
120
|
declarations: [
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DoCheck, ViewContainerRef, TemplateRef } from "@angular/core";
|
|
2
|
+
import { BsInstanceOfContext } from "../interfaces/instance-of-context";
|
|
3
|
+
import { AbstractType } from "../types/abstract.type";
|
|
4
|
+
import { BsInstanceOfDirective } from "./instanceof.directive";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BsInstanceofCaseDirective<T> implements DoCheck {
|
|
7
|
+
private bsInstanceof;
|
|
8
|
+
bsInstanceofCase: AbstractType<T>;
|
|
9
|
+
private _view;
|
|
10
|
+
constructor(viewContainer: ViewContainerRef, templateRef: TemplateRef<BsInstanceOfContext<T>>, bsInstanceof: BsInstanceOfDirective);
|
|
11
|
+
/**
|
|
12
|
+
* Asserts the correct type of the context for the template that `InstanceofCaseDirective` will render.
|
|
13
|
+
*
|
|
14
|
+
* The presence of this method is a signal to the Ivy template type-check compiler that the
|
|
15
|
+
* `InstanceofCaseDirective` structural directive renders its template with a specific context type.
|
|
16
|
+
* Magic happens here!
|
|
17
|
+
*/
|
|
18
|
+
static ngTemplateContextGuard<T>(dir: BsInstanceofCaseDirective<T>, ctx: any): ctx is BsInstanceOfContext<Exclude<T, false | 0 | '' | null | undefined>>;
|
|
19
|
+
ngDoCheck(): void;
|
|
20
|
+
throwError(directiveName: string): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsInstanceofCaseDirective<any>, [null, null, { optional: true; host: true; }]>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsInstanceofCaseDirective<any>, "[bsInstanceofCase]", never, { "bsInstanceofCase": "bsInstanceofCase"; }, {}, never, never, false, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ViewContainerRef, TemplateRef } from "@angular/core";
|
|
2
|
+
import { BsInstanceOfContext } from "../interfaces/instance-of-context";
|
|
3
|
+
import { BsInstanceOfDirective } from "./instanceof.directive";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BsInstanceOfDefaultDirective {
|
|
6
|
+
constructor(viewContainer: ViewContainerRef, templateRef: TemplateRef<BsInstanceOfContext>, bsInstanceof: BsInstanceOfDirective);
|
|
7
|
+
throwError(directiveName: string): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsInstanceOfDefaultDirective, [null, null, { optional: true; host: true; }]>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsInstanceOfDefaultDirective, "[bsInstanceofDefault]", never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SwitchView } from "./switch-view";
|
|
2
|
+
import { AbstractType } from "../types/abstract.type";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BsInstanceOfDirective {
|
|
5
|
+
private _defaultViews;
|
|
6
|
+
private _defaultUsed;
|
|
7
|
+
private _caseCount;
|
|
8
|
+
private _lastCaseCheckIndex;
|
|
9
|
+
private _lastCasesMatched;
|
|
10
|
+
private _instanceof;
|
|
11
|
+
set bsInstanceof(newValue: any);
|
|
12
|
+
/** @internal */
|
|
13
|
+
_addCase(): number;
|
|
14
|
+
/** @internal */
|
|
15
|
+
_addDefault(view: SwitchView): void;
|
|
16
|
+
/** @internal */
|
|
17
|
+
_matchCase<T>(type: AbstractType<T>): T | undefined;
|
|
18
|
+
private _updateDefaultCases;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BsInstanceOfDirective, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BsInstanceOfDirective, "[bsInstanceof]", never, { "bsInstanceof": "bsInstanceof"; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -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",
|
|
@@ -5,8 +5,9 @@ import * as i3 from "./element-at/element-at.pipe";
|
|
|
5
5
|
import * as i4 from "@angular/common";
|
|
6
6
|
import * as i5 from "@angular/cdk/portal";
|
|
7
7
|
import * as i6 from "@mintplayer/ng-bootstrap/let";
|
|
8
|
+
import * as i7 from "@mintplayer/ng-bootstrap/user-agent";
|
|
8
9
|
export declare class BsSplitterModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<BsSplitterModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BsSplitterModule, [typeof i1.BsSplitterComponent, typeof i2.BsSplitPanelComponent, typeof i3.BsElementAtPipe], [typeof i4.CommonModule, typeof i5.PortalModule, typeof i6.BsLetModule], [typeof i1.BsSplitterComponent, typeof i2.BsSplitPanelComponent, typeof i3.BsElementAtPipe]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BsSplitterModule, [typeof i1.BsSplitterComponent, typeof i2.BsSplitPanelComponent, typeof i3.BsElementAtPipe], [typeof i4.CommonModule, typeof i5.PortalModule, typeof i6.BsLetModule, typeof i7.BsUserAgentModule], [typeof i1.BsSplitterComponent, typeof i2.BsSplitPanelComponent, typeof i3.BsElementAtPipe]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<BsSplitterModule>;
|
|
12
13
|
}
|
|
@@ -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
|
}
|