├── .czrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── demo-ts ├── .editorconfig ├── .gitignore ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── values-v29 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.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 │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen-Center@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── main-page.ts │ ├── main-page.xml │ └── main-view-model.ts ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── tsconfig.json └── webpack.config.js ├── demo ├── .editorconfig ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ └── logo.png │ │ │ ├── drawable │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── values-v29 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.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 │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen-Center@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app │ ├── app-root.xml │ ├── app.css │ ├── app.js │ ├── main-page.js │ ├── main-page.xml │ └── main-view-model.js ├── jsconfig.json ├── nativescript.config.ts ├── package.json └── webpack.config.js ├── package.json └── src ├── .npmignore ├── functions ├── classes.ts ├── identifiers.ts ├── index.ts ├── properties.ts ├── styles.ts ├── tags.ts ├── types.ts └── val-pairs.ts ├── helpers ├── get-child-views.ts ├── index.ts └── show-error.ts ├── index.ts ├── models ├── getters.ts ├── index.ts ├── is-checked.ts └── val-pair.ts ├── package-lock.json ├── package.json ├── rollup.config.js └── tsconfig.json /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Folders 2 | node_modules/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/README.md -------------------------------------------------------------------------------- /demo-ts/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/.editorconfig -------------------------------------------------------------------------------- /demo-ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/.gitignore -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo-ts/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo-ts/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/app-root.xml -------------------------------------------------------------------------------- /demo-ts/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/app.css -------------------------------------------------------------------------------- /demo-ts/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/app.ts -------------------------------------------------------------------------------- /demo-ts/app/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/main-page.ts -------------------------------------------------------------------------------- /demo-ts/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/main-page.xml -------------------------------------------------------------------------------- /demo-ts/app/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/app/main-view-model.ts -------------------------------------------------------------------------------- /demo-ts/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/nativescript.config.ts -------------------------------------------------------------------------------- /demo-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/package.json -------------------------------------------------------------------------------- /demo-ts/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /demo-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/tsconfig.json -------------------------------------------------------------------------------- /demo-ts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo-ts/webpack.config.js -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values-v29/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values-v29/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /demo/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/app-root.xml -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/app.js -------------------------------------------------------------------------------- /demo/app/main-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/main-page.js -------------------------------------------------------------------------------- /demo/app/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/main-page.xml -------------------------------------------------------------------------------- /demo/app/main-view-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/app/main-view-model.js -------------------------------------------------------------------------------- /demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/jsconfig.json -------------------------------------------------------------------------------- /demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/nativescript.config.ts -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/package.json -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/.npmignore -------------------------------------------------------------------------------- /src/functions/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/classes.ts -------------------------------------------------------------------------------- /src/functions/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/identifiers.ts -------------------------------------------------------------------------------- /src/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/index.ts -------------------------------------------------------------------------------- /src/functions/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/properties.ts -------------------------------------------------------------------------------- /src/functions/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/styles.ts -------------------------------------------------------------------------------- /src/functions/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/tags.ts -------------------------------------------------------------------------------- /src/functions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/types.ts -------------------------------------------------------------------------------- /src/functions/val-pairs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/functions/val-pairs.ts -------------------------------------------------------------------------------- /src/helpers/get-child-views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/helpers/get-child-views.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/show-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/helpers/show-error.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/models/getters.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/is-checked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/models/is-checked.ts -------------------------------------------------------------------------------- /src/models/val-pair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/models/val-pair.ts -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/package.json -------------------------------------------------------------------------------- /src/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/rollup.config.js -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgrand-ch/nativescript-getters/HEAD/src/tsconfig.json --------------------------------------------------------------------------------