├── .ctags-exclude ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DevelopmentWorkflow.md ├── LICENSE ├── NativeScript-dependencies.md ├── PULL_REQUEST_TESTS.md ├── README.md ├── build-doc-snippets.sh ├── build-docs.sh ├── build ├── pack-scripts │ ├── pack-compat.ts │ ├── pack-scoped.ts │ ├── package.json │ └── tsconfig.json └── prepublish-next.js ├── doc └── upgrading-zonejs.md ├── e2e ├── README.md ├── animation-examples │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.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-60@2x.png │ │ │ │ │ ├── icon-60@3x.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── animate-child.component.ts │ │ ├── animation-builder.component.scss │ │ ├── animation-builder.component.ts │ │ ├── animations-list.component.ts │ │ ├── animations.ts │ │ ├── app.android.css │ │ ├── app.component.ts │ │ ├── app.ios.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── external-animation.component.ts │ │ ├── fade-in-out.component.ts │ │ ├── hero │ │ │ ├── hero-list-basic.component.ts │ │ │ ├── hero-list-combined-transitions.component.ts │ │ │ ├── hero-list-enter-leave-states.component.ts │ │ │ ├── hero-list-enter-leave.component.ts │ │ │ ├── hero-list-inline-styles.component.ts │ │ │ ├── hero-list-timings.component.ts │ │ │ ├── hero-list-twoway.component.ts │ │ │ ├── hero-list.component.css │ │ │ ├── hero-routing.module.ts │ │ │ ├── hero-team-builder.component.html │ │ │ ├── hero-team-builder.component.ts │ │ │ ├── hero.module.ts │ │ │ └── hero.service.ts │ │ ├── main.ts │ │ ├── options-default.component.ts │ │ ├── options.component.ts │ │ ├── query-stagger.component.ts │ │ └── selector-all.component.ts │ ├── e2e │ │ ├── helper │ │ │ └── utils.ts │ │ ├── pages │ │ │ ├── animate-child-page.ts │ │ │ ├── animation-builder-page.ts │ │ │ ├── animation-with-options-page.ts │ │ │ ├── animations-with-default-options-page.ts │ │ │ ├── base-page.ts │ │ │ ├── extarnal-animation-page.ts │ │ │ ├── fade-in-out-page.ts │ │ │ ├── hero-page.ts │ │ │ ├── query-stagger-page.ts │ │ │ └── selector-page.ts │ │ ├── resources │ │ │ └── images │ │ │ │ └── ng4animations │ │ │ │ ├── Emulator-Api19-Default │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api22-Default │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api22-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api23-Default │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api24-Default │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api25-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api26-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api27-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api28-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── Emulator-Api29-Google │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone 7 110 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone 7 12 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone 8 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone X 110 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone X 12 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone XR 12 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ ├── iPhone XR 13 │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ │ │ └── iPhone Xʀ │ │ │ │ ├── add_active_items.png │ │ │ │ ├── add_inactive_items.png │ │ │ │ ├── add_remove_items.png │ │ │ │ └── add_reset_items.png │ │ ├── setup.ts │ │ ├── smoke.e2e-spec.ts │ │ └── tsconfig.json │ ├── nativescript.config.ts │ ├── package.json │ └── tsconfig.json ├── config │ ├── appium.capabilities.json │ └── mocha.opts ├── modal-navigation-ng │ ├── .gitignore │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── iOS │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-1125h.png │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ ├── Default-Landscape-X.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.android.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.ios.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── layout.component.html │ │ ├── layout.component.ts │ │ ├── main.ts │ │ ├── modal-nested │ │ │ ├── modal-nested.component.html │ │ │ └── modal-nested.component.ts │ │ ├── modal-second │ │ │ ├── modal-second.component.html │ │ │ └── modal-second.component.ts │ │ ├── modal-shared │ │ │ ├── modal-shared-second.component.ts │ │ │ ├── modal-view-content.component.ts │ │ │ └── modal-view.component.ts │ │ ├── modal │ │ │ ├── modal-router │ │ │ │ ├── modal-router.component.html │ │ │ │ └── modal-router.component.ts │ │ │ ├── modal.component.html │ │ │ └── modal.component.ts │ │ ├── named-router.component.html │ │ ├── named-router.component.ts │ │ ├── navigation │ │ │ ├── basic.navigation.component.ts │ │ │ ├── root.section.component.html │ │ │ └── root.section.component.ts │ │ ├── package.json │ │ ├── second │ │ │ ├── second.component.html │ │ │ └── second.component.ts │ │ ├── shared │ │ │ └── ViewContainerRefService.ts │ │ ├── tab.component.html │ │ └── tab.component.ts │ ├── e2e │ │ ├── modal-frame.e2e-spec.ts │ │ ├── modal-layout.e2e-spec.ts │ │ ├── modal-on-init.e2e-spec.ts │ │ ├── modal.shared.e2e-spec.ts │ │ ├── screens │ │ │ ├── screen.ts │ │ │ └── shared-screen.ts │ │ ├── setup.ts │ │ └── tsconfig.json │ ├── ngcc.config.js │ ├── package.json │ ├── references.d.ts │ ├── tsconfig.esm.json │ └── tsconfig.json ├── nested-router-tab-view │ ├── .gitignore │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── iOS │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-1125h.png │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ ├── Default-Landscape-X.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── about │ │ │ ├── about-nested.component.html │ │ │ ├── about-nested.component.ts │ │ │ ├── about.component.html │ │ │ └── about.component.ts │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── custom-tabs │ │ │ ├── custom-tabs.component.html │ │ │ ├── custom-tabs.component.ts │ │ │ └── custom-tabs.module.ts │ │ ├── data.service.ts │ │ ├── home-lazy │ │ │ └── home-lazy.module.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── main.ts │ │ ├── modal-nested │ │ │ ├── modal-nested.component.html │ │ │ └── modal-nested.component.ts │ │ ├── modal-second │ │ │ ├── modal-second.component.html │ │ │ └── modal-second.component.ts │ │ ├── modal │ │ │ ├── modal-router │ │ │ │ ├── modal-router.component.html │ │ │ │ └── modal-router.component.ts │ │ │ ├── modal.component.html │ │ │ └── modal.component.ts │ │ ├── package.json │ │ ├── player │ │ │ ├── player-detail.component.html │ │ │ ├── player-detail.component.ts │ │ │ ├── players.component.html │ │ │ └── players.component.ts │ │ ├── shared.module.ts │ │ ├── tabs │ │ │ ├── tabs.component.html │ │ │ └── tabs.component.ts │ │ └── team │ │ │ ├── team-detail.component.html │ │ │ ├── team-detail.component.ts │ │ │ ├── teams.component.html │ │ │ └── teams.component.ts │ ├── e2e │ │ ├── custom-tabs.e2e-spec.ts │ │ ├── home-tabs.e2e-spec.ts │ │ ├── screen.ts │ │ ├── setup.ts │ │ ├── shared.e2e-spec.ts │ │ ├── split-view.e2e-spec.ts │ │ ├── tab-view.e2e-spec.ts │ │ └── tsconfig.json │ ├── package.json │ ├── references.d.ts │ ├── tsconfig.json │ └── tsconfig.tns.json ├── renderer │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── browse.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.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-60@2x.png │ │ │ │ │ ├── icon-60@3x.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── build.xcconfig │ │ │ │ └── tabIcons │ │ │ │ ├── browse.png │ │ │ │ ├── browse@2x.png │ │ │ │ ├── browse@3x.png │ │ │ │ ├── home.png │ │ │ │ ├── home@2x.png │ │ │ │ └── home@3x.png │ │ ├── README.md │ │ ├── action-bar │ │ │ ├── action-bar-dynamic-items.component.ts │ │ │ └── action-bar-extension.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── content-view.component.ts │ │ ├── items-accessor.ts │ │ ├── items.service.ts │ │ ├── list.component.ts │ │ ├── main.ts │ │ ├── ngfor.component.ts │ │ ├── ngforof.component.ts │ │ ├── ngif-inbetween.component.ts │ │ ├── ngif-no-layout.component.ts │ │ ├── ngif-subsequent.component.ts │ │ ├── ngif-then-else.component.ts │ │ ├── ngifelse.component.ts │ │ ├── package.json │ │ ├── page-router-outlet │ │ │ ├── action-bar-visibility-always.component.ts │ │ │ ├── action-bar-visibility-auto.component.ts │ │ │ ├── action-bar-visibility-never.component.ts │ │ │ ├── nested-lazy-page.module.ts │ │ │ └── nested-page.component.ts │ │ ├── shared.module.ts │ │ └── tab-view │ │ │ └── tab-item-binding.component.ts │ ├── e2e │ │ ├── action-bar.e2e-spec.ts │ │ ├── helpers │ │ │ └── location.ts │ │ ├── ngfor.e2e-spec.ts │ │ ├── ngforof.e2e-spec.ts │ │ ├── ngif.e2e-spec.ts │ │ ├── page-router-outlet.e2e-spec.ts │ │ ├── resources │ │ │ └── images │ │ │ │ └── renderer │ │ │ │ ├── Emulator-Api19-Default │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api22-Default │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api22-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api23-Default │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api24-Default │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api25-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api26-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api27-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api28-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── Emulator-Api29-Google │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone 7 100 │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone 7 110 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default-lazy_actual.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden-lazy_actual.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown-lazy_actual.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone 7 12 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone X 110 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default-lazy.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden-lazy.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown-lazy.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone XR 12 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default-lazy.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden-lazy.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown-lazy.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ ├── iPhone XR 13 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default-lazy.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden-lazy.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown-lazy.png │ │ │ │ ├── actionBarVisibility-never-shown.png │ │ │ │ ├── tab-view-binding-first-tab.png │ │ │ │ ├── tab-view-binding-second-tab.png │ │ │ │ └── tab-view-binding-third-tab.png │ │ │ │ └── iPhone XS 12 │ │ │ │ ├── actionBarVisibility-always-default.png │ │ │ │ ├── actionBarVisibility-always-hidden.png │ │ │ │ ├── actionBarVisibility-always-shown.png │ │ │ │ ├── actionBarVisibility-auto-default.png │ │ │ │ ├── actionBarVisibility-auto-hidden.png │ │ │ │ ├── actionBarVisibility-auto-shown.png │ │ │ │ ├── actionBarVisibility-never-default-lazy.png │ │ │ │ ├── actionBarVisibility-never-default.png │ │ │ │ ├── actionBarVisibility-never-hidden-lazy.png │ │ │ │ ├── actionBarVisibility-never-hidden.png │ │ │ │ ├── actionBarVisibility-never-shown-lazy.png │ │ │ │ └── actionBarVisibility-never-shown.png │ │ ├── setup.ts │ │ ├── tab-view.e2e-spec.ts │ │ └── tsconfig.json │ ├── package.json │ └── tsconfig.json ├── routable-animations │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.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-60@2x.png │ │ │ │ │ ├── icon-60@3x.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── README.md │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── main.ts │ │ ├── package.json │ │ └── support │ │ │ ├── support.component.css │ │ │ ├── support.component.html │ │ │ └── support.component.ts │ ├── e2e │ │ ├── resources │ │ │ └── images │ │ │ │ └── nsroanimations │ │ │ │ ├── Emulator-Api19-Default │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api22-Default │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api22-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api23-Default │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api24-Default │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api25-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api26-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api27-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api28-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── Emulator-Api29-Google │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone 7 100 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone 7 110 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone 7 12 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone 8 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone X 110 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ ├── iPhone XR 12 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ │ │ └── iPhone XR 13 │ │ │ │ ├── home.png │ │ │ │ └── support.png │ │ ├── setup.ts │ │ ├── tests.e2e.ts │ │ └── tsconfig.json │ ├── package.json │ ├── tsconfig.esm.json │ └── tsconfig.json ├── router-tab-view │ ├── .gitignore │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── iOS │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-1125h.png │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-667h@2x.png │ │ │ │ │ ├── Default-736h@3x.png │ │ │ │ │ ├── Default-Landscape-X.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── app.routing.ts │ │ ├── data.service.ts │ │ ├── main.ts │ │ ├── package.json │ │ ├── player │ │ │ ├── player-detail.component.html │ │ │ ├── player-detail.component.ts │ │ │ ├── players.component.html │ │ │ └── players.component.ts │ │ └── team │ │ │ ├── team-detail.component.html │ │ │ ├── team-detail.component.ts │ │ │ ├── teams.component.html │ │ │ └── teams.component.ts │ ├── e2e │ │ ├── setup.ts │ │ ├── tab-view-navigation.e2e-spec.ts │ │ └── tsconfig.json │ ├── package.json │ └── tsconfig.json ├── router │ ├── .gitignore │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.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-60@2x.png │ │ │ │ │ ├── icon-60@3x.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── README.md │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ts │ │ ├── counter.service.ts │ │ ├── first │ │ │ └── first.component.ts │ │ ├── lazy-named │ │ │ ├── lazy-named.module.ts │ │ │ ├── nested-detail.component.ts │ │ │ └── nested-master.component.ts │ │ ├── lazy │ │ │ ├── lazy-componentless-route.component.ts │ │ │ ├── lazy.component.ts │ │ │ └── lazy.module.ts │ │ ├── main.ts │ │ ├── package.json │ │ └── second │ │ │ ├── detail.component.ts │ │ │ ├── master.component.ts │ │ │ └── second.component.ts │ ├── e2e │ │ ├── router.e2e-spec.ts │ │ ├── setup.ts │ │ └── tsconfig.json │ ├── package.json │ ├── references.d.ts │ ├── tsconfig.esm.json │ ├── tsconfig.json │ └── tsconfig.tns.json ├── single-page │ ├── .gitignore │ ├── app │ │ ├── App_Resources │ │ │ ├── Android │ │ │ │ ├── app.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ ├── background.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── splash_screen.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.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-60@2x.png │ │ │ │ │ ├── icon-60@3x.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 │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── build.xcconfig │ │ ├── README.md │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.css │ │ ├── app.module.ngfactory.d.ts │ │ ├── app.module.ts │ │ ├── first │ │ │ └── first.component.ts │ │ ├── main.ts │ │ ├── package.json │ │ └── second │ │ │ ├── modal │ │ │ ├── modal.component.html │ │ │ └── modal.component.ts │ │ │ └── second.component.ts │ ├── e2e │ │ ├── setup.ts │ │ ├── tests.e2e-spec.ts │ │ └── tsconfig.json │ ├── package.json │ └── tsconfig.json └── tests-app-ng │ ├── .DS_Store │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── app │ ├── .DS_Store │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ │ └── drawable-nodpi │ │ │ │ └── splashscreen.9.png │ │ └── 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 │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-568h@2x.png │ │ │ ├── Default-Landscape-667h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── build.xcconfig │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── action-bar │ │ ├── action-bar-first.component.ts │ │ ├── action-bar-nested.component.ts │ │ └── action-bar-second.component.ts │ ├── app.css │ ├── app.module.ngfactory.d.ts │ ├── app.module.ts │ ├── app.routes.ts │ ├── binding │ │ └── binding-page.component.ts │ ├── bottom-navigation │ │ └── bottom-navigation.component.ts │ ├── button │ │ ├── button-main-page.component.ts │ │ └── button-text-alignment.component.ts │ ├── date-picker │ │ ├── date-picker-main-page.component.ts │ │ └── issue-324.component.ts │ ├── fonts │ │ ├── FontAwesome.ttf │ │ ├── Pacifico.ttf │ │ └── Sofia.otf │ ├── lazy │ │ ├── lazy.component.css │ │ ├── lazy.component.html │ │ ├── lazy.component.ts │ │ └── lazy.module.ts │ ├── list-picker │ │ ├── list-picker-main-page.component.ts │ │ ├── list-picker.component.ts │ │ └── list-picker.css │ ├── list-view │ │ ├── async-pipe-template.component.ts │ │ ├── data-item.ts │ │ ├── list-view-item-template.component.ts │ │ ├── list-view-main-page.component.ts │ │ ├── list-view-nested-segmented-bar-page.component.ts │ │ ├── list-view-nested-template.component.ts │ │ ├── list-view-page.component.ts │ │ ├── list-view-page.css │ │ └── multiple-templates.component.ts │ ├── main.ts │ ├── main │ │ └── main-page-router-outlet.ts │ ├── modal │ │ ├── lazy │ │ │ └── lazy-load-modal.component.ts │ │ ├── modal-dialogs │ │ │ └── modal-dialog.component.ts │ │ └── modal-view-main-page.component.ts │ ├── navigation-options │ │ ├── navigation-info.component.ts │ │ └── navigation-options.component.ts │ ├── router │ │ ├── lazy-module-navigation │ │ │ └── lazy-navigation.component.ts │ │ └── router-outlet │ │ │ ├── first.component.ts │ │ │ ├── navigation.component.css │ │ │ ├── navigation.component.ts │ │ │ └── second.component.ts │ ├── segmented-bar │ │ ├── issue-649.component.ts │ │ └── segmented-bar-main-page.component.ts │ ├── tab-view │ │ └── tab-view.component.ts │ ├── tabs │ │ └── tabs.component.ts │ └── template │ │ ├── .DS_Store │ │ ├── app.component.css │ │ └── app.component.ts │ ├── nativescript.config.ts │ ├── package.json │ ├── references.d.ts │ └── tsconfig.json ├── merge-guidance-schema.png ├── nativescript-angular-package ├── .npmignore ├── animations │ └── index.ts ├── app-host-view.ts ├── common.ts ├── common │ ├── detached-loader.ts │ ├── index.ts │ └── utils.ts ├── directives │ ├── action-bar.ts │ ├── dialogs.ts │ ├── index.ts │ └── templated-items-comp.ts ├── dom-adapter.ts ├── element-registry.ts ├── file-system │ └── ns-file-system.ts ├── forms │ ├── index.ts │ └── value-accessors │ │ ├── base-value-accessor.ts │ │ ├── checked-value-accessor.ts │ │ ├── date-value-accessor.ts │ │ ├── index.ts │ │ ├── number-value-accessor.ts │ │ ├── selectedIndex-value-accessor.ts │ │ ├── text-value-accessor.ts │ │ └── time-value-accessor.ts ├── http-client │ └── index.ts ├── index.ts ├── lang-facade.ts ├── modal-dialog.ts ├── nativescript.module.ts ├── package.json ├── platform-common.ts ├── platform-providers.ts ├── platform.ts ├── renderer.ts ├── resource-loader.ts ├── router │ ├── index.ts │ ├── ns-location-strategy.ts │ ├── ns-route-reuse-strategy.ts │ ├── ns-router-link.ts │ ├── page-router-outlet.ts │ ├── router-extensions.ts │ └── router.module.ts ├── schema-registry.ts ├── testing │ ├── index.ts │ └── src │ │ ├── nativescript_test_component_renderer.ts │ │ └── util.ts ├── trace.ts ├── tsconfig.json ├── value-accessors │ └── base-value-accessor.ts ├── view-util.ts └── zone-js │ ├── README.md │ ├── testing.jasmine.ts │ └── testing.mocha.ts ├── nativescript-angular ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── animations │ ├── animation-driver.ts │ ├── animation-player.ts │ ├── animations.module.ts │ ├── index.ts │ └── utils.ts ├── app-host-view.ts ├── common.ts ├── common │ ├── detached-loader.ts │ └── utils.ts ├── directives │ ├── action-bar.ts │ ├── dialogs.ts │ ├── index.ts │ ├── list-view-comp.ts │ ├── platform-filters.ts │ ├── tab-view.ts │ └── templated-items-comp.ts ├── dom-adapter.ts ├── element-registry.ts ├── file-system │ ├── index.ts │ └── ns-file-system.ts ├── forms │ ├── forms.module.ts │ ├── index.ts │ └── value-accessors │ │ ├── base-value-accessor.ts │ │ ├── checked-value-accessor.ts │ │ ├── date-value-accessor.ts │ │ ├── index.ts │ │ ├── number-value-accessor.ts │ │ ├── selectedIndex-value-accessor.ts │ │ ├── text-value-accessor.ts │ │ └── time-value-accessor.ts ├── frame.service.ts ├── global.d.ts ├── http-client │ ├── http-client.module.ts │ ├── http-utils.ts │ ├── index.ts │ └── ns-http-backend.ts ├── index.ts ├── lang-facade.ts ├── nativescript.module.ts ├── package.json ├── platform-common.ts ├── platform-providers.ts ├── platform.ts ├── polyfills │ ├── array.ts │ └── console.ts ├── renderer-emulated.ts ├── renderer-factory.ts ├── renderer.ts ├── resource-loader.ts ├── router │ ├── index.ts │ ├── ns-empty-outlet.component.ts │ ├── ns-location-strategy.ts │ ├── ns-location-utils.ts │ ├── ns-module-factory-loader.ts │ ├── ns-platform-location.ts │ ├── ns-route-reuse-strategy.ts │ ├── ns-router-link-active.ts │ ├── ns-router-link.ts │ ├── page-router-outlet-utils.ts │ ├── page-router-outlet.ts │ ├── private-imports │ │ └── router-url-tree.ts │ ├── router-extensions.ts │ └── router.module.ts ├── schema-registry.ts ├── testing │ ├── package.json │ └── src │ │ ├── nativescript-testing.module.ts │ │ ├── nativescript_test_component_renderer.ts │ │ ├── polyfills.ts │ │ ├── public_api.ts │ │ ├── test-root-view.ts │ │ └── util.ts ├── trace.ts ├── tsconfig.json ├── tsconfig.typedoc.json ├── tslint.json ├── value-accessors │ └── base-value-accessor.ts └── view-util.ts ├── release-contribution-guide-schema-webpack.png ├── tests ├── .ctags-exclude ├── .gitignore ├── Makefile ├── README.md ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── icon.png │ │ │ │ └── drawable-nodpi │ │ │ │ ├── checkbox_checked.png │ │ │ │ ├── checkbox_unchecked.png │ │ │ │ └── splashscreen.9.png │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-Small-50.png │ │ │ ├── Icon-Small-50@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Info.plist │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_unchecked.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── LICENSE │ ├── app.component.ts │ ├── app.css │ ├── base.component.ts │ ├── first.component.ts │ ├── fonts │ │ └── icomoon.ttf │ ├── lazy-load-main.ts │ ├── lazy-loaded.module.ts │ ├── logo.png │ ├── main.ts │ ├── multi-page-main.component.ts │ ├── package.json │ ├── second.component.ts │ ├── single-page-main.component.ts │ ├── snippets │ │ ├── gestures.component.html │ │ ├── gestures.component.ts │ │ ├── icon-font.component.css │ │ ├── icon-font.component.html │ │ ├── icon-font.component.ts │ │ ├── layouts.component.html │ │ ├── layouts.component.ts │ │ ├── list-view │ │ │ ├── template-selector.component.html │ │ │ └── template-selector.component.ts │ │ └── navigation │ │ │ ├── app.routes.ts │ │ │ ├── config-snippets.ts │ │ │ ├── navigation-common.css │ │ │ ├── navigation-common.ts │ │ │ ├── page-outlet.ts │ │ │ ├── route-params.ts │ │ │ ├── router-extensions.html │ │ │ ├── router-extensions.ts │ │ │ └── router-outlet.ts │ └── tests │ │ ├── detached-loader-tests.ts │ │ ├── http-client-ns-backend.ts │ │ ├── list-view-tests.ts │ │ ├── modal-dialog.ts │ │ ├── ns-location-strategy.ts │ │ ├── ns-router-link.ts │ │ ├── platform-filter-components.ts │ │ ├── property-sets.ts │ │ ├── renderer-tests.ts │ │ ├── router-module-tests.ts │ │ ├── snippets.ts │ │ ├── style-properties.ts │ │ ├── test-config.ts │ │ ├── test-main.ts │ │ ├── test-utils.ts │ │ ├── third-party-view.ts │ │ ├── third-party.ts │ │ ├── value-accessor-tests.ts │ │ └── xhr-paths.ts ├── hooks │ └── after-prepare │ │ └── nativescript-unit-test-runner.js ├── karma.conf.js ├── nsconfig.json ├── package.json ├── references.d.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # Use LF for shell scripts 2 | *.sh eol=lf 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "node" 4 | script: 5 | - cd nativescript-angular 6 | - npm install 7 | - npm run format-check 8 | - npm pack 9 | -------------------------------------------------------------------------------- /build-docs.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | ENV="${ENV:-dev}" 4 | DIST_DIR="nativescript-angular/bin/dist" 5 | APIREF_DIR="$DIST_DIR/ng-api-reference" 6 | rm -rf "$APIREF_DIR" 7 | cd "nativescript-angular" 8 | npm install 9 | npm run typedoc 10 | -------------------------------------------------------------------------------- /e2e/animation-examples/README.md: -------------------------------------------------------------------------------- 1 | # NativeScript Angular Animations Examples 2 | 3 | A NativeScript Angular applications showcasing the [New Wave of Animation Features in Angular](https://www.yearofmoo.com/2017/06/new-wave-of-animation-features.html). -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/animation-examples/app/animation-builder.component.scss: -------------------------------------------------------------------------------- 1 | .btn-primary { 2 | background-color: pink; 3 | } -------------------------------------------------------------------------------- /e2e/animation-examples/app/app.android.css: -------------------------------------------------------------------------------- 1 | Button { 2 | font-size: 8px; 3 | padding: 0px; 4 | margin: 0px; 5 | } 6 | 7 | Label { 8 | font-size: 8px; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /e2e/animation-examples/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | moduleId: module.id, 5 | template: `` 6 | }) 7 | export class AppComponent { 8 | } -------------------------------------------------------------------------------- /e2e/animation-examples/app/app.ios.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/app/app.ios.css -------------------------------------------------------------------------------- /e2e/animation-examples/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/animation-examples/app/hero/hero-list.component.css: -------------------------------------------------------------------------------- 1 | .active { 2 | background-color: #cfd8dc; 3 | transform: scale(1.1); 4 | } 5 | .inactive { 6 | background-color: #eee; 7 | transform: scale(1); 8 | } 9 | -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 110/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 7 12/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone 8/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 110/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone X 12/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 12/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone XR 13/add_reset_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_active_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_remove_items.png -------------------------------------------------------------------------------- /e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/animation-examples/e2e/resources/images/ng4animations/iPhone Xʀ/add_reset_items.png -------------------------------------------------------------------------------- /e2e/config/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 120000 2 | --recursive e2e 3 | --reporter mochawesome 4 | --reporter-options quiet=true,html=true,inline=true 5 | --exit -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | node_modules 3 | hooks 4 | 5 | app/**/*.js 6 | e2e/**/*.js 7 | e2e/reports 8 | test-results.xml 9 | mochawesome-report 10 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/app.android.css: -------------------------------------------------------------------------------- 1 | Button{ 2 | font-size: 8; 3 | margin: 0px; 4 | padding: 0px; 5 | height: 40; 6 | } 7 | 8 | TextView { 9 | font-size: 10; 10 | margin: 0px; 11 | padding: 0px; 12 | } -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/layout.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/modal/modal-router/modal-router.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/named-router.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": { 3 | "v8Flags": "--expose_gc", 4 | "markingMode": "none" 5 | }, 6 | "main": "main.js", 7 | "name": "tns-template-hello-world-ng", 8 | "version": "3.4.3" 9 | } -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// -------------------------------------------------------------------------------- /e2e/modal-navigation-ng/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "moduleResolution": "node" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | 3 | platforms 4 | node_modules 5 | hooks 6 | 7 | /**/*.js 8 | /**/*.map 9 | e2e/reports 10 | test-results.xml 11 | 12 | instrumentscli*.trace 13 | mochawesome-report -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/about/about-nested.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/app.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/modal/modal-router/modal-router.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": { 3 | "v8Flags": "--expose_gc", 4 | "markingMode": "none" 5 | }, 6 | "main": "main.js", 7 | "name": "tns-template-hello-world-ng", 8 | "version": "3.4.3" 9 | } -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/references.d.ts: -------------------------------------------------------------------------------- 1 | /// Needed for autocompletion and compilation. -------------------------------------------------------------------------------- /e2e/nested-router-tab-view/tsconfig.tns.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "moduleResolution": "node" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e2e/renderer/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | node_modules 3 | hooks 4 | 5 | app/**/*.js 6 | e2e/**/*.js 7 | test-results.xml 8 | e2e/reports 9 | mochawesome-report 10 | 11 | -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/browse.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/home.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/browse.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/browse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/browse@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/browse@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/browse@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/home.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/home@2x.png -------------------------------------------------------------------------------- /e2e/renderer/app/App_Resources/iOS/tabIcons/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/App_Resources/iOS/tabIcons/home@3x.png -------------------------------------------------------------------------------- /e2e/renderer/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | 3 | @Component({ 4 | template: `` 5 | }) 6 | export class AppComponent { } 7 | 8 | -------------------------------------------------------------------------------- /e2e/renderer/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/app/app.css -------------------------------------------------------------------------------- /e2e/renderer/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/renderer/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformNativeScriptDynamic } from "@nativescript/angular/platform"; 2 | import { AppModule } from "./app.module"; 3 | 4 | platformNativeScriptDynamic().bootstrapModule(AppModule); 5 | -------------------------------------------------------------------------------- /e2e/renderer/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js", 3 | "name": "nativescript-template-ng-tutorial", 4 | "version": "3.1.0", 5 | "android": { 6 | "v8Flags": "--expose_gc", 7 | "markingMode": "none" 8 | } 9 | } -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/Emulator-Api19-Default/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/Emulator-Api19-Default/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/Emulator-Api19-Default/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/Emulator-Api19-Default/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Default/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Default/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Default/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Default/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Google/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/Emulator-Api22-Google/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 100/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 110/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone 7 12/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone X 110/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 12/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-first-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-first-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-second-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-second-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-third-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XR 13/tab-view-binding-third-tab.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-always-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-auto-shown.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-default.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-hidden.png -------------------------------------------------------------------------------- /e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/renderer/e2e/resources/images/renderer/iPhone XS 12/actionBarVisibility-never-shown.png -------------------------------------------------------------------------------- /e2e/routable-animations/README.md: -------------------------------------------------------------------------------- 1 | # NativeScript Routable Animations 2 | 3 | A NativeScript Angular applications showcasing [angular routable animations](https://www.yearofmoo.com/2017/06/new-wave-of-animation-features.html#routable-animations). -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/routable-animations/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/routable-animations/app/app.css: -------------------------------------------------------------------------------- 1 | @import "~nativescript-theme-core/css/core.light.css"; 2 | -------------------------------------------------------------------------------- /e2e/routable-animations/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/routable-animations/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/home/home.component.css -------------------------------------------------------------------------------- /e2e/routable-animations/app/home/home.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /e2e/routable-animations/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformNativeScriptDynamic } from "@nativescript/angular/platform"; 2 | import { AppModule } from "./app.module"; 3 | 4 | platformNativeScriptDynamic().bootstrapModule(AppModule); 5 | -------------------------------------------------------------------------------- /e2e/routable-animations/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nativescript-template-ng-tutorial", 3 | "version": "3.1.0", 4 | "main": "main.js", 5 | "android": { 6 | "v8Flags": "--expose_gc", 7 | "markingMode": "none" 8 | } 9 | } -------------------------------------------------------------------------------- /e2e/routable-animations/app/support/support.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/app/support/support.component.css -------------------------------------------------------------------------------- /e2e/routable-animations/app/support/support.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api19-Default/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api19-Default/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api19-Default/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api19-Default/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Default/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Default/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Default/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Default/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api22-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api23-Default/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api23-Default/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api23-Default/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api23-Default/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api24-Default/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api24-Default/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api24-Default/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api24-Default/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api25-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api25-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api25-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api25-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api26-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api26-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api26-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api26-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api27-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api27-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api27-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api27-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api28-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api28-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api28-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api28-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api29-Google/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api29-Google/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api29-Google/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/Emulator-Api29-Google/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 100/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 100/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 100/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 100/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 110/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 110/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 110/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 110/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 12/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 12/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 12/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 7 12/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 8/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 8/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 8/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone 8/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone X 110/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone X 110/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone X 110/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone X 110/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 12/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 12/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 12/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 12/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 13/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 13/home.png -------------------------------------------------------------------------------- /e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 13/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/routable-animations/e2e/resources/images/nsroanimations/iPhone XR 13/support.png -------------------------------------------------------------------------------- /e2e/routable-animations/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "moduleResolution": "node" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e2e/router-tab-view/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | 3 | platforms 4 | node_modules 5 | hooks 6 | 7 | /**/*.js 8 | /**/*.map 9 | e2e/reports 10 | test-results.xml 11 | 12 | instrumentscli*.trace 13 | mochawesome-report -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router-tab-view/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/router-tab-view/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/router-tab-view/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": { 3 | "v8Flags": "--expose_gc", 4 | "markingMode": "none" 5 | }, 6 | "main": "main.js", 7 | "name": "tns-template-hello-world-ng", 8 | "version": "3.4.3" 9 | } -------------------------------------------------------------------------------- /e2e/router/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | 3 | platforms 4 | node_modules 5 | hooks 6 | 7 | /**/*.js 8 | /**/*.map 9 | e2e/reports 10 | test-results.xml 11 | mochawesome-report -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/background.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/icon.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/Android/src/main/res/drawable-nodpi/logo.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/router/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /e2e/router/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | 3 | @Component({ 4 | template: `` 5 | }) 6 | export class AppComponent { } 7 | 8 | -------------------------------------------------------------------------------- /e2e/router/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformNativeScriptDynamic } from "@nativescript/angular/platform"; 2 | import { AppModule } from "./app.module"; 3 | 4 | platformNativeScriptDynamic().bootstrapModule(AppModule); 5 | -------------------------------------------------------------------------------- /e2e/router/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js", 3 | "name": "nativescript-template-ng-tutorial", 4 | "version": "3.1.0", 5 | "android": { 6 | "v8Flags": "--expose_gc", 7 | "markingMode": "none" 8 | } 9 | } -------------------------------------------------------------------------------- /e2e/router/references.d.ts: -------------------------------------------------------------------------------- 1 | /// Needed for autocompletion and compilation. -------------------------------------------------------------------------------- /e2e/router/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "moduleResolution": "node" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e2e/router/tsconfig.tns.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig", 3 | "compilerOptions": { 4 | "module": "ESNext", 5 | "moduleResolution": "node" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e2e/single-page/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | 3 | platforms 4 | node_modules 5 | hooks 6 | 7 | /**/*.js 8 | /**/*.map 9 | e2e/reports 10 | test-results.xml 11 | mochawesome-report -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/background.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/icon.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/Android/src/main/res/drawable-nodpi/logo.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3d5afe 4 | -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/single-page/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/single-page/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /e2e/single-page/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /e2e/single-page/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformNativeScriptDynamic } from "@nativescript/angular/platform"; 2 | import { AppModule } from "./app.module"; 3 | 4 | platformNativeScriptDynamic({ createFrameOnBootstrap: true }).bootstrapModule(AppModule); 5 | -------------------------------------------------------------------------------- /e2e/single-page/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js", 3 | "name": "nativescript-template-ng-tutorial", 4 | "version": "3.1.0", 5 | "android": { 6 | "v8Flags": "--expose_gc", 7 | "markingMode": "none" 8 | } 9 | } -------------------------------------------------------------------------------- /e2e/single-page/app/second/modal/modal.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/.DS_Store -------------------------------------------------------------------------------- /e2e/tests-app-ng/.gitignore: -------------------------------------------------------------------------------- 1 | hooks 2 | node_modules 3 | platforms 4 | lib 5 | tags 6 | report 7 | 8 | app/**/*.js 9 | app/**/*.map 10 | package-lock.json 11 | 12 | # Webpack files 13 | tsconfig.esm.json 14 | webpack.config.js 15 | 16 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.exclude": { 4 | "**/*.js": { 5 | "when": "$(basename).ts" 6 | }, 7 | "**/*.js.map": true 8 | } 9 | } -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/.DS_Store -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/Android/src/main/res/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-667h@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-736h@3x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape-568h@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape-667h@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Landscape@3x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * A dynamically generated module when compiled with AoT. 3 | */ 4 | // tslint:disable-next-line 5 | export const AppModuleNgFactory: any; 6 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/fonts/Pacifico.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/fonts/Pacifico.ttf -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/fonts/Sofia.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/fonts/Sofia.otf -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/lazy/lazy.component.css: -------------------------------------------------------------------------------- 1 | 2 | .system-background-color-stack-layout { 3 | background-color: white; 4 | } 5 | 6 | .ns-dark .system-background-color-stack-layout { 7 | background-color: gray; 8 | } 9 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/list-picker/list-picker.css: -------------------------------------------------------------------------------- 1 | .listPicker { 2 | color: green; 3 | background-color: black; 4 | } 5 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/list-view/data-item.ts: -------------------------------------------------------------------------------- 1 | export class DataItem { 2 | constructor(public id: number, public name: string) { } 3 | } 4 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/list-view/list-view-page.css: -------------------------------------------------------------------------------- 1 | .odd { 2 | background-color: red; 3 | } 4 | 5 | .even { 6 | background-color: blue; 7 | } -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/main.ts: -------------------------------------------------------------------------------- 1 | import { platformNativeScriptDynamic } from "@nativescript/angular"; 2 | 3 | import { AppModule } from "./app.module"; 4 | import { Trace } from "@nativescript/core"; 5 | 6 | Trace.enable(); 7 | 8 | platformNativeScriptDynamic().bootstrapModule(AppModule); 9 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/router/lazy-module-navigation/lazy-navigation.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from "@angular/core"; 2 | 3 | @Component({ 4 | template: ``, 5 | }) 6 | export class LazyNavigationComponent { 7 | } 8 | -------------------------------------------------------------------------------- /e2e/tests-app-ng/app/template/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/e2e/tests-app-ng/app/template/.DS_Store -------------------------------------------------------------------------------- /e2e/tests-app-ng/references.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /merge-guidance-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/merge-guidance-schema.png -------------------------------------------------------------------------------- /nativescript-angular-package/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | dist 3 | 4 | *.ts 5 | !*.d.ts 6 | 7 | *.js.map 8 | 9 | tsconfig.json 10 | global.d.ts 11 | .npmignore 12 | gulpfile.js 13 | tslint.json 14 | -------------------------------------------------------------------------------- /nativescript-angular-package/animations/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/animations"; -------------------------------------------------------------------------------- /nativescript-angular-package/app-host-view.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/common.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/common/detached-loader.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/common/detached-loader"; -------------------------------------------------------------------------------- /nativescript-angular-package/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/common"; 2 | -------------------------------------------------------------------------------- /nativescript-angular-package/common/utils.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/common/utils"; -------------------------------------------------------------------------------- /nativescript-angular-package/directives/action-bar.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/directives/action-bar"; -------------------------------------------------------------------------------- /nativescript-angular-package/directives/dialogs.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/directives/dialogs"; -------------------------------------------------------------------------------- /nativescript-angular-package/directives/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/directives"; -------------------------------------------------------------------------------- /nativescript-angular-package/directives/templated-items-comp.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/directives/templated-items-comp"; -------------------------------------------------------------------------------- /nativescript-angular-package/dom-adapter.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/element-registry.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/file-system/ns-file-system.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/file-system/ns-file-system"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/base-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/base-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/checked-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/checked-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/date-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/date-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/number-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/number-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/selectedIndex-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/selectedIndex-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/text-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/text-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/forms/value-accessors/time-value-accessor.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/forms/value-accessors/time-value-accessor"; -------------------------------------------------------------------------------- /nativescript-angular-package/http-client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; 2 | -------------------------------------------------------------------------------- /nativescript-angular-package/lang-facade.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/modal-dialog.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/nativescript.module.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/platform-common.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/platform-providers.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/platform.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/renderer.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/resource-loader.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/ns-location-strategy.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/ns-location-strategy"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/ns-route-reuse-strategy.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/ns-route-reuse-strategy"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/ns-router-link.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/ns-router-link"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/page-router-outlet.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/page-router-outlet"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/router-extensions.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/router-extensions"; -------------------------------------------------------------------------------- /nativescript-angular-package/router/router.module.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/router/router.module"; -------------------------------------------------------------------------------- /nativescript-angular-package/schema-registry.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/testing/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/testing"; -------------------------------------------------------------------------------- /nativescript-angular-package/testing/src/nativescript_test_component_renderer.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/testing"; -------------------------------------------------------------------------------- /nativescript-angular-package/testing/src/util.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular/testing"; -------------------------------------------------------------------------------- /nativescript-angular-package/trace.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/value-accessors/base-value-accessor.ts: -------------------------------------------------------------------------------- 1 | // This file is only for compatibility with pre 4.4.0 releases. 2 | export * from "@nativescript/angular"; 3 | -------------------------------------------------------------------------------- /nativescript-angular-package/view-util.ts: -------------------------------------------------------------------------------- 1 | export * from "@nativescript/angular"; -------------------------------------------------------------------------------- /nativescript-angular-package/zone-js/testing.jasmine.ts: -------------------------------------------------------------------------------- 1 | // Bootstrap helper module for jasmine spec tests 2 | import "@nativescript/angular/platform"; 3 | // import "@nativescript/angular/zone-js/dist/zone-nativescript.jasmine.js"; 4 | import '@nativescript/zone-js'; 5 | -------------------------------------------------------------------------------- /nativescript-angular-package/zone-js/testing.mocha.ts: -------------------------------------------------------------------------------- 1 | import "@nativescript/angular/platform"; 2 | // import "@nativescript/angular/zone-js/dist/zone-nativescript.mocha.js"; 3 | import '@nativescript/zone-js'; 4 | -------------------------------------------------------------------------------- /nativescript-angular/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | dist 3 | 4 | *.ts 5 | !*.d.ts 6 | 7 | tsconfig.json 8 | global.d.ts 9 | .npmignore 10 | gulpfile.js 11 | tslint.json 12 | -------------------------------------------------------------------------------- /nativescript-angular/.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | *.yml 3 | .vscode 4 | build 5 | dist 6 | doc 7 | e2e 8 | tests 9 | coverage 10 | platforms 11 | temp 12 | *.md 13 | *.json 14 | *.js -------------------------------------------------------------------------------- /nativescript-angular/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "printWidth": 600, 4 | "tabWidth": 2, 5 | "singleQuote": true 6 | } -------------------------------------------------------------------------------- /nativescript-angular/animations/index.ts: -------------------------------------------------------------------------------- 1 | export * from './animations.module'; 2 | export * from './animation-player'; 3 | export * from './animation-driver'; 4 | export * from './utils'; 5 | -------------------------------------------------------------------------------- /nativescript-angular/file-system/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ns-file-system'; 2 | -------------------------------------------------------------------------------- /nativescript-angular/forms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './forms.module'; 2 | -------------------------------------------------------------------------------- /nativescript-angular/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /nativescript-angular/http-client/index.ts: -------------------------------------------------------------------------------- 1 | export * from './http-client.module'; 2 | export * from './ns-http-backend'; 3 | -------------------------------------------------------------------------------- /nativescript-angular/lang-facade.ts: -------------------------------------------------------------------------------- 1 | export function isPresent(obj: any): boolean { 2 | return obj !== undefined && obj !== null; 3 | } 4 | 5 | export function isBlank(obj: any): boolean { 6 | return obj === undefined || obj === null; 7 | } 8 | -------------------------------------------------------------------------------- /nativescript-angular/polyfills/console.ts: -------------------------------------------------------------------------------- 1 | if (!console.group) { 2 | console.group = () => {}; 3 | } 4 | 5 | if (!console.groupEnd) { 6 | console.groupEnd = () => {}; 7 | } 8 | -------------------------------------------------------------------------------- /nativescript-angular/router/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ns-location-strategy'; 2 | export * from './ns-route-reuse-strategy'; 3 | export * from './router.module'; 4 | -------------------------------------------------------------------------------- /nativescript-angular/testing/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | if (typeof Node === 'undefined' && !global.Node) { 2 | class DummyNode {} 3 | global.Node = DummyNode as any; 4 | } 5 | -------------------------------------------------------------------------------- /nativescript-angular/testing/src/public_api.ts: -------------------------------------------------------------------------------- 1 | import './polyfills'; 2 | export * from './util'; 3 | export * from './test-root-view'; 4 | export * from './nativescript_test_component_renderer'; 5 | export * from './nativescript-testing.module'; 6 | -------------------------------------------------------------------------------- /nativescript-angular/value-accessors/base-value-accessor.ts: -------------------------------------------------------------------------------- 1 | // This file is only for compatibility with pre 4.4.0 releases. 2 | // Please use "nativescript-angular/forms/value-accessors/base-value-accessor" 3 | export * from '../forms/value-accessors/base-value-accessor'; 4 | -------------------------------------------------------------------------------- /release-contribution-guide-schema-webpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/release-contribution-guide-schema-webpack.png -------------------------------------------------------------------------------- /tests/.ctags-exclude: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin 3 | platforms 4 | app/*.js 5 | built 6 | 7 | deps/NativeScript/node_modules 8 | deps/NativeScript/bin 9 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | built 3 | tags 4 | typings 5 | .baseDir.ts 6 | .tscache 7 | 8 | app/**/*.js 9 | e2e/**/*.js 10 | app/**/*.map 11 | e2e/**/*.map 12 | e2e/reports 13 | test-results.xml 14 | platforms 15 | lib 16 | -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-nodpi/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-nodpi/checkbox_checked.png -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-nodpi/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-nodpi/checkbox_unchecked.png -------------------------------------------------------------------------------- /tests/app/App_Resources/Android/src/main/res/drawable-nodpi/splashscreen.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/Android/src/main/res/drawable-nodpi/splashscreen.9.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default-Landscape.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default-Landscape@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default-Portrait.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default-Portrait@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Default@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Icon-Small-50.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Icon-Small.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/Icon-Small@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/checkbox_checked.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/checkbox_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/checkbox_unchecked.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-40.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-40@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-60.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-60@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-72.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-72@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-76.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon-76@2x.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /tests/app/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /tests/app/app.css: -------------------------------------------------------------------------------- 1 | .title { 2 | font-size: 30; 3 | horizontal-align: center; 4 | margin:20; 5 | } 6 | -------------------------------------------------------------------------------- /tests/app/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/fonts/icomoon.ttf -------------------------------------------------------------------------------- /tests/app/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/nativescript-angular/352c5a9d0fc7a7b1cb1ffea0c14e808d7a4801ea/tests/app/logo.png -------------------------------------------------------------------------------- /tests/app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "main.js" 3 | } 4 | -------------------------------------------------------------------------------- /tests/app/snippets/icon-font.component.css: -------------------------------------------------------------------------------- 1 | /* >> icon-font-sample */ 2 | .icon { 3 | font-family: 'icomoon'; 4 | font-size: 48; 5 | } 6 | /* << icon-font-sample */ 7 | -------------------------------------------------------------------------------- /tests/app/tests/test-main.ts: -------------------------------------------------------------------------------- 1 | import "nativescript-angular/zone-js/testing.mocha"; 2 | import {nsTestBedInit} from "@nativescript/angular/testing"; 3 | nsTestBedInit(); 4 | -------------------------------------------------------------------------------- /tests/app/tests/third-party-view.ts: -------------------------------------------------------------------------------- 1 | import {ContentView} from "@nativescript/core/ui/content-view"; 2 | 3 | // >> third-party-simple-view 4 | export class SimpleTag extends ContentView { 5 | // ... 6 | } 7 | // << third-party-simple-view 8 | -------------------------------------------------------------------------------- /tests/hooks/after-prepare/nativescript-unit-test-runner.js: -------------------------------------------------------------------------------- 1 | module.exports = require("nativescript-unit-test-runner/./lib/after-prepare.js"); 2 | -------------------------------------------------------------------------------- /tests/nsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPath": "app", 3 | "appResourcesPath": "app/App_Resources" 4 | } -------------------------------------------------------------------------------- /tests/references.d.ts: -------------------------------------------------------------------------------- 1 | /// Needed for autocompletion and compilation. 2 | /// --------------------------------------------------------------------------------