├── .github └── issue_template.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo ├── .nsbuildinfo ├── 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-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-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 │ ├── LICENSE │ ├── README.md │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.ts │ ├── app.css │ ├── app.module.ts │ ├── home │ │ ├── home-routing.module.ts │ │ ├── home.component.android.html │ │ ├── home.component.css │ │ ├── home.component.ios.html │ │ ├── home.component.ts │ │ └── home.module.ts │ ├── main.aot.ts │ ├── main.ts │ ├── package.json │ ├── tools │ │ └── assets │ │ │ ├── demo.android.png │ │ │ ├── demo.ios.png │ │ │ └── screenshot.png │ ├── vendor-platform.android.ts │ ├── vendor-platform.ios.ts │ └── vendor.ts ├── package-lock.json ├── package.json ├── tsconfig.aot.json └── tsconfig.json ├── publish ├── pack.sh ├── package-lock.json ├── package.json └── publish.sh ├── src ├── .npmignore ├── angular │ ├── ng-shadow.directive.d.ts │ ├── ng-shadow.directive.ts │ ├── ng-shadow.module.d.ts │ └── ng-shadow.module.ts ├── common │ ├── android-data.model.d.ts │ ├── android-data.model.ts │ ├── elevation.enum.d.ts │ ├── elevation.enum.ts │ ├── ios-data.model.d.ts │ ├── ios-data.model.ts │ ├── shadow.d.ts │ ├── shadow.ts │ ├── shape.enum.d.ts │ └── shape.enum.ts ├── ng-shadow.ts ├── package-lock.json ├── package.json ├── platforms │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── README.md │ │ └── include.gradle │ └── ios │ │ ├── Info.plist │ │ ├── README.md │ │ └── build.xcconfig ├── tsconfig.json └── tsconfig.ngc.json └── tslint.json /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/README.md -------------------------------------------------------------------------------- /demo/.nsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/.nsbuildinfo -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/LICENSE -------------------------------------------------------------------------------- /demo/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/README.md -------------------------------------------------------------------------------- /demo/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/app-routing.module.ts -------------------------------------------------------------------------------- /demo/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/app.component.html -------------------------------------------------------------------------------- /demo/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/app.component.ts -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/app.module.ts -------------------------------------------------------------------------------- /demo/app/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home-routing.module.ts -------------------------------------------------------------------------------- /demo/app/home/home.component.android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home.component.android.html -------------------------------------------------------------------------------- /demo/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home.component.css -------------------------------------------------------------------------------- /demo/app/home/home.component.ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home.component.ios.html -------------------------------------------------------------------------------- /demo/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home.component.ts -------------------------------------------------------------------------------- /demo/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/home/home.module.ts -------------------------------------------------------------------------------- /demo/app/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/main.aot.ts -------------------------------------------------------------------------------- /demo/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/main.ts -------------------------------------------------------------------------------- /demo/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/package.json -------------------------------------------------------------------------------- /demo/app/tools/assets/demo.android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/tools/assets/demo.android.png -------------------------------------------------------------------------------- /demo/app/tools/assets/demo.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/tools/assets/demo.ios.png -------------------------------------------------------------------------------- /demo/app/tools/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/tools/assets/screenshot.png -------------------------------------------------------------------------------- /demo/app/vendor-platform.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/vendor-platform.android.ts -------------------------------------------------------------------------------- /demo/app/vendor-platform.ios.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/app/vendor.ts -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/tsconfig.aot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/tsconfig.aot.json -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /publish/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/publish/pack.sh -------------------------------------------------------------------------------- /publish/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/publish/package-lock.json -------------------------------------------------------------------------------- /publish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/publish/package.json -------------------------------------------------------------------------------- /publish/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/publish/publish.sh -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/angular/ng-shadow.directive.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/angular/ng-shadow.directive.d.ts -------------------------------------------------------------------------------- /src/angular/ng-shadow.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/angular/ng-shadow.directive.ts -------------------------------------------------------------------------------- /src/angular/ng-shadow.module.d.ts: -------------------------------------------------------------------------------- 1 | export declare class NgShadowModule { 2 | } 3 | -------------------------------------------------------------------------------- /src/angular/ng-shadow.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/angular/ng-shadow.module.ts -------------------------------------------------------------------------------- /src/common/android-data.model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/android-data.model.d.ts -------------------------------------------------------------------------------- /src/common/android-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/android-data.model.ts -------------------------------------------------------------------------------- /src/common/elevation.enum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/elevation.enum.d.ts -------------------------------------------------------------------------------- /src/common/elevation.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/elevation.enum.ts -------------------------------------------------------------------------------- /src/common/ios-data.model.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/ios-data.model.d.ts -------------------------------------------------------------------------------- /src/common/ios-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/ios-data.model.ts -------------------------------------------------------------------------------- /src/common/shadow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/shadow.d.ts -------------------------------------------------------------------------------- /src/common/shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/shadow.ts -------------------------------------------------------------------------------- /src/common/shape.enum.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/shape.enum.d.ts -------------------------------------------------------------------------------- /src/common/shape.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/common/shape.enum.ts -------------------------------------------------------------------------------- /src/ng-shadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/ng-shadow.ts -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/package.json -------------------------------------------------------------------------------- /src/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/platforms/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/platforms/android/README.md -------------------------------------------------------------------------------- /src/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/platforms/android/include.gradle -------------------------------------------------------------------------------- /src/platforms/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/platforms/ios/Info.plist -------------------------------------------------------------------------------- /src/platforms/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/platforms/ios/README.md -------------------------------------------------------------------------------- /src/platforms/ios/build.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.ngc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/src/tsconfig.ngc.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Especializa/nativescript-ng-shadow/HEAD/tslint.json --------------------------------------------------------------------------------