├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report-.md │ ├── feature-request-.md │ └── something-else-.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── on-gh-release.yml │ ├── on-push-or-pull.yml │ └── on-release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-push ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── .vscode └── extensions.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _root ├── .gihtub │ └── on-pull-request.yml ├── .travis.yml ├── Dockerfile ├── _cypress.json ├── angular.json ├── cypress │ ├── plugins │ │ ├── cy-ts-preprocessor.js │ │ └── index.js │ ├── snapshot │ │ └── snapshot_spec.js │ ├── support │ │ ├── commands.js │ │ └── index.js │ └── tsconfig.json ├── demo │ ├── .gitignore │ └── src │ │ ├── app │ │ └── app.server.module.ts │ │ ├── environments │ │ └── environment.server.ts │ │ └── main.server.ts ├── karma-demo.conf.js ├── karma-source.conf.js ├── karma.base.conf.js ├── karma.conf.js ├── mocha.opts ├── ngcc.config.js ├── package.json ├── scripts │ ├── bs-config.js │ ├── build-modules.js │ ├── ci │ │ ├── npm-ci-key.sh │ │ ├── npm-ng-latest.sh │ │ ├── npm-ng-min.sh │ │ ├── npm-ng-next.sh │ │ └── update-pkg.js │ ├── fetch-docs.js │ ├── firebase │ │ └── deploy-to-preview-channel.sh │ ├── matchers.ts │ ├── ng-packagr │ │ ├── api.js │ │ └── tsconfig.ngc.json │ ├── sauce │ │ ├── sauce_connect_block.sh │ │ ├── sauce_connect_setup.sh │ │ └── sauce_connect_teardown.sh │ ├── schematics │ │ └── build.js │ ├── test-demo.ts │ ├── test-source.ts │ ├── typings.d.ts │ ├── universal │ │ ├── app.module.ts │ │ ├── configure-heroku.js │ │ ├── prerender.ts │ │ ├── server.ts │ │ ├── static.paths.ts │ │ └── webpack.server.config.js │ └── version.js ├── tools │ ├── gen.sh │ ├── generators │ │ └── .gitkeep │ └── tsconfig.tools.json ├── tsconfig.json ├── tslint.json ├── typedoc.js └── wallaby.js ├── apps ├── .gitkeep ├── ngx-bootstrap-docs-e2e │ ├── .eslintrc.json │ ├── playwright.config.ts │ ├── project.json │ ├── src │ │ ├── full │ │ │ ├── accordion_page.spec.ts │ │ │ ├── alerts_page.spec.ts │ │ │ ├── buttons_page.spec.ts │ │ │ ├── carousel_page_spec.ts │ │ │ ├── collapse_page_spec.ts │ │ │ ├── datepicker │ │ │ │ ├── close_behavior_spec.ts │ │ │ │ ├── config_method_spec.ts │ │ │ │ ├── config_properties_spec.ts │ │ │ │ ├── custom_date_format_spec.ts │ │ │ │ ├── custom_today_class_spec.ts │ │ │ │ ├── custom_triggers_spec.ts │ │ │ │ ├── days_disabled_spec.ts │ │ │ │ ├── disabled_spec.ts │ │ │ │ ├── forms_spec.ts │ │ │ │ ├── hide_on_scroll_spec.ts │ │ │ │ ├── initial_state_spec.ts │ │ │ │ ├── inline_datepicker_spec.ts │ │ │ │ ├── locales_spec.ts │ │ │ │ ├── manual_trigger_spec.ts │ │ │ │ ├── max_date_ranges_spec.ts │ │ │ │ ├── min_max_spec.ts │ │ │ │ ├── min_mode_spec.ts │ │ │ │ ├── outside_click_spec.ts │ │ │ │ ├── placement_spec.ts │ │ │ │ ├── quick_select_ranges_spec.ts │ │ │ │ ├── reactive_forms_spec.ts │ │ │ │ ├── select_dates_from_other_month_spec.ts │ │ │ │ ├── select_week_spec.ts │ │ │ │ ├── themes_spec.ts │ │ │ │ ├── trigger_by_isOpen_spec.ts │ │ │ │ ├── value_change_event_spec.ts │ │ │ │ ├── visibility_events_spec.ts │ │ │ │ └── with_timepicker_spec.ts │ │ │ ├── dropdowns_page_spec.ts │ │ │ ├── modals_directive_page_spec.ts │ │ │ ├── modals_service_page_spec.ts │ │ │ ├── pagination_page_spec.ts │ │ │ ├── popover_page_spec.ts │ │ │ ├── progressbar_page_spec.ts │ │ │ ├── rating_page_spec.ts │ │ │ ├── sortable_page_spec.ts │ │ │ ├── tabs_page_spec.ts │ │ │ ├── timepicker │ │ │ │ ├── arrow_keys_spec.ts │ │ │ │ ├── configuring_defaults_spec.ts │ │ │ │ ├── custom_meridian_spec.ts │ │ │ │ ├── custom_steps_spec.ts │ │ │ │ ├── custom_validation_events_spec.ts │ │ │ │ ├── custom_validation_spec.ts │ │ │ │ ├── disabled_spec.ts │ │ │ │ ├── dynamic_spec.ts │ │ │ │ ├── form_spec.ts │ │ │ │ ├── meridian_spec.ts │ │ │ │ ├── min_max_spec.ts │ │ │ │ ├── mouse_wheel_spec.ts │ │ │ │ ├── readonly_spec.ts │ │ │ │ ├── spinners_spec.ts │ │ │ │ └── toggle_min_sec_spec.ts │ │ │ ├── tooltip_page_spec.ts │ │ │ └── typeahead_page_spec.ts │ │ ├── integration │ │ │ ├── accordion_page.spec.ts │ │ │ ├── alerts_page.spec.ts │ │ │ ├── buttons_page.spec.ts │ │ │ ├── carousel_page_spec.ts │ │ │ ├── collapse_page_spec.ts │ │ │ ├── datepicker_page_spec.ts │ │ │ ├── dropdowns_page_spec.ts │ │ │ ├── landing_page_spec.ts │ │ │ ├── modals_page_spec.ts │ │ │ ├── pagination_page_spec.ts │ │ │ ├── popover_page_spec.ts │ │ │ ├── progressbar_page_spec.ts │ │ │ ├── rating_page_spec.ts │ │ │ ├── sortable_page_spec.ts │ │ │ ├── tabs_page_spec.ts │ │ │ ├── timepicker_page_spec.ts │ │ │ ├── tooltip_page_spec.ts │ │ │ └── typeahead_page_spec.ts │ │ └── support │ │ │ ├── accordion.po.ts │ │ │ ├── alerts.po.ts │ │ │ ├── app.po.ts │ │ │ ├── base.component.ts │ │ │ ├── base.po.ts │ │ │ ├── buttons.po.ts │ │ │ ├── carousel.po.ts │ │ │ ├── collapse.po.ts │ │ │ ├── datepicker.po.ts │ │ │ ├── dropdowns.po.ts │ │ │ ├── interfaces.ts │ │ │ ├── landing.po.ts │ │ │ ├── modals.po.ts │ │ │ ├── pagination.po.ts │ │ │ ├── popover.po.ts │ │ │ ├── progressbar.po.ts │ │ │ ├── rating.po.ts │ │ │ ├── sortable.po.ts │ │ │ ├── tabs.po.ts │ │ │ ├── timepicker.po.ts │ │ │ ├── tooltip.po.ts │ │ │ └── typeahead.po.ts │ ├── tsconfig.e2e.json │ └── tsconfig.json └── ngx-bootstrap-docs │ ├── .eslintrc.json │ ├── jest.config.js │ ├── project.json │ ├── server.ts │ ├── src │ ├── 404.html │ ├── app │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.server.ts │ │ ├── app.module.ts │ │ └── app.routing.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── css │ │ │ ├── _reboot.scss │ │ │ ├── adaptive.scss │ │ │ ├── bootstrap-4.5.3 │ │ │ │ └── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── bootstrap-5.2.3 │ │ │ │ └── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── common-styles.scss │ │ │ ├── glyphicons.css │ │ │ ├── manrope.css │ │ │ ├── open-sans.css │ │ │ ├── prettify-angulario.css │ │ │ ├── sidebar.scss │ │ │ ├── style.scss │ │ │ └── variables.scss │ │ ├── fonts │ │ │ ├── Manrope-Bold.eot │ │ │ ├── Manrope-Bold.ttf │ │ │ ├── Manrope-Bold.woff │ │ │ ├── Manrope-Bold.woff2 │ │ │ ├── Manrope-Regular.eot │ │ │ ├── Manrope-Regular.ttf │ │ │ ├── Manrope-Regular.woff │ │ │ ├── Manrope-Regular.woff2 │ │ │ ├── OpenSans-Regular.eot │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Regular.woff │ │ │ ├── OpenSans-Regular.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ │ ├── GitHub-Mark-Light-64px.png │ │ │ ├── active.svg │ │ │ ├── anactive.svg │ │ │ ├── bar-doc.png │ │ │ ├── border-dot.png │ │ │ ├── components-page │ │ │ │ ├── accordion.png │ │ │ │ ├── alerts.png │ │ │ │ ├── buttons.png │ │ │ │ ├── carousel.png │ │ │ │ ├── collapse.png │ │ │ │ ├── datepicker.png │ │ │ │ ├── dropdowns.png │ │ │ │ ├── modals.png │ │ │ │ ├── pagination.png │ │ │ │ ├── popover.png │ │ │ │ ├── progressbar.png │ │ │ │ ├── rating.png │ │ │ │ ├── sortable.png │ │ │ │ ├── tabs.png │ │ │ │ ├── timepicker.png │ │ │ │ ├── tooltip.png │ │ │ │ └── typeahead.png │ │ │ ├── construction-bg.svg │ │ │ ├── favicons │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-194x194.png │ │ │ │ └── favicon-32x32.png │ │ │ ├── icons │ │ │ │ ├── advantages-01.svg │ │ │ │ ├── advantages-02.svg │ │ │ │ ├── advantages-03.svg │ │ │ │ ├── advantages-04.svg │ │ │ │ ├── icon-arrow.svg │ │ │ │ ├── icon-code.svg │ │ │ │ ├── icon-components.svg │ │ │ │ ├── icon-dribble.svg │ │ │ │ ├── icon-facebook.svg │ │ │ │ ├── icon-folder.svg │ │ │ │ ├── icon-git.svg │ │ │ │ ├── icon-inst.svg │ │ │ │ ├── icon-resources.svg │ │ │ │ ├── icon-slack.svg │ │ │ │ ├── icon-theme.svg │ │ │ │ ├── icon-twiter.svg │ │ │ │ ├── menu-left.svg │ │ │ │ ├── polygon-bg.svg │ │ │ │ ├── search.svg │ │ │ │ └── stackoverflow.svg │ │ │ ├── link-doc.png │ │ │ ├── logo.png │ │ │ ├── logos │ │ │ │ ├── angular.svg │ │ │ │ ├── content-logo.svg │ │ │ │ ├── header-logo.svg │ │ │ │ ├── ngx-bootstrap-logo-red.svg │ │ │ │ ├── ngx-bootstrap-logo.svg │ │ │ │ └── valor-logo.svg │ │ │ ├── macbook_page.png │ │ │ ├── menu-left.svg │ │ │ ├── menu-right.svg │ │ │ ├── nature │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ └── 8.jpg │ │ │ ├── repa-down.png │ │ │ ├── repa-up.png │ │ │ ├── search-doc.png │ │ │ ├── stackblitz.png │ │ │ └── themes-bg │ │ │ │ ├── theme_blue.jpg │ │ │ │ ├── theme_pink.jpg │ │ │ │ └── theme_yellow.jpg │ │ ├── js │ │ │ └── prettify.min.js │ │ ├── json │ │ │ ├── current-version.json │ │ │ └── versions.json │ │ └── scully-routes.json │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.server.ts │ ├── main.ts │ ├── ng-api-doc.ts │ ├── ngsw-manifest.json │ ├── polyfills.ts │ ├── test-setup.ts │ └── typings.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ ├── tsconfig.server.json │ └── tsconfig.spec.json ├── breakin-7.md ├── decorate-angular-cli.js ├── docs └── spec │ ├── accordion │ ├── accordion.examples.basic.use-case.md │ ├── accordion.examples.conf-defaults.use-case.md │ ├── accordion.examples.custom-html.use-case.md │ ├── accordion.examples.disabled.use-case.md │ ├── accordion.examples.dynamic-body.use-case.md │ ├── accordion.examples.dynamic.use-case.md │ ├── accordion.examples.group-open.use-case.md │ ├── accordion.examples.initially-opened.use-case.md │ ├── accordion.examples.manual-toggle.use-case.md │ ├── accordion.examples.only-one.use-case.md │ ├── accordion.examples.styling.use-case.md │ └── svg │ │ └── mermaid-basic-usecase.svg │ ├── alerts │ ├── alerts.examples.add-content.use-case.md │ ├── alerts.examples.basic.use-case.md │ ├── alerts.examples.comp-styling.use-case.md │ ├── alerts.examples.conf-defaults.use-case.md │ ├── alerts.examples.dismiss-on-time.use-case.md │ ├── alerts.examples.dismiss.use-case.md │ ├── alerts.examples.dynamic-content.use-case.md │ ├── alerts.examples.dynamic-html.use-case.md │ ├── alerts.examples.glob-styling.use-case.md │ └── alerts.examples.link-color.use-case.md │ ├── buttons │ ├── buttons.examples.basic.use-case.md │ ├── buttons.examples.checkbox.use-case.md │ ├── buttons.examples.custom-checkbox.use-case.md │ ├── buttons.examples.disabled-buttons.use-case.md │ ├── buttons.examples.radio.use-case.md │ ├── buttons.examples.radio.without-explicit-group.use-case.md │ ├── buttons.examples.reactive-checkbox.use-case.md │ ├── buttons.examples.reactive-radio.use-case.md │ └── buttons.examples.uncheckable-radio.use-case.md │ ├── carousel │ ├── carousel.examples.accessibility.use-case.md │ ├── carousel.examples.basic.use-case.md │ ├── carousel.examples.config-defaults.use-case.md │ ├── carousel.examples.custom-content.use-case.md │ ├── carousel.examples.disable-indicator.use-case.md │ ├── carousel.examples.disable-looping.use-case.md │ ├── carousel.examples.dynamic-slides.use-case.md │ ├── carousel.examples.interval.use-case.md │ ├── carousel.examples.optional-captions.use-case.md │ ├── carousel.examples.pause-on-hover.use-case.md │ └── carousel.examples.slide-changed-event.use-case.md │ ├── collapse │ ├── collapse.examples.accessibility.use-case.md │ ├── collapse.examples.basic.use-case.md │ ├── collapse.examples.events.use-case.md │ ├── collapse.examples.inline-display.use-case.md │ └── collapse.examples.manual-toggle.use-case.md │ ├── datepicker │ ├── datepicker.example.with-animation.use-case.md │ ├── datepicker.examples.basic.use-case.md │ ├── datepicker.examples.config-method.use-case.md │ ├── datepicker.examples.config-properties.md │ ├── datepicker.examples.custom-date-format.use-case.md │ ├── datepicker.examples.custom-today-class.use-case.md │ ├── datepicker.examples.custom-trigger.md │ ├── datepicker.examples.days-disabled.use-case.md │ ├── datepicker.examples.disabled.use-case.md │ ├── datepicker.examples.forms.use-case.md │ ├── datepicker.examples.hide-on-scroll.use-case.md │ ├── datepicker.examples.initial-state.use-case.md │ ├── datepicker.examples.inline-datepicker.use-case.md │ ├── datepicker.examples.locales.use-case.md │ ├── datepicker.examples.manual-trigger.use-case.md │ ├── datepicker.examples.min-max.use-case.md │ ├── datepicker.examples.min-mode.use-case.md │ ├── datepicker.examples.outside-click.md │ ├── datepicker.examples.placement.use-case.md │ ├── datepicker.examples.reactive-forms.use-case.md │ ├── datepicker.examples.select-dates-from-other-month.use-case.md │ ├── datepicker.examples.select-week.use-case.md │ ├── datepicker.examples.themes.use-case.md │ ├── datepicker.examples.trigger-by-isopen.md │ ├── datepicker.examples.value-change-event.use-case.md │ └── datepicker.examples.visibility-events.use-case.md │ ├── dropdowns │ ├── dropdowns.examples.accessibility.use-case.md │ ├── dropdowns.examples.append-to-body.use-case.md │ ├── dropdowns.examples.auto-close.use-case.md │ ├── dropdowns.examples.basic.use-case.md │ ├── dropdowns.examples.config-defaults.use-case.md │ ├── dropdowns.examples.custom-html.use-case.md │ ├── dropdowns.examples.disabled-menu.use-case.md │ ├── dropdowns.examples.dropup-variation.use-case.md │ ├── dropdowns.examples.inside-click.use-case.md │ ├── dropdowns.examples.manual-trigger.md │ ├── dropdowns.examples.mark-item-disabled.use-case.md │ ├── dropdowns.examples.menu-alignment.use-case.md │ ├── dropdowns.examples.menu-dividers.use-case.md │ ├── dropdowns.examples.nested-dropdowns.use-case.md │ ├── dropdowns.examples.split-button.use-case.md │ ├── dropdowns.examples.state-change-event.use-case.md │ ├── dropdowns.examples.trigger-by-a.use-case.md │ ├── dropdowns.examples.trigger-by-isopen.use-case.md │ └── dropdowns.examples.visibility-events.use-case.md │ ├── index.md │ ├── modals │ ├── modals.directive-examples.auto-shown-modal.md │ ├── modals.directive-examples.child-modal.use-case.md │ ├── modals.directive-examples.modal-events.use-cases.md │ ├── modals.directive-examples.nested-modals.use-cases.md │ ├── modals.directive-examples.optional-sizes.md │ ├── modals.directive-examples.static-modal.use-cases.md │ ├── modals.service-examples.animation-option.use-case.md │ ├── modals.service-examples.backdrop-options.use-case.md │ ├── modals.service-examples.component.use-case.md │ ├── modals.service-examples.confirm-window.use-case.md │ ├── modals.service-examples.custom-css-class.use-case.md │ ├── modals.service-examples.esc-closing-option.use-case.md │ ├── modals.service-examples.events.use-case.md │ ├── modals.service-examples.nested.use-case.md │ ├── modals.service-examples.scrolling-long-content.use-case.md │ ├── modals.service-examples.template.use-case.md │ └── modals.service-examples.tooltip-and-popover.use-case.md │ ├── pagination │ ├── pagination.examples.basic.use-case.md │ ├── pagination.examples.boundary-links.use-case.md │ ├── pagination.examples.centering-active-page-link.md │ ├── pagination.examples.content-switching.use-case.md │ ├── pagination.examples.custom-links-content.use-cases.md │ ├── pagination.examples.direction-links.use-case.md │ ├── pagination.examples.disabled.use-case.md │ ├── pagination.examples.limits.use-case.md │ ├── pagination.examples.manual-switching-page.use-case.md │ ├── pagination.examples.page-changed-event.use-case.md │ ├── pagination.examples.pager.use-case.md │ └── pagination.examples.pages-count-changed-event.use-case.md │ ├── popover │ ├── popover.examples.append-to-body.use-case.md │ ├── popover.examples.basic.use-case.md │ ├── popover.examples.comp-level-styling.use-case.md │ ├── popover.examples.config-defaults.use-case.md │ ├── popover.examples.custom-class.use-case.md │ ├── popover.examples.custom-content-template.use-case.md │ ├── popover.examples.custom-trigger.use-case.md │ ├── popover.examples.dismiss-on-next.use-case.md │ ├── popover.examples.dynamic-content.use-case.md │ ├── popover.examples.dynamic-html.use-case.md │ ├── popover.examples.manual-trigger.use-case.md │ ├── popover.examples.outside-click.use-case.md │ ├── popover.examples.placement.use-case.md │ ├── popover.examples.popover-context.use-case.md │ ├── popover.examples.popover-with-delay.use-case.md │ ├── popover.examples.trigger-by-isopen.use-case.md │ └── popover.examples.visibility-events.use-case.md │ ├── progressbar │ ├── progressbar.examples.config-default.use-case.md │ ├── progressbar.examples.dynamic.use-case.md │ ├── progressbar.examples.stacked.use-case.md │ └── progressbar.examples.static.use-case.md │ ├── rating │ ├── rating.examples.basic.use-case.md │ ├── rating.examples.custom-icons.use-case.md │ ├── rating.examples.dynamic.use-case.md │ └── rating.examples.select-on-enter.use-case.md │ ├── sortable │ ├── sortable.examples.accessibility.use-case.md │ ├── sortable.examples.basic.use-case.md │ ├── sortable.examples.complex-data-model.use-case.md │ └── sortable.examples.custom-item-template.use-case.md │ ├── tabs │ ├── tabs.examples.accessibility.use-case.md │ ├── tabs.examples.basic.use-case.md │ ├── tabs.examples.config-default.use-case.md │ ├── tabs.examples.custom-class.use-case.md │ ├── tabs.examples.custom-template.use-case.md │ ├── tabs.examples.disabled-key-navigations.use-case.md │ ├── tabs.examples.disabled.use-case.md │ ├── tabs.examples.dynamic.use-case.md │ ├── tabs.examples.justified.use-case.md │ ├── tabs.examples.manual-selection.use-case.md │ ├── tabs.examples.pills.use-case.md │ ├── tabs.examples.select-event.use-case.md │ └── tabs.examples.vertical-pills.use-case.md │ ├── template.use-case.md │ ├── timepicker │ ├── timepicker.examples.arrow-keys.use-case.md │ ├── timepicker.examples.basic.use-case.md │ ├── timepicker.examples.config-defaults.use-case.md │ ├── timepicker.examples.custom-meridian.use-case.md │ ├── timepicker.examples.custom-steps.use-case.md │ ├── timepicker.examples.custom-validation-event.use-case.md │ ├── timepicker.examples.custom-validation.use-case.md │ ├── timepicker.examples.disabled.use-case.md │ ├── timepicker.examples.dynamic.use-case.md │ ├── timepicker.examples.form.use-case.md │ ├── timepicker.examples.meridian.use-case.md │ ├── timepicker.examples.min-max.use-case.md │ ├── timepicker.examples.mouse-wheel.use-case.md │ ├── timepicker.examples.readonly.use-case.md │ ├── timepicker.examples.spinners.use-case.md │ └── timepicker.examples.toggle-min-sec.use-case.md │ ├── tooltip │ ├── tooltip.examples.append-to-body.use-case.md │ ├── tooltip.examples.basic.use-case.md │ ├── tooltip.examples.comp-level-styling.use-case.md │ ├── tooltip.examples.config-defaults.use-case.md │ ├── tooltip.examples.custom-class.use-case.md │ ├── tooltip.examples.custom-content-template.use-case.md │ ├── tooltip.examples.custom-triggers.use-case.md │ ├── tooltip.examples.dimiss-on-next-click.use-case.md │ ├── tooltip.examples.dynamic-content.use-case.md │ ├── tooltip.examples.dynamic-html.use-case.md │ ├── tooltip.examples.manual-trigger.use-case.md │ ├── tooltip.examples.placement.use-case.md │ └── tooltip.examples.tooltip-with-delay.use-case.md │ └── typeahead │ ├── typeahead.examples.append-to-body.use-case.md │ ├── typeahead.examples.async-data.use-case.md │ ├── typeahead.examples.basic-array.use-case.md │ ├── typeahead.examples.configuring-defaults.use-case.md │ ├── typeahead.examples.dropup.use-case.md │ ├── typeahead.examples.grouping-results.use-case.md │ ├── typeahead.examples.ignore-spaces-order.use-case.md │ ├── typeahead.examples.item-template.use-case.md │ ├── typeahead.examples.latinize.use-case.md │ ├── typeahead.examples.no-result.use-case.md │ ├── typeahead.examples.on-blur.use-case.md │ ├── typeahead.examples.on-select.use-case.md │ ├── typeahead.examples.option-field.use-case.md │ ├── typeahead.examples.phrase-delimiters.use-case.md │ ├── typeahead.examples.reactive-forms.use-case.md │ ├── typeahead.examples.scrollable.use-case.md │ ├── typeahead.examples.selected-first-item.use-case.md │ ├── typeahead.examples.show-on-blur.md │ ├── typeahead.examples.template-driven-forms.use-case.md │ └── typeahead.examples.with-delay.use-case.md ├── e2e └── issues │ └── issue-823.spec.ts ├── firebase.json ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── common-docs │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── api-docs │ │ │ │ ├── LICENSE │ │ │ │ ├── analytics │ │ │ │ │ └── analytics.ts │ │ │ │ ├── api-doc-class │ │ │ │ │ ├── api-doc-class.component.html │ │ │ │ │ └── api-doc-class.component.ts │ │ │ │ ├── api-doc-config │ │ │ │ │ ├── api-doc-config.component.html │ │ │ │ │ └── api-doc-config.component.ts │ │ │ │ ├── api-doc │ │ │ │ │ ├── api-doc.component.html │ │ │ │ │ └── api-doc.component.ts │ │ │ │ ├── api-docs.model.ts │ │ │ │ ├── index.ts │ │ │ │ └── sample-box │ │ │ │ │ ├── sample-box.component.html │ │ │ │ │ └── sample-box.component.ts │ │ │ ├── common │ │ │ │ ├── add-nav │ │ │ │ │ ├── add-nav.component.html │ │ │ │ │ └── add-nav.component.ts │ │ │ │ ├── app-footer │ │ │ │ │ ├── app-footer.component.html │ │ │ │ │ └── app-footer.component.ts │ │ │ │ ├── breadCrumbs │ │ │ │ │ ├── breadCrumbs.component.html │ │ │ │ │ └── breadCrumbs.component.ts │ │ │ │ ├── components-page │ │ │ │ │ ├── components-page.component.html │ │ │ │ │ └── components-page.component.ts │ │ │ │ ├── construction-page │ │ │ │ │ ├── construction-page.component.html │ │ │ │ │ └── construction-page.component.ts │ │ │ │ ├── discover │ │ │ │ │ ├── discover.component.html │ │ │ │ │ ├── discover.component.scss │ │ │ │ │ └── discover.component.ts │ │ │ │ ├── documentation │ │ │ │ │ ├── documentation.component.html │ │ │ │ │ └── documentation.component.ts │ │ │ │ ├── landing │ │ │ │ │ ├── landing.component.html │ │ │ │ │ └── landing.component.ts │ │ │ │ ├── schematics │ │ │ │ │ ├── schematics.component.html │ │ │ │ │ └── schematics.component.ts │ │ │ │ ├── search-input │ │ │ │ │ ├── search-filter.pipe.ts │ │ │ │ │ ├── search-input.component.html │ │ │ │ │ └── search-input.component.ts │ │ │ │ ├── sidebar │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── sidebar-helpers.ts │ │ │ │ │ ├── sidebar.component.html │ │ │ │ │ └── sidebar.component.ts │ │ │ │ ├── themes │ │ │ │ │ ├── themes.component.html │ │ │ │ │ └── themes.component.ts │ │ │ │ └── top-menu │ │ │ │ │ ├── top-menu.component.html │ │ │ │ │ └── top-menu.component.ts │ │ │ ├── demo-section-components │ │ │ │ ├── demo-api-section │ │ │ │ │ ├── api-sections.component.html │ │ │ │ │ ├── api-sections.component.ts │ │ │ │ │ └── index.ts │ │ │ │ └── demo-examples-section │ │ │ │ │ ├── examples.component.html │ │ │ │ │ ├── examples.component.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── stackblitz │ │ │ │ │ ├── app.module.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── html.ts │ │ │ │ │ ├── main.ts │ │ │ │ │ └── polyfills.ts │ │ │ ├── demo-section │ │ │ │ ├── demo-section.component.html │ │ │ │ └── demo-section.component.ts │ │ │ ├── docs-section │ │ │ │ └── docs-section.component.ts │ │ │ ├── docs.module.ts │ │ │ ├── models │ │ │ │ ├── common.models.ts │ │ │ │ ├── components-api.model.ts │ │ │ │ ├── components-examples.model.ts │ │ │ │ ├── content-section.model.ts │ │ │ │ ├── sidebar-routes.model.ts │ │ │ │ └── source-code.model.ts │ │ │ ├── theme │ │ │ │ ├── style-manager.ts │ │ │ │ └── theme-storage.ts │ │ │ └── tokens │ │ │ │ ├── docs-routes-token.ts │ │ │ │ └── docs-sidebar-routes-token.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json └── doc-pages │ ├── accordion │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── accordion-section.component.ts │ │ │ ├── accordion-section.components.html │ │ │ ├── accordion-section.list.ts │ │ │ ├── accordion.module.ts │ │ │ ├── demo-accordion.routes.ts │ │ │ ├── demos │ │ │ │ ├── animated │ │ │ │ │ ├── animated.html │ │ │ │ │ └── animated.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── custom-html │ │ │ │ │ ├── custom-html.html │ │ │ │ │ └── custom-html.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.html │ │ │ │ │ └── disabled.ts │ │ │ │ ├── dymanic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── dynamic-body │ │ │ │ │ ├── dynamic-body.html │ │ │ │ │ └── dynamic-body.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manual-toggle │ │ │ │ │ ├── manual-toggle.html │ │ │ │ │ └── manual-toggle.ts │ │ │ │ ├── one-at-a-time │ │ │ │ │ ├── one-at-a-time.html │ │ │ │ │ └── one-at-a-time.ts │ │ │ │ ├── open-event │ │ │ │ │ ├── open-event.html │ │ │ │ │ └── open-event.ts │ │ │ │ ├── opened │ │ │ │ │ ├── opened.html │ │ │ │ │ └── opened.ts │ │ │ │ └── styling │ │ │ │ │ ├── styling.html │ │ │ │ │ └── styling.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── alerts │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── alerts-section.component.html │ │ │ ├── alerts-section.component.ts │ │ │ ├── alerts-section.list.ts │ │ │ ├── alerts.module.ts │ │ │ ├── demo-alerts.routes.ts │ │ │ ├── demos │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── content │ │ │ │ │ ├── content.html │ │ │ │ │ └── content.ts │ │ │ │ ├── dismiss-on-timeout │ │ │ │ │ ├── dismiss-on-timeout.html │ │ │ │ │ └── dismiss-on-timeout.ts │ │ │ │ ├── dismiss │ │ │ │ │ ├── dismiss.html │ │ │ │ │ └── dismiss.ts │ │ │ │ ├── dynamic-content │ │ │ │ │ ├── dynamic-content.html │ │ │ │ │ └── dynamic-content.ts │ │ │ │ ├── dynamic-html │ │ │ │ │ ├── dynamic-html.html │ │ │ │ │ └── dynamic-html.ts │ │ │ │ ├── index.ts │ │ │ │ ├── link │ │ │ │ │ ├── link.html │ │ │ │ │ └── link.ts │ │ │ │ ├── styling-global │ │ │ │ │ ├── styling-global.html │ │ │ │ │ └── styling-global.ts │ │ │ │ └── styling-local │ │ │ │ │ ├── styling-local.html │ │ │ │ │ └── styling-local.ts │ │ │ └── docs │ │ │ │ └── usage.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── buttons │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── buttons-section.component.html │ │ │ ├── buttons-section.component.ts │ │ │ ├── buttons-section.list.ts │ │ │ ├── buttons.module.ts │ │ │ ├── demo-buttons.routes.ts │ │ │ ├── demos │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── checkbox-reactiveforms │ │ │ │ │ ├── checkbox-reactiveforms.html │ │ │ │ │ └── checkbox-reactiveforms.ts │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox.html │ │ │ │ │ └── checkbox.ts │ │ │ │ ├── custom-checkbox-value │ │ │ │ │ ├── custom-checkbox-value.html │ │ │ │ │ └── custom-checkbox-value.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.html │ │ │ │ │ └── disabled.ts │ │ │ │ ├── index.ts │ │ │ │ ├── radio-reactiveforms │ │ │ │ │ ├── radio-reactiveforms.html │ │ │ │ │ └── radio-reactiveforms.ts │ │ │ │ ├── radio-with-group │ │ │ │ │ ├── radio-with-group.html │ │ │ │ │ └── radio-with-group.ts │ │ │ │ ├── radio │ │ │ │ │ ├── radio.html │ │ │ │ │ └── radio.ts │ │ │ │ └── uncheckable-radio │ │ │ │ │ ├── uncheckable-radio.html │ │ │ │ │ └── uncheckable-radio.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── carousel │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── carousel-section.component.html │ │ │ ├── carousel-section.component.ts │ │ │ ├── carousel-section.list.ts │ │ │ ├── carousel.module.ts │ │ │ ├── demo-carousel.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── animated │ │ │ │ │ ├── animated.html │ │ │ │ │ └── animated.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── captions │ │ │ │ │ ├── captions.html │ │ │ │ │ └── captions.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── custom-content │ │ │ │ │ ├── custom-content.html │ │ │ │ │ └── custom-content.ts │ │ │ │ ├── disable-indicator │ │ │ │ │ ├── disable-indicator.html │ │ │ │ │ └── disable-indicator.ts │ │ │ │ ├── disable-looping │ │ │ │ │ ├── disable-looping.html │ │ │ │ │ └── disable-looping.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interval │ │ │ │ │ ├── interval.html │ │ │ │ │ └── interval.ts │ │ │ │ ├── multilist-from-index │ │ │ │ │ ├── multilist-from-index.html │ │ │ │ │ └── multilist-from-index.ts │ │ │ │ ├── multilist-indicators-by-chunk │ │ │ │ │ ├── multilist-indicators-by-chunk.html │ │ │ │ │ └── multilist-indicators-by-chunk.ts │ │ │ │ ├── multilist-single-offset │ │ │ │ │ ├── multilist-single-offset.html │ │ │ │ │ └── multilist-single-offset.ts │ │ │ │ ├── multilist │ │ │ │ │ ├── multilist.html │ │ │ │ │ └── multilist.ts │ │ │ │ ├── pause-on-focus │ │ │ │ │ ├── pause-on-focus.html │ │ │ │ │ └── pause-on-focus.ts │ │ │ │ ├── pause-on-hover │ │ │ │ │ ├── pause-on-hover.html │ │ │ │ │ └── pause-on-hover.ts │ │ │ │ └── slide-changed-event │ │ │ │ │ ├── slide-changed-event.html │ │ │ │ │ └── slide-changed-event.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── collapse │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── collapse-section.component.html │ │ │ ├── collapse-section.component.ts │ │ │ ├── collapse-section.list.ts │ │ │ ├── collapse.module.ts │ │ │ ├── demo-collapse.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── animated │ │ │ │ │ ├── animated.html │ │ │ │ │ └── animated.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── events │ │ │ │ │ ├── events.html │ │ │ │ │ └── events.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inline-display │ │ │ │ │ ├── inline-display.html │ │ │ │ │ └── inline-display.ts │ │ │ │ └── toggle-manual │ │ │ │ │ ├── toggle-manual.html │ │ │ │ │ └── toggle-manual.ts │ │ │ └── docs │ │ │ │ └── usage.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── datepicker │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── datepicker-section.component.html │ │ │ ├── datepicker-section.component.ts │ │ │ ├── datepicker-section.list.ts │ │ │ ├── datepicker.module.ts │ │ │ ├── demo-datepicker.module.ts │ │ │ ├── demo-datepicker.routes.ts │ │ │ ├── demos │ │ │ │ ├── adaptive-position │ │ │ │ │ ├── adaptive-position.html │ │ │ │ │ └── adaptive-position.ts │ │ │ │ ├── animated │ │ │ │ │ ├── animated.html │ │ │ │ │ └── animated.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── change-locale │ │ │ │ │ ├── change-locale.html │ │ │ │ │ └── change-locale.ts │ │ │ │ ├── clear-button │ │ │ │ │ ├── clear-button.html │ │ │ │ │ └── clear-button.ts │ │ │ │ ├── closeBehaviour │ │ │ │ │ ├── datepicker-close-behavior.html │ │ │ │ │ └── datepicker-close-behavior.ts │ │ │ │ ├── color-theming │ │ │ │ │ ├── color-theming.html │ │ │ │ │ └── color-theming.ts │ │ │ │ ├── config-method │ │ │ │ │ ├── config-method.html │ │ │ │ │ └── config-method.ts │ │ │ │ ├── config-object │ │ │ │ │ ├── config-object.html │ │ │ │ │ └── config-object.ts │ │ │ │ ├── custom-format │ │ │ │ │ ├── custom-format.html │ │ │ │ │ └── custom-format.ts │ │ │ │ ├── custom-today-class │ │ │ │ │ ├── custom-today-class.component.html │ │ │ │ │ └── custom-today-class.component.ts │ │ │ │ ├── date-custom-classes │ │ │ │ │ ├── date-custom-classes.html │ │ │ │ │ ├── date-custom-classes.scss │ │ │ │ │ └── date-custom-classes.ts │ │ │ │ ├── date-initial-state │ │ │ │ │ ├── date-initial-state.html │ │ │ │ │ └── date-initial-state.ts │ │ │ │ ├── daterangepicker-display-one-month │ │ │ │ │ ├── display-one-month.html │ │ │ │ │ └── display-one-month.ts │ │ │ │ ├── daterangepicker-show-previous-month │ │ │ │ │ ├── show-previous-month.html │ │ │ │ │ └── show-previous-month.ts │ │ │ │ ├── disable-dates │ │ │ │ │ ├── disable-dates.html │ │ │ │ │ └── disable-dates.ts │ │ │ │ ├── disable-days │ │ │ │ │ ├── disable-days.html │ │ │ │ │ └── disable-days.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.component.html │ │ │ │ │ └── disabled.component.ts │ │ │ │ ├── enable-dates │ │ │ │ │ ├── enable-dates.html │ │ │ │ │ └── enable-dates.ts │ │ │ │ ├── forms │ │ │ │ │ ├── forms.component.html │ │ │ │ │ └── forms.component.ts │ │ │ │ ├── hide-on-scroll │ │ │ │ │ ├── hide-on-scroll.html │ │ │ │ │ └── hide-on-scroll.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inline-datepicker │ │ │ │ │ ├── inline-datepicker.component.html │ │ │ │ │ └── inline-datepicker.component.ts │ │ │ │ ├── keep-dates-out-of-rules │ │ │ │ │ ├── keep-dates-out-of-rules.component.html │ │ │ │ │ └── keep-dates-out-of-rules.component.ts │ │ │ │ ├── max-date-range │ │ │ │ │ ├── max-date-range.html │ │ │ │ │ └── max-date-range.ts │ │ │ │ ├── min-max │ │ │ │ │ ├── min-max.component.html │ │ │ │ │ └── min-max.component.ts │ │ │ │ ├── min-mode │ │ │ │ │ ├── min-mode.component.html │ │ │ │ │ └── min-mode.component.ts │ │ │ │ ├── not-yet-supported.html │ │ │ │ ├── outside-click │ │ │ │ │ ├── outside-click.html │ │ │ │ │ └── outside-click.ts │ │ │ │ ├── placement │ │ │ │ │ ├── placement.html │ │ │ │ │ └── placement.ts │ │ │ │ ├── prevent-change-to-next-month │ │ │ │ │ ├── prevent-change-to-next-month.component.html │ │ │ │ │ └── prevent-change-to-next-month.component.ts │ │ │ │ ├── quick-select-ranges │ │ │ │ │ ├── quick-select-ranges.html │ │ │ │ │ └── quick-select-ranges.ts │ │ │ │ ├── reactive-forms │ │ │ │ │ ├── reactive-forms.component.html │ │ │ │ │ └── reactive-forms.component.ts │ │ │ │ ├── return-focus-to-input │ │ │ │ │ ├── return-focus-to-input.component.html │ │ │ │ │ └── return-focus-to-input.component.ts │ │ │ │ ├── select-dates-from-other-months │ │ │ │ │ ├── select-dates-from-other-months.html │ │ │ │ │ └── select-dates-from-other-months.ts │ │ │ │ ├── select-week-range │ │ │ │ │ ├── select-week-range.html │ │ │ │ │ └── select-week-range.ts │ │ │ │ ├── select-week │ │ │ │ │ ├── select-week.html │ │ │ │ │ └── select-week.ts │ │ │ │ ├── start-view │ │ │ │ │ ├── start-view.html │ │ │ │ │ └── start-view.ts │ │ │ │ ├── today-button │ │ │ │ │ ├── today-button.html │ │ │ │ │ └── today-button.ts │ │ │ │ ├── tooltip-to-selected-dates │ │ │ │ │ ├── tooltip-to-selected-dates.html │ │ │ │ │ └── tooltip-to-selected-dates.ts │ │ │ │ ├── trigger-by-isopen-property │ │ │ │ │ ├── trigger-by-isopen-property.html │ │ │ │ │ └── trigger-by-isopen-property.ts │ │ │ │ ├── triggers-custom │ │ │ │ │ ├── triggers-custom.html │ │ │ │ │ └── triggers-custom.ts │ │ │ │ ├── triggers-manual │ │ │ │ │ ├── triggers-manual.html │ │ │ │ │ └── triggers-manual.ts │ │ │ │ ├── value-change-event │ │ │ │ │ ├── value-change-event.html │ │ │ │ │ └── value-change-event.ts │ │ │ │ ├── visibility-events │ │ │ │ │ ├── visibility-events.html │ │ │ │ │ └── visibility-events.ts │ │ │ │ └── with-timepicker │ │ │ │ │ ├── with-timepicker.html │ │ │ │ │ └── with-timepicker.ts │ │ │ ├── docs │ │ │ │ ├── usage.md │ │ │ │ └── usageOld.md │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── dropdown │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-dropdown.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── alignment │ │ │ │ │ ├── menu-alignment.html │ │ │ │ │ └── menu-alignment.ts │ │ │ │ ├── anchor-trigger │ │ │ │ │ ├── anchor-trigger.html │ │ │ │ │ └── anchor-trigger.ts │ │ │ │ ├── animated │ │ │ │ │ ├── animated.html │ │ │ │ │ └── animated.ts │ │ │ │ ├── autoclose │ │ │ │ │ ├── autoclose.html │ │ │ │ │ └── autoclose.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── container │ │ │ │ │ ├── container.html │ │ │ │ │ └── container.ts │ │ │ │ ├── custom-html │ │ │ │ │ ├── custom-html.html │ │ │ │ │ └── custom-html.ts │ │ │ │ ├── disabled-item │ │ │ │ │ ├── disabled-item.html │ │ │ │ │ └── disabled-item.ts │ │ │ │ ├── disabled-menu │ │ │ │ │ ├── disabled-menu.html │ │ │ │ │ └── disabled-menu.ts │ │ │ │ ├── dropup │ │ │ │ │ ├── dropup.html │ │ │ │ │ └── dropup.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inside-click │ │ │ │ │ ├── inside-click.html │ │ │ │ │ └── inside-click.ts │ │ │ │ ├── keyboard │ │ │ │ │ ├── keyboard.html │ │ │ │ │ └── keyboard.ts │ │ │ │ ├── menu-dividers │ │ │ │ │ ├── menu-dividers.html │ │ │ │ │ └── menu-dividers.ts │ │ │ │ ├── nested-dropdowns │ │ │ │ │ ├── nested-dropdowns.html │ │ │ │ │ └── nested-dropdowns.ts │ │ │ │ ├── split │ │ │ │ │ ├── split.html │ │ │ │ │ └── split.ts │ │ │ │ ├── state-change-event │ │ │ │ │ ├── state-change-event.html │ │ │ │ │ └── state-change-event.ts │ │ │ │ ├── trigger-by-isopen-property │ │ │ │ │ ├── trigger-by-isopen-property.html │ │ │ │ │ └── trigger-by-isopen-property.ts │ │ │ │ ├── triggers-manual │ │ │ │ │ ├── triggers-manual.html │ │ │ │ │ └── triggers-manual.ts │ │ │ │ └── visibility-events │ │ │ │ │ ├── visibility-events.html │ │ │ │ │ └── visibility-events.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── dropdown-section.component.html │ │ │ ├── dropdown-section.component.ts │ │ │ ├── dropdown-section.list.ts │ │ │ ├── dropdown.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── modal │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-modal.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── auto-shown │ │ │ │ │ ├── auto-shown.html │ │ │ │ │ └── auto-shown.ts │ │ │ │ ├── child │ │ │ │ │ ├── child.html │ │ │ │ │ └── child.ts │ │ │ │ ├── events │ │ │ │ │ ├── events.html │ │ │ │ │ └── events.ts │ │ │ │ ├── index.ts │ │ │ │ ├── modal-ref-events │ │ │ │ │ ├── modal-ref-events.html │ │ │ │ │ └── modal-ref-events.ts │ │ │ │ ├── modal-with-popups │ │ │ │ │ ├── modal-with-popups.html │ │ │ │ │ └── modal-with-popups.ts │ │ │ │ ├── nested │ │ │ │ │ ├── nested.html │ │ │ │ │ └── nested.ts │ │ │ │ ├── scrolling-long-content │ │ │ │ │ ├── scrolling-long-content.html │ │ │ │ │ └── scrolling-long-content.ts │ │ │ │ ├── service-component │ │ │ │ │ ├── service-component.html │ │ │ │ │ └── service-component.ts │ │ │ │ ├── service-confirm-window │ │ │ │ │ ├── service-confirm-window.html │ │ │ │ │ └── service-confirm-window.ts │ │ │ │ ├── service-events │ │ │ │ │ ├── service-events.html │ │ │ │ │ └── service-events.ts │ │ │ │ ├── service-interceptor │ │ │ │ │ ├── service-interceptor.html │ │ │ │ │ └── service-interceptor.ts │ │ │ │ ├── service-nested │ │ │ │ │ ├── service-nested.html │ │ │ │ │ └── service-nested.ts │ │ │ │ ├── service-options │ │ │ │ │ ├── change-class │ │ │ │ │ │ ├── change-class.html │ │ │ │ │ │ └── change-class.ts │ │ │ │ │ ├── custom-css-class │ │ │ │ │ │ ├── custom-css-class.html │ │ │ │ │ │ └── custom-css-class.ts │ │ │ │ │ ├── disable-animation │ │ │ │ │ │ ├── disable-animation.html │ │ │ │ │ │ └── disable-animation.ts │ │ │ │ │ ├── disable-backdrop │ │ │ │ │ │ ├── disable-backdrop.html │ │ │ │ │ │ └── disable-backdrop.ts │ │ │ │ │ └── disable-esc-closing │ │ │ │ │ │ ├── disable-esc-closing.html │ │ │ │ │ │ └── disable-esc-closing.ts │ │ │ │ ├── service-template │ │ │ │ │ ├── service-template.html │ │ │ │ │ └── service-template.ts │ │ │ │ ├── sizes │ │ │ │ │ ├── sizes.html │ │ │ │ │ └── sizes.ts │ │ │ │ └── static │ │ │ │ │ ├── static.html │ │ │ │ │ └── static.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── modal-section.component.html │ │ │ ├── modal-section.component.ts │ │ │ ├── modal-section.list.ts │ │ │ ├── modal.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── pagination │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-pagination.routes.ts │ │ │ ├── demos │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── boundary-links │ │ │ │ │ ├── boundary-links.html │ │ │ │ │ └── boundary-links.ts │ │ │ │ ├── content-switching │ │ │ │ │ ├── content-switching.html │ │ │ │ │ └── content-switching.ts │ │ │ │ ├── custom-links-content │ │ │ │ │ ├── custom-links-content.html │ │ │ │ │ └── custom-links-content.ts │ │ │ │ ├── custom-template │ │ │ │ │ ├── custom-template.html │ │ │ │ │ └── custom-template.ts │ │ │ │ ├── direction-links │ │ │ │ │ ├── direction-links.html │ │ │ │ │ └── direction-links.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.html │ │ │ │ │ └── disabled.ts │ │ │ │ ├── index.ts │ │ │ │ ├── limit │ │ │ │ │ ├── limit.html │ │ │ │ │ └── limit.ts │ │ │ │ ├── manual-switching │ │ │ │ │ ├── manual-switching.html │ │ │ │ │ └── manual-switching.ts │ │ │ │ ├── page-changed-event │ │ │ │ │ ├── page-changed-event.html │ │ │ │ │ └── page-changed-event.ts │ │ │ │ ├── pager │ │ │ │ │ ├── pager.html │ │ │ │ │ └── pager.ts │ │ │ │ ├── pages-count-changed │ │ │ │ │ ├── pages-count-changed.html │ │ │ │ │ └── pages-count-changed.ts │ │ │ │ ├── rotate │ │ │ │ │ ├── rotate.html │ │ │ │ │ └── rotate.ts │ │ │ │ └── styling-global │ │ │ │ │ ├── styling-global.html │ │ │ │ │ └── styling-global.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── pagination-section.component.html │ │ │ ├── pagination-section.component.ts │ │ │ ├── pagination-section.list.ts │ │ │ ├── pagination.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── popover │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-popover.routes.ts │ │ │ ├── demos │ │ │ │ ├── adaptive-position-overflow-boundary │ │ │ │ │ ├── adaptive-position-overflow-boundary.css │ │ │ │ │ ├── adaptive-position-overflow-boundary.html │ │ │ │ │ └── adaptive-position-overflow-boundary.ts │ │ │ │ ├── adaptive-position │ │ │ │ │ ├── adaptive-position.html │ │ │ │ │ └── adaptive-position.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── class │ │ │ │ │ ├── class.html │ │ │ │ │ └── class.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── container │ │ │ │ │ ├── container.html │ │ │ │ │ └── container.ts │ │ │ │ ├── corner-placement │ │ │ │ │ ├── corner-placement.html │ │ │ │ │ └── corner-placement.ts │ │ │ │ ├── custom-content │ │ │ │ │ ├── custom-content.html │ │ │ │ │ └── custom-content.ts │ │ │ │ ├── delay │ │ │ │ │ ├── delay.html │ │ │ │ │ └── delay.ts │ │ │ │ ├── dismiss │ │ │ │ │ ├── dismiss.html │ │ │ │ │ └── dismiss.ts │ │ │ │ ├── dynamic-html │ │ │ │ │ ├── dynamic-html.html │ │ │ │ │ └── dynamic-html.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── events │ │ │ │ │ ├── events.html │ │ │ │ │ └── events.ts │ │ │ │ ├── index.ts │ │ │ │ ├── outside-click │ │ │ │ │ ├── outside-click.html │ │ │ │ │ └── outside-click.ts │ │ │ │ ├── placement │ │ │ │ │ ├── placement.html │ │ │ │ │ └── placement.ts │ │ │ │ ├── popover-context │ │ │ │ │ ├── popover-context.html │ │ │ │ │ └── popover-context.ts │ │ │ │ ├── styling-global │ │ │ │ │ ├── styling-global.html │ │ │ │ │ └── styling-global.ts │ │ │ │ ├── styling-local │ │ │ │ │ ├── styling-local.html │ │ │ │ │ └── styling-local.ts │ │ │ │ ├── trigger-by-isopen-property │ │ │ │ │ ├── trigger-by-isopen-property.html │ │ │ │ │ └── trigger-by-isopen-property.ts │ │ │ │ ├── triggers-custom │ │ │ │ │ ├── triggers-custom.html │ │ │ │ │ └── triggers-custom.ts │ │ │ │ └── triggers-manual │ │ │ │ │ ├── triggers-manual.html │ │ │ │ │ └── triggers-manual.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── popover-section.component.html │ │ │ ├── popover-section.component.ts │ │ │ ├── popover-section.list.ts │ │ │ ├── popover.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── progressbar │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-progressbar.routes.ts │ │ │ ├── demos │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── index.ts │ │ │ │ ├── stacked │ │ │ │ │ ├── stacked.html │ │ │ │ │ └── stacked.ts │ │ │ │ └── static │ │ │ │ │ ├── static.html │ │ │ │ │ └── static.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── progressbar-section.component.html │ │ │ ├── progressbar-section.component.ts │ │ │ ├── progressbar-section.list.ts │ │ │ ├── progressbar.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── rating │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-rating.routes.ts │ │ │ ├── demos │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── custom │ │ │ │ │ ├── custom.html │ │ │ │ │ └── custom.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── index.ts │ │ │ │ └── select-on-enter │ │ │ │ │ ├── select-on-enter.html │ │ │ │ │ └── select-on-enter.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── rating-section.component.html │ │ │ ├── rating-section.component.ts │ │ │ ├── rating-section.list.ts │ │ │ ├── rating.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── sortable │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-sortable.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.component.html │ │ │ │ │ └── basic.component.ts │ │ │ │ ├── complex-datamodel │ │ │ │ │ ├── complex-datamodel.component.html │ │ │ │ │ └── complex-datamodel.component.ts │ │ │ │ ├── custom-item-template │ │ │ │ │ ├── custom-item-template.html │ │ │ │ │ └── custom-item-template.ts │ │ │ │ └── index.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── sortable-section.component.html │ │ │ ├── sortable-section.component.ts │ │ │ ├── sortable-section.list.ts │ │ │ └── sortable.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── tabs │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-tabs.routes.ts │ │ │ ├── demos │ │ │ │ ├── accessibility │ │ │ │ │ ├── accessibility.html │ │ │ │ │ └── accessibility.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── custom-class │ │ │ │ │ ├── custom-class.html │ │ │ │ │ └── custom-class.ts │ │ │ │ ├── custom-template │ │ │ │ │ ├── custom-template.html │ │ │ │ │ └── custom-template.ts │ │ │ │ ├── disabled-key-navigations │ │ │ │ │ ├── disabled-key-navigations.html │ │ │ │ │ └── disabled-key-navigations.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.html │ │ │ │ │ └── disabled.ts │ │ │ │ ├── dynamic-content-rendering │ │ │ │ │ ├── dynamic-content-rendering.css │ │ │ │ │ ├── dynamic-content-rendering.html │ │ │ │ │ ├── dynamic-content-rendering.ts │ │ │ │ │ └── sub-component │ │ │ │ │ │ ├── sub-component.css │ │ │ │ │ │ ├── sub-component.html │ │ │ │ │ │ └── sub-component.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── index.ts │ │ │ │ ├── justified │ │ │ │ │ ├── justified.html │ │ │ │ │ └── justified.ts │ │ │ │ ├── manual-selection │ │ │ │ │ ├── manual-selection.html │ │ │ │ │ └── manual-selection.ts │ │ │ │ ├── pills │ │ │ │ │ ├── pills.html │ │ │ │ │ └── pills.ts │ │ │ │ ├── select-event │ │ │ │ │ ├── select-event.html │ │ │ │ │ └── select-event.ts │ │ │ │ └── vertical-pills │ │ │ │ │ ├── vertical-pills.html │ │ │ │ │ └── vertical-pills.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── tabs-section.component.html │ │ │ ├── tabs-section.component.ts │ │ │ ├── tabs-section.list.ts │ │ │ ├── tabs.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── timepicker │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-timepicker.routes.ts │ │ │ ├── demos │ │ │ │ ├── arrowkeys │ │ │ │ │ ├── arrowkeys.html │ │ │ │ │ └── arrowkeys.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── custom-meridian │ │ │ │ │ ├── custom-meridian.html │ │ │ │ │ └── custom-meridian.ts │ │ │ │ ├── custom-validation │ │ │ │ │ ├── custom-validation.html │ │ │ │ │ └── custom-validation.ts │ │ │ │ ├── custom │ │ │ │ │ ├── custom.html │ │ │ │ │ └── custom.ts │ │ │ │ ├── disabled │ │ │ │ │ ├── disabled.html │ │ │ │ │ └── disabled.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── empty-date │ │ │ │ │ ├── empty-date.html │ │ │ │ │ └── empty-date.ts │ │ │ │ ├── form │ │ │ │ │ ├── form.html │ │ │ │ │ └── form.ts │ │ │ │ ├── index.ts │ │ │ │ ├── isvalid │ │ │ │ │ ├── isvalid.html │ │ │ │ │ └── isvalid.ts │ │ │ │ ├── meridian │ │ │ │ │ ├── meridian.html │ │ │ │ │ └── meridian.ts │ │ │ │ ├── min-max │ │ │ │ │ ├── min-max.html │ │ │ │ │ └── min-max.ts │ │ │ │ ├── mousewheel │ │ │ │ │ ├── mousewheel.html │ │ │ │ │ └── mousewheel.ts │ │ │ │ ├── placeholder │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── placeholder.ts │ │ │ │ ├── readonly │ │ │ │ │ ├── readonly.html │ │ │ │ │ └── readonly.ts │ │ │ │ ├── spinners │ │ │ │ │ ├── spinners.html │ │ │ │ │ └── spinners.ts │ │ │ │ └── toggle-minutes-seconds │ │ │ │ │ ├── toggle-minutes-seconds.html │ │ │ │ │ └── toggle-minutes-seconds.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── timepicker-section.component.html │ │ │ ├── timepicker-section.component.ts │ │ │ ├── timepicker-section.list.ts │ │ │ ├── timepicker.module.ts │ │ │ └── todo.md │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ ├── tooltip │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ ├── lib │ │ │ ├── demo-tooltip.routes.ts │ │ │ ├── demos │ │ │ │ ├── adaptive-position │ │ │ │ │ ├── adaptive-position.html │ │ │ │ │ └── adaptive-position.ts │ │ │ │ ├── basic │ │ │ │ │ ├── basic.html │ │ │ │ │ └── basic.ts │ │ │ │ ├── class │ │ │ │ │ ├── class.html │ │ │ │ │ └── class.ts │ │ │ │ ├── config │ │ │ │ │ ├── config.html │ │ │ │ │ └── config.ts │ │ │ │ ├── container │ │ │ │ │ ├── container.html │ │ │ │ │ └── container.ts │ │ │ │ ├── custom-content │ │ │ │ │ ├── custom-content.html │ │ │ │ │ └── custom-content.ts │ │ │ │ ├── delay │ │ │ │ │ ├── delay.html │ │ │ │ │ └── delay.ts │ │ │ │ ├── dismiss │ │ │ │ │ ├── dismiss.html │ │ │ │ │ └── dismiss.ts │ │ │ │ ├── dynamic-html │ │ │ │ │ ├── dynamic-html.html │ │ │ │ │ └── dynamic-html.ts │ │ │ │ ├── dynamic │ │ │ │ │ ├── dynamic.html │ │ │ │ │ └── dynamic.ts │ │ │ │ ├── index.ts │ │ │ │ ├── placement │ │ │ │ │ ├── placement.html │ │ │ │ │ └── placement.ts │ │ │ │ ├── styling-global │ │ │ │ │ ├── styling-global.html │ │ │ │ │ └── styling-global.ts │ │ │ │ ├── styling-local │ │ │ │ │ ├── styling-local.html │ │ │ │ │ └── styling-local.ts │ │ │ │ ├── triggers-custom │ │ │ │ │ ├── triggers-custom.html │ │ │ │ │ └── triggers-custom.ts │ │ │ │ └── triggers-manual │ │ │ │ │ ├── triggers-manual.html │ │ │ │ │ └── triggers-manual.ts │ │ │ ├── docs │ │ │ │ └── usage.md │ │ │ ├── todo.md │ │ │ ├── tooltip-section.component.html │ │ │ ├── tooltip-section.component.ts │ │ │ ├── tooltip-section.list.ts │ │ │ └── tooltip.module.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json │ └── typeahead │ ├── .eslintrc.json │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── src │ ├── index.ts │ ├── lib │ │ ├── demo-typeahead.routes.ts │ │ ├── demos │ │ │ ├── adaptive-position │ │ │ │ ├── adaptive-position.html │ │ │ │ └── adaptive-position.ts │ │ │ ├── animated │ │ │ │ ├── animated.html │ │ │ │ └── animated.ts │ │ │ ├── async-http-request │ │ │ │ ├── async-http-request.html │ │ │ │ └── async-http-request.ts │ │ │ ├── async │ │ │ │ ├── async.html │ │ │ │ └── async.ts │ │ │ ├── basic │ │ │ │ ├── basic.html │ │ │ │ └── basic.ts │ │ │ ├── cancel-on-focus-lost │ │ │ │ ├── cancel-on-focus-lost.html │ │ │ │ └── cancel-on-focus-lost.ts │ │ │ ├── config │ │ │ │ ├── config.html │ │ │ │ └── config.ts │ │ │ ├── container │ │ │ │ ├── container.html │ │ │ │ └── container.ts │ │ │ ├── delay │ │ │ │ ├── delay.html │ │ │ │ └── delay.ts │ │ │ ├── dropup │ │ │ │ ├── dropup.html │ │ │ │ └── dropup.ts │ │ │ ├── field │ │ │ │ ├── field.html │ │ │ │ └── field.ts │ │ │ ├── first-item-active │ │ │ │ ├── first-item-active.html │ │ │ │ └── first-item-active.ts │ │ │ ├── form │ │ │ │ ├── form.html │ │ │ │ └── form.ts │ │ │ ├── grouping │ │ │ │ ├── grouping.html │ │ │ │ └── grouping.ts │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── typeahead.interfaces.ts │ │ │ ├── item-template │ │ │ │ ├── item-template.html │ │ │ │ └── item-template.ts │ │ │ ├── latinize │ │ │ │ ├── latinize.html │ │ │ │ └── latinize.ts │ │ │ ├── list-template │ │ │ │ ├── list-template.html │ │ │ │ └── list-template.ts │ │ │ ├── min-length │ │ │ │ ├── min-length.html │ │ │ │ └── min-length.ts │ │ │ ├── multiple-search │ │ │ │ ├── multiple-search.html │ │ │ │ └── multiple-search.ts │ │ │ ├── no-result │ │ │ │ ├── no-result.html │ │ │ │ └── no-result.ts │ │ │ ├── on-blur │ │ │ │ ├── on-blur.html │ │ │ │ └── on-blur.ts │ │ │ ├── on-select │ │ │ │ ├── on-select.html │ │ │ │ └── on-select.ts │ │ │ ├── ordering │ │ │ │ ├── ordering.html │ │ │ │ └── ordering.ts │ │ │ ├── phrase-delimiters │ │ │ │ ├── phrase-delimiters.html │ │ │ │ └── phrase-delimiters.ts │ │ │ ├── reactive-form │ │ │ │ ├── reactive-form.html │ │ │ │ └── reactive-form.ts │ │ │ ├── scrollable │ │ │ │ ├── scrollable.html │ │ │ │ └── scrollable.ts │ │ │ ├── selected-first-item │ │ │ │ ├── selected-first-item.html │ │ │ │ └── selected-first-item.ts │ │ │ ├── show-on-blur │ │ │ │ ├── show-on-blur.html │ │ │ │ └── show-on-blur.ts │ │ │ └── single-world │ │ │ │ ├── single-world.html │ │ │ │ └── single-world.ts │ │ ├── docs │ │ │ └── usage.md │ │ ├── todo.md │ │ ├── typeahead-section.component.html │ │ ├── typeahead-section.component.ts │ │ ├── typeahead-section.list.ts │ │ └── typeahead.module.ts │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── scripts ├── .gitignore ├── docs │ ├── LICENSE │ ├── api-doc-test-cases │ │ ├── class-with-doc.ts │ │ ├── component-with-internal-methods.ts │ │ ├── directives-no-in-out.ts │ │ ├── directives-with-inputs-default-vals.ts │ │ ├── directives-with-inputs-types-to-infer.ts │ │ ├── directives-with-inputs.ts │ │ ├── directives-with-methods.ts │ │ ├── directives-with-outputs.ts │ │ ├── directives-with-tricky-inputs.ts │ │ ├── interface-with-methods.ts │ │ ├── interface-with-properties.ts │ │ ├── no-docs.ts │ │ ├── services-with-methods.ts │ │ └── services-with-properties.ts │ ├── api-doc.js │ ├── api-doc.spec.js │ └── get-doc.js ├── gh-pages-predeploy.ts ├── helpers.ts ├── jest │ └── toHaveCssClass.ts └── set-version.ts ├── scully.ngx-bootstrap-docs.config.ts ├── src ├── accordion │ ├── .eslintrc.json │ ├── README.md │ ├── accordion-group.component.html │ ├── accordion-group.component.ts │ ├── accordion.component.ts │ ├── accordion.config.ts │ ├── accordion.module.ts │ ├── accordion.scss │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── accordion.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── alert │ ├── .eslintrc.json │ ├── README.md │ ├── alert.component.html │ ├── alert.component.ts │ ├── alert.config.ts │ ├── alert.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── alert.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── buttons │ ├── .eslintrc.json │ ├── README.md │ ├── button-checkbox.directive.ts │ ├── button-radio-group.directive.ts │ ├── button-radio.directive.ts │ ├── buttons.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── button.directive.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── carousel │ ├── .eslintrc.json │ ├── README.md │ ├── carousel.component.html │ ├── carousel.component.ts │ ├── carousel.config.ts │ ├── carousel.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── slide.component.ts │ ├── testing │ │ ├── carousel.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── utils.ts ├── chronos │ ├── .eslintrc.json │ ├── LICENSE │ ├── README.md │ ├── create │ │ ├── check-overflow.ts │ │ ├── clone.ts │ │ ├── date-from-array.ts │ │ ├── from-anything.ts │ │ ├── from-array.ts │ │ ├── from-object.ts │ │ ├── from-string-and-array.ts │ │ ├── from-string-and-format.ts │ │ ├── from-string.ts │ │ ├── local.ts │ │ ├── parsing-flags.ts │ │ ├── parsing.types.ts │ │ ├── utc.ts │ │ └── valid.ts │ ├── duration │ │ ├── bubble.ts │ │ ├── constructor.ts │ │ ├── create.ts │ │ ├── humanize.ts │ │ └── valid.ts │ ├── format.ts │ ├── format │ │ └── format.ts │ ├── i18n │ │ ├── ar.ts │ │ ├── bg.ts │ │ ├── ca.ts │ │ ├── cs.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── en-gb.ts │ │ ├── es-do.ts │ │ ├── es-pr.ts │ │ ├── es-us.ts │ │ ├── es.ts │ │ ├── et.ts │ │ ├── fa.ts │ │ ├── fi.ts │ │ ├── fr-ca.ts │ │ ├── fr.ts │ │ ├── gl.ts │ │ ├── he.ts │ │ ├── hi.ts │ │ ├── hr.ts │ │ ├── hu.ts │ │ ├── id.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka.ts │ │ ├── kk.ts │ │ ├── ko.ts │ │ ├── lt.ts │ │ ├── lv.ts │ │ ├── mn.ts │ │ ├── nb.ts │ │ ├── nl-be.ts │ │ ├── nl.ts │ │ ├── pl.ts │ │ ├── pt-br.ts │ │ ├── ro.ts │ │ ├── ru.ts │ │ ├── sk.ts │ │ ├── sl.ts │ │ ├── sq.ts │ │ ├── sv.ts │ │ ├── th-be.ts │ │ ├── th.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── vi.ts │ │ └── zh-cn.ts │ ├── index.ts │ ├── jest.config.ts │ ├── locale │ │ ├── calendar.ts │ │ ├── locale.class.ts │ │ ├── locale.defaults.ts │ │ └── locales.ts │ ├── moment │ │ ├── add-subtract.ts │ │ ├── calendar.ts │ │ ├── diff.ts │ │ ├── from.ts │ │ └── min-max.ts │ ├── ng-package.json │ ├── package.json │ ├── parse │ │ ├── regex.ts │ │ └── token.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── chain.ts │ │ ├── locale │ │ │ ├── ar.spec.ts │ │ │ ├── bg.spec.ts │ │ │ ├── ca.spec.ts │ │ │ ├── cs.spec.ts │ │ │ ├── da.spec.ts │ │ │ ├── de.spec.ts │ │ │ ├── en-gb.spec.ts │ │ │ ├── en.spec.ts │ │ │ ├── es-do.spec.ts │ │ │ ├── es-pr.spec.ts │ │ │ ├── es-us.spec.ts │ │ │ ├── es.spec.ts │ │ │ ├── et.spec.ts │ │ │ ├── fa.Spec.ts │ │ │ ├── fi.spec.ts │ │ │ ├── fr-ca.spec.ts │ │ │ ├── fr.spec.ts │ │ │ ├── gl.spec.ts │ │ │ ├── he.spec.ts │ │ │ ├── hi.spec.ts │ │ │ ├── hr.spec.ts │ │ │ ├── hu.spec.ts │ │ │ ├── id.spec.ts │ │ │ ├── it.spec.ts │ │ │ ├── ja.spec.ts │ │ │ ├── ka.spec.ts │ │ │ ├── kk.spec.ts │ │ │ ├── ko.spec.ts │ │ │ ├── lt.spec.ts │ │ │ ├── lv.spec.ts │ │ │ ├── mn.spec.ts │ │ │ ├── nb.spec.ts │ │ │ ├── nl-be.spec.ts │ │ │ ├── nl.spec.ts │ │ │ ├── pl.spec.ts │ │ │ ├── pt-br.spec.ts │ │ │ ├── ro.spec.ts │ │ │ ├── ru.spec.ts │ │ │ ├── sk.spec.ts │ │ │ ├── sl.spec.ts │ │ │ ├── sq.spec.ts │ │ │ ├── sv.spec.ts │ │ │ ├── th-be.spec.ts │ │ │ ├── th.spec.ts │ │ │ ├── tr.spec.ts │ │ │ ├── uk.spec.ts │ │ │ ├── vi.spec.ts │ │ │ └── zh-cn.spec.ts │ │ ├── moment │ │ │ ├── add_subtract.spec.ts │ │ │ ├── calendar.spec.ts │ │ │ ├── create.spec.ts │ │ │ ├── days_in_month.spec.ts │ │ │ ├── days_in_year.spec.ts │ │ │ ├── diff.spec.ts │ │ │ ├── format.spec.ts │ │ │ ├── getters_setters.spec.ts │ │ │ ├── is_after.spec.ts │ │ │ ├── is_array.spec.ts │ │ │ ├── is_before.spec.ts │ │ │ ├── is_between.spec.ts │ │ │ ├── is_date.spec.ts │ │ │ ├── is_number.spec.ts │ │ │ ├── is_same.spec.ts │ │ │ ├── is_same_or_after.spec.ts │ │ │ ├── is_same_or_before.spec.ts │ │ │ ├── is_valid.spec.ts │ │ │ ├── leapyear.spec.ts │ │ │ ├── listers.spec.ts │ │ │ ├── locale.spec.ts │ │ │ ├── locale_inheritance.spec.ts │ │ │ ├── locale_update.spec.ts │ │ │ ├── min_max.spec.ts │ │ │ ├── preparse_postformat.spec.ts │ │ │ ├── quarter.spec.ts │ │ │ ├── start_end_of.spec.ts │ │ │ ├── to_type.spec.ts │ │ │ ├── utc.spec.ts │ │ │ ├── utc_offset.spec.ts │ │ │ ├── week_year.spec.ts │ │ │ ├── weekday.spec.ts │ │ │ ├── weeks.spec.ts │ │ │ ├── weeks_in_year.spec.ts │ │ │ └── zone_switching.spec.ts │ │ ├── test-helpers.ts │ │ ├── test-setup.ts │ │ └── units.spec.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── types.ts │ ├── units │ │ ├── aliases.ts │ │ ├── constants.ts │ │ ├── day-of-month.ts │ │ ├── day-of-week.ts │ │ ├── day-of-year.ts │ │ ├── hour.ts │ │ ├── index.ts │ │ ├── millisecond.ts │ │ ├── minute.ts │ │ ├── month.ts │ │ ├── offset.ts │ │ ├── priorities.ts │ │ ├── quarter.ts │ │ ├── second.ts │ │ ├── timestamp.ts │ │ ├── timezone.ts │ │ ├── week-calendar-utils.ts │ │ ├── week-year.ts │ │ ├── week.ts │ │ └── year.ts │ ├── utils.ts │ └── utils │ │ ├── abs-ceil.ts │ │ ├── abs-round.ts │ │ ├── compare-arrays.ts │ │ ├── date-compare.ts │ │ ├── date-getters.ts │ │ ├── date-setters.ts │ │ ├── defaults.ts │ │ ├── start-end-of.ts │ │ ├── type-checks.ts │ │ └── zero-fill.ts ├── collapse │ ├── .eslintrc.json │ ├── README.md │ ├── collapse-animations.ts │ ├── collapse.directive.ts │ ├── collapse.module.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── collapse.directive.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── component-loader │ ├── .eslintrc.json │ ├── README.md │ ├── bs-component-ref.class.ts │ ├── component-loader.class.ts │ ├── component-loader.factory.ts │ ├── content-ref.class.ts │ ├── index.ts │ ├── jest.config.ts │ ├── listen-options.model.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── datepicker │ ├── .eslintrc.json │ ├── README.md │ ├── base │ │ └── bs-datepicker-container.ts │ ├── bs-datepicker-inline.component.ts │ ├── bs-datepicker-inline.config.ts │ ├── bs-datepicker-input.directive.ts │ ├── bs-datepicker.component.ts │ ├── bs-datepicker.config.ts │ ├── bs-datepicker.module.ts │ ├── bs-datepicker.scss │ ├── bs-daterangepicker-inline.component.ts │ ├── bs-daterangepicker-inline.config.ts │ ├── bs-daterangepicker-input.directive.ts │ ├── bs-daterangepicker.component.ts │ ├── bs-daterangepicker.config.ts │ ├── bs-locale.service.ts │ ├── datepicker-animations.ts │ ├── engine │ │ ├── calc-days-calendar.ts │ │ ├── flag-days-calendar.ts │ │ ├── flag-days.calendar.spec.ts │ │ ├── flag-months-calendar.ts │ │ ├── flag-years-calendar.ts │ │ ├── format-days-calendar.ts │ │ ├── format-months-calendar.ts │ │ ├── format-years-calendar.ts │ │ └── view-mode.ts │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── reducer │ │ ├── _defaults.ts │ │ ├── bs-datepicker.actions.ts │ │ ├── bs-datepicker.effects.ts │ │ ├── bs-datepicker.reducer.ts │ │ ├── bs-datepicker.state.ts │ │ └── bs-datepicker.store.ts │ ├── testing │ │ ├── bs-datepicker-day-decorator.spec.ts │ │ ├── bs-datepicker-navigation-view.spec.ts │ │ ├── bs-datepicker-utils.spec.ts │ │ ├── bs-datepicker.reducer.spec.ts │ │ ├── bs-datepicker.spec.ts │ │ ├── bs-daterangepicker.spec.ts │ │ ├── bs-inline-datepicker-minmode-year.spec.ts │ │ ├── bs-inline-datepicker.spec.ts │ │ ├── bs-inline-daterangepicker.spec.ts │ │ ├── flaggedMonthsMock.ts │ │ └── test-setup.ts │ ├── themes │ │ └── bs │ │ │ ├── bs-calendar-layout.component.ts │ │ │ ├── bs-current-date-view.component.ts │ │ │ ├── bs-custom-dates-view.component.ts │ │ │ ├── bs-datepicker-container.component.ts │ │ │ ├── bs-datepicker-day-decorator.directive.ts │ │ │ ├── bs-datepicker-inline-container.component.ts │ │ │ ├── bs-datepicker-navigation-view.component.ts │ │ │ ├── bs-datepicker-view.html │ │ │ ├── bs-daterangepicker-container.component.ts │ │ │ ├── bs-daterangepicker-inline-container.component.ts │ │ │ ├── bs-days-calendar-view.component.ts │ │ │ ├── bs-months-calendar-view.component.ts │ │ │ ├── bs-timepicker-view.component.ts │ │ │ └── bs-years-calendar-view.component.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── utils │ │ ├── bs-calendar-utils.ts │ │ ├── copy-time-utils.ts │ │ ├── matrix-utils.ts │ │ └── scss │ │ ├── mixins.scss │ │ └── variables.scss ├── dropdown │ ├── .eslintrc.json │ ├── README.md │ ├── bs-dropdown-container.component.ts │ ├── bs-dropdown-menu.directive.ts │ ├── bs-dropdown-toggle.directive.ts │ ├── bs-dropdown.config.ts │ ├── bs-dropdown.directive.ts │ ├── bs-dropdown.module.ts │ ├── bs-dropdown.state.ts │ ├── dropdown-animations.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── bs-dropdown-container.component.spec.ts │ │ ├── bs-dropdown.directive.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── focus-trap │ ├── .eslintrc.json │ ├── README.md │ ├── boolean-property.ts │ ├── configurable-focus-trap-config.ts │ ├── configurable-focus-trap-factory.ts │ ├── configurable-focus-trap.ts │ ├── event-listener-inert-strategy.ts │ ├── focus-trap-inert-strategy.ts │ ├── focus-trap-manager.ts │ ├── focus-trap.module.ts │ ├── focus-trap.ts │ ├── index.ts │ ├── interactivity-checker.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── platform.ts │ ├── polyfill.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── locale │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── mini-ngrx │ ├── .eslintrc.json │ ├── LICENCE │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── state.class.ts │ ├── store.class.ts │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── modal │ ├── .eslintrc.json │ ├── README.md │ ├── bs-modal-ref.service.ts │ ├── bs-modal.service.ts │ ├── index.ts │ ├── jest.config.ts │ ├── modal-backdrop.component.ts │ ├── modal-backdrop.options.ts │ ├── modal-container.component.ts │ ├── modal-options.class.ts │ ├── modal.directive.ts │ ├── modal.module.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── bs-modal.service.spec.ts │ │ ├── modal-backdrop.component.spec.ts │ │ ├── modal.default-setting.spec.ts │ │ ├── modal.service.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── pagination │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── pager.component.html │ ├── pager.component.ts │ ├── pagination.component.html │ ├── pagination.component.ts │ ├── pagination.config.ts │ ├── pagination.module.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── pager.component.spec.ts │ │ ├── pagination.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── popover │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── popover-container.component.html │ ├── popover-container.component.ts │ ├── popover.config.ts │ ├── popover.directive.ts │ ├── popover.module.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── positioning │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── modifiers │ │ ├── arrow.ts │ │ ├── flip.ts │ │ ├── index.ts │ │ ├── initData.ts │ │ ├── preventOverflow.ts │ │ └── shift.ts │ ├── ng-package.json │ ├── ng-positioning.ts │ ├── package.json │ ├── positioning.service.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── computeAutoPlacement.spec.ts │ │ ├── getBoundingClientRect.spec.ts │ │ ├── preventOverflow.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ └── utils │ │ ├── checkMargin.ts │ │ ├── computeAutoPlacement.ts │ │ ├── findCommonOffsetParent.ts │ │ ├── getBordersSize.ts │ │ ├── getBoundaries.ts │ │ ├── getBoundingClientRect.ts │ │ ├── getClientRect.ts │ │ ├── getFixedPositionOffsetParent.ts │ │ ├── getOffsetParent.ts │ │ ├── getOffsetRectRelativeToArbitraryNode.ts │ │ ├── getOffsets.ts │ │ ├── getOppositePlacement.ts │ │ ├── getOppositeVariation.ts │ │ ├── getOuterSizes.ts │ │ ├── getParentNode.ts │ │ ├── getReferenceOffsets.ts │ │ ├── getRoot.ts │ │ ├── getScroll.ts │ │ ├── getScrollParent.ts │ │ ├── getStyleComputedProperty.ts │ │ ├── getTargetOffsets.ts │ │ ├── getViewportOffsetRectRelativeToArtbitraryNode.ts │ │ ├── getWindowSizes.ts │ │ ├── includeScroll.ts │ │ ├── index.ts │ │ ├── isBrowser.ts │ │ ├── isFixed.ts │ │ ├── isModifierEnabled.ts │ │ ├── isNumeric.ts │ │ ├── isOffsetContainer.ts │ │ ├── setStyles.ts │ │ └── updateContainerClass.ts ├── progressbar │ ├── .eslintrc.json │ ├── README.md │ ├── bar.component.html │ ├── bar.component.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── progressbar-type.interface.ts │ ├── progressbar.component.html │ ├── progressbar.component.ts │ ├── progressbar.config.ts │ ├── progressbar.module.ts │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── progressbar.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── rating │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── rating.component.html │ ├── rating.component.ts │ ├── rating.config.ts │ ├── rating.module.ts │ ├── testing │ │ ├── rating.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── root │ ├── .eslintrc.json │ ├── LICENSE │ ├── README.md │ ├── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── testing │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── schematics │ ├── .eslintrc.json │ ├── README.md │ ├── package.json │ ├── src │ │ ├── collection.json │ │ ├── ng-add │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── schema.ts │ │ ├── project.json │ │ └── utils │ │ │ ├── addStyles.ts │ │ │ ├── current_dependency_versions.json │ │ │ ├── getVersions.ts │ │ │ ├── index.ts │ │ │ ├── ng-module-imports.ts │ │ │ ├── project-main-file.ts │ │ │ └── project-targets.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── sortable │ ├── .eslintrc.json │ ├── README.md │ ├── draggable-item.service.ts │ ├── draggable-item.ts │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── sortable.component.ts │ ├── sortable.module.ts │ ├── testing │ │ ├── draggable-item.service.spec.ts │ │ ├── sortable.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tabs │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── ng-transclude.directive.ts │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── tab-heading.directive.ts │ ├── tab.directive.ts │ ├── tabs.module.ts │ ├── tabs.scss │ ├── tabset.component.html │ ├── tabset.component.ts │ ├── tabset.config.ts │ ├── testing │ │ ├── tab-ordering.spec.ts │ │ ├── tabset.component.spec.ts │ │ └── test-setup.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── timepicker │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── reducer │ │ ├── timepicker.actions.ts │ │ ├── timepicker.reducer.ts │ │ └── timepicker.store.ts │ ├── testing │ │ ├── test-setup.ts │ │ ├── timepicker-controls.util.spec.ts │ │ ├── timepicker.component.spec.ts │ │ └── timepicker.utils.spec.ts │ ├── timepicker-controls.util.ts │ ├── timepicker.component.html │ ├── timepicker.component.ts │ ├── timepicker.config.ts │ ├── timepicker.models.ts │ ├── timepicker.module.ts │ ├── timepicker.utils.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tooltip │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── test-setup.ts │ │ └── tooltip.directive.spec.ts │ ├── tooltip-container.component.ts │ ├── tooltip.config.ts │ ├── tooltip.directive.ts │ ├── tooltip.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── typeahead │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── jest.config.ts │ ├── latin-map.ts │ ├── models │ │ └── index.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ │ ├── test-setup.ts │ │ ├── typeahead-container.component.spec.ts │ │ ├── typeahead-match.class.spec.ts │ │ └── typeahead.directive.spec.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── typeahead-animations.ts │ ├── typeahead-container.component.html │ ├── typeahead-container.component.ts │ ├── typeahead-match.class.ts │ ├── typeahead-options.class.ts │ ├── typeahead-order.class.ts │ ├── typeahead-utils.ts │ ├── typeahead.config.ts │ ├── typeahead.directive.ts │ └── typeahead.module.ts └── utils │ ├── .eslintrc.json │ ├── README.md │ ├── decorators.ts │ ├── facade │ └── browser.ts │ ├── index.ts │ ├── jest.config.ts │ ├── linked-list.class.ts │ ├── ng-package.json │ ├── package.json │ ├── project.json │ ├── public_api.ts │ ├── testing │ ├── linkedlist.spec.ts │ └── test-setup.ts │ ├── theme-provider.ts │ ├── trigger.class.ts │ ├── triggers.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ ├── tsconfig.spec.json │ ├── utils.class.ts │ └── warn-once.ts └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.github/ISSUE_TEMPLATE/bug-report-.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/on-gh-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.github/workflows/on-gh-release.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-or-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.github/workflows/on-push-or-pull.yml -------------------------------------------------------------------------------- /.github/workflows/on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.github/workflows/on-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run lint 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact = true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.release-it.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /_root/.gihtub/on-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/.gihtub/on-pull-request.yml -------------------------------------------------------------------------------- /_root/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/.travis.yml -------------------------------------------------------------------------------- /_root/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/Dockerfile -------------------------------------------------------------------------------- /_root/_cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/_cypress.json -------------------------------------------------------------------------------- /_root/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/angular.json -------------------------------------------------------------------------------- /_root/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/cypress/plugins/index.js -------------------------------------------------------------------------------- /_root/cypress/snapshot/snapshot_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/cypress/snapshot/snapshot_spec.js -------------------------------------------------------------------------------- /_root/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/cypress/support/commands.js -------------------------------------------------------------------------------- /_root/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/cypress/support/index.js -------------------------------------------------------------------------------- /_root/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/cypress/tsconfig.json -------------------------------------------------------------------------------- /_root/demo/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | src/api-doc.json 3 | -------------------------------------------------------------------------------- /_root/demo/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/demo/src/app/app.server.module.ts -------------------------------------------------------------------------------- /_root/demo/src/environments/environment.server.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | useHash: false 4 | }; 5 | -------------------------------------------------------------------------------- /_root/demo/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/demo/src/main.server.ts -------------------------------------------------------------------------------- /_root/karma-demo.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/karma-demo.conf.js -------------------------------------------------------------------------------- /_root/karma-source.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/karma-source.conf.js -------------------------------------------------------------------------------- /_root/karma.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/karma.base.conf.js -------------------------------------------------------------------------------- /_root/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/karma.conf.js -------------------------------------------------------------------------------- /_root/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers ts:ts-node/register 2 | src/chronos/**/*.spec.ts 3 | -------------------------------------------------------------------------------- /_root/ngcc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/ngcc.config.js -------------------------------------------------------------------------------- /_root/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/package.json -------------------------------------------------------------------------------- /_root/scripts/bs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/bs-config.js -------------------------------------------------------------------------------- /_root/scripts/build-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/build-modules.js -------------------------------------------------------------------------------- /_root/scripts/ci/npm-ci-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ci/npm-ci-key.sh -------------------------------------------------------------------------------- /_root/scripts/ci/npm-ng-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ci/npm-ng-latest.sh -------------------------------------------------------------------------------- /_root/scripts/ci/npm-ng-min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ci/npm-ng-min.sh -------------------------------------------------------------------------------- /_root/scripts/ci/npm-ng-next.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ci/npm-ng-next.sh -------------------------------------------------------------------------------- /_root/scripts/ci/update-pkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ci/update-pkg.js -------------------------------------------------------------------------------- /_root/scripts/fetch-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/fetch-docs.js -------------------------------------------------------------------------------- /_root/scripts/matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/matchers.ts -------------------------------------------------------------------------------- /_root/scripts/ng-packagr/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/ng-packagr/api.js -------------------------------------------------------------------------------- /_root/scripts/schematics/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/schematics/build.js -------------------------------------------------------------------------------- /_root/scripts/test-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/test-demo.ts -------------------------------------------------------------------------------- /_root/scripts/test-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/test-source.ts -------------------------------------------------------------------------------- /_root/scripts/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/typings.d.ts -------------------------------------------------------------------------------- /_root/scripts/universal/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/universal/app.module.ts -------------------------------------------------------------------------------- /_root/scripts/universal/prerender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/universal/prerender.ts -------------------------------------------------------------------------------- /_root/scripts/universal/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/universal/server.ts -------------------------------------------------------------------------------- /_root/scripts/universal/static.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/universal/static.paths.ts -------------------------------------------------------------------------------- /_root/scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/scripts/version.js -------------------------------------------------------------------------------- /_root/tools/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/tools/gen.sh -------------------------------------------------------------------------------- /_root/tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_root/tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /_root/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/tsconfig.json -------------------------------------------------------------------------------- /_root/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/tslint.json -------------------------------------------------------------------------------- /_root/typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/typedoc.js -------------------------------------------------------------------------------- /_root/wallaby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/_root/wallaby.js -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | // no idea where it's required 2 | -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/.eslintrc.json -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/jest.config.js -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/project.json -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/server.ts -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/src/404.html -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/assets/json/current-version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "20.0.2" 3 | } 4 | -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/assets/json/versions.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/src/index.html -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/src/main.ts -------------------------------------------------------------------------------- /apps/ngx-bootstrap-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/apps/ngx-bootstrap-docs/tsconfig.json -------------------------------------------------------------------------------- /breakin-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/breakin-7.md -------------------------------------------------------------------------------- /decorate-angular-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/decorate-angular-cli.js -------------------------------------------------------------------------------- /docs/spec/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/docs/spec/index.md -------------------------------------------------------------------------------- /docs/spec/template.use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/docs/spec/template.use-case.md -------------------------------------------------------------------------------- /e2e/issues/issue-823.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/e2e/issues/issue-823.spec.ts -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/firebase.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/common-docs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/.eslintrc.json -------------------------------------------------------------------------------- /libs/common-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/README.md -------------------------------------------------------------------------------- /libs/common-docs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/jest.config.js -------------------------------------------------------------------------------- /libs/common-docs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/ng-package.json -------------------------------------------------------------------------------- /libs/common-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/package.json -------------------------------------------------------------------------------- /libs/common-docs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/project.json -------------------------------------------------------------------------------- /libs/common-docs/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/docs.module'; 2 | -------------------------------------------------------------------------------- /libs/common-docs/src/lib/docs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/src/lib/docs.module.ts -------------------------------------------------------------------------------- /libs/common-docs/src/lib/models/source-code.model.ts: -------------------------------------------------------------------------------- 1 | export interface SourceCodeModel { 2 | default: string; 3 | } 4 | -------------------------------------------------------------------------------- /libs/common-docs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/src/test-setup.ts -------------------------------------------------------------------------------- /libs/common-docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/tsconfig.json -------------------------------------------------------------------------------- /libs/common-docs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/common-docs/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /libs/common-docs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/common-docs/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/doc-pages/accordion/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/accordion/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/accordion/README.md -------------------------------------------------------------------------------- /libs/doc-pages/accordion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/accordion/package.json -------------------------------------------------------------------------------- /libs/doc-pages/accordion/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/accordion/project.json -------------------------------------------------------------------------------- /libs/doc-pages/accordion/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/accordion.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/accordion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/accordion/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/README.md -------------------------------------------------------------------------------- /libs/doc-pages/alerts/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/package.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/project.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/alerts.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/alerts/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/src/test-setup.ts -------------------------------------------------------------------------------- /libs/doc-pages/alerts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/alerts/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/alerts/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/doc-pages/buttons/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/README.md -------------------------------------------------------------------------------- /libs/doc-pages/buttons/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/buttons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/package.json -------------------------------------------------------------------------------- /libs/doc-pages/buttons/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/project.json -------------------------------------------------------------------------------- /libs/doc-pages/buttons/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/buttons.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/buttons/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/buttons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/buttons/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/carousel/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/README.md -------------------------------------------------------------------------------- /libs/doc-pages/carousel/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/carousel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/package.json -------------------------------------------------------------------------------- /libs/doc-pages/carousel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/project.json -------------------------------------------------------------------------------- /libs/doc-pages/carousel/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/carousel.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/carousel/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/carousel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/carousel/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/collapse/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/README.md -------------------------------------------------------------------------------- /libs/doc-pages/collapse/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/collapse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/package.json -------------------------------------------------------------------------------- /libs/doc-pages/collapse/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/project.json -------------------------------------------------------------------------------- /libs/doc-pages/collapse/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/collapse.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/collapse/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/collapse/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/datepicker/README.md -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/datepicker/package.json -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/datepicker/project.json -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/datepicker.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/src/lib/todo.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/datepicker/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/datepicker/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/datepicker/typings.d.ts -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/README.md -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/package.json -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/project.json -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/dropdown.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/dropdown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/dropdown/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/README.md -------------------------------------------------------------------------------- /libs/doc-pages/modal/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/package.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/project.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/modal.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/modal/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/modal/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/src/test-setup.ts -------------------------------------------------------------------------------- /libs/doc-pages/modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/doc-pages/modal/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/modal/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/doc-pages/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/pagination/README.md -------------------------------------------------------------------------------- /libs/doc-pages/pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/pagination/package.json -------------------------------------------------------------------------------- /libs/doc-pages/pagination/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/pagination/project.json -------------------------------------------------------------------------------- /libs/doc-pages/pagination/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/pagination.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/pagination/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/pagination/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/popover/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/README.md -------------------------------------------------------------------------------- /libs/doc-pages/popover/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/popover/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/package.json -------------------------------------------------------------------------------- /libs/doc-pages/popover/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/project.json -------------------------------------------------------------------------------- /libs/doc-pages/popover/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/popover.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/popover/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/popover/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/popover/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/progressbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/progressbar/README.md -------------------------------------------------------------------------------- /libs/doc-pages/progressbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/progressbar/package.json -------------------------------------------------------------------------------- /libs/doc-pages/progressbar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/progressbar/project.json -------------------------------------------------------------------------------- /libs/doc-pages/progressbar/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/progressbar.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/rating/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/rating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/README.md -------------------------------------------------------------------------------- /libs/doc-pages/rating/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/rating/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/package.json -------------------------------------------------------------------------------- /libs/doc-pages/rating/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/project.json -------------------------------------------------------------------------------- /libs/doc-pages/rating/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/rating.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/rating/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/rating/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/src/test-setup.ts -------------------------------------------------------------------------------- /libs/doc-pages/rating/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/rating/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/rating/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/doc-pages/sortable/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/sortable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/README.md -------------------------------------------------------------------------------- /libs/doc-pages/sortable/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/sortable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/package.json -------------------------------------------------------------------------------- /libs/doc-pages/sortable/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/project.json -------------------------------------------------------------------------------- /libs/doc-pages/sortable/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/sortable.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/sortable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/sortable/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/README.md -------------------------------------------------------------------------------- /libs/doc-pages/tabs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/package.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/project.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/tabs.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/tabs/src/lib/demos/dynamic-content-rendering/sub-component/sub-component.css: -------------------------------------------------------------------------------- 1 | p { 2 | margin: 30px; 3 | } 4 | -------------------------------------------------------------------------------- /libs/doc-pages/tabs/src/lib/demos/dynamic-content-rendering/sub-component/sub-component.html: -------------------------------------------------------------------------------- 1 |
2 | Sub-Component {{ name }} 3 |
4 | -------------------------------------------------------------------------------- /libs/doc-pages/tabs/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/tabs/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/src/test-setup.ts -------------------------------------------------------------------------------- /libs/doc-pages/tabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/doc-pages/tabs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tabs/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/doc-pages/timepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/timepicker/README.md -------------------------------------------------------------------------------- /libs/doc-pages/timepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/timepicker/package.json -------------------------------------------------------------------------------- /libs/doc-pages/timepicker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/timepicker/project.json -------------------------------------------------------------------------------- /libs/doc-pages/timepicker/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/timepicker.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/timepicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/timepicker/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/README.md -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/ng-package.json -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/package.json -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/project.json -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/tooltip.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/src/lib/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/src/lib/todo.md -------------------------------------------------------------------------------- /libs/doc-pages/tooltip/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/tooltip/tsconfig.json -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/typeahead/.eslintrc.json -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/typeahead/README.md -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/typeahead/package.json -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/typeahead/project.json -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/typeahead.module'; 2 | -------------------------------------------------------------------------------- /libs/doc-pages/typeahead/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/libs/doc-pages/typeahead/tsconfig.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/package.json -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | !**/*.js 2 | -------------------------------------------------------------------------------- /scripts/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/docs/LICENSE -------------------------------------------------------------------------------- /scripts/docs/api-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/docs/api-doc.js -------------------------------------------------------------------------------- /scripts/docs/api-doc.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/docs/api-doc.spec.js -------------------------------------------------------------------------------- /scripts/docs/get-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/docs/get-doc.js -------------------------------------------------------------------------------- /scripts/gh-pages-predeploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/gh-pages-predeploy.ts -------------------------------------------------------------------------------- /scripts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/helpers.ts -------------------------------------------------------------------------------- /scripts/jest/toHaveCssClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/jest/toHaveCssClass.ts -------------------------------------------------------------------------------- /scripts/set-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scripts/set-version.ts -------------------------------------------------------------------------------- /scully.ngx-bootstrap-docs.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/scully.ngx-bootstrap-docs.config.ts -------------------------------------------------------------------------------- /src/accordion/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/.eslintrc.json -------------------------------------------------------------------------------- /src/accordion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/README.md -------------------------------------------------------------------------------- /src/accordion/accordion.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/accordion.component.ts -------------------------------------------------------------------------------- /src/accordion/accordion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/accordion.config.ts -------------------------------------------------------------------------------- /src/accordion/accordion.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/accordion.module.ts -------------------------------------------------------------------------------- /src/accordion/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/accordion.scss -------------------------------------------------------------------------------- /src/accordion/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/accordion/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/jest.config.ts -------------------------------------------------------------------------------- /src/accordion/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/ng-package.json -------------------------------------------------------------------------------- /src/accordion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/package.json -------------------------------------------------------------------------------- /src/accordion/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/project.json -------------------------------------------------------------------------------- /src/accordion/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/public_api.ts -------------------------------------------------------------------------------- /src/accordion/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/testing/test-setup.ts -------------------------------------------------------------------------------- /src/accordion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/tsconfig.json -------------------------------------------------------------------------------- /src/accordion/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/tsconfig.lib.json -------------------------------------------------------------------------------- /src/accordion/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/accordion/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/accordion/tsconfig.spec.json -------------------------------------------------------------------------------- /src/alert/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/.eslintrc.json -------------------------------------------------------------------------------- /src/alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/README.md -------------------------------------------------------------------------------- /src/alert/alert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/alert.component.html -------------------------------------------------------------------------------- /src/alert/alert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/alert.component.ts -------------------------------------------------------------------------------- /src/alert/alert.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/alert.config.ts -------------------------------------------------------------------------------- /src/alert/alert.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/alert.module.ts -------------------------------------------------------------------------------- /src/alert/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/alert/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/jest.config.ts -------------------------------------------------------------------------------- /src/alert/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/ng-package.json -------------------------------------------------------------------------------- /src/alert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/package.json -------------------------------------------------------------------------------- /src/alert/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/project.json -------------------------------------------------------------------------------- /src/alert/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/public_api.ts -------------------------------------------------------------------------------- /src/alert/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/testing/test-setup.ts -------------------------------------------------------------------------------- /src/alert/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/tsconfig.json -------------------------------------------------------------------------------- /src/alert/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/tsconfig.lib.json -------------------------------------------------------------------------------- /src/alert/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/alert/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/alert/tsconfig.spec.json -------------------------------------------------------------------------------- /src/buttons/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/.eslintrc.json -------------------------------------------------------------------------------- /src/buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/README.md -------------------------------------------------------------------------------- /src/buttons/button-radio.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/button-radio.directive.ts -------------------------------------------------------------------------------- /src/buttons/buttons.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/buttons.module.ts -------------------------------------------------------------------------------- /src/buttons/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/buttons/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/jest.config.ts -------------------------------------------------------------------------------- /src/buttons/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/ng-package.json -------------------------------------------------------------------------------- /src/buttons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/package.json -------------------------------------------------------------------------------- /src/buttons/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/project.json -------------------------------------------------------------------------------- /src/buttons/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/public_api.ts -------------------------------------------------------------------------------- /src/buttons/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/testing/test-setup.ts -------------------------------------------------------------------------------- /src/buttons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/tsconfig.json -------------------------------------------------------------------------------- /src/buttons/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/tsconfig.lib.json -------------------------------------------------------------------------------- /src/buttons/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/buttons/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/buttons/tsconfig.spec.json -------------------------------------------------------------------------------- /src/carousel/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/.eslintrc.json -------------------------------------------------------------------------------- /src/carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/README.md -------------------------------------------------------------------------------- /src/carousel/carousel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/carousel.component.html -------------------------------------------------------------------------------- /src/carousel/carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/carousel.component.ts -------------------------------------------------------------------------------- /src/carousel/carousel.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/carousel.config.ts -------------------------------------------------------------------------------- /src/carousel/carousel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/carousel.module.ts -------------------------------------------------------------------------------- /src/carousel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/carousel/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/jest.config.ts -------------------------------------------------------------------------------- /src/carousel/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/models/index.ts -------------------------------------------------------------------------------- /src/carousel/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/ng-package.json -------------------------------------------------------------------------------- /src/carousel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/package.json -------------------------------------------------------------------------------- /src/carousel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/project.json -------------------------------------------------------------------------------- /src/carousel/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/public_api.ts -------------------------------------------------------------------------------- /src/carousel/slide.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/slide.component.ts -------------------------------------------------------------------------------- /src/carousel/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/testing/test-setup.ts -------------------------------------------------------------------------------- /src/carousel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/tsconfig.json -------------------------------------------------------------------------------- /src/carousel/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/tsconfig.lib.json -------------------------------------------------------------------------------- /src/carousel/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/carousel/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/tsconfig.spec.json -------------------------------------------------------------------------------- /src/carousel/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/carousel/utils.ts -------------------------------------------------------------------------------- /src/chronos/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/.eslintrc.json -------------------------------------------------------------------------------- /src/chronos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/LICENSE -------------------------------------------------------------------------------- /src/chronos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/README.md -------------------------------------------------------------------------------- /src/chronos/create/check-overflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/check-overflow.ts -------------------------------------------------------------------------------- /src/chronos/create/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/clone.ts -------------------------------------------------------------------------------- /src/chronos/create/date-from-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/date-from-array.ts -------------------------------------------------------------------------------- /src/chronos/create/from-anything.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/from-anything.ts -------------------------------------------------------------------------------- /src/chronos/create/from-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/from-array.ts -------------------------------------------------------------------------------- /src/chronos/create/from-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/from-object.ts -------------------------------------------------------------------------------- /src/chronos/create/from-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/from-string.ts -------------------------------------------------------------------------------- /src/chronos/create/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/local.ts -------------------------------------------------------------------------------- /src/chronos/create/parsing-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/parsing-flags.ts -------------------------------------------------------------------------------- /src/chronos/create/parsing.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/parsing.types.ts -------------------------------------------------------------------------------- /src/chronos/create/utc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/utc.ts -------------------------------------------------------------------------------- /src/chronos/create/valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/create/valid.ts -------------------------------------------------------------------------------- /src/chronos/duration/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/duration/bubble.ts -------------------------------------------------------------------------------- /src/chronos/duration/constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/duration/constructor.ts -------------------------------------------------------------------------------- /src/chronos/duration/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/duration/create.ts -------------------------------------------------------------------------------- /src/chronos/duration/humanize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/duration/humanize.ts -------------------------------------------------------------------------------- /src/chronos/duration/valid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/duration/valid.ts -------------------------------------------------------------------------------- /src/chronos/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/format.ts -------------------------------------------------------------------------------- /src/chronos/format/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/format/format.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ar.ts -------------------------------------------------------------------------------- /src/chronos/i18n/bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/bg.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ca.ts -------------------------------------------------------------------------------- /src/chronos/i18n/cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/cs.ts -------------------------------------------------------------------------------- /src/chronos/i18n/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/da.ts -------------------------------------------------------------------------------- /src/chronos/i18n/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/de.ts -------------------------------------------------------------------------------- /src/chronos/i18n/en-gb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/en-gb.ts -------------------------------------------------------------------------------- /src/chronos/i18n/es-do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/es-do.ts -------------------------------------------------------------------------------- /src/chronos/i18n/es-pr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/es-pr.ts -------------------------------------------------------------------------------- /src/chronos/i18n/es-us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/es-us.ts -------------------------------------------------------------------------------- /src/chronos/i18n/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/es.ts -------------------------------------------------------------------------------- /src/chronos/i18n/et.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/et.ts -------------------------------------------------------------------------------- /src/chronos/i18n/fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/fa.ts -------------------------------------------------------------------------------- /src/chronos/i18n/fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/fi.ts -------------------------------------------------------------------------------- /src/chronos/i18n/fr-ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/fr-ca.ts -------------------------------------------------------------------------------- /src/chronos/i18n/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/fr.ts -------------------------------------------------------------------------------- /src/chronos/i18n/gl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/gl.ts -------------------------------------------------------------------------------- /src/chronos/i18n/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/he.ts -------------------------------------------------------------------------------- /src/chronos/i18n/hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/hi.ts -------------------------------------------------------------------------------- /src/chronos/i18n/hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/hr.ts -------------------------------------------------------------------------------- /src/chronos/i18n/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/hu.ts -------------------------------------------------------------------------------- /src/chronos/i18n/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/id.ts -------------------------------------------------------------------------------- /src/chronos/i18n/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/it.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ja.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ka.ts -------------------------------------------------------------------------------- /src/chronos/i18n/kk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/kk.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ko.ts -------------------------------------------------------------------------------- /src/chronos/i18n/lt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/lt.ts -------------------------------------------------------------------------------- /src/chronos/i18n/lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/lv.ts -------------------------------------------------------------------------------- /src/chronos/i18n/mn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/mn.ts -------------------------------------------------------------------------------- /src/chronos/i18n/nb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/nb.ts -------------------------------------------------------------------------------- /src/chronos/i18n/nl-be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/nl-be.ts -------------------------------------------------------------------------------- /src/chronos/i18n/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/nl.ts -------------------------------------------------------------------------------- /src/chronos/i18n/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/pl.ts -------------------------------------------------------------------------------- /src/chronos/i18n/pt-br.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/pt-br.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ro.ts -------------------------------------------------------------------------------- /src/chronos/i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/ru.ts -------------------------------------------------------------------------------- /src/chronos/i18n/sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/sk.ts -------------------------------------------------------------------------------- /src/chronos/i18n/sl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/sl.ts -------------------------------------------------------------------------------- /src/chronos/i18n/sq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/sq.ts -------------------------------------------------------------------------------- /src/chronos/i18n/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/sv.ts -------------------------------------------------------------------------------- /src/chronos/i18n/th-be.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/th-be.ts -------------------------------------------------------------------------------- /src/chronos/i18n/th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/th.ts -------------------------------------------------------------------------------- /src/chronos/i18n/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/tr.ts -------------------------------------------------------------------------------- /src/chronos/i18n/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/uk.ts -------------------------------------------------------------------------------- /src/chronos/i18n/vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/vi.ts -------------------------------------------------------------------------------- /src/chronos/i18n/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/i18n/zh-cn.ts -------------------------------------------------------------------------------- /src/chronos/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/chronos/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/jest.config.ts -------------------------------------------------------------------------------- /src/chronos/locale/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/locale/calendar.ts -------------------------------------------------------------------------------- /src/chronos/locale/locale.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/locale/locale.class.ts -------------------------------------------------------------------------------- /src/chronos/locale/locale.defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/locale/locale.defaults.ts -------------------------------------------------------------------------------- /src/chronos/locale/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/locale/locales.ts -------------------------------------------------------------------------------- /src/chronos/moment/add-subtract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/moment/add-subtract.ts -------------------------------------------------------------------------------- /src/chronos/moment/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/moment/calendar.ts -------------------------------------------------------------------------------- /src/chronos/moment/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/moment/diff.ts -------------------------------------------------------------------------------- /src/chronos/moment/from.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/moment/from.ts -------------------------------------------------------------------------------- /src/chronos/moment/min-max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/moment/min-max.ts -------------------------------------------------------------------------------- /src/chronos/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/ng-package.json -------------------------------------------------------------------------------- /src/chronos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/package.json -------------------------------------------------------------------------------- /src/chronos/parse/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/parse/regex.ts -------------------------------------------------------------------------------- /src/chronos/parse/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/parse/token.ts -------------------------------------------------------------------------------- /src/chronos/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/project.json -------------------------------------------------------------------------------- /src/chronos/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/public_api.ts -------------------------------------------------------------------------------- /src/chronos/testing/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/chain.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ar.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/bg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/bg.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ca.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ca.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/cs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/cs.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/da.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/da.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/de.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/de.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/en.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/en.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/es.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/es.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/et.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/et.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/fa.Spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/fa.Spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/fi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/fi.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/fr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/fr.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/gl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/gl.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/he.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/he.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/hi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/hi.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/hr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/hr.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/hu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/hu.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/id.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/it.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/it.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ja.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ja.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ka.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ka.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/kk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/kk.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ko.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ko.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/lt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/lt.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/lv.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/lv.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/mn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/mn.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/nb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/nb.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/nl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/nl.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/pl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/pl.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ro.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/ru.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/ru.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/sk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/sk.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/sl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/sl.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/sq.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/sq.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/sv.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/sv.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/th.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/th.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/tr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/tr.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/uk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/uk.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/locale/vi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/locale/vi.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/moment/diff.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/moment/diff.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/moment/utc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/moment/utc.spec.ts -------------------------------------------------------------------------------- /src/chronos/testing/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/test-helpers.ts -------------------------------------------------------------------------------- /src/chronos/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/test-setup.ts -------------------------------------------------------------------------------- /src/chronos/testing/units.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/testing/units.spec.ts -------------------------------------------------------------------------------- /src/chronos/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/tsconfig.json -------------------------------------------------------------------------------- /src/chronos/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/tsconfig.lib.json -------------------------------------------------------------------------------- /src/chronos/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/chronos/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/tsconfig.spec.json -------------------------------------------------------------------------------- /src/chronos/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/types.ts -------------------------------------------------------------------------------- /src/chronos/units/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/aliases.ts -------------------------------------------------------------------------------- /src/chronos/units/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/constants.ts -------------------------------------------------------------------------------- /src/chronos/units/day-of-month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/day-of-month.ts -------------------------------------------------------------------------------- /src/chronos/units/day-of-week.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/day-of-week.ts -------------------------------------------------------------------------------- /src/chronos/units/day-of-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/day-of-year.ts -------------------------------------------------------------------------------- /src/chronos/units/hour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/hour.ts -------------------------------------------------------------------------------- /src/chronos/units/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/index.ts -------------------------------------------------------------------------------- /src/chronos/units/millisecond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/millisecond.ts -------------------------------------------------------------------------------- /src/chronos/units/minute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/minute.ts -------------------------------------------------------------------------------- /src/chronos/units/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/month.ts -------------------------------------------------------------------------------- /src/chronos/units/offset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/offset.ts -------------------------------------------------------------------------------- /src/chronos/units/priorities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/priorities.ts -------------------------------------------------------------------------------- /src/chronos/units/quarter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/quarter.ts -------------------------------------------------------------------------------- /src/chronos/units/second.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/second.ts -------------------------------------------------------------------------------- /src/chronos/units/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/timestamp.ts -------------------------------------------------------------------------------- /src/chronos/units/timezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/timezone.ts -------------------------------------------------------------------------------- /src/chronos/units/week-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/week-year.ts -------------------------------------------------------------------------------- /src/chronos/units/week.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/week.ts -------------------------------------------------------------------------------- /src/chronos/units/year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/units/year.ts -------------------------------------------------------------------------------- /src/chronos/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils.ts -------------------------------------------------------------------------------- /src/chronos/utils/abs-ceil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/abs-ceil.ts -------------------------------------------------------------------------------- /src/chronos/utils/abs-round.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/abs-round.ts -------------------------------------------------------------------------------- /src/chronos/utils/compare-arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/compare-arrays.ts -------------------------------------------------------------------------------- /src/chronos/utils/date-compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/date-compare.ts -------------------------------------------------------------------------------- /src/chronos/utils/date-getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/date-getters.ts -------------------------------------------------------------------------------- /src/chronos/utils/date-setters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/date-setters.ts -------------------------------------------------------------------------------- /src/chronos/utils/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/defaults.ts -------------------------------------------------------------------------------- /src/chronos/utils/start-end-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/start-end-of.ts -------------------------------------------------------------------------------- /src/chronos/utils/type-checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/type-checks.ts -------------------------------------------------------------------------------- /src/chronos/utils/zero-fill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/chronos/utils/zero-fill.ts -------------------------------------------------------------------------------- /src/collapse/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/.eslintrc.json -------------------------------------------------------------------------------- /src/collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/README.md -------------------------------------------------------------------------------- /src/collapse/collapse-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/collapse-animations.ts -------------------------------------------------------------------------------- /src/collapse/collapse.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/collapse.directive.ts -------------------------------------------------------------------------------- /src/collapse/collapse.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/collapse.module.ts -------------------------------------------------------------------------------- /src/collapse/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/collapse/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/jest.config.ts -------------------------------------------------------------------------------- /src/collapse/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/ng-package.json -------------------------------------------------------------------------------- /src/collapse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/package.json -------------------------------------------------------------------------------- /src/collapse/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/project.json -------------------------------------------------------------------------------- /src/collapse/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/public_api.ts -------------------------------------------------------------------------------- /src/collapse/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/testing/test-setup.ts -------------------------------------------------------------------------------- /src/collapse/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/tsconfig.json -------------------------------------------------------------------------------- /src/collapse/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/tsconfig.lib.json -------------------------------------------------------------------------------- /src/collapse/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/collapse/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/collapse/tsconfig.spec.json -------------------------------------------------------------------------------- /src/component-loader/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/.eslintrc.json -------------------------------------------------------------------------------- /src/component-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/README.md -------------------------------------------------------------------------------- /src/component-loader/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/component-loader/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/jest.config.ts -------------------------------------------------------------------------------- /src/component-loader/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/ng-package.json -------------------------------------------------------------------------------- /src/component-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/package.json -------------------------------------------------------------------------------- /src/component-loader/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/project.json -------------------------------------------------------------------------------- /src/component-loader/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/public_api.ts -------------------------------------------------------------------------------- /src/component-loader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/tsconfig.json -------------------------------------------------------------------------------- /src/component-loader/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/tsconfig.lib.json -------------------------------------------------------------------------------- /src/component-loader/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/component-loader/tsconfig.spec.json -------------------------------------------------------------------------------- /src/datepicker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/.eslintrc.json -------------------------------------------------------------------------------- /src/datepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/README.md -------------------------------------------------------------------------------- /src/datepicker/bs-datepicker.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/bs-datepicker.config.ts -------------------------------------------------------------------------------- /src/datepicker/bs-datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/bs-datepicker.scss -------------------------------------------------------------------------------- /src/datepicker/bs-locale.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/bs-locale.service.ts -------------------------------------------------------------------------------- /src/datepicker/engine/view-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/engine/view-mode.ts -------------------------------------------------------------------------------- /src/datepicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/datepicker/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/jest.config.ts -------------------------------------------------------------------------------- /src/datepicker/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/models/index.ts -------------------------------------------------------------------------------- /src/datepicker/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/ng-package.json -------------------------------------------------------------------------------- /src/datepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/package.json -------------------------------------------------------------------------------- /src/datepicker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/project.json -------------------------------------------------------------------------------- /src/datepicker/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/public_api.ts -------------------------------------------------------------------------------- /src/datepicker/reducer/_defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/reducer/_defaults.ts -------------------------------------------------------------------------------- /src/datepicker/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/testing/test-setup.ts -------------------------------------------------------------------------------- /src/datepicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/tsconfig.json -------------------------------------------------------------------------------- /src/datepicker/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/tsconfig.lib.json -------------------------------------------------------------------------------- /src/datepicker/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/datepicker/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/tsconfig.spec.json -------------------------------------------------------------------------------- /src/datepicker/utils/matrix-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/utils/matrix-utils.ts -------------------------------------------------------------------------------- /src/datepicker/utils/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/datepicker/utils/scss/mixins.scss -------------------------------------------------------------------------------- /src/dropdown/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/.eslintrc.json -------------------------------------------------------------------------------- /src/dropdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/README.md -------------------------------------------------------------------------------- /src/dropdown/bs-dropdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/bs-dropdown.config.ts -------------------------------------------------------------------------------- /src/dropdown/bs-dropdown.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/bs-dropdown.directive.ts -------------------------------------------------------------------------------- /src/dropdown/bs-dropdown.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/bs-dropdown.module.ts -------------------------------------------------------------------------------- /src/dropdown/bs-dropdown.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/bs-dropdown.state.ts -------------------------------------------------------------------------------- /src/dropdown/dropdown-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/dropdown-animations.ts -------------------------------------------------------------------------------- /src/dropdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/dropdown/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/jest.config.ts -------------------------------------------------------------------------------- /src/dropdown/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/ng-package.json -------------------------------------------------------------------------------- /src/dropdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/package.json -------------------------------------------------------------------------------- /src/dropdown/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/project.json -------------------------------------------------------------------------------- /src/dropdown/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/public_api.ts -------------------------------------------------------------------------------- /src/dropdown/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/testing/test-setup.ts -------------------------------------------------------------------------------- /src/dropdown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/tsconfig.json -------------------------------------------------------------------------------- /src/dropdown/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/tsconfig.lib.json -------------------------------------------------------------------------------- /src/dropdown/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/dropdown/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/dropdown/tsconfig.spec.json -------------------------------------------------------------------------------- /src/focus-trap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/.eslintrc.json -------------------------------------------------------------------------------- /src/focus-trap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/README.md -------------------------------------------------------------------------------- /src/focus-trap/boolean-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/boolean-property.ts -------------------------------------------------------------------------------- /src/focus-trap/focus-trap-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/focus-trap-manager.ts -------------------------------------------------------------------------------- /src/focus-trap/focus-trap.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/focus-trap.module.ts -------------------------------------------------------------------------------- /src/focus-trap/focus-trap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/focus-trap.ts -------------------------------------------------------------------------------- /src/focus-trap/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/focus-trap/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/jest.config.ts -------------------------------------------------------------------------------- /src/focus-trap/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/ng-package.json -------------------------------------------------------------------------------- /src/focus-trap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/package.json -------------------------------------------------------------------------------- /src/focus-trap/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/platform.ts -------------------------------------------------------------------------------- /src/focus-trap/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/polyfill.ts -------------------------------------------------------------------------------- /src/focus-trap/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/project.json -------------------------------------------------------------------------------- /src/focus-trap/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/public_api.ts -------------------------------------------------------------------------------- /src/focus-trap/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/testing/test-setup.ts -------------------------------------------------------------------------------- /src/focus-trap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/tsconfig.json -------------------------------------------------------------------------------- /src/focus-trap/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/tsconfig.lib.json -------------------------------------------------------------------------------- /src/focus-trap/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/focus-trap/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/focus-trap/tsconfig.spec.json -------------------------------------------------------------------------------- /src/locale/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/.eslintrc.json -------------------------------------------------------------------------------- /src/locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/README.md -------------------------------------------------------------------------------- /src/locale/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/locale/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/jest.config.ts -------------------------------------------------------------------------------- /src/locale/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/ng-package.json -------------------------------------------------------------------------------- /src/locale/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/package.json -------------------------------------------------------------------------------- /src/locale/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/project.json -------------------------------------------------------------------------------- /src/locale/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/public_api.ts -------------------------------------------------------------------------------- /src/locale/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/testing/test-setup.ts -------------------------------------------------------------------------------- /src/locale/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/tsconfig.json -------------------------------------------------------------------------------- /src/locale/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/tsconfig.lib.json -------------------------------------------------------------------------------- /src/locale/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/locale/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/locale/tsconfig.spec.json -------------------------------------------------------------------------------- /src/mini-ngrx/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/.eslintrc.json -------------------------------------------------------------------------------- /src/mini-ngrx/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/LICENCE -------------------------------------------------------------------------------- /src/mini-ngrx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/README.md -------------------------------------------------------------------------------- /src/mini-ngrx/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/mini-ngrx/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/jest.config.ts -------------------------------------------------------------------------------- /src/mini-ngrx/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/ng-package.json -------------------------------------------------------------------------------- /src/mini-ngrx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/package.json -------------------------------------------------------------------------------- /src/mini-ngrx/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/project.json -------------------------------------------------------------------------------- /src/mini-ngrx/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/public_api.ts -------------------------------------------------------------------------------- /src/mini-ngrx/state.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/state.class.ts -------------------------------------------------------------------------------- /src/mini-ngrx/store.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/store.class.ts -------------------------------------------------------------------------------- /src/mini-ngrx/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/testing/test-setup.ts -------------------------------------------------------------------------------- /src/mini-ngrx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/tsconfig.json -------------------------------------------------------------------------------- /src/mini-ngrx/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/tsconfig.lib.json -------------------------------------------------------------------------------- /src/mini-ngrx/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/mini-ngrx/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/mini-ngrx/tsconfig.spec.json -------------------------------------------------------------------------------- /src/modal/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/.eslintrc.json -------------------------------------------------------------------------------- /src/modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/README.md -------------------------------------------------------------------------------- /src/modal/bs-modal-ref.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/bs-modal-ref.service.ts -------------------------------------------------------------------------------- /src/modal/bs-modal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/bs-modal.service.ts -------------------------------------------------------------------------------- /src/modal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/modal/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/jest.config.ts -------------------------------------------------------------------------------- /src/modal/modal-backdrop.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/modal-backdrop.component.ts -------------------------------------------------------------------------------- /src/modal/modal-backdrop.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/modal-backdrop.options.ts -------------------------------------------------------------------------------- /src/modal/modal-options.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/modal-options.class.ts -------------------------------------------------------------------------------- /src/modal/modal.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/modal.directive.ts -------------------------------------------------------------------------------- /src/modal/modal.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/modal.module.ts -------------------------------------------------------------------------------- /src/modal/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/models/index.ts -------------------------------------------------------------------------------- /src/modal/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/ng-package.json -------------------------------------------------------------------------------- /src/modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/package.json -------------------------------------------------------------------------------- /src/modal/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/project.json -------------------------------------------------------------------------------- /src/modal/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/public_api.ts -------------------------------------------------------------------------------- /src/modal/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/testing/test-setup.ts -------------------------------------------------------------------------------- /src/modal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/tsconfig.json -------------------------------------------------------------------------------- /src/modal/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/tsconfig.lib.json -------------------------------------------------------------------------------- /src/modal/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/modal/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/modal/tsconfig.spec.json -------------------------------------------------------------------------------- /src/pagination/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/.eslintrc.json -------------------------------------------------------------------------------- /src/pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/README.md -------------------------------------------------------------------------------- /src/pagination/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/pagination/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/jest.config.ts -------------------------------------------------------------------------------- /src/pagination/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/models/index.ts -------------------------------------------------------------------------------- /src/pagination/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/ng-package.json -------------------------------------------------------------------------------- /src/pagination/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/package.json -------------------------------------------------------------------------------- /src/pagination/pager.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/pager.component.html -------------------------------------------------------------------------------- /src/pagination/pager.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/pager.component.ts -------------------------------------------------------------------------------- /src/pagination/pagination.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/pagination.config.ts -------------------------------------------------------------------------------- /src/pagination/pagination.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/pagination.module.ts -------------------------------------------------------------------------------- /src/pagination/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/project.json -------------------------------------------------------------------------------- /src/pagination/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/public_api.ts -------------------------------------------------------------------------------- /src/pagination/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/testing/test-setup.ts -------------------------------------------------------------------------------- /src/pagination/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/tsconfig.json -------------------------------------------------------------------------------- /src/pagination/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/tsconfig.lib.json -------------------------------------------------------------------------------- /src/pagination/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/pagination/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/pagination/tsconfig.spec.json -------------------------------------------------------------------------------- /src/popover/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/.eslintrc.json -------------------------------------------------------------------------------- /src/popover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/README.md -------------------------------------------------------------------------------- /src/popover/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/popover/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/jest.config.ts -------------------------------------------------------------------------------- /src/popover/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/ng-package.json -------------------------------------------------------------------------------- /src/popover/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/package.json -------------------------------------------------------------------------------- /src/popover/popover.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/popover.config.ts -------------------------------------------------------------------------------- /src/popover/popover.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/popover.directive.ts -------------------------------------------------------------------------------- /src/popover/popover.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/popover.module.ts -------------------------------------------------------------------------------- /src/popover/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/project.json -------------------------------------------------------------------------------- /src/popover/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/public_api.ts -------------------------------------------------------------------------------- /src/popover/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/testing/test-setup.ts -------------------------------------------------------------------------------- /src/popover/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/tsconfig.json -------------------------------------------------------------------------------- /src/popover/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/tsconfig.lib.json -------------------------------------------------------------------------------- /src/popover/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/popover/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/popover/tsconfig.spec.json -------------------------------------------------------------------------------- /src/positioning/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/.eslintrc.json -------------------------------------------------------------------------------- /src/positioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/README.md -------------------------------------------------------------------------------- /src/positioning/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/positioning/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/jest.config.ts -------------------------------------------------------------------------------- /src/positioning/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/models/index.ts -------------------------------------------------------------------------------- /src/positioning/modifiers/arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/modifiers/arrow.ts -------------------------------------------------------------------------------- /src/positioning/modifiers/flip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/modifiers/flip.ts -------------------------------------------------------------------------------- /src/positioning/modifiers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/modifiers/index.ts -------------------------------------------------------------------------------- /src/positioning/modifiers/initData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/modifiers/initData.ts -------------------------------------------------------------------------------- /src/positioning/modifiers/shift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/modifiers/shift.ts -------------------------------------------------------------------------------- /src/positioning/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/ng-package.json -------------------------------------------------------------------------------- /src/positioning/ng-positioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/ng-positioning.ts -------------------------------------------------------------------------------- /src/positioning/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/package.json -------------------------------------------------------------------------------- /src/positioning/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/project.json -------------------------------------------------------------------------------- /src/positioning/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/public_api.ts -------------------------------------------------------------------------------- /src/positioning/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/testing/test-setup.ts -------------------------------------------------------------------------------- /src/positioning/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/tsconfig.json -------------------------------------------------------------------------------- /src/positioning/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/tsconfig.lib.json -------------------------------------------------------------------------------- /src/positioning/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/tsconfig.spec.json -------------------------------------------------------------------------------- /src/positioning/utils/checkMargin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/checkMargin.ts -------------------------------------------------------------------------------- /src/positioning/utils/getOffsets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/getOffsets.ts -------------------------------------------------------------------------------- /src/positioning/utils/getRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/getRoot.ts -------------------------------------------------------------------------------- /src/positioning/utils/getScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/getScroll.ts -------------------------------------------------------------------------------- /src/positioning/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/index.ts -------------------------------------------------------------------------------- /src/positioning/utils/isBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/isBrowser.ts -------------------------------------------------------------------------------- /src/positioning/utils/isFixed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/isFixed.ts -------------------------------------------------------------------------------- /src/positioning/utils/isNumeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/isNumeric.ts -------------------------------------------------------------------------------- /src/positioning/utils/setStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/positioning/utils/setStyles.ts -------------------------------------------------------------------------------- /src/progressbar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/.eslintrc.json -------------------------------------------------------------------------------- /src/progressbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/README.md -------------------------------------------------------------------------------- /src/progressbar/bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/bar.component.html -------------------------------------------------------------------------------- /src/progressbar/bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/bar.component.ts -------------------------------------------------------------------------------- /src/progressbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/progressbar/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/jest.config.ts -------------------------------------------------------------------------------- /src/progressbar/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/ng-package.json -------------------------------------------------------------------------------- /src/progressbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/package.json -------------------------------------------------------------------------------- /src/progressbar/progressbar.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/progressbar.config.ts -------------------------------------------------------------------------------- /src/progressbar/progressbar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/progressbar.module.ts -------------------------------------------------------------------------------- /src/progressbar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/project.json -------------------------------------------------------------------------------- /src/progressbar/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/public_api.ts -------------------------------------------------------------------------------- /src/progressbar/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/testing/test-setup.ts -------------------------------------------------------------------------------- /src/progressbar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/tsconfig.json -------------------------------------------------------------------------------- /src/progressbar/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/tsconfig.lib.json -------------------------------------------------------------------------------- /src/progressbar/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/progressbar/tsconfig.spec.json -------------------------------------------------------------------------------- /src/rating/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/.eslintrc.json -------------------------------------------------------------------------------- /src/rating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/README.md -------------------------------------------------------------------------------- /src/rating/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/rating/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/jest.config.ts -------------------------------------------------------------------------------- /src/rating/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/models/index.ts -------------------------------------------------------------------------------- /src/rating/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/ng-package.json -------------------------------------------------------------------------------- /src/rating/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/package.json -------------------------------------------------------------------------------- /src/rating/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/project.json -------------------------------------------------------------------------------- /src/rating/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/public_api.ts -------------------------------------------------------------------------------- /src/rating/rating.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/rating.component.html -------------------------------------------------------------------------------- /src/rating/rating.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/rating.component.ts -------------------------------------------------------------------------------- /src/rating/rating.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/rating.config.ts -------------------------------------------------------------------------------- /src/rating/rating.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/rating.module.ts -------------------------------------------------------------------------------- /src/rating/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/testing/test-setup.ts -------------------------------------------------------------------------------- /src/rating/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/tsconfig.json -------------------------------------------------------------------------------- /src/rating/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/tsconfig.lib.json -------------------------------------------------------------------------------- /src/rating/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/rating/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/rating/tsconfig.spec.json -------------------------------------------------------------------------------- /src/root/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/.eslintrc.json -------------------------------------------------------------------------------- /src/root/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/LICENSE -------------------------------------------------------------------------------- /src/root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/README.md -------------------------------------------------------------------------------- /src/root/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/root/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/ng-package.json -------------------------------------------------------------------------------- /src/root/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/package.json -------------------------------------------------------------------------------- /src/root/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/project.json -------------------------------------------------------------------------------- /src/root/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/testing/test-setup.ts -------------------------------------------------------------------------------- /src/root/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/tsconfig.json -------------------------------------------------------------------------------- /src/root/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/tsconfig.lib.json -------------------------------------------------------------------------------- /src/root/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/root/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/root/tsconfig.spec.json -------------------------------------------------------------------------------- /src/schematics/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/.eslintrc.json -------------------------------------------------------------------------------- /src/schematics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/README.md -------------------------------------------------------------------------------- /src/schematics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/package.json -------------------------------------------------------------------------------- /src/schematics/src/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/collection.json -------------------------------------------------------------------------------- /src/schematics/src/ng-add/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/ng-add/index.ts -------------------------------------------------------------------------------- /src/schematics/src/ng-add/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/ng-add/schema.json -------------------------------------------------------------------------------- /src/schematics/src/ng-add/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/ng-add/schema.ts -------------------------------------------------------------------------------- /src/schematics/src/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/project.json -------------------------------------------------------------------------------- /src/schematics/src/utils/addStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/utils/addStyles.ts -------------------------------------------------------------------------------- /src/schematics/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/src/utils/index.ts -------------------------------------------------------------------------------- /src/schematics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/tsconfig.json -------------------------------------------------------------------------------- /src/schematics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/tsconfig.lib.json -------------------------------------------------------------------------------- /src/schematics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/schematics/tsconfig.spec.json -------------------------------------------------------------------------------- /src/sortable/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/.eslintrc.json -------------------------------------------------------------------------------- /src/sortable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/README.md -------------------------------------------------------------------------------- /src/sortable/draggable-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/draggable-item.ts -------------------------------------------------------------------------------- /src/sortable/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/sortable/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/jest.config.ts -------------------------------------------------------------------------------- /src/sortable/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/ng-package.json -------------------------------------------------------------------------------- /src/sortable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/package.json -------------------------------------------------------------------------------- /src/sortable/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/project.json -------------------------------------------------------------------------------- /src/sortable/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/public_api.ts -------------------------------------------------------------------------------- /src/sortable/sortable.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/sortable.component.ts -------------------------------------------------------------------------------- /src/sortable/sortable.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/sortable.module.ts -------------------------------------------------------------------------------- /src/sortable/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/testing/test-setup.ts -------------------------------------------------------------------------------- /src/sortable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/tsconfig.json -------------------------------------------------------------------------------- /src/sortable/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/tsconfig.lib.json -------------------------------------------------------------------------------- /src/sortable/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/sortable/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/sortable/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tabs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/.eslintrc.json -------------------------------------------------------------------------------- /src/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/README.md -------------------------------------------------------------------------------- /src/tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/tabs/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/jest.config.ts -------------------------------------------------------------------------------- /src/tabs/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/ng-package.json -------------------------------------------------------------------------------- /src/tabs/ng-transclude.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/ng-transclude.directive.ts -------------------------------------------------------------------------------- /src/tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/package.json -------------------------------------------------------------------------------- /src/tabs/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/project.json -------------------------------------------------------------------------------- /src/tabs/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/public_api.ts -------------------------------------------------------------------------------- /src/tabs/tab-heading.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tab-heading.directive.ts -------------------------------------------------------------------------------- /src/tabs/tab.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tab.directive.ts -------------------------------------------------------------------------------- /src/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/tabs/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tabs.scss -------------------------------------------------------------------------------- /src/tabs/tabset.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tabset.component.html -------------------------------------------------------------------------------- /src/tabs/tabset.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tabset.component.ts -------------------------------------------------------------------------------- /src/tabs/tabset.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tabset.config.ts -------------------------------------------------------------------------------- /src/tabs/testing/tab-ordering.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/testing/tab-ordering.spec.ts -------------------------------------------------------------------------------- /src/tabs/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/testing/test-setup.ts -------------------------------------------------------------------------------- /src/tabs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tsconfig.json -------------------------------------------------------------------------------- /src/tabs/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tsconfig.lib.json -------------------------------------------------------------------------------- /src/tabs/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/tabs/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tabs/tsconfig.spec.json -------------------------------------------------------------------------------- /src/timepicker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/.eslintrc.json -------------------------------------------------------------------------------- /src/timepicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/README.md -------------------------------------------------------------------------------- /src/timepicker/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/timepicker/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/jest.config.ts -------------------------------------------------------------------------------- /src/timepicker/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/models/index.ts -------------------------------------------------------------------------------- /src/timepicker/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/ng-package.json -------------------------------------------------------------------------------- /src/timepicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/package.json -------------------------------------------------------------------------------- /src/timepicker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/project.json -------------------------------------------------------------------------------- /src/timepicker/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/public_api.ts -------------------------------------------------------------------------------- /src/timepicker/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/testing/test-setup.ts -------------------------------------------------------------------------------- /src/timepicker/timepicker.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/timepicker.config.ts -------------------------------------------------------------------------------- /src/timepicker/timepicker.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/timepicker.models.ts -------------------------------------------------------------------------------- /src/timepicker/timepicker.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/timepicker.module.ts -------------------------------------------------------------------------------- /src/timepicker/timepicker.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/timepicker.utils.ts -------------------------------------------------------------------------------- /src/timepicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/tsconfig.json -------------------------------------------------------------------------------- /src/timepicker/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/tsconfig.lib.json -------------------------------------------------------------------------------- /src/timepicker/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/timepicker/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/timepicker/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tooltip/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/.eslintrc.json -------------------------------------------------------------------------------- /src/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/README.md -------------------------------------------------------------------------------- /src/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/tooltip/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/jest.config.ts -------------------------------------------------------------------------------- /src/tooltip/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/ng-package.json -------------------------------------------------------------------------------- /src/tooltip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/package.json -------------------------------------------------------------------------------- /src/tooltip/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/project.json -------------------------------------------------------------------------------- /src/tooltip/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/public_api.ts -------------------------------------------------------------------------------- /src/tooltip/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/testing/test-setup.ts -------------------------------------------------------------------------------- /src/tooltip/tooltip.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tooltip.config.ts -------------------------------------------------------------------------------- /src/tooltip/tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tooltip.directive.ts -------------------------------------------------------------------------------- /src/tooltip/tooltip.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tooltip.module.ts -------------------------------------------------------------------------------- /src/tooltip/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tsconfig.json -------------------------------------------------------------------------------- /src/tooltip/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tsconfig.lib.json -------------------------------------------------------------------------------- /src/tooltip/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/tooltip/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/tooltip/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typeahead/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/.eslintrc.json -------------------------------------------------------------------------------- /src/typeahead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/README.md -------------------------------------------------------------------------------- /src/typeahead/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/typeahead/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/jest.config.ts -------------------------------------------------------------------------------- /src/typeahead/latin-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/latin-map.ts -------------------------------------------------------------------------------- /src/typeahead/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/models/index.ts -------------------------------------------------------------------------------- /src/typeahead/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/ng-package.json -------------------------------------------------------------------------------- /src/typeahead/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/package.json -------------------------------------------------------------------------------- /src/typeahead/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/project.json -------------------------------------------------------------------------------- /src/typeahead/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/public_api.ts -------------------------------------------------------------------------------- /src/typeahead/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/testing/test-setup.ts -------------------------------------------------------------------------------- /src/typeahead/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/tsconfig.json -------------------------------------------------------------------------------- /src/typeahead/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/tsconfig.lib.json -------------------------------------------------------------------------------- /src/typeahead/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/typeahead/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typeahead/typeahead-animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/typeahead-animations.ts -------------------------------------------------------------------------------- /src/typeahead/typeahead-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/typeahead-utils.ts -------------------------------------------------------------------------------- /src/typeahead/typeahead.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/typeahead.config.ts -------------------------------------------------------------------------------- /src/typeahead/typeahead.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/typeahead.directive.ts -------------------------------------------------------------------------------- /src/typeahead/typeahead.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/typeahead/typeahead.module.ts -------------------------------------------------------------------------------- /src/utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/.eslintrc.json -------------------------------------------------------------------------------- /src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/README.md -------------------------------------------------------------------------------- /src/utils/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/decorators.ts -------------------------------------------------------------------------------- /src/utils/facade/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/facade/browser.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './public_api'; 2 | -------------------------------------------------------------------------------- /src/utils/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/jest.config.ts -------------------------------------------------------------------------------- /src/utils/linked-list.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/linked-list.class.ts -------------------------------------------------------------------------------- /src/utils/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/ng-package.json -------------------------------------------------------------------------------- /src/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/package.json -------------------------------------------------------------------------------- /src/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/project.json -------------------------------------------------------------------------------- /src/utils/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/public_api.ts -------------------------------------------------------------------------------- /src/utils/testing/linkedlist.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/testing/linkedlist.spec.ts -------------------------------------------------------------------------------- /src/utils/testing/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/testing/test-setup.ts -------------------------------------------------------------------------------- /src/utils/theme-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/theme-provider.ts -------------------------------------------------------------------------------- /src/utils/trigger.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/trigger.class.ts -------------------------------------------------------------------------------- /src/utils/triggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/triggers.ts -------------------------------------------------------------------------------- /src/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/tsconfig.json -------------------------------------------------------------------------------- /src/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /src/utils/tsconfig.lib.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/tsconfig.lib.prod.json -------------------------------------------------------------------------------- /src/utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/tsconfig.spec.json -------------------------------------------------------------------------------- /src/utils/utils.class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/utils.class.ts -------------------------------------------------------------------------------- /src/utils/warn-once.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/src/utils/warn-once.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valor-software/ngx-bootstrap/HEAD/tsconfig.base.json --------------------------------------------------------------------------------