├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npsrc ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── apps ├── demo-angular │ ├── .eslintrc.json │ ├── .gitignore │ ├── nativescript.config.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ ├── src │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.scss │ │ ├── fontawesome.ts │ │ ├── home.component.html │ │ ├── home.component.ts │ │ ├── ionicons.ts │ │ ├── main.ts │ │ ├── plugin-demos │ │ │ ├── .gitkeep │ │ │ ├── nativescript-coachmarks.component.html │ │ │ ├── nativescript-coachmarks.component.ts │ │ │ ├── nativescript-coachmarks.module.ts │ │ │ ├── nativescript-fluid-segmented-bar.component.html │ │ │ ├── nativescript-fluid-segmented-bar.component.ts │ │ │ ├── nativescript-fluid-segmented-bar.module.ts │ │ │ ├── nativescript-fonticon.component.html │ │ │ ├── nativescript-fonticon.component.ts │ │ │ ├── nativescript-fonticon.module.ts │ │ │ ├── nativescript-label-marquee.component.html │ │ │ ├── nativescript-label-marquee.component.ts │ │ │ ├── nativescript-label-marquee.module.ts │ │ │ ├── nativescript-markdown-view.component.html │ │ │ ├── nativescript-markdown-view.component.ts │ │ │ ├── nativescript-markdown-view.module.ts │ │ │ ├── nativescript-parallax.component.html │ │ │ ├── nativescript-parallax.component.ts │ │ │ ├── nativescript-parallax.module.ts │ │ │ ├── nativescript-shimmer.component.html │ │ │ ├── nativescript-shimmer.component.ts │ │ │ ├── nativescript-shimmer.module.ts │ │ │ ├── nativescript-smartlook.component.html │ │ │ ├── nativescript-smartlook.component.ts │ │ │ ├── nativescript-smartlook.module.ts │ │ │ ├── nativescript-variable-blur-view.component.html │ │ │ ├── nativescript-variable-blur-view.component.ts │ │ │ └── nativescript-variable-blur-view.module.ts │ │ └── polyfills.ts │ ├── tsconfig.json │ └── webpack.config.js └── demo │ ├── .eslintrc.json │ ├── .gitignore │ ├── nativescript.config.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ ├── src │ ├── app-root.xml │ ├── app.scss │ ├── app.ts │ ├── font-awesome.css │ ├── fontawesome.ts │ ├── ionicons.css │ ├── ionicons.ts │ ├── main-page.ts │ ├── main-page.xml │ ├── main-view-model.ts │ ├── modal │ │ ├── coach-marks-bottom.ts │ │ ├── coach-marks-bottom.xml │ │ ├── coach-marks-frame.xml │ │ ├── coach-marks.ts │ │ └── coach-marks.xml │ └── plugin-demos │ │ ├── .gitkeep │ │ ├── nativescript-coachmarks.ts │ │ ├── nativescript-coachmarks.xml │ │ ├── nativescript-fluid-segmented-bar.ts │ │ ├── nativescript-fluid-segmented-bar.xml │ │ ├── nativescript-fonticon.ts │ │ ├── nativescript-fonticon.xml │ │ ├── nativescript-label-marquee.ts │ │ ├── nativescript-label-marquee.xml │ │ ├── nativescript-markdown-view.ts │ │ ├── nativescript-markdown-view.xml │ │ ├── nativescript-parallax.ts │ │ ├── nativescript-parallax.xml │ │ ├── nativescript-shimmer.ts │ │ ├── nativescript-shimmer.xml │ │ ├── nativescript-smartlook.ts │ │ ├── nativescript-smartlook.xml │ │ ├── nativescript-variable-blur-view.ts │ │ └── nativescript-variable-blur-view.xml │ ├── tsconfig.json │ └── webpack.config.js ├── jest.config.ts ├── nx.json ├── package.json ├── packages ├── .gitkeep ├── nativescript-coachmarks │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── nativescript_coachmarks.aar │ │ │ └── res │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_top.png │ │ │ │ └── arrow_top_left.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_top.png │ │ │ │ └── arrow_top_left.png │ │ │ │ └── drawable │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_top.png │ │ │ │ └── arrow_top_left.png │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!MPCoachMarks.d.ts ├── nativescript-fluid-segmented-bar │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ └── ios │ │ │ └── src │ │ │ ├── SJFluidSegmentedControl.swift │ │ │ ├── SJGradientView.swift │ │ │ └── UIView+Constraints.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── objc!SJFluidSegmentedControl.d.ts ├── nativescript-fonticon │ ├── .eslintrc.json │ ├── README.md │ ├── angular │ │ ├── .eslintrc.json │ │ ├── fonticon.pipe.ts │ │ ├── fonticon.service.ts │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── tsconfig.angular.json │ │ └── tsconfig.json │ ├── index.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-label-marquee │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── objc!MarqueeLabel.d.ts ├── nativescript-markdown-view │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── TSMarkdownParser.d.ts ├── nativescript-parallax │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-shimmer │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── ui │ │ │ │ │ └── Shimmer.java │ │ │ └── nativescript_shimmer.aar │ │ └── ios │ │ │ └── src │ │ │ └── Shimmer.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── android-shimmer.d.ts ├── nativescript-smartlook │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── smartlook │ │ │ │ │ └── NSCSmartlook.kt │ │ │ └── nativescript_smartlook.aar │ │ └── ios │ │ │ └── src │ │ │ └── NSCSmartlook.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android!NSCSmartlook.d.ts │ │ ├── objc!NSCSmartlook.d.ts │ │ └── objc!SmartlookAnalytics.d.ts └── nativescript-variable-blur-view │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── platforms │ └── ios │ │ └── src │ │ ├── CAFilter.h │ │ └── module.modulemap │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── references.d.ts ├── tools ├── assets │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-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 │ │ │ ├── Podfile │ │ │ ├── build.xcconfig │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ ├── README.md │ ├── fonts │ │ ├── fontawesome-webfont.ttf │ │ └── ionicons.ttf │ ├── images │ │ ├── background.png │ │ ├── birds.png │ │ ├── clouds-back.png │ │ ├── fluid-segmented-bar.png │ │ ├── girl-bike.png │ │ ├── land.png │ │ ├── mountains.png │ │ ├── road-sign.png │ │ ├── road.png │ │ ├── rocks-left.png │ │ ├── rocks-right.png │ │ ├── sample-image.jpg │ │ └── water.png │ └── publishing │ │ └── .npmignore ├── demo │ ├── index.ts │ ├── nativescript-coachmarks │ │ └── index.ts │ ├── nativescript-fluid-segmented-bar │ │ └── index.ts │ ├── nativescript-fonticon │ │ └── index.ts │ ├── nativescript-label-marquee │ │ └── index.ts │ ├── nativescript-markdown-view │ │ └── index.ts │ ├── nativescript-parallax │ │ └── index.ts │ ├── nativescript-shimmer │ │ └── index.ts │ ├── nativescript-smartlook │ │ └── index.ts │ ├── nativescript-variable-blur-view │ │ └── index.ts │ ├── references.d.ts │ ├── tsconfig.json │ └── utils │ │ ├── demo-base.ts │ │ └── index.ts ├── package-settings.json ├── schematics │ └── .gitkeep ├── scripts │ └── build-finish.ts ├── tsconfig.tools.json └── workspace-scripts.js └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged --allow-empty 5 | -------------------------------------------------------------------------------- /.npsrc: -------------------------------------------------------------------------------- 1 | { 2 | "config": "./tools/workspace-scripts.js" 3 | } -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- 1 | apps/**/*_off -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/README.md -------------------------------------------------------------------------------- /apps/demo-angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/.eslintrc.json -------------------------------------------------------------------------------- /apps/demo-angular/.gitignore: -------------------------------------------------------------------------------- 1 | hooks 2 | platforms 3 | !webpack.config.js -------------------------------------------------------------------------------- /apps/demo-angular/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/nativescript.config.ts -------------------------------------------------------------------------------- /apps/demo-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/package.json -------------------------------------------------------------------------------- /apps/demo-angular/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/project.json -------------------------------------------------------------------------------- /apps/demo-angular/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/references.d.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/app-routing.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/app.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/app.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/app.scss -------------------------------------------------------------------------------- /apps/demo-angular/src/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/fontawesome.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/home.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/home.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/ionicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/ionicons.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/main.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-coachmarks.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-coachmarks.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-coachmarks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-coachmarks.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-coachmarks.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-coachmarks.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fluid-segmented-bar.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fonticon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fonticon.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fonticon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fonticon.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fonticon.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fonticon.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-label-marquee.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-label-marquee.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-label-marquee.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-label-marquee.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-label-marquee.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-label-marquee.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-markdown-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-markdown-view.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-markdown-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-markdown-view.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-markdown-view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-markdown-view.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-parallax.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-parallax.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-parallax.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-parallax.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-parallax.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-parallax.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-shimmer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-shimmer.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-shimmer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-shimmer.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-shimmer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-shimmer.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-smartlook.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-smartlook.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-smartlook.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-smartlook.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-smartlook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-smartlook.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/plugin-demos/nativescript-variable-blur-view.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/src/polyfills.ts -------------------------------------------------------------------------------- /apps/demo-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/tsconfig.json -------------------------------------------------------------------------------- /apps/demo-angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo-angular/webpack.config.js -------------------------------------------------------------------------------- /apps/demo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/.eslintrc.json -------------------------------------------------------------------------------- /apps/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/.gitignore -------------------------------------------------------------------------------- /apps/demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/nativescript.config.ts -------------------------------------------------------------------------------- /apps/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/package.json -------------------------------------------------------------------------------- /apps/demo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/project.json -------------------------------------------------------------------------------- /apps/demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/references.d.ts -------------------------------------------------------------------------------- /apps/demo/src/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/app-root.xml -------------------------------------------------------------------------------- /apps/demo/src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/app.scss -------------------------------------------------------------------------------- /apps/demo/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/app.ts -------------------------------------------------------------------------------- /apps/demo/src/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/font-awesome.css -------------------------------------------------------------------------------- /apps/demo/src/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/fontawesome.ts -------------------------------------------------------------------------------- /apps/demo/src/ionicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/ionicons.css -------------------------------------------------------------------------------- /apps/demo/src/ionicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/ionicons.ts -------------------------------------------------------------------------------- /apps/demo/src/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/main-page.ts -------------------------------------------------------------------------------- /apps/demo/src/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/main-page.xml -------------------------------------------------------------------------------- /apps/demo/src/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/main-view-model.ts -------------------------------------------------------------------------------- /apps/demo/src/modal/coach-marks-bottom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/modal/coach-marks-bottom.ts -------------------------------------------------------------------------------- /apps/demo/src/modal/coach-marks-bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/modal/coach-marks-bottom.xml -------------------------------------------------------------------------------- /apps/demo/src/modal/coach-marks-frame.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/src/modal/coach-marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/modal/coach-marks.ts -------------------------------------------------------------------------------- /apps/demo/src/modal/coach-marks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/modal/coach-marks.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-coachmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-coachmarks.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-coachmarks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-coachmarks.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fluid-segmented-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-fluid-segmented-bar.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fluid-segmented-bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-fluid-segmented-bar.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fonticon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-fonticon.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fonticon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-fonticon.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-label-marquee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-label-marquee.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-label-marquee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-label-marquee.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-markdown-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-markdown-view.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-markdown-view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-markdown-view.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-parallax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-parallax.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-parallax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-parallax.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-shimmer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-shimmer.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-shimmer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-shimmer.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-smartlook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-smartlook.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-smartlook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-smartlook.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-variable-blur-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-variable-blur-view.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-variable-blur-view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/src/plugin-demos/nativescript-variable-blur-view.xml -------------------------------------------------------------------------------- /apps/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/tsconfig.json -------------------------------------------------------------------------------- /apps/demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/apps/demo/webpack.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/jest.config.ts -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/README.md -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/common.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/package.json -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/nativescript_coachmarks.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/nativescript_coachmarks.aar -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_down.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_right.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_top.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xhdpi/arrow_top_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_down.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_right.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_top.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable-xxhdpi/arrow_top_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_down.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_right.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_top.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/android/res/drawable/arrow_top_left.png -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/project.json -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-coachmarks/typings/objc!MPCoachMarks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-coachmarks/typings/objc!MPCoachMarks.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/README.md -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/common.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/package.json -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/platforms/ios/src/SJFluidSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/platforms/ios/src/SJFluidSegmentedControl.swift -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/platforms/ios/src/SJGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/platforms/ios/src/SJGradientView.swift -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/platforms/ios/src/UIView+Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/platforms/ios/src/UIView+Constraints.swift -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/project.json -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-fluid-segmented-bar/typings/objc!SJFluidSegmentedControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fluid-segmented-bar/typings/objc!SJFluidSegmentedControl.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/README.md -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/fonticon.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/fonticon.pipe.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/fonticon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/fonticon.service.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/index.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/ng-package.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/package.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/tsconfig.angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/tsconfig.angular.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/angular/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/index.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/package.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/project.json -------------------------------------------------------------------------------- /packages/nativescript-fonticon/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fonticon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-fonticon/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/README.md -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/common.ts -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/package.json -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'MarqueeLabel' -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/project.json -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-label-marquee/typings/objc!MarqueeLabel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-label-marquee/typings/objc!MarqueeLabel.d.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/README.md -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/common.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/package.json -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'TSMarkdownParser' 2 | -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/project.json -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-markdown-view/typings/TSMarkdownParser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-markdown-view/typings/TSMarkdownParser.d.ts -------------------------------------------------------------------------------- /packages/nativescript-parallax/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-parallax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/README.md -------------------------------------------------------------------------------- /packages/nativescript-parallax/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/common.ts -------------------------------------------------------------------------------- /packages/nativescript-parallax/index.android.ts: -------------------------------------------------------------------------------- 1 | export { Anchored, Content, Header, ParallaxView } from './common'; 2 | -------------------------------------------------------------------------------- /packages/nativescript-parallax/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-parallax/index.ios.ts: -------------------------------------------------------------------------------- 1 | export { Anchored, Content, Header, ParallaxView } from './common'; 2 | -------------------------------------------------------------------------------- /packages/nativescript-parallax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/package.json -------------------------------------------------------------------------------- /packages/nativescript-parallax/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/project.json -------------------------------------------------------------------------------- /packages/nativescript-parallax/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-parallax/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-parallax/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-shimmer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-shimmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/README.md -------------------------------------------------------------------------------- /packages/nativescript-shimmer/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/common.ts -------------------------------------------------------------------------------- /packages/nativescript-shimmer/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-shimmer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-shimmer/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-shimmer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/package.json -------------------------------------------------------------------------------- /packages/nativescript-shimmer/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-shimmer/platforms/android/java/io/nstudio/ui/Shimmer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/platforms/android/java/io/nstudio/ui/Shimmer.java -------------------------------------------------------------------------------- /packages/nativescript-shimmer/platforms/android/nativescript_shimmer.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/platforms/android/nativescript_shimmer.aar -------------------------------------------------------------------------------- /packages/nativescript-shimmer/platforms/ios/src/Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/platforms/ios/src/Shimmer.swift -------------------------------------------------------------------------------- /packages/nativescript-shimmer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/project.json -------------------------------------------------------------------------------- /packages/nativescript-shimmer/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-shimmer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-shimmer/typings/android-shimmer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-shimmer/typings/android-shimmer.d.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-smartlook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/README.md -------------------------------------------------------------------------------- /packages/nativescript-smartlook/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/common.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/package.json -------------------------------------------------------------------------------- /packages/nativescript-smartlook/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-smartlook/platforms/android/java/io/nstudio/plugins/smartlook/NSCSmartlook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/platforms/android/java/io/nstudio/plugins/smartlook/NSCSmartlook.kt -------------------------------------------------------------------------------- /packages/nativescript-smartlook/platforms/android/nativescript_smartlook.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/platforms/android/nativescript_smartlook.aar -------------------------------------------------------------------------------- /packages/nativescript-smartlook/platforms/ios/src/NSCSmartlook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/platforms/ios/src/NSCSmartlook.swift -------------------------------------------------------------------------------- /packages/nativescript-smartlook/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/project.json -------------------------------------------------------------------------------- /packages/nativescript-smartlook/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-smartlook/typings/android!NSCSmartlook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/typings/android!NSCSmartlook.d.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/typings/objc!NSCSmartlook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/typings/objc!NSCSmartlook.d.ts -------------------------------------------------------------------------------- /packages/nativescript-smartlook/typings/objc!SmartlookAnalytics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-smartlook/typings/objc!SmartlookAnalytics.d.ts -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/README.md -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/index.ts -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/package.json -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/platforms/ios/src/CAFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/platforms/ios/src/CAFilter.h -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/platforms/ios/src/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/platforms/ios/src/module.modulemap -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/project.json -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-variable-blur-view/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/packages/nativescript-variable-blur-view/tsconfig.json -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/references.d.ts -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/Podfile -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /tools/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/README.md -------------------------------------------------------------------------------- /tools/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /tools/assets/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/fonts/ionicons.ttf -------------------------------------------------------------------------------- /tools/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/background.png -------------------------------------------------------------------------------- /tools/assets/images/birds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/birds.png -------------------------------------------------------------------------------- /tools/assets/images/clouds-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/clouds-back.png -------------------------------------------------------------------------------- /tools/assets/images/fluid-segmented-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/fluid-segmented-bar.png -------------------------------------------------------------------------------- /tools/assets/images/girl-bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/girl-bike.png -------------------------------------------------------------------------------- /tools/assets/images/land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/land.png -------------------------------------------------------------------------------- /tools/assets/images/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/mountains.png -------------------------------------------------------------------------------- /tools/assets/images/road-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/road-sign.png -------------------------------------------------------------------------------- /tools/assets/images/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/road.png -------------------------------------------------------------------------------- /tools/assets/images/rocks-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/rocks-left.png -------------------------------------------------------------------------------- /tools/assets/images/rocks-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/rocks-right.png -------------------------------------------------------------------------------- /tools/assets/images/sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/sample-image.jpg -------------------------------------------------------------------------------- /tools/assets/images/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/images/water.png -------------------------------------------------------------------------------- /tools/assets/publishing/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/assets/publishing/.npmignore -------------------------------------------------------------------------------- /tools/demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-coachmarks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-coachmarks/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-fluid-segmented-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-fluid-segmented-bar/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-fonticon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-fonticon/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-label-marquee/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-label-marquee/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-markdown-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-markdown-view/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-parallax/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-parallax/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-shimmer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-shimmer/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-smartlook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-smartlook/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-variable-blur-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/nativescript-variable-blur-view/index.ts -------------------------------------------------------------------------------- /tools/demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/references.d.ts -------------------------------------------------------------------------------- /tools/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/tsconfig.json -------------------------------------------------------------------------------- /tools/demo/utils/demo-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/demo/utils/demo-base.ts -------------------------------------------------------------------------------- /tools/demo/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './demo-base'; 2 | -------------------------------------------------------------------------------- /tools/package-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/package-settings.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/scripts/build-finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/scripts/build-finish.ts -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tools/workspace-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tools/workspace-scripts.js -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-ui-kit/HEAD/tsconfig.base.json --------------------------------------------------------------------------------