@mintplayer/ng-bootstrap 15.27.0 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accordion/src/accordion/accordion.component.d.ts +1 -1
- package/accordion/src/accordion-tab/accordion-tab.component.d.ts +1 -1
- package/alert/src/alert/alert.component.d.ts +1 -1
- package/badge/src/badge.component.d.ts +1 -1
- package/button-type/src/button-type/button-type.directive.d.ts +1 -1
- package/calendar/src/calendar.component.d.ts +1 -1
- package/card/src/card/card.component.d.ts +1 -1
- package/card/src/card-header/card-header.component.d.ts +1 -1
- package/carousel/src/carousel/carousel.component.d.ts +1 -1
- package/code-snippet/src/code-snippet.component.d.ts +1 -1
- package/copy/src/copy.directive.d.ts +1 -1
- package/datatable/src/datatable/datatable.component.d.ts +1 -1
- package/datatable/src/datatable-column/datatable-column.directive.d.ts +1 -1
- package/datepicker/src/datepicker.component.d.ts +1 -1
- package/dock/src/dock/dock.component.d.ts +1 -1
- package/dock/src/dock-pane-renderer/dock-pane-renderer.component.d.ts +1 -1
- package/dock/src/dock-panel/dock-panel.component.d.ts +1 -1
- package/dropdown/src/dropdown/dropdown.directive.d.ts +1 -1
- package/dropdown-menu/src/dropdown-item/dropdown-item.component.d.ts +1 -1
- package/dropdown-menu/src/dropdown-menu/dropdown-menu.component.d.ts +1 -1
- package/esm2022/accordion/src/accordion/accordion.component.mjs +27 -0
- package/esm2022/accordion/src/accordion-tab/accordion-tab.component.mjs +69 -0
- package/esm2022/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +22 -0
- package/esm2022/accordion/src/accordion.module.mjs +39 -0
- package/esm2022/alert/src/alert/alert.component.mjs +42 -0
- package/esm2022/alert/src/alert-close/alert-close.component.mjs +21 -0
- package/esm2022/alert/src/alert.module.mjs +28 -0
- package/esm2022/badge/src/badge.component.mjs +31 -0
- package/esm2022/badge/src/badge.module.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +14 -0
- package/esm2022/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb.module.mjs +20 -0
- package/esm2022/button-group/src/button-group/button-group.component.mjs +14 -0
- package/esm2022/button-group/src/button-group.module.mjs +19 -0
- package/esm2022/button-type/src/button-type/button-type.directive.mjs +31 -0
- package/esm2022/button-type/src/button-type/button-type.module.mjs +25 -0
- package/esm2022/calendar/src/calendar.component.mjs +112 -0
- package/esm2022/calendar/src/calendar.module.mjs +40 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.pipe.mjs +22 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +17 -0
- package/esm2022/calendar-month/src/service/calendar-month.service.mjs +95 -0
- package/esm2022/card/src/card/card.component.mjs +17 -0
- package/esm2022/card/src/card-header/card-header.component.mjs +17 -0
- package/esm2022/card/src/card.module.mjs +28 -0
- package/esm2022/carousel/src/carousel/carousel.component.mjs +138 -0
- package/esm2022/carousel/src/carousel-image/carousel-image.directive.mjs +25 -0
- package/esm2022/carousel/src/carousel.module.mjs +38 -0
- package/esm2022/close/src/close.component.mjs +22 -0
- package/esm2022/close/src/close.module.mjs +19 -0
- package/esm2022/code-snippet/src/code-snippet.component.mjs +35 -0
- package/esm2022/code-snippet/src/code-snippet.module.mjs +37 -0
- package/esm2022/context-menu/src/context-menu.directive.mjs +85 -0
- package/esm2022/context-menu/src/context-menu.module.mjs +35 -0
- package/esm2022/copy/src/copy.directive.mjs +46 -0
- package/esm2022/copy/src/copy.module.mjs +25 -0
- package/esm2022/datatable/src/datatable/datatable.component.mjs +58 -0
- package/esm2022/datatable/src/datatable-column/datatable-column.directive.mjs +20 -0
- package/esm2022/datatable/src/datatable.module.mjs +47 -0
- package/esm2022/datatable/src/row-template/row-template.directive.mjs +20 -0
- package/esm2022/datepicker/src/datepicker.component.mjs +50 -0
- package/esm2022/datepicker/src/datepicker.module.mjs +41 -0
- package/esm2022/dock/src/dock/dock.component.mjs +94 -0
- package/esm2022/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +61 -0
- package/esm2022/dock/src/dock-panel/dock-panel.component.mjs +28 -0
- package/esm2022/dock/src/dock-panel-header/dock-panel-header.component.mjs +278 -0
- package/esm2022/dock/src/dock.module.mjs +64 -0
- package/esm2022/dock/src/services/dock/dock.service.mjs +57 -0
- package/esm2022/dropdown/src/dropdown/dropdown.directive.mjs +69 -0
- package/esm2022/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +115 -0
- package/esm2022/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +32 -0
- package/esm2022/dropdown/src/dropdown.module.mjs +44 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.directive.mjs +20 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.module.mjs +19 -0
- package/esm2022/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +20 -0
- package/esm2022/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +43 -0
- package/esm2022/dropdown-menu/src/dropdown-menu.module.mjs +27 -0
- package/esm2022/enhanced-paste/src/directive/enhanced-paste.directive.mjs +59 -0
- package/esm2022/enhanced-paste/src/enhanced-paste.module.mjs +25 -0
- package/esm2022/enum/src/service/enum.service.mjs +32 -0
- package/esm2022/file-upload/src/component/file-upload.component.mjs +90 -0
- package/esm2022/file-upload/src/directive/file-upload-template.directive.mjs +19 -0
- package/esm2022/file-upload/src/file-upload.module.mjs +51 -0
- package/esm2022/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +24 -0
- package/esm2022/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +21 -0
- package/esm2022/floating-labels/src/floating-labels/floating-labels.module.mjs +19 -0
- package/esm2022/for/src/for.directive.mjs +39 -0
- package/esm2022/for/src/for.module.mjs +25 -0
- package/esm2022/form/src/form/form.component.mjs +21 -0
- package/esm2022/form/src/form-control/form-control.directive.mjs +20 -0
- package/esm2022/form/src/form-group/form-group.directive.mjs +20 -0
- package/esm2022/form/src/form.module.mjs +21 -0
- package/esm2022/grid/src/component/grid.component.mjs +33 -0
- package/esm2022/grid/src/directives/col-form-label/col-form-label.directive.mjs +20 -0
- package/esm2022/grid/src/directives/column/column.directive.mjs +57 -0
- package/esm2022/grid/src/directives/row/row.directive.mjs +20 -0
- package/esm2022/grid/src/grid.module.mjs +22 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.component.mjs +12 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.module.mjs +19 -0
- package/esm2022/icon/src/icon.component.mjs +35 -0
- package/esm2022/icon/src/icon.module.mjs +19 -0
- package/esm2022/input-group/src/input-group/input-group.component.mjs +12 -0
- package/esm2022/input-group/src/input-group.module.mjs +19 -0
- package/esm2022/instance-of/src/directives/instanceof-case.directive.mjs +48 -0
- package/esm2022/instance-of/src/directives/instanceof-default.directive.mjs +31 -0
- package/esm2022/instance-of/src/directives/instanceof.directive.mjs +63 -0
- package/esm2022/instance-of/src/instance-of.module.mjs +38 -0
- package/esm2022/instance-of/src/pipes/instance-of.pipe.mjs +18 -0
- package/esm2022/lazy-loading/src/lazy-load/lazy-load.directive.mjs +33 -0
- package/esm2022/lazy-loading/src/lazy-loading.module.mjs +25 -0
- package/esm2022/let/directive/let.directive.mjs +39 -0
- package/esm2022/let/let.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/in-list/in-list.module.mjs +25 -0
- package/esm2022/lib/pipes/in-list/in-list.pipe.mjs +17 -0
- package/esm2022/lib/pipes/uc-first/uc-first.module.mjs +25 -0
- package/esm2022/lib/pipes/uc-first/uc-first.pipe.mjs +17 -0
- package/esm2022/list-group/src/list-group/list-group.component.mjs +20 -0
- package/esm2022/list-group/src/list-group-item/list-group-item.component.mjs +18 -0
- package/esm2022/list-group/src/list-group.module.mjs +28 -0
- package/esm2022/markdown/src/bold/bold.pipe.mjs +31 -0
- package/esm2022/markdown/src/italic/italic.pipe.mjs +31 -0
- package/esm2022/markdown/src/markdown.module.mjs +40 -0
- package/esm2022/markdown/src/strikethrough/strikethrough.pipe.mjs +31 -0
- package/esm2022/markdown/src/underline/underline.pipe.mjs +31 -0
- package/esm2022/modal/src/components/modal/modal.component.mjs +22 -0
- package/esm2022/modal/src/components/modal-host/modal-host.component.mjs +84 -0
- package/esm2022/modal/src/directives/modal/modal.directive.mjs +19 -0
- package/esm2022/modal/src/directives/modal-body/modal-body.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-close/modal-close.directive.mjs +25 -0
- package/esm2022/modal/src/directives/modal-footer/modal-footer.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-header/modal-header.directive.mjs +20 -0
- package/esm2022/modal/src/modal.module.mjs +76 -0
- package/esm2022/multiselect/src/component/multiselect.component.mjs +46 -0
- package/esm2022/multiselect/src/directives/button-template/button-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/footer-template/footer-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/header-template/header-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/multiselect.module.mjs +64 -0
- package/esm2022/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +39 -0
- package/esm2022/navbar/src/expand-button/expand-button.directive.mjs +19 -0
- package/esm2022/navbar/src/nav-link/nav-link.directive.mjs +35 -0
- package/esm2022/navbar/src/navbar/navbar.component.mjs +142 -0
- package/esm2022/navbar/src/navbar-brand/navbar-brand.component.mjs +21 -0
- package/esm2022/navbar/src/navbar-content/navbar-content.directive.mjs +73 -0
- package/esm2022/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +144 -0
- package/esm2022/navbar/src/navbar-item/navbar-item.component.mjs +105 -0
- package/esm2022/navbar/src/navbar-nav/navbar-nav.component.mjs +70 -0
- package/esm2022/navbar/src/navbar-toggler/navbar-toggler.component.mjs +48 -0
- package/esm2022/navbar/src/navbar.module.mjs +92 -0
- package/esm2022/navigation-lock/src/directive/navigation-lock.directive.mjs +95 -0
- package/esm2022/navigation-lock/src/guard/navigation-lock.guard.mjs +23 -0
- package/esm2022/navigation-lock/src/navigation-lock.module.mjs +29 -0
- package/esm2022/no-noscript/src/no-noscript/no-noscript.directive.mjs +28 -0
- package/esm2022/no-noscript/src/no-noscript.module.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas/offcanvas.component.mjs +112 -0
- package/esm2022/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +15 -0
- package/esm2022/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +144 -0
- package/esm2022/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +25 -0
- package/esm2022/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +19 -0
- package/esm2022/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +72 -0
- package/esm2022/offcanvas/src/offcanvas.module.mjs +76 -0
- package/esm2022/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +30 -0
- package/esm2022/ordinal-number/src/ordinal-number.module.mjs +25 -0
- package/esm2022/pagination/src/component/pagination/pagination.component.mjs +202 -0
- package/esm2022/pagination/src/pagination.module.mjs +25 -0
- package/esm2022/placeholder/src/placeholder/placeholder.component.mjs +27 -0
- package/esm2022/placeholder/src/placeholder-field/placeholder-field.directive.mjs +47 -0
- package/esm2022/placeholder/src/placeholder.module.mjs +20 -0
- package/esm2022/popover/src/component/popover.component.mjs +58 -0
- package/esm2022/popover/src/directives/popover/popover.directive.mjs +133 -0
- package/esm2022/popover/src/directives/popover-body/popover-body.directive.mjs +20 -0
- package/esm2022/popover/src/directives/popover-header/popover-header.directive.mjs +20 -0
- package/esm2022/popover/src/popover.module.mjs +37 -0
- package/esm2022/progress-bar/src/progress/progress.component.mjs +32 -0
- package/esm2022/progress-bar/src/progress-bar/progress-bar.component.mjs +122 -0
- package/esm2022/progress-bar/src/progress-bar.module.mjs +30 -0
- package/esm2022/range/src/component/range.component.mjs +26 -0
- package/esm2022/range/src/range.module.mjs +20 -0
- package/esm2022/range/src/value-accessor/range-value-accessor.mjs +63 -0
- package/esm2022/rating/src/component/rating.component.mjs +76 -0
- package/esm2022/rating/src/rating.module.mjs +25 -0
- package/esm2022/resizable/src/resizable/resizable.component.mjs +99 -0
- package/esm2022/resizable/src/resizable.module.mjs +30 -0
- package/esm2022/resizable/src/resize-glyph/resize-glyph.directive.mjs +220 -0
- package/esm2022/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +86 -0
- package/esm2022/scheduler/src/components/scheduler/scheduler.component.mjs +540 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +17 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +23 -0
- package/esm2022/scheduler/src/scheduler.module.mjs +46 -0
- package/esm2022/scheduler/src/services/timeline/timeline.service.mjs +66 -0
- package/esm2022/scrollspy/src/component/scrollspy.component.mjs +91 -0
- package/esm2022/scrollspy/src/directives/scrollspy.directive.mjs +17 -0
- package/esm2022/scrollspy/src/scrollspy.module.mjs +30 -0
- package/esm2022/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +32 -0
- package/esm2022/select/src/component/select.component.mjs +86 -0
- package/esm2022/select/src/select.module.mjs +32 -0
- package/esm2022/select/src/value-accessors/select-value-accessor.mjs +169 -0
- package/esm2022/select2/src/component/select2.component.mjs +86 -0
- package/esm2022/select2/src/directive/item-template.directive.mjs +20 -0
- package/esm2022/select2/src/select2.module.mjs +50 -0
- package/esm2022/snackbar/src/component/snackbar.component.mjs +37 -0
- package/esm2022/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +28 -0
- package/esm2022/snackbar/src/service/snackbar.service.mjs +46 -0
- package/esm2022/snackbar/src/snackbar.module.mjs +44 -0
- package/esm2022/spinner/src/spinner.component.mjs +44 -0
- package/esm2022/spinner/src/spinner.module.mjs +19 -0
- package/esm2022/splitter/src/element-at/element-at.pipe.mjs +22 -0
- package/esm2022/splitter/src/split-panel/split-panel.component.mjs +19 -0
- package/esm2022/splitter/src/splitter/splitter.component.mjs +207 -0
- package/esm2022/splitter/src/splitter.module.mjs +24 -0
- package/esm2022/tab-control/src/tab-control/tab-control.component.mjs +133 -0
- package/esm2022/tab-control/src/tab-control.module.mjs +47 -0
- package/esm2022/tab-control/src/tab-page/tab-page.component.mjs +31 -0
- package/esm2022/tab-control/src/tab-page-header/tab-page-header.directive.mjs +17 -0
- package/esm2022/table/src/component/table.component.mjs +48 -0
- package/esm2022/table/src/table.module.mjs +19 -0
- package/esm2022/timepicker/src/timepicker.component.mjs +118 -0
- package/esm2022/timepicker/src/timepicker.module.mjs +61 -0
- package/esm2022/toast/src/components/toast/toast.component.mjs +17 -0
- package/esm2022/toast/src/components/toast-body/toast-body.component.mjs +21 -0
- package/esm2022/toast/src/components/toast-container/toast-container.component.mjs +24 -0
- package/esm2022/toast/src/components/toast-header/toast-header.component.mjs +18 -0
- package/esm2022/toast/src/directives/toast-close/toast-close.directive.mjs +33 -0
- package/esm2022/toast/src/pipes/add-properties.pipe.mjs +18 -0
- package/esm2022/toast/src/services/toast/toast.service.mjs +57 -0
- package/esm2022/toast/src/toast.module.mjs +78 -0
- package/esm2022/toggle-button/src/component/toggle-button.component.mjs +159 -0
- package/esm2022/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +20 -0
- package/esm2022/toggle-button/src/toggle-button.module.mjs +35 -0
- package/esm2022/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +109 -0
- package/esm2022/tooltip/src/component/tooltip.component.mjs +39 -0
- package/esm2022/tooltip/src/directive/tooltip.directive.mjs +110 -0
- package/esm2022/tooltip/src/tooltip.module.mjs +36 -0
- package/esm2022/treeview/src/treeview/treeview.component.mjs +47 -0
- package/esm2022/treeview/src/treeview-item/treeview-item.component.mjs +28 -0
- package/esm2022/treeview/src/treeview.module.mjs +22 -0
- package/esm2022/typeahead/src/typeahead.component.mjs +83 -0
- package/esm2022/typeahead/src/typeahead.module.mjs +49 -0
- package/esm2022/user-agent/src/directive/user-agent.directive.mjs +99 -0
- package/esm2022/user-agent/src/user-agent.module.mjs +25 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs +52 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs +51 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs +35 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs +58 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs +153 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs +194 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs +43 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs +73 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs +121 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs +72 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs +172 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs +93 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs +598 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs +243 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs +85 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs +38 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs +76 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs +141 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs +218 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs +63 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs +147 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs +259 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs +151 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs +724 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs +145 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs +48 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs +452 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs +229 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs +89 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs +256 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs +182 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs +105 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs +103 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs +346 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs +813 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs +161 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs +282 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs +152 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs +65 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs +268 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs +214 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs +69 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs +236 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs +313 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs +91 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs +134 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs +125 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs.map +1 -0
- package/file-upload/src/component/file-upload.component.d.ts +1 -1
- package/for/src/for.directive.d.ts +1 -1
- package/grid/src/component/grid.component.d.ts +1 -1
- package/grid/src/directives/column/column.directive.d.ts +1 -1
- package/icon/src/icon.component.d.ts +1 -1
- package/instance-of/src/directives/instanceof-case.directive.d.ts +1 -1
- package/instance-of/src/directives/instanceof.directive.d.ts +1 -1
- package/lazy-loading/src/lazy-load/lazy-load.directive.d.ts +1 -1
- package/let/directive/let.directive.d.ts +1 -1
- package/modal/src/components/modal-host/modal-host.component.d.ts +1 -1
- package/multiselect/src/component/multiselect.component.d.ts +1 -1
- package/navbar/src/navbar/navbar.component.d.ts +1 -1
- package/navbar/src/navbar-brand/navbar-brand.component.d.ts +1 -1
- package/navbar/src/navbar-content/navbar-content.directive.d.ts +1 -1
- package/navbar/src/navbar-dropdown/navbar-dropdown.component.d.ts +1 -1
- package/navbar/src/navbar-nav/navbar-nav.component.d.ts +1 -1
- package/navbar/src/navbar-toggler/navbar-toggler.component.d.ts +1 -1
- package/navigation-lock/src/directive/navigation-lock.directive.d.ts +1 -1
- package/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-body/offcanvas-body.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +1 -1
- package/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.d.ts +1 -1
- package/package.json +218 -353
- package/pagination/src/component/pagination/pagination.component.d.ts +1 -1
- package/placeholder/src/placeholder/placeholder.component.d.ts +1 -1
- package/popover/src/component/popover.component.d.ts +1 -1
- package/popover/src/directives/popover/popover.directive.d.ts +1 -1
- package/progress-bar/src/progress/progress.component.d.ts +1 -1
- package/progress-bar/src/progress-bar/progress-bar.component.d.ts +1 -1
- package/range/src/component/range.component.d.ts +1 -1
- package/rating/src/component/rating.component.d.ts +1 -1
- package/resizable/src/resizable/resizable.component.d.ts +1 -1
- package/resizable/src/resize-glyph/resize-glyph.directive.d.ts +1 -1
- package/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.d.ts +1 -1
- package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
- package/select/src/component/select.component.d.ts +1 -1
- package/select/src/value-accessors/select-value-accessor.d.ts +2 -2
- package/select2/src/component/select2.component.d.ts +1 -1
- package/snackbar/src/directives/snackbar-close/snackbar-close.directive.d.ts +1 -1
- package/spinner/src/spinner.component.d.ts +1 -1
- package/splitter/src/splitter/splitter.component.d.ts +1 -1
- package/tab-control/src/tab-control/tab-control.component.d.ts +1 -1
- package/tab-control/src/tab-page/tab-page.component.d.ts +1 -1
- package/table/src/component/table.component.d.ts +1 -1
- package/timepicker/src/timepicker.component.d.ts +1 -1
- package/toast/src/components/toast/toast.component.d.ts +1 -1
- package/toast/src/directives/toast-close/toast-close.directive.d.ts +1 -1
- package/toggle-button/src/component/toggle-button.component.d.ts +1 -1
- package/tooltip/src/component/tooltip.component.d.ts +1 -1
- package/tooltip/src/directive/tooltip.directive.d.ts +1 -1
- package/treeview/src/treeview/treeview.component.d.ts +1 -1
- package/typeahead/src/typeahead.component.d.ts +1 -1
- package/esm2020/accordion/src/accordion/accordion.component.mjs +0 -26
- package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +0 -68
- package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +0 -21
- package/esm2020/accordion/src/accordion.module.mjs +0 -38
- package/esm2020/alert/src/alert/alert.component.mjs +0 -41
- package/esm2020/alert/src/alert-close/alert-close.component.mjs +0 -20
- package/esm2020/alert/src/alert.module.mjs +0 -27
- package/esm2020/badge/src/badge.component.mjs +0 -30
- package/esm2020/badge/src/badge.module.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +0 -13
- package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb.module.mjs +0 -19
- package/esm2020/button-group/src/button-group/button-group.component.mjs +0 -13
- package/esm2020/button-group/src/button-group.module.mjs +0 -18
- package/esm2020/button-type/src/button-type/button-type.directive.mjs +0 -30
- package/esm2020/button-type/src/button-type/button-type.module.mjs +0 -24
- package/esm2020/calendar/src/calendar.component.mjs +0 -111
- package/esm2020/calendar/src/calendar.module.mjs +0 -39
- package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +0 -21
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
- package/esm2020/calendar-month/src/service/calendar-month.service.mjs +0 -94
- package/esm2020/card/src/card/card.component.mjs +0 -16
- package/esm2020/card/src/card-header/card-header.component.mjs +0 -16
- package/esm2020/card/src/card.module.mjs +0 -27
- package/esm2020/carousel/src/carousel/carousel.component.mjs +0 -137
- package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +0 -24
- package/esm2020/carousel/src/carousel.module.mjs +0 -37
- package/esm2020/close/src/close.component.mjs +0 -21
- package/esm2020/close/src/close.module.mjs +0 -18
- package/esm2020/code-snippet/src/code-snippet.component.mjs +0 -34
- package/esm2020/code-snippet/src/code-snippet.module.mjs +0 -36
- package/esm2020/context-menu/src/context-menu.directive.mjs +0 -84
- package/esm2020/context-menu/src/context-menu.module.mjs +0 -34
- package/esm2020/copy/src/copy.directive.mjs +0 -45
- package/esm2020/copy/src/copy.module.mjs +0 -24
- package/esm2020/datatable/src/datatable/datatable.component.mjs +0 -57
- package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +0 -19
- package/esm2020/datatable/src/datatable.module.mjs +0 -46
- package/esm2020/datatable/src/row-template/row-template.directive.mjs +0 -19
- package/esm2020/datepicker/src/datepicker.component.mjs +0 -49
- package/esm2020/datepicker/src/datepicker.module.mjs +0 -40
- package/esm2020/dock/src/dock/dock.component.mjs +0 -93
- package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +0 -60
- package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +0 -27
- package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +0 -277
- package/esm2020/dock/src/dock.module.mjs +0 -63
- package/esm2020/dock/src/services/dock/dock.service.mjs +0 -56
- package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +0 -68
- package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +0 -114
- package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -31
- package/esm2020/dropdown/src/dropdown.module.mjs +0 -43
- package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +0 -19
- package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +0 -18
- package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +0 -19
- package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +0 -42
- package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +0 -26
- package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +0 -58
- package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +0 -24
- package/esm2020/enum/src/service/enum.service.mjs +0 -31
- package/esm2020/file-upload/src/component/file-upload.component.mjs +0 -89
- package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +0 -18
- package/esm2020/file-upload/src/file-upload.module.mjs +0 -50
- package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +0 -23
- package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +0 -20
- package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +0 -18
- package/esm2020/for/src/for.directive.mjs +0 -38
- package/esm2020/for/src/for.module.mjs +0 -24
- package/esm2020/form/src/form/form.component.mjs +0 -20
- package/esm2020/form/src/form-control/form-control.directive.mjs +0 -19
- package/esm2020/form/src/form-group/form-group.directive.mjs +0 -19
- package/esm2020/form/src/form.module.mjs +0 -20
- package/esm2020/grid/src/component/grid.component.mjs +0 -32
- package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +0 -19
- package/esm2020/grid/src/directives/column/column.directive.mjs +0 -56
- package/esm2020/grid/src/directives/row/row.directive.mjs +0 -19
- package/esm2020/grid/src/grid.module.mjs +0 -21
- package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +0 -11
- package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +0 -18
- package/esm2020/icon/src/icon.component.mjs +0 -34
- package/esm2020/icon/src/icon.module.mjs +0 -18
- package/esm2020/input-group/src/input-group/input-group.component.mjs +0 -11
- package/esm2020/input-group/src/input-group.module.mjs +0 -18
- package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +0 -47
- package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +0 -30
- package/esm2020/instance-of/src/directives/instanceof.directive.mjs +0 -62
- package/esm2020/instance-of/src/instance-of.module.mjs +0 -37
- package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +0 -17
- package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +0 -32
- package/esm2020/lazy-loading/src/lazy-loading.module.mjs +0 -24
- package/esm2020/let/directive/let.directive.mjs +0 -38
- package/esm2020/let/let.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +0 -26
- package/esm2020/lib/pipes/in-list/in-list.module.mjs +0 -24
- package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +0 -16
- package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +0 -24
- package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +0 -16
- package/esm2020/list-group/src/list-group/list-group.component.mjs +0 -19
- package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +0 -17
- package/esm2020/list-group/src/list-group.module.mjs +0 -27
- package/esm2020/markdown/src/bold/bold.pipe.mjs +0 -30
- package/esm2020/markdown/src/italic/italic.pipe.mjs +0 -30
- package/esm2020/markdown/src/markdown.module.mjs +0 -39
- package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +0 -30
- package/esm2020/markdown/src/underline/underline.pipe.mjs +0 -30
- package/esm2020/modal/src/components/modal/modal.component.mjs +0 -21
- package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +0 -83
- package/esm2020/modal/src/directives/modal/modal.directive.mjs +0 -18
- package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +0 -24
- package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +0 -19
- package/esm2020/modal/src/modal.module.mjs +0 -75
- package/esm2020/multiselect/src/component/multiselect.component.mjs +0 -45
- package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/multiselect.module.mjs +0 -63
- package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -38
- package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +0 -18
- package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +0 -34
- package/esm2020/navbar/src/navbar/navbar.component.mjs +0 -141
- package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +0 -20
- package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +0 -72
- package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +0 -143
- package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +0 -104
- package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +0 -69
- package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +0 -47
- package/esm2020/navbar/src/navbar.module.mjs +0 -91
- package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +0 -94
- package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +0 -22
- package/esm2020/navigation-lock/src/navigation-lock.module.mjs +0 -28
- package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +0 -27
- package/esm2020/no-noscript/src/no-noscript.module.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +0 -111
- package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +0 -14
- package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +0 -143
- package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +0 -24
- package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +0 -18
- package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +0 -71
- package/esm2020/offcanvas/src/offcanvas.module.mjs +0 -75
- package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +0 -29
- package/esm2020/ordinal-number/src/ordinal-number.module.mjs +0 -24
- package/esm2020/pagination/src/component/pagination/pagination.component.mjs +0 -201
- package/esm2020/pagination/src/pagination.module.mjs +0 -24
- package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +0 -26
- package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +0 -46
- package/esm2020/placeholder/src/placeholder.module.mjs +0 -19
- package/esm2020/popover/src/component/popover.component.mjs +0 -57
- package/esm2020/popover/src/directives/popover/popover.directive.mjs +0 -132
- package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +0 -19
- package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +0 -19
- package/esm2020/popover/src/popover.module.mjs +0 -36
- package/esm2020/progress-bar/src/progress/progress.component.mjs +0 -31
- package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +0 -121
- package/esm2020/progress-bar/src/progress-bar.module.mjs +0 -29
- package/esm2020/range/src/component/range.component.mjs +0 -25
- package/esm2020/range/src/range.module.mjs +0 -19
- package/esm2020/range/src/value-accessor/range-value-accessor.mjs +0 -62
- package/esm2020/rating/src/component/rating.component.mjs +0 -75
- package/esm2020/rating/src/rating.module.mjs +0 -24
- package/esm2020/resizable/src/resizable/resizable.component.mjs +0 -98
- package/esm2020/resizable/src/resizable.module.mjs +0 -29
- package/esm2020/resizable/src/resize-glyph/resize-glyph.directive.mjs +0 -219
- package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +0 -85
- package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +0 -539
- package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +0 -16
- package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +0 -22
- package/esm2020/scheduler/src/scheduler.module.mjs +0 -45
- package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +0 -65
- package/esm2020/scrollspy/src/component/scrollspy.component.mjs +0 -90
- package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +0 -16
- package/esm2020/scrollspy/src/scrollspy.module.mjs +0 -29
- package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +0 -31
- package/esm2020/select/src/component/select.component.mjs +0 -85
- package/esm2020/select/src/select.module.mjs +0 -31
- package/esm2020/select/src/value-accessors/select-value-accessor.mjs +0 -167
- package/esm2020/select2/src/component/select2.component.mjs +0 -85
- package/esm2020/select2/src/directive/item-template.directive.mjs +0 -19
- package/esm2020/select2/src/select2.module.mjs +0 -49
- package/esm2020/snackbar/src/component/snackbar.component.mjs +0 -36
- package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +0 -27
- package/esm2020/snackbar/src/service/snackbar.service.mjs +0 -45
- package/esm2020/snackbar/src/snackbar.module.mjs +0 -43
- package/esm2020/spinner/src/spinner.component.mjs +0 -43
- package/esm2020/spinner/src/spinner.module.mjs +0 -18
- package/esm2020/splitter/src/element-at/element-at.pipe.mjs +0 -21
- package/esm2020/splitter/src/split-panel/split-panel.component.mjs +0 -18
- package/esm2020/splitter/src/splitter/splitter.component.mjs +0 -206
- package/esm2020/splitter/src/splitter.module.mjs +0 -23
- package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +0 -132
- package/esm2020/tab-control/src/tab-control.module.mjs +0 -46
- package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +0 -30
- package/esm2020/tab-control/src/tab-page-header/tab-page-header.directive.mjs +0 -16
- package/esm2020/table/src/component/table.component.mjs +0 -47
- package/esm2020/table/src/table.module.mjs +0 -18
- package/esm2020/timepicker/src/timepicker.component.mjs +0 -117
- package/esm2020/timepicker/src/timepicker.module.mjs +0 -60
- package/esm2020/toast/src/components/toast/toast.component.mjs +0 -16
- package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +0 -20
- package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +0 -23
- package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +0 -17
- package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +0 -32
- package/esm2020/toast/src/pipes/add-properties.pipe.mjs +0 -17
- package/esm2020/toast/src/services/toast/toast.service.mjs +0 -56
- package/esm2020/toast/src/toast.module.mjs +0 -77
- package/esm2020/toggle-button/src/component/toggle-button.component.mjs +0 -158
- package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +0 -19
- package/esm2020/toggle-button/src/toggle-button.module.mjs +0 -34
- package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +0 -108
- package/esm2020/tooltip/src/component/tooltip.component.mjs +0 -38
- package/esm2020/tooltip/src/directive/tooltip.directive.mjs +0 -109
- package/esm2020/tooltip/src/tooltip.module.mjs +0 -35
- package/esm2020/treeview/src/treeview/treeview.component.mjs +0 -46
- package/esm2020/treeview/src/treeview-item/treeview-item.component.mjs +0 -27
- package/esm2020/treeview/src/treeview.module.mjs +0 -21
- package/esm2020/typeahead/src/typeahead.component.mjs +0 -82
- package/esm2020/typeahead/src/typeahead.module.mjs +0 -48
- package/esm2020/user-agent/src/directive/user-agent.directive.mjs +0 -98
- package/esm2020/user-agent/src/user-agent.module.mjs +0 -24
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +0 -178
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +0 -196
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +0 -123
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +0 -75
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +0 -171
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +0 -601
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +0 -248
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +0 -222
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +0 -263
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +0 -735
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -148
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +0 -50
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +0 -456
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +0 -261
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs +0 -338
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +0 -166
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs +0 -284
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +0 -238
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +0 -185
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +0 -127
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +0 -194
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +0 -121
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +0 -72
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +0 -172
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +0 -598
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +0 -243
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +0 -218
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +0 -259
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +0 -724
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -145
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +0 -48
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +0 -452
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +0 -256
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs +0 -346
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +0 -161
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs +0 -282
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +0 -236
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs +0 -91
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +0 -125
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +0 -1
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/mintplayer-ng-bootstrap-accordion.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/mintplayer-ng-bootstrap-alert.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/mintplayer-ng-bootstrap-badge.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/mintplayer-ng-bootstrap-button-group.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/mintplayer-ng-bootstrap-button-type.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/mintplayer-ng-bootstrap-calendar.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/date-day-of-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/first-and-last-date.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/week.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/weekday.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/month-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/weekday-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/mintplayer-ng-bootstrap-card.mjs +0 -0
- /package/{esm2020 → esm2022}/card/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/mintplayer-ng-bootstrap-carousel.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/mintplayer-ng-bootstrap-close.mjs +0 -0
- /package/{esm2020 → esm2022}/close/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/mintplayer-ng-bootstrap-code-snippet.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/mintplayer-ng-bootstrap-context-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/mintplayer-ng-bootstrap-copy.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/mintplayer-ng-bootstrap-datatable.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/datatable-column-metadata.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/mintplayer-ng-bootstrap-datepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/mintplayer-ng-bootstrap-dock.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/pane-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/dock-layout.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/remove-from-pane-result.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/size.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/content-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/dock-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/document-host-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/floating-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/split-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/tab-group-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/types/split-pane-orientation.type.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/mintplayer-ng-bootstrap-dropdown.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/interfaces/number-overflow.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/mintplayer-ng-bootstrap-enum.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/enum-item.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/mintplayer-ng-bootstrap-file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/mintplayer-ng-bootstrap-floating-labels.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/mintplayer-ng-bootstrap-for.mjs +0 -0
- /package/{esm2020 → esm2022}/for/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/mintplayer-ng-bootstrap-form.mjs +0 -0
- /package/{esm2020 → esm2022}/form/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/mintplayer-ng-bootstrap-grid.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/column-definition.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/mintplayer-ng-bootstrap-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/mintplayer-ng-bootstrap-input-group.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/switch-view.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/instance-of-context.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/abstract.type.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/let-context.mjs +0 -0
- /package/{esm2020 → esm2022}/let/mintplayer-ng-bootstrap-let.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/color.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/font-color/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/in-list/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/uc-first/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/development.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/breakpoint.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/position.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/size.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/view-state.type.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/mintplayer-ng-bootstrap-list-group.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/mintplayer-ng-bootstrap-markdown.mjs +0 -0
- /package/{esm2020 → esm2022}/mintplayer-ng-bootstrap.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/mintplayer-ng-bootstrap-modal.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/modal-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/mintplayer-ng-bootstrap-multiselect.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/mintplayer-ng-bootstrap-navbar.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/interface/has-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/index.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/mintplayer-ng-bootstrap-no-noscript.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/mintplayer-ng-bootstrap-offcanvas.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/offcanvas-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/index.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/mintplayer-ng-bootstrap-pagination.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/component/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/page-with-selection.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/page-number.type.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/index.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/mintplayer-ng-bootstrap-placeholder.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/mintplayer-ng-bootstrap-popover.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/popover-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/mintplayer-ng-bootstrap-progress-bar.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/mintplayer-ng-bootstrap-range.mjs +0 -0
- /package/{esm2020 → esm2022}/range/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/mintplayer-ng-bootstrap-rating.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/mintplayer-ng-bootstrap-resizable.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/pointer-data.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/preset-position.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/resize-action.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/resizable.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/positioning.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/mintplayer-ng-bootstrap-scheduler.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/available-scales.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/scheduler-mode.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/preview-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-or-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-part.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-with-parts.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-schale.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-stamp-with-slots.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/time-slot.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-track.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/week-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/mintplayer-ng-bootstrap-scrollspy.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/mintplayer-ng-bootstrap-select.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/select-size.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/value-accessors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/mintplayer-ng-bootstrap-select2.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/mintplayer-ng-bootstrap-snackbar.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/snackbar-animation-meta.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/providers/snackbar-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/mintplayer-ng-bootstrap-spinner.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/mintplayer-ng-bootstrap-splitter.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/direction.type.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/mintplayer-ng-bootstrap-tab-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/tabs-position.mjs +0 -0
- /package/{esm2020 → esm2022}/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table/mintplayer-ng-bootstrap-table.mjs +0 -0
- /package/{esm2020 → esm2022}/table/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/mintplayer-ng-bootstrap-timepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/mintplayer-ng-bootstrap-toast.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/mintplayer-ng-bootstrap-toggle-button.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/check-style.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/mintplayer-ng-bootstrap-tooltip.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/providers/tooltip-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/index.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/mintplayer-ng-bootstrap-treeview.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/mintplayer-ng-bootstrap-typeahead.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/mintplayer-ng-bootstrap-user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/directive/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/operating-system.type.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/webbrowser.type.mjs +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mintplayer-ng-bootstrap-form.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/form/src/form/form.component.ts","../../../../libs/mintplayer-ng-bootstrap/form/src/form/form.component.html","../../../../libs/mintplayer-ng-bootstrap/form/src/form-control/form-control.directive.ts","../../../../libs/mintplayer-ng-bootstrap/form/src/form-group/form-group.directive.ts","../../../../libs/mintplayer-ng-bootstrap/form/src/form.module.ts","../../../../libs/mintplayer-ng-bootstrap/form/mintplayer-ng-bootstrap-form.ts"],"sourcesContent":["import { Component, EventEmitter, Output } from '@angular/core';\n\n@Component({\n selector: 'bs-form',\n templateUrl: './form.component.html',\n styleUrls: ['./form.component.scss'],\n})\nexport class BsFormComponent {\n @Output() submitted = new EventEmitter<Event>();\n onSubmit(ev: Event) {\n this.submitted.emit(ev);\n return false;\n }\n}\n","<form (submit)=\"onSubmit($event)\">\n <ng-content></ng-content>\n</form>","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: 'bs-form input:not(.no-form-control), bs-form textarea:not(.no-form-control)'\n})\nexport class BsFormControlDirective {\n @HostBinding('class.form-control') formControlClass = true;\n}\n","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: '[bsFormGroup]'\n})\nexport class BsFormGroupDirective {\n @HostBinding('class.form-group') formGroupClass = true;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsFormComponent } from './form/form.component';\nimport { BsFormControlDirective } from './form-control/form-control.directive';\nimport { BsFormGroupDirective } from './form-group/form-group.directive';\n\n@NgModule({\n declarations: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective],\n imports: [CommonModule],\n exports: [BsFormComponent, BsFormControlDirective, BsFormGroupDirective],\n})\nexport class BsFormModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;MAOa,eAAe,CAAA;AAL5B,IAAA,WAAA,GAAA;AAMY,QAAA,IAAA,CAAA,SAAS,GAAG,IAAI,YAAY,EAAS,CAAC;KAKjD;AAJC,IAAA,QAAQ,CAAC,EAAS,EAAA;AAChB,QAAA,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;AACxB,QAAA,OAAO,KAAK,CAAC;KACd;;4GALU,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAf,eAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,oFCP5B,8EAEO,EAAA,MAAA,EAAA,CAAA,6uVAAA,CAAA,EAAA,CAAA,CAAA;2FDKM,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;+BACE,SAAS,EAAA,QAAA,EAAA,8EAAA,EAAA,MAAA,EAAA,CAAA,6uVAAA,CAAA,EAAA,CAAA;8BAKT,SAAS,EAAA,CAAA;sBAAlB,MAAM;;;MEHI,sBAAsB,CAAA;AAHnC,IAAA,WAAA,GAAA;AAIqC,QAAA,IAAgB,CAAA,gBAAA,GAAG,IAAI,CAAC;KAC5D;;mHAFY,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;uGAAtB,sBAAsB,EAAA,QAAA,EAAA,6EAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,oBAAA,EAAA,uBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAtB,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAHlC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,6EAA6E;iBACxF,CAAA;8BAEoC,gBAAgB,EAAA,CAAA;sBAAlD,WAAW;uBAAC,oBAAoB,CAAA;;;MCDtB,oBAAoB,CAAA;AAHjC,IAAA,WAAA,GAAA;AAImC,QAAA,IAAc,CAAA,cAAA,GAAG,IAAI,CAAC;KACxD;;iHAFY,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;qGAApB,oBAAoB,EAAA,QAAA,EAAA,eAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,kBAAA,EAAA,qBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAApB,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;iBAC1B,CAAA;8BAEkC,cAAc,EAAA,CAAA;sBAA9C,WAAW;uBAAC,kBAAkB,CAAA;;;MCKpB,YAAY,CAAA;;yGAAZ,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAZ,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,EAJR,YAAA,EAAA,CAAA,eAAe,EAAE,sBAAsB,EAAE,oBAAoB,CAClE,EAAA,OAAA,EAAA,CAAA,YAAY,CACZ,EAAA,OAAA,EAAA,CAAA,eAAe,EAAE,sBAAsB,EAAE,oBAAoB,CAAA,EAAA,CAAA,CAAA;AAE5D,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,YAHb,YAAY,CAAA,EAAA,CAAA,CAAA;2FAGX,YAAY,EAAA,UAAA,EAAA,CAAA;kBALxB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE,CAAC,eAAe,EAAE,sBAAsB,EAAE,oBAAoB,CAAC;oBAC7E,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,OAAO,EAAE,CAAC,eAAe,EAAE,sBAAsB,EAAE,oBAAoB,CAAC;iBACzE,CAAA;;;ACVD;;AAEG;;;;"}
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, Directive, HostBinding, NgModule } from '@angular/core';
|
|
3
|
-
import { BehaviorSubject, map, Subject, takeUntil } from 'rxjs';
|
|
4
|
-
import * as i1 from '@angular/common';
|
|
5
|
-
import { CommonModule } from '@angular/common';
|
|
6
|
-
|
|
7
|
-
class BsGridComponent {
|
|
8
|
-
constructor() {
|
|
9
|
-
//#region StopFullWidthAt
|
|
10
|
-
this.stopFullWidthAt$ = new BehaviorSubject('sm');
|
|
11
|
-
this.containerClass$ = this.stopFullWidthAt$.pipe(map((stopFullWidthAt) => {
|
|
12
|
-
switch (stopFullWidthAt) {
|
|
13
|
-
case 'sm': return 'container';
|
|
14
|
-
case 'never': return 'container-fluid';
|
|
15
|
-
default: return `container-${stopFullWidthAt}`;
|
|
16
|
-
}
|
|
17
|
-
}));
|
|
18
|
-
}
|
|
19
|
-
get stopFullWidthAt() {
|
|
20
|
-
return this.stopFullWidthAt$.value;
|
|
21
|
-
}
|
|
22
|
-
set stopFullWidthAt(value) {
|
|
23
|
-
this.stopFullWidthAt$.next(value);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
BsGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
27
|
-
BsGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BsGridComponent, selector: "bs-grid", inputs: { stopFullWidthAt: "stopFullWidthAt" }, ngImport: i0, template: "<div [class]=\"containerClass$ | async\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep :root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #fff;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, .175);--bs-border-radius: .375rem;--bs-border-radius-sm: .25rem;--bs-border-radius-lg: .5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-2xl: 2rem;--bs-border-radius-pill: 50rem;--bs-link-color: #0d6efd;--bs-link-hover-color: #0a58ca;--bs-code-color: #d63384;--bs-highlight-bg: #fff3cd}:host ::ng-deep .clearfix:after{display:block;clear:both;content:\"\"}:host ::ng-deep .text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .link-primary{color:#0d6efd!important}:host ::ng-deep .link-primary:hover,:host ::ng-deep .link-primary:focus{color:#0a58ca!important}:host ::ng-deep .link-secondary{color:#6c757d!important}:host ::ng-deep .link-secondary:hover,:host ::ng-deep .link-secondary:focus{color:#565e64!important}:host ::ng-deep .link-success{color:#198754!important}:host ::ng-deep .link-success:hover,:host ::ng-deep .link-success:focus{color:#146c43!important}:host ::ng-deep .link-info{color:#0dcaf0!important}:host ::ng-deep .link-info:hover,:host ::ng-deep .link-info:focus{color:#3dd5f3!important}:host ::ng-deep .link-warning{color:#ffc107!important}:host ::ng-deep .link-warning:hover,:host ::ng-deep .link-warning:focus{color:#ffcd39!important}:host ::ng-deep .link-danger{color:#dc3545!important}:host ::ng-deep .link-danger:hover,:host ::ng-deep .link-danger:focus{color:#b02a37!important}:host ::ng-deep .link-light{color:#f8f9fa!important}:host ::ng-deep .link-light:hover,:host ::ng-deep .link-light:focus{color:#f9fafb!important}:host ::ng-deep .link-dark{color:#212529!important}:host ::ng-deep .link-dark:hover,:host ::ng-deep .link-dark:focus{color:#1a1e21!important}:host ::ng-deep .ratio{position:relative;width:100%}:host ::ng-deep .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:\"\"}:host ::ng-deep .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}:host ::ng-deep .ratio-1x1{--bs-aspect-ratio: 100%}:host ::ng-deep .ratio-4x3{--bs-aspect-ratio: 75%}:host ::ng-deep .ratio-16x9{--bs-aspect-ratio: 56.25%}:host ::ng-deep .ratio-21x9{--bs-aspect-ratio: 42.8571428571%}:host ::ng-deep .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}:host ::ng-deep .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}:host ::ng-deep .sticky-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-bottom{position:sticky;bottom:0;z-index:1020}@media (min-width: 576px){:host ::ng-deep .sticky-sm-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 768px){:host ::ng-deep .sticky-md-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 992px){:host ::ng-deep .sticky-lg-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 1200px){:host ::ng-deep .sticky-xl-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 1400px){:host ::ng-deep .sticky-xxl-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}:host ::ng-deep .hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}:host ::ng-deep .vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}:host ::ng-deep .visually-hidden,:host ::ng-deep .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}:host ::ng-deep .stretched-link:after{position:absolute;inset:0;z-index:1;content:\"\"}:host ::ng-deep .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host ::ng-deep .vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}:host ::ng-deep .align-baseline{vertical-align:baseline!important}:host ::ng-deep .align-top{vertical-align:top!important}:host ::ng-deep .align-middle{vertical-align:middle!important}:host ::ng-deep .align-bottom{vertical-align:bottom!important}:host ::ng-deep .align-text-bottom{vertical-align:text-bottom!important}:host ::ng-deep .align-text-top{vertical-align:text-top!important}:host ::ng-deep .float-start{float:left!important}:host ::ng-deep .float-end{float:right!important}:host ::ng-deep .float-none{float:none!important}:host ::ng-deep .opacity-0{opacity:0!important}:host ::ng-deep .opacity-25{opacity:.25!important}:host ::ng-deep .opacity-50{opacity:.5!important}:host ::ng-deep .opacity-75{opacity:.75!important}:host ::ng-deep .opacity-100{opacity:1!important}:host ::ng-deep .overflow-auto{overflow:auto!important}:host ::ng-deep .overflow-hidden{overflow:hidden!important}:host ::ng-deep .overflow-visible{overflow:visible!important}:host ::ng-deep .overflow-scroll{overflow:scroll!important}:host ::ng-deep .d-inline{display:inline!important}:host ::ng-deep .d-inline-block{display:inline-block!important}:host ::ng-deep .d-block{display:block!important}:host ::ng-deep .d-grid{display:grid!important}:host ::ng-deep .d-table{display:table!important}:host ::ng-deep .d-table-row{display:table-row!important}:host ::ng-deep .d-table-cell{display:table-cell!important}:host ::ng-deep .d-flex{display:flex!important}:host ::ng-deep .d-inline-flex{display:inline-flex!important}:host ::ng-deep .d-none{display:none!important}:host ::ng-deep .shadow{box-shadow:0 .5rem 1rem #00000026!important}:host ::ng-deep .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}:host ::ng-deep .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}:host ::ng-deep .shadow-none{box-shadow:none!important}:host ::ng-deep .position-static{position:static!important}:host ::ng-deep .position-relative{position:relative!important}:host ::ng-deep .position-absolute{position:absolute!important}:host ::ng-deep .position-fixed{position:fixed!important}:host ::ng-deep .position-sticky{position:sticky!important}:host ::ng-deep .top-0{top:0!important}:host ::ng-deep .top-50{top:50%!important}:host ::ng-deep .top-100{top:100%!important}:host ::ng-deep .bottom-0{bottom:0!important}:host ::ng-deep .bottom-50{bottom:50%!important}:host ::ng-deep .bottom-100{bottom:100%!important}:host ::ng-deep .start-0{left:0!important}:host ::ng-deep .start-50{left:50%!important}:host ::ng-deep .start-100{left:100%!important}:host ::ng-deep .end-0{right:0!important}:host ::ng-deep .end-50{right:50%!important}:host ::ng-deep .end-100{right:100%!important}:host ::ng-deep .translate-middle{transform:translate(-50%,-50%)!important}:host ::ng-deep .translate-middle-x{transform:translate(-50%)!important}:host ::ng-deep .translate-middle-y{transform:translateY(-50%)!important}:host ::ng-deep .border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-0{border:0!important}:host ::ng-deep .border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-top-0{border-top:0!important}:host ::ng-deep .border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-end-0{border-right:0!important}:host ::ng-deep .border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-bottom-0{border-bottom:0!important}:host ::ng-deep .border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-start-0{border-left:0!important}:host ::ng-deep .border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-1{--bs-border-width: 1px}:host ::ng-deep .border-2{--bs-border-width: 2px}:host ::ng-deep .border-3{--bs-border-width: 3px}:host ::ng-deep .border-4{--bs-border-width: 4px}:host ::ng-deep .border-5{--bs-border-width: 5px}:host ::ng-deep .border-opacity-10{--bs-border-opacity: .1}:host ::ng-deep .border-opacity-25{--bs-border-opacity: .25}:host ::ng-deep .border-opacity-50{--bs-border-opacity: .5}:host ::ng-deep .border-opacity-75{--bs-border-opacity: .75}:host ::ng-deep .border-opacity-100{--bs-border-opacity: 1}:host ::ng-deep .w-25{width:25%!important}:host ::ng-deep .w-50{width:50%!important}:host ::ng-deep .w-75{width:75%!important}:host ::ng-deep .w-100{width:100%!important}:host ::ng-deep .w-auto{width:auto!important}:host ::ng-deep .mw-100{max-width:100%!important}:host ::ng-deep .vw-100{width:100vw!important}:host ::ng-deep .min-vw-100{min-width:100vw!important}:host ::ng-deep .h-25{height:25%!important}:host ::ng-deep .h-50{height:50%!important}:host ::ng-deep .h-75{height:75%!important}:host ::ng-deep .h-100{height:100%!important}:host ::ng-deep .h-auto{height:auto!important}:host ::ng-deep .mh-100{max-height:100%!important}:host ::ng-deep .vh-100{height:100vh!important}:host ::ng-deep .min-vh-100{min-height:100vh!important}:host ::ng-deep .flex-fill{flex:1 1 auto!important}:host ::ng-deep .flex-row{flex-direction:row!important}:host ::ng-deep .flex-column{flex-direction:column!important}:host ::ng-deep .flex-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-grow-0{flex-grow:0!important}:host ::ng-deep .flex-grow-1{flex-grow:1!important}:host ::ng-deep .flex-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-center{justify-content:center!important}:host ::ng-deep .justify-content-between{justify-content:space-between!important}:host ::ng-deep .justify-content-around{justify-content:space-around!important}:host ::ng-deep .justify-content-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-start{align-items:flex-start!important}:host ::ng-deep .align-items-end{align-items:flex-end!important}:host ::ng-deep .align-items-center{align-items:center!important}:host ::ng-deep .align-items-baseline{align-items:baseline!important}:host ::ng-deep .align-items-stretch{align-items:stretch!important}:host ::ng-deep .align-content-start{align-content:flex-start!important}:host ::ng-deep .align-content-end{align-content:flex-end!important}:host ::ng-deep .align-content-center{align-content:center!important}:host ::ng-deep .align-content-between{align-content:space-between!important}:host ::ng-deep .align-content-around{align-content:space-around!important}:host ::ng-deep .align-content-stretch{align-content:stretch!important}:host ::ng-deep .align-self-auto{align-self:auto!important}:host ::ng-deep .align-self-start{align-self:flex-start!important}:host ::ng-deep .align-self-end{align-self:flex-end!important}:host ::ng-deep .align-self-center{align-self:center!important}:host ::ng-deep .align-self-baseline{align-self:baseline!important}:host ::ng-deep .align-self-stretch{align-self:stretch!important}:host ::ng-deep .order-first{order:-1!important}:host ::ng-deep .order-0{order:0!important}:host ::ng-deep .order-1{order:1!important}:host ::ng-deep .order-2{order:2!important}:host ::ng-deep .order-3{order:3!important}:host ::ng-deep .order-4{order:4!important}:host ::ng-deep .order-5{order:5!important}:host ::ng-deep .order-last{order:6!important}:host ::ng-deep .m-0{margin:0!important}:host ::ng-deep .m-1{margin:.25rem!important}:host ::ng-deep .m-2{margin:.5rem!important}:host ::ng-deep .m-3{margin:1rem!important}:host ::ng-deep .m-4{margin:1.5rem!important}:host ::ng-deep .m-5{margin:3rem!important}:host ::ng-deep .m-auto{margin:auto!important}:host ::ng-deep .mx-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-0{margin-top:0!important}:host ::ng-deep .mt-1{margin-top:.25rem!important}:host ::ng-deep .mt-2{margin-top:.5rem!important}:host ::ng-deep .mt-3{margin-top:1rem!important}:host ::ng-deep .mt-4{margin-top:1.5rem!important}:host ::ng-deep .mt-5{margin-top:3rem!important}:host ::ng-deep .mt-auto{margin-top:auto!important}:host ::ng-deep .me-0{margin-right:0!important}:host ::ng-deep .me-1{margin-right:.25rem!important}:host ::ng-deep .me-2{margin-right:.5rem!important}:host ::ng-deep .me-3{margin-right:1rem!important}:host ::ng-deep .me-4{margin-right:1.5rem!important}:host ::ng-deep .me-5{margin-right:3rem!important}:host ::ng-deep .me-auto{margin-right:auto!important}:host ::ng-deep .mb-0{margin-bottom:0!important}:host ::ng-deep .mb-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-3{margin-bottom:1rem!important}:host ::ng-deep .mb-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-5{margin-bottom:3rem!important}:host ::ng-deep .mb-auto{margin-bottom:auto!important}:host ::ng-deep .ms-0{margin-left:0!important}:host ::ng-deep .ms-1{margin-left:.25rem!important}:host ::ng-deep .ms-2{margin-left:.5rem!important}:host ::ng-deep .ms-3{margin-left:1rem!important}:host ::ng-deep .ms-4{margin-left:1.5rem!important}:host ::ng-deep .ms-5{margin-left:3rem!important}:host ::ng-deep .ms-auto{margin-left:auto!important}:host ::ng-deep .p-0{padding:0!important}:host ::ng-deep .p-1{padding:.25rem!important}:host ::ng-deep .p-2{padding:.5rem!important}:host ::ng-deep .p-3{padding:1rem!important}:host ::ng-deep .p-4{padding:1.5rem!important}:host ::ng-deep .p-5{padding:3rem!important}:host ::ng-deep .px-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-0{padding-top:0!important}:host ::ng-deep .pt-1{padding-top:.25rem!important}:host ::ng-deep .pt-2{padding-top:.5rem!important}:host ::ng-deep .pt-3{padding-top:1rem!important}:host ::ng-deep .pt-4{padding-top:1.5rem!important}:host ::ng-deep .pt-5{padding-top:3rem!important}:host ::ng-deep .pe-0{padding-right:0!important}:host ::ng-deep .pe-1{padding-right:.25rem!important}:host ::ng-deep .pe-2{padding-right:.5rem!important}:host ::ng-deep .pe-3{padding-right:1rem!important}:host ::ng-deep .pe-4{padding-right:1.5rem!important}:host ::ng-deep .pe-5{padding-right:3rem!important}:host ::ng-deep .pb-0{padding-bottom:0!important}:host ::ng-deep .pb-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-3{padding-bottom:1rem!important}:host ::ng-deep .pb-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-5{padding-bottom:3rem!important}:host ::ng-deep .ps-0{padding-left:0!important}:host ::ng-deep .ps-1{padding-left:.25rem!important}:host ::ng-deep .ps-2{padding-left:.5rem!important}:host ::ng-deep .ps-3{padding-left:1rem!important}:host ::ng-deep .ps-4{padding-left:1.5rem!important}:host ::ng-deep .ps-5{padding-left:3rem!important}:host ::ng-deep .gap-0{gap:0!important}:host ::ng-deep .gap-1{gap:.25rem!important}:host ::ng-deep .gap-2{gap:.5rem!important}:host ::ng-deep .gap-3{gap:1rem!important}:host ::ng-deep .gap-4{gap:1.5rem!important}:host ::ng-deep .gap-5{gap:3rem!important}:host ::ng-deep .font-monospace{font-family:var(--bs-font-monospace)!important}:host ::ng-deep .fs-1{font-size:calc(1.375rem + 1.5vw)!important}:host ::ng-deep .fs-2{font-size:calc(1.325rem + .9vw)!important}:host ::ng-deep .fs-3{font-size:calc(1.3rem + .6vw)!important}:host ::ng-deep .fs-4{font-size:calc(1.275rem + .3vw)!important}:host ::ng-deep .fs-5{font-size:1.25rem!important}:host ::ng-deep .fs-6{font-size:1rem!important}:host ::ng-deep .fst-italic{font-style:italic!important}:host ::ng-deep .fst-normal{font-style:normal!important}:host ::ng-deep .fw-light{font-weight:300!important}:host ::ng-deep .fw-lighter{font-weight:lighter!important}:host ::ng-deep .fw-normal{font-weight:400!important}:host ::ng-deep .fw-bold{font-weight:700!important}:host ::ng-deep .fw-semibold{font-weight:600!important}:host ::ng-deep .fw-bolder{font-weight:bolder!important}:host ::ng-deep .lh-1{line-height:1!important}:host ::ng-deep .lh-sm{line-height:1.25!important}:host ::ng-deep .lh-base{line-height:1.5!important}:host ::ng-deep .lh-lg{line-height:2!important}:host ::ng-deep .text-start{text-align:left!important}:host ::ng-deep .text-end{text-align:right!important}:host ::ng-deep .text-center{text-align:center!important}:host ::ng-deep .text-decoration-none{text-decoration:none!important}:host ::ng-deep .text-decoration-underline{text-decoration:underline!important}:host ::ng-deep .text-decoration-line-through{text-decoration:line-through!important}:host ::ng-deep .text-lowercase{text-transform:lowercase!important}:host ::ng-deep .text-uppercase{text-transform:uppercase!important}:host ::ng-deep .text-capitalize{text-transform:capitalize!important}:host ::ng-deep .text-wrap{white-space:normal!important}:host ::ng-deep .text-nowrap{white-space:nowrap!important}:host ::ng-deep .text-break{word-wrap:break-word!important;word-break:break-word!important}:host ::ng-deep .text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-muted{--bs-text-opacity: 1;color:#6c757d!important}:host ::ng-deep .text-black-50{--bs-text-opacity: 1;color:#00000080!important}:host ::ng-deep .text-white-50{--bs-text-opacity: 1;color:#ffffff80!important}:host ::ng-deep .text-reset{--bs-text-opacity: 1;color:inherit!important}:host ::ng-deep .text-opacity-25{--bs-text-opacity: .25}:host ::ng-deep .text-opacity-50{--bs-text-opacity: .5}:host ::ng-deep .text-opacity-75{--bs-text-opacity: .75}:host ::ng-deep .text-opacity-100{--bs-text-opacity: 1}:host ::ng-deep .bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-transparent{--bs-bg-opacity: 1;background-color:transparent!important}:host ::ng-deep .bg-opacity-10{--bs-bg-opacity: .1}:host ::ng-deep .bg-opacity-25{--bs-bg-opacity: .25}:host ::ng-deep .bg-opacity-50{--bs-bg-opacity: .5}:host ::ng-deep .bg-opacity-75{--bs-bg-opacity: .75}:host ::ng-deep .bg-opacity-100{--bs-bg-opacity: 1}:host ::ng-deep .bg-gradient{background-image:var(--bs-gradient)!important}:host ::ng-deep .user-select-all{-webkit-user-select:all!important;user-select:all!important}:host ::ng-deep .user-select-auto{-webkit-user-select:auto!important;user-select:auto!important}:host ::ng-deep .user-select-none{-webkit-user-select:none!important;user-select:none!important}:host ::ng-deep .pe-none{pointer-events:none!important}:host ::ng-deep .pe-auto{pointer-events:auto!important}:host ::ng-deep .rounded{border-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-0{border-radius:0!important}:host ::ng-deep .rounded-1{border-radius:var(--bs-border-radius-sm)!important}:host ::ng-deep .rounded-2{border-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-3{border-radius:var(--bs-border-radius-lg)!important}:host ::ng-deep .rounded-4{border-radius:var(--bs-border-radius-xl)!important}:host ::ng-deep .rounded-5{border-radius:var(--bs-border-radius-2xl)!important}:host ::ng-deep .rounded-circle{border-radius:50%!important}:host ::ng-deep .rounded-pill{border-radius:var(--bs-border-radius-pill)!important}:host ::ng-deep .rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}:host ::ng-deep .visible{visibility:visible!important}:host ::ng-deep .invisible{visibility:hidden!important}@media (min-width: 576px){:host ::ng-deep .float-sm-start{float:left!important}:host ::ng-deep .float-sm-end{float:right!important}:host ::ng-deep .float-sm-none{float:none!important}:host ::ng-deep .d-sm-inline{display:inline!important}:host ::ng-deep .d-sm-inline-block{display:inline-block!important}:host ::ng-deep .d-sm-block{display:block!important}:host ::ng-deep .d-sm-grid{display:grid!important}:host ::ng-deep .d-sm-table{display:table!important}:host ::ng-deep .d-sm-table-row{display:table-row!important}:host ::ng-deep .d-sm-table-cell{display:table-cell!important}:host ::ng-deep .d-sm-flex{display:flex!important}:host ::ng-deep .d-sm-inline-flex{display:inline-flex!important}:host ::ng-deep .d-sm-none{display:none!important}:host ::ng-deep .flex-sm-fill{flex:1 1 auto!important}:host ::ng-deep .flex-sm-row{flex-direction:row!important}:host ::ng-deep .flex-sm-column{flex-direction:column!important}:host ::ng-deep .flex-sm-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-sm-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-sm-grow-0{flex-grow:0!important}:host ::ng-deep .flex-sm-grow-1{flex-grow:1!important}:host ::ng-deep .flex-sm-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-sm-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-sm-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-sm-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-sm-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-sm-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-sm-center{justify-content:center!important}:host ::ng-deep .justify-content-sm-between{justify-content:space-between!important}:host ::ng-deep .justify-content-sm-around{justify-content:space-around!important}:host ::ng-deep .justify-content-sm-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-sm-start{align-items:flex-start!important}:host ::ng-deep .align-items-sm-end{align-items:flex-end!important}:host ::ng-deep .align-items-sm-center{align-items:center!important}:host ::ng-deep .align-items-sm-baseline{align-items:baseline!important}:host ::ng-deep .align-items-sm-stretch{align-items:stretch!important}:host ::ng-deep .align-content-sm-start{align-content:flex-start!important}:host ::ng-deep .align-content-sm-end{align-content:flex-end!important}:host ::ng-deep .align-content-sm-center{align-content:center!important}:host ::ng-deep .align-content-sm-between{align-content:space-between!important}:host ::ng-deep .align-content-sm-around{align-content:space-around!important}:host ::ng-deep .align-content-sm-stretch{align-content:stretch!important}:host ::ng-deep .align-self-sm-auto{align-self:auto!important}:host ::ng-deep .align-self-sm-start{align-self:flex-start!important}:host ::ng-deep .align-self-sm-end{align-self:flex-end!important}:host ::ng-deep .align-self-sm-center{align-self:center!important}:host ::ng-deep .align-self-sm-baseline{align-self:baseline!important}:host ::ng-deep .align-self-sm-stretch{align-self:stretch!important}:host ::ng-deep .order-sm-first{order:-1!important}:host ::ng-deep .order-sm-0{order:0!important}:host ::ng-deep .order-sm-1{order:1!important}:host ::ng-deep .order-sm-2{order:2!important}:host ::ng-deep .order-sm-3{order:3!important}:host ::ng-deep .order-sm-4{order:4!important}:host ::ng-deep .order-sm-5{order:5!important}:host ::ng-deep .order-sm-last{order:6!important}:host ::ng-deep .m-sm-0{margin:0!important}:host ::ng-deep .m-sm-1{margin:.25rem!important}:host ::ng-deep .m-sm-2{margin:.5rem!important}:host ::ng-deep .m-sm-3{margin:1rem!important}:host ::ng-deep .m-sm-4{margin:1.5rem!important}:host ::ng-deep .m-sm-5{margin:3rem!important}:host ::ng-deep .m-sm-auto{margin:auto!important}:host ::ng-deep .mx-sm-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-sm-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-sm-0{margin-top:0!important}:host ::ng-deep .mt-sm-1{margin-top:.25rem!important}:host ::ng-deep .mt-sm-2{margin-top:.5rem!important}:host ::ng-deep .mt-sm-3{margin-top:1rem!important}:host ::ng-deep .mt-sm-4{margin-top:1.5rem!important}:host ::ng-deep .mt-sm-5{margin-top:3rem!important}:host ::ng-deep .mt-sm-auto{margin-top:auto!important}:host ::ng-deep .me-sm-0{margin-right:0!important}:host ::ng-deep .me-sm-1{margin-right:.25rem!important}:host ::ng-deep .me-sm-2{margin-right:.5rem!important}:host ::ng-deep .me-sm-3{margin-right:1rem!important}:host ::ng-deep .me-sm-4{margin-right:1.5rem!important}:host ::ng-deep .me-sm-5{margin-right:3rem!important}:host ::ng-deep .me-sm-auto{margin-right:auto!important}:host ::ng-deep .mb-sm-0{margin-bottom:0!important}:host ::ng-deep .mb-sm-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-sm-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-sm-3{margin-bottom:1rem!important}:host ::ng-deep .mb-sm-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-sm-5{margin-bottom:3rem!important}:host ::ng-deep .mb-sm-auto{margin-bottom:auto!important}:host ::ng-deep .ms-sm-0{margin-left:0!important}:host ::ng-deep .ms-sm-1{margin-left:.25rem!important}:host ::ng-deep .ms-sm-2{margin-left:.5rem!important}:host ::ng-deep .ms-sm-3{margin-left:1rem!important}:host ::ng-deep .ms-sm-4{margin-left:1.5rem!important}:host ::ng-deep .ms-sm-5{margin-left:3rem!important}:host ::ng-deep .ms-sm-auto{margin-left:auto!important}:host ::ng-deep .p-sm-0{padding:0!important}:host ::ng-deep .p-sm-1{padding:.25rem!important}:host ::ng-deep .p-sm-2{padding:.5rem!important}:host ::ng-deep .p-sm-3{padding:1rem!important}:host ::ng-deep .p-sm-4{padding:1.5rem!important}:host ::ng-deep .p-sm-5{padding:3rem!important}:host ::ng-deep .px-sm-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-sm-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-sm-0{padding-top:0!important}:host ::ng-deep .pt-sm-1{padding-top:.25rem!important}:host ::ng-deep .pt-sm-2{padding-top:.5rem!important}:host ::ng-deep .pt-sm-3{padding-top:1rem!important}:host ::ng-deep .pt-sm-4{padding-top:1.5rem!important}:host ::ng-deep .pt-sm-5{padding-top:3rem!important}:host ::ng-deep .pe-sm-0{padding-right:0!important}:host ::ng-deep .pe-sm-1{padding-right:.25rem!important}:host ::ng-deep .pe-sm-2{padding-right:.5rem!important}:host ::ng-deep .pe-sm-3{padding-right:1rem!important}:host ::ng-deep .pe-sm-4{padding-right:1.5rem!important}:host ::ng-deep .pe-sm-5{padding-right:3rem!important}:host ::ng-deep .pb-sm-0{padding-bottom:0!important}:host ::ng-deep .pb-sm-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-sm-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-sm-3{padding-bottom:1rem!important}:host ::ng-deep .pb-sm-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-sm-5{padding-bottom:3rem!important}:host ::ng-deep .ps-sm-0{padding-left:0!important}:host ::ng-deep .ps-sm-1{padding-left:.25rem!important}:host ::ng-deep .ps-sm-2{padding-left:.5rem!important}:host ::ng-deep .ps-sm-3{padding-left:1rem!important}:host ::ng-deep .ps-sm-4{padding-left:1.5rem!important}:host ::ng-deep .ps-sm-5{padding-left:3rem!important}:host ::ng-deep .gap-sm-0{gap:0!important}:host ::ng-deep .gap-sm-1{gap:.25rem!important}:host ::ng-deep .gap-sm-2{gap:.5rem!important}:host ::ng-deep .gap-sm-3{gap:1rem!important}:host ::ng-deep .gap-sm-4{gap:1.5rem!important}:host ::ng-deep .gap-sm-5{gap:3rem!important}:host ::ng-deep .text-sm-start{text-align:left!important}:host ::ng-deep .text-sm-end{text-align:right!important}:host ::ng-deep .text-sm-center{text-align:center!important}}@media (min-width: 768px){:host ::ng-deep .float-md-start{float:left!important}:host ::ng-deep .float-md-end{float:right!important}:host ::ng-deep .float-md-none{float:none!important}:host ::ng-deep .d-md-inline{display:inline!important}:host ::ng-deep .d-md-inline-block{display:inline-block!important}:host ::ng-deep .d-md-block{display:block!important}:host ::ng-deep .d-md-grid{display:grid!important}:host ::ng-deep .d-md-table{display:table!important}:host ::ng-deep .d-md-table-row{display:table-row!important}:host ::ng-deep .d-md-table-cell{display:table-cell!important}:host ::ng-deep .d-md-flex{display:flex!important}:host ::ng-deep .d-md-inline-flex{display:inline-flex!important}:host ::ng-deep .d-md-none{display:none!important}:host ::ng-deep .flex-md-fill{flex:1 1 auto!important}:host ::ng-deep .flex-md-row{flex-direction:row!important}:host ::ng-deep .flex-md-column{flex-direction:column!important}:host ::ng-deep .flex-md-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-md-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-md-grow-0{flex-grow:0!important}:host ::ng-deep .flex-md-grow-1{flex-grow:1!important}:host ::ng-deep .flex-md-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-md-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-md-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-md-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-md-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-md-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-md-center{justify-content:center!important}:host ::ng-deep .justify-content-md-between{justify-content:space-between!important}:host ::ng-deep .justify-content-md-around{justify-content:space-around!important}:host ::ng-deep .justify-content-md-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-md-start{align-items:flex-start!important}:host ::ng-deep .align-items-md-end{align-items:flex-end!important}:host ::ng-deep .align-items-md-center{align-items:center!important}:host ::ng-deep .align-items-md-baseline{align-items:baseline!important}:host ::ng-deep .align-items-md-stretch{align-items:stretch!important}:host ::ng-deep .align-content-md-start{align-content:flex-start!important}:host ::ng-deep .align-content-md-end{align-content:flex-end!important}:host ::ng-deep .align-content-md-center{align-content:center!important}:host ::ng-deep .align-content-md-between{align-content:space-between!important}:host ::ng-deep .align-content-md-around{align-content:space-around!important}:host ::ng-deep .align-content-md-stretch{align-content:stretch!important}:host ::ng-deep .align-self-md-auto{align-self:auto!important}:host ::ng-deep .align-self-md-start{align-self:flex-start!important}:host ::ng-deep .align-self-md-end{align-self:flex-end!important}:host ::ng-deep .align-self-md-center{align-self:center!important}:host ::ng-deep .align-self-md-baseline{align-self:baseline!important}:host ::ng-deep .align-self-md-stretch{align-self:stretch!important}:host ::ng-deep .order-md-first{order:-1!important}:host ::ng-deep .order-md-0{order:0!important}:host ::ng-deep .order-md-1{order:1!important}:host ::ng-deep .order-md-2{order:2!important}:host ::ng-deep .order-md-3{order:3!important}:host ::ng-deep .order-md-4{order:4!important}:host ::ng-deep .order-md-5{order:5!important}:host ::ng-deep .order-md-last{order:6!important}:host ::ng-deep .m-md-0{margin:0!important}:host ::ng-deep .m-md-1{margin:.25rem!important}:host ::ng-deep .m-md-2{margin:.5rem!important}:host ::ng-deep .m-md-3{margin:1rem!important}:host ::ng-deep .m-md-4{margin:1.5rem!important}:host ::ng-deep .m-md-5{margin:3rem!important}:host ::ng-deep .m-md-auto{margin:auto!important}:host ::ng-deep .mx-md-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-md-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-md-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-md-0{margin-top:0!important}:host ::ng-deep .mt-md-1{margin-top:.25rem!important}:host ::ng-deep .mt-md-2{margin-top:.5rem!important}:host ::ng-deep .mt-md-3{margin-top:1rem!important}:host ::ng-deep .mt-md-4{margin-top:1.5rem!important}:host ::ng-deep .mt-md-5{margin-top:3rem!important}:host ::ng-deep .mt-md-auto{margin-top:auto!important}:host ::ng-deep .me-md-0{margin-right:0!important}:host ::ng-deep .me-md-1{margin-right:.25rem!important}:host ::ng-deep .me-md-2{margin-right:.5rem!important}:host ::ng-deep .me-md-3{margin-right:1rem!important}:host ::ng-deep .me-md-4{margin-right:1.5rem!important}:host ::ng-deep .me-md-5{margin-right:3rem!important}:host ::ng-deep .me-md-auto{margin-right:auto!important}:host ::ng-deep .mb-md-0{margin-bottom:0!important}:host ::ng-deep .mb-md-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-md-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-md-3{margin-bottom:1rem!important}:host ::ng-deep .mb-md-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-md-5{margin-bottom:3rem!important}:host ::ng-deep .mb-md-auto{margin-bottom:auto!important}:host ::ng-deep .ms-md-0{margin-left:0!important}:host ::ng-deep .ms-md-1{margin-left:.25rem!important}:host ::ng-deep .ms-md-2{margin-left:.5rem!important}:host ::ng-deep .ms-md-3{margin-left:1rem!important}:host ::ng-deep .ms-md-4{margin-left:1.5rem!important}:host ::ng-deep .ms-md-5{margin-left:3rem!important}:host ::ng-deep .ms-md-auto{margin-left:auto!important}:host ::ng-deep .p-md-0{padding:0!important}:host ::ng-deep .p-md-1{padding:.25rem!important}:host ::ng-deep .p-md-2{padding:.5rem!important}:host ::ng-deep .p-md-3{padding:1rem!important}:host ::ng-deep .p-md-4{padding:1.5rem!important}:host ::ng-deep .p-md-5{padding:3rem!important}:host ::ng-deep .px-md-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-md-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-md-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-md-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-md-0{padding-top:0!important}:host ::ng-deep .pt-md-1{padding-top:.25rem!important}:host ::ng-deep .pt-md-2{padding-top:.5rem!important}:host ::ng-deep .pt-md-3{padding-top:1rem!important}:host ::ng-deep .pt-md-4{padding-top:1.5rem!important}:host ::ng-deep .pt-md-5{padding-top:3rem!important}:host ::ng-deep .pe-md-0{padding-right:0!important}:host ::ng-deep .pe-md-1{padding-right:.25rem!important}:host ::ng-deep .pe-md-2{padding-right:.5rem!important}:host ::ng-deep .pe-md-3{padding-right:1rem!important}:host ::ng-deep .pe-md-4{padding-right:1.5rem!important}:host ::ng-deep .pe-md-5{padding-right:3rem!important}:host ::ng-deep .pb-md-0{padding-bottom:0!important}:host ::ng-deep .pb-md-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-md-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-md-3{padding-bottom:1rem!important}:host ::ng-deep .pb-md-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-md-5{padding-bottom:3rem!important}:host ::ng-deep .ps-md-0{padding-left:0!important}:host ::ng-deep .ps-md-1{padding-left:.25rem!important}:host ::ng-deep .ps-md-2{padding-left:.5rem!important}:host ::ng-deep .ps-md-3{padding-left:1rem!important}:host ::ng-deep .ps-md-4{padding-left:1.5rem!important}:host ::ng-deep .ps-md-5{padding-left:3rem!important}:host ::ng-deep .gap-md-0{gap:0!important}:host ::ng-deep .gap-md-1{gap:.25rem!important}:host ::ng-deep .gap-md-2{gap:.5rem!important}:host ::ng-deep .gap-md-3{gap:1rem!important}:host ::ng-deep .gap-md-4{gap:1.5rem!important}:host ::ng-deep .gap-md-5{gap:3rem!important}:host ::ng-deep .text-md-start{text-align:left!important}:host ::ng-deep .text-md-end{text-align:right!important}:host ::ng-deep .text-md-center{text-align:center!important}}@media (min-width: 992px){:host ::ng-deep .float-lg-start{float:left!important}:host ::ng-deep .float-lg-end{float:right!important}:host ::ng-deep .float-lg-none{float:none!important}:host ::ng-deep .d-lg-inline{display:inline!important}:host ::ng-deep .d-lg-inline-block{display:inline-block!important}:host ::ng-deep .d-lg-block{display:block!important}:host ::ng-deep .d-lg-grid{display:grid!important}:host ::ng-deep .d-lg-table{display:table!important}:host ::ng-deep .d-lg-table-row{display:table-row!important}:host ::ng-deep .d-lg-table-cell{display:table-cell!important}:host ::ng-deep .d-lg-flex{display:flex!important}:host ::ng-deep .d-lg-inline-flex{display:inline-flex!important}:host ::ng-deep .d-lg-none{display:none!important}:host ::ng-deep .flex-lg-fill{flex:1 1 auto!important}:host ::ng-deep .flex-lg-row{flex-direction:row!important}:host ::ng-deep .flex-lg-column{flex-direction:column!important}:host ::ng-deep .flex-lg-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-lg-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-lg-grow-0{flex-grow:0!important}:host ::ng-deep .flex-lg-grow-1{flex-grow:1!important}:host ::ng-deep .flex-lg-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-lg-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-lg-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-lg-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-lg-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-lg-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-lg-center{justify-content:center!important}:host ::ng-deep .justify-content-lg-between{justify-content:space-between!important}:host ::ng-deep .justify-content-lg-around{justify-content:space-around!important}:host ::ng-deep .justify-content-lg-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-lg-start{align-items:flex-start!important}:host ::ng-deep .align-items-lg-end{align-items:flex-end!important}:host ::ng-deep .align-items-lg-center{align-items:center!important}:host ::ng-deep .align-items-lg-baseline{align-items:baseline!important}:host ::ng-deep .align-items-lg-stretch{align-items:stretch!important}:host ::ng-deep .align-content-lg-start{align-content:flex-start!important}:host ::ng-deep .align-content-lg-end{align-content:flex-end!important}:host ::ng-deep .align-content-lg-center{align-content:center!important}:host ::ng-deep .align-content-lg-between{align-content:space-between!important}:host ::ng-deep .align-content-lg-around{align-content:space-around!important}:host ::ng-deep .align-content-lg-stretch{align-content:stretch!important}:host ::ng-deep .align-self-lg-auto{align-self:auto!important}:host ::ng-deep .align-self-lg-start{align-self:flex-start!important}:host ::ng-deep .align-self-lg-end{align-self:flex-end!important}:host ::ng-deep .align-self-lg-center{align-self:center!important}:host ::ng-deep .align-self-lg-baseline{align-self:baseline!important}:host ::ng-deep .align-self-lg-stretch{align-self:stretch!important}:host ::ng-deep .order-lg-first{order:-1!important}:host ::ng-deep .order-lg-0{order:0!important}:host ::ng-deep .order-lg-1{order:1!important}:host ::ng-deep .order-lg-2{order:2!important}:host ::ng-deep .order-lg-3{order:3!important}:host ::ng-deep .order-lg-4{order:4!important}:host ::ng-deep .order-lg-5{order:5!important}:host ::ng-deep .order-lg-last{order:6!important}:host ::ng-deep .m-lg-0{margin:0!important}:host ::ng-deep .m-lg-1{margin:.25rem!important}:host ::ng-deep .m-lg-2{margin:.5rem!important}:host ::ng-deep .m-lg-3{margin:1rem!important}:host ::ng-deep .m-lg-4{margin:1.5rem!important}:host ::ng-deep .m-lg-5{margin:3rem!important}:host ::ng-deep .m-lg-auto{margin:auto!important}:host ::ng-deep .mx-lg-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-lg-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-lg-0{margin-top:0!important}:host ::ng-deep .mt-lg-1{margin-top:.25rem!important}:host ::ng-deep .mt-lg-2{margin-top:.5rem!important}:host ::ng-deep .mt-lg-3{margin-top:1rem!important}:host ::ng-deep .mt-lg-4{margin-top:1.5rem!important}:host ::ng-deep .mt-lg-5{margin-top:3rem!important}:host ::ng-deep .mt-lg-auto{margin-top:auto!important}:host ::ng-deep .me-lg-0{margin-right:0!important}:host ::ng-deep .me-lg-1{margin-right:.25rem!important}:host ::ng-deep .me-lg-2{margin-right:.5rem!important}:host ::ng-deep .me-lg-3{margin-right:1rem!important}:host ::ng-deep .me-lg-4{margin-right:1.5rem!important}:host ::ng-deep .me-lg-5{margin-right:3rem!important}:host ::ng-deep .me-lg-auto{margin-right:auto!important}:host ::ng-deep .mb-lg-0{margin-bottom:0!important}:host ::ng-deep .mb-lg-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-lg-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-lg-3{margin-bottom:1rem!important}:host ::ng-deep .mb-lg-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-lg-5{margin-bottom:3rem!important}:host ::ng-deep .mb-lg-auto{margin-bottom:auto!important}:host ::ng-deep .ms-lg-0{margin-left:0!important}:host ::ng-deep .ms-lg-1{margin-left:.25rem!important}:host ::ng-deep .ms-lg-2{margin-left:.5rem!important}:host ::ng-deep .ms-lg-3{margin-left:1rem!important}:host ::ng-deep .ms-lg-4{margin-left:1.5rem!important}:host ::ng-deep .ms-lg-5{margin-left:3rem!important}:host ::ng-deep .ms-lg-auto{margin-left:auto!important}:host ::ng-deep .p-lg-0{padding:0!important}:host ::ng-deep .p-lg-1{padding:.25rem!important}:host ::ng-deep .p-lg-2{padding:.5rem!important}:host ::ng-deep .p-lg-3{padding:1rem!important}:host ::ng-deep .p-lg-4{padding:1.5rem!important}:host ::ng-deep .p-lg-5{padding:3rem!important}:host ::ng-deep .px-lg-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-lg-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-lg-0{padding-top:0!important}:host ::ng-deep .pt-lg-1{padding-top:.25rem!important}:host ::ng-deep .pt-lg-2{padding-top:.5rem!important}:host ::ng-deep .pt-lg-3{padding-top:1rem!important}:host ::ng-deep .pt-lg-4{padding-top:1.5rem!important}:host ::ng-deep .pt-lg-5{padding-top:3rem!important}:host ::ng-deep .pe-lg-0{padding-right:0!important}:host ::ng-deep .pe-lg-1{padding-right:.25rem!important}:host ::ng-deep .pe-lg-2{padding-right:.5rem!important}:host ::ng-deep .pe-lg-3{padding-right:1rem!important}:host ::ng-deep .pe-lg-4{padding-right:1.5rem!important}:host ::ng-deep .pe-lg-5{padding-right:3rem!important}:host ::ng-deep .pb-lg-0{padding-bottom:0!important}:host ::ng-deep .pb-lg-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-lg-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-lg-3{padding-bottom:1rem!important}:host ::ng-deep .pb-lg-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-lg-5{padding-bottom:3rem!important}:host ::ng-deep .ps-lg-0{padding-left:0!important}:host ::ng-deep .ps-lg-1{padding-left:.25rem!important}:host ::ng-deep .ps-lg-2{padding-left:.5rem!important}:host ::ng-deep .ps-lg-3{padding-left:1rem!important}:host ::ng-deep .ps-lg-4{padding-left:1.5rem!important}:host ::ng-deep .ps-lg-5{padding-left:3rem!important}:host ::ng-deep .gap-lg-0{gap:0!important}:host ::ng-deep .gap-lg-1{gap:.25rem!important}:host ::ng-deep .gap-lg-2{gap:.5rem!important}:host ::ng-deep .gap-lg-3{gap:1rem!important}:host ::ng-deep .gap-lg-4{gap:1.5rem!important}:host ::ng-deep .gap-lg-5{gap:3rem!important}:host ::ng-deep .text-lg-start{text-align:left!important}:host ::ng-deep .text-lg-end{text-align:right!important}:host ::ng-deep .text-lg-center{text-align:center!important}}@media (min-width: 1200px){:host ::ng-deep .float-xl-start{float:left!important}:host ::ng-deep .float-xl-end{float:right!important}:host ::ng-deep .float-xl-none{float:none!important}:host ::ng-deep .d-xl-inline{display:inline!important}:host ::ng-deep .d-xl-inline-block{display:inline-block!important}:host ::ng-deep .d-xl-block{display:block!important}:host ::ng-deep .d-xl-grid{display:grid!important}:host ::ng-deep .d-xl-table{display:table!important}:host ::ng-deep .d-xl-table-row{display:table-row!important}:host ::ng-deep .d-xl-table-cell{display:table-cell!important}:host ::ng-deep .d-xl-flex{display:flex!important}:host ::ng-deep .d-xl-inline-flex{display:inline-flex!important}:host ::ng-deep .d-xl-none{display:none!important}:host ::ng-deep .flex-xl-fill{flex:1 1 auto!important}:host ::ng-deep .flex-xl-row{flex-direction:row!important}:host ::ng-deep .flex-xl-column{flex-direction:column!important}:host ::ng-deep .flex-xl-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-xl-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-xl-grow-0{flex-grow:0!important}:host ::ng-deep .flex-xl-grow-1{flex-grow:1!important}:host ::ng-deep .flex-xl-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-xl-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-xl-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-xl-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-xl-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-xl-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-xl-center{justify-content:center!important}:host ::ng-deep .justify-content-xl-between{justify-content:space-between!important}:host ::ng-deep .justify-content-xl-around{justify-content:space-around!important}:host ::ng-deep .justify-content-xl-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-xl-start{align-items:flex-start!important}:host ::ng-deep .align-items-xl-end{align-items:flex-end!important}:host ::ng-deep .align-items-xl-center{align-items:center!important}:host ::ng-deep .align-items-xl-baseline{align-items:baseline!important}:host ::ng-deep .align-items-xl-stretch{align-items:stretch!important}:host ::ng-deep .align-content-xl-start{align-content:flex-start!important}:host ::ng-deep .align-content-xl-end{align-content:flex-end!important}:host ::ng-deep .align-content-xl-center{align-content:center!important}:host ::ng-deep .align-content-xl-between{align-content:space-between!important}:host ::ng-deep .align-content-xl-around{align-content:space-around!important}:host ::ng-deep .align-content-xl-stretch{align-content:stretch!important}:host ::ng-deep .align-self-xl-auto{align-self:auto!important}:host ::ng-deep .align-self-xl-start{align-self:flex-start!important}:host ::ng-deep .align-self-xl-end{align-self:flex-end!important}:host ::ng-deep .align-self-xl-center{align-self:center!important}:host ::ng-deep .align-self-xl-baseline{align-self:baseline!important}:host ::ng-deep .align-self-xl-stretch{align-self:stretch!important}:host ::ng-deep .order-xl-first{order:-1!important}:host ::ng-deep .order-xl-0{order:0!important}:host ::ng-deep .order-xl-1{order:1!important}:host ::ng-deep .order-xl-2{order:2!important}:host ::ng-deep .order-xl-3{order:3!important}:host ::ng-deep .order-xl-4{order:4!important}:host ::ng-deep .order-xl-5{order:5!important}:host ::ng-deep .order-xl-last{order:6!important}:host ::ng-deep .m-xl-0{margin:0!important}:host ::ng-deep .m-xl-1{margin:.25rem!important}:host ::ng-deep .m-xl-2{margin:.5rem!important}:host ::ng-deep .m-xl-3{margin:1rem!important}:host ::ng-deep .m-xl-4{margin:1.5rem!important}:host ::ng-deep .m-xl-5{margin:3rem!important}:host ::ng-deep .m-xl-auto{margin:auto!important}:host ::ng-deep .mx-xl-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-xl-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-xl-0{margin-top:0!important}:host ::ng-deep .mt-xl-1{margin-top:.25rem!important}:host ::ng-deep .mt-xl-2{margin-top:.5rem!important}:host ::ng-deep .mt-xl-3{margin-top:1rem!important}:host ::ng-deep .mt-xl-4{margin-top:1.5rem!important}:host ::ng-deep .mt-xl-5{margin-top:3rem!important}:host ::ng-deep .mt-xl-auto{margin-top:auto!important}:host ::ng-deep .me-xl-0{margin-right:0!important}:host ::ng-deep .me-xl-1{margin-right:.25rem!important}:host ::ng-deep .me-xl-2{margin-right:.5rem!important}:host ::ng-deep .me-xl-3{margin-right:1rem!important}:host ::ng-deep .me-xl-4{margin-right:1.5rem!important}:host ::ng-deep .me-xl-5{margin-right:3rem!important}:host ::ng-deep .me-xl-auto{margin-right:auto!important}:host ::ng-deep .mb-xl-0{margin-bottom:0!important}:host ::ng-deep .mb-xl-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-xl-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-xl-3{margin-bottom:1rem!important}:host ::ng-deep .mb-xl-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-xl-5{margin-bottom:3rem!important}:host ::ng-deep .mb-xl-auto{margin-bottom:auto!important}:host ::ng-deep .ms-xl-0{margin-left:0!important}:host ::ng-deep .ms-xl-1{margin-left:.25rem!important}:host ::ng-deep .ms-xl-2{margin-left:.5rem!important}:host ::ng-deep .ms-xl-3{margin-left:1rem!important}:host ::ng-deep .ms-xl-4{margin-left:1.5rem!important}:host ::ng-deep .ms-xl-5{margin-left:3rem!important}:host ::ng-deep .ms-xl-auto{margin-left:auto!important}:host ::ng-deep .p-xl-0{padding:0!important}:host ::ng-deep .p-xl-1{padding:.25rem!important}:host ::ng-deep .p-xl-2{padding:.5rem!important}:host ::ng-deep .p-xl-3{padding:1rem!important}:host ::ng-deep .p-xl-4{padding:1.5rem!important}:host ::ng-deep .p-xl-5{padding:3rem!important}:host ::ng-deep .px-xl-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-xl-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-xl-0{padding-top:0!important}:host ::ng-deep .pt-xl-1{padding-top:.25rem!important}:host ::ng-deep .pt-xl-2{padding-top:.5rem!important}:host ::ng-deep .pt-xl-3{padding-top:1rem!important}:host ::ng-deep .pt-xl-4{padding-top:1.5rem!important}:host ::ng-deep .pt-xl-5{padding-top:3rem!important}:host ::ng-deep .pe-xl-0{padding-right:0!important}:host ::ng-deep .pe-xl-1{padding-right:.25rem!important}:host ::ng-deep .pe-xl-2{padding-right:.5rem!important}:host ::ng-deep .pe-xl-3{padding-right:1rem!important}:host ::ng-deep .pe-xl-4{padding-right:1.5rem!important}:host ::ng-deep .pe-xl-5{padding-right:3rem!important}:host ::ng-deep .pb-xl-0{padding-bottom:0!important}:host ::ng-deep .pb-xl-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-xl-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-xl-3{padding-bottom:1rem!important}:host ::ng-deep .pb-xl-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-xl-5{padding-bottom:3rem!important}:host ::ng-deep .ps-xl-0{padding-left:0!important}:host ::ng-deep .ps-xl-1{padding-left:.25rem!important}:host ::ng-deep .ps-xl-2{padding-left:.5rem!important}:host ::ng-deep .ps-xl-3{padding-left:1rem!important}:host ::ng-deep .ps-xl-4{padding-left:1.5rem!important}:host ::ng-deep .ps-xl-5{padding-left:3rem!important}:host ::ng-deep .gap-xl-0{gap:0!important}:host ::ng-deep .gap-xl-1{gap:.25rem!important}:host ::ng-deep .gap-xl-2{gap:.5rem!important}:host ::ng-deep .gap-xl-3{gap:1rem!important}:host ::ng-deep .gap-xl-4{gap:1.5rem!important}:host ::ng-deep .gap-xl-5{gap:3rem!important}:host ::ng-deep .text-xl-start{text-align:left!important}:host ::ng-deep .text-xl-end{text-align:right!important}:host ::ng-deep .text-xl-center{text-align:center!important}}@media (min-width: 1400px){:host ::ng-deep .float-xxl-start{float:left!important}:host ::ng-deep .float-xxl-end{float:right!important}:host ::ng-deep .float-xxl-none{float:none!important}:host ::ng-deep .d-xxl-inline{display:inline!important}:host ::ng-deep .d-xxl-inline-block{display:inline-block!important}:host ::ng-deep .d-xxl-block{display:block!important}:host ::ng-deep .d-xxl-grid{display:grid!important}:host ::ng-deep .d-xxl-table{display:table!important}:host ::ng-deep .d-xxl-table-row{display:table-row!important}:host ::ng-deep .d-xxl-table-cell{display:table-cell!important}:host ::ng-deep .d-xxl-flex{display:flex!important}:host ::ng-deep .d-xxl-inline-flex{display:inline-flex!important}:host ::ng-deep .d-xxl-none{display:none!important}:host ::ng-deep .flex-xxl-fill{flex:1 1 auto!important}:host ::ng-deep .flex-xxl-row{flex-direction:row!important}:host ::ng-deep .flex-xxl-column{flex-direction:column!important}:host ::ng-deep .flex-xxl-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-xxl-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-xxl-grow-0{flex-grow:0!important}:host ::ng-deep .flex-xxl-grow-1{flex-grow:1!important}:host ::ng-deep .flex-xxl-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-xxl-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-xxl-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-xxl-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-xxl-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-xxl-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-xxl-center{justify-content:center!important}:host ::ng-deep .justify-content-xxl-between{justify-content:space-between!important}:host ::ng-deep .justify-content-xxl-around{justify-content:space-around!important}:host ::ng-deep .justify-content-xxl-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-xxl-start{align-items:flex-start!important}:host ::ng-deep .align-items-xxl-end{align-items:flex-end!important}:host ::ng-deep .align-items-xxl-center{align-items:center!important}:host ::ng-deep .align-items-xxl-baseline{align-items:baseline!important}:host ::ng-deep .align-items-xxl-stretch{align-items:stretch!important}:host ::ng-deep .align-content-xxl-start{align-content:flex-start!important}:host ::ng-deep .align-content-xxl-end{align-content:flex-end!important}:host ::ng-deep .align-content-xxl-center{align-content:center!important}:host ::ng-deep .align-content-xxl-between{align-content:space-between!important}:host ::ng-deep .align-content-xxl-around{align-content:space-around!important}:host ::ng-deep .align-content-xxl-stretch{align-content:stretch!important}:host ::ng-deep .align-self-xxl-auto{align-self:auto!important}:host ::ng-deep .align-self-xxl-start{align-self:flex-start!important}:host ::ng-deep .align-self-xxl-end{align-self:flex-end!important}:host ::ng-deep .align-self-xxl-center{align-self:center!important}:host ::ng-deep .align-self-xxl-baseline{align-self:baseline!important}:host ::ng-deep .align-self-xxl-stretch{align-self:stretch!important}:host ::ng-deep .order-xxl-first{order:-1!important}:host ::ng-deep .order-xxl-0{order:0!important}:host ::ng-deep .order-xxl-1{order:1!important}:host ::ng-deep .order-xxl-2{order:2!important}:host ::ng-deep .order-xxl-3{order:3!important}:host ::ng-deep .order-xxl-4{order:4!important}:host ::ng-deep .order-xxl-5{order:5!important}:host ::ng-deep .order-xxl-last{order:6!important}:host ::ng-deep .m-xxl-0{margin:0!important}:host ::ng-deep .m-xxl-1{margin:.25rem!important}:host ::ng-deep .m-xxl-2{margin:.5rem!important}:host ::ng-deep .m-xxl-3{margin:1rem!important}:host ::ng-deep .m-xxl-4{margin:1.5rem!important}:host ::ng-deep .m-xxl-5{margin:3rem!important}:host ::ng-deep .m-xxl-auto{margin:auto!important}:host ::ng-deep .mx-xxl-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-xxl-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-xxl-0{margin-top:0!important}:host ::ng-deep .mt-xxl-1{margin-top:.25rem!important}:host ::ng-deep .mt-xxl-2{margin-top:.5rem!important}:host ::ng-deep .mt-xxl-3{margin-top:1rem!important}:host ::ng-deep .mt-xxl-4{margin-top:1.5rem!important}:host ::ng-deep .mt-xxl-5{margin-top:3rem!important}:host ::ng-deep .mt-xxl-auto{margin-top:auto!important}:host ::ng-deep .me-xxl-0{margin-right:0!important}:host ::ng-deep .me-xxl-1{margin-right:.25rem!important}:host ::ng-deep .me-xxl-2{margin-right:.5rem!important}:host ::ng-deep .me-xxl-3{margin-right:1rem!important}:host ::ng-deep .me-xxl-4{margin-right:1.5rem!important}:host ::ng-deep .me-xxl-5{margin-right:3rem!important}:host ::ng-deep .me-xxl-auto{margin-right:auto!important}:host ::ng-deep .mb-xxl-0{margin-bottom:0!important}:host ::ng-deep .mb-xxl-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-xxl-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-xxl-3{margin-bottom:1rem!important}:host ::ng-deep .mb-xxl-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-xxl-5{margin-bottom:3rem!important}:host ::ng-deep .mb-xxl-auto{margin-bottom:auto!important}:host ::ng-deep .ms-xxl-0{margin-left:0!important}:host ::ng-deep .ms-xxl-1{margin-left:.25rem!important}:host ::ng-deep .ms-xxl-2{margin-left:.5rem!important}:host ::ng-deep .ms-xxl-3{margin-left:1rem!important}:host ::ng-deep .ms-xxl-4{margin-left:1.5rem!important}:host ::ng-deep .ms-xxl-5{margin-left:3rem!important}:host ::ng-deep .ms-xxl-auto{margin-left:auto!important}:host ::ng-deep .p-xxl-0{padding:0!important}:host ::ng-deep .p-xxl-1{padding:.25rem!important}:host ::ng-deep .p-xxl-2{padding:.5rem!important}:host ::ng-deep .p-xxl-3{padding:1rem!important}:host ::ng-deep .p-xxl-4{padding:1.5rem!important}:host ::ng-deep .p-xxl-5{padding:3rem!important}:host ::ng-deep .px-xxl-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-xxl-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-xxl-0{padding-top:0!important}:host ::ng-deep .pt-xxl-1{padding-top:.25rem!important}:host ::ng-deep .pt-xxl-2{padding-top:.5rem!important}:host ::ng-deep .pt-xxl-3{padding-top:1rem!important}:host ::ng-deep .pt-xxl-4{padding-top:1.5rem!important}:host ::ng-deep .pt-xxl-5{padding-top:3rem!important}:host ::ng-deep .pe-xxl-0{padding-right:0!important}:host ::ng-deep .pe-xxl-1{padding-right:.25rem!important}:host ::ng-deep .pe-xxl-2{padding-right:.5rem!important}:host ::ng-deep .pe-xxl-3{padding-right:1rem!important}:host ::ng-deep .pe-xxl-4{padding-right:1.5rem!important}:host ::ng-deep .pe-xxl-5{padding-right:3rem!important}:host ::ng-deep .pb-xxl-0{padding-bottom:0!important}:host ::ng-deep .pb-xxl-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-xxl-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-xxl-3{padding-bottom:1rem!important}:host ::ng-deep .pb-xxl-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-xxl-5{padding-bottom:3rem!important}:host ::ng-deep .ps-xxl-0{padding-left:0!important}:host ::ng-deep .ps-xxl-1{padding-left:.25rem!important}:host ::ng-deep .ps-xxl-2{padding-left:.5rem!important}:host ::ng-deep .ps-xxl-3{padding-left:1rem!important}:host ::ng-deep .ps-xxl-4{padding-left:1.5rem!important}:host ::ng-deep .ps-xxl-5{padding-left:3rem!important}:host ::ng-deep .gap-xxl-0{gap:0!important}:host ::ng-deep .gap-xxl-1{gap:.25rem!important}:host ::ng-deep .gap-xxl-2{gap:.5rem!important}:host ::ng-deep .gap-xxl-3{gap:1rem!important}:host ::ng-deep .gap-xxl-4{gap:1.5rem!important}:host ::ng-deep .gap-xxl-5{gap:3rem!important}:host ::ng-deep .text-xxl-start{text-align:left!important}:host ::ng-deep .text-xxl-end{text-align:right!important}:host ::ng-deep .text-xxl-center{text-align:center!important}}@media (min-width: 1200px){:host ::ng-deep .fs-1{font-size:2.5rem!important}:host ::ng-deep .fs-2{font-size:2rem!important}:host ::ng-deep .fs-3{font-size:1.75rem!important}:host ::ng-deep .fs-4{font-size:1.5rem!important}}@media print{:host ::ng-deep .d-print-inline{display:inline!important}:host ::ng-deep .d-print-inline-block{display:inline-block!important}:host ::ng-deep .d-print-block{display:block!important}:host ::ng-deep .d-print-grid{display:grid!important}:host ::ng-deep .d-print-table{display:table!important}:host ::ng-deep .d-print-table-row{display:table-row!important}:host ::ng-deep .d-print-table-cell{display:table-cell!important}:host ::ng-deep .d-print-flex{display:flex!important}:host ::ng-deep .d-print-inline-flex{display:inline-flex!important}:host ::ng-deep .d-print-none{display:none!important}}:host ::ng-deep .container,:host ::ng-deep .container-fluid,:host ::ng-deep .container-xxl,:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width: 576px){:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:540px}}@media (min-width: 768px){:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:720px}}@media (min-width: 992px){:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:960px}}@media (min-width: 1200px){:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:1140px}}@media (min-width: 1400px){:host ::ng-deep .container-xxl,:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:1320px}}:host ::ng-deep .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}:host ::ng-deep .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}:host ::ng-deep .col{flex:1 0 0%}:host ::ng-deep .row-cols-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-1{margin-left:8.33333333%}:host ::ng-deep .offset-2{margin-left:16.66666667%}:host ::ng-deep .offset-3{margin-left:25%}:host ::ng-deep .offset-4{margin-left:33.33333333%}:host ::ng-deep .offset-5{margin-left:41.66666667%}:host ::ng-deep .offset-6{margin-left:50%}:host ::ng-deep .offset-7{margin-left:58.33333333%}:host ::ng-deep .offset-8{margin-left:66.66666667%}:host ::ng-deep .offset-9{margin-left:75%}:host ::ng-deep .offset-10{margin-left:83.33333333%}:host ::ng-deep .offset-11{margin-left:91.66666667%}:host ::ng-deep .g-0,:host ::ng-deep .gx-0{--bs-gutter-x: 0}:host ::ng-deep .g-0,:host ::ng-deep .gy-0{--bs-gutter-y: 0}:host ::ng-deep .g-1,:host ::ng-deep .gx-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-1,:host ::ng-deep .gy-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-2,:host ::ng-deep .gx-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-2,:host ::ng-deep .gy-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-3,:host ::ng-deep .gx-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-3,:host ::ng-deep .gy-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-4,:host ::ng-deep .gx-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-4,:host ::ng-deep .gy-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-5,:host ::ng-deep .gx-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-5,:host ::ng-deep .gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){:host ::ng-deep .col-sm{flex:1 0 0%}:host ::ng-deep .row-cols-sm-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-sm-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-sm-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-sm-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-sm-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-sm-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-sm-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-sm-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-sm-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-sm-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-sm-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-sm-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-sm-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-sm-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-sm-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-sm-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-sm-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-sm-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-sm-0{margin-left:0}:host ::ng-deep .offset-sm-1{margin-left:8.33333333%}:host ::ng-deep .offset-sm-2{margin-left:16.66666667%}:host ::ng-deep .offset-sm-3{margin-left:25%}:host ::ng-deep .offset-sm-4{margin-left:33.33333333%}:host ::ng-deep .offset-sm-5{margin-left:41.66666667%}:host ::ng-deep .offset-sm-6{margin-left:50%}:host ::ng-deep .offset-sm-7{margin-left:58.33333333%}:host ::ng-deep .offset-sm-8{margin-left:66.66666667%}:host ::ng-deep .offset-sm-9{margin-left:75%}:host ::ng-deep .offset-sm-10{margin-left:83.33333333%}:host ::ng-deep .offset-sm-11{margin-left:91.66666667%}:host ::ng-deep .g-sm-0,:host ::ng-deep .gx-sm-0{--bs-gutter-x: 0}:host ::ng-deep .g-sm-0,:host ::ng-deep .gy-sm-0{--bs-gutter-y: 0}:host ::ng-deep .g-sm-1,:host ::ng-deep .gx-sm-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-sm-1,:host ::ng-deep .gy-sm-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-sm-2,:host ::ng-deep .gx-sm-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-sm-2,:host ::ng-deep .gy-sm-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-sm-3,:host ::ng-deep .gx-sm-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-sm-3,:host ::ng-deep .gy-sm-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-sm-4,:host ::ng-deep .gx-sm-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-sm-4,:host ::ng-deep .gy-sm-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-sm-5,:host ::ng-deep .gx-sm-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-sm-5,:host ::ng-deep .gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){:host ::ng-deep .col-md{flex:1 0 0%}:host ::ng-deep .row-cols-md-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-md-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-md-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-md-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-md-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-md-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-md-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-md-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-md-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-md-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-md-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-md-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-md-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-md-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-md-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-md-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-md-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-md-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-md-0{margin-left:0}:host ::ng-deep .offset-md-1{margin-left:8.33333333%}:host ::ng-deep .offset-md-2{margin-left:16.66666667%}:host ::ng-deep .offset-md-3{margin-left:25%}:host ::ng-deep .offset-md-4{margin-left:33.33333333%}:host ::ng-deep .offset-md-5{margin-left:41.66666667%}:host ::ng-deep .offset-md-6{margin-left:50%}:host ::ng-deep .offset-md-7{margin-left:58.33333333%}:host ::ng-deep .offset-md-8{margin-left:66.66666667%}:host ::ng-deep .offset-md-9{margin-left:75%}:host ::ng-deep .offset-md-10{margin-left:83.33333333%}:host ::ng-deep .offset-md-11{margin-left:91.66666667%}:host ::ng-deep .g-md-0,:host ::ng-deep .gx-md-0{--bs-gutter-x: 0}:host ::ng-deep .g-md-0,:host ::ng-deep .gy-md-0{--bs-gutter-y: 0}:host ::ng-deep .g-md-1,:host ::ng-deep .gx-md-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-md-1,:host ::ng-deep .gy-md-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-md-2,:host ::ng-deep .gx-md-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-md-2,:host ::ng-deep .gy-md-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-md-3,:host ::ng-deep .gx-md-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-md-3,:host ::ng-deep .gy-md-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-md-4,:host ::ng-deep .gx-md-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-md-4,:host ::ng-deep .gy-md-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-md-5,:host ::ng-deep .gx-md-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-md-5,:host ::ng-deep .gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){:host ::ng-deep .col-lg{flex:1 0 0%}:host ::ng-deep .row-cols-lg-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-lg-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-lg-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-lg-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-lg-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-lg-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-lg-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-lg-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-lg-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-lg-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-lg-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-lg-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-lg-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-lg-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-lg-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-lg-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-lg-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-lg-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-lg-0{margin-left:0}:host ::ng-deep .offset-lg-1{margin-left:8.33333333%}:host ::ng-deep .offset-lg-2{margin-left:16.66666667%}:host ::ng-deep .offset-lg-3{margin-left:25%}:host ::ng-deep .offset-lg-4{margin-left:33.33333333%}:host ::ng-deep .offset-lg-5{margin-left:41.66666667%}:host ::ng-deep .offset-lg-6{margin-left:50%}:host ::ng-deep .offset-lg-7{margin-left:58.33333333%}:host ::ng-deep .offset-lg-8{margin-left:66.66666667%}:host ::ng-deep .offset-lg-9{margin-left:75%}:host ::ng-deep .offset-lg-10{margin-left:83.33333333%}:host ::ng-deep .offset-lg-11{margin-left:91.66666667%}:host ::ng-deep .g-lg-0,:host ::ng-deep .gx-lg-0{--bs-gutter-x: 0}:host ::ng-deep .g-lg-0,:host ::ng-deep .gy-lg-0{--bs-gutter-y: 0}:host ::ng-deep .g-lg-1,:host ::ng-deep .gx-lg-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-lg-1,:host ::ng-deep .gy-lg-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-lg-2,:host ::ng-deep .gx-lg-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-lg-2,:host ::ng-deep .gy-lg-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-lg-3,:host ::ng-deep .gx-lg-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-lg-3,:host ::ng-deep .gy-lg-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-lg-4,:host ::ng-deep .gx-lg-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-lg-4,:host ::ng-deep .gy-lg-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-lg-5,:host ::ng-deep .gx-lg-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-lg-5,:host ::ng-deep .gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){:host ::ng-deep .col-xl{flex:1 0 0%}:host ::ng-deep .row-cols-xl-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-xl-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-xl-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-xl-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-xl-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-xl-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-xl-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-xl-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-xl-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-xl-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-xl-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-xl-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-xl-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-xl-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-xl-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-xl-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-xl-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-xl-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-xl-0{margin-left:0}:host ::ng-deep .offset-xl-1{margin-left:8.33333333%}:host ::ng-deep .offset-xl-2{margin-left:16.66666667%}:host ::ng-deep .offset-xl-3{margin-left:25%}:host ::ng-deep .offset-xl-4{margin-left:33.33333333%}:host ::ng-deep .offset-xl-5{margin-left:41.66666667%}:host ::ng-deep .offset-xl-6{margin-left:50%}:host ::ng-deep .offset-xl-7{margin-left:58.33333333%}:host ::ng-deep .offset-xl-8{margin-left:66.66666667%}:host ::ng-deep .offset-xl-9{margin-left:75%}:host ::ng-deep .offset-xl-10{margin-left:83.33333333%}:host ::ng-deep .offset-xl-11{margin-left:91.66666667%}:host ::ng-deep .g-xl-0,:host ::ng-deep .gx-xl-0{--bs-gutter-x: 0}:host ::ng-deep .g-xl-0,:host ::ng-deep .gy-xl-0{--bs-gutter-y: 0}:host ::ng-deep .g-xl-1,:host ::ng-deep .gx-xl-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-xl-1,:host ::ng-deep .gy-xl-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-xl-2,:host ::ng-deep .gx-xl-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-xl-2,:host ::ng-deep .gy-xl-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-xl-3,:host ::ng-deep .gx-xl-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-xl-3,:host ::ng-deep .gy-xl-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-xl-4,:host ::ng-deep .gx-xl-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-xl-4,:host ::ng-deep .gy-xl-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-xl-5,:host ::ng-deep .gx-xl-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-xl-5,:host ::ng-deep .gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){:host ::ng-deep .col-xxl{flex:1 0 0%}:host ::ng-deep .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-xxl-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-xxl-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-xxl-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-xxl-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-xxl-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-xxl-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-xxl-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-xxl-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-xxl-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-xxl-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-xxl-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-xxl-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-xxl-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-xxl-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-xxl-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-xxl-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-xxl-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-xxl-0{margin-left:0}:host ::ng-deep .offset-xxl-1{margin-left:8.33333333%}:host ::ng-deep .offset-xxl-2{margin-left:16.66666667%}:host ::ng-deep .offset-xxl-3{margin-left:25%}:host ::ng-deep .offset-xxl-4{margin-left:33.33333333%}:host ::ng-deep .offset-xxl-5{margin-left:41.66666667%}:host ::ng-deep .offset-xxl-6{margin-left:50%}:host ::ng-deep .offset-xxl-7{margin-left:58.33333333%}:host ::ng-deep .offset-xxl-8{margin-left:66.66666667%}:host ::ng-deep .offset-xxl-9{margin-left:75%}:host ::ng-deep .offset-xxl-10{margin-left:83.33333333%}:host ::ng-deep .offset-xxl-11{margin-left:91.66666667%}:host ::ng-deep .g-xxl-0,:host ::ng-deep .gx-xxl-0{--bs-gutter-x: 0}:host ::ng-deep .g-xxl-0,:host ::ng-deep .gy-xxl-0{--bs-gutter-y: 0}:host ::ng-deep .g-xxl-1,:host ::ng-deep .gx-xxl-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-xxl-1,:host ::ng-deep .gy-xxl-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-xxl-2,:host ::ng-deep .gx-xxl-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-xxl-2,:host ::ng-deep .gy-xxl-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-xxl-3,:host ::ng-deep .gx-xxl-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-xxl-3,:host ::ng-deep .gy-xxl-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-xxl-4,:host ::ng-deep .gx-xxl-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-xxl-4,:host ::ng-deep .gy-xxl-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-xxl-5,:host ::ng-deep .gx-xxl-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-xxl-5,:host ::ng-deep .gy-xxl-5{--bs-gutter-y: 3rem}}:host{display:contents}\n"], dependencies: [{ kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridComponent, decorators: [{
|
|
29
|
-
type: Component,
|
|
30
|
-
args: [{ selector: 'bs-grid', template: "<div [class]=\"containerClass$ | async\">\n <ng-content></ng-content>\n</div>", styles: [":host ::ng-deep :root{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #dc3545;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #000;--bs-white: #fff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #0d6efd;--bs-secondary: #6c757d;--bs-success: #198754;--bs-info: #0dcaf0;--bs-warning: #ffc107;--bs-danger: #dc3545;--bs-light: #f8f9fa;--bs-dark: #212529;--bs-primary-rgb: 13, 110, 253;--bs-secondary-rgb: 108, 117, 125;--bs-success-rgb: 25, 135, 84;--bs-info-rgb: 13, 202, 240;--bs-warning-rgb: 255, 193, 7;--bs-danger-rgb: 220, 53, 69;--bs-light-rgb: 248, 249, 250;--bs-dark-rgb: 33, 37, 41;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 0, 0, 0;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg-rgb: 255, 255, 255;--bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size: 1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-bg: #fff;--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(0, 0, 0, .175);--bs-border-radius: .375rem;--bs-border-radius-sm: .25rem;--bs-border-radius-lg: .5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-2xl: 2rem;--bs-border-radius-pill: 50rem;--bs-link-color: #0d6efd;--bs-link-hover-color: #0a58ca;--bs-code-color: #d63384;--bs-highlight-bg: #fff3cd}:host ::ng-deep .clearfix:after{display:block;clear:both;content:\"\"}:host ::ng-deep .text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity, 1))!important}:host ::ng-deep .link-primary{color:#0d6efd!important}:host ::ng-deep .link-primary:hover,:host ::ng-deep .link-primary:focus{color:#0a58ca!important}:host ::ng-deep .link-secondary{color:#6c757d!important}:host ::ng-deep .link-secondary:hover,:host ::ng-deep .link-secondary:focus{color:#565e64!important}:host ::ng-deep .link-success{color:#198754!important}:host ::ng-deep .link-success:hover,:host ::ng-deep .link-success:focus{color:#146c43!important}:host ::ng-deep .link-info{color:#0dcaf0!important}:host ::ng-deep .link-info:hover,:host ::ng-deep .link-info:focus{color:#3dd5f3!important}:host ::ng-deep .link-warning{color:#ffc107!important}:host ::ng-deep .link-warning:hover,:host ::ng-deep .link-warning:focus{color:#ffcd39!important}:host ::ng-deep .link-danger{color:#dc3545!important}:host ::ng-deep .link-danger:hover,:host ::ng-deep .link-danger:focus{color:#b02a37!important}:host ::ng-deep .link-light{color:#f8f9fa!important}:host ::ng-deep .link-light:hover,:host ::ng-deep .link-light:focus{color:#f9fafb!important}:host ::ng-deep .link-dark{color:#212529!important}:host ::ng-deep .link-dark:hover,:host ::ng-deep .link-dark:focus{color:#1a1e21!important}:host ::ng-deep .ratio{position:relative;width:100%}:host ::ng-deep .ratio:before{display:block;padding-top:var(--bs-aspect-ratio);content:\"\"}:host ::ng-deep .ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}:host ::ng-deep .ratio-1x1{--bs-aspect-ratio: 100%}:host ::ng-deep .ratio-4x3{--bs-aspect-ratio: 75%}:host ::ng-deep .ratio-16x9{--bs-aspect-ratio: 56.25%}:host ::ng-deep .ratio-21x9{--bs-aspect-ratio: 42.8571428571%}:host ::ng-deep .fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}:host ::ng-deep .fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}:host ::ng-deep .sticky-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-bottom{position:sticky;bottom:0;z-index:1020}@media (min-width: 576px){:host ::ng-deep .sticky-sm-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 768px){:host ::ng-deep .sticky-md-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 992px){:host ::ng-deep .sticky-lg-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 1200px){:host ::ng-deep .sticky-xl-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width: 1400px){:host ::ng-deep .sticky-xxl-top{position:sticky;top:0;z-index:1020}:host ::ng-deep .sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}:host ::ng-deep .hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}:host ::ng-deep .vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}:host ::ng-deep .visually-hidden,:host ::ng-deep .visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}:host ::ng-deep .stretched-link:after{position:absolute;inset:0;z-index:1;content:\"\"}:host ::ng-deep .text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}:host ::ng-deep .vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}:host ::ng-deep .align-baseline{vertical-align:baseline!important}:host ::ng-deep .align-top{vertical-align:top!important}:host ::ng-deep .align-middle{vertical-align:middle!important}:host ::ng-deep .align-bottom{vertical-align:bottom!important}:host ::ng-deep .align-text-bottom{vertical-align:text-bottom!important}:host ::ng-deep .align-text-top{vertical-align:text-top!important}:host ::ng-deep .float-start{float:left!important}:host ::ng-deep .float-end{float:right!important}:host ::ng-deep .float-none{float:none!important}:host ::ng-deep .opacity-0{opacity:0!important}:host ::ng-deep .opacity-25{opacity:.25!important}:host ::ng-deep .opacity-50{opacity:.5!important}:host ::ng-deep .opacity-75{opacity:.75!important}:host ::ng-deep .opacity-100{opacity:1!important}:host ::ng-deep .overflow-auto{overflow:auto!important}:host ::ng-deep .overflow-hidden{overflow:hidden!important}:host ::ng-deep .overflow-visible{overflow:visible!important}:host ::ng-deep .overflow-scroll{overflow:scroll!important}:host ::ng-deep .d-inline{display:inline!important}:host ::ng-deep .d-inline-block{display:inline-block!important}:host ::ng-deep .d-block{display:block!important}:host ::ng-deep .d-grid{display:grid!important}:host ::ng-deep .d-table{display:table!important}:host ::ng-deep .d-table-row{display:table-row!important}:host ::ng-deep .d-table-cell{display:table-cell!important}:host ::ng-deep .d-flex{display:flex!important}:host ::ng-deep .d-inline-flex{display:inline-flex!important}:host ::ng-deep .d-none{display:none!important}:host ::ng-deep .shadow{box-shadow:0 .5rem 1rem #00000026!important}:host ::ng-deep .shadow-sm{box-shadow:0 .125rem .25rem #00000013!important}:host ::ng-deep .shadow-lg{box-shadow:0 1rem 3rem #0000002d!important}:host ::ng-deep .shadow-none{box-shadow:none!important}:host ::ng-deep .position-static{position:static!important}:host ::ng-deep .position-relative{position:relative!important}:host ::ng-deep .position-absolute{position:absolute!important}:host ::ng-deep .position-fixed{position:fixed!important}:host ::ng-deep .position-sticky{position:sticky!important}:host ::ng-deep .top-0{top:0!important}:host ::ng-deep .top-50{top:50%!important}:host ::ng-deep .top-100{top:100%!important}:host ::ng-deep .bottom-0{bottom:0!important}:host ::ng-deep .bottom-50{bottom:50%!important}:host ::ng-deep .bottom-100{bottom:100%!important}:host ::ng-deep .start-0{left:0!important}:host ::ng-deep .start-50{left:50%!important}:host ::ng-deep .start-100{left:100%!important}:host ::ng-deep .end-0{right:0!important}:host ::ng-deep .end-50{right:50%!important}:host ::ng-deep .end-100{right:100%!important}:host ::ng-deep .translate-middle{transform:translate(-50%,-50%)!important}:host ::ng-deep .translate-middle-x{transform:translate(-50%)!important}:host ::ng-deep .translate-middle-y{transform:translateY(-50%)!important}:host ::ng-deep .border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-0{border:0!important}:host ::ng-deep .border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-top-0{border-top:0!important}:host ::ng-deep .border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-end-0{border-right:0!important}:host ::ng-deep .border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-bottom-0{border-bottom:0!important}:host ::ng-deep .border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}:host ::ng-deep .border-start-0{border-left:0!important}:host ::ng-deep .border-primary{--bs-border-opacity: 1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-secondary{--bs-border-opacity: 1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-success{--bs-border-opacity: 1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-info{--bs-border-opacity: 1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-warning{--bs-border-opacity: 1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-danger{--bs-border-opacity: 1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-light{--bs-border-opacity: 1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-dark{--bs-border-opacity: 1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-white{--bs-border-opacity: 1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}:host ::ng-deep .border-1{--bs-border-width: 1px}:host ::ng-deep .border-2{--bs-border-width: 2px}:host ::ng-deep .border-3{--bs-border-width: 3px}:host ::ng-deep .border-4{--bs-border-width: 4px}:host ::ng-deep .border-5{--bs-border-width: 5px}:host ::ng-deep .border-opacity-10{--bs-border-opacity: .1}:host ::ng-deep .border-opacity-25{--bs-border-opacity: .25}:host ::ng-deep .border-opacity-50{--bs-border-opacity: .5}:host ::ng-deep .border-opacity-75{--bs-border-opacity: .75}:host ::ng-deep .border-opacity-100{--bs-border-opacity: 1}:host ::ng-deep .w-25{width:25%!important}:host ::ng-deep .w-50{width:50%!important}:host ::ng-deep .w-75{width:75%!important}:host ::ng-deep .w-100{width:100%!important}:host ::ng-deep .w-auto{width:auto!important}:host ::ng-deep .mw-100{max-width:100%!important}:host ::ng-deep .vw-100{width:100vw!important}:host ::ng-deep .min-vw-100{min-width:100vw!important}:host ::ng-deep .h-25{height:25%!important}:host ::ng-deep .h-50{height:50%!important}:host ::ng-deep .h-75{height:75%!important}:host ::ng-deep .h-100{height:100%!important}:host ::ng-deep .h-auto{height:auto!important}:host ::ng-deep .mh-100{max-height:100%!important}:host ::ng-deep .vh-100{height:100vh!important}:host ::ng-deep .min-vh-100{min-height:100vh!important}:host ::ng-deep .flex-fill{flex:1 1 auto!important}:host ::ng-deep .flex-row{flex-direction:row!important}:host ::ng-deep .flex-column{flex-direction:column!important}:host ::ng-deep .flex-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-grow-0{flex-grow:0!important}:host ::ng-deep .flex-grow-1{flex-grow:1!important}:host ::ng-deep .flex-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-center{justify-content:center!important}:host ::ng-deep .justify-content-between{justify-content:space-between!important}:host ::ng-deep .justify-content-around{justify-content:space-around!important}:host ::ng-deep .justify-content-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-start{align-items:flex-start!important}:host ::ng-deep .align-items-end{align-items:flex-end!important}:host ::ng-deep .align-items-center{align-items:center!important}:host ::ng-deep .align-items-baseline{align-items:baseline!important}:host ::ng-deep .align-items-stretch{align-items:stretch!important}:host ::ng-deep .align-content-start{align-content:flex-start!important}:host ::ng-deep .align-content-end{align-content:flex-end!important}:host ::ng-deep .align-content-center{align-content:center!important}:host ::ng-deep .align-content-between{align-content:space-between!important}:host ::ng-deep .align-content-around{align-content:space-around!important}:host ::ng-deep .align-content-stretch{align-content:stretch!important}:host ::ng-deep .align-self-auto{align-self:auto!important}:host ::ng-deep .align-self-start{align-self:flex-start!important}:host ::ng-deep .align-self-end{align-self:flex-end!important}:host ::ng-deep .align-self-center{align-self:center!important}:host ::ng-deep .align-self-baseline{align-self:baseline!important}:host ::ng-deep .align-self-stretch{align-self:stretch!important}:host ::ng-deep .order-first{order:-1!important}:host ::ng-deep .order-0{order:0!important}:host ::ng-deep .order-1{order:1!important}:host ::ng-deep .order-2{order:2!important}:host ::ng-deep .order-3{order:3!important}:host ::ng-deep .order-4{order:4!important}:host ::ng-deep .order-5{order:5!important}:host ::ng-deep .order-last{order:6!important}:host ::ng-deep .m-0{margin:0!important}:host ::ng-deep .m-1{margin:.25rem!important}:host ::ng-deep .m-2{margin:.5rem!important}:host ::ng-deep .m-3{margin:1rem!important}:host ::ng-deep .m-4{margin:1.5rem!important}:host ::ng-deep .m-5{margin:3rem!important}:host ::ng-deep .m-auto{margin:auto!important}:host ::ng-deep .mx-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-0{margin-top:0!important}:host ::ng-deep .mt-1{margin-top:.25rem!important}:host ::ng-deep .mt-2{margin-top:.5rem!important}:host ::ng-deep .mt-3{margin-top:1rem!important}:host ::ng-deep .mt-4{margin-top:1.5rem!important}:host ::ng-deep .mt-5{margin-top:3rem!important}:host ::ng-deep .mt-auto{margin-top:auto!important}:host ::ng-deep .me-0{margin-right:0!important}:host ::ng-deep .me-1{margin-right:.25rem!important}:host ::ng-deep .me-2{margin-right:.5rem!important}:host ::ng-deep .me-3{margin-right:1rem!important}:host ::ng-deep .me-4{margin-right:1.5rem!important}:host ::ng-deep .me-5{margin-right:3rem!important}:host ::ng-deep .me-auto{margin-right:auto!important}:host ::ng-deep .mb-0{margin-bottom:0!important}:host ::ng-deep .mb-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-3{margin-bottom:1rem!important}:host ::ng-deep .mb-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-5{margin-bottom:3rem!important}:host ::ng-deep .mb-auto{margin-bottom:auto!important}:host ::ng-deep .ms-0{margin-left:0!important}:host ::ng-deep .ms-1{margin-left:.25rem!important}:host ::ng-deep .ms-2{margin-left:.5rem!important}:host ::ng-deep .ms-3{margin-left:1rem!important}:host ::ng-deep .ms-4{margin-left:1.5rem!important}:host ::ng-deep .ms-5{margin-left:3rem!important}:host ::ng-deep .ms-auto{margin-left:auto!important}:host ::ng-deep .p-0{padding:0!important}:host ::ng-deep .p-1{padding:.25rem!important}:host ::ng-deep .p-2{padding:.5rem!important}:host ::ng-deep .p-3{padding:1rem!important}:host ::ng-deep .p-4{padding:1.5rem!important}:host ::ng-deep .p-5{padding:3rem!important}:host ::ng-deep .px-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-0{padding-top:0!important}:host ::ng-deep .pt-1{padding-top:.25rem!important}:host ::ng-deep .pt-2{padding-top:.5rem!important}:host ::ng-deep .pt-3{padding-top:1rem!important}:host ::ng-deep .pt-4{padding-top:1.5rem!important}:host ::ng-deep .pt-5{padding-top:3rem!important}:host ::ng-deep .pe-0{padding-right:0!important}:host ::ng-deep .pe-1{padding-right:.25rem!important}:host ::ng-deep .pe-2{padding-right:.5rem!important}:host ::ng-deep .pe-3{padding-right:1rem!important}:host ::ng-deep .pe-4{padding-right:1.5rem!important}:host ::ng-deep .pe-5{padding-right:3rem!important}:host ::ng-deep .pb-0{padding-bottom:0!important}:host ::ng-deep .pb-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-3{padding-bottom:1rem!important}:host ::ng-deep .pb-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-5{padding-bottom:3rem!important}:host ::ng-deep .ps-0{padding-left:0!important}:host ::ng-deep .ps-1{padding-left:.25rem!important}:host ::ng-deep .ps-2{padding-left:.5rem!important}:host ::ng-deep .ps-3{padding-left:1rem!important}:host ::ng-deep .ps-4{padding-left:1.5rem!important}:host ::ng-deep .ps-5{padding-left:3rem!important}:host ::ng-deep .gap-0{gap:0!important}:host ::ng-deep .gap-1{gap:.25rem!important}:host ::ng-deep .gap-2{gap:.5rem!important}:host ::ng-deep .gap-3{gap:1rem!important}:host ::ng-deep .gap-4{gap:1.5rem!important}:host ::ng-deep .gap-5{gap:3rem!important}:host ::ng-deep .font-monospace{font-family:var(--bs-font-monospace)!important}:host ::ng-deep .fs-1{font-size:calc(1.375rem + 1.5vw)!important}:host ::ng-deep .fs-2{font-size:calc(1.325rem + .9vw)!important}:host ::ng-deep .fs-3{font-size:calc(1.3rem + .6vw)!important}:host ::ng-deep .fs-4{font-size:calc(1.275rem + .3vw)!important}:host ::ng-deep .fs-5{font-size:1.25rem!important}:host ::ng-deep .fs-6{font-size:1rem!important}:host ::ng-deep .fst-italic{font-style:italic!important}:host ::ng-deep .fst-normal{font-style:normal!important}:host ::ng-deep .fw-light{font-weight:300!important}:host ::ng-deep .fw-lighter{font-weight:lighter!important}:host ::ng-deep .fw-normal{font-weight:400!important}:host ::ng-deep .fw-bold{font-weight:700!important}:host ::ng-deep .fw-semibold{font-weight:600!important}:host ::ng-deep .fw-bolder{font-weight:bolder!important}:host ::ng-deep .lh-1{line-height:1!important}:host ::ng-deep .lh-sm{line-height:1.25!important}:host ::ng-deep .lh-base{line-height:1.5!important}:host ::ng-deep .lh-lg{line-height:2!important}:host ::ng-deep .text-start{text-align:left!important}:host ::ng-deep .text-end{text-align:right!important}:host ::ng-deep .text-center{text-align:center!important}:host ::ng-deep .text-decoration-none{text-decoration:none!important}:host ::ng-deep .text-decoration-underline{text-decoration:underline!important}:host ::ng-deep .text-decoration-line-through{text-decoration:line-through!important}:host ::ng-deep .text-lowercase{text-transform:lowercase!important}:host ::ng-deep .text-uppercase{text-transform:uppercase!important}:host ::ng-deep .text-capitalize{text-transform:capitalize!important}:host ::ng-deep .text-wrap{white-space:normal!important}:host ::ng-deep .text-nowrap{white-space:nowrap!important}:host ::ng-deep .text-break{word-wrap:break-word!important;word-break:break-word!important}:host ::ng-deep .text-primary{--bs-text-opacity: 1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-secondary{--bs-text-opacity: 1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-success{--bs-text-opacity: 1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-info{--bs-text-opacity: 1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-warning{--bs-text-opacity: 1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-danger{--bs-text-opacity: 1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-light{--bs-text-opacity: 1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-dark{--bs-text-opacity: 1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-black{--bs-text-opacity: 1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-white{--bs-text-opacity: 1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-body{--bs-text-opacity: 1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}:host ::ng-deep .text-muted{--bs-text-opacity: 1;color:#6c757d!important}:host ::ng-deep .text-black-50{--bs-text-opacity: 1;color:#00000080!important}:host ::ng-deep .text-white-50{--bs-text-opacity: 1;color:#ffffff80!important}:host ::ng-deep .text-reset{--bs-text-opacity: 1;color:inherit!important}:host ::ng-deep .text-opacity-25{--bs-text-opacity: .25}:host ::ng-deep .text-opacity-50{--bs-text-opacity: .5}:host ::ng-deep .text-opacity-75{--bs-text-opacity: .75}:host ::ng-deep .text-opacity-100{--bs-text-opacity: 1}:host ::ng-deep .bg-primary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-secondary{--bs-bg-opacity: 1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-success{--bs-bg-opacity: 1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-info{--bs-bg-opacity: 1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-warning{--bs-bg-opacity: 1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-danger{--bs-bg-opacity: 1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-light{--bs-bg-opacity: 1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-dark{--bs-bg-opacity: 1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-black{--bs-bg-opacity: 1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-white{--bs-bg-opacity: 1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-body{--bs-bg-opacity: 1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}:host ::ng-deep .bg-transparent{--bs-bg-opacity: 1;background-color:transparent!important}:host ::ng-deep .bg-opacity-10{--bs-bg-opacity: .1}:host ::ng-deep .bg-opacity-25{--bs-bg-opacity: .25}:host ::ng-deep .bg-opacity-50{--bs-bg-opacity: .5}:host ::ng-deep .bg-opacity-75{--bs-bg-opacity: .75}:host ::ng-deep .bg-opacity-100{--bs-bg-opacity: 1}:host ::ng-deep .bg-gradient{background-image:var(--bs-gradient)!important}:host ::ng-deep .user-select-all{-webkit-user-select:all!important;user-select:all!important}:host ::ng-deep .user-select-auto{-webkit-user-select:auto!important;user-select:auto!important}:host ::ng-deep .user-select-none{-webkit-user-select:none!important;user-select:none!important}:host ::ng-deep .pe-none{pointer-events:none!important}:host ::ng-deep .pe-auto{pointer-events:auto!important}:host ::ng-deep .rounded{border-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-0{border-radius:0!important}:host ::ng-deep .rounded-1{border-radius:var(--bs-border-radius-sm)!important}:host ::ng-deep .rounded-2{border-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-3{border-radius:var(--bs-border-radius-lg)!important}:host ::ng-deep .rounded-4{border-radius:var(--bs-border-radius-xl)!important}:host ::ng-deep .rounded-5{border-radius:var(--bs-border-radius-2xl)!important}:host ::ng-deep .rounded-circle{border-radius:50%!important}:host ::ng-deep .rounded-pill{border-radius:var(--bs-border-radius-pill)!important}:host ::ng-deep .rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}:host ::ng-deep .rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}:host ::ng-deep .visible{visibility:visible!important}:host ::ng-deep .invisible{visibility:hidden!important}@media (min-width: 576px){:host ::ng-deep .float-sm-start{float:left!important}:host ::ng-deep .float-sm-end{float:right!important}:host ::ng-deep .float-sm-none{float:none!important}:host ::ng-deep .d-sm-inline{display:inline!important}:host ::ng-deep .d-sm-inline-block{display:inline-block!important}:host ::ng-deep .d-sm-block{display:block!important}:host ::ng-deep .d-sm-grid{display:grid!important}:host ::ng-deep .d-sm-table{display:table!important}:host ::ng-deep .d-sm-table-row{display:table-row!important}:host ::ng-deep .d-sm-table-cell{display:table-cell!important}:host ::ng-deep .d-sm-flex{display:flex!important}:host ::ng-deep .d-sm-inline-flex{display:inline-flex!important}:host ::ng-deep .d-sm-none{display:none!important}:host ::ng-deep .flex-sm-fill{flex:1 1 auto!important}:host ::ng-deep .flex-sm-row{flex-direction:row!important}:host ::ng-deep .flex-sm-column{flex-direction:column!important}:host ::ng-deep .flex-sm-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-sm-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-sm-grow-0{flex-grow:0!important}:host ::ng-deep .flex-sm-grow-1{flex-grow:1!important}:host ::ng-deep .flex-sm-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-sm-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-sm-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-sm-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-sm-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-sm-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-sm-center{justify-content:center!important}:host ::ng-deep .justify-content-sm-between{justify-content:space-between!important}:host ::ng-deep .justify-content-sm-around{justify-content:space-around!important}:host ::ng-deep .justify-content-sm-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-sm-start{align-items:flex-start!important}:host ::ng-deep .align-items-sm-end{align-items:flex-end!important}:host ::ng-deep .align-items-sm-center{align-items:center!important}:host ::ng-deep .align-items-sm-baseline{align-items:baseline!important}:host ::ng-deep .align-items-sm-stretch{align-items:stretch!important}:host ::ng-deep .align-content-sm-start{align-content:flex-start!important}:host ::ng-deep .align-content-sm-end{align-content:flex-end!important}:host ::ng-deep .align-content-sm-center{align-content:center!important}:host ::ng-deep .align-content-sm-between{align-content:space-between!important}:host ::ng-deep .align-content-sm-around{align-content:space-around!important}:host ::ng-deep .align-content-sm-stretch{align-content:stretch!important}:host ::ng-deep .align-self-sm-auto{align-self:auto!important}:host ::ng-deep .align-self-sm-start{align-self:flex-start!important}:host ::ng-deep .align-self-sm-end{align-self:flex-end!important}:host ::ng-deep .align-self-sm-center{align-self:center!important}:host ::ng-deep .align-self-sm-baseline{align-self:baseline!important}:host ::ng-deep .align-self-sm-stretch{align-self:stretch!important}:host ::ng-deep .order-sm-first{order:-1!important}:host ::ng-deep .order-sm-0{order:0!important}:host ::ng-deep .order-sm-1{order:1!important}:host ::ng-deep .order-sm-2{order:2!important}:host ::ng-deep .order-sm-3{order:3!important}:host ::ng-deep .order-sm-4{order:4!important}:host ::ng-deep .order-sm-5{order:5!important}:host ::ng-deep .order-sm-last{order:6!important}:host ::ng-deep .m-sm-0{margin:0!important}:host ::ng-deep .m-sm-1{margin:.25rem!important}:host ::ng-deep .m-sm-2{margin:.5rem!important}:host ::ng-deep .m-sm-3{margin:1rem!important}:host ::ng-deep .m-sm-4{margin:1.5rem!important}:host ::ng-deep .m-sm-5{margin:3rem!important}:host ::ng-deep .m-sm-auto{margin:auto!important}:host ::ng-deep .mx-sm-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-sm-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-sm-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-sm-0{margin-top:0!important}:host ::ng-deep .mt-sm-1{margin-top:.25rem!important}:host ::ng-deep .mt-sm-2{margin-top:.5rem!important}:host ::ng-deep .mt-sm-3{margin-top:1rem!important}:host ::ng-deep .mt-sm-4{margin-top:1.5rem!important}:host ::ng-deep .mt-sm-5{margin-top:3rem!important}:host ::ng-deep .mt-sm-auto{margin-top:auto!important}:host ::ng-deep .me-sm-0{margin-right:0!important}:host ::ng-deep .me-sm-1{margin-right:.25rem!important}:host ::ng-deep .me-sm-2{margin-right:.5rem!important}:host ::ng-deep .me-sm-3{margin-right:1rem!important}:host ::ng-deep .me-sm-4{margin-right:1.5rem!important}:host ::ng-deep .me-sm-5{margin-right:3rem!important}:host ::ng-deep .me-sm-auto{margin-right:auto!important}:host ::ng-deep .mb-sm-0{margin-bottom:0!important}:host ::ng-deep .mb-sm-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-sm-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-sm-3{margin-bottom:1rem!important}:host ::ng-deep .mb-sm-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-sm-5{margin-bottom:3rem!important}:host ::ng-deep .mb-sm-auto{margin-bottom:auto!important}:host ::ng-deep .ms-sm-0{margin-left:0!important}:host ::ng-deep .ms-sm-1{margin-left:.25rem!important}:host ::ng-deep .ms-sm-2{margin-left:.5rem!important}:host ::ng-deep .ms-sm-3{margin-left:1rem!important}:host ::ng-deep .ms-sm-4{margin-left:1.5rem!important}:host ::ng-deep .ms-sm-5{margin-left:3rem!important}:host ::ng-deep .ms-sm-auto{margin-left:auto!important}:host ::ng-deep .p-sm-0{padding:0!important}:host ::ng-deep .p-sm-1{padding:.25rem!important}:host ::ng-deep .p-sm-2{padding:.5rem!important}:host ::ng-deep .p-sm-3{padding:1rem!important}:host ::ng-deep .p-sm-4{padding:1.5rem!important}:host ::ng-deep .p-sm-5{padding:3rem!important}:host ::ng-deep .px-sm-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-sm-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-sm-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-sm-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-sm-0{padding-top:0!important}:host ::ng-deep .pt-sm-1{padding-top:.25rem!important}:host ::ng-deep .pt-sm-2{padding-top:.5rem!important}:host ::ng-deep .pt-sm-3{padding-top:1rem!important}:host ::ng-deep .pt-sm-4{padding-top:1.5rem!important}:host ::ng-deep .pt-sm-5{padding-top:3rem!important}:host ::ng-deep .pe-sm-0{padding-right:0!important}:host ::ng-deep .pe-sm-1{padding-right:.25rem!important}:host ::ng-deep .pe-sm-2{padding-right:.5rem!important}:host ::ng-deep .pe-sm-3{padding-right:1rem!important}:host ::ng-deep .pe-sm-4{padding-right:1.5rem!important}:host ::ng-deep .pe-sm-5{padding-right:3rem!important}:host ::ng-deep .pb-sm-0{padding-bottom:0!important}:host ::ng-deep .pb-sm-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-sm-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-sm-3{padding-bottom:1rem!important}:host ::ng-deep .pb-sm-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-sm-5{padding-bottom:3rem!important}:host ::ng-deep .ps-sm-0{padding-left:0!important}:host ::ng-deep .ps-sm-1{padding-left:.25rem!important}:host ::ng-deep .ps-sm-2{padding-left:.5rem!important}:host ::ng-deep .ps-sm-3{padding-left:1rem!important}:host ::ng-deep .ps-sm-4{padding-left:1.5rem!important}:host ::ng-deep .ps-sm-5{padding-left:3rem!important}:host ::ng-deep .gap-sm-0{gap:0!important}:host ::ng-deep .gap-sm-1{gap:.25rem!important}:host ::ng-deep .gap-sm-2{gap:.5rem!important}:host ::ng-deep .gap-sm-3{gap:1rem!important}:host ::ng-deep .gap-sm-4{gap:1.5rem!important}:host ::ng-deep .gap-sm-5{gap:3rem!important}:host ::ng-deep .text-sm-start{text-align:left!important}:host ::ng-deep .text-sm-end{text-align:right!important}:host ::ng-deep .text-sm-center{text-align:center!important}}@media (min-width: 768px){:host ::ng-deep .float-md-start{float:left!important}:host ::ng-deep .float-md-end{float:right!important}:host ::ng-deep .float-md-none{float:none!important}:host ::ng-deep .d-md-inline{display:inline!important}:host ::ng-deep .d-md-inline-block{display:inline-block!important}:host ::ng-deep .d-md-block{display:block!important}:host ::ng-deep .d-md-grid{display:grid!important}:host ::ng-deep .d-md-table{display:table!important}:host ::ng-deep .d-md-table-row{display:table-row!important}:host ::ng-deep .d-md-table-cell{display:table-cell!important}:host ::ng-deep .d-md-flex{display:flex!important}:host ::ng-deep .d-md-inline-flex{display:inline-flex!important}:host ::ng-deep .d-md-none{display:none!important}:host ::ng-deep .flex-md-fill{flex:1 1 auto!important}:host ::ng-deep .flex-md-row{flex-direction:row!important}:host ::ng-deep .flex-md-column{flex-direction:column!important}:host ::ng-deep .flex-md-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-md-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-md-grow-0{flex-grow:0!important}:host ::ng-deep .flex-md-grow-1{flex-grow:1!important}:host ::ng-deep .flex-md-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-md-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-md-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-md-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-md-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-md-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-md-center{justify-content:center!important}:host ::ng-deep .justify-content-md-between{justify-content:space-between!important}:host ::ng-deep .justify-content-md-around{justify-content:space-around!important}:host ::ng-deep .justify-content-md-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-md-start{align-items:flex-start!important}:host ::ng-deep .align-items-md-end{align-items:flex-end!important}:host ::ng-deep .align-items-md-center{align-items:center!important}:host ::ng-deep .align-items-md-baseline{align-items:baseline!important}:host ::ng-deep .align-items-md-stretch{align-items:stretch!important}:host ::ng-deep .align-content-md-start{align-content:flex-start!important}:host ::ng-deep .align-content-md-end{align-content:flex-end!important}:host ::ng-deep .align-content-md-center{align-content:center!important}:host ::ng-deep .align-content-md-between{align-content:space-between!important}:host ::ng-deep .align-content-md-around{align-content:space-around!important}:host ::ng-deep .align-content-md-stretch{align-content:stretch!important}:host ::ng-deep .align-self-md-auto{align-self:auto!important}:host ::ng-deep .align-self-md-start{align-self:flex-start!important}:host ::ng-deep .align-self-md-end{align-self:flex-end!important}:host ::ng-deep .align-self-md-center{align-self:center!important}:host ::ng-deep .align-self-md-baseline{align-self:baseline!important}:host ::ng-deep .align-self-md-stretch{align-self:stretch!important}:host ::ng-deep .order-md-first{order:-1!important}:host ::ng-deep .order-md-0{order:0!important}:host ::ng-deep .order-md-1{order:1!important}:host ::ng-deep .order-md-2{order:2!important}:host ::ng-deep .order-md-3{order:3!important}:host ::ng-deep .order-md-4{order:4!important}:host ::ng-deep .order-md-5{order:5!important}:host ::ng-deep .order-md-last{order:6!important}:host ::ng-deep .m-md-0{margin:0!important}:host ::ng-deep .m-md-1{margin:.25rem!important}:host ::ng-deep .m-md-2{margin:.5rem!important}:host ::ng-deep .m-md-3{margin:1rem!important}:host ::ng-deep .m-md-4{margin:1.5rem!important}:host ::ng-deep .m-md-5{margin:3rem!important}:host ::ng-deep .m-md-auto{margin:auto!important}:host ::ng-deep .mx-md-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-md-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-md-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-md-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-md-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-md-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-md-0{margin-top:0!important}:host ::ng-deep .mt-md-1{margin-top:.25rem!important}:host ::ng-deep .mt-md-2{margin-top:.5rem!important}:host ::ng-deep .mt-md-3{margin-top:1rem!important}:host ::ng-deep .mt-md-4{margin-top:1.5rem!important}:host ::ng-deep .mt-md-5{margin-top:3rem!important}:host ::ng-deep .mt-md-auto{margin-top:auto!important}:host ::ng-deep .me-md-0{margin-right:0!important}:host ::ng-deep .me-md-1{margin-right:.25rem!important}:host ::ng-deep .me-md-2{margin-right:.5rem!important}:host ::ng-deep .me-md-3{margin-right:1rem!important}:host ::ng-deep .me-md-4{margin-right:1.5rem!important}:host ::ng-deep .me-md-5{margin-right:3rem!important}:host ::ng-deep .me-md-auto{margin-right:auto!important}:host ::ng-deep .mb-md-0{margin-bottom:0!important}:host ::ng-deep .mb-md-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-md-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-md-3{margin-bottom:1rem!important}:host ::ng-deep .mb-md-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-md-5{margin-bottom:3rem!important}:host ::ng-deep .mb-md-auto{margin-bottom:auto!important}:host ::ng-deep .ms-md-0{margin-left:0!important}:host ::ng-deep .ms-md-1{margin-left:.25rem!important}:host ::ng-deep .ms-md-2{margin-left:.5rem!important}:host ::ng-deep .ms-md-3{margin-left:1rem!important}:host ::ng-deep .ms-md-4{margin-left:1.5rem!important}:host ::ng-deep .ms-md-5{margin-left:3rem!important}:host ::ng-deep .ms-md-auto{margin-left:auto!important}:host ::ng-deep .p-md-0{padding:0!important}:host ::ng-deep .p-md-1{padding:.25rem!important}:host ::ng-deep .p-md-2{padding:.5rem!important}:host ::ng-deep .p-md-3{padding:1rem!important}:host ::ng-deep .p-md-4{padding:1.5rem!important}:host ::ng-deep .p-md-5{padding:3rem!important}:host ::ng-deep .px-md-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-md-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-md-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-md-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-md-0{padding-top:0!important}:host ::ng-deep .pt-md-1{padding-top:.25rem!important}:host ::ng-deep .pt-md-2{padding-top:.5rem!important}:host ::ng-deep .pt-md-3{padding-top:1rem!important}:host ::ng-deep .pt-md-4{padding-top:1.5rem!important}:host ::ng-deep .pt-md-5{padding-top:3rem!important}:host ::ng-deep .pe-md-0{padding-right:0!important}:host ::ng-deep .pe-md-1{padding-right:.25rem!important}:host ::ng-deep .pe-md-2{padding-right:.5rem!important}:host ::ng-deep .pe-md-3{padding-right:1rem!important}:host ::ng-deep .pe-md-4{padding-right:1.5rem!important}:host ::ng-deep .pe-md-5{padding-right:3rem!important}:host ::ng-deep .pb-md-0{padding-bottom:0!important}:host ::ng-deep .pb-md-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-md-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-md-3{padding-bottom:1rem!important}:host ::ng-deep .pb-md-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-md-5{padding-bottom:3rem!important}:host ::ng-deep .ps-md-0{padding-left:0!important}:host ::ng-deep .ps-md-1{padding-left:.25rem!important}:host ::ng-deep .ps-md-2{padding-left:.5rem!important}:host ::ng-deep .ps-md-3{padding-left:1rem!important}:host ::ng-deep .ps-md-4{padding-left:1.5rem!important}:host ::ng-deep .ps-md-5{padding-left:3rem!important}:host ::ng-deep .gap-md-0{gap:0!important}:host ::ng-deep .gap-md-1{gap:.25rem!important}:host ::ng-deep .gap-md-2{gap:.5rem!important}:host ::ng-deep .gap-md-3{gap:1rem!important}:host ::ng-deep .gap-md-4{gap:1.5rem!important}:host ::ng-deep .gap-md-5{gap:3rem!important}:host ::ng-deep .text-md-start{text-align:left!important}:host ::ng-deep .text-md-end{text-align:right!important}:host ::ng-deep .text-md-center{text-align:center!important}}@media (min-width: 992px){:host ::ng-deep .float-lg-start{float:left!important}:host ::ng-deep .float-lg-end{float:right!important}:host ::ng-deep .float-lg-none{float:none!important}:host ::ng-deep .d-lg-inline{display:inline!important}:host ::ng-deep .d-lg-inline-block{display:inline-block!important}:host ::ng-deep .d-lg-block{display:block!important}:host ::ng-deep .d-lg-grid{display:grid!important}:host ::ng-deep .d-lg-table{display:table!important}:host ::ng-deep .d-lg-table-row{display:table-row!important}:host ::ng-deep .d-lg-table-cell{display:table-cell!important}:host ::ng-deep .d-lg-flex{display:flex!important}:host ::ng-deep .d-lg-inline-flex{display:inline-flex!important}:host ::ng-deep .d-lg-none{display:none!important}:host ::ng-deep .flex-lg-fill{flex:1 1 auto!important}:host ::ng-deep .flex-lg-row{flex-direction:row!important}:host ::ng-deep .flex-lg-column{flex-direction:column!important}:host ::ng-deep .flex-lg-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-lg-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-lg-grow-0{flex-grow:0!important}:host ::ng-deep .flex-lg-grow-1{flex-grow:1!important}:host ::ng-deep .flex-lg-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-lg-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-lg-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-lg-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-lg-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-lg-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-lg-center{justify-content:center!important}:host ::ng-deep .justify-content-lg-between{justify-content:space-between!important}:host ::ng-deep .justify-content-lg-around{justify-content:space-around!important}:host ::ng-deep .justify-content-lg-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-lg-start{align-items:flex-start!important}:host ::ng-deep .align-items-lg-end{align-items:flex-end!important}:host ::ng-deep .align-items-lg-center{align-items:center!important}:host ::ng-deep .align-items-lg-baseline{align-items:baseline!important}:host ::ng-deep .align-items-lg-stretch{align-items:stretch!important}:host ::ng-deep .align-content-lg-start{align-content:flex-start!important}:host ::ng-deep .align-content-lg-end{align-content:flex-end!important}:host ::ng-deep .align-content-lg-center{align-content:center!important}:host ::ng-deep .align-content-lg-between{align-content:space-between!important}:host ::ng-deep .align-content-lg-around{align-content:space-around!important}:host ::ng-deep .align-content-lg-stretch{align-content:stretch!important}:host ::ng-deep .align-self-lg-auto{align-self:auto!important}:host ::ng-deep .align-self-lg-start{align-self:flex-start!important}:host ::ng-deep .align-self-lg-end{align-self:flex-end!important}:host ::ng-deep .align-self-lg-center{align-self:center!important}:host ::ng-deep .align-self-lg-baseline{align-self:baseline!important}:host ::ng-deep .align-self-lg-stretch{align-self:stretch!important}:host ::ng-deep .order-lg-first{order:-1!important}:host ::ng-deep .order-lg-0{order:0!important}:host ::ng-deep .order-lg-1{order:1!important}:host ::ng-deep .order-lg-2{order:2!important}:host ::ng-deep .order-lg-3{order:3!important}:host ::ng-deep .order-lg-4{order:4!important}:host ::ng-deep .order-lg-5{order:5!important}:host ::ng-deep .order-lg-last{order:6!important}:host ::ng-deep .m-lg-0{margin:0!important}:host ::ng-deep .m-lg-1{margin:.25rem!important}:host ::ng-deep .m-lg-2{margin:.5rem!important}:host ::ng-deep .m-lg-3{margin:1rem!important}:host ::ng-deep .m-lg-4{margin:1.5rem!important}:host ::ng-deep .m-lg-5{margin:3rem!important}:host ::ng-deep .m-lg-auto{margin:auto!important}:host ::ng-deep .mx-lg-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-lg-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-lg-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-lg-0{margin-top:0!important}:host ::ng-deep .mt-lg-1{margin-top:.25rem!important}:host ::ng-deep .mt-lg-2{margin-top:.5rem!important}:host ::ng-deep .mt-lg-3{margin-top:1rem!important}:host ::ng-deep .mt-lg-4{margin-top:1.5rem!important}:host ::ng-deep .mt-lg-5{margin-top:3rem!important}:host ::ng-deep .mt-lg-auto{margin-top:auto!important}:host ::ng-deep .me-lg-0{margin-right:0!important}:host ::ng-deep .me-lg-1{margin-right:.25rem!important}:host ::ng-deep .me-lg-2{margin-right:.5rem!important}:host ::ng-deep .me-lg-3{margin-right:1rem!important}:host ::ng-deep .me-lg-4{margin-right:1.5rem!important}:host ::ng-deep .me-lg-5{margin-right:3rem!important}:host ::ng-deep .me-lg-auto{margin-right:auto!important}:host ::ng-deep .mb-lg-0{margin-bottom:0!important}:host ::ng-deep .mb-lg-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-lg-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-lg-3{margin-bottom:1rem!important}:host ::ng-deep .mb-lg-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-lg-5{margin-bottom:3rem!important}:host ::ng-deep .mb-lg-auto{margin-bottom:auto!important}:host ::ng-deep .ms-lg-0{margin-left:0!important}:host ::ng-deep .ms-lg-1{margin-left:.25rem!important}:host ::ng-deep .ms-lg-2{margin-left:.5rem!important}:host ::ng-deep .ms-lg-3{margin-left:1rem!important}:host ::ng-deep .ms-lg-4{margin-left:1.5rem!important}:host ::ng-deep .ms-lg-5{margin-left:3rem!important}:host ::ng-deep .ms-lg-auto{margin-left:auto!important}:host ::ng-deep .p-lg-0{padding:0!important}:host ::ng-deep .p-lg-1{padding:.25rem!important}:host ::ng-deep .p-lg-2{padding:.5rem!important}:host ::ng-deep .p-lg-3{padding:1rem!important}:host ::ng-deep .p-lg-4{padding:1.5rem!important}:host ::ng-deep .p-lg-5{padding:3rem!important}:host ::ng-deep .px-lg-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-lg-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-lg-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-lg-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-lg-0{padding-top:0!important}:host ::ng-deep .pt-lg-1{padding-top:.25rem!important}:host ::ng-deep .pt-lg-2{padding-top:.5rem!important}:host ::ng-deep .pt-lg-3{padding-top:1rem!important}:host ::ng-deep .pt-lg-4{padding-top:1.5rem!important}:host ::ng-deep .pt-lg-5{padding-top:3rem!important}:host ::ng-deep .pe-lg-0{padding-right:0!important}:host ::ng-deep .pe-lg-1{padding-right:.25rem!important}:host ::ng-deep .pe-lg-2{padding-right:.5rem!important}:host ::ng-deep .pe-lg-3{padding-right:1rem!important}:host ::ng-deep .pe-lg-4{padding-right:1.5rem!important}:host ::ng-deep .pe-lg-5{padding-right:3rem!important}:host ::ng-deep .pb-lg-0{padding-bottom:0!important}:host ::ng-deep .pb-lg-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-lg-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-lg-3{padding-bottom:1rem!important}:host ::ng-deep .pb-lg-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-lg-5{padding-bottom:3rem!important}:host ::ng-deep .ps-lg-0{padding-left:0!important}:host ::ng-deep .ps-lg-1{padding-left:.25rem!important}:host ::ng-deep .ps-lg-2{padding-left:.5rem!important}:host ::ng-deep .ps-lg-3{padding-left:1rem!important}:host ::ng-deep .ps-lg-4{padding-left:1.5rem!important}:host ::ng-deep .ps-lg-5{padding-left:3rem!important}:host ::ng-deep .gap-lg-0{gap:0!important}:host ::ng-deep .gap-lg-1{gap:.25rem!important}:host ::ng-deep .gap-lg-2{gap:.5rem!important}:host ::ng-deep .gap-lg-3{gap:1rem!important}:host ::ng-deep .gap-lg-4{gap:1.5rem!important}:host ::ng-deep .gap-lg-5{gap:3rem!important}:host ::ng-deep .text-lg-start{text-align:left!important}:host ::ng-deep .text-lg-end{text-align:right!important}:host ::ng-deep .text-lg-center{text-align:center!important}}@media (min-width: 1200px){:host ::ng-deep .float-xl-start{float:left!important}:host ::ng-deep .float-xl-end{float:right!important}:host ::ng-deep .float-xl-none{float:none!important}:host ::ng-deep .d-xl-inline{display:inline!important}:host ::ng-deep .d-xl-inline-block{display:inline-block!important}:host ::ng-deep .d-xl-block{display:block!important}:host ::ng-deep .d-xl-grid{display:grid!important}:host ::ng-deep .d-xl-table{display:table!important}:host ::ng-deep .d-xl-table-row{display:table-row!important}:host ::ng-deep .d-xl-table-cell{display:table-cell!important}:host ::ng-deep .d-xl-flex{display:flex!important}:host ::ng-deep .d-xl-inline-flex{display:inline-flex!important}:host ::ng-deep .d-xl-none{display:none!important}:host ::ng-deep .flex-xl-fill{flex:1 1 auto!important}:host ::ng-deep .flex-xl-row{flex-direction:row!important}:host ::ng-deep .flex-xl-column{flex-direction:column!important}:host ::ng-deep .flex-xl-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-xl-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-xl-grow-0{flex-grow:0!important}:host ::ng-deep .flex-xl-grow-1{flex-grow:1!important}:host ::ng-deep .flex-xl-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-xl-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-xl-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-xl-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-xl-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-xl-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-xl-center{justify-content:center!important}:host ::ng-deep .justify-content-xl-between{justify-content:space-between!important}:host ::ng-deep .justify-content-xl-around{justify-content:space-around!important}:host ::ng-deep .justify-content-xl-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-xl-start{align-items:flex-start!important}:host ::ng-deep .align-items-xl-end{align-items:flex-end!important}:host ::ng-deep .align-items-xl-center{align-items:center!important}:host ::ng-deep .align-items-xl-baseline{align-items:baseline!important}:host ::ng-deep .align-items-xl-stretch{align-items:stretch!important}:host ::ng-deep .align-content-xl-start{align-content:flex-start!important}:host ::ng-deep .align-content-xl-end{align-content:flex-end!important}:host ::ng-deep .align-content-xl-center{align-content:center!important}:host ::ng-deep .align-content-xl-between{align-content:space-between!important}:host ::ng-deep .align-content-xl-around{align-content:space-around!important}:host ::ng-deep .align-content-xl-stretch{align-content:stretch!important}:host ::ng-deep .align-self-xl-auto{align-self:auto!important}:host ::ng-deep .align-self-xl-start{align-self:flex-start!important}:host ::ng-deep .align-self-xl-end{align-self:flex-end!important}:host ::ng-deep .align-self-xl-center{align-self:center!important}:host ::ng-deep .align-self-xl-baseline{align-self:baseline!important}:host ::ng-deep .align-self-xl-stretch{align-self:stretch!important}:host ::ng-deep .order-xl-first{order:-1!important}:host ::ng-deep .order-xl-0{order:0!important}:host ::ng-deep .order-xl-1{order:1!important}:host ::ng-deep .order-xl-2{order:2!important}:host ::ng-deep .order-xl-3{order:3!important}:host ::ng-deep .order-xl-4{order:4!important}:host ::ng-deep .order-xl-5{order:5!important}:host ::ng-deep .order-xl-last{order:6!important}:host ::ng-deep .m-xl-0{margin:0!important}:host ::ng-deep .m-xl-1{margin:.25rem!important}:host ::ng-deep .m-xl-2{margin:.5rem!important}:host ::ng-deep .m-xl-3{margin:1rem!important}:host ::ng-deep .m-xl-4{margin:1.5rem!important}:host ::ng-deep .m-xl-5{margin:3rem!important}:host ::ng-deep .m-xl-auto{margin:auto!important}:host ::ng-deep .mx-xl-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-xl-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-xl-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-xl-0{margin-top:0!important}:host ::ng-deep .mt-xl-1{margin-top:.25rem!important}:host ::ng-deep .mt-xl-2{margin-top:.5rem!important}:host ::ng-deep .mt-xl-3{margin-top:1rem!important}:host ::ng-deep .mt-xl-4{margin-top:1.5rem!important}:host ::ng-deep .mt-xl-5{margin-top:3rem!important}:host ::ng-deep .mt-xl-auto{margin-top:auto!important}:host ::ng-deep .me-xl-0{margin-right:0!important}:host ::ng-deep .me-xl-1{margin-right:.25rem!important}:host ::ng-deep .me-xl-2{margin-right:.5rem!important}:host ::ng-deep .me-xl-3{margin-right:1rem!important}:host ::ng-deep .me-xl-4{margin-right:1.5rem!important}:host ::ng-deep .me-xl-5{margin-right:3rem!important}:host ::ng-deep .me-xl-auto{margin-right:auto!important}:host ::ng-deep .mb-xl-0{margin-bottom:0!important}:host ::ng-deep .mb-xl-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-xl-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-xl-3{margin-bottom:1rem!important}:host ::ng-deep .mb-xl-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-xl-5{margin-bottom:3rem!important}:host ::ng-deep .mb-xl-auto{margin-bottom:auto!important}:host ::ng-deep .ms-xl-0{margin-left:0!important}:host ::ng-deep .ms-xl-1{margin-left:.25rem!important}:host ::ng-deep .ms-xl-2{margin-left:.5rem!important}:host ::ng-deep .ms-xl-3{margin-left:1rem!important}:host ::ng-deep .ms-xl-4{margin-left:1.5rem!important}:host ::ng-deep .ms-xl-5{margin-left:3rem!important}:host ::ng-deep .ms-xl-auto{margin-left:auto!important}:host ::ng-deep .p-xl-0{padding:0!important}:host ::ng-deep .p-xl-1{padding:.25rem!important}:host ::ng-deep .p-xl-2{padding:.5rem!important}:host ::ng-deep .p-xl-3{padding:1rem!important}:host ::ng-deep .p-xl-4{padding:1.5rem!important}:host ::ng-deep .p-xl-5{padding:3rem!important}:host ::ng-deep .px-xl-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-xl-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-xl-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-xl-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-xl-0{padding-top:0!important}:host ::ng-deep .pt-xl-1{padding-top:.25rem!important}:host ::ng-deep .pt-xl-2{padding-top:.5rem!important}:host ::ng-deep .pt-xl-3{padding-top:1rem!important}:host ::ng-deep .pt-xl-4{padding-top:1.5rem!important}:host ::ng-deep .pt-xl-5{padding-top:3rem!important}:host ::ng-deep .pe-xl-0{padding-right:0!important}:host ::ng-deep .pe-xl-1{padding-right:.25rem!important}:host ::ng-deep .pe-xl-2{padding-right:.5rem!important}:host ::ng-deep .pe-xl-3{padding-right:1rem!important}:host ::ng-deep .pe-xl-4{padding-right:1.5rem!important}:host ::ng-deep .pe-xl-5{padding-right:3rem!important}:host ::ng-deep .pb-xl-0{padding-bottom:0!important}:host ::ng-deep .pb-xl-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-xl-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-xl-3{padding-bottom:1rem!important}:host ::ng-deep .pb-xl-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-xl-5{padding-bottom:3rem!important}:host ::ng-deep .ps-xl-0{padding-left:0!important}:host ::ng-deep .ps-xl-1{padding-left:.25rem!important}:host ::ng-deep .ps-xl-2{padding-left:.5rem!important}:host ::ng-deep .ps-xl-3{padding-left:1rem!important}:host ::ng-deep .ps-xl-4{padding-left:1.5rem!important}:host ::ng-deep .ps-xl-5{padding-left:3rem!important}:host ::ng-deep .gap-xl-0{gap:0!important}:host ::ng-deep .gap-xl-1{gap:.25rem!important}:host ::ng-deep .gap-xl-2{gap:.5rem!important}:host ::ng-deep .gap-xl-3{gap:1rem!important}:host ::ng-deep .gap-xl-4{gap:1.5rem!important}:host ::ng-deep .gap-xl-5{gap:3rem!important}:host ::ng-deep .text-xl-start{text-align:left!important}:host ::ng-deep .text-xl-end{text-align:right!important}:host ::ng-deep .text-xl-center{text-align:center!important}}@media (min-width: 1400px){:host ::ng-deep .float-xxl-start{float:left!important}:host ::ng-deep .float-xxl-end{float:right!important}:host ::ng-deep .float-xxl-none{float:none!important}:host ::ng-deep .d-xxl-inline{display:inline!important}:host ::ng-deep .d-xxl-inline-block{display:inline-block!important}:host ::ng-deep .d-xxl-block{display:block!important}:host ::ng-deep .d-xxl-grid{display:grid!important}:host ::ng-deep .d-xxl-table{display:table!important}:host ::ng-deep .d-xxl-table-row{display:table-row!important}:host ::ng-deep .d-xxl-table-cell{display:table-cell!important}:host ::ng-deep .d-xxl-flex{display:flex!important}:host ::ng-deep .d-xxl-inline-flex{display:inline-flex!important}:host ::ng-deep .d-xxl-none{display:none!important}:host ::ng-deep .flex-xxl-fill{flex:1 1 auto!important}:host ::ng-deep .flex-xxl-row{flex-direction:row!important}:host ::ng-deep .flex-xxl-column{flex-direction:column!important}:host ::ng-deep .flex-xxl-row-reverse{flex-direction:row-reverse!important}:host ::ng-deep .flex-xxl-column-reverse{flex-direction:column-reverse!important}:host ::ng-deep .flex-xxl-grow-0{flex-grow:0!important}:host ::ng-deep .flex-xxl-grow-1{flex-grow:1!important}:host ::ng-deep .flex-xxl-shrink-0{flex-shrink:0!important}:host ::ng-deep .flex-xxl-shrink-1{flex-shrink:1!important}:host ::ng-deep .flex-xxl-wrap{flex-wrap:wrap!important}:host ::ng-deep .flex-xxl-nowrap{flex-wrap:nowrap!important}:host ::ng-deep .flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}:host ::ng-deep .justify-content-xxl-start{justify-content:flex-start!important}:host ::ng-deep .justify-content-xxl-end{justify-content:flex-end!important}:host ::ng-deep .justify-content-xxl-center{justify-content:center!important}:host ::ng-deep .justify-content-xxl-between{justify-content:space-between!important}:host ::ng-deep .justify-content-xxl-around{justify-content:space-around!important}:host ::ng-deep .justify-content-xxl-evenly{justify-content:space-evenly!important}:host ::ng-deep .align-items-xxl-start{align-items:flex-start!important}:host ::ng-deep .align-items-xxl-end{align-items:flex-end!important}:host ::ng-deep .align-items-xxl-center{align-items:center!important}:host ::ng-deep .align-items-xxl-baseline{align-items:baseline!important}:host ::ng-deep .align-items-xxl-stretch{align-items:stretch!important}:host ::ng-deep .align-content-xxl-start{align-content:flex-start!important}:host ::ng-deep .align-content-xxl-end{align-content:flex-end!important}:host ::ng-deep .align-content-xxl-center{align-content:center!important}:host ::ng-deep .align-content-xxl-between{align-content:space-between!important}:host ::ng-deep .align-content-xxl-around{align-content:space-around!important}:host ::ng-deep .align-content-xxl-stretch{align-content:stretch!important}:host ::ng-deep .align-self-xxl-auto{align-self:auto!important}:host ::ng-deep .align-self-xxl-start{align-self:flex-start!important}:host ::ng-deep .align-self-xxl-end{align-self:flex-end!important}:host ::ng-deep .align-self-xxl-center{align-self:center!important}:host ::ng-deep .align-self-xxl-baseline{align-self:baseline!important}:host ::ng-deep .align-self-xxl-stretch{align-self:stretch!important}:host ::ng-deep .order-xxl-first{order:-1!important}:host ::ng-deep .order-xxl-0{order:0!important}:host ::ng-deep .order-xxl-1{order:1!important}:host ::ng-deep .order-xxl-2{order:2!important}:host ::ng-deep .order-xxl-3{order:3!important}:host ::ng-deep .order-xxl-4{order:4!important}:host ::ng-deep .order-xxl-5{order:5!important}:host ::ng-deep .order-xxl-last{order:6!important}:host ::ng-deep .m-xxl-0{margin:0!important}:host ::ng-deep .m-xxl-1{margin:.25rem!important}:host ::ng-deep .m-xxl-2{margin:.5rem!important}:host ::ng-deep .m-xxl-3{margin:1rem!important}:host ::ng-deep .m-xxl-4{margin:1.5rem!important}:host ::ng-deep .m-xxl-5{margin:3rem!important}:host ::ng-deep .m-xxl-auto{margin:auto!important}:host ::ng-deep .mx-xxl-0{margin-right:0!important;margin-left:0!important}:host ::ng-deep .mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}:host ::ng-deep .mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}:host ::ng-deep .mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}:host ::ng-deep .mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}:host ::ng-deep .mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}:host ::ng-deep .mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}:host ::ng-deep .my-xxl-0{margin-top:0!important;margin-bottom:0!important}:host ::ng-deep .my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}:host ::ng-deep .my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}:host ::ng-deep .my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}:host ::ng-deep .my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}:host ::ng-deep .my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}:host ::ng-deep .my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}:host ::ng-deep .mt-xxl-0{margin-top:0!important}:host ::ng-deep .mt-xxl-1{margin-top:.25rem!important}:host ::ng-deep .mt-xxl-2{margin-top:.5rem!important}:host ::ng-deep .mt-xxl-3{margin-top:1rem!important}:host ::ng-deep .mt-xxl-4{margin-top:1.5rem!important}:host ::ng-deep .mt-xxl-5{margin-top:3rem!important}:host ::ng-deep .mt-xxl-auto{margin-top:auto!important}:host ::ng-deep .me-xxl-0{margin-right:0!important}:host ::ng-deep .me-xxl-1{margin-right:.25rem!important}:host ::ng-deep .me-xxl-2{margin-right:.5rem!important}:host ::ng-deep .me-xxl-3{margin-right:1rem!important}:host ::ng-deep .me-xxl-4{margin-right:1.5rem!important}:host ::ng-deep .me-xxl-5{margin-right:3rem!important}:host ::ng-deep .me-xxl-auto{margin-right:auto!important}:host ::ng-deep .mb-xxl-0{margin-bottom:0!important}:host ::ng-deep .mb-xxl-1{margin-bottom:.25rem!important}:host ::ng-deep .mb-xxl-2{margin-bottom:.5rem!important}:host ::ng-deep .mb-xxl-3{margin-bottom:1rem!important}:host ::ng-deep .mb-xxl-4{margin-bottom:1.5rem!important}:host ::ng-deep .mb-xxl-5{margin-bottom:3rem!important}:host ::ng-deep .mb-xxl-auto{margin-bottom:auto!important}:host ::ng-deep .ms-xxl-0{margin-left:0!important}:host ::ng-deep .ms-xxl-1{margin-left:.25rem!important}:host ::ng-deep .ms-xxl-2{margin-left:.5rem!important}:host ::ng-deep .ms-xxl-3{margin-left:1rem!important}:host ::ng-deep .ms-xxl-4{margin-left:1.5rem!important}:host ::ng-deep .ms-xxl-5{margin-left:3rem!important}:host ::ng-deep .ms-xxl-auto{margin-left:auto!important}:host ::ng-deep .p-xxl-0{padding:0!important}:host ::ng-deep .p-xxl-1{padding:.25rem!important}:host ::ng-deep .p-xxl-2{padding:.5rem!important}:host ::ng-deep .p-xxl-3{padding:1rem!important}:host ::ng-deep .p-xxl-4{padding:1.5rem!important}:host ::ng-deep .p-xxl-5{padding:3rem!important}:host ::ng-deep .px-xxl-0{padding-right:0!important;padding-left:0!important}:host ::ng-deep .px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}:host ::ng-deep .px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}:host ::ng-deep .px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}:host ::ng-deep .px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}:host ::ng-deep .px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}:host ::ng-deep .py-xxl-0{padding-top:0!important;padding-bottom:0!important}:host ::ng-deep .py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}:host ::ng-deep .py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}:host ::ng-deep .py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}:host ::ng-deep .py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}:host ::ng-deep .py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}:host ::ng-deep .pt-xxl-0{padding-top:0!important}:host ::ng-deep .pt-xxl-1{padding-top:.25rem!important}:host ::ng-deep .pt-xxl-2{padding-top:.5rem!important}:host ::ng-deep .pt-xxl-3{padding-top:1rem!important}:host ::ng-deep .pt-xxl-4{padding-top:1.5rem!important}:host ::ng-deep .pt-xxl-5{padding-top:3rem!important}:host ::ng-deep .pe-xxl-0{padding-right:0!important}:host ::ng-deep .pe-xxl-1{padding-right:.25rem!important}:host ::ng-deep .pe-xxl-2{padding-right:.5rem!important}:host ::ng-deep .pe-xxl-3{padding-right:1rem!important}:host ::ng-deep .pe-xxl-4{padding-right:1.5rem!important}:host ::ng-deep .pe-xxl-5{padding-right:3rem!important}:host ::ng-deep .pb-xxl-0{padding-bottom:0!important}:host ::ng-deep .pb-xxl-1{padding-bottom:.25rem!important}:host ::ng-deep .pb-xxl-2{padding-bottom:.5rem!important}:host ::ng-deep .pb-xxl-3{padding-bottom:1rem!important}:host ::ng-deep .pb-xxl-4{padding-bottom:1.5rem!important}:host ::ng-deep .pb-xxl-5{padding-bottom:3rem!important}:host ::ng-deep .ps-xxl-0{padding-left:0!important}:host ::ng-deep .ps-xxl-1{padding-left:.25rem!important}:host ::ng-deep .ps-xxl-2{padding-left:.5rem!important}:host ::ng-deep .ps-xxl-3{padding-left:1rem!important}:host ::ng-deep .ps-xxl-4{padding-left:1.5rem!important}:host ::ng-deep .ps-xxl-5{padding-left:3rem!important}:host ::ng-deep .gap-xxl-0{gap:0!important}:host ::ng-deep .gap-xxl-1{gap:.25rem!important}:host ::ng-deep .gap-xxl-2{gap:.5rem!important}:host ::ng-deep .gap-xxl-3{gap:1rem!important}:host ::ng-deep .gap-xxl-4{gap:1.5rem!important}:host ::ng-deep .gap-xxl-5{gap:3rem!important}:host ::ng-deep .text-xxl-start{text-align:left!important}:host ::ng-deep .text-xxl-end{text-align:right!important}:host ::ng-deep .text-xxl-center{text-align:center!important}}@media (min-width: 1200px){:host ::ng-deep .fs-1{font-size:2.5rem!important}:host ::ng-deep .fs-2{font-size:2rem!important}:host ::ng-deep .fs-3{font-size:1.75rem!important}:host ::ng-deep .fs-4{font-size:1.5rem!important}}@media print{:host ::ng-deep .d-print-inline{display:inline!important}:host ::ng-deep .d-print-inline-block{display:inline-block!important}:host ::ng-deep .d-print-block{display:block!important}:host ::ng-deep .d-print-grid{display:grid!important}:host ::ng-deep .d-print-table{display:table!important}:host ::ng-deep .d-print-table-row{display:table-row!important}:host ::ng-deep .d-print-table-cell{display:table-cell!important}:host ::ng-deep .d-print-flex{display:flex!important}:host ::ng-deep .d-print-inline-flex{display:inline-flex!important}:host ::ng-deep .d-print-none{display:none!important}}:host ::ng-deep .container,:host ::ng-deep .container-fluid,:host ::ng-deep .container-xxl,:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width: 576px){:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:540px}}@media (min-width: 768px){:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:720px}}@media (min-width: 992px){:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:960px}}@media (min-width: 1200px){:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:1140px}}@media (min-width: 1400px){:host ::ng-deep .container-xxl,:host ::ng-deep .container-xl,:host ::ng-deep .container-lg,:host ::ng-deep .container-md,:host ::ng-deep .container-sm,:host ::ng-deep .container{max-width:1320px}}:host ::ng-deep .row{--bs-gutter-x: 1.5rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}:host ::ng-deep .row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}:host ::ng-deep .col{flex:1 0 0%}:host ::ng-deep .row-cols-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-1{margin-left:8.33333333%}:host ::ng-deep .offset-2{margin-left:16.66666667%}:host ::ng-deep .offset-3{margin-left:25%}:host ::ng-deep .offset-4{margin-left:33.33333333%}:host ::ng-deep .offset-5{margin-left:41.66666667%}:host ::ng-deep .offset-6{margin-left:50%}:host ::ng-deep .offset-7{margin-left:58.33333333%}:host ::ng-deep .offset-8{margin-left:66.66666667%}:host ::ng-deep .offset-9{margin-left:75%}:host ::ng-deep .offset-10{margin-left:83.33333333%}:host ::ng-deep .offset-11{margin-left:91.66666667%}:host ::ng-deep .g-0,:host ::ng-deep .gx-0{--bs-gutter-x: 0}:host ::ng-deep .g-0,:host ::ng-deep .gy-0{--bs-gutter-y: 0}:host ::ng-deep .g-1,:host ::ng-deep .gx-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-1,:host ::ng-deep .gy-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-2,:host ::ng-deep .gx-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-2,:host ::ng-deep .gy-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-3,:host ::ng-deep .gx-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-3,:host ::ng-deep .gy-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-4,:host ::ng-deep .gx-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-4,:host ::ng-deep .gy-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-5,:host ::ng-deep .gx-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-5,:host ::ng-deep .gy-5{--bs-gutter-y: 3rem}@media (min-width: 576px){:host ::ng-deep .col-sm{flex:1 0 0%}:host ::ng-deep .row-cols-sm-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-sm-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-sm-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-sm-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-sm-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-sm-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-sm-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-sm-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-sm-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-sm-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-sm-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-sm-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-sm-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-sm-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-sm-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-sm-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-sm-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-sm-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-sm-0{margin-left:0}:host ::ng-deep .offset-sm-1{margin-left:8.33333333%}:host ::ng-deep .offset-sm-2{margin-left:16.66666667%}:host ::ng-deep .offset-sm-3{margin-left:25%}:host ::ng-deep .offset-sm-4{margin-left:33.33333333%}:host ::ng-deep .offset-sm-5{margin-left:41.66666667%}:host ::ng-deep .offset-sm-6{margin-left:50%}:host ::ng-deep .offset-sm-7{margin-left:58.33333333%}:host ::ng-deep .offset-sm-8{margin-left:66.66666667%}:host ::ng-deep .offset-sm-9{margin-left:75%}:host ::ng-deep .offset-sm-10{margin-left:83.33333333%}:host ::ng-deep .offset-sm-11{margin-left:91.66666667%}:host ::ng-deep .g-sm-0,:host ::ng-deep .gx-sm-0{--bs-gutter-x: 0}:host ::ng-deep .g-sm-0,:host ::ng-deep .gy-sm-0{--bs-gutter-y: 0}:host ::ng-deep .g-sm-1,:host ::ng-deep .gx-sm-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-sm-1,:host ::ng-deep .gy-sm-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-sm-2,:host ::ng-deep .gx-sm-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-sm-2,:host ::ng-deep .gy-sm-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-sm-3,:host ::ng-deep .gx-sm-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-sm-3,:host ::ng-deep .gy-sm-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-sm-4,:host ::ng-deep .gx-sm-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-sm-4,:host ::ng-deep .gy-sm-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-sm-5,:host ::ng-deep .gx-sm-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-sm-5,:host ::ng-deep .gy-sm-5{--bs-gutter-y: 3rem}}@media (min-width: 768px){:host ::ng-deep .col-md{flex:1 0 0%}:host ::ng-deep .row-cols-md-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-md-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-md-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-md-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-md-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-md-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-md-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-md-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-md-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-md-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-md-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-md-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-md-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-md-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-md-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-md-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-md-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-md-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-md-0{margin-left:0}:host ::ng-deep .offset-md-1{margin-left:8.33333333%}:host ::ng-deep .offset-md-2{margin-left:16.66666667%}:host ::ng-deep .offset-md-3{margin-left:25%}:host ::ng-deep .offset-md-4{margin-left:33.33333333%}:host ::ng-deep .offset-md-5{margin-left:41.66666667%}:host ::ng-deep .offset-md-6{margin-left:50%}:host ::ng-deep .offset-md-7{margin-left:58.33333333%}:host ::ng-deep .offset-md-8{margin-left:66.66666667%}:host ::ng-deep .offset-md-9{margin-left:75%}:host ::ng-deep .offset-md-10{margin-left:83.33333333%}:host ::ng-deep .offset-md-11{margin-left:91.66666667%}:host ::ng-deep .g-md-0,:host ::ng-deep .gx-md-0{--bs-gutter-x: 0}:host ::ng-deep .g-md-0,:host ::ng-deep .gy-md-0{--bs-gutter-y: 0}:host ::ng-deep .g-md-1,:host ::ng-deep .gx-md-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-md-1,:host ::ng-deep .gy-md-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-md-2,:host ::ng-deep .gx-md-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-md-2,:host ::ng-deep .gy-md-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-md-3,:host ::ng-deep .gx-md-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-md-3,:host ::ng-deep .gy-md-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-md-4,:host ::ng-deep .gx-md-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-md-4,:host ::ng-deep .gy-md-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-md-5,:host ::ng-deep .gx-md-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-md-5,:host ::ng-deep .gy-md-5{--bs-gutter-y: 3rem}}@media (min-width: 992px){:host ::ng-deep .col-lg{flex:1 0 0%}:host ::ng-deep .row-cols-lg-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-lg-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-lg-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-lg-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-lg-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-lg-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-lg-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-lg-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-lg-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-lg-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-lg-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-lg-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-lg-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-lg-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-lg-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-lg-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-lg-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-lg-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-lg-0{margin-left:0}:host ::ng-deep .offset-lg-1{margin-left:8.33333333%}:host ::ng-deep .offset-lg-2{margin-left:16.66666667%}:host ::ng-deep .offset-lg-3{margin-left:25%}:host ::ng-deep .offset-lg-4{margin-left:33.33333333%}:host ::ng-deep .offset-lg-5{margin-left:41.66666667%}:host ::ng-deep .offset-lg-6{margin-left:50%}:host ::ng-deep .offset-lg-7{margin-left:58.33333333%}:host ::ng-deep .offset-lg-8{margin-left:66.66666667%}:host ::ng-deep .offset-lg-9{margin-left:75%}:host ::ng-deep .offset-lg-10{margin-left:83.33333333%}:host ::ng-deep .offset-lg-11{margin-left:91.66666667%}:host ::ng-deep .g-lg-0,:host ::ng-deep .gx-lg-0{--bs-gutter-x: 0}:host ::ng-deep .g-lg-0,:host ::ng-deep .gy-lg-0{--bs-gutter-y: 0}:host ::ng-deep .g-lg-1,:host ::ng-deep .gx-lg-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-lg-1,:host ::ng-deep .gy-lg-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-lg-2,:host ::ng-deep .gx-lg-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-lg-2,:host ::ng-deep .gy-lg-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-lg-3,:host ::ng-deep .gx-lg-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-lg-3,:host ::ng-deep .gy-lg-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-lg-4,:host ::ng-deep .gx-lg-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-lg-4,:host ::ng-deep .gy-lg-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-lg-5,:host ::ng-deep .gx-lg-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-lg-5,:host ::ng-deep .gy-lg-5{--bs-gutter-y: 3rem}}@media (min-width: 1200px){:host ::ng-deep .col-xl{flex:1 0 0%}:host ::ng-deep .row-cols-xl-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-xl-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-xl-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-xl-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-xl-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-xl-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-xl-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-xl-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-xl-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-xl-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-xl-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-xl-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-xl-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-xl-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-xl-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-xl-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-xl-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-xl-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-xl-0{margin-left:0}:host ::ng-deep .offset-xl-1{margin-left:8.33333333%}:host ::ng-deep .offset-xl-2{margin-left:16.66666667%}:host ::ng-deep .offset-xl-3{margin-left:25%}:host ::ng-deep .offset-xl-4{margin-left:33.33333333%}:host ::ng-deep .offset-xl-5{margin-left:41.66666667%}:host ::ng-deep .offset-xl-6{margin-left:50%}:host ::ng-deep .offset-xl-7{margin-left:58.33333333%}:host ::ng-deep .offset-xl-8{margin-left:66.66666667%}:host ::ng-deep .offset-xl-9{margin-left:75%}:host ::ng-deep .offset-xl-10{margin-left:83.33333333%}:host ::ng-deep .offset-xl-11{margin-left:91.66666667%}:host ::ng-deep .g-xl-0,:host ::ng-deep .gx-xl-0{--bs-gutter-x: 0}:host ::ng-deep .g-xl-0,:host ::ng-deep .gy-xl-0{--bs-gutter-y: 0}:host ::ng-deep .g-xl-1,:host ::ng-deep .gx-xl-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-xl-1,:host ::ng-deep .gy-xl-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-xl-2,:host ::ng-deep .gx-xl-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-xl-2,:host ::ng-deep .gy-xl-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-xl-3,:host ::ng-deep .gx-xl-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-xl-3,:host ::ng-deep .gy-xl-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-xl-4,:host ::ng-deep .gx-xl-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-xl-4,:host ::ng-deep .gy-xl-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-xl-5,:host ::ng-deep .gx-xl-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-xl-5,:host ::ng-deep .gy-xl-5{--bs-gutter-y: 3rem}}@media (min-width: 1400px){:host ::ng-deep .col-xxl{flex:1 0 0%}:host ::ng-deep .row-cols-xxl-auto>*{flex:0 0 auto;width:auto}:host ::ng-deep .row-cols-xxl-1>*{flex:0 0 auto;width:100%}:host ::ng-deep .row-cols-xxl-2>*{flex:0 0 auto;width:50%}:host ::ng-deep .row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}:host ::ng-deep .row-cols-xxl-4>*{flex:0 0 auto;width:25%}:host ::ng-deep .row-cols-xxl-5>*{flex:0 0 auto;width:20%}:host ::ng-deep .row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}:host ::ng-deep .col-xxl-auto{flex:0 0 auto;width:auto}:host ::ng-deep .col-xxl-1{flex:0 0 auto;width:8.33333333%}:host ::ng-deep .col-xxl-2{flex:0 0 auto;width:16.66666667%}:host ::ng-deep .col-xxl-3{flex:0 0 auto;width:25%}:host ::ng-deep .col-xxl-4{flex:0 0 auto;width:33.33333333%}:host ::ng-deep .col-xxl-5{flex:0 0 auto;width:41.66666667%}:host ::ng-deep .col-xxl-6{flex:0 0 auto;width:50%}:host ::ng-deep .col-xxl-7{flex:0 0 auto;width:58.33333333%}:host ::ng-deep .col-xxl-8{flex:0 0 auto;width:66.66666667%}:host ::ng-deep .col-xxl-9{flex:0 0 auto;width:75%}:host ::ng-deep .col-xxl-10{flex:0 0 auto;width:83.33333333%}:host ::ng-deep .col-xxl-11{flex:0 0 auto;width:91.66666667%}:host ::ng-deep .col-xxl-12{flex:0 0 auto;width:100%}:host ::ng-deep .offset-xxl-0{margin-left:0}:host ::ng-deep .offset-xxl-1{margin-left:8.33333333%}:host ::ng-deep .offset-xxl-2{margin-left:16.66666667%}:host ::ng-deep .offset-xxl-3{margin-left:25%}:host ::ng-deep .offset-xxl-4{margin-left:33.33333333%}:host ::ng-deep .offset-xxl-5{margin-left:41.66666667%}:host ::ng-deep .offset-xxl-6{margin-left:50%}:host ::ng-deep .offset-xxl-7{margin-left:58.33333333%}:host ::ng-deep .offset-xxl-8{margin-left:66.66666667%}:host ::ng-deep .offset-xxl-9{margin-left:75%}:host ::ng-deep .offset-xxl-10{margin-left:83.33333333%}:host ::ng-deep .offset-xxl-11{margin-left:91.66666667%}:host ::ng-deep .g-xxl-0,:host ::ng-deep .gx-xxl-0{--bs-gutter-x: 0}:host ::ng-deep .g-xxl-0,:host ::ng-deep .gy-xxl-0{--bs-gutter-y: 0}:host ::ng-deep .g-xxl-1,:host ::ng-deep .gx-xxl-1{--bs-gutter-x: .25rem}:host ::ng-deep .g-xxl-1,:host ::ng-deep .gy-xxl-1{--bs-gutter-y: .25rem}:host ::ng-deep .g-xxl-2,:host ::ng-deep .gx-xxl-2{--bs-gutter-x: .5rem}:host ::ng-deep .g-xxl-2,:host ::ng-deep .gy-xxl-2{--bs-gutter-y: .5rem}:host ::ng-deep .g-xxl-3,:host ::ng-deep .gx-xxl-3{--bs-gutter-x: 1rem}:host ::ng-deep .g-xxl-3,:host ::ng-deep .gy-xxl-3{--bs-gutter-y: 1rem}:host ::ng-deep .g-xxl-4,:host ::ng-deep .gx-xxl-4{--bs-gutter-x: 1.5rem}:host ::ng-deep .g-xxl-4,:host ::ng-deep .gy-xxl-4{--bs-gutter-y: 1.5rem}:host ::ng-deep .g-xxl-5,:host ::ng-deep .gx-xxl-5{--bs-gutter-x: 3rem}:host ::ng-deep .g-xxl-5,:host ::ng-deep .gy-xxl-5{--bs-gutter-y: 3rem}}:host{display:contents}\n"] }]
|
|
31
|
-
}], ctorParameters: function () { return []; }, propDecorators: { stopFullWidthAt: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}] } });
|
|
34
|
-
|
|
35
|
-
class BsGridRowDirective {
|
|
36
|
-
constructor() {
|
|
37
|
-
this.rowClass = true;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
BsGridRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridRowDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
-
BsGridRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsGridRowDirective, selector: "[bsRow]", host: { properties: { "class.row": "this.rowClass" } }, ngImport: i0 });
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridRowDirective, decorators: [{
|
|
43
|
-
type: Directive,
|
|
44
|
-
args: [{
|
|
45
|
-
selector: '[bsRow]'
|
|
46
|
-
}]
|
|
47
|
-
}], propDecorators: { rowClass: [{
|
|
48
|
-
type: HostBinding,
|
|
49
|
-
args: ['class.row']
|
|
50
|
-
}] } });
|
|
51
|
-
|
|
52
|
-
class BsGridColumnDirective {
|
|
53
|
-
constructor() {
|
|
54
|
-
this.customColClasses$ = new BehaviorSubject(undefined);
|
|
55
|
-
this.destroyed$ = new Subject();
|
|
56
|
-
this.classList = null;
|
|
57
|
-
this.customColClasses$
|
|
58
|
-
.pipe(map((data) => {
|
|
59
|
-
if (!data) {
|
|
60
|
-
return 'col';
|
|
61
|
-
}
|
|
62
|
-
else {
|
|
63
|
-
return Object.keys(data)
|
|
64
|
-
.map(key => ({
|
|
65
|
-
key,
|
|
66
|
-
value: data[key]
|
|
67
|
-
}))
|
|
68
|
-
.map(v => {
|
|
69
|
-
if (v.key === '_') {
|
|
70
|
-
return `col-${v.value}`;
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
return `col-${v.key}-${v.value}`;
|
|
74
|
-
}
|
|
75
|
-
})
|
|
76
|
-
.join(' ');
|
|
77
|
-
}
|
|
78
|
-
}))
|
|
79
|
-
.pipe(takeUntil(this.destroyed$))
|
|
80
|
-
.subscribe((classList) => {
|
|
81
|
-
this.classList = classList;
|
|
82
|
-
});
|
|
83
|
-
}
|
|
84
|
-
set bsColumn(value) {
|
|
85
|
-
this.customColClasses$.next(value);
|
|
86
|
-
}
|
|
87
|
-
ngOnDestroy() {
|
|
88
|
-
this.destroyed$.next(true);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
BsGridColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridColumnDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
92
|
-
BsGridColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsGridColumnDirective, selector: "[bsColumn]", inputs: { bsColumn: "bsColumn" }, host: { properties: { "class": "this.classList" } }, ngImport: i0 });
|
|
93
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridColumnDirective, decorators: [{
|
|
94
|
-
type: Directive,
|
|
95
|
-
args: [{
|
|
96
|
-
selector: '[bsColumn]'
|
|
97
|
-
}]
|
|
98
|
-
}], ctorParameters: function () { return []; }, propDecorators: { classList: [{
|
|
99
|
-
type: HostBinding,
|
|
100
|
-
args: ['class']
|
|
101
|
-
}], bsColumn: [{
|
|
102
|
-
type: Input
|
|
103
|
-
}] } });
|
|
104
|
-
|
|
105
|
-
class BsColFormLabelDirective {
|
|
106
|
-
constructor() {
|
|
107
|
-
this.colFormLabelClass = true;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
BsColFormLabelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsColFormLabelDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
111
|
-
BsColFormLabelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: BsColFormLabelDirective, selector: "[bsColFormLabel]", host: { properties: { "class.col-form-label": "this.colFormLabelClass" } }, ngImport: i0 });
|
|
112
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsColFormLabelDirective, decorators: [{
|
|
113
|
-
type: Directive,
|
|
114
|
-
args: [{
|
|
115
|
-
selector: '[bsColFormLabel]'
|
|
116
|
-
}]
|
|
117
|
-
}], propDecorators: { colFormLabelClass: [{
|
|
118
|
-
type: HostBinding,
|
|
119
|
-
args: ['class.col-form-label']
|
|
120
|
-
}] } });
|
|
121
|
-
|
|
122
|
-
class BsGridModule {
|
|
123
|
-
}
|
|
124
|
-
BsGridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
125
|
-
BsGridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.7", ngImport: i0, type: BsGridModule, declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective], imports: [CommonModule], exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective] });
|
|
126
|
-
BsGridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridModule, imports: [CommonModule] });
|
|
127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BsGridModule, decorators: [{
|
|
128
|
-
type: NgModule,
|
|
129
|
-
args: [{
|
|
130
|
-
declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],
|
|
131
|
-
imports: [CommonModule],
|
|
132
|
-
exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],
|
|
133
|
-
}]
|
|
134
|
-
}] });
|
|
135
|
-
|
|
136
|
-
/**
|
|
137
|
-
* Generated bundle index. Do not edit.
|
|
138
|
-
*/
|
|
139
|
-
|
|
140
|
-
export { BsColFormLabelDirective, BsGridColumnDirective, BsGridComponent, BsGridModule, BsGridRowDirective };
|
|
141
|
-
//# sourceMappingURL=mintplayer-ng-bootstrap-grid.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mintplayer-ng-bootstrap-grid.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/grid/src/component/grid.component.ts","../../../../libs/mintplayer-ng-bootstrap/grid/src/component/grid.component.html","../../../../libs/mintplayer-ng-bootstrap/grid/src/directives/row/row.directive.ts","../../../../libs/mintplayer-ng-bootstrap/grid/src/directives/column/column.directive.ts","../../../../libs/mintplayer-ng-bootstrap/grid/src/directives/col-form-label/col-form-label.directive.ts","../../../../libs/mintplayer-ng-bootstrap/grid/src/grid.module.ts","../../../../libs/mintplayer-ng-bootstrap/grid/mintplayer-ng-bootstrap-grid.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\nimport { Breakpoint } from '@mintplayer/ng-bootstrap';\nimport { BehaviorSubject, map, Observable } from 'rxjs';\n\n@Component({\n selector: 'bs-grid',\n templateUrl: './grid.component.html',\n styleUrls: ['./grid.component.scss'],\n})\nexport class BsGridComponent {\n \n constructor() {\n this.containerClass$ = this.stopFullWidthAt$.pipe(map((stopFullWidthAt) => {\n switch (stopFullWidthAt) {\n case 'sm': return 'container';\n case 'never': return 'container-fluid';\n default: return `container-${stopFullWidthAt}`;\n }\n }));\n }\n\n //#region StopFullWidthAt\n stopFullWidthAt$ = new BehaviorSubject<Breakpoint | 'never'>('sm');\n public get stopFullWidthAt() {\n return this.stopFullWidthAt$.value;\n }\n @Input() public set stopFullWidthAt(value: Breakpoint | 'never') {\n this.stopFullWidthAt$.next(value);\n }\n //#endregion\n\n containerClass$: Observable<string>;\n}\n","<div [class]=\"containerClass$ | async\">\n <ng-content></ng-content>\n</div>","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: '[bsRow]'\n})\nexport class BsGridRowDirective {\n @HostBinding('class.row') rowClass = true;\n}\n","import { Directive, HostBinding, Input, OnDestroy, Optional } from '@angular/core';\nimport { BehaviorSubject, map, Observable, Subject, takeUntil } from 'rxjs';\nimport { BsColumnDefinition } from '../../interfaces/column-definition';\n\n@Directive({\n selector: '[bsColumn]'\n})\nexport class BsGridColumnDirective implements OnDestroy {\n constructor() {\n this.customColClasses$\n .pipe(map((data) => {\n if (!data) {\n return 'col';\n } else {\n return Object.keys(data)\n .map(key => ({\n key,\n value: (<any>data)[key]\n }))\n .map(v => {\n if (v.key === '_') {\n return `col-${v.value}`;\n } else {\n return `col-${v.key}-${v.value}`;\n }\n })\n .join(' ');\n }\n }))\n .pipe(takeUntil(this.destroyed$))\n .subscribe((classList) => {\n this.classList = classList;\n });\n }\n\n private customColClasses$ = new BehaviorSubject<BsColumnDefinition | '' | undefined>(undefined);\n private destroyed$ = new Subject();\n @HostBinding('class') classList: string | null = null\n\n @Input() public set bsColumn(value: BsColumnDefinition | '' | undefined) {\n this.customColClasses$.next(value);\n }\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n\n}\n","import { Directive, HostBinding } from '@angular/core';\n\n@Directive({\n selector: '[bsColFormLabel]'\n})\nexport class BsColFormLabelDirective {\n @HostBinding('class.col-form-label') colFormLabelClass = true;\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsGridComponent } from './component/grid.component';\nimport { BsGridRowDirective } from './directives/row/row.directive';\nimport { BsGridColumnDirective } from './directives/column/column.directive';\nimport { BsColFormLabelDirective } from './directives/col-form-label/col-form-label.directive';\n\n@NgModule({\n declarations: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],\n imports: [CommonModule],\n exports: [BsGridComponent, BsGridRowDirective, BsGridColumnDirective, BsColFormLabelDirective],\n})\nexport class BsGridModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;MASa,eAAe,CAAA;AAE1B,IAAA,WAAA,GAAA;;QAWA,IAAA,CAAA,gBAAgB,GAAG,IAAI,eAAe,CAAuB,IAAI,CAAC,CAAC;AAVjE,QAAA,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,eAAe,KAAI;AACxE,YAAA,QAAQ,eAAe;AACrB,gBAAA,KAAK,IAAI,EAAE,OAAO,WAAW,CAAC;AAC9B,gBAAA,KAAK,OAAO,EAAE,OAAO,iBAAiB,CAAC;AACvC,gBAAA,SAAS,OAAO,CAAa,UAAA,EAAA,eAAe,EAAE,CAAC;AAChD,aAAA;SACF,CAAC,CAAC,CAAC;KACL;AAID,IAAA,IAAW,eAAe,GAAA;AACxB,QAAA,OAAO,IAAI,CAAC,gBAAgB,CAAC,KAAK,CAAC;KACpC;IACD,IAAoB,eAAe,CAAC,KAA2B,EAAA;AAC7D,QAAA,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACnC;;4GAnBU,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAAf,eAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,+FCT5B,kFAEM,EAAA,MAAA,EAAA,CAAA,8y3FAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,MAAA,EAAA,IAAA,EAAA,EAAA,CAAA,SAAA,EAAA,IAAA,EAAA,OAAA,EAAA,CAAA,EAAA,CAAA,CAAA;2FDOO,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;+BACE,SAAS,EAAA,QAAA,EAAA,kFAAA,EAAA,MAAA,EAAA,CAAA,8y3FAAA,CAAA,EAAA,CAAA;0EAqBC,eAAe,EAAA,CAAA;sBAAlC,KAAK;;;MErBK,kBAAkB,CAAA;AAH/B,IAAA,WAAA,GAAA;AAI4B,QAAA,IAAQ,CAAA,QAAA,GAAG,IAAI,CAAC;KAC3C;;+GAFY,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAlB,kBAAkB,EAAA,QAAA,EAAA,SAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,WAAA,EAAA,eAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAlB,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAH9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,SAAS;iBACpB,CAAA;8BAE2B,QAAQ,EAAA,CAAA;sBAAjC,WAAW;uBAAC,WAAW,CAAA;;;MCCb,qBAAqB,CAAA;AAChC,IAAA,WAAA,GAAA;QA2BQ,IAAA,CAAA,iBAAiB,GAAG,IAAI,eAAe,CAAsC,SAAS,CAAC,CAAC;AACxF,QAAA,IAAA,CAAA,UAAU,GAAG,IAAI,OAAO,EAAE,CAAC;AACb,QAAA,IAAS,CAAA,SAAA,GAAkB,IAAI,CAAA;AA5BnD,QAAA,IAAI,CAAC,iBAAiB;AACnB,aAAA,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,KAAI;YACjB,IAAI,CAAC,IAAI,EAAE;AACT,gBAAA,OAAO,KAAK,CAAC;AACd,aAAA;AAAM,iBAAA;AACL,gBAAA,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC;AACrB,qBAAA,GAAG,CAAC,GAAG,KAAK;oBACX,GAAG;AACH,oBAAA,KAAK,EAAQ,IAAK,CAAC,GAAG,CAAC;AACxB,iBAAA,CAAC,CAAC;qBACF,GAAG,CAAC,CAAC,IAAG;AACP,oBAAA,IAAI,CAAC,CAAC,GAAG,KAAK,GAAG,EAAE;AACjB,wBAAA,OAAO,CAAO,IAAA,EAAA,CAAC,CAAC,KAAK,EAAE,CAAC;AACzB,qBAAA;AAAM,yBAAA;wBACL,OAAO,CAAA,IAAA,EAAO,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC,KAAK,CAAA,CAAE,CAAC;AAClC,qBAAA;AACH,iBAAC,CAAC;qBACD,IAAI,CAAC,GAAG,CAAC,CAAC;AACd,aAAA;AACH,SAAC,CAAC,CAAC;AACF,aAAA,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;AAChC,aAAA,SAAS,CAAC,CAAC,SAAS,KAAI;AACvB,YAAA,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;AAC7B,SAAC,CAAC,CAAC;KACN;IAMD,IAAoB,QAAQ,CAAC,KAA0C,EAAA;AACrE,QAAA,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KACpC;IAED,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;KAC5B;;kHAtCU,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;sGAArB,qBAAqB,EAAA,QAAA,EAAA,YAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,UAAA,EAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,OAAA,EAAA,gBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAArB,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAHjC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,YAAY;iBACvB,CAAA;0EA+BuB,SAAS,EAAA,CAAA;sBAA9B,WAAW;uBAAC,OAAO,CAAA;gBAEA,QAAQ,EAAA,CAAA;sBAA3B,KAAK;;;MClCK,uBAAuB,CAAA;AAHpC,IAAA,WAAA,GAAA;AAIuC,QAAA,IAAiB,CAAA,iBAAA,GAAG,IAAI,CAAC;KAC/D;;oHAFY,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;wGAAvB,uBAAuB,EAAA,QAAA,EAAA,kBAAA,EAAA,IAAA,EAAA,EAAA,UAAA,EAAA,EAAA,sBAAA,EAAA,wBAAA,EAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;2FAAvB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAHnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,kBAAkB;iBAC7B,CAAA;8BAEsC,iBAAiB,EAAA,CAAA;sBAArD,WAAW;uBAAC,sBAAsB,CAAA;;;MCMxB,YAAY,CAAA;;yGAAZ,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA;AAAZ,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,iBAJR,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,uBAAuB,CACxF,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,uBAAuB,CAAA,EAAA,CAAA,CAAA;AAElF,YAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,YAHb,YAAY,CAAA,EAAA,CAAA,CAAA;2FAGX,YAAY,EAAA,UAAA,EAAA,CAAA;kBALxB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,uBAAuB,CAAC;oBACnG,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,eAAe,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,uBAAuB,CAAC;iBAC/F,CAAA;;;ACXD;;AAEG;;;;"}
|