├── .circleci └── config.yml ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .yo-rc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── jetbrains-variant-4_logos │ ├── LICENSE.txt │ ├── jetbrains-variant-4.png │ └── jetbrains-variant-4.svg ├── logo.png └── v2.0.0 │ ├── reset_password.png │ └── sign_in_up.png ├── config ├── helpers.js ├── jestGlobalMocks.ts └── setupJest.ts ├── demo ├── .editorconfig ├── .firebaserc ├── .gitignore ├── README.md ├── angular.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── firebase.json ├── ngsw-config.json ├── package-lock.json ├── package.json ├── prerender.ts ├── proxy.conf.json ├── server.ts ├── src │ ├── _variables.scss │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.server.module.ts │ │ ├── getting-started │ │ │ ├── getting-started-routing.module.ts │ │ │ ├── getting-started.component.html │ │ │ ├── getting-started.component.scss │ │ │ ├── getting-started.component.spec.ts │ │ │ ├── getting-started.component.ts │ │ │ └── getting-started.module.ts │ │ ├── home │ │ │ ├── home-routing.module.ts │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ └── home.module.ts │ │ └── shared │ │ │ ├── content-wrapper │ │ │ ├── content-wrapper.component.html │ │ │ ├── content-wrapper.component.scss │ │ │ ├── content-wrapper.component.spec.ts │ │ │ └── content-wrapper.component.ts │ │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ │ ├── index.ts │ │ │ └── shared.module.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── .npmignore │ │ ├── README.md │ │ ├── icons │ │ │ ├── icon-128x128.png │ │ │ ├── icon-144x144.png │ │ │ ├── icon-152x152.png │ │ │ ├── icon-192x192.png │ │ │ ├── icon-384x384.png │ │ │ ├── icon-512x512.png │ │ │ ├── icon-72x72.png │ │ │ └── icon-96x96.png │ │ ├── logo.svg │ │ └── md │ │ │ └── e1 │ │ │ └── html.md │ ├── browserslist │ ├── environments │ │ ├── environment.hmr.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── hmr.ts │ ├── index.html │ ├── jestGlobalMocks.ts │ ├── karma.conf.js │ ├── main.server.ts │ ├── main.ts │ ├── manifest.json │ ├── polyfills.ts │ ├── setupJest.ts │ ├── styles.scss │ ├── test.ts │ ├── testing │ │ ├── index.ts │ │ └── router-stubs.ts │ ├── tsconfig.app.json │ ├── tsconfig.server.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── static.paths.ts ├── tsconfig.json ├── tslint.json └── webpack.server.config.js ├── greenkeeper.json ├── gulpfile.js ├── karma.conf.js ├── package.json ├── src ├── auth │ └── module │ │ ├── components │ │ ├── alerts-container │ │ │ ├── ngb-alerts-container.component.html │ │ │ ├── ngb-alerts-container.component.scss │ │ │ ├── ngb-alerts-container.component.spec.ts │ │ │ └── ngb-alerts-container.component.ts │ │ ├── auth │ │ │ ├── auth.component.html │ │ │ ├── auth.component.scss │ │ │ ├── auth.component.spec.ts │ │ │ └── auth.component.ts │ │ ├── email-confirmation │ │ │ ├── email-confirmation.component.html │ │ │ ├── email-confirmation.component.scss │ │ │ └── email-confirmation.component.ts │ │ ├── enums │ │ │ ├── accounts.enum.ts │ │ │ └── index.ts │ │ ├── progress-bar │ │ │ ├── progress-bar.component.html │ │ │ ├── progress-bar.component.scss │ │ │ └── progress-bar.component.ts │ │ └── providers │ │ │ ├── auth.providers.component.html │ │ │ ├── auth.providers.component.scss │ │ │ └── auth.providers.component.ts │ │ ├── interfaces │ │ ├── config.interface.ts │ │ ├── ialert.interface.ts │ │ └── main.interface.ts │ │ ├── ngb-auth-firebase-u-i.module.ts │ │ └── services │ │ ├── alert.service.spec.ts │ │ ├── alert.service.ts │ │ ├── auth-process.service.ts │ │ └── firestore-sync.service.ts ├── index.ts ├── tsconfig.lib.es5.json ├── tsconfig.lib.json └── tsconfig.spec.json ├── tsconfig.json ├── tslint.json └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /assets/jetbrains-variant-4_logos/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/jetbrains-variant-4_logos/LICENSE.txt -------------------------------------------------------------------------------- /assets/jetbrains-variant-4_logos/jetbrains-variant-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/jetbrains-variant-4_logos/jetbrains-variant-4.png -------------------------------------------------------------------------------- /assets/jetbrains-variant-4_logos/jetbrains-variant-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/jetbrains-variant-4_logos/jetbrains-variant-4.svg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/v2.0.0/reset_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/v2.0.0/reset_password.png -------------------------------------------------------------------------------- /assets/v2.0.0/sign_in_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/assets/v2.0.0/sign_in_up.png -------------------------------------------------------------------------------- /config/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/config/helpers.js -------------------------------------------------------------------------------- /config/jestGlobalMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/config/jestGlobalMocks.ts -------------------------------------------------------------------------------- /config/setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/config/setupJest.ts -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/.firebaserc -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/angular.json -------------------------------------------------------------------------------- /demo/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/e2e/protractor.conf.js -------------------------------------------------------------------------------- /demo/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /demo/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/e2e/src/app.po.ts -------------------------------------------------------------------------------- /demo/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /demo/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/firebase.json -------------------------------------------------------------------------------- /demo/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/ngsw-config.json -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/prerender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/prerender.ts -------------------------------------------------------------------------------- /demo/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/proxy.conf.json -------------------------------------------------------------------------------- /demo/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/server.ts -------------------------------------------------------------------------------- /demo/src/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/_variables.scss -------------------------------------------------------------------------------- /demo/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /demo/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app.component.html -------------------------------------------------------------------------------- /demo/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app.component.ts -------------------------------------------------------------------------------- /demo/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app.module.ts -------------------------------------------------------------------------------- /demo/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/app.server.module.ts -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/getting-started/getting-started-routing.module.ts -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/getting-started/getting-started.component.html -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started.component.scss: -------------------------------------------------------------------------------- 1 | .getting-started { 2 | margin-top: 1.0rem; 3 | } 4 | -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/getting-started/getting-started.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/getting-started/getting-started.component.ts -------------------------------------------------------------------------------- /demo/src/app/getting-started/getting-started.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/getting-started/getting-started.module.ts -------------------------------------------------------------------------------- /demo/src/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /demo/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home.component.html -------------------------------------------------------------------------------- /demo/src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home.component.scss -------------------------------------------------------------------------------- /demo/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home.component.ts -------------------------------------------------------------------------------- /demo/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/home/home.module.ts -------------------------------------------------------------------------------- /demo/src/app/shared/content-wrapper/content-wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/content-wrapper/content-wrapper.component.html -------------------------------------------------------------------------------- /demo/src/app/shared/content-wrapper/content-wrapper.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/src/app/shared/content-wrapper/content-wrapper.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/content-wrapper/content-wrapper.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/shared/content-wrapper/content-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/content-wrapper/content-wrapper.component.ts -------------------------------------------------------------------------------- /demo/src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/footer/footer.component.html -------------------------------------------------------------------------------- /demo/src/app/shared/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/footer/footer.component.scss -------------------------------------------------------------------------------- /demo/src/app/shared/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /demo/src/app/shared/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/header/header.component.html -------------------------------------------------------------------------------- /demo/src/app/shared/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/header/header.component.scss -------------------------------------------------------------------------------- /demo/src/app/shared/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/header/header.component.spec.ts -------------------------------------------------------------------------------- /demo/src/app/shared/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/header/header.component.ts -------------------------------------------------------------------------------- /demo/src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './shared.module'; -------------------------------------------------------------------------------- /demo/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /demo/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/src/assets/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/README.md -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /demo/src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /demo/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/logo.svg -------------------------------------------------------------------------------- /demo/src/assets/md/e1/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/assets/md/e1/html.md -------------------------------------------------------------------------------- /demo/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/browserslist -------------------------------------------------------------------------------- /demo/src/environments/environment.hmr.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | hmr: true 4 | }; 5 | -------------------------------------------------------------------------------- /demo/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | hmr: false 4 | }; 5 | -------------------------------------------------------------------------------- /demo/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/environments/environment.ts -------------------------------------------------------------------------------- /demo/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/favicon.ico -------------------------------------------------------------------------------- /demo/src/hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/hmr.ts -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/index.html -------------------------------------------------------------------------------- /demo/src/jestGlobalMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/jestGlobalMocks.ts -------------------------------------------------------------------------------- /demo/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/karma.conf.js -------------------------------------------------------------------------------- /demo/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/main.server.ts -------------------------------------------------------------------------------- /demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/main.ts -------------------------------------------------------------------------------- /demo/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/manifest.json -------------------------------------------------------------------------------- /demo/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/polyfills.ts -------------------------------------------------------------------------------- /demo/src/setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/setupJest.ts -------------------------------------------------------------------------------- /demo/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/styles.scss -------------------------------------------------------------------------------- /demo/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/test.ts -------------------------------------------------------------------------------- /demo/src/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './router-stubs'; -------------------------------------------------------------------------------- /demo/src/testing/router-stubs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/testing/router-stubs.ts -------------------------------------------------------------------------------- /demo/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/tsconfig.app.json -------------------------------------------------------------------------------- /demo/src/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/tsconfig.server.json -------------------------------------------------------------------------------- /demo/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/tsconfig.spec.json -------------------------------------------------------------------------------- /demo/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/src/typings.d.ts -------------------------------------------------------------------------------- /demo/static.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/static.paths.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/tslint.json -------------------------------------------------------------------------------- /demo/webpack.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/demo/webpack.server.config.js -------------------------------------------------------------------------------- /greenkeeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/greenkeeper.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/package.json -------------------------------------------------------------------------------- /src/auth/module/components/alerts-container/ngb-alerts-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/alerts-container/ngb-alerts-container.component.html -------------------------------------------------------------------------------- /src/auth/module/components/alerts-container/ngb-alerts-container.component.scss: -------------------------------------------------------------------------------- 1 | :host{ 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /src/auth/module/components/alerts-container/ngb-alerts-container.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/alerts-container/ngb-alerts-container.component.spec.ts -------------------------------------------------------------------------------- /src/auth/module/components/alerts-container/ngb-alerts-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/alerts-container/ngb-alerts-container.component.ts -------------------------------------------------------------------------------- /src/auth/module/components/auth/auth.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/auth/auth.component.html -------------------------------------------------------------------------------- /src/auth/module/components/auth/auth.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/auth/auth.component.scss -------------------------------------------------------------------------------- /src/auth/module/components/auth/auth.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/auth/auth.component.spec.ts -------------------------------------------------------------------------------- /src/auth/module/components/auth/auth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/auth/auth.component.ts -------------------------------------------------------------------------------- /src/auth/module/components/email-confirmation/email-confirmation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/email-confirmation/email-confirmation.component.html -------------------------------------------------------------------------------- /src/auth/module/components/email-confirmation/email-confirmation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/email-confirmation/email-confirmation.component.scss -------------------------------------------------------------------------------- /src/auth/module/components/email-confirmation/email-confirmation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/email-confirmation/email-confirmation.component.ts -------------------------------------------------------------------------------- /src/auth/module/components/enums/accounts.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/enums/accounts.enum.ts -------------------------------------------------------------------------------- /src/auth/module/components/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './accounts.enum'; 2 | -------------------------------------------------------------------------------- /src/auth/module/components/progress-bar/progress-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/progress-bar/progress-bar.component.html -------------------------------------------------------------------------------- /src/auth/module/components/progress-bar/progress-bar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/progress-bar/progress-bar.component.scss -------------------------------------------------------------------------------- /src/auth/module/components/progress-bar/progress-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/progress-bar/progress-bar.component.ts -------------------------------------------------------------------------------- /src/auth/module/components/providers/auth.providers.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/providers/auth.providers.component.html -------------------------------------------------------------------------------- /src/auth/module/components/providers/auth.providers.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/providers/auth.providers.component.scss -------------------------------------------------------------------------------- /src/auth/module/components/providers/auth.providers.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/components/providers/auth.providers.component.ts -------------------------------------------------------------------------------- /src/auth/module/interfaces/config.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/interfaces/config.interface.ts -------------------------------------------------------------------------------- /src/auth/module/interfaces/ialert.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/interfaces/ialert.interface.ts -------------------------------------------------------------------------------- /src/auth/module/interfaces/main.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/interfaces/main.interface.ts -------------------------------------------------------------------------------- /src/auth/module/ngb-auth-firebase-u-i.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/ngb-auth-firebase-u-i.module.ts -------------------------------------------------------------------------------- /src/auth/module/services/alert.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/services/alert.service.spec.ts -------------------------------------------------------------------------------- /src/auth/module/services/alert.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/services/alert.service.ts -------------------------------------------------------------------------------- /src/auth/module/services/auth-process.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/services/auth-process.service.ts -------------------------------------------------------------------------------- /src/auth/module/services/firestore-sync.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/auth/module/services/firestore-sync.service.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tsconfig.lib.es5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/tsconfig.lib.es5.json -------------------------------------------------------------------------------- /src/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/tsconfig.lib.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebaseui/ng-bootstrap/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./config/webpack.test.js'); 2 | --------------------------------------------------------------------------------