├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── nativescript ├── .gitignore ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── app.gradle │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_arrow_back_white.png │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_arrow_back_white.png │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_arrow_back_white.png │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_arrow_back_white.png │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_arrow_back_white.png │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ ├── google-services.json │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ ├── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ ├── ic_add_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_add_white.png │ │ │ │ ├── ic_add_white_2x.png │ │ │ │ └── ic_add_white_3x.png │ │ │ └── ic_menu_white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_menu_white.png │ │ │ │ ├── ic_menu_white_2x.png │ │ │ │ └── ic_menu_white_3x.png │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── app.android.scss │ ├── app.ios.scss │ ├── fonts │ │ ├── MaterialIcons-Regular.ttf │ │ ├── Roboto-Light.ttf │ │ └── Roboto-Regular.ttf │ ├── main.ts │ ├── modules │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── authors │ │ │ ├── authors-list.component.html │ │ │ ├── authors-list.component.ts │ │ │ ├── authors-routing.module.ts │ │ │ └── authors.module.ts │ │ ├── categories │ │ │ ├── categories-list.component.html │ │ │ ├── categories-list.component.ts │ │ │ ├── categories-routing.module.ts │ │ │ └── categories.module.ts │ │ ├── core │ │ │ ├── application-storage.service.ts │ │ │ ├── core.module.ts │ │ │ └── native-firebase.service.ts │ │ ├── my-quotes │ │ │ ├── my-quotes-routing.module.ts │ │ │ ├── my-quotes.component.html │ │ │ ├── my-quotes.component.scss │ │ │ ├── my-quotes.component.ts │ │ │ ├── my-quotes.module.ts │ │ │ └── new-quote │ │ │ │ ├── new-quote.component.html │ │ │ │ ├── new-quote.component.scss │ │ │ │ └── new-quote.component.ts │ │ ├── quotes │ │ │ ├── quotes-list │ │ │ │ ├── quotes-list.component.html │ │ │ │ ├── quotes-list.component.scss │ │ │ │ └── quotes-list.component.ts │ │ │ ├── quotes-routing.module.ts │ │ │ ├── quotes.component.html │ │ │ ├── quotes.component.ts │ │ │ └── quotes.module.ts │ │ └── shared │ │ │ ├── borderless-btn.directive.ts │ │ │ ├── shared.module.ts │ │ │ ├── side-drawer.component.html │ │ │ ├── side-drawer.component.scss │ │ │ └── side-drawer.component.ts │ ├── package.json │ └── scss │ │ ├── _app-common.scss │ │ └── _variables.scss ├── firebase.nativescript.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── references.d.ts └── tsconfig.json ├── package.json ├── tools └── install.js ├── tslint.json ├── typings.json ├── web ├── .angular-cli.json ├── .gitignore ├── README.md ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── protractor.conf.js ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── app.service.ts │ │ ├── authors │ │ │ ├── authors-list.component.html │ │ │ ├── authors-list.component.scss │ │ │ ├── authors-list.component.spec.ts │ │ │ ├── authors-list.component.ts │ │ │ └── authors.module.ts │ │ ├── categories │ │ │ ├── categories-list.component.html │ │ │ ├── categories-list.component.scss │ │ │ ├── categories-list.component.spec.ts │ │ │ ├── categories-list.component.ts │ │ │ └── categories.module.ts │ │ ├── core │ │ │ ├── core.module.ts │ │ │ ├── local-storage.service.ts │ │ │ ├── utility.service.ts │ │ │ └── web-firebase.service.ts │ │ ├── index.ts │ │ ├── my-quotes │ │ │ ├── my-quotes-routing.module.ts │ │ │ ├── my-quotes.component.html │ │ │ ├── my-quotes.component.scss │ │ │ ├── my-quotes.component.ts │ │ │ ├── my-quotes.module.ts │ │ │ └── new-quote │ │ │ │ ├── new-quote.component.html │ │ │ │ ├── new-quote.component.scss │ │ │ │ └── new-quote.component.ts │ │ ├── quotes │ │ │ ├── quotes-list │ │ │ │ ├── index.ts │ │ │ │ ├── quote-list.component.spec.ts │ │ │ │ ├── quotes-list.component.html │ │ │ │ ├── quotes-list.component.scss │ │ │ │ └── quotes-list.component.ts │ │ │ ├── quotes-routing.module.ts │ │ │ ├── quotes.component.html │ │ │ ├── quotes.component.scss │ │ │ ├── quotes.component.spec.ts │ │ │ ├── quotes.component.ts │ │ │ └── quotes.module.ts │ │ └── shared │ │ │ └── shared.module.ts │ ├── assets │ │ ├── .gitkeep │ │ └── .npmignore │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── scss │ │ ├── _functions.scss │ │ └── _variables.scss │ ├── styles.scss │ ├── test.ts │ ├── testing │ │ ├── index.ts │ │ └── router-stubs │ │ │ ├── activated-route-stub.service.ts │ │ │ ├── index.ts │ │ │ ├── router-link-stub.directive.ts │ │ │ ├── router-outlet-stub.component.ts │ │ │ ├── router-stub.service.ts │ │ │ └── router-stubs.module.ts │ ├── tsconfig.json │ └── typings.d.ts └── typings.d.ts └── x-shared ├── app ├── authors │ ├── author.service.spec.ts │ ├── author.service.ts │ ├── authors-list-common.view-model.spec.ts │ ├── authors-list-common.view-model.ts │ ├── index.ts │ └── testing │ │ ├── authors.mock.ts │ │ ├── fake-author.service.ts │ │ └── index.ts ├── categories │ ├── categories-list-common.view-model.spec.ts │ ├── categories-list-common.view-model.ts │ ├── category.service.spec.ts │ ├── category.service.ts │ ├── index.ts │ └── testing │ │ ├── categories.mock.ts │ │ ├── fake-category.service.ts │ │ └── index.ts ├── core │ ├── firebase.service.ts │ ├── index.ts │ ├── local-database.service.ts │ ├── storage.service.ts │ └── testing │ │ ├── fake-firebase.service.ts │ │ ├── fake-local-database.service.ts │ │ └── index.ts ├── my-quotes │ ├── index.ts │ ├── my-quote.model.ts │ ├── my-quotes-common.view-model.ts │ ├── my-quotes.service.ts │ └── new-quote-common.view-model.ts ├── quotes │ ├── index.ts │ ├── my-favourites.service.spec.ts │ ├── my-favourites.service.ts │ ├── quotes-list-common.view-model.spec.ts │ ├── quotes-list-common.view-model.ts │ ├── quotes.service.spec.ts │ ├── quotes.service.ts │ └── testing │ │ ├── fake-my-favourites.service.ts │ │ ├── fake-quotes.service.ts │ │ ├── index.ts │ │ ├── my-favourites.mock.ts │ │ └── quotes.mock.ts └── shared │ ├── index.ts │ └── models │ ├── index.ts │ └── pagination.ts ├── assets └── logo.png ├── scss └── _variables.scss ├── tsconfig.json └── typings └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/README.md -------------------------------------------------------------------------------- /nativescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/.gitignore -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/google-services.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/values/strings.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white_2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_add_white.imageset/ic_add_white_3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white_2x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Assets.xcassets/ic_menu_white.imageset/ic_menu_white_3x.png -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/GoogleService-Info.plist -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /nativescript/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /nativescript/app/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/app.android.scss -------------------------------------------------------------------------------- /nativescript/app/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/app.ios.scss -------------------------------------------------------------------------------- /nativescript/app/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /nativescript/app/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /nativescript/app/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /nativescript/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/main.ts -------------------------------------------------------------------------------- /nativescript/app/modules/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/app-routing.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/app.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/app.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/authors/authors-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/authors/authors-list.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/authors/authors-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/authors/authors-list.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/authors/authors-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/authors/authors-routing.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/authors/authors.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/authors/authors.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/categories/categories-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/categories/categories-list.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/categories/categories-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/categories/categories-list.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/categories/categories-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/categories/categories-routing.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/categories/categories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/categories/categories.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/core/application-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/core/application-storage.service.ts -------------------------------------------------------------------------------- /nativescript/app/modules/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/core/core.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/core/native-firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/core/native-firebase.service.ts -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/my-quotes-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/my-quotes-routing.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/my-quotes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/my-quotes.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/my-quotes.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/my-quotes.component.scss -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/my-quotes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/my-quotes.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/my-quotes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/my-quotes.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/new-quote/new-quote.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/new-quote/new-quote.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/new-quote/new-quote.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/new-quote/new-quote.component.scss -------------------------------------------------------------------------------- /nativescript/app/modules/my-quotes/new-quote/new-quote.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/my-quotes/new-quote/new-quote.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes-list/quotes-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes-list/quotes-list.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes-list/quotes-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes-list/quotes-list.component.scss -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes-list/quotes-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes-list/quotes-list.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes-routing.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes.component.ts -------------------------------------------------------------------------------- /nativescript/app/modules/quotes/quotes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/quotes/quotes.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/shared/borderless-btn.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/shared/borderless-btn.directive.ts -------------------------------------------------------------------------------- /nativescript/app/modules/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/shared/shared.module.ts -------------------------------------------------------------------------------- /nativescript/app/modules/shared/side-drawer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/shared/side-drawer.component.html -------------------------------------------------------------------------------- /nativescript/app/modules/shared/side-drawer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/shared/side-drawer.component.scss -------------------------------------------------------------------------------- /nativescript/app/modules/shared/side-drawer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/modules/shared/side-drawer.component.ts -------------------------------------------------------------------------------- /nativescript/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/package.json -------------------------------------------------------------------------------- /nativescript/app/scss/_app-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/scss/_app-common.scss -------------------------------------------------------------------------------- /nativescript/app/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/app/scss/_variables.scss -------------------------------------------------------------------------------- /nativescript/firebase.nativescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/firebase.nativescript.json -------------------------------------------------------------------------------- /nativescript/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/karma.conf.js -------------------------------------------------------------------------------- /nativescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/package-lock.json -------------------------------------------------------------------------------- /nativescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/package.json -------------------------------------------------------------------------------- /nativescript/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/references.d.ts -------------------------------------------------------------------------------- /nativescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/nativescript/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/package.json -------------------------------------------------------------------------------- /tools/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/tools/install.js -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/typings.json -------------------------------------------------------------------------------- /web/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/.angular-cli.json -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/README.md -------------------------------------------------------------------------------- /web/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /web/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/e2e/app.po.ts -------------------------------------------------------------------------------- /web/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/e2e/tsconfig.json -------------------------------------------------------------------------------- /web/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/karma.conf.js -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/package.json -------------------------------------------------------------------------------- /web/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/protractor.conf.js -------------------------------------------------------------------------------- /web/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.component.html -------------------------------------------------------------------------------- /web/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.component.scss -------------------------------------------------------------------------------- /web/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.component.ts -------------------------------------------------------------------------------- /web/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.module.ts -------------------------------------------------------------------------------- /web/src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.routing.ts -------------------------------------------------------------------------------- /web/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/app.service.ts -------------------------------------------------------------------------------- /web/src/app/authors/authors-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/authors/authors-list.component.html -------------------------------------------------------------------------------- /web/src/app/authors/authors-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/authors/authors-list.component.scss -------------------------------------------------------------------------------- /web/src/app/authors/authors-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/authors/authors-list.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/authors/authors-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/authors/authors-list.component.ts -------------------------------------------------------------------------------- /web/src/app/authors/authors.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/authors/authors.module.ts -------------------------------------------------------------------------------- /web/src/app/categories/categories-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/categories/categories-list.component.html -------------------------------------------------------------------------------- /web/src/app/categories/categories-list.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/app/categories/categories-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/categories/categories-list.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/categories/categories-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/categories/categories-list.component.ts -------------------------------------------------------------------------------- /web/src/app/categories/categories.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/categories/categories.module.ts -------------------------------------------------------------------------------- /web/src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/core/core.module.ts -------------------------------------------------------------------------------- /web/src/app/core/local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/core/local-storage.service.ts -------------------------------------------------------------------------------- /web/src/app/core/utility.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/core/utility.service.ts -------------------------------------------------------------------------------- /web/src/app/core/web-firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/core/web-firebase.service.ts -------------------------------------------------------------------------------- /web/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/index.ts -------------------------------------------------------------------------------- /web/src/app/my-quotes/my-quotes-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/my-quotes-routing.module.ts -------------------------------------------------------------------------------- /web/src/app/my-quotes/my-quotes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/my-quotes.component.html -------------------------------------------------------------------------------- /web/src/app/my-quotes/my-quotes.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/my-quotes.component.scss -------------------------------------------------------------------------------- /web/src/app/my-quotes/my-quotes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/my-quotes.component.ts -------------------------------------------------------------------------------- /web/src/app/my-quotes/my-quotes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/my-quotes.module.ts -------------------------------------------------------------------------------- /web/src/app/my-quotes/new-quote/new-quote.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/new-quote/new-quote.component.html -------------------------------------------------------------------------------- /web/src/app/my-quotes/new-quote/new-quote.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/new-quote/new-quote.component.scss -------------------------------------------------------------------------------- /web/src/app/my-quotes/new-quote/new-quote.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/my-quotes/new-quote/new-quote.component.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-list/index.ts: -------------------------------------------------------------------------------- 1 | export * from './quotes-list.component'; 2 | -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-list/quote-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes-list/quote-list.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-list/quotes-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes-list/quotes-list.component.html -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-list/quotes-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes-list/quotes-list.component.scss -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-list/quotes-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes-list/quotes-list.component.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes-routing.module.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes.component.html -------------------------------------------------------------------------------- /web/src/app/quotes/quotes.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes.component.scss -------------------------------------------------------------------------------- /web/src/app/quotes/quotes.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes.component.spec.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes.component.ts -------------------------------------------------------------------------------- /web/src/app/quotes/quotes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/quotes/quotes.module.ts -------------------------------------------------------------------------------- /web/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /web/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/assets/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /web/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/environments/environment.ts -------------------------------------------------------------------------------- /web/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/favicon.ico -------------------------------------------------------------------------------- /web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/index.html -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/polyfills.ts -------------------------------------------------------------------------------- /web/src/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/scss/_functions.scss -------------------------------------------------------------------------------- /web/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/scss/_variables.scss -------------------------------------------------------------------------------- /web/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/styles.scss -------------------------------------------------------------------------------- /web/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/test.ts -------------------------------------------------------------------------------- /web/src/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/index.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/activated-route-stub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/activated-route-stub.service.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/index.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/router-link-stub.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/router-link-stub.directive.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/router-outlet-stub.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/router-outlet-stub.component.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/router-stub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/router-stub.service.ts -------------------------------------------------------------------------------- /web/src/testing/router-stubs/router-stubs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/testing/router-stubs/router-stubs.module.ts -------------------------------------------------------------------------------- /web/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/tsconfig.json -------------------------------------------------------------------------------- /web/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/web/src/typings.d.ts -------------------------------------------------------------------------------- /web/typings.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /x-shared/app/authors/author.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/author.service.spec.ts -------------------------------------------------------------------------------- /x-shared/app/authors/author.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/author.service.ts -------------------------------------------------------------------------------- /x-shared/app/authors/authors-list-common.view-model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/authors-list-common.view-model.spec.ts -------------------------------------------------------------------------------- /x-shared/app/authors/authors-list-common.view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/authors-list-common.view-model.ts -------------------------------------------------------------------------------- /x-shared/app/authors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/index.ts -------------------------------------------------------------------------------- /x-shared/app/authors/testing/authors.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/testing/authors.mock.ts -------------------------------------------------------------------------------- /x-shared/app/authors/testing/fake-author.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/testing/fake-author.service.ts -------------------------------------------------------------------------------- /x-shared/app/authors/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/authors/testing/index.ts -------------------------------------------------------------------------------- /x-shared/app/categories/categories-list-common.view-model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/categories-list-common.view-model.spec.ts -------------------------------------------------------------------------------- /x-shared/app/categories/categories-list-common.view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/categories-list-common.view-model.ts -------------------------------------------------------------------------------- /x-shared/app/categories/category.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/category.service.spec.ts -------------------------------------------------------------------------------- /x-shared/app/categories/category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/category.service.ts -------------------------------------------------------------------------------- /x-shared/app/categories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/index.ts -------------------------------------------------------------------------------- /x-shared/app/categories/testing/categories.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/testing/categories.mock.ts -------------------------------------------------------------------------------- /x-shared/app/categories/testing/fake-category.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/testing/fake-category.service.ts -------------------------------------------------------------------------------- /x-shared/app/categories/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/categories/testing/index.ts -------------------------------------------------------------------------------- /x-shared/app/core/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/firebase.service.ts -------------------------------------------------------------------------------- /x-shared/app/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/index.ts -------------------------------------------------------------------------------- /x-shared/app/core/local-database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/local-database.service.ts -------------------------------------------------------------------------------- /x-shared/app/core/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/storage.service.ts -------------------------------------------------------------------------------- /x-shared/app/core/testing/fake-firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/testing/fake-firebase.service.ts -------------------------------------------------------------------------------- /x-shared/app/core/testing/fake-local-database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/testing/fake-local-database.service.ts -------------------------------------------------------------------------------- /x-shared/app/core/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/core/testing/index.ts -------------------------------------------------------------------------------- /x-shared/app/my-quotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/my-quotes/index.ts -------------------------------------------------------------------------------- /x-shared/app/my-quotes/my-quote.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/my-quotes/my-quote.model.ts -------------------------------------------------------------------------------- /x-shared/app/my-quotes/my-quotes-common.view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/my-quotes/my-quotes-common.view-model.ts -------------------------------------------------------------------------------- /x-shared/app/my-quotes/my-quotes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/my-quotes/my-quotes.service.ts -------------------------------------------------------------------------------- /x-shared/app/my-quotes/new-quote-common.view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/my-quotes/new-quote-common.view-model.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/index.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/my-favourites.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/my-favourites.service.spec.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/my-favourites.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/my-favourites.service.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/quotes-list-common.view-model.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/quotes-list-common.view-model.spec.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/quotes-list-common.view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/quotes-list-common.view-model.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/quotes.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/quotes.service.spec.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/quotes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/quotes.service.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/testing/fake-my-favourites.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/testing/fake-my-favourites.service.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/testing/fake-quotes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/testing/fake-quotes.service.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/testing/index.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/testing/my-favourites.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/testing/my-favourites.mock.ts -------------------------------------------------------------------------------- /x-shared/app/quotes/testing/quotes.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/quotes/testing/quotes.mock.ts -------------------------------------------------------------------------------- /x-shared/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './models'; 2 | -------------------------------------------------------------------------------- /x-shared/app/shared/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './pagination'; 2 | -------------------------------------------------------------------------------- /x-shared/app/shared/models/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/app/shared/models/pagination.ts -------------------------------------------------------------------------------- /x-shared/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/assets/logo.png -------------------------------------------------------------------------------- /x-shared/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/scss/_variables.scss -------------------------------------------------------------------------------- /x-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/tsconfig.json -------------------------------------------------------------------------------- /x-shared/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shripalsoni04/ngxp-quotes-app/HEAD/x-shared/typings/index.d.ts --------------------------------------------------------------------------------