@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
|
@@ -4,19 +4,19 @@ import { CommonModule } from '@angular/common';
|
|
|
4
4
|
|
|
5
5
|
class BsInputGroupComponent {
|
|
6
6
|
}
|
|
7
|
-
BsInputGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
8
|
-
BsInputGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
7
|
+
BsInputGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
BsInputGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: BsInputGroupComponent, selector: "bs-input-group", ngImport: i0, template: "<div class=\"input-group\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\n"] });
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupComponent, decorators: [{
|
|
10
10
|
type: Component,
|
|
11
11
|
args: [{ selector: 'bs-input-group', template: "<div class=\"input-group\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep .input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}:host ::ng-deep .input-group>.form-control,:host ::ng-deep .input-group>.form-select,:host ::ng-deep .input-group>.form-floating{position:relative;flex:1 1 auto;width:1%;min-width:0}:host ::ng-deep .input-group>.form-control:focus,:host ::ng-deep .input-group>.form-select:focus,:host ::ng-deep .input-group>.form-floating:focus-within{z-index:5}:host ::ng-deep .input-group .btn{position:relative;z-index:2}:host ::ng-deep .input-group .btn:focus{z-index:5}:host ::ng-deep .input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.375rem}:host ::ng-deep .input-group-lg>.form-control,:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-lg>.input-group-text,:host ::ng-deep .input-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;border-radius:.5rem}:host ::ng-deep .input-group-sm>.form-control,:host ::ng-deep .input-group-sm>.form-select,:host ::ng-deep .input-group-sm>.input-group-text,:host ::ng-deep .input-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;border-radius:.25rem}:host ::ng-deep .input-group-lg>.form-select,:host ::ng-deep .input-group-sm>.form-select{padding-right:3rem}:host ::ng-deep .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,:host ::ng-deep .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),:host ::ng-deep .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,:host ::ng-deep .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select{border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-control,:host ::ng-deep .input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}\n"] }]
|
|
12
12
|
}] });
|
|
13
13
|
|
|
14
14
|
class BsInputGroupModule {
|
|
15
15
|
}
|
|
16
|
-
BsInputGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
17
|
-
BsInputGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
18
|
-
BsInputGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
16
|
+
BsInputGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
17
|
+
BsInputGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupModule, declarations: [BsInputGroupComponent], imports: [CommonModule], exports: [BsInputGroupComponent] });
|
|
18
|
+
BsInputGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupModule, imports: [CommonModule] });
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInputGroupModule, decorators: [{
|
|
20
20
|
type: NgModule,
|
|
21
21
|
args: [{
|
|
22
22
|
declarations: [BsInputGroupComponent],
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Directive, Input, Optional, Host, Pipe, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class BsInstanceOfDirective {
|
|
6
|
+
constructor() {
|
|
7
|
+
this._defaultUsed = false;
|
|
8
|
+
this._caseCount = 0;
|
|
9
|
+
this._lastCaseCheckIndex = 0;
|
|
10
|
+
this._lastCasesMatched = false;
|
|
11
|
+
}
|
|
12
|
+
set bsInstanceof(newValue) {
|
|
13
|
+
this._instanceof = newValue;
|
|
14
|
+
if (this._caseCount === 0) {
|
|
15
|
+
this._updateDefaultCases(true);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
/** @internal */
|
|
19
|
+
_addCase() {
|
|
20
|
+
return this._caseCount++;
|
|
21
|
+
}
|
|
22
|
+
/** @internal */
|
|
23
|
+
_addDefault(view) {
|
|
24
|
+
if (!this._defaultViews) {
|
|
25
|
+
this._defaultViews = [];
|
|
26
|
+
}
|
|
27
|
+
this._defaultViews.push(view);
|
|
28
|
+
}
|
|
29
|
+
/** @internal */
|
|
30
|
+
_matchCase(type) {
|
|
31
|
+
const matched = this._instanceof instanceof type
|
|
32
|
+
? this._instanceof
|
|
33
|
+
: undefined;
|
|
34
|
+
this._lastCasesMatched = this._lastCasesMatched || !!matched;
|
|
35
|
+
this._lastCaseCheckIndex++;
|
|
36
|
+
if (this._lastCaseCheckIndex === this._caseCount) {
|
|
37
|
+
this._updateDefaultCases(!this._lastCasesMatched);
|
|
38
|
+
this._lastCaseCheckIndex = 0;
|
|
39
|
+
this._lastCasesMatched = false;
|
|
40
|
+
}
|
|
41
|
+
// debugger;
|
|
42
|
+
return matched;
|
|
43
|
+
}
|
|
44
|
+
_updateDefaultCases(useDefault) {
|
|
45
|
+
if (this._defaultViews && useDefault !== this._defaultUsed) {
|
|
46
|
+
this._defaultUsed = useDefault;
|
|
47
|
+
for (let i = 0; i < this._defaultViews.length; i++) {
|
|
48
|
+
const defaultView = this._defaultViews[i];
|
|
49
|
+
defaultView.enforceState(useDefault);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
BsInstanceOfDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
55
|
+
BsInstanceOfDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsInstanceOfDirective, selector: "[bsInstanceof]", inputs: { bsInstanceof: "bsInstanceof" }, ngImport: i0 });
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfDirective, decorators: [{
|
|
57
|
+
type: Directive,
|
|
58
|
+
args: [{
|
|
59
|
+
selector: '[bsInstanceof]',
|
|
60
|
+
}]
|
|
61
|
+
}], propDecorators: { bsInstanceof: [{
|
|
62
|
+
type: Input
|
|
63
|
+
}] } });
|
|
64
|
+
|
|
65
|
+
class BsInstanceOfContext {
|
|
66
|
+
constructor() {
|
|
67
|
+
this.$implicit = null;
|
|
68
|
+
this.bsInstanceofCase = null;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
class SwitchView {
|
|
73
|
+
constructor(_viewContainerRef, _templateRef) {
|
|
74
|
+
this._viewContainerRef = _viewContainerRef;
|
|
75
|
+
this._templateRef = _templateRef;
|
|
76
|
+
this._created = false;
|
|
77
|
+
this._context = new BsInstanceOfContext();
|
|
78
|
+
}
|
|
79
|
+
enforceState(result) {
|
|
80
|
+
if (result && !this._created) {
|
|
81
|
+
this.create(result);
|
|
82
|
+
}
|
|
83
|
+
else if (!result && this._created) {
|
|
84
|
+
this.destroy();
|
|
85
|
+
}
|
|
86
|
+
else if (result) {
|
|
87
|
+
this._context.$implicit = this._context.bsInstanceofCase = result;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
create(result) {
|
|
91
|
+
this._created = true;
|
|
92
|
+
this._context.$implicit = this._context.bsInstanceofCase = result;
|
|
93
|
+
this._viewContainerRef.createEmbeddedView(this._templateRef, this._context);
|
|
94
|
+
}
|
|
95
|
+
destroy() {
|
|
96
|
+
this._created = false;
|
|
97
|
+
this._viewContainerRef.clear();
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
class BsInstanceofCaseDirective {
|
|
102
|
+
constructor(viewContainer, templateRef, bsInstanceof) {
|
|
103
|
+
this.bsInstanceof = bsInstanceof;
|
|
104
|
+
if (!bsInstanceof) {
|
|
105
|
+
this.throwError('bsInstanceofCase');
|
|
106
|
+
}
|
|
107
|
+
bsInstanceof._addCase();
|
|
108
|
+
this._view = new SwitchView(viewContainer, templateRef);
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Asserts the correct type of the context for the template that `InstanceofCaseDirective` will render.
|
|
112
|
+
*
|
|
113
|
+
* The presence of this method is a signal to the Ivy template type-check compiler that the
|
|
114
|
+
* `InstanceofCaseDirective` structural directive renders its template with a specific context type.
|
|
115
|
+
* Magic happens here!
|
|
116
|
+
*/
|
|
117
|
+
static ngTemplateContextGuard(dir, ctx) {
|
|
118
|
+
return true;
|
|
119
|
+
}
|
|
120
|
+
ngDoCheck() {
|
|
121
|
+
this._view.enforceState(this.bsInstanceof._matchCase(this.bsInstanceofCase));
|
|
122
|
+
}
|
|
123
|
+
throwError(directiveName) {
|
|
124
|
+
throw new Error(`An element with the "${directiveName}" attribute (matching the "${directiveName}" directive) must be located inside an element with the "bsInstanceof" attribute (matching "BsInstanceofDirective" directive)`);
|
|
125
|
+
}
|
|
126
|
+
;
|
|
127
|
+
}
|
|
128
|
+
BsInstanceofCaseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceofCaseDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: BsInstanceOfDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
129
|
+
BsInstanceofCaseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsInstanceofCaseDirective, selector: "[bsInstanceofCase]", inputs: { bsInstanceofCase: "bsInstanceofCase" }, ngImport: i0 });
|
|
130
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceofCaseDirective, decorators: [{
|
|
131
|
+
type: Directive,
|
|
132
|
+
args: [{
|
|
133
|
+
selector: '[bsInstanceofCase]',
|
|
134
|
+
}]
|
|
135
|
+
}], ctorParameters: function () {
|
|
136
|
+
return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: BsInstanceOfDirective, decorators: [{
|
|
137
|
+
type: Optional
|
|
138
|
+
}, {
|
|
139
|
+
type: Host
|
|
140
|
+
}] }];
|
|
141
|
+
}, propDecorators: { bsInstanceofCase: [{
|
|
142
|
+
type: Input
|
|
143
|
+
}] } });
|
|
144
|
+
|
|
145
|
+
class BsInstanceOfDefaultDirective {
|
|
146
|
+
constructor(viewContainer, templateRef, bsInstanceof) {
|
|
147
|
+
if (!bsInstanceof) {
|
|
148
|
+
this.throwError('bsInstanceofDefault');
|
|
149
|
+
}
|
|
150
|
+
bsInstanceof._addDefault(new SwitchView(viewContainer, templateRef));
|
|
151
|
+
}
|
|
152
|
+
throwError(directiveName) {
|
|
153
|
+
throw new Error(`An element with the "${directiveName}" attribute (matching the "${directiveName}" directive) must be located inside an element with the "bsInstanceof" attribute (matching "BsInstanceofDirective" directive)`);
|
|
154
|
+
}
|
|
155
|
+
;
|
|
156
|
+
}
|
|
157
|
+
BsInstanceOfDefaultDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfDefaultDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: BsInstanceOfDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
158
|
+
BsInstanceOfDefaultDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsInstanceOfDefaultDirective, selector: "[bsInstanceofDefault]", ngImport: i0 });
|
|
159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfDefaultDirective, decorators: [{
|
|
160
|
+
type: Directive,
|
|
161
|
+
args: [{
|
|
162
|
+
selector: '[bsInstanceofDefault]',
|
|
163
|
+
}]
|
|
164
|
+
}], ctorParameters: function () {
|
|
165
|
+
return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: BsInstanceOfDirective, decorators: [{
|
|
166
|
+
type: Optional
|
|
167
|
+
}, {
|
|
168
|
+
type: Host
|
|
169
|
+
}] }];
|
|
170
|
+
} });
|
|
171
|
+
|
|
172
|
+
class BsInstanceofPipe {
|
|
173
|
+
transform(value, type) {
|
|
174
|
+
return value instanceof type ? value : undefined;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
BsInstanceofPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceofPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
178
|
+
BsInstanceofPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceofPipe, name: "bsInstanceof" });
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceofPipe, decorators: [{
|
|
180
|
+
type: Pipe,
|
|
181
|
+
args: [{
|
|
182
|
+
name: 'bsInstanceof',
|
|
183
|
+
pure: true,
|
|
184
|
+
}]
|
|
185
|
+
}] });
|
|
186
|
+
|
|
187
|
+
class BsInstanceOfModule {
|
|
188
|
+
}
|
|
189
|
+
BsInstanceOfModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
190
|
+
BsInstanceOfModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfModule, declarations: [BsInstanceofPipe,
|
|
191
|
+
BsInstanceOfDirective,
|
|
192
|
+
BsInstanceofCaseDirective,
|
|
193
|
+
BsInstanceOfDefaultDirective], imports: [CommonModule], exports: [BsInstanceofPipe,
|
|
194
|
+
BsInstanceOfDirective,
|
|
195
|
+
BsInstanceofCaseDirective,
|
|
196
|
+
BsInstanceOfDefaultDirective] });
|
|
197
|
+
BsInstanceOfModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfModule, imports: [CommonModule] });
|
|
198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsInstanceOfModule, decorators: [{
|
|
199
|
+
type: NgModule,
|
|
200
|
+
args: [{
|
|
201
|
+
declarations: [
|
|
202
|
+
BsInstanceofPipe,
|
|
203
|
+
BsInstanceOfDirective,
|
|
204
|
+
BsInstanceofCaseDirective,
|
|
205
|
+
BsInstanceOfDefaultDirective
|
|
206
|
+
],
|
|
207
|
+
imports: [CommonModule],
|
|
208
|
+
exports: [
|
|
209
|
+
BsInstanceofPipe,
|
|
210
|
+
BsInstanceOfDirective,
|
|
211
|
+
BsInstanceofCaseDirective,
|
|
212
|
+
BsInstanceOfDefaultDirective
|
|
213
|
+
]
|
|
214
|
+
}]
|
|
215
|
+
}] });
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* Generated bundle index. Do not edit.
|
|
219
|
+
*/
|
|
220
|
+
|
|
221
|
+
export { BsInstanceOfContext, BsInstanceOfDefaultDirective, BsInstanceOfDirective, BsInstanceOfModule, BsInstanceofCaseDirective, BsInstanceofPipe, SwitchView };
|
|
222
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-instance-of.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-instance-of.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/interfaces/instance-of-context.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/switch-view.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof-case.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/directives/instanceof-default.directive.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/pipes/instance-of.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/src/instance-of.module.ts","../../../../libs/mintplayer-ng-bootstrap/instance-of/mintplayer-ng-bootstrap-instance-of.ts"],"sourcesContent":["import { Directive, Input } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { AbstractType } from \"../types/abstract.type\";\n\n@Directive({\n selector: '[bsInstanceof]',\n})\nexport class BsInstanceOfDirective {\n private _defaultViews!: SwitchView[];\n private _defaultUsed = false;\n private _caseCount = 0;\n private _lastCaseCheckIndex = 0;\n private _lastCasesMatched = false;\n private _instanceof: any;\n\n @Input()\n public set bsInstanceof(newValue: any) {\n this._instanceof = newValue;\n if (this._caseCount === 0) {\n this._updateDefaultCases(true);\n }\n }\n\n /** @internal */\n public _addCase(): number {\n return this._caseCount++;\n }\n\n /** @internal */\n public _addDefault(view: SwitchView): void {\n if (!this._defaultViews) {\n this._defaultViews = [];\n }\n this._defaultViews.push(view);\n }\n\n /** @internal */\n public _matchCase<T>(type: AbstractType<T>): T | undefined {\n const matched =\n this._instanceof instanceof type\n ? this._instanceof\n : undefined;\n this._lastCasesMatched = this._lastCasesMatched || !!matched;\n this._lastCaseCheckIndex++;\n if (this._lastCaseCheckIndex === this._caseCount) {\n this._updateDefaultCases(!this._lastCasesMatched);\n this._lastCaseCheckIndex = 0;\n this._lastCasesMatched = false;\n }\n // debugger;\n return matched;\n }\n\n private _updateDefaultCases(useDefault: boolean): void {\n if (this._defaultViews && useDefault !== this._defaultUsed) {\n this._defaultUsed = useDefault;\n for (let i = 0; i < this._defaultViews.length; i++) {\n const defaultView = this._defaultViews[i];\n defaultView.enforceState(useDefault);\n }\n }\n }\n}\n","export class BsInstanceOfContext<T = unknown> {\n public $implicit: T = null!;\n public bsInstanceofCase: T = null!;\n}","import { ViewContainerRef, TemplateRef } from \"@angular/core\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\n\nexport class SwitchView<T = unknown> {\n private _created = false;\n private _context = new BsInstanceOfContext<T>();\n \n public constructor(private _viewContainerRef: ViewContainerRef, private _templateRef: TemplateRef<BsInstanceOfContext<T>>) {}\n \n public enforceState(result?: T) {\n if (result && !this._created) {\n this.create(result);\n } else if (!result && this._created) {\n this.destroy();\n } else if (result) {\n this._context.$implicit = this._context.bsInstanceofCase = result;\n }\n }\n \n private create(result: T) {\n this._created = true;\n this._context.$implicit = this._context.bsInstanceofCase = result;\n this._viewContainerRef.createEmbeddedView(this._templateRef, this._context);\n }\n \n private destroy() {\n this._created = false;\n this._viewContainerRef.clear();\n }\n}","import { Directive, Input, DoCheck, ViewContainerRef, Optional, Host, TemplateRef } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\nimport { AbstractType } from \"../types/abstract.type\";\nimport { BsInstanceOfDirective } from \"./instanceof.directive\";\n\n@Directive({\n selector: '[bsInstanceofCase]',\n})\nexport class BsInstanceofCaseDirective<T> implements DoCheck {\n @Input() public bsInstanceofCase!: AbstractType<T>;\n\n private _view: SwitchView<T>;\n\n public constructor(\n viewContainer: ViewContainerRef,\n templateRef: TemplateRef<BsInstanceOfContext<T>>,\n @Optional() @Host() private bsInstanceof: BsInstanceOfDirective\n ) {\n if (!bsInstanceof) {\n this.throwError('bsInstanceofCase');\n }\n bsInstanceof._addCase();\n this._view = new SwitchView<T>(viewContainer, templateRef);\n }\n\n /**\n * Asserts the correct type of the context for the template that `InstanceofCaseDirective` will render.\n *\n * The presence of this method is a signal to the Ivy template type-check compiler that the\n * `InstanceofCaseDirective` structural directive renders its template with a specific context type.\n * Magic happens here!\n */\n public static ngTemplateContextGuard<T>(\n dir: BsInstanceofCaseDirective<T>,\n ctx: any\n ): ctx is BsInstanceOfContext<Exclude<T, false | 0 | '' | null | undefined>> {\n return true;\n }\n\n public ngDoCheck() {\n this._view.enforceState(\n this.bsInstanceof._matchCase(this.bsInstanceofCase)\n );\n }\n\n throwError(directiveName: string) {\n throw new Error(\n `An element with the \"${directiveName}\" attribute (matching the \"${directiveName}\" directive) must be located inside an element with the \"bsInstanceof\" attribute (matching \"BsInstanceofDirective\" directive)`\n );\n };\n}\n","import { Directive, ViewContainerRef, Optional, Host, TemplateRef } from \"@angular/core\";\nimport { SwitchView } from \"./switch-view\";\nimport { BsInstanceOfContext } from \"../interfaces/instance-of-context\";\nimport { BsInstanceOfDirective } from \"./instanceof.directive\";\n\n@Directive({\n selector: '[bsInstanceofDefault]',\n})\nexport class BsInstanceOfDefaultDirective {\n public constructor(\n viewContainer: ViewContainerRef,\n templateRef: TemplateRef<BsInstanceOfContext>,\n @Optional() @Host() bsInstanceof: BsInstanceOfDirective\n ) {\n if (!bsInstanceof) {\n this.throwError('bsInstanceofDefault');\n }\n bsInstanceof._addDefault(new SwitchView(viewContainer, templateRef));\n }\n\n throwError(directiveName: string) {\n throw new Error(\n `An element with the \"${directiveName}\" attribute (matching the \"${directiveName}\" directive) must be located inside an element with the \"bsInstanceof\" attribute (matching \"BsInstanceofDirective\" directive)`\n );\n };\n}","import { Pipe } from '@angular/core';\nimport type { PipeTransform } from '@angular/core';\nimport { AbstractType } from '../types/abstract.type';\n\n@Pipe({\n name: 'bsInstanceof',\n pure: true,\n})\nexport class BsInstanceofPipe implements PipeTransform {\n public transform<V, R>(value: V, type: AbstractType<R>): R | undefined {\n return value instanceof type ? value : undefined;\n }\n}","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsInstanceOfDirective } from './directives/instanceof.directive';\nimport { BsInstanceofCaseDirective } from './directives/instanceof-case.directive';\nimport { BsInstanceOfDefaultDirective } from './directives/instanceof-default.directive';\nimport { BsInstanceofPipe } from './pipes/instance-of.pipe';\n\n@NgModule({\n declarations: [\n BsInstanceofPipe,\n BsInstanceOfDirective,\n BsInstanceofCaseDirective,\n BsInstanceOfDefaultDirective\n ],\n imports: [CommonModule],\n exports: [\n BsInstanceofPipe,\n BsInstanceOfDirective,\n BsInstanceofCaseDirective,\n BsInstanceOfDefaultDirective\n ]\n})\nexport class BsInstanceOfModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1.BsInstanceOfDirective"],"mappings":"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"}
|
|
@@ -18,9 +18,9 @@ class BsLazyLoadDirective {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
|
-
BsLazyLoadDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
22
|
-
BsLazyLoadDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
23
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
21
|
+
BsLazyLoadDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
22
|
+
BsLazyLoadDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsLazyLoadDirective, selector: "[bsLazyLoad]", inputs: { contentNodes: "contentNodes", lazyLoad: ["bsLazyLoad", "lazyLoad"] }, ngImport: i0 });
|
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadDirective, decorators: [{
|
|
24
24
|
type: Directive,
|
|
25
25
|
args: [{
|
|
26
26
|
selector: '[bsLazyLoad]'
|
|
@@ -34,10 +34,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
34
34
|
|
|
35
35
|
class BsLazyLoadingModule {
|
|
36
36
|
}
|
|
37
|
-
BsLazyLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
38
|
-
BsLazyLoadingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
39
|
-
BsLazyLoadingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
40
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
37
|
+
BsLazyLoadingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
38
|
+
BsLazyLoadingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadingModule, declarations: [BsLazyLoadDirective], imports: [CommonModule], exports: [BsLazyLoadDirective] });
|
|
39
|
+
BsLazyLoadingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadingModule, imports: [CommonModule] });
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLazyLoadingModule, decorators: [{
|
|
41
41
|
type: NgModule,
|
|
42
42
|
args: [{
|
|
43
43
|
declarations: [
|
|
@@ -27,9 +27,9 @@ class BsLetDirective {
|
|
|
27
27
|
return true;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
BsLetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
31
|
-
BsLetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
30
|
+
BsLetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLetDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31
|
+
BsLetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.3", type: BsLetDirective, selector: "[bsLet]", inputs: { bsLet: "bsLet" }, ngImport: i0 });
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLetDirective, decorators: [{
|
|
33
33
|
type: Directive,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: '[bsLet]'
|
|
@@ -40,10 +40,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
40
40
|
|
|
41
41
|
class BsLetModule {
|
|
42
42
|
}
|
|
43
|
-
BsLetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
44
|
-
BsLetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
45
|
-
BsLetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
43
|
+
BsLetModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLetModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
44
|
+
BsLetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsLetModule, declarations: [BsLetDirective], imports: [CommonModule], exports: [BsLetDirective] });
|
|
45
|
+
BsLetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLetModule, imports: [CommonModule] });
|
|
46
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsLetModule, decorators: [{
|
|
47
47
|
type: NgModule,
|
|
48
48
|
args: [{
|
|
49
49
|
declarations: [
|
|
@@ -8,9 +8,9 @@ class BsListGroupItemComponent {
|
|
|
8
8
|
ngOnInit() {
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
BsListGroupItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
12
|
-
BsListGroupItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
11
|
+
BsListGroupItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
+
BsListGroupItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: BsListGroupItemComponent, selector: "bs-list-group-item", ngImport: i0, template: "<li class=\"list-group-item\">\n <ng-content></ng-content>\n</li>", styles: [".list-group-item{margin-bottom:-1px}\n"] });
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupItemComponent, decorators: [{
|
|
14
14
|
type: Component,
|
|
15
15
|
args: [{ selector: 'bs-list-group-item', template: "<li class=\"list-group-item\">\n <ng-content></ng-content>\n</li>", styles: [".list-group-item{margin-bottom:-1px}\n"] }]
|
|
16
16
|
}], ctorParameters: function () { return []; } });
|
|
@@ -21,9 +21,9 @@ class BsListGroupComponent {
|
|
|
21
21
|
ngOnInit() {
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
BsListGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
25
|
-
BsListGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.2", type: BsListGroupComponent, selector: "bs-list-group", queries: [{ propertyName: "items", predicate: BsListGroupItemComponent }], ngImport: i0, template: "<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>", styles: [":host ::ng-deep .list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: 1px;--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}:host ::ng-deep .list-group-numbered{list-style-type:none;counter-reset:section}:host ::ng-deep .list-group-numbered>.list-group-item:before{content:counters(section,\".\") \". \";counter-increment:section}:host ::ng-deep .list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}:host ::ng-deep .list-group-item-action:hover,:host ::ng-deep .list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}:host ::ng-deep .list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}:host ::ng-deep .list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}:host ::ng-deep .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:host ::ng-deep .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:host ::ng-deep .list-group-item.disabled,:host ::ng-deep .list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}:host ::ng-deep .list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}:host ::ng-deep .list-group-item+.list-group-item{border-top-width:0}:host ::ng-deep .list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}:host ::ng-deep .list-group-horizontal{flex-direction:row}:host ::ng-deep .list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width: 576px){:host ::ng-deep .list-group-horizontal-sm{flex-direction:row}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 768px){:host ::ng-deep .list-group-horizontal-md{flex-direction:row}:host ::ng-deep .list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 992px){:host ::ng-deep .list-group-horizontal-lg{flex-direction:row}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1200px){:host ::ng-deep .list-group-horizontal-xl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1400px){:host ::ng-deep .list-group-horizontal-xxl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}:host ::ng-deep .list-group-flush{border-radius:0}:host ::ng-deep .list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}:host ::ng-deep .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:host ::ng-deep .list-group-item-primary{color:#084298;background-color:#cfe2ff}:host ::ng-deep .list-group-item-primary.list-group-item-action:hover,:host ::ng-deep .list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}:host ::ng-deep .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}:host ::ng-deep .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}:host ::ng-deep .list-group-item-secondary.list-group-item-action:hover,:host ::ng-deep .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}:host ::ng-deep .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}:host ::ng-deep .list-group-item-success{color:#0f5132;background-color:#d1e7dd}:host ::ng-deep .list-group-item-success.list-group-item-action:hover,:host ::ng-deep .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}:host ::ng-deep .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}:host ::ng-deep .list-group-item-info{color:#055160;background-color:#cff4fc}:host ::ng-deep .list-group-item-info.list-group-item-action:hover,:host ::ng-deep .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}:host ::ng-deep .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}:host ::ng-deep .list-group-item-warning{color:#664d03;background-color:#fff3cd}:host ::ng-deep .list-group-item-warning.list-group-item-action:hover,:host ::ng-deep .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}:host ::ng-deep .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}:host ::ng-deep .list-group-item-danger{color:#842029;background-color:#f8d7da}:host ::ng-deep .list-group-item-danger.list-group-item-action:hover,:host ::ng-deep .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}:host ::ng-deep .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}:host ::ng-deep .list-group-item-light{color:#636464;background-color:#fefefe}:host ::ng-deep .list-group-item-light.list-group-item-action:hover,:host ::ng-deep .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}:host ::ng-deep .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}:host ::ng-deep .list-group-item-dark{color:#141619;background-color:#d3d3d4}:host ::ng-deep .list-group-item-dark.list-group-item-action:hover,:host ::ng-deep .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}:host ::ng-deep .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}\n"] });
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
24
|
+
BsListGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
+
BsListGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: BsListGroupComponent, selector: "bs-list-group", queries: [{ propertyName: "items", predicate: BsListGroupItemComponent }], ngImport: i0, template: "<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>", styles: [":host ::ng-deep .list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: 1px;--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}:host ::ng-deep .list-group-numbered{list-style-type:none;counter-reset:section}:host ::ng-deep .list-group-numbered>.list-group-item:before{content:counters(section,\".\") \". \";counter-increment:section}:host ::ng-deep .list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}:host ::ng-deep .list-group-item-action:hover,:host ::ng-deep .list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}:host ::ng-deep .list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}:host ::ng-deep .list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}:host ::ng-deep .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:host ::ng-deep .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:host ::ng-deep .list-group-item.disabled,:host ::ng-deep .list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}:host ::ng-deep .list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}:host ::ng-deep .list-group-item+.list-group-item{border-top-width:0}:host ::ng-deep .list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}:host ::ng-deep .list-group-horizontal{flex-direction:row}:host ::ng-deep .list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width: 576px){:host ::ng-deep .list-group-horizontal-sm{flex-direction:row}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 768px){:host ::ng-deep .list-group-horizontal-md{flex-direction:row}:host ::ng-deep .list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 992px){:host ::ng-deep .list-group-horizontal-lg{flex-direction:row}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1200px){:host ::ng-deep .list-group-horizontal-xl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1400px){:host ::ng-deep .list-group-horizontal-xxl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}:host ::ng-deep .list-group-flush{border-radius:0}:host ::ng-deep .list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}:host ::ng-deep .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:host ::ng-deep .list-group-item-primary{color:#084298;background-color:#cfe2ff}:host ::ng-deep .list-group-item-primary.list-group-item-action:hover,:host ::ng-deep .list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}:host ::ng-deep .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}:host ::ng-deep .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}:host ::ng-deep .list-group-item-secondary.list-group-item-action:hover,:host ::ng-deep .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}:host ::ng-deep .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}:host ::ng-deep .list-group-item-success{color:#0f5132;background-color:#d1e7dd}:host ::ng-deep .list-group-item-success.list-group-item-action:hover,:host ::ng-deep .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}:host ::ng-deep .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}:host ::ng-deep .list-group-item-info{color:#055160;background-color:#cff4fc}:host ::ng-deep .list-group-item-info.list-group-item-action:hover,:host ::ng-deep .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}:host ::ng-deep .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}:host ::ng-deep .list-group-item-warning{color:#664d03;background-color:#fff3cd}:host ::ng-deep .list-group-item-warning.list-group-item-action:hover,:host ::ng-deep .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}:host ::ng-deep .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}:host ::ng-deep .list-group-item-danger{color:#842029;background-color:#f8d7da}:host ::ng-deep .list-group-item-danger.list-group-item-action:hover,:host ::ng-deep .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}:host ::ng-deep .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}:host ::ng-deep .list-group-item-light{color:#636464;background-color:#fefefe}:host ::ng-deep .list-group-item-light.list-group-item-action:hover,:host ::ng-deep .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}:host ::ng-deep .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}:host ::ng-deep .list-group-item-dark{color:#141619;background-color:#d3d3d4}:host ::ng-deep .list-group-item-dark.list-group-item-action:hover,:host ::ng-deep .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}:host ::ng-deep .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}\n"] });
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupComponent, decorators: [{
|
|
27
27
|
type: Component,
|
|
28
28
|
args: [{ selector: 'bs-list-group', template: "<ul class=\"list-group mt-0\">\n <ng-content></ng-content>\n</ul>", styles: [":host ::ng-deep .list-group{--bs-list-group-color: #212529;--bs-list-group-bg: #fff;--bs-list-group-border-color: rgba(0, 0, 0, .125);--bs-list-group-border-width: 1px;--bs-list-group-border-radius: .375rem;--bs-list-group-item-padding-x: 1rem;--bs-list-group-item-padding-y: .5rem;--bs-list-group-action-color: #495057;--bs-list-group-action-hover-color: #495057;--bs-list-group-action-hover-bg: #f8f9fa;--bs-list-group-action-active-color: #212529;--bs-list-group-action-active-bg: #e9ecef;--bs-list-group-disabled-color: #6c757d;--bs-list-group-disabled-bg: #fff;--bs-list-group-active-color: #fff;--bs-list-group-active-bg: #0d6efd;--bs-list-group-active-border-color: #0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}:host ::ng-deep .list-group-numbered{list-style-type:none;counter-reset:section}:host ::ng-deep .list-group-numbered>.list-group-item:before{content:counters(section,\".\") \". \";counter-increment:section}:host ::ng-deep .list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}:host ::ng-deep .list-group-item-action:hover,:host ::ng-deep .list-group-item-action:focus{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}:host ::ng-deep .list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}:host ::ng-deep .list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}:host ::ng-deep .list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}:host ::ng-deep .list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}:host ::ng-deep .list-group-item.disabled,:host ::ng-deep .list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}:host ::ng-deep .list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}:host ::ng-deep .list-group-item+.list-group-item{border-top-width:0}:host ::ng-deep .list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}:host ::ng-deep .list-group-horizontal{flex-direction:row}:host ::ng-deep .list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width: 576px){:host ::ng-deep .list-group-horizontal-sm{flex-direction:row}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 768px){:host ::ng-deep .list-group-horizontal-md{flex-direction:row}:host ::ng-deep .list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 992px){:host ::ng-deep .list-group-horizontal-lg{flex-direction:row}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1200px){:host ::ng-deep .list-group-horizontal-xl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width: 1400px){:host ::ng-deep .list-group-horizontal-xxl{flex-direction:row}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item.active{margin-top:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}:host ::ng-deep .list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}:host ::ng-deep .list-group-flush{border-radius:0}:host ::ng-deep .list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}:host ::ng-deep .list-group-flush>.list-group-item:last-child{border-bottom-width:0}:host ::ng-deep .list-group-item-primary{color:#084298;background-color:#cfe2ff}:host ::ng-deep .list-group-item-primary.list-group-item-action:hover,:host ::ng-deep .list-group-item-primary.list-group-item-action:focus{color:#084298;background-color:#bacbe6}:host ::ng-deep .list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}:host ::ng-deep .list-group-item-secondary{color:#41464b;background-color:#e2e3e5}:host ::ng-deep .list-group-item-secondary.list-group-item-action:hover,:host ::ng-deep .list-group-item-secondary.list-group-item-action:focus{color:#41464b;background-color:#cbccce}:host ::ng-deep .list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}:host ::ng-deep .list-group-item-success{color:#0f5132;background-color:#d1e7dd}:host ::ng-deep .list-group-item-success.list-group-item-action:hover,:host ::ng-deep .list-group-item-success.list-group-item-action:focus{color:#0f5132;background-color:#bcd0c7}:host ::ng-deep .list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}:host ::ng-deep .list-group-item-info{color:#055160;background-color:#cff4fc}:host ::ng-deep .list-group-item-info.list-group-item-action:hover,:host ::ng-deep .list-group-item-info.list-group-item-action:focus{color:#055160;background-color:#badce3}:host ::ng-deep .list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}:host ::ng-deep .list-group-item-warning{color:#664d03;background-color:#fff3cd}:host ::ng-deep .list-group-item-warning.list-group-item-action:hover,:host ::ng-deep .list-group-item-warning.list-group-item-action:focus{color:#664d03;background-color:#e6dbb9}:host ::ng-deep .list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}:host ::ng-deep .list-group-item-danger{color:#842029;background-color:#f8d7da}:host ::ng-deep .list-group-item-danger.list-group-item-action:hover,:host ::ng-deep .list-group-item-danger.list-group-item-action:focus{color:#842029;background-color:#dfc2c4}:host ::ng-deep .list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}:host ::ng-deep .list-group-item-light{color:#636464;background-color:#fefefe}:host ::ng-deep .list-group-item-light.list-group-item-action:hover,:host ::ng-deep .list-group-item-light.list-group-item-action:focus{color:#636464;background-color:#e5e5e5}:host ::ng-deep .list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}:host ::ng-deep .list-group-item-dark{color:#141619;background-color:#d3d3d4}:host ::ng-deep .list-group-item-dark.list-group-item-action:hover,:host ::ng-deep .list-group-item-dark.list-group-item-action:focus{color:#141619;background-color:#bebebf}:host ::ng-deep .list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}\n"] }]
|
|
29
29
|
}], ctorParameters: function () { return []; }, propDecorators: { items: [{
|
|
@@ -33,12 +33,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
33
33
|
|
|
34
34
|
class BsListGroupModule {
|
|
35
35
|
}
|
|
36
|
-
BsListGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
37
|
-
BsListGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
36
|
+
BsListGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
37
|
+
BsListGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupModule, declarations: [BsListGroupComponent,
|
|
38
38
|
BsListGroupItemComponent], imports: [CommonModule], exports: [BsListGroupComponent,
|
|
39
39
|
BsListGroupItemComponent] });
|
|
40
|
-
BsListGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
40
|
+
BsListGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupModule, imports: [CommonModule] });
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsListGroupModule, decorators: [{
|
|
42
42
|
type: NgModule,
|
|
43
43
|
args: [{
|
|
44
44
|
imports: [CommonModule],
|
|
@@ -20,9 +20,9 @@ class BsBoldPipe {
|
|
|
20
20
|
return safeResult;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
BsBoldPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
24
|
-
BsBoldPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
23
|
+
BsBoldPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsBoldPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
24
|
+
BsBoldPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsBoldPipe, name: "bsBold" });
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsBoldPipe, decorators: [{
|
|
26
26
|
type: Pipe,
|
|
27
27
|
args: [{
|
|
28
28
|
name: 'bsBold'
|
|
@@ -46,9 +46,9 @@ class BsItalicPipe {
|
|
|
46
46
|
return safeResult;
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
BsItalicPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
50
|
-
BsItalicPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
51
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
49
|
+
BsItalicPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsItalicPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
50
|
+
BsItalicPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsItalicPipe, name: "bsItalic" });
|
|
51
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsItalicPipe, decorators: [{
|
|
52
52
|
type: Pipe,
|
|
53
53
|
args: [{
|
|
54
54
|
name: 'bsItalic'
|
|
@@ -72,9 +72,9 @@ class BsUnderlinePipe {
|
|
|
72
72
|
return safeResult;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
|
-
BsUnderlinePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
76
|
-
BsUnderlinePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
77
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
75
|
+
BsUnderlinePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUnderlinePipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
76
|
+
BsUnderlinePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsUnderlinePipe, name: "bsUnderline" });
|
|
77
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsUnderlinePipe, decorators: [{
|
|
78
78
|
type: Pipe,
|
|
79
79
|
args: [{
|
|
80
80
|
name: 'bsUnderline'
|
|
@@ -98,9 +98,9 @@ class BsStrikethroughPipe {
|
|
|
98
98
|
return safeResult;
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
-
BsStrikethroughPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
102
|
-
BsStrikethroughPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.
|
|
103
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
101
|
+
BsStrikethroughPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsStrikethroughPipe, deps: [{ token: i1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
102
|
+
BsStrikethroughPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsStrikethroughPipe, name: "bsStrikethrough" });
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsStrikethroughPipe, decorators: [{
|
|
104
104
|
type: Pipe,
|
|
105
105
|
args: [{
|
|
106
106
|
name: 'bsStrikethrough'
|
|
@@ -109,16 +109,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.2", ngImpor
|
|
|
109
109
|
|
|
110
110
|
class BsMarkdownModule {
|
|
111
111
|
}
|
|
112
|
-
BsMarkdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.
|
|
113
|
-
BsMarkdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.
|
|
112
|
+
BsMarkdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsMarkdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
113
|
+
BsMarkdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: BsMarkdownModule, declarations: [BsBoldPipe,
|
|
114
114
|
BsItalicPipe,
|
|
115
115
|
BsUnderlinePipe,
|
|
116
116
|
BsStrikethroughPipe], imports: [CommonModule], exports: [BsBoldPipe,
|
|
117
117
|
BsItalicPipe,
|
|
118
118
|
BsUnderlinePipe,
|
|
119
119
|
BsStrikethroughPipe] });
|
|
120
|
-
BsMarkdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.
|
|
121
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.
|
|
120
|
+
BsMarkdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsMarkdownModule, imports: [CommonModule] });
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: BsMarkdownModule, decorators: [{
|
|
122
122
|
type: NgModule,
|
|
123
123
|
args: [{
|
|
124
124
|
declarations: [
|