├── .editorconfig
├── .github
├── issue_template.md
└── pull_request_template.md
├── .gitignore
├── .prettierrc.json
├── .travis.yml
├── .vscode
└── settings.json
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── demo
├── .editorconfig
├── .gitignore
├── .prettierignore
├── App_Resources
│ ├── Android
│ │ ├── app.gradle
│ │ └── src
│ │ │ └── main
│ │ │ ├── AndroidManifest.xml
│ │ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-ldpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-mdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-nodpi
│ │ │ └── splash_screen.xml
│ │ │ ├── drawable-xhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-xxhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ └── ic_launcher.xml
│ │ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── values-v21
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ │ ├── values-v29
│ │ │ └── styles.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ └── iOS
│ │ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── icon-1024.png
│ │ │ ├── icon-20.png
│ │ │ ├── icon-20@2x.png
│ │ │ ├── icon-20@3x.png
│ │ │ ├── icon-29.png
│ │ │ ├── icon-29@2x.png
│ │ │ ├── icon-29@3x.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-40@3x.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon-76@2x.png
│ │ │ └── icon-83.5@2x.png
│ │ ├── Contents.json
│ │ ├── LaunchScreen.AspectFill.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchScreen-AspectFill.png
│ │ │ ├── LaunchScreen-AspectFill@2x.png
│ │ │ └── LaunchScreen-AspectFill@3x.png
│ │ └── LaunchScreen.Center.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchScreen-Center.png
│ │ │ ├── LaunchScreen-Center@2x.png
│ │ │ └── LaunchScreen-Center@3x.png
│ │ ├── Info.plist
│ │ ├── LaunchScreen.storyboard
│ │ └── build.xcconfig
├── app
│ ├── app-root.xml
│ ├── app.css
│ ├── app.ts
│ ├── assets
│ │ └── test-data
│ │ │ ├── css
│ │ │ └── local-stylesheet.css
│ │ │ ├── html
│ │ │ ├── css-not-predefined.html
│ │ │ ├── css-predefined-link-tags.html
│ │ │ ├── empty.html
│ │ │ ├── javascript-calls-x-local.html
│ │ │ └── javascript-calls.html
│ │ │ └── js
│ │ │ └── local-javascript.js
│ ├── main-page.ts
│ ├── main-page.xml
│ └── main-view-model.ts
├── nativescript.config.ts
├── package.json
├── references.d.ts
├── tsconfig.json
├── webpack.config.js
└── www
│ └── index.html
├── native-src
├── android
│ ├── .gitignore
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── settings.gradle
│ └── webviewinterface
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ └── dk
│ │ │ └── nota
│ │ │ └── webviewinterface
│ │ │ └── WebViewBridgeInterface.java
│ │ └── res
│ │ └── values
│ │ └── strings.xml
├── build-android.sh
├── build-ios.sh
└── ios
│ ├── .gitignore
│ └── NotaWebViewExt
│ ├── NotaWebViewExt.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── xcshareddata
│ │ └── xcschemes
│ │ │ └── NotaWebViewExt.xcscheme
│ └── xcuserdata
│ │ └── b044552.xcuserdatad
│ │ └── xcschemes
│ │ └── xcschememanagement.plist
│ ├── NotaWebViewExt
│ ├── Constants.swift
│ ├── Info.plist
│ ├── NotaWebViewExt.h
│ └── WKWebviewCustomSchemeHandler.swift
│ └── NotaWebViewExtTests
│ ├── Info.plist
│ └── NotaWebViewExtTests.swift
├── patches
└── apply-patches.sh
├── publish
├── pack.sh
├── package-lock.json
├── package.json
├── publish-alpha.sh
└── publish.sh
├── src
├── .gitignore
├── .npmignore
├── .prettierignore
├── angular
│ ├── index.ts
│ ├── package.json.base
│ └── tsconfig.angular.json
├── make-bridge-loader.ts
├── nativescript-webview-bridge-loader.ts.tmpl
├── package.json
├── platforms
│ ├── android
│ │ └── webviewinterface.aar
│ └── ios
│ │ └── NotaWebViewExt.xcframework
│ │ ├── Info.plist
│ │ ├── ios-arm64_armv7
│ │ └── NotaWebViewExt.framework
│ │ │ ├── Headers
│ │ │ ├── NotaWebViewExt-Swift.h
│ │ │ └── NotaWebViewExt.h
│ │ │ ├── Info.plist
│ │ │ ├── Modules
│ │ │ ├── NotaWebViewExt.swiftmodule
│ │ │ │ ├── arm.swiftdoc
│ │ │ │ ├── arm.swiftinterface
│ │ │ │ ├── arm64-apple-ios.swiftdoc
│ │ │ │ ├── arm64-apple-ios.swiftinterface
│ │ │ │ ├── arm64.swiftdoc
│ │ │ │ ├── arm64.swiftinterface
│ │ │ │ ├── armv7-apple-ios.swiftdoc
│ │ │ │ ├── armv7-apple-ios.swiftinterface
│ │ │ │ ├── armv7.swiftdoc
│ │ │ │ └── armv7.swiftinterface
│ │ │ └── module.modulemap
│ │ │ ├── NotaWebViewExt
│ │ │ └── _CodeSignature
│ │ │ └── CodeResources
│ │ └── ios-arm64_i386_x86_64-simulator
│ │ └── NotaWebViewExt.framework
│ │ ├── Headers
│ │ ├── NotaWebViewExt-Swift.h
│ │ └── NotaWebViewExt.h
│ │ ├── Info.plist
│ │ ├── Modules
│ │ ├── NotaWebViewExt.swiftmodule
│ │ │ ├── arm64-apple-ios-simulator.swiftdoc
│ │ │ ├── arm64-apple-ios-simulator.swiftinterface
│ │ │ ├── arm64.swiftdoc
│ │ │ ├── arm64.swiftinterface
│ │ │ ├── i386-apple-ios-simulator.swiftdoc
│ │ │ ├── i386-apple-ios-simulator.swiftinterface
│ │ │ ├── i386.swiftdoc
│ │ │ ├── i386.swiftinterface
│ │ │ ├── x86_64-apple-ios-simulator.swiftdoc
│ │ │ ├── x86_64-apple-ios-simulator.swiftinterface
│ │ │ ├── x86_64.swiftdoc
│ │ │ └── x86_64.swiftinterface
│ │ └── module.modulemap
│ │ ├── NotaWebViewExt
│ │ └── _CodeSignature
│ │ └── CodeResources
├── polyfills
│ └── .gitkeep
├── tsconfig.aot.json
├── tsconfig.json
├── tsfmt.json
├── types
│ ├── android
│ │ └── webviewinterface.d.ts
│ ├── ios
│ │ └── NotaWebViewExt.d.ts
│ └── url.d.ts
├── vue
│ ├── index.d.ts
│ └── index.ts
├── webview-ext-common.ts
├── webview-ext.android.ts
├── webview-ext.d.ts
└── webview-ext.ios.ts
├── tslint.json
├── unittest
├── .editorconfig
├── .gitignore
├── .prettierignore
├── App_Resources
│ ├── Android
│ │ ├── app.gradle
│ │ └── src
│ │ │ └── main
│ │ │ ├── AndroidManifest.xml
│ │ │ └── res
│ │ │ ├── drawable-hdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-ldpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-mdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-nodpi
│ │ │ └── splash_screen.xml
│ │ │ ├── drawable-xhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-xxhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable-xxxhdpi
│ │ │ ├── background.png
│ │ │ └── logo.png
│ │ │ ├── drawable
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ └── ic_launcher.xml
│ │ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── values-v21
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ │ │ ├── values-v29
│ │ │ └── styles.xml
│ │ │ └── values
│ │ │ ├── colors.xml
│ │ │ ├── ic_launcher_background.xml
│ │ │ └── styles.xml
│ └── iOS
│ │ ├── Assets.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ ├── Contents.json
│ │ │ ├── icon-1024.png
│ │ │ ├── icon-20.png
│ │ │ ├── icon-20@2x.png
│ │ │ ├── icon-20@3x.png
│ │ │ ├── icon-29.png
│ │ │ ├── icon-29@2x.png
│ │ │ ├── icon-29@3x.png
│ │ │ ├── icon-40.png
│ │ │ ├── icon-40@2x.png
│ │ │ ├── icon-40@3x.png
│ │ │ ├── icon-60@2x.png
│ │ │ ├── icon-60@3x.png
│ │ │ ├── icon-76.png
│ │ │ ├── icon-76@2x.png
│ │ │ └── icon-83.5@2x.png
│ │ ├── Contents.json
│ │ ├── LaunchScreen.AspectFill.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchScreen-AspectFill.png
│ │ │ ├── LaunchScreen-AspectFill@2x.png
│ │ │ └── LaunchScreen-AspectFill@3x.png
│ │ └── LaunchScreen.Center.imageset
│ │ │ ├── Contents.json
│ │ │ ├── LaunchScreen-Center.png
│ │ │ ├── LaunchScreen-Center@2x.png
│ │ │ └── LaunchScreen-Center@3x.png
│ │ ├── Info.plist
│ │ ├── LaunchScreen.storyboard
│ │ └── build.xcconfig
├── app
│ ├── app-root.xml
│ ├── app.css
│ ├── app.ts
│ ├── assets
│ │ ├── css
│ │ │ └── local-stylesheet.css
│ │ ├── html
│ │ │ ├── css-not-predefined.html
│ │ │ ├── css-predefined-link-tags.html
│ │ │ ├── empty.html
│ │ │ ├── javascript-calls-x-local.html
│ │ │ ├── javascript-calls.html
│ │ │ ├── test with spaces.html
│ │ │ └── test.html
│ │ └── js
│ │ │ └── local-javascript.js
│ ├── main-page.ts
│ ├── main-page.xml
│ ├── main-view-model.ts
│ └── tests
│ │ └── example.ts
├── karma.conf.js
├── nativescript.config.ts
├── package.json
├── references.d.ts
├── tsconfig.json
└── webpack.config.js
└── www-src
├── .prettierignore
├── LICENSE
├── metadata-view-port.ts
├── ns-webview-bridge.ts
├── package-lock.json
├── package.json
└── tsconfig.json
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.github/issue_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.github/issue_template.md
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.github/pull_request_template.md
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.gitignore
--------------------------------------------------------------------------------
/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.prettierrc.json
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.travis.yml
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/README.md
--------------------------------------------------------------------------------
/demo/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/.editorconfig
--------------------------------------------------------------------------------
/demo/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/.gitignore
--------------------------------------------------------------------------------
/demo/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/.prettierignore
--------------------------------------------------------------------------------
/demo/App_Resources/Android/app.gradle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/app.gradle
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/AndroidManifest.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-hdpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-ldpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-mdpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values-v21/colors.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values-v21/colors.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values-v21/styles.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values-v29/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values-v29/styles.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values/colors.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values/ic_launcher_background.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values/strings.xml
--------------------------------------------------------------------------------
/demo/App_Resources/Android/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/Android/src/main/res/values/styles.xml
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/Contents.json
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/Info.plist
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/LaunchScreen.storyboard
--------------------------------------------------------------------------------
/demo/App_Resources/iOS/build.xcconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/App_Resources/iOS/build.xcconfig
--------------------------------------------------------------------------------
/demo/app/app-root.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/app-root.xml
--------------------------------------------------------------------------------
/demo/app/app.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/app.css
--------------------------------------------------------------------------------
/demo/app/app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/app.ts
--------------------------------------------------------------------------------
/demo/app/assets/test-data/css/local-stylesheet.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/css/local-stylesheet.css
--------------------------------------------------------------------------------
/demo/app/assets/test-data/html/css-not-predefined.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/html/css-not-predefined.html
--------------------------------------------------------------------------------
/demo/app/assets/test-data/html/css-predefined-link-tags.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/html/css-predefined-link-tags.html
--------------------------------------------------------------------------------
/demo/app/assets/test-data/html/empty.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/html/empty.html
--------------------------------------------------------------------------------
/demo/app/assets/test-data/html/javascript-calls-x-local.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/html/javascript-calls-x-local.html
--------------------------------------------------------------------------------
/demo/app/assets/test-data/html/javascript-calls.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/html/javascript-calls.html
--------------------------------------------------------------------------------
/demo/app/assets/test-data/js/local-javascript.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/assets/test-data/js/local-javascript.js
--------------------------------------------------------------------------------
/demo/app/main-page.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/main-page.ts
--------------------------------------------------------------------------------
/demo/app/main-page.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/main-page.xml
--------------------------------------------------------------------------------
/demo/app/main-view-model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/app/main-view-model.ts
--------------------------------------------------------------------------------
/demo/nativescript.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/nativescript.config.ts
--------------------------------------------------------------------------------
/demo/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/package.json
--------------------------------------------------------------------------------
/demo/references.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/demo/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/tsconfig.json
--------------------------------------------------------------------------------
/demo/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/webpack.config.js
--------------------------------------------------------------------------------
/demo/www/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/demo/www/index.html
--------------------------------------------------------------------------------
/native-src/android/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/.gitignore
--------------------------------------------------------------------------------
/native-src/android/build.gradle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/build.gradle
--------------------------------------------------------------------------------
/native-src/android/gradle.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/gradle.properties
--------------------------------------------------------------------------------
/native-src/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/native-src/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/gradle/wrapper/gradle-wrapper.properties
--------------------------------------------------------------------------------
/native-src/android/gradlew:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/gradlew
--------------------------------------------------------------------------------
/native-src/android/gradlew.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/gradlew.bat
--------------------------------------------------------------------------------
/native-src/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app', ':webviewinterface'
2 |
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/build.gradle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/webviewinterface/build.gradle
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/proguard-rules.pro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/webviewinterface/proguard-rules.pro
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/webviewinterface/src/main/AndroidManifest.xml
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/src/main/java/dk/nota/webviewinterface/WebViewBridgeInterface.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/webviewinterface/src/main/java/dk/nota/webviewinterface/WebViewBridgeInterface.java
--------------------------------------------------------------------------------
/native-src/android/webviewinterface/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/android/webviewinterface/src/main/res/values/strings.xml
--------------------------------------------------------------------------------
/native-src/build-android.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/build-android.sh
--------------------------------------------------------------------------------
/native-src/build-ios.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/build-ios.sh
--------------------------------------------------------------------------------
/native-src/ios/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 |
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.pbxproj
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.xcworkspace/contents.xcworkspacedata
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/xcshareddata/xcschemes/NotaWebViewExt.xcscheme:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/xcshareddata/xcschemes/NotaWebViewExt.xcscheme
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/xcuserdata/b044552.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt.xcodeproj/xcuserdata/b044552.xcuserdatad/xcschemes/xcschememanagement.plist
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt/Constants.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt/Constants.swift
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt/Info.plist
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt/NotaWebViewExt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt/NotaWebViewExt.h
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExt/WKWebviewCustomSchemeHandler.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExt/WKWebviewCustomSchemeHandler.swift
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExtTests/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExtTests/Info.plist
--------------------------------------------------------------------------------
/native-src/ios/NotaWebViewExt/NotaWebViewExtTests/NotaWebViewExtTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/native-src/ios/NotaWebViewExt/NotaWebViewExtTests/NotaWebViewExtTests.swift
--------------------------------------------------------------------------------
/patches/apply-patches.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/patches/apply-patches.sh
--------------------------------------------------------------------------------
/publish/pack.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/publish/pack.sh
--------------------------------------------------------------------------------
/publish/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/publish/package-lock.json
--------------------------------------------------------------------------------
/publish/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/publish/package.json
--------------------------------------------------------------------------------
/publish/publish-alpha.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/publish/publish-alpha.sh
--------------------------------------------------------------------------------
/publish/publish.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/publish/publish.sh
--------------------------------------------------------------------------------
/src/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/.gitignore
--------------------------------------------------------------------------------
/src/.npmignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/.npmignore
--------------------------------------------------------------------------------
/src/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/.prettierignore
--------------------------------------------------------------------------------
/src/angular/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/angular/index.ts
--------------------------------------------------------------------------------
/src/angular/package.json.base:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/angular/package.json.base
--------------------------------------------------------------------------------
/src/angular/tsconfig.angular.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/angular/tsconfig.angular.json
--------------------------------------------------------------------------------
/src/make-bridge-loader.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/make-bridge-loader.ts
--------------------------------------------------------------------------------
/src/nativescript-webview-bridge-loader.ts.tmpl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/nativescript-webview-bridge-loader.ts.tmpl
--------------------------------------------------------------------------------
/src/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/package.json
--------------------------------------------------------------------------------
/src/platforms/android/webviewinterface.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/android/webviewinterface.aar
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/Info.plist
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Headers/NotaWebViewExt-Swift.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Headers/NotaWebViewExt-Swift.h
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Headers/NotaWebViewExt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Headers/NotaWebViewExt.h
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Info.plist
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7-apple-ios.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7-apple-ios.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7-apple-ios.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7-apple-ios.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/armv7.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/module.modulemap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/Modules/module.modulemap
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/NotaWebViewExt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/NotaWebViewExt
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_armv7/NotaWebViewExt.framework/_CodeSignature/CodeResources
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Headers/NotaWebViewExt-Swift.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Headers/NotaWebViewExt-Swift.h
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Headers/NotaWebViewExt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Headers/NotaWebViewExt.h
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Info.plist
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios-simulator.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios-simulator.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios-simulator.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64-apple-ios-simulator.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/arm64.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386-apple-ios-simulator.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386-apple-ios-simulator.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386-apple-ios-simulator.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386-apple-ios-simulator.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/i386.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64-apple-ios-simulator.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64-apple-ios-simulator.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64.swiftdoc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64.swiftdoc
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64.swiftinterface:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/NotaWebViewExt.swiftmodule/x86_64.swiftinterface
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/module.modulemap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/Modules/module.modulemap
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/NotaWebViewExt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/NotaWebViewExt
--------------------------------------------------------------------------------
/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/_CodeSignature/CodeResources:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/platforms/ios/NotaWebViewExt.xcframework/ios-arm64_i386_x86_64-simulator/NotaWebViewExt.framework/_CodeSignature/CodeResources
--------------------------------------------------------------------------------
/src/polyfills/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/tsconfig.aot.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/tsconfig.aot.json
--------------------------------------------------------------------------------
/src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/tsconfig.json
--------------------------------------------------------------------------------
/src/tsfmt.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/tsfmt.json
--------------------------------------------------------------------------------
/src/types/android/webviewinterface.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/types/android/webviewinterface.d.ts
--------------------------------------------------------------------------------
/src/types/ios/NotaWebViewExt.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/types/ios/NotaWebViewExt.d.ts
--------------------------------------------------------------------------------
/src/types/url.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/types/url.d.ts
--------------------------------------------------------------------------------
/src/vue/index.d.ts:
--------------------------------------------------------------------------------
1 | export {};
2 |
--------------------------------------------------------------------------------
/src/vue/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/vue/index.ts
--------------------------------------------------------------------------------
/src/webview-ext-common.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/webview-ext-common.ts
--------------------------------------------------------------------------------
/src/webview-ext.android.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/webview-ext.android.ts
--------------------------------------------------------------------------------
/src/webview-ext.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/webview-ext.d.ts
--------------------------------------------------------------------------------
/src/webview-ext.ios.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/src/webview-ext.ios.ts
--------------------------------------------------------------------------------
/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/tslint.json
--------------------------------------------------------------------------------
/unittest/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/.editorconfig
--------------------------------------------------------------------------------
/unittest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/.gitignore
--------------------------------------------------------------------------------
/unittest/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/.prettierignore
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/app.gradle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/app.gradle
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/AndroidManifest.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-hdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-hdpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-hdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-hdpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-ldpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-ldpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-ldpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-ldpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-mdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-mdpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-mdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-mdpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xhdpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/drawable/ic_launcher_foreground.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values-v21/colors.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values-v21/colors.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values-v21/styles.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values-v29/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values-v29/styles.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values/colors.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values/ic_launcher_background.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/Android/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/Android/src/main/res/values/styles.xml
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/Contents.json
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/Info.plist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/Info.plist
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/LaunchScreen.storyboard
--------------------------------------------------------------------------------
/unittest/App_Resources/iOS/build.xcconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/App_Resources/iOS/build.xcconfig
--------------------------------------------------------------------------------
/unittest/app/app-root.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/app-root.xml
--------------------------------------------------------------------------------
/unittest/app/app.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/app.css
--------------------------------------------------------------------------------
/unittest/app/app.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/app.ts
--------------------------------------------------------------------------------
/unittest/app/assets/css/local-stylesheet.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/css/local-stylesheet.css
--------------------------------------------------------------------------------
/unittest/app/assets/html/css-not-predefined.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/css-not-predefined.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/css-predefined-link-tags.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/css-predefined-link-tags.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/empty.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/empty.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/javascript-calls-x-local.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/javascript-calls-x-local.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/javascript-calls.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/javascript-calls.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/test with spaces.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/test with spaces.html
--------------------------------------------------------------------------------
/unittest/app/assets/html/test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/html/test.html
--------------------------------------------------------------------------------
/unittest/app/assets/js/local-javascript.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/assets/js/local-javascript.js
--------------------------------------------------------------------------------
/unittest/app/main-page.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/main-page.ts
--------------------------------------------------------------------------------
/unittest/app/main-page.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/main-page.xml
--------------------------------------------------------------------------------
/unittest/app/main-view-model.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/main-view-model.ts
--------------------------------------------------------------------------------
/unittest/app/tests/example.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/app/tests/example.ts
--------------------------------------------------------------------------------
/unittest/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/karma.conf.js
--------------------------------------------------------------------------------
/unittest/nativescript.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/nativescript.config.ts
--------------------------------------------------------------------------------
/unittest/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/package.json
--------------------------------------------------------------------------------
/unittest/references.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/unittest/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/tsconfig.json
--------------------------------------------------------------------------------
/unittest/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/unittest/webpack.config.js
--------------------------------------------------------------------------------
/www-src/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/.prettierignore
--------------------------------------------------------------------------------
/www-src/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/LICENSE
--------------------------------------------------------------------------------
/www-src/metadata-view-port.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/metadata-view-port.ts
--------------------------------------------------------------------------------
/www-src/ns-webview-bridge.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/ns-webview-bridge.ts
--------------------------------------------------------------------------------
/www-src/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/package-lock.json
--------------------------------------------------------------------------------
/www-src/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/package.json
--------------------------------------------------------------------------------
/www-src/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Notalib/nativescript-webview-ext/HEAD/www-src/tsconfig.json
--------------------------------------------------------------------------------