├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── ios ├── .gitignore └── App │ ├── App.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-20x20@1x.png │ │ │ ├── AppIcon-20x20@2x-1.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@1x.png │ │ │ ├── AppIcon-29x29@2x-1.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-40x40@1x.png │ │ │ ├── AppIcon-40x40@2x-1.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-512@2x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-76x76@1x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── splash-2732x2732-1.png │ │ │ ├── splash-2732x2732-2.png │ │ │ └── splash-2732x2732.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── capacitor.config.json │ └── config.xml │ └── Podfile ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── colors │ │ ├── colors.module.ts │ │ ├── colors.page.html │ │ ├── colors.page.scss │ │ ├── colors.page.spec.ts │ │ └── colors.page.ts │ ├── inbox │ │ ├── inbox.module.ts │ │ ├── inbox.page.html │ │ ├── inbox.page.scss │ │ ├── inbox.page.spec.ts │ │ └── inbox.page.ts │ ├── music │ │ ├── music.module.ts │ │ ├── music.page.html │ │ ├── music.page.scss │ │ ├── music.page.spec.ts │ │ └── music.page.ts │ └── phone │ │ ├── phone.module.ts │ │ ├── phone.page.html │ │ ├── phone.page.scss │ │ ├── phone.page.spec.ts │ │ └── phone.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ ├── inbox-data.json │ ├── music │ │ ├── bohemian-rhapsody.jpg │ │ ├── dont-stop-believin.jpg │ │ ├── good-vibrations.jpg │ │ ├── hey-jude.jpg │ │ ├── hit-me-with-your-best-shot.jpg │ │ ├── hound-dog.jpg │ │ ├── i-walk-the-line.jpg │ │ └── sweet-home-alabama.jpg │ ├── phone-data.json │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/browserslist -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ionic.config.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/Info.plist -------------------------------------------------------------------------------- /ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/capacitor.config.json -------------------------------------------------------------------------------- /ios/App/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/App/config.xml -------------------------------------------------------------------------------- /ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/ios/App/Podfile -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/colors/colors.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/colors/colors.module.ts -------------------------------------------------------------------------------- /src/app/colors/colors.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/colors/colors.page.html -------------------------------------------------------------------------------- /src/app/colors/colors.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/colors/colors.page.scss -------------------------------------------------------------------------------- /src/app/colors/colors.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/colors/colors.page.spec.ts -------------------------------------------------------------------------------- /src/app/colors/colors.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/colors/colors.page.ts -------------------------------------------------------------------------------- /src/app/inbox/inbox.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/inbox/inbox.module.ts -------------------------------------------------------------------------------- /src/app/inbox/inbox.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/inbox/inbox.page.html -------------------------------------------------------------------------------- /src/app/inbox/inbox.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/inbox/inbox.page.scss -------------------------------------------------------------------------------- /src/app/inbox/inbox.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/inbox/inbox.page.spec.ts -------------------------------------------------------------------------------- /src/app/inbox/inbox.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/inbox/inbox.page.ts -------------------------------------------------------------------------------- /src/app/music/music.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/music/music.module.ts -------------------------------------------------------------------------------- /src/app/music/music.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/music/music.page.html -------------------------------------------------------------------------------- /src/app/music/music.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/music/music.page.scss -------------------------------------------------------------------------------- /src/app/music/music.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/music/music.page.spec.ts -------------------------------------------------------------------------------- /src/app/music/music.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/music/music.page.ts -------------------------------------------------------------------------------- /src/app/phone/phone.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/phone/phone.module.ts -------------------------------------------------------------------------------- /src/app/phone/phone.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/phone/phone.page.html -------------------------------------------------------------------------------- /src/app/phone/phone.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/phone/phone.page.scss -------------------------------------------------------------------------------- /src/app/phone/phone.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/phone/phone.page.spec.ts -------------------------------------------------------------------------------- /src/app/phone/phone.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/app/phone/phone.page.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/inbox-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/inbox-data.json -------------------------------------------------------------------------------- /src/assets/music/bohemian-rhapsody.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/bohemian-rhapsody.jpg -------------------------------------------------------------------------------- /src/assets/music/dont-stop-believin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/dont-stop-believin.jpg -------------------------------------------------------------------------------- /src/assets/music/good-vibrations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/good-vibrations.jpg -------------------------------------------------------------------------------- /src/assets/music/hey-jude.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/hey-jude.jpg -------------------------------------------------------------------------------- /src/assets/music/hit-me-with-your-best-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/hit-me-with-your-best-shot.jpg -------------------------------------------------------------------------------- /src/assets/music/hound-dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/hound-dog.jpg -------------------------------------------------------------------------------- /src/assets/music/i-walk-the-line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/i-walk-the-line.jpg -------------------------------------------------------------------------------- /src/assets/music/sweet-home-alabama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/music/sweet-home-alabama.jpg -------------------------------------------------------------------------------- /src/assets/phone-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/phone-data.json -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandyscarney/demos/HEAD/tslint.json --------------------------------------------------------------------------------