@mintplayer/ng-bootstrap 15.26.2 → 16.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accordion/src/accordion/accordion.component.d.ts +1 -1
- package/accordion/src/accordion-tab/accordion-tab.component.d.ts +1 -1
- package/alert/src/alert/alert.component.d.ts +1 -1
- package/badge/src/badge.component.d.ts +1 -1
- package/button-type/src/button-type/button-type.directive.d.ts +1 -1
- package/calendar/src/calendar.component.d.ts +1 -1
- package/card/src/card/card.component.d.ts +1 -1
- package/card/src/card-header/card-header.component.d.ts +1 -1
- package/carousel/src/carousel/carousel.component.d.ts +1 -1
- package/code-snippet/src/code-snippet.component.d.ts +1 -1
- package/copy/src/copy.directive.d.ts +1 -1
- package/datatable/src/datatable/datatable.component.d.ts +1 -1
- package/datatable/src/datatable-column/datatable-column.directive.d.ts +1 -1
- package/datepicker/src/datepicker.component.d.ts +1 -1
- package/dock/src/dock/dock.component.d.ts +1 -1
- package/dock/src/dock-pane-renderer/dock-pane-renderer.component.d.ts +1 -1
- package/dock/src/dock-panel/dock-panel.component.d.ts +1 -1
- package/dock/src/dock-panel-header/dock-panel-header.component.d.ts +2 -0
- package/dropdown/src/dropdown/dropdown.directive.d.ts +1 -1
- package/dropdown-menu/src/dropdown-item/dropdown-item.component.d.ts +1 -1
- package/dropdown-menu/src/dropdown-menu/dropdown-menu.component.d.ts +1 -1
- package/esm2022/accordion/src/accordion/accordion.component.mjs +27 -0
- package/esm2022/accordion/src/accordion-tab/accordion-tab.component.mjs +69 -0
- package/esm2022/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +22 -0
- package/esm2022/accordion/src/accordion.module.mjs +39 -0
- package/esm2022/alert/src/alert/alert.component.mjs +42 -0
- package/esm2022/alert/src/alert-close/alert-close.component.mjs +21 -0
- package/esm2022/alert/src/alert.module.mjs +28 -0
- package/esm2022/badge/src/badge.component.mjs +31 -0
- package/esm2022/badge/src/badge.module.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +14 -0
- package/esm2022/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +19 -0
- package/esm2022/breadcrumb/src/breadcrumb.module.mjs +20 -0
- package/esm2022/button-group/src/button-group/button-group.component.mjs +14 -0
- package/esm2022/button-group/src/button-group.module.mjs +19 -0
- package/esm2022/button-type/src/button-type/button-type.directive.mjs +31 -0
- package/esm2022/button-type/src/button-type/button-type.module.mjs +25 -0
- package/esm2022/calendar/src/calendar.component.mjs +112 -0
- package/esm2022/calendar/src/calendar.module.mjs +40 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/month-name/month-name.pipe.mjs +22 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +25 -0
- package/esm2022/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +17 -0
- package/esm2022/calendar-month/src/service/calendar-month.service.mjs +95 -0
- package/esm2022/card/src/card/card.component.mjs +17 -0
- package/esm2022/card/src/card-header/card-header.component.mjs +17 -0
- package/esm2022/card/src/card.module.mjs +28 -0
- package/esm2022/carousel/src/carousel/carousel.component.mjs +138 -0
- package/esm2022/carousel/src/carousel-image/carousel-image.directive.mjs +25 -0
- package/esm2022/carousel/src/carousel.module.mjs +38 -0
- package/esm2022/close/src/close.component.mjs +22 -0
- package/esm2022/close/src/close.module.mjs +19 -0
- package/esm2022/code-snippet/src/code-snippet.component.mjs +35 -0
- package/esm2022/code-snippet/src/code-snippet.module.mjs +37 -0
- package/esm2022/context-menu/src/context-menu.directive.mjs +85 -0
- package/esm2022/context-menu/src/context-menu.module.mjs +35 -0
- package/esm2022/copy/src/copy.directive.mjs +46 -0
- package/esm2022/copy/src/copy.module.mjs +25 -0
- package/esm2022/datatable/src/datatable/datatable.component.mjs +58 -0
- package/esm2022/datatable/src/datatable-column/datatable-column.directive.mjs +20 -0
- package/esm2022/datatable/src/datatable.module.mjs +47 -0
- package/esm2022/datatable/src/row-template/row-template.directive.mjs +20 -0
- package/esm2022/datepicker/src/datepicker.component.mjs +50 -0
- package/esm2022/datepicker/src/datepicker.module.mjs +41 -0
- package/esm2022/dock/src/dock/dock.component.mjs +94 -0
- package/esm2022/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +61 -0
- package/esm2022/dock/src/dock-panel/dock-panel.component.mjs +28 -0
- package/esm2022/dock/src/dock-panel-header/dock-panel-header.component.mjs +278 -0
- package/esm2022/dock/src/dock.module.mjs +64 -0
- package/esm2022/dock/src/services/dock/dock.service.mjs +57 -0
- package/esm2022/dropdown/src/dropdown/dropdown.directive.mjs +69 -0
- package/esm2022/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +115 -0
- package/esm2022/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +32 -0
- package/esm2022/dropdown/src/dropdown.module.mjs +44 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.directive.mjs +20 -0
- package/esm2022/dropdown-divider/src/dropdown-divider.module.mjs +19 -0
- package/esm2022/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +20 -0
- package/esm2022/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +43 -0
- package/esm2022/dropdown-menu/src/dropdown-menu.module.mjs +27 -0
- package/esm2022/enhanced-paste/src/directive/enhanced-paste.directive.mjs +59 -0
- package/esm2022/enhanced-paste/src/enhanced-paste.module.mjs +25 -0
- package/esm2022/enum/src/service/enum.service.mjs +32 -0
- package/esm2022/file-upload/src/component/file-upload.component.mjs +90 -0
- package/esm2022/file-upload/src/directive/file-upload-template.directive.mjs +19 -0
- package/esm2022/file-upload/src/file-upload.module.mjs +51 -0
- package/esm2022/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +24 -0
- package/esm2022/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +21 -0
- package/esm2022/floating-labels/src/floating-labels/floating-labels.module.mjs +19 -0
- package/esm2022/for/src/for.directive.mjs +39 -0
- package/esm2022/for/src/for.module.mjs +25 -0
- package/esm2022/form/src/form/form.component.mjs +21 -0
- package/esm2022/form/src/form-control/form-control.directive.mjs +20 -0
- package/esm2022/form/src/form-group/form-group.directive.mjs +20 -0
- package/esm2022/form/src/form.module.mjs +21 -0
- package/esm2022/grid/src/component/grid.component.mjs +33 -0
- package/esm2022/grid/src/directives/col-form-label/col-form-label.directive.mjs +20 -0
- package/esm2022/grid/src/directives/column/column.directive.mjs +57 -0
- package/esm2022/grid/src/directives/row/row.directive.mjs +20 -0
- package/esm2022/grid/src/grid.module.mjs +22 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.component.mjs +12 -0
- package/esm2022/has-overlay/src/has-overlay/has-overlay.module.mjs +19 -0
- package/esm2022/icon/src/icon.component.mjs +35 -0
- package/esm2022/icon/src/icon.module.mjs +19 -0
- package/esm2022/input-group/src/input-group/input-group.component.mjs +12 -0
- package/esm2022/input-group/src/input-group.module.mjs +19 -0
- package/esm2022/instance-of/src/directives/instanceof-case.directive.mjs +48 -0
- package/esm2022/instance-of/src/directives/instanceof-default.directive.mjs +31 -0
- package/esm2022/instance-of/src/directives/instanceof.directive.mjs +63 -0
- package/esm2022/instance-of/src/instance-of.module.mjs +38 -0
- package/esm2022/instance-of/src/pipes/instance-of.pipe.mjs +18 -0
- package/esm2022/lazy-loading/src/lazy-load/lazy-load.directive.mjs +33 -0
- package/esm2022/lazy-loading/src/lazy-loading.module.mjs +25 -0
- package/esm2022/let/directive/let.directive.mjs +39 -0
- package/esm2022/let/let.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.module.mjs +25 -0
- package/esm2022/lib/pipes/font-color/font-color.pipe.mjs +27 -0
- package/esm2022/lib/pipes/in-list/in-list.module.mjs +25 -0
- package/esm2022/lib/pipes/in-list/in-list.pipe.mjs +17 -0
- package/esm2022/lib/pipes/uc-first/uc-first.module.mjs +25 -0
- package/esm2022/lib/pipes/uc-first/uc-first.pipe.mjs +17 -0
- package/esm2022/list-group/src/list-group/list-group.component.mjs +20 -0
- package/esm2022/list-group/src/list-group-item/list-group-item.component.mjs +18 -0
- package/esm2022/list-group/src/list-group.module.mjs +28 -0
- package/esm2022/markdown/src/bold/bold.pipe.mjs +31 -0
- package/esm2022/markdown/src/italic/italic.pipe.mjs +31 -0
- package/esm2022/markdown/src/markdown.module.mjs +40 -0
- package/esm2022/markdown/src/strikethrough/strikethrough.pipe.mjs +31 -0
- package/esm2022/markdown/src/underline/underline.pipe.mjs +31 -0
- package/esm2022/modal/src/components/modal/modal.component.mjs +22 -0
- package/esm2022/modal/src/components/modal-host/modal-host.component.mjs +84 -0
- package/esm2022/modal/src/directives/modal/modal.directive.mjs +19 -0
- package/esm2022/modal/src/directives/modal-body/modal-body.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-close/modal-close.directive.mjs +25 -0
- package/esm2022/modal/src/directives/modal-footer/modal-footer.directive.mjs +20 -0
- package/esm2022/modal/src/directives/modal-header/modal-header.directive.mjs +20 -0
- package/esm2022/modal/src/modal.module.mjs +76 -0
- package/esm2022/multiselect/src/component/multiselect.component.mjs +46 -0
- package/esm2022/multiselect/src/directives/button-template/button-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/footer-template/footer-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/directives/header-template/header-template.directive.mjs +19 -0
- package/esm2022/multiselect/src/multiselect.module.mjs +64 -0
- package/esm2022/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +39 -0
- package/esm2022/navbar/src/expand-button/expand-button.directive.mjs +19 -0
- package/esm2022/navbar/src/nav-link/nav-link.directive.mjs +35 -0
- package/esm2022/navbar/src/navbar/navbar.component.mjs +142 -0
- package/esm2022/navbar/src/navbar-brand/navbar-brand.component.mjs +21 -0
- package/esm2022/navbar/src/navbar-content/navbar-content.directive.mjs +73 -0
- package/esm2022/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +144 -0
- package/esm2022/navbar/src/navbar-item/navbar-item.component.mjs +105 -0
- package/esm2022/navbar/src/navbar-nav/navbar-nav.component.mjs +70 -0
- package/esm2022/navbar/src/navbar-toggler/navbar-toggler.component.mjs +48 -0
- package/esm2022/navbar/src/navbar.module.mjs +92 -0
- package/esm2022/navigation-lock/src/directive/navigation-lock.directive.mjs +95 -0
- package/esm2022/navigation-lock/src/guard/navigation-lock.guard.mjs +23 -0
- package/esm2022/navigation-lock/src/navigation-lock.module.mjs +29 -0
- package/esm2022/no-noscript/src/no-noscript/no-noscript.directive.mjs +28 -0
- package/esm2022/no-noscript/src/no-noscript.module.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas/offcanvas.component.mjs +112 -0
- package/esm2022/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +19 -0
- package/esm2022/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +15 -0
- package/esm2022/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +144 -0
- package/esm2022/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +25 -0
- package/esm2022/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +19 -0
- package/esm2022/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +72 -0
- package/esm2022/offcanvas/src/offcanvas.module.mjs +76 -0
- package/esm2022/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +30 -0
- package/esm2022/ordinal-number/src/ordinal-number.module.mjs +25 -0
- package/esm2022/pagination/src/component/pagination/pagination.component.mjs +202 -0
- package/esm2022/pagination/src/pagination.module.mjs +25 -0
- package/esm2022/placeholder/src/placeholder/placeholder.component.mjs +27 -0
- package/esm2022/placeholder/src/placeholder-field/placeholder-field.directive.mjs +47 -0
- package/esm2022/placeholder/src/placeholder.module.mjs +20 -0
- package/esm2022/popover/src/component/popover.component.mjs +58 -0
- package/esm2022/popover/src/directives/popover/popover.directive.mjs +133 -0
- package/esm2022/popover/src/directives/popover-body/popover-body.directive.mjs +20 -0
- package/esm2022/popover/src/directives/popover-header/popover-header.directive.mjs +20 -0
- package/esm2022/popover/src/popover.module.mjs +37 -0
- package/esm2022/progress-bar/src/progress/progress.component.mjs +32 -0
- package/esm2022/progress-bar/src/progress-bar/progress-bar.component.mjs +122 -0
- package/esm2022/progress-bar/src/progress-bar.module.mjs +30 -0
- package/esm2022/range/src/component/range.component.mjs +26 -0
- package/esm2022/range/src/range.module.mjs +20 -0
- package/esm2022/range/src/value-accessor/range-value-accessor.mjs +63 -0
- package/esm2022/rating/src/component/rating.component.mjs +76 -0
- package/esm2022/rating/src/rating.module.mjs +25 -0
- package/esm2022/resizable/src/resizable/resizable.component.mjs +99 -0
- package/esm2022/resizable/src/resizable.module.mjs +30 -0
- package/esm2022/resizable/src/resize-glyph/resize-glyph.directive.mjs +220 -0
- package/esm2022/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +86 -0
- package/esm2022/scheduler/src/components/scheduler/scheduler.component.mjs +540 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +17 -0
- package/esm2022/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +21 -0
- package/esm2022/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +23 -0
- package/esm2022/scheduler/src/scheduler.module.mjs +46 -0
- package/esm2022/scheduler/src/services/timeline/timeline.service.mjs +66 -0
- package/esm2022/scrollspy/src/component/scrollspy.component.mjs +91 -0
- package/esm2022/scrollspy/src/directives/scrollspy.directive.mjs +17 -0
- package/esm2022/scrollspy/src/scrollspy.module.mjs +30 -0
- package/esm2022/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +32 -0
- package/esm2022/select/src/component/select.component.mjs +86 -0
- package/esm2022/select/src/select.module.mjs +32 -0
- package/esm2022/select/src/value-accessors/select-value-accessor.mjs +169 -0
- package/esm2022/select2/src/component/select2.component.mjs +86 -0
- package/esm2022/select2/src/directive/item-template.directive.mjs +20 -0
- package/esm2022/select2/src/select2.module.mjs +50 -0
- package/esm2022/snackbar/src/component/snackbar.component.mjs +37 -0
- package/esm2022/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +28 -0
- package/esm2022/snackbar/src/service/snackbar.service.mjs +46 -0
- package/esm2022/snackbar/src/snackbar.module.mjs +44 -0
- package/esm2022/spinner/src/spinner.component.mjs +44 -0
- package/esm2022/spinner/src/spinner.module.mjs +19 -0
- package/esm2022/splitter/src/element-at/element-at.pipe.mjs +22 -0
- package/esm2022/splitter/src/split-panel/split-panel.component.mjs +19 -0
- package/esm2022/splitter/src/splitter/splitter.component.mjs +207 -0
- package/esm2022/splitter/src/splitter.module.mjs +24 -0
- package/esm2022/tab-control/src/tab-control/tab-control.component.mjs +133 -0
- package/esm2022/tab-control/src/tab-control.module.mjs +47 -0
- package/esm2022/tab-control/src/tab-page/tab-page.component.mjs +31 -0
- package/esm2022/tab-control/src/tab-page-header/tab-page-header.directive.mjs +17 -0
- package/esm2022/table/src/component/table.component.mjs +48 -0
- package/esm2022/table/src/table.module.mjs +19 -0
- package/esm2022/timepicker/src/timepicker.component.mjs +118 -0
- package/esm2022/timepicker/src/timepicker.module.mjs +61 -0
- package/esm2022/toast/src/components/toast/toast.component.mjs +17 -0
- package/esm2022/toast/src/components/toast-body/toast-body.component.mjs +21 -0
- package/esm2022/toast/src/components/toast-container/toast-container.component.mjs +24 -0
- package/esm2022/toast/src/components/toast-header/toast-header.component.mjs +18 -0
- package/esm2022/toast/src/directives/toast-close/toast-close.directive.mjs +33 -0
- package/esm2022/toast/src/pipes/add-properties.pipe.mjs +18 -0
- package/esm2022/toast/src/services/toast/toast.service.mjs +57 -0
- package/esm2022/toast/src/toast.module.mjs +78 -0
- package/esm2022/toggle-button/src/component/toggle-button.component.mjs +159 -0
- package/esm2022/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +20 -0
- package/esm2022/toggle-button/src/toggle-button.module.mjs +35 -0
- package/esm2022/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +109 -0
- package/esm2022/tooltip/src/component/tooltip.component.mjs +39 -0
- package/esm2022/tooltip/src/directive/tooltip.directive.mjs +110 -0
- package/esm2022/tooltip/src/tooltip.module.mjs +36 -0
- package/esm2022/treeview/src/treeview/treeview.component.mjs +47 -0
- package/esm2022/treeview/src/treeview-item/treeview-item.component.mjs +28 -0
- package/esm2022/treeview/src/treeview.module.mjs +22 -0
- package/esm2022/typeahead/src/typeahead.component.mjs +83 -0
- package/esm2022/typeahead/src/typeahead.module.mjs +49 -0
- package/esm2022/user-agent/src/directive/user-agent.directive.mjs +99 -0
- package/esm2022/user-agent/src/user-agent.module.mjs +25 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-accordion.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-alert.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs +52 -0
- package/fesm2022/mintplayer-ng-bootstrap-badge.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs +51 -0
- package/fesm2022/mintplayer-ng-bootstrap-breadcrumb.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs +35 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs +58 -0
- package/fesm2022/mintplayer-ng-bootstrap-button-type.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar-month.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs +153 -0
- package/fesm2022/mintplayer-ng-bootstrap-calendar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-card.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs +194 -0
- package/fesm2022/mintplayer-ng-bootstrap-carousel.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs +43 -0
- package/fesm2022/mintplayer-ng-bootstrap-close.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs +73 -0
- package/fesm2022/mintplayer-ng-bootstrap-code-snippet.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs +121 -0
- package/fesm2022/mintplayer-ng-bootstrap-context-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs +72 -0
- package/fesm2022/mintplayer-ng-bootstrap-copy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs +172 -0
- package/fesm2022/mintplayer-ng-bootstrap-datatable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs +93 -0
- package/fesm2022/mintplayer-ng-bootstrap-datepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs +598 -0
- package/fesm2022/mintplayer-ng-bootstrap-dock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs +87 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs +243 -0
- package/fesm2022/mintplayer-ng-bootstrap-dropdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs +85 -0
- package/fesm2022/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs +38 -0
- package/fesm2022/mintplayer-ng-bootstrap-enum.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs +175 -0
- package/fesm2022/mintplayer-ng-bootstrap-file-upload.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs +41 -0
- package/fesm2022/mintplayer-ng-bootstrap-floating-labels.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-for.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs +76 -0
- package/fesm2022/mintplayer-ng-bootstrap-form.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs +141 -0
- package/fesm2022/mintplayer-ng-bootstrap-grid.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-has-overlay.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-icon.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs +33 -0
- package/fesm2022/mintplayer-ng-bootstrap-input-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs +218 -0
- package/fesm2022/mintplayer-ng-bootstrap-instance-of.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs +60 -0
- package/fesm2022/mintplayer-ng-bootstrap-lazy-loading.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs +66 -0
- package/fesm2022/mintplayer-ng-bootstrap-let.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs +63 -0
- package/fesm2022/mintplayer-ng-bootstrap-list-group.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs +147 -0
- package/fesm2022/mintplayer-ng-bootstrap-markdown.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs +259 -0
- package/fesm2022/mintplayer-ng-bootstrap-modal.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs +151 -0
- package/fesm2022/mintplayer-ng-bootstrap-multiselect.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs +724 -0
- package/fesm2022/mintplayer-ng-bootstrap-navbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs +145 -0
- package/fesm2022/mintplayer-ng-bootstrap-navigation-lock.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs +48 -0
- package/fesm2022/mintplayer-ng-bootstrap-no-noscript.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs +452 -0
- package/fesm2022/mintplayer-ng-bootstrap-offcanvas.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs +56 -0
- package/fesm2022/mintplayer-ng-bootstrap-ordinal-number.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs +229 -0
- package/fesm2022/mintplayer-ng-bootstrap-pagination.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs +89 -0
- package/fesm2022/mintplayer-ng-bootstrap-placeholder.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs +256 -0
- package/fesm2022/mintplayer-ng-bootstrap-popover.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs +182 -0
- package/fesm2022/mintplayer-ng-bootstrap-progress-bar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs +105 -0
- package/fesm2022/mintplayer-ng-bootstrap-range.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs +103 -0
- package/fesm2022/mintplayer-ng-bootstrap-rating.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs +346 -0
- package/fesm2022/mintplayer-ng-bootstrap-resizable.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs +813 -0
- package/fesm2022/mintplayer-ng-bootstrap-scheduler.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs +161 -0
- package/fesm2022/mintplayer-ng-bootstrap-scrollspy.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs +282 -0
- package/fesm2022/mintplayer-ng-bootstrap-select.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs +152 -0
- package/fesm2022/mintplayer-ng-bootstrap-select2.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap-snackbar.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs +65 -0
- package/fesm2022/mintplayer-ng-bootstrap-spinner.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs +268 -0
- package/fesm2022/mintplayer-ng-bootstrap-splitter.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs +214 -0
- package/fesm2022/mintplayer-ng-bootstrap-tab-control.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs +69 -0
- package/fesm2022/mintplayer-ng-bootstrap-table.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-timepicker.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs +236 -0
- package/fesm2022/mintplayer-ng-bootstrap-toast.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs +313 -0
- package/fesm2022/mintplayer-ng-bootstrap-toggle-button.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs +181 -0
- package/fesm2022/mintplayer-ng-bootstrap-tooltip.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs +91 -0
- package/fesm2022/mintplayer-ng-bootstrap-treeview.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs +134 -0
- package/fesm2022/mintplayer-ng-bootstrap-typeahead.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs +125 -0
- package/fesm2022/mintplayer-ng-bootstrap-user-agent.mjs.map +1 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs +144 -0
- package/fesm2022/mintplayer-ng-bootstrap.mjs.map +1 -0
- package/file-upload/src/component/file-upload.component.d.ts +1 -1
- package/for/src/for.directive.d.ts +1 -1
- package/grid/src/component/grid.component.d.ts +1 -1
- package/grid/src/directives/column/column.directive.d.ts +1 -1
- package/icon/src/icon.component.d.ts +1 -1
- package/instance-of/src/directives/instanceof-case.directive.d.ts +1 -1
- package/instance-of/src/directives/instanceof.directive.d.ts +1 -1
- package/lazy-loading/src/lazy-load/lazy-load.directive.d.ts +1 -1
- package/let/directive/let.directive.d.ts +1 -1
- package/modal/src/components/modal-host/modal-host.component.d.ts +1 -1
- package/multiselect/src/component/multiselect.component.d.ts +1 -1
- package/navbar/src/navbar/navbar.component.d.ts +1 -1
- package/navbar/src/navbar-brand/navbar-brand.component.d.ts +1 -1
- package/navbar/src/navbar-content/navbar-content.directive.d.ts +1 -1
- package/navbar/src/navbar-dropdown/navbar-dropdown.component.d.ts +1 -1
- package/navbar/src/navbar-nav/navbar-nav.component.d.ts +1 -1
- package/navbar/src/navbar-toggler/navbar-toggler.component.d.ts +1 -1
- package/navigation-lock/src/directive/navigation-lock.directive.d.ts +1 -1
- package/offcanvas/src/components/offcanvas/offcanvas.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-body/offcanvas-body.component.d.ts +1 -1
- package/offcanvas/src/components/offcanvas-host/offcanvas-host.component.d.ts +1 -1
- package/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.d.ts +1 -1
- package/package.json +218 -353
- package/pagination/src/component/pagination/pagination.component.d.ts +1 -1
- package/placeholder/src/placeholder/placeholder.component.d.ts +1 -1
- package/popover/src/component/popover.component.d.ts +1 -1
- package/popover/src/directives/popover/popover.directive.d.ts +1 -1
- package/progress-bar/src/progress/progress.component.d.ts +1 -1
- package/progress-bar/src/progress-bar/progress-bar.component.d.ts +1 -1
- package/range/src/component/range.component.d.ts +1 -1
- package/rating/src/component/rating.component.d.ts +1 -1
- package/resizable/src/resizable/resizable.component.d.ts +1 -1
- package/resizable/src/resize-glyph/resize-glyph.directive.d.ts +1 -1
- package/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.d.ts +1 -1
- package/scheduler/src/components/scheduler/scheduler.component.d.ts +1 -1
- package/select/src/component/select.component.d.ts +1 -1
- package/select/src/value-accessors/select-value-accessor.d.ts +2 -2
- package/select2/src/component/select2.component.d.ts +1 -1
- package/snackbar/src/directives/snackbar-close/snackbar-close.directive.d.ts +1 -1
- package/spinner/src/spinner.component.d.ts +1 -1
- package/splitter/src/splitter/splitter.component.d.ts +1 -1
- package/tab-control/src/tab-control/tab-control.component.d.ts +1 -1
- package/tab-control/src/tab-page/tab-page.component.d.ts +1 -1
- package/table/src/component/table.component.d.ts +1 -1
- package/timepicker/src/timepicker.component.d.ts +1 -1
- package/toast/src/components/toast/toast.component.d.ts +1 -1
- package/toast/src/directives/toast-close/toast-close.directive.d.ts +1 -1
- package/toggle-button/src/component/toggle-button.component.d.ts +1 -1
- package/tooltip/src/component/tooltip.component.d.ts +1 -1
- package/tooltip/src/directive/tooltip.directive.d.ts +1 -1
- package/treeview/src/treeview/treeview.component.d.ts +1 -1
- package/typeahead/src/typeahead.component.d.ts +1 -1
- package/esm2020/accordion/src/accordion/accordion.component.mjs +0 -26
- package/esm2020/accordion/src/accordion-tab/accordion-tab.component.mjs +0 -68
- package/esm2020/accordion/src/accordion-tab-header/accordion-tab-header.component.mjs +0 -21
- package/esm2020/accordion/src/accordion.module.mjs +0 -38
- package/esm2020/alert/src/alert/alert.component.mjs +0 -41
- package/esm2020/alert/src/alert-close/alert-close.component.mjs +0 -20
- package/esm2020/alert/src/alert.module.mjs +0 -27
- package/esm2020/badge/src/badge.component.mjs +0 -30
- package/esm2020/badge/src/badge.module.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb/breadcrumb.component.mjs +0 -13
- package/esm2020/breadcrumb/src/breadcrumb-item/breadcrumb-item.component.mjs +0 -18
- package/esm2020/breadcrumb/src/breadcrumb.module.mjs +0 -19
- package/esm2020/button-group/src/button-group/button-group.component.mjs +0 -13
- package/esm2020/button-group/src/button-group.module.mjs +0 -18
- package/esm2020/button-type/src/button-type/button-type.directive.mjs +0 -30
- package/esm2020/button-type/src/button-type/button-type.module.mjs +0 -24
- package/esm2020/calendar/src/calendar.component.mjs +0 -111
- package/esm2020/calendar/src/calendar.module.mjs +0 -39
- package/esm2020/calendar-month/src/pipes/month-name/month-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/month-name/month-name.pipe.mjs +0 -21
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.module.mjs +0 -24
- package/esm2020/calendar-month/src/pipes/weekday-name/weekday-name.pipe.mjs +0 -16
- package/esm2020/calendar-month/src/service/calendar-month.service.mjs +0 -94
- package/esm2020/card/src/card/card.component.mjs +0 -16
- package/esm2020/card/src/card-header/card-header.component.mjs +0 -16
- package/esm2020/card/src/card.module.mjs +0 -27
- package/esm2020/carousel/src/carousel/carousel.component.mjs +0 -137
- package/esm2020/carousel/src/carousel-image/carousel-image.directive.mjs +0 -24
- package/esm2020/carousel/src/carousel.module.mjs +0 -37
- package/esm2020/close/src/close.component.mjs +0 -21
- package/esm2020/close/src/close.module.mjs +0 -18
- package/esm2020/code-snippet/src/code-snippet.component.mjs +0 -34
- package/esm2020/code-snippet/src/code-snippet.module.mjs +0 -36
- package/esm2020/context-menu/src/context-menu.directive.mjs +0 -84
- package/esm2020/context-menu/src/context-menu.module.mjs +0 -34
- package/esm2020/copy/src/copy.directive.mjs +0 -45
- package/esm2020/copy/src/copy.module.mjs +0 -24
- package/esm2020/datatable/src/datatable/datatable.component.mjs +0 -57
- package/esm2020/datatable/src/datatable-column/datatable-column.directive.mjs +0 -19
- package/esm2020/datatable/src/datatable.module.mjs +0 -46
- package/esm2020/datatable/src/row-template/row-template.directive.mjs +0 -19
- package/esm2020/datepicker/src/datepicker.component.mjs +0 -49
- package/esm2020/datepicker/src/datepicker.module.mjs +0 -40
- package/esm2020/dock/src/dock/dock.component.mjs +0 -92
- package/esm2020/dock/src/dock-pane-renderer/dock-pane-renderer.component.mjs +0 -60
- package/esm2020/dock/src/dock-panel/dock-panel.component.mjs +0 -27
- package/esm2020/dock/src/dock-panel-header/dock-panel-header.component.mjs +0 -270
- package/esm2020/dock/src/dock.module.mjs +0 -63
- package/esm2020/dock/src/services/dock/dock.service.mjs +0 -56
- package/esm2020/dropdown/src/dropdown/dropdown.directive.mjs +0 -68
- package/esm2020/dropdown/src/dropdown-menu/dropdown-menu.directive.mjs +0 -114
- package/esm2020/dropdown/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -31
- package/esm2020/dropdown/src/dropdown.module.mjs +0 -43
- package/esm2020/dropdown-divider/src/dropdown-divider.directive.mjs +0 -19
- package/esm2020/dropdown-divider/src/dropdown-divider.module.mjs +0 -18
- package/esm2020/dropdown-menu/src/dropdown-item/dropdown-item.component.mjs +0 -19
- package/esm2020/dropdown-menu/src/dropdown-menu/dropdown-menu.component.mjs +0 -42
- package/esm2020/dropdown-menu/src/dropdown-menu.module.mjs +0 -26
- package/esm2020/enhanced-paste/src/directive/enhanced-paste.directive.mjs +0 -58
- package/esm2020/enhanced-paste/src/enhanced-paste.module.mjs +0 -24
- package/esm2020/enum/src/service/enum.service.mjs +0 -31
- package/esm2020/file-upload/src/component/file-upload.component.mjs +0 -89
- package/esm2020/file-upload/src/directive/file-upload-template.directive.mjs +0 -18
- package/esm2020/file-upload/src/file-upload.module.mjs +0 -50
- package/esm2020/file-upload/src/pipes/format-bytes/format-bytes.pipe.mjs +0 -23
- package/esm2020/floating-labels/src/floating-labels/floating-label/floating-label.component.mjs +0 -20
- package/esm2020/floating-labels/src/floating-labels/floating-labels.module.mjs +0 -18
- package/esm2020/for/src/for.directive.mjs +0 -38
- package/esm2020/for/src/for.module.mjs +0 -24
- package/esm2020/form/src/form/form.component.mjs +0 -20
- package/esm2020/form/src/form-control/form-control.directive.mjs +0 -19
- package/esm2020/form/src/form-group/form-group.directive.mjs +0 -19
- package/esm2020/form/src/form.module.mjs +0 -20
- package/esm2020/grid/src/component/grid.component.mjs +0 -32
- package/esm2020/grid/src/directives/col-form-label/col-form-label.directive.mjs +0 -19
- package/esm2020/grid/src/directives/column/column.directive.mjs +0 -56
- package/esm2020/grid/src/directives/row/row.directive.mjs +0 -19
- package/esm2020/grid/src/grid.module.mjs +0 -21
- package/esm2020/has-overlay/src/has-overlay/has-overlay.component.mjs +0 -11
- package/esm2020/has-overlay/src/has-overlay/has-overlay.module.mjs +0 -18
- package/esm2020/icon/src/icon.component.mjs +0 -34
- package/esm2020/icon/src/icon.module.mjs +0 -18
- package/esm2020/input-group/src/input-group/input-group.component.mjs +0 -11
- package/esm2020/input-group/src/input-group.module.mjs +0 -18
- package/esm2020/instance-of/src/directives/instanceof-case.directive.mjs +0 -47
- package/esm2020/instance-of/src/directives/instanceof-default.directive.mjs +0 -30
- package/esm2020/instance-of/src/directives/instanceof.directive.mjs +0 -62
- package/esm2020/instance-of/src/instance-of.module.mjs +0 -37
- package/esm2020/instance-of/src/pipes/instance-of.pipe.mjs +0 -17
- package/esm2020/lazy-loading/src/lazy-load/lazy-load.directive.mjs +0 -32
- package/esm2020/lazy-loading/src/lazy-loading.module.mjs +0 -24
- package/esm2020/let/directive/let.directive.mjs +0 -38
- package/esm2020/let/let.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.module.mjs +0 -24
- package/esm2020/lib/pipes/font-color/font-color.pipe.mjs +0 -26
- package/esm2020/lib/pipes/in-list/in-list.module.mjs +0 -24
- package/esm2020/lib/pipes/in-list/in-list.pipe.mjs +0 -16
- package/esm2020/lib/pipes/uc-first/uc-first.module.mjs +0 -24
- package/esm2020/lib/pipes/uc-first/uc-first.pipe.mjs +0 -16
- package/esm2020/list-group/src/list-group/list-group.component.mjs +0 -19
- package/esm2020/list-group/src/list-group-item/list-group-item.component.mjs +0 -17
- package/esm2020/list-group/src/list-group.module.mjs +0 -27
- package/esm2020/markdown/src/bold/bold.pipe.mjs +0 -30
- package/esm2020/markdown/src/italic/italic.pipe.mjs +0 -30
- package/esm2020/markdown/src/markdown.module.mjs +0 -39
- package/esm2020/markdown/src/strikethrough/strikethrough.pipe.mjs +0 -30
- package/esm2020/markdown/src/underline/underline.pipe.mjs +0 -30
- package/esm2020/modal/src/components/modal/modal.component.mjs +0 -21
- package/esm2020/modal/src/components/modal-host/modal-host.component.mjs +0 -83
- package/esm2020/modal/src/directives/modal/modal.directive.mjs +0 -18
- package/esm2020/modal/src/directives/modal-body/modal-body.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-close/modal-close.directive.mjs +0 -24
- package/esm2020/modal/src/directives/modal-footer/modal-footer.directive.mjs +0 -19
- package/esm2020/modal/src/directives/modal-header/modal-header.directive.mjs +0 -19
- package/esm2020/modal/src/modal.module.mjs +0 -75
- package/esm2020/multiselect/src/component/multiselect.component.mjs +0 -45
- package/esm2020/multiselect/src/directives/button-template/button-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/footer-template/footer-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/directives/header-template/header-template.directive.mjs +0 -18
- package/esm2020/multiselect/src/multiselect.module.mjs +0 -63
- package/esm2020/navbar/src/dropdown-toggle/dropdown-toggle.directive.mjs +0 -38
- package/esm2020/navbar/src/expand-button/expand-button.directive.mjs +0 -18
- package/esm2020/navbar/src/nav-link/nav-link.directive.mjs +0 -34
- package/esm2020/navbar/src/navbar/navbar.component.mjs +0 -141
- package/esm2020/navbar/src/navbar-brand/navbar-brand.component.mjs +0 -20
- package/esm2020/navbar/src/navbar-content/navbar-content.directive.mjs +0 -72
- package/esm2020/navbar/src/navbar-dropdown/navbar-dropdown.component.mjs +0 -143
- package/esm2020/navbar/src/navbar-item/navbar-item.component.mjs +0 -104
- package/esm2020/navbar/src/navbar-nav/navbar-nav.component.mjs +0 -69
- package/esm2020/navbar/src/navbar-toggler/navbar-toggler.component.mjs +0 -47
- package/esm2020/navbar/src/navbar.module.mjs +0 -91
- package/esm2020/navigation-lock/src/directive/navigation-lock.directive.mjs +0 -94
- package/esm2020/navigation-lock/src/guard/navigation-lock.guard.mjs +0 -22
- package/esm2020/navigation-lock/src/navigation-lock.module.mjs +0 -28
- package/esm2020/no-noscript/src/no-noscript/no-noscript.directive.mjs +0 -27
- package/esm2020/no-noscript/src/no-noscript.module.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas/offcanvas.component.mjs +0 -111
- package/esm2020/offcanvas/src/components/offcanvas-body/offcanvas-body.component.mjs +0 -18
- package/esm2020/offcanvas/src/components/offcanvas-header/offcanvas-header.component.mjs +0 -14
- package/esm2020/offcanvas/src/components/offcanvas-host/offcanvas-host.component.mjs +0 -143
- package/esm2020/offcanvas/src/directives/offcanvas-close/offcanvas-close.directive.mjs +0 -24
- package/esm2020/offcanvas/src/directives/offcanvas-content/offcanvas-content.directive.mjs +0 -18
- package/esm2020/offcanvas/src/directives/offcanvas-push/offcanvas-push.directive.mjs +0 -71
- package/esm2020/offcanvas/src/offcanvas.module.mjs +0 -75
- package/esm2020/ordinal-number/src/ordinal-number/ordinal-number.pipe.mjs +0 -29
- package/esm2020/ordinal-number/src/ordinal-number.module.mjs +0 -24
- package/esm2020/pagination/src/component/pagination/pagination.component.mjs +0 -201
- package/esm2020/pagination/src/pagination.module.mjs +0 -24
- package/esm2020/placeholder/src/placeholder/placeholder.component.mjs +0 -26
- package/esm2020/placeholder/src/placeholder-field/placeholder-field.directive.mjs +0 -46
- package/esm2020/placeholder/src/placeholder.module.mjs +0 -19
- package/esm2020/popover/src/component/popover.component.mjs +0 -57
- package/esm2020/popover/src/directives/popover/popover.directive.mjs +0 -132
- package/esm2020/popover/src/directives/popover-body/popover-body.directive.mjs +0 -19
- package/esm2020/popover/src/directives/popover-header/popover-header.directive.mjs +0 -19
- package/esm2020/popover/src/popover.module.mjs +0 -36
- package/esm2020/progress-bar/src/progress/progress.component.mjs +0 -31
- package/esm2020/progress-bar/src/progress-bar/progress-bar.component.mjs +0 -121
- package/esm2020/progress-bar/src/progress-bar.module.mjs +0 -29
- package/esm2020/range/src/component/range.component.mjs +0 -25
- package/esm2020/range/src/range.module.mjs +0 -19
- package/esm2020/range/src/value-accessor/range-value-accessor.mjs +0 -62
- package/esm2020/rating/src/component/rating.component.mjs +0 -75
- package/esm2020/rating/src/rating.module.mjs +0 -24
- package/esm2020/resizable/src/resizable/resizable.component.mjs +0 -98
- package/esm2020/resizable/src/resizable.module.mjs +0 -29
- package/esm2020/resizable/src/resize-glyph/resize-glyph.directive.mjs +0 -219
- package/esm2020/scheduler/src/components/resource-group-presenter/resource-group-presenter.component.mjs +0 -85
- package/esm2020/scheduler/src/components/scheduler/scheduler.component.mjs +0 -539
- package/esm2020/scheduler/src/pipes/bs-seconds-timespan.pipe/bs-seconds-timespan.pipe.mjs +0 -16
- package/esm2020/scheduler/src/pipes/bs-seconds-today-offset/bs-seconds-today-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/date-offset/date-offset.pipe.mjs +0 -20
- package/esm2020/scheduler/src/pipes/day-of-week/day-of-week.pipe.mjs +0 -22
- package/esm2020/scheduler/src/scheduler.module.mjs +0 -45
- package/esm2020/scheduler/src/services/timeline/timeline.service.mjs +0 -65
- package/esm2020/scrollspy/src/component/scrollspy.component.mjs +0 -90
- package/esm2020/scrollspy/src/directives/scrollspy.directive.mjs +0 -16
- package/esm2020/scrollspy/src/scrollspy.module.mjs +0 -29
- package/esm2020/scrollspy/src/services/scroll-offset/scroll-offset.service.mjs +0 -31
- package/esm2020/select/src/component/select.component.mjs +0 -85
- package/esm2020/select/src/select.module.mjs +0 -31
- package/esm2020/select/src/value-accessors/select-value-accessor.mjs +0 -167
- package/esm2020/select2/src/component/select2.component.mjs +0 -85
- package/esm2020/select2/src/directive/item-template.directive.mjs +0 -19
- package/esm2020/select2/src/select2.module.mjs +0 -49
- package/esm2020/snackbar/src/component/snackbar.component.mjs +0 -36
- package/esm2020/snackbar/src/directives/snackbar-close/snackbar-close.directive.mjs +0 -27
- package/esm2020/snackbar/src/service/snackbar.service.mjs +0 -45
- package/esm2020/snackbar/src/snackbar.module.mjs +0 -43
- package/esm2020/spinner/src/spinner.component.mjs +0 -43
- package/esm2020/spinner/src/spinner.module.mjs +0 -18
- package/esm2020/splitter/src/element-at/element-at.pipe.mjs +0 -21
- package/esm2020/splitter/src/split-panel/split-panel.component.mjs +0 -18
- package/esm2020/splitter/src/splitter/splitter.component.mjs +0 -206
- package/esm2020/splitter/src/splitter.module.mjs +0 -23
- package/esm2020/tab-control/src/tab-control/tab-control.component.mjs +0 -132
- package/esm2020/tab-control/src/tab-control.module.mjs +0 -46
- package/esm2020/tab-control/src/tab-page/tab-page.component.mjs +0 -30
- package/esm2020/tab-control/src/tab-page-header/tab-page-header.directive.mjs +0 -16
- package/esm2020/table/src/component/table.component.mjs +0 -47
- package/esm2020/table/src/table.module.mjs +0 -18
- package/esm2020/timepicker/src/timepicker.component.mjs +0 -117
- package/esm2020/timepicker/src/timepicker.module.mjs +0 -60
- package/esm2020/toast/src/components/toast/toast.component.mjs +0 -16
- package/esm2020/toast/src/components/toast-body/toast-body.component.mjs +0 -20
- package/esm2020/toast/src/components/toast-container/toast-container.component.mjs +0 -23
- package/esm2020/toast/src/components/toast-header/toast-header.component.mjs +0 -17
- package/esm2020/toast/src/directives/toast-close/toast-close.directive.mjs +0 -32
- package/esm2020/toast/src/pipes/add-properties.pipe.mjs +0 -17
- package/esm2020/toast/src/services/toast/toast.service.mjs +0 -56
- package/esm2020/toast/src/toast.module.mjs +0 -77
- package/esm2020/toggle-button/src/component/toggle-button.component.mjs +0 -158
- package/esm2020/toggle-button/src/directives/toggle-button-group/toggle-button-group.directive.mjs +0 -19
- package/esm2020/toggle-button/src/toggle-button.module.mjs +0 -34
- package/esm2020/toggle-button/src/value-accessor/toggle-button-value-accessor.mjs +0 -108
- package/esm2020/tooltip/src/component/tooltip.component.mjs +0 -38
- package/esm2020/tooltip/src/directive/tooltip.directive.mjs +0 -109
- package/esm2020/tooltip/src/tooltip.module.mjs +0 -35
- package/esm2020/treeview/src/treeview/treeview.component.mjs +0 -46
- package/esm2020/treeview/src/treeview-item/treeview-item.component.mjs +0 -27
- package/esm2020/treeview/src/treeview.module.mjs +0 -21
- package/esm2020/typeahead/src/typeahead.component.mjs +0 -82
- package/esm2020/typeahead/src/typeahead.module.mjs +0 -48
- package/esm2020/user-agent/src/directive/user-agent.directive.mjs +0 -98
- package/esm2020/user-agent/src/user-agent.module.mjs +0 -24
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2015/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2015/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2015/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2015/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2015/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs +0 -178
- package/fesm2015/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2015/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs +0 -196
- package/fesm2015/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2015/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs +0 -123
- package/fesm2015/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs +0 -75
- package/fesm2015/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs +0 -171
- package/fesm2015/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs +0 -593
- package/fesm2015/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs +0 -248
- package/fesm2015/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2015/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2015/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2015/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs +0 -43
- package/fesm2015/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2015/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2015/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2015/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs +0 -222
- package/fesm2015/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2015/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2015/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2015/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs +0 -263
- package/fesm2015/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2015/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs +0 -735
- package/fesm2015/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -148
- package/fesm2015/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs +0 -50
- package/fesm2015/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs +0 -456
- package/fesm2015/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2015/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2015/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2015/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs +0 -261
- package/fesm2015/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2015/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2015/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2015/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs +0 -338
- package/fesm2015/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2015/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs +0 -166
- package/fesm2015/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs +0 -284
- package/fesm2015/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2015/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs +0 -147
- package/fesm2015/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2015/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2015/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2015/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2015/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2015/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs +0 -238
- package/fesm2015/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2015/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs +0 -185
- package/fesm2015/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs +0 -93
- package/fesm2015/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2015/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs +0 -127
- package/fesm2015/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2015/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2015/mintplayer-ng-bootstrap.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-accordion.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-alert.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs +0 -52
- package/fesm2020/mintplayer-ng-bootstrap-badge.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -51
- package/fesm2020/mintplayer-ng-bootstrap-breadcrumb.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs +0 -35
- package/fesm2020/mintplayer-ng-bootstrap-button-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs +0 -58
- package/fesm2020/mintplayer-ng-bootstrap-button-type.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-calendar-month.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs +0 -153
- package/fesm2020/mintplayer-ng-bootstrap-calendar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-card.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs +0 -194
- package/fesm2020/mintplayer-ng-bootstrap-carousel.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs +0 -43
- package/fesm2020/mintplayer-ng-bootstrap-close.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs +0 -73
- package/fesm2020/mintplayer-ng-bootstrap-code-snippet.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs +0 -121
- package/fesm2020/mintplayer-ng-bootstrap-context-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs +0 -72
- package/fesm2020/mintplayer-ng-bootstrap-copy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs +0 -172
- package/fesm2020/mintplayer-ng-bootstrap-datatable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs +0 -93
- package/fesm2020/mintplayer-ng-bootstrap-datepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs +0 -590
- package/fesm2020/mintplayer-ng-bootstrap-dock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-divider.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -87
- package/fesm2020/mintplayer-ng-bootstrap-dropdown-menu.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs +0 -243
- package/fesm2020/mintplayer-ng-bootstrap-dropdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -85
- package/fesm2020/mintplayer-ng-bootstrap-enhanced-paste.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs +0 -38
- package/fesm2020/mintplayer-ng-bootstrap-enum.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs +0 -175
- package/fesm2020/mintplayer-ng-bootstrap-file-upload.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs +0 -41
- package/fesm2020/mintplayer-ng-bootstrap-floating-labels.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-for.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs +0 -76
- package/fesm2020/mintplayer-ng-bootstrap-form.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs +0 -141
- package/fesm2020/mintplayer-ng-bootstrap-grid.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-has-overlay.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-icon.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs +0 -33
- package/fesm2020/mintplayer-ng-bootstrap-input-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs +0 -218
- package/fesm2020/mintplayer-ng-bootstrap-instance-of.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -60
- package/fesm2020/mintplayer-ng-bootstrap-lazy-loading.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs +0 -66
- package/fesm2020/mintplayer-ng-bootstrap-let.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs +0 -63
- package/fesm2020/mintplayer-ng-bootstrap-list-group.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs +0 -147
- package/fesm2020/mintplayer-ng-bootstrap-markdown.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs +0 -259
- package/fesm2020/mintplayer-ng-bootstrap-modal.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs +0 -151
- package/fesm2020/mintplayer-ng-bootstrap-multiselect.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs +0 -724
- package/fesm2020/mintplayer-ng-bootstrap-navbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -145
- package/fesm2020/mintplayer-ng-bootstrap-navigation-lock.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs +0 -48
- package/fesm2020/mintplayer-ng-bootstrap-no-noscript.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs +0 -452
- package/fesm2020/mintplayer-ng-bootstrap-offcanvas.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -56
- package/fesm2020/mintplayer-ng-bootstrap-ordinal-number.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs +0 -229
- package/fesm2020/mintplayer-ng-bootstrap-pagination.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs +0 -89
- package/fesm2020/mintplayer-ng-bootstrap-placeholder.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs +0 -256
- package/fesm2020/mintplayer-ng-bootstrap-popover.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs +0 -182
- package/fesm2020/mintplayer-ng-bootstrap-progress-bar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs +0 -105
- package/fesm2020/mintplayer-ng-bootstrap-range.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs +0 -103
- package/fesm2020/mintplayer-ng-bootstrap-rating.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs +0 -346
- package/fesm2020/mintplayer-ng-bootstrap-resizable.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs +0 -813
- package/fesm2020/mintplayer-ng-bootstrap-scheduler.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs +0 -161
- package/fesm2020/mintplayer-ng-bootstrap-scrollspy.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs +0 -282
- package/fesm2020/mintplayer-ng-bootstrap-select.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs +0 -152
- package/fesm2020/mintplayer-ng-bootstrap-select2.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap-snackbar.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs +0 -65
- package/fesm2020/mintplayer-ng-bootstrap-spinner.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs +0 -268
- package/fesm2020/mintplayer-ng-bootstrap-splitter.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs +0 -214
- package/fesm2020/mintplayer-ng-bootstrap-tab-control.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs +0 -69
- package/fesm2020/mintplayer-ng-bootstrap-table.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-timepicker.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs +0 -236
- package/fesm2020/mintplayer-ng-bootstrap-toast.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs +0 -313
- package/fesm2020/mintplayer-ng-bootstrap-toggle-button.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs +0 -181
- package/fesm2020/mintplayer-ng-bootstrap-tooltip.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs +0 -91
- package/fesm2020/mintplayer-ng-bootstrap-treeview.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs +0 -134
- package/fesm2020/mintplayer-ng-bootstrap-typeahead.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs +0 -125
- package/fesm2020/mintplayer-ng-bootstrap-user-agent.mjs.map +0 -1
- package/fesm2020/mintplayer-ng-bootstrap.mjs +0 -144
- package/fesm2020/mintplayer-ng-bootstrap.mjs.map +0 -1
- /package/{esm2020 → esm2022}/accordion/index.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/mintplayer-ng-bootstrap-accordion.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/mintplayer-ng-bootstrap-alert.mjs +0 -0
- /package/{esm2020 → esm2022}/alert/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/index.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/mintplayer-ng-bootstrap-badge.mjs +0 -0
- /package/{esm2020 → esm2022}/badge/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/index.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/mintplayer-ng-bootstrap-breadcrumb.mjs +0 -0
- /package/{esm2020 → esm2022}/breadcrumb/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/mintplayer-ng-bootstrap-button-group.mjs +0 -0
- /package/{esm2020 → esm2022}/button-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/index.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/mintplayer-ng-bootstrap-button-type.mjs +0 -0
- /package/{esm2020 → esm2022}/button-type/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/mintplayer-ng-bootstrap-calendar.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/mintplayer-ng-bootstrap-calendar-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/date-day-of-month.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/first-and-last-date.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/week.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/interfaces/weekday.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/month-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar-month/src/pipes/weekday-name/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/index.mjs +0 -0
- /package/{esm2020 → esm2022}/card/mintplayer-ng-bootstrap-card.mjs +0 -0
- /package/{esm2020 → esm2022}/card/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/index.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/mintplayer-ng-bootstrap-carousel.mjs +0 -0
- /package/{esm2020 → esm2022}/carousel/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/index.mjs +0 -0
- /package/{esm2020 → esm2022}/close/mintplayer-ng-bootstrap-close.mjs +0 -0
- /package/{esm2020 → esm2022}/close/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/mintplayer-ng-bootstrap-code-snippet.mjs +0 -0
- /package/{esm2020 → esm2022}/code-snippet/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/mintplayer-ng-bootstrap-context-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/context-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/mintplayer-ng-bootstrap-copy.mjs +0 -0
- /package/{esm2020 → esm2022}/copy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/mintplayer-ng-bootstrap-datatable.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/datatable-column-metadata.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-column/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/datatable-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/datatable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/mintplayer-ng-bootstrap-datepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/datepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/mintplayer-ng-bootstrap-dock.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/enums/pane-type.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/dock-layout.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/remove-from-pane-result.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/interfaces/size.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/content-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/dock-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/document-host-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/floating-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/split-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/panes/tab-group-pane.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dock/src/types/split-pane-orientation.type.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/mintplayer-ng-bootstrap-dropdown.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/mintplayer-ng-bootstrap-dropdown-divider.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-divider/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/index.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/mintplayer-ng-bootstrap-dropdown-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown-menu/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/mintplayer-ng-bootstrap-enhanced-paste.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enhanced-paste/src/interfaces/number-overflow.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/mintplayer-ng-bootstrap-enum.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/enum-item.mjs +0 -0
- /package/{esm2020 → esm2022}/enum/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/mintplayer-ng-bootstrap-file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/file-upload.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/file-upload/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/index.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/mintplayer-ng-bootstrap-floating-labels.mjs +0 -0
- /package/{esm2020 → esm2022}/floating-labels/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/index.mjs +0 -0
- /package/{esm2020 → esm2022}/for/mintplayer-ng-bootstrap-for.mjs +0 -0
- /package/{esm2020 → esm2022}/for/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/index.mjs +0 -0
- /package/{esm2020 → esm2022}/form/mintplayer-ng-bootstrap-form.mjs +0 -0
- /package/{esm2020 → esm2022}/form/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/mintplayer-ng-bootstrap-grid.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/column-definition.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/index.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/mintplayer-ng-bootstrap-has-overlay.mjs +0 -0
- /package/{esm2020 → esm2022}/has-overlay/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/index.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/mintplayer-ng-bootstrap-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/mintplayer-ng-bootstrap-input-group.mjs +0 -0
- /package/{esm2020 → esm2022}/input-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/mintplayer-ng-bootstrap-instance-of.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/directives/switch-view.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/interfaces/instance-of-context.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/abstract.type.mjs +0 -0
- /package/{esm2020 → esm2022}/instance-of/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/mintplayer-ng-bootstrap-lazy-loading.mjs +0 -0
- /package/{esm2020 → esm2022}/lazy-loading/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/let/interfaces/let-context.mjs +0 -0
- /package/{esm2020 → esm2022}/let/mintplayer-ng-bootstrap-let.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/color.enum.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/font-color/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/in-list/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/pipes/uc-first/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/development.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/breakpoint.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/position.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/size.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/types/view-state.type.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/mintplayer-ng-bootstrap-list-group.mjs +0 -0
- /package/{esm2020 → esm2022}/list-group/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/index.mjs +0 -0
- /package/{esm2020 → esm2022}/markdown/mintplayer-ng-bootstrap-markdown.mjs +0 -0
- /package/{esm2020 → esm2022}/mintplayer-ng-bootstrap.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/mintplayer-ng-bootstrap-modal.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/modal-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/mintplayer-ng-bootstrap-multiselect.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/multiselect/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/mintplayer-ng-bootstrap-navbar.mjs +0 -0
- /package/{esm2020 → esm2022}/navbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/mintplayer-ng-bootstrap-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/navigation-lock/src/interface/has-navigation-lock.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/index.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/mintplayer-ng-bootstrap-no-noscript.mjs +0 -0
- /package/{esm2020 → esm2022}/no-noscript/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/mintplayer-ng-bootstrap-offcanvas.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/offcanvas-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/offcanvas/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/index.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/mintplayer-ng-bootstrap-ordinal-number.mjs +0 -0
- /package/{esm2020 → esm2022}/ordinal-number/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/mintplayer-ng-bootstrap-pagination.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/component/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/interfaces/page-with-selection.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/pagination/src/types/page-number.type.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/index.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/mintplayer-ng-bootstrap-placeholder.mjs +0 -0
- /package/{esm2020 → esm2022}/placeholder/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/mintplayer-ng-bootstrap-popover.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/popover-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/mintplayer-ng-bootstrap-progress-bar.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-bar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/index.mjs +0 -0
- /package/{esm2020 → esm2022}/range/mintplayer-ng-bootstrap-range.mjs +0 -0
- /package/{esm2020 → esm2022}/range/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/index.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/mintplayer-ng-bootstrap-rating.mjs +0 -0
- /package/{esm2020 → esm2022}/rating/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/mintplayer-ng-bootstrap-resizable.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/pointer-data.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/preset-position.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/interfaces/resize-action.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/providers/resizable.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/resizable/src/types/positioning.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/mintplayer-ng-bootstrap-scheduler.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/available-scales.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/constants/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/enums/scheduler-mode.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/preview-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource-or-group.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/resource.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-part.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event-with-parts.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-event.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-schale.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/scheduler-stamp-with-slots.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/time-slot.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/timeline-track.mjs +0 -0
- /package/{esm2020 → esm2022}/scheduler/src/interfaces/week-options.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/mintplayer-ng-bootstrap-scrollspy.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/scrollspy/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/mintplayer-ng-bootstrap-select.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/types/select-size.mjs +0 -0
- /package/{esm2020 → esm2022}/select/src/value-accessors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/index.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/mintplayer-ng-bootstrap-select2.mjs +0 -0
- /package/{esm2020 → esm2022}/select2/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/mintplayer-ng-bootstrap-snackbar.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/interfaces/snackbar-animation-meta.mjs +0 -0
- /package/{esm2020 → esm2022}/snackbar/src/providers/snackbar-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/index.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/mintplayer-ng-bootstrap-spinner.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/mintplayer-ng-bootstrap-splitter.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/drag-operation.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/interfaces/point.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/direction.type.mjs +0 -0
- /package/{esm2020 → esm2022}/splitter/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/mintplayer-ng-bootstrap-tab-control.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-control/src/tabs-position.mjs +0 -0
- /package/{esm2020 → esm2022}/table/index.mjs +0 -0
- /package/{esm2020 → esm2022}/table/mintplayer-ng-bootstrap-table.mjs +0 -0
- /package/{esm2020 → esm2022}/table/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/mintplayer-ng-bootstrap-timepicker.mjs +0 -0
- /package/{esm2020 → esm2022}/timepicker/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/mintplayer-ng-bootstrap-toast.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/providers/portal-factory.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/src/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/mintplayer-ng-bootstrap-toggle-button.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/check-style.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/mintplayer-ng-bootstrap-tooltip.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/tooltip/src/providers/tooltip-content.provider.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/index.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/mintplayer-ng-bootstrap-treeview.mjs +0 -0
- /package/{esm2020 → esm2022}/treeview/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/index.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/mintplayer-ng-bootstrap-typeahead.mjs +0 -0
- /package/{esm2020 → esm2022}/typeahead/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/mintplayer-ng-bootstrap-user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/directive/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/interfaces/user-agent.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/index.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/operating-system.type.mjs +0 -0
- /package/{esm2020 → esm2022}/user-agent/src/types/webbrowser.type.mjs +0 -0
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Injectable, Pipe, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class BsCalendarMonthService {
|
|
6
|
+
getWeeks(month) {
|
|
7
|
+
const firstAndLast = this.getFirstAndLastDayOfMonth(month);
|
|
8
|
+
const firstOfMonth = this.getMondayBefore(firstAndLast.first);
|
|
9
|
+
const lastOfMonth = this.getSundayAfter(firstAndLast.last);
|
|
10
|
+
const days = this.dateDiff(firstOfMonth, lastOfMonth) + 1;
|
|
11
|
+
const firstDayOffset = (firstAndLast.first.getDay() + 7 - 1) % 7;
|
|
12
|
+
const allDays = this.generateList(days).map(d => d - firstDayOffset).map(d => {
|
|
13
|
+
const wrongDate = new Date(firstAndLast.first.getFullYear(), firstAndLast.first.getMonth(), firstAndLast.first.getDate() + d);
|
|
14
|
+
const correctDate = new Date(wrongDate.getFullYear(), wrongDate.getMonth(), wrongDate.getDate());
|
|
15
|
+
return {
|
|
16
|
+
date: correctDate,
|
|
17
|
+
dayOfMonth: correctDate.getDate(),
|
|
18
|
+
isInMonth: (correctDate.getFullYear() === month.getFullYear()) && (correctDate.getMonth() === month.getMonth())
|
|
19
|
+
};
|
|
20
|
+
});
|
|
21
|
+
const weeks = this.chunk(allDays, 7);
|
|
22
|
+
const weeksMapped = weeks.map((w, i) => ({
|
|
23
|
+
number: this.weekOfYear(new Date(month.getFullYear(), month.getMonth(), w.find(d => d.isInMonth)?.dayOfMonth)),
|
|
24
|
+
days: w
|
|
25
|
+
}));
|
|
26
|
+
return weeksMapped;
|
|
27
|
+
}
|
|
28
|
+
generateList(count) {
|
|
29
|
+
return [...Array(count).keys()];
|
|
30
|
+
}
|
|
31
|
+
dayOfWeekMondayBased(date) {
|
|
32
|
+
const d = date.getDay() - 1;
|
|
33
|
+
if (d < 0) {
|
|
34
|
+
return 6;
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
return d;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
weekOfYear(date) {
|
|
41
|
+
const dateClone = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate()));
|
|
42
|
+
dateClone.setUTCDate(dateClone.getUTCDate() + 4 - (dateClone.getUTCDay() || 7));
|
|
43
|
+
const yearStart = new Date(Date.UTC(dateClone.getUTCFullYear(), 0, 1));
|
|
44
|
+
const utcDiff = this.toUTC(dateClone) - this.toUTC(yearStart);
|
|
45
|
+
return Math.ceil((utcDiff / (1000 * 60 * 60 * 24) + 1) / 7);
|
|
46
|
+
}
|
|
47
|
+
getFirstAndLastDayOfMonth(date) {
|
|
48
|
+
const first = new Date(date.getFullYear(), date.getMonth(), 1);
|
|
49
|
+
const last = new Date(date.getFullYear(), date.getMonth() + 1, 0);
|
|
50
|
+
return { first, last };
|
|
51
|
+
}
|
|
52
|
+
dateDiff(date1, date2) {
|
|
53
|
+
const utc1 = this.toUTC(date1);
|
|
54
|
+
const utc2 = this.toUTC(date2);
|
|
55
|
+
const msPerDay = 1000 * 60 * 60 * 24;
|
|
56
|
+
return Math.floor((utc2 - utc1) / msPerDay);
|
|
57
|
+
}
|
|
58
|
+
dayOfYear(date) {
|
|
59
|
+
const start = new Date(date.getFullYear(), 0, 0);
|
|
60
|
+
return this.dateDiff(start, date);
|
|
61
|
+
}
|
|
62
|
+
toUTC(date) {
|
|
63
|
+
return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());
|
|
64
|
+
}
|
|
65
|
+
chunk(items, size) {
|
|
66
|
+
const result = [];
|
|
67
|
+
for (let i = 0; i < items.length; i += size) {
|
|
68
|
+
result.push(items.slice(i, i + size));
|
|
69
|
+
}
|
|
70
|
+
return result;
|
|
71
|
+
}
|
|
72
|
+
getMondayBefore(date) {
|
|
73
|
+
const day = date.getDay(), diff = date.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday
|
|
74
|
+
const monday = new Date(date);
|
|
75
|
+
monday.setDate(diff);
|
|
76
|
+
return monday;
|
|
77
|
+
}
|
|
78
|
+
getSundayAfter(date) {
|
|
79
|
+
const day = date.getDay();
|
|
80
|
+
const sunday = new Date(date);
|
|
81
|
+
if (day !== 0) {
|
|
82
|
+
const diff = date.getDate() + 7 - day;
|
|
83
|
+
sunday.setDate(diff);
|
|
84
|
+
}
|
|
85
|
+
return sunday;
|
|
86
|
+
}
|
|
87
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarMonthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
88
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarMonthService, providedIn: 'root' }); }
|
|
89
|
+
}
|
|
90
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarMonthService, decorators: [{
|
|
91
|
+
type: Injectable,
|
|
92
|
+
args: [{
|
|
93
|
+
providedIn: 'root'
|
|
94
|
+
}]
|
|
95
|
+
}] });
|
|
96
|
+
|
|
97
|
+
class MonthNamePipe {
|
|
98
|
+
transform(date, ...args) {
|
|
99
|
+
if (date) {
|
|
100
|
+
return date.toLocaleString("default", { month: 'long' });
|
|
101
|
+
}
|
|
102
|
+
else {
|
|
103
|
+
return '';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: MonthNamePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
107
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: MonthNamePipe, name: "monthName" }); }
|
|
108
|
+
}
|
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: MonthNamePipe, decorators: [{
|
|
110
|
+
type: Pipe,
|
|
111
|
+
args: [{
|
|
112
|
+
name: 'monthName'
|
|
113
|
+
}]
|
|
114
|
+
}] });
|
|
115
|
+
|
|
116
|
+
class BsMonthNamePipeModule {
|
|
117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMonthNamePipeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
118
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsMonthNamePipeModule, declarations: [MonthNamePipe], imports: [CommonModule], exports: [MonthNamePipe] }); }
|
|
119
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMonthNamePipeModule, imports: [CommonModule] }); }
|
|
120
|
+
}
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsMonthNamePipeModule, decorators: [{
|
|
122
|
+
type: NgModule,
|
|
123
|
+
args: [{
|
|
124
|
+
declarations: [
|
|
125
|
+
MonthNamePipe
|
|
126
|
+
],
|
|
127
|
+
imports: [
|
|
128
|
+
CommonModule
|
|
129
|
+
],
|
|
130
|
+
exports: [
|
|
131
|
+
MonthNamePipe
|
|
132
|
+
]
|
|
133
|
+
}]
|
|
134
|
+
}] });
|
|
135
|
+
|
|
136
|
+
class WeekdayNamePipe {
|
|
137
|
+
transform(date, ...args) {
|
|
138
|
+
return date.toLocaleString("default", { weekday: 'short' });
|
|
139
|
+
}
|
|
140
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: WeekdayNamePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
141
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: WeekdayNamePipe, name: "weekdayName" }); }
|
|
142
|
+
}
|
|
143
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: WeekdayNamePipe, decorators: [{
|
|
144
|
+
type: Pipe,
|
|
145
|
+
args: [{
|
|
146
|
+
name: 'weekdayName'
|
|
147
|
+
}]
|
|
148
|
+
}] });
|
|
149
|
+
|
|
150
|
+
class BsWeekdayNameModule {
|
|
151
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsWeekdayNameModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
152
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsWeekdayNameModule, declarations: [WeekdayNamePipe], imports: [CommonModule], exports: [WeekdayNamePipe] }); }
|
|
153
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsWeekdayNameModule, imports: [CommonModule] }); }
|
|
154
|
+
}
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsWeekdayNameModule, decorators: [{
|
|
156
|
+
type: NgModule,
|
|
157
|
+
args: [{
|
|
158
|
+
declarations: [
|
|
159
|
+
WeekdayNamePipe
|
|
160
|
+
],
|
|
161
|
+
imports: [
|
|
162
|
+
CommonModule
|
|
163
|
+
],
|
|
164
|
+
exports: [
|
|
165
|
+
WeekdayNamePipe
|
|
166
|
+
]
|
|
167
|
+
}]
|
|
168
|
+
}] });
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Generated bundle index. Do not edit.
|
|
172
|
+
*/
|
|
173
|
+
|
|
174
|
+
export { BsCalendarMonthService, BsMonthNamePipeModule, BsWeekdayNameModule, MonthNamePipe, WeekdayNamePipe };
|
|
175
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-calendar-month.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-calendar-month.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/calendar-month/src/service/calendar-month.service.ts","../../../../libs/mintplayer-ng-bootstrap/calendar-month/src/pipes/month-name/month-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/calendar-month/src/pipes/month-name/month-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/calendar-month/src/pipes/weekday-name/weekday-name.pipe.ts","../../../../libs/mintplayer-ng-bootstrap/calendar-month/src/pipes/weekday-name/weekday-name.module.ts","../../../../libs/mintplayer-ng-bootstrap/calendar-month/mintplayer-ng-bootstrap-calendar-month.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\nimport { Week } from '../interfaces/week';\nimport { FirstAndLastDate } from '../interfaces/first-and-last-date';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BsCalendarMonthService {\n\n public getWeeks(month: Date) {\n const firstAndLast = this.getFirstAndLastDayOfMonth(month);\n const firstOfMonth = this.getMondayBefore(firstAndLast.first);\n const lastOfMonth = this.getSundayAfter(firstAndLast.last);\n const days = this.dateDiff(firstOfMonth, lastOfMonth) + 1;\n const firstDayOffset = (firstAndLast.first.getDay() + 7 - 1) % 7;\n const allDays = this.generateList(days).map(d => d - firstDayOffset).map(d => {\n const wrongDate = new Date(firstAndLast.first.getFullYear(), firstAndLast.first.getMonth(), firstAndLast.first.getDate() + d);\n const correctDate = new Date(wrongDate.getFullYear(), wrongDate.getMonth(), wrongDate.getDate());\n return {\n date: correctDate,\n dayOfMonth: correctDate.getDate(),\n isInMonth: (correctDate.getFullYear() === month.getFullYear()) && (correctDate.getMonth() === month.getMonth())\n };\n });\n const weeks = this.chunk(allDays, 7);\n const weeksMapped = weeks.map<Week>((w, i) => ({\n number: this.weekOfYear(new Date(month.getFullYear(), month.getMonth(), w.find(d => d.isInMonth)?.dayOfMonth)),\n days: w\n }));\n return weeksMapped;\n }\n \n generateList(count: number) {\n return [...Array(count).keys()];\n }\n\n dayOfWeekMondayBased(date: Date) {\n const d = date.getDay() - 1;\n if (d < 0) {\n return 6;\n } else {\n return d;\n }\n }\n\n weekOfYear(date: Date) {\n const dateClone = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate()));\n dateClone.setUTCDate(dateClone.getUTCDate() + 4 - (dateClone.getUTCDay() || 7));\n const yearStart = new Date(Date.UTC(dateClone.getUTCFullYear(), 0, 1));\n const utcDiff = this.toUTC(dateClone) - this.toUTC(yearStart);\n return Math.ceil((utcDiff / (1000 * 60 * 60 * 24) + 1) / 7);\n }\n\n getFirstAndLastDayOfMonth(date: Date) {\n const first = new Date(date.getFullYear(), date.getMonth(), 1);\n const last = new Date(date.getFullYear(), date.getMonth() + 1, 0);\n return <FirstAndLastDate>{ first, last };\n }\n\n dateDiff(date1: Date, date2: Date) {\n const utc1 = this.toUTC(date1);\n const utc2 = this.toUTC(date2);\n const msPerDay = 1000 * 60 * 60 * 24;\n return Math.floor((utc2 - utc1) / msPerDay);\n }\n\n dayOfYear(date: Date) {\n const start = new Date(date.getFullYear(), 0, 0);\n return this.dateDiff(start, date);\n }\n\n toUTC(date: Date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate());\n }\n\n chunk<T>(items: T[], size: number) {\n const result: T[][] = [];\n for (let i = 0; i < items.length; i += size) {\n result.push(items.slice(i, i + size));\n }\n return result;\n }\n\n getMondayBefore(date: Date) {\n const day = date.getDay(), diff = date.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday\n const monday = new Date(date);\n monday.setDate(diff);\n return monday;\n }\n\n getSundayAfter(date: Date) {\n const day = date.getDay();\n const sunday = new Date(date);\n if (day !== 0) {\n const diff = date.getDate() + 7 - day;\n sunday.setDate(diff);\n }\n return sunday;\n }\n}","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'monthName'\n})\nexport class MonthNamePipe implements PipeTransform {\n\n transform(date: Date | null, ...args: any[]) {\n if (date) {\n return date.toLocaleString(\"default\", { month: 'long' });\n } else {\n return '';\n }\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { MonthNamePipe } from './month-name.pipe';\n\n@NgModule({\n declarations: [\n MonthNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n MonthNamePipe\n ]\n})\nexport class BsMonthNamePipeModule { }\n","import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({\n name: 'weekdayName'\n})\nexport class WeekdayNamePipe implements PipeTransform {\n\n transform(date: Date, ...args: any[]): unknown {\n return date.toLocaleString(\"default\", { weekday: 'short' });\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { WeekdayNamePipe } from './weekday-name.pipe';\n\n\n\n@NgModule({\n declarations: [\n WeekdayNamePipe\n ],\n imports: [\n CommonModule\n ],\n exports: [\n WeekdayNamePipe\n ]\n})\nexport class BsWeekdayNameModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { EventEmitter, Component, Output, Input, NgModule } from '@angular/core';
|
|
3
|
+
import * as i2 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import { Subject, BehaviorSubject, map, takeUntil, filter, take } from 'rxjs';
|
|
6
|
+
import * as i1 from '@mintplayer/ng-bootstrap/calendar-month';
|
|
7
|
+
import { BsMonthNamePipeModule, BsWeekdayNameModule } from '@mintplayer/ng-bootstrap/calendar-month';
|
|
8
|
+
import * as i3 from '@mintplayer/ng-bootstrap/icon';
|
|
9
|
+
import { BsIconModule } from '@mintplayer/ng-bootstrap/icon';
|
|
10
|
+
import * as i4 from '@mintplayer/ng-bootstrap';
|
|
11
|
+
import { BsUcFirstPipeModule } from '@mintplayer/ng-bootstrap';
|
|
12
|
+
|
|
13
|
+
class BsCalendarComponent {
|
|
14
|
+
constructor(calendarMonthService) {
|
|
15
|
+
this.calendarMonthService = calendarMonthService;
|
|
16
|
+
this.destroyed$ = new Subject();
|
|
17
|
+
//#region CurrentMonth
|
|
18
|
+
this.currentMonth$ = new BehaviorSubject(new Date());
|
|
19
|
+
this.currentMonthChange = new EventEmitter();
|
|
20
|
+
//#endregion
|
|
21
|
+
//#region SelectedDate
|
|
22
|
+
this.selectedDate$ = new BehaviorSubject(new Date());
|
|
23
|
+
this.selectedDateChange = new EventEmitter();
|
|
24
|
+
this.weeks$ = this.currentMonth$
|
|
25
|
+
.pipe(map((month) => this.calendarMonthService.getWeeks(month)))
|
|
26
|
+
.pipe(takeUntil(this.destroyed$));
|
|
27
|
+
this.shownDays$ = this.weeks$
|
|
28
|
+
.pipe(filter((weeks) => weeks.length > 1))
|
|
29
|
+
.pipe(map((weeks) => weeks[1].days))
|
|
30
|
+
.pipe(map((days) => {
|
|
31
|
+
const firstDay = days[0];
|
|
32
|
+
if (firstDay) {
|
|
33
|
+
return days.map((d) => {
|
|
34
|
+
const date = new Date(firstDay.date.getFullYear(), firstDay.date.getMonth(), d?.dayOfMonth);
|
|
35
|
+
return {
|
|
36
|
+
short: date.toLocaleString('default', { weekday: 'short' }),
|
|
37
|
+
long: date.toLocaleString('default', { weekday: 'long' })
|
|
38
|
+
};
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
return [];
|
|
43
|
+
}
|
|
44
|
+
}));
|
|
45
|
+
this.selectedDate$.pipe(takeUntil(this.destroyed$)).subscribe((date) => {
|
|
46
|
+
this.selectedDateChange.emit(date);
|
|
47
|
+
});
|
|
48
|
+
this.currentMonth$.pipe(takeUntil(this.destroyed$)).subscribe((month) => {
|
|
49
|
+
this.currentMonthChange.emit(month);
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
get currentMonth() {
|
|
53
|
+
return this.currentMonth$.value;
|
|
54
|
+
}
|
|
55
|
+
set currentMonth(value) {
|
|
56
|
+
this.currentMonth$.next(value);
|
|
57
|
+
}
|
|
58
|
+
get selectedDate() {
|
|
59
|
+
return this.selectedDate$.value;
|
|
60
|
+
}
|
|
61
|
+
set selectedDate(value) {
|
|
62
|
+
this.selectedDate$.next(value);
|
|
63
|
+
}
|
|
64
|
+
//#endregion
|
|
65
|
+
ngOnDestroy() {
|
|
66
|
+
this.destroyed$.next(true);
|
|
67
|
+
}
|
|
68
|
+
previousMonth() {
|
|
69
|
+
this.currentMonth$.pipe(take(1)).subscribe((month) => {
|
|
70
|
+
this.currentMonth$.next(new Date(month.getFullYear(), month.getMonth() - 1, 1));
|
|
71
|
+
});
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
nextMonth() {
|
|
75
|
+
this.currentMonth$.pipe(take(1)).subscribe((month) => {
|
|
76
|
+
this.currentMonth$.next(new Date(month.getFullYear(), month.getMonth() + 1, 1));
|
|
77
|
+
});
|
|
78
|
+
return false;
|
|
79
|
+
}
|
|
80
|
+
isSameDate(date1, date2) {
|
|
81
|
+
if (date1 === null && date2 === null)
|
|
82
|
+
return true;
|
|
83
|
+
if (date1 === null || date2 === null)
|
|
84
|
+
return false;
|
|
85
|
+
return (date1.getFullYear() === date2.getFullYear() &&
|
|
86
|
+
date1.getMonth() === date2.getMonth() &&
|
|
87
|
+
date1.getDate() === date2.getDate());
|
|
88
|
+
}
|
|
89
|
+
goto(day) {
|
|
90
|
+
if (day) {
|
|
91
|
+
this.selectedDate$.next(day.date);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
trackByWeekDay(index, item) {
|
|
95
|
+
return item.long;
|
|
96
|
+
}
|
|
97
|
+
trackByWeek(index, item) {
|
|
98
|
+
return item.number;
|
|
99
|
+
}
|
|
100
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarComponent, deps: [{ token: i1.BsCalendarMonthService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
101
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: BsCalendarComponent, selector: "bs-calendar", inputs: { currentMonth: "currentMonth", selectedDate: "selectedDate" }, outputs: { currentMonthChange: "currentMonthChange", selectedDateChange: "selectedDateChange" }, ngImport: i0, template: "<table class=\"table w-auto mb-0\">\n <tr>\n <td>\n <button class=\"btn btn-default\" (click)=\"previousMonth()\">\n <bs-icon [icon]=\"'chevron-left'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n <td colspan=\"6\" class=\"fw-bolder\">\n {{ currentMonth$ | async | monthName | ucFirst }}\n {{ (currentMonth$ | async)?.getFullYear() }}\n </td>\n <td>\n <button class=\"btn btn-default border-bottom-0\" (click)=\"nextMonth()\">\n <bs-icon [icon]=\"'chevron-right'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n </tr>\n <tr>\n <th></th>\n <th *ngFor=\"let dayOfWeek of shownDays$ | async; trackBy: trackByWeekDay\" [title]=\"dayOfWeek.long\">\n {{ dayOfWeek.short }}\n </th>\n </tr>\n <tr *ngFor=\"let week of (weeks$ | async); trackBy: trackByWeek\">\n <th>\n {{ week.number }}\n </th>\n <td [class.selected]=\"day === null ? false : isSameDate(selectedDate$ | async, day.date)\" *ngFor=\"let day of week.days\" (click)=\"goto(day)\">\n <span *ngIf=\"day !== null\" [class.text-muted]=\"!day.isInMonth\">{{ day.dayOfMonth }}</span>\n </td>\n </tr>\n</table>", styles: [".text-muted{color:#9ea7af!important}table{border-collapse:collapse;border:1px solid rgba(0,0,0,.125);background:#fff}table td,table th{width:40px;height:40px;text-align:center}table td span,table th span{cursor:pointer;white-space:nowrap}table td.selected{background-color:#0d6efd;color:#fff}table th{background-color:#f8f9fa}table tr{border-top:none}table tr:first-child>td{border-bottom:1px solid rgba(0,0,0,.125)}table tr:nth-of-type(2)>th:not(:nth-of-type(1)){border-bottom:1px solid rgba(0,0,0,.125)}table tr:not(:nth-of-type(2))>th:nth-of-type(1){border-right:1px solid rgba(0,0,0,.125)}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3.BsIconComponent, selector: "bs-icon", inputs: ["icon"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "pipe", type: i4.UcFirstPipe, name: "ucFirst" }, { kind: "pipe", type: i1.MonthNamePipe, name: "monthName" }] }); }
|
|
102
|
+
}
|
|
103
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarComponent, decorators: [{
|
|
104
|
+
type: Component,
|
|
105
|
+
args: [{ selector: 'bs-calendar', template: "<table class=\"table w-auto mb-0\">\n <tr>\n <td>\n <button class=\"btn btn-default\" (click)=\"previousMonth()\">\n <bs-icon [icon]=\"'chevron-left'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n <td colspan=\"6\" class=\"fw-bolder\">\n {{ currentMonth$ | async | monthName | ucFirst }}\n {{ (currentMonth$ | async)?.getFullYear() }}\n </td>\n <td>\n <button class=\"btn btn-default border-bottom-0\" (click)=\"nextMonth()\">\n <bs-icon [icon]=\"'chevron-right'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n </tr>\n <tr>\n <th></th>\n <th *ngFor=\"let dayOfWeek of shownDays$ | async; trackBy: trackByWeekDay\" [title]=\"dayOfWeek.long\">\n {{ dayOfWeek.short }}\n </th>\n </tr>\n <tr *ngFor=\"let week of (weeks$ | async); trackBy: trackByWeek\">\n <th>\n {{ week.number }}\n </th>\n <td [class.selected]=\"day === null ? false : isSameDate(selectedDate$ | async, day.date)\" *ngFor=\"let day of week.days\" (click)=\"goto(day)\">\n <span *ngIf=\"day !== null\" [class.text-muted]=\"!day.isInMonth\">{{ day.dayOfMonth }}</span>\n </td>\n </tr>\n</table>", styles: [".text-muted{color:#9ea7af!important}table{border-collapse:collapse;border:1px solid rgba(0,0,0,.125);background:#fff}table td,table th{width:40px;height:40px;text-align:center}table td span,table th span{cursor:pointer;white-space:nowrap}table td.selected{background-color:#0d6efd;color:#fff}table th{background-color:#f8f9fa}table tr{border-top:none}table tr:first-child>td{border-bottom:1px solid rgba(0,0,0,.125)}table tr:nth-of-type(2)>th:not(:nth-of-type(1)){border-bottom:1px solid rgba(0,0,0,.125)}table tr:not(:nth-of-type(2))>th:nth-of-type(1){border-right:1px solid rgba(0,0,0,.125)}\n"] }]
|
|
106
|
+
}], ctorParameters: function () { return [{ type: i1.BsCalendarMonthService }]; }, propDecorators: { currentMonthChange: [{
|
|
107
|
+
type: Output
|
|
108
|
+
}], currentMonth: [{
|
|
109
|
+
type: Input
|
|
110
|
+
}], selectedDateChange: [{
|
|
111
|
+
type: Output
|
|
112
|
+
}], selectedDate: [{
|
|
113
|
+
type: Input
|
|
114
|
+
}] } });
|
|
115
|
+
|
|
116
|
+
class BsCalendarModule {
|
|
117
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
118
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarModule, declarations: [BsCalendarComponent], imports: [CommonModule,
|
|
119
|
+
BsIconModule,
|
|
120
|
+
BsUcFirstPipeModule,
|
|
121
|
+
BsMonthNamePipeModule,
|
|
122
|
+
BsWeekdayNameModule], exports: [BsCalendarComponent] }); }
|
|
123
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarModule, imports: [CommonModule,
|
|
124
|
+
BsIconModule,
|
|
125
|
+
BsUcFirstPipeModule,
|
|
126
|
+
BsMonthNamePipeModule,
|
|
127
|
+
BsWeekdayNameModule] }); }
|
|
128
|
+
}
|
|
129
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCalendarModule, decorators: [{
|
|
130
|
+
type: NgModule,
|
|
131
|
+
args: [{
|
|
132
|
+
declarations: [
|
|
133
|
+
BsCalendarComponent
|
|
134
|
+
],
|
|
135
|
+
imports: [
|
|
136
|
+
CommonModule,
|
|
137
|
+
BsIconModule,
|
|
138
|
+
BsUcFirstPipeModule,
|
|
139
|
+
BsMonthNamePipeModule,
|
|
140
|
+
BsWeekdayNameModule
|
|
141
|
+
],
|
|
142
|
+
exports: [
|
|
143
|
+
BsCalendarComponent
|
|
144
|
+
]
|
|
145
|
+
}]
|
|
146
|
+
}] });
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Generated bundle index. Do not edit.
|
|
150
|
+
*/
|
|
151
|
+
|
|
152
|
+
export { BsCalendarComponent, BsCalendarModule };
|
|
153
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-calendar.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-calendar.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/calendar/src/calendar.component.ts","../../../../libs/mintplayer-ng-bootstrap/calendar/src/calendar.component.html","../../../../libs/mintplayer-ng-bootstrap/calendar/src/calendar.module.ts","../../../../libs/mintplayer-ng-bootstrap/calendar/mintplayer-ng-bootstrap-calendar.ts"],"sourcesContent":["import { Component, EventEmitter, Input, OnDestroy, Output } from '@angular/core';\nimport { BehaviorSubject, filter, map, Observable, Subject, take, takeUntil } from 'rxjs';\nimport { BsCalendarMonthService, DateDayOfMonth, Week, WeekDay } from '@mintplayer/ng-bootstrap/calendar-month';\n\n@Component({\n selector: 'bs-calendar',\n templateUrl: './calendar.component.html',\n styleUrls: ['./calendar.component.scss'],\n})\nexport class BsCalendarComponent implements OnDestroy {\n constructor(private calendarMonthService: BsCalendarMonthService) {\n this.weeks$ = this.currentMonth$\n .pipe(map((month) => this.calendarMonthService.getWeeks(month)))\n .pipe(takeUntil(this.destroyed$));\n this.shownDays$ = this.weeks$\n .pipe(filter((weeks) => weeks.length > 1))\n .pipe(map((weeks) => weeks[1].days))\n .pipe(\n map((days) => {\n const firstDay = days[0];\n if (firstDay) {\n return days.map((d) => {\n const date = new Date(\n firstDay.date.getFullYear(),\n firstDay.date.getMonth(),\n d?.dayOfMonth\n );\n return <WeekDay>{\n short: date.toLocaleString('default', { weekday: 'short' }),\n long: date.toLocaleString('default', { weekday: 'long' })\n };\n });\n } else {\n return [];\n }\n })\n );\n this.selectedDate$.pipe(takeUntil(this.destroyed$)).subscribe((date) => {\n this.selectedDateChange.emit(date);\n });\n this.currentMonth$.pipe(takeUntil(this.destroyed$)).subscribe((month) => {\n this.currentMonthChange.emit(month);\n });\n }\n\n private destroyed$ = new Subject();\n weeks$: Observable<Week[]>;\n shownDays$: Observable<WeekDay[]>;\n\n //#region CurrentMonth\n currentMonth$ = new BehaviorSubject<Date>(new Date());\n @Output() public currentMonthChange = new EventEmitter<Date>();\n get currentMonth() {\n return this.currentMonth$.value;\n }\n @Input() set currentMonth(value: Date) {\n this.currentMonth$.next(value);\n }\n //#endregion\n //#region SelectedDate\n selectedDate$ = new BehaviorSubject<Date>(new Date());\n @Output() public selectedDateChange = new EventEmitter<Date>();\n get selectedDate() {\n return this.selectedDate$.value;\n }\n @Input() set selectedDate(value: Date) {\n this.selectedDate$.next(value);\n }\n //#endregion\n\n ngOnDestroy() {\n this.destroyed$.next(true);\n }\n\n previousMonth() {\n this.currentMonth$.pipe(take(1)).subscribe((month) => {\n this.currentMonth$.next(\n new Date(month.getFullYear(), month.getMonth() - 1, 1)\n );\n });\n\n return false;\n }\n\n nextMonth() {\n this.currentMonth$.pipe(take(1)).subscribe((month) => {\n this.currentMonth$.next(\n new Date(month.getFullYear(), month.getMonth() + 1, 1)\n );\n });\n\n return false;\n }\n\n isSameDate(date1: Date | null, date2: Date | null) {\n if (date1 === null && date2 === null) return true;\n if (date1 === null || date2 === null) return false;\n\n return (\n date1.getFullYear() === date2.getFullYear() &&\n date1.getMonth() === date2.getMonth() &&\n date1.getDate() === date2.getDate()\n );\n }\n\n goto(day: DateDayOfMonth | null) {\n if (day) {\n this.selectedDate$.next(day.date);\n }\n }\n \n trackByWeekDay(index: number, item: WeekDay) {\n return item.long;\n }\n\n trackByWeek(index: number, item: Week) {\n return item.number;\n }\n}\n","<table class=\"table w-auto mb-0\">\n <tr>\n <td>\n <button class=\"btn btn-default\" (click)=\"previousMonth()\">\n <bs-icon [icon]=\"'chevron-left'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n <td colspan=\"6\" class=\"fw-bolder\">\n {{ currentMonth$ | async | monthName | ucFirst }}\n {{ (currentMonth$ | async)?.getFullYear() }}\n </td>\n <td>\n <button class=\"btn btn-default border-bottom-0\" (click)=\"nextMonth()\">\n <bs-icon [icon]=\"'chevron-right'\" class=\"fw-bolder\"></bs-icon>\n </button>\n </td>\n </tr>\n <tr>\n <th></th>\n <th *ngFor=\"let dayOfWeek of shownDays$ | async; trackBy: trackByWeekDay\" [title]=\"dayOfWeek.long\">\n {{ dayOfWeek.short }}\n </th>\n </tr>\n <tr *ngFor=\"let week of (weeks$ | async); trackBy: trackByWeek\">\n <th>\n {{ week.number }}\n </th>\n <td [class.selected]=\"day === null ? false : isSameDate(selectedDate$ | async, day.date)\" *ngFor=\"let day of week.days\" (click)=\"goto(day)\">\n <span *ngIf=\"day !== null\" [class.text-muted]=\"!day.isInMonth\">{{ day.dayOfMonth }}</span>\n </td>\n </tr>\n</table>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCalendarComponent } from './calendar.component';\nimport { BsUcFirstPipeModule } from '@mintplayer/ng-bootstrap';\nimport { BsIconModule } from '@mintplayer/ng-bootstrap/icon';\nimport { BsMonthNamePipeModule, BsWeekdayNameModule } from '@mintplayer/ng-bootstrap/calendar-month';\n\n@NgModule({\n declarations: [\n BsCalendarComponent\n ],\n imports: [\n CommonModule,\n BsIconModule,\n BsUcFirstPipeModule,\n BsMonthNamePipeModule,\n BsWeekdayNameModule\n ],\n exports: [\n BsCalendarComponent\n ]\n})\nexport class BsCalendarModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class BsCardComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.rounded = true;
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: BsCardComponent, selector: "bs-card", inputs: { rounded: "rounded" }, ngImport: i0, template: "<div class=\"card\" [class.rounded-0]=\"!rounded\">\n <ng-content select=\"bs-card-header\"></ng-content>\n <div class=\"card-body p-0\">\n <ng-content></ng-content>\n </div>\n</div>", styles: [":host ::ng-deep .card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: .5rem;--bs-card-border-width: 1px;--bs-card-border-color: var(--bs-border-color-translucent);--bs-card-border-radius: .375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(.375rem - 1px);--bs-card-cap-padding-y: .5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(0, 0, 0, .03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #fff;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: .75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}:host ::ng-deep .card>hr{margin-right:0;margin-left:0}:host ::ng-deep .card>.list-group{border-top:inherit;border-bottom:inherit}:host ::ng-deep .card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card>.card-header+.list-group,:host ::ng-deep .card>.list-group+.card-footer{border-top:0}:host ::ng-deep .card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}:host ::ng-deep .card-title{margin-bottom:var(--bs-card-title-spacer-y)}:host ::ng-deep .card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}:host ::ng-deep .card-text:last-child{margin-bottom:0}:host ::ng-deep .card-link+.card-link{margin-left:var(--bs-card-spacer-x)}:host ::ng-deep .card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}:host ::ng-deep .card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}:host ::ng-deep .card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}:host ::ng-deep .card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}:host ::ng-deep .card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}:host ::ng-deep .card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}:host ::ng-deep .card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}:host ::ng-deep .card-img-overlay{position:absolute;inset:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-img,:host ::ng-deep .card-img-top,:host ::ng-deep .card-img-bottom{width:100%}:host ::ng-deep .card-img,:host ::ng-deep .card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-img,:host ::ng-deep .card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width: 576px){:host ::ng-deep .card-group{display:flex;flex-flow:row wrap}:host ::ng-deep .card-group>.card{flex:1 0 0%;margin-bottom:0}:host ::ng-deep .card-group>.card+.card{margin-left:0;border-left:0}:host ::ng-deep .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .card-group>.card:not(:last-child) .card-img-top,:host ::ng-deep .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}:host ::ng-deep .card-group>.card:not(:last-child) .card-img-bottom,:host ::ng-deep .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}:host ::ng-deep .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .card-group>.card:not(:first-child) .card-img-top,:host ::ng-deep .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}:host ::ng-deep .card-group>.card:not(:first-child) .card-img-bottom,:host ::ng-deep .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}:host ::ng-deep .card-body{margin:-1px}\n"] }); }
|
|
11
|
+
}
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardComponent, decorators: [{
|
|
13
|
+
type: Component,
|
|
14
|
+
args: [{ selector: 'bs-card', template: "<div class=\"card\" [class.rounded-0]=\"!rounded\">\n <ng-content select=\"bs-card-header\"></ng-content>\n <div class=\"card-body p-0\">\n <ng-content></ng-content>\n </div>\n</div>", styles: [":host ::ng-deep .card{--bs-card-spacer-y: 1rem;--bs-card-spacer-x: 1rem;--bs-card-title-spacer-y: .5rem;--bs-card-border-width: 1px;--bs-card-border-color: var(--bs-border-color-translucent);--bs-card-border-radius: .375rem;--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(.375rem - 1px);--bs-card-cap-padding-y: .5rem;--bs-card-cap-padding-x: 1rem;--bs-card-cap-bg: rgba(0, 0, 0, .03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg: #fff;--bs-card-img-overlay-padding: 1rem;--bs-card-group-margin: .75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}:host ::ng-deep .card>hr{margin-right:0;margin-left:0}:host ::ng-deep .card>.list-group{border-top:inherit;border-bottom:inherit}:host ::ng-deep .card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card>.card-header+.list-group,:host ::ng-deep .card>.list-group+.card-footer{border-top:0}:host ::ng-deep .card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}:host ::ng-deep .card-title{margin-bottom:var(--bs-card-title-spacer-y)}:host ::ng-deep .card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}:host ::ng-deep .card-text:last-child{margin-bottom:0}:host ::ng-deep .card-link+.card-link{margin-left:var(--bs-card-spacer-x)}:host ::ng-deep .card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}:host ::ng-deep .card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}:host ::ng-deep .card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}:host ::ng-deep .card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}:host ::ng-deep .card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}:host ::ng-deep .card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}:host ::ng-deep .card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}:host ::ng-deep .card-img-overlay{position:absolute;inset:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-img,:host ::ng-deep .card-img-top,:host ::ng-deep .card-img-bottom{width:100%}:host ::ng-deep .card-img,:host ::ng-deep .card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-img,:host ::ng-deep .card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}:host ::ng-deep .card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width: 576px){:host ::ng-deep .card-group{display:flex;flex-flow:row wrap}:host ::ng-deep .card-group>.card{flex:1 0 0%;margin-bottom:0}:host ::ng-deep .card-group>.card+.card{margin-left:0;border-left:0}:host ::ng-deep .card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}:host ::ng-deep .card-group>.card:not(:last-child) .card-img-top,:host ::ng-deep .card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}:host ::ng-deep .card-group>.card:not(:last-child) .card-img-bottom,:host ::ng-deep .card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}:host ::ng-deep .card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}:host ::ng-deep .card-group>.card:not(:first-child) .card-img-top,:host ::ng-deep .card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}:host ::ng-deep .card-group>.card:not(:first-child) .card-img-bottom,:host ::ng-deep .card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}:host ::ng-deep .card-body{margin:-1px}\n"] }]
|
|
15
|
+
}], propDecorators: { rounded: [{
|
|
16
|
+
type: Input
|
|
17
|
+
}] } });
|
|
18
|
+
|
|
19
|
+
class BsCardHeaderComponent {
|
|
20
|
+
constructor() {
|
|
21
|
+
this.noPadding = false;
|
|
22
|
+
}
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
24
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.0", type: BsCardHeaderComponent, selector: "bs-card-header", inputs: { noPadding: "noPadding" }, ngImport: i0, template: "<div class=\"card-header\" [class.p-0]=\"noPadding\">\n <ng-content></ng-content>\n</div>", styles: [""] }); }
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardHeaderComponent, decorators: [{
|
|
27
|
+
type: Component,
|
|
28
|
+
args: [{ selector: 'bs-card-header', template: "<div class=\"card-header\" [class.p-0]=\"noPadding\">\n <ng-content></ng-content>\n</div>" }]
|
|
29
|
+
}], propDecorators: { noPadding: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}] } });
|
|
32
|
+
|
|
33
|
+
class BsCardModule {
|
|
34
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
35
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0", ngImport: i0, type: BsCardModule, declarations: [BsCardComponent,
|
|
36
|
+
BsCardHeaderComponent], imports: [CommonModule], exports: [BsCardComponent,
|
|
37
|
+
BsCardHeaderComponent] }); }
|
|
38
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardModule, imports: [CommonModule] }); }
|
|
39
|
+
}
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0", ngImport: i0, type: BsCardModule, decorators: [{
|
|
41
|
+
type: NgModule,
|
|
42
|
+
args: [{
|
|
43
|
+
imports: [CommonModule],
|
|
44
|
+
declarations: [
|
|
45
|
+
BsCardComponent,
|
|
46
|
+
BsCardHeaderComponent
|
|
47
|
+
],
|
|
48
|
+
exports: [
|
|
49
|
+
BsCardComponent,
|
|
50
|
+
BsCardHeaderComponent
|
|
51
|
+
]
|
|
52
|
+
}]
|
|
53
|
+
}] });
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Generated bundle index. Do not edit.
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
export { BsCardComponent, BsCardHeaderComponent, BsCardModule };
|
|
60
|
+
//# sourceMappingURL=mintplayer-ng-bootstrap-card.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mintplayer-ng-bootstrap-card.mjs","sources":["../../../../libs/mintplayer-ng-bootstrap/card/src/card/card.component.ts","../../../../libs/mintplayer-ng-bootstrap/card/src/card/card.component.html","../../../../libs/mintplayer-ng-bootstrap/card/src/card-header/card-header.component.ts","../../../../libs/mintplayer-ng-bootstrap/card/src/card-header/card-header.component.html","../../../../libs/mintplayer-ng-bootstrap/card/src/card.module.ts","../../../../libs/mintplayer-ng-bootstrap/card/mintplayer-ng-bootstrap-card.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'bs-card',\n templateUrl: './card.component.html',\n styleUrls: ['./card.component.scss']\n})\nexport class BsCardComponent {\n @Input() rounded = true;\n}\n","<div class=\"card\" [class.rounded-0]=\"!rounded\">\n <ng-content select=\"bs-card-header\"></ng-content>\n <div class=\"card-body p-0\">\n <ng-content></ng-content>\n </div>\n</div>","import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'bs-card-header',\n templateUrl: './card-header.component.html',\n styleUrls: ['./card-header.component.scss']\n})\nexport class BsCardHeaderComponent {\n @Input() noPadding = false;\n}\n","<div class=\"card-header\" [class.p-0]=\"noPadding\">\n <ng-content></ng-content>\n</div>","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BsCardComponent } from './card/card.component';\nimport { BsCardHeaderComponent } from './card-header/card-header.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BsCardComponent,\n BsCardHeaderComponent\n ],\n exports: [\n BsCardComponent,\n BsCardHeaderComponent\n ]\n})\nexport class BsCardModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;AAEA,MAKa,eAAe,CAAA;AAL5B,IAAA,WAAA,GAAA;QAMW,IAAO,CAAA,OAAA,GAAG,IAAI,CAAC;AACzB,KAAA;8GAFY,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAf,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,eAAe,+ECP5B,wMAKM,EAAA,MAAA,EAAA,CAAA,8wJAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDEO,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,SAAS;+BACE,SAAS,EAAA,QAAA,EAAA,wMAAA,EAAA,MAAA,EAAA,CAAA,8wJAAA,CAAA,EAAA,CAAA;8BAKV,OAAO,EAAA,CAAA;sBAAf,KAAK;;;AENR,MAKa,qBAAqB,CAAA;AALlC,IAAA,WAAA,GAAA;QAMW,IAAS,CAAA,SAAA,GAAG,KAAK,CAAC;AAC5B,KAAA;8GAFY,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,0FCPlC,8FAEM,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDKO,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,SAAS;+BACE,gBAAgB,EAAA,QAAA,EAAA,8FAAA,EAAA,CAAA;8BAKjB,SAAS,EAAA,CAAA;sBAAjB,KAAK;;;AEHR,MAWa,YAAY,CAAA;8GAAZ,YAAY,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAZ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,iBARrB,eAAe;YACf,qBAAqB,CAAA,EAAA,OAAA,EAAA,CAHb,YAAY,CAAA,EAAA,OAAA,EAAA,CAMpB,eAAe;YACf,qBAAqB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGZ,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,YAAY,YAVb,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAUX,YAAY,EAAA,UAAA,EAAA,CAAA;kBAXxB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;AACvB,oBAAA,YAAY,EAAE;wBACZ,eAAe;wBACf,qBAAqB;AACtB,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP,eAAe;wBACf,qBAAqB;AACtB,qBAAA;AACF,iBAAA,CAAA;;;ACfD;;AAEG;;;;"}
|