├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app ├── App_Resources │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── app.gradle │ │ ├── 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.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.aot.ts ├── main.ts ├── options-default.component.ts ├── options.component.ts ├── package.json ├── query-stagger.component.ts ├── selector-all.component.ts └── vendor.ts ├── e2e ├── config │ ├── appium.capabilities.json │ └── mocha.opts ├── 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-Api21-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-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 │ │ ├── iPhone 7 110 │ │ ├── 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 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 ├── package.json ├── tsconfig.json └── tsconfig.tns.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/README.md -------------------------------------------------------------------------------- /app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /app/animate-child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/animate-child.component.ts -------------------------------------------------------------------------------- /app/animation-builder.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/animation-builder.component.ts -------------------------------------------------------------------------------- /app/animations-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/animations-list.component.ts -------------------------------------------------------------------------------- /app/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/animations.ts -------------------------------------------------------------------------------- /app/app.android.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/app.android.css -------------------------------------------------------------------------------- /app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/app.component.ts -------------------------------------------------------------------------------- /app/app.ios.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app.module.ngfactory.d.ts: -------------------------------------------------------------------------------- 1 | export const AppModuleNgFactory: any; -------------------------------------------------------------------------------- /app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/app.module.ts -------------------------------------------------------------------------------- /app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/app.routing.ts -------------------------------------------------------------------------------- /app/external-animation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/external-animation.component.ts -------------------------------------------------------------------------------- /app/fade-in-out.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/fade-in-out.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-basic.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-basic.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-combined-transitions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-combined-transitions.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-enter-leave-states.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-enter-leave-states.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-enter-leave.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-enter-leave.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-inline-styles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-inline-styles.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-timings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-timings.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list-twoway.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list-twoway.component.ts -------------------------------------------------------------------------------- /app/hero/hero-list.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-list.component.css -------------------------------------------------------------------------------- /app/hero/hero-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-routing.module.ts -------------------------------------------------------------------------------- /app/hero/hero-team-builder.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-team-builder.component.html -------------------------------------------------------------------------------- /app/hero/hero-team-builder.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero-team-builder.component.ts -------------------------------------------------------------------------------- /app/hero/hero.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero.module.ts -------------------------------------------------------------------------------- /app/hero/hero.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/hero/hero.service.ts -------------------------------------------------------------------------------- /app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/main.aot.ts -------------------------------------------------------------------------------- /app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/main.ts -------------------------------------------------------------------------------- /app/options-default.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/options-default.component.ts -------------------------------------------------------------------------------- /app/options.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/options.component.ts -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/package.json -------------------------------------------------------------------------------- /app/query-stagger.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/query-stagger.component.ts -------------------------------------------------------------------------------- /app/selector-all.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/selector-all.component.ts -------------------------------------------------------------------------------- /app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/app/vendor.ts -------------------------------------------------------------------------------- /e2e/config/appium.capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/config/appium.capabilities.json -------------------------------------------------------------------------------- /e2e/config/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/config/mocha.opts -------------------------------------------------------------------------------- /e2e/helper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/helper/utils.ts -------------------------------------------------------------------------------- /e2e/pages/animate-child-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/animate-child-page.ts -------------------------------------------------------------------------------- /e2e/pages/animation-builder-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/animation-builder-page.ts -------------------------------------------------------------------------------- /e2e/pages/animation-with-options-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/animation-with-options-page.ts -------------------------------------------------------------------------------- /e2e/pages/animations-with-default-options-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/animations-with-default-options-page.ts -------------------------------------------------------------------------------- /e2e/pages/base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/base-page.ts -------------------------------------------------------------------------------- /e2e/pages/extarnal-animation-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/extarnal-animation-page.ts -------------------------------------------------------------------------------- /e2e/pages/fade-in-out-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/fade-in-out-page.ts -------------------------------------------------------------------------------- /e2e/pages/hero-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/hero-page.ts -------------------------------------------------------------------------------- /e2e/pages/query-stagger-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/query-stagger-page.ts -------------------------------------------------------------------------------- /e2e/pages/selector-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/pages/selector-page.ts -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api19-Default/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api19-Default/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api19-Default/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api19-Default/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api19-Default/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api19-Default/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api19-Default/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api19-Default/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api21-Default/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api21-Default/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api21-Default/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api21-Default/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api21-Default/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api21-Default/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api21-Default/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api21-Default/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api22-Default/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api22-Default/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api22-Default/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api22-Default/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api22-Default/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api22-Default/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api22-Default/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api22-Default/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api23-Default/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api23-Default/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api23-Default/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api23-Default/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api23-Default/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api23-Default/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api23-Default/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api23-Default/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api24-Default/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api24-Default/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api24-Default/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api24-Default/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api24-Default/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api24-Default/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api24-Default/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api24-Default/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api25-Google/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api25-Google/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api25-Google/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api25-Google/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api25-Google/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api25-Google/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api25-Google/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api25-Google/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api26-Google/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api26-Google/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api26-Google/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api26-Google/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api26-Google/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api26-Google/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api26-Google/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api26-Google/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api27-Google/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api27-Google/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api27-Google/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api27-Google/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api27-Google/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api27-Google/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api27-Google/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api27-Google/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api28-Google/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api28-Google/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api28-Google/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api28-Google/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api28-Google/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api28-Google/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/Emulator-Api28-Google/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/Emulator-Api28-Google/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 7 110/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 7 110/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 7 110/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 7 110/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 7 110/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 7 110/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 7 110/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 7 110/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 8/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 8/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 8/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 8/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 8/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 8/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone 8/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone 8/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 110/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 110/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 110/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 110/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 110/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 110/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 110/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 110/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 12/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 12/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 12/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 12/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 12/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 12/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone X 12/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone X 12/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone XR 12/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone XR 12/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone XR 12/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone XR 12/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone XR 12/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone XR 12/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone XR 12/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone XR 12/add_reset_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone Xʀ/add_active_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone Xʀ/add_active_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone Xʀ/add_inactive_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone Xʀ/add_inactive_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone Xʀ/add_remove_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone Xʀ/add_remove_items.png -------------------------------------------------------------------------------- /e2e/resources/images/ng4animations/iPhone Xʀ/add_reset_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/resources/images/ng4animations/iPhone Xʀ/add_reset_items.png -------------------------------------------------------------------------------- /e2e/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/setup.ts -------------------------------------------------------------------------------- /e2e/smoke.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/smoke.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.tns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NativeScript/ns-ng-animation-examples/HEAD/tsconfig.tns.json --------------------------------------------------------------------------------