├── .gitignore ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── Readme.md ├── demo ├── .editorconfig ├── .gitignore ├── app │ ├── App.svelte │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ └── menu.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ └── menu.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ └── menu.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ └── menu.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ ├── logo.png │ │ │ │ └── menu.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── build.xcconfig │ │ │ ├── menu.png │ │ │ ├── menu@2x.png │ │ │ └── menu@3x.png │ ├── Header.svelte │ ├── Nav.ts │ ├── app.css │ ├── app.ts │ ├── font-awesome.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── fa-brands-400.ttf │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ ├── pages │ │ ├── FormattedStringPage.svelte │ │ ├── ListViewPage.svelte │ │ ├── SegmentedBarPage.svelte │ │ └── TextNodePage.svelte │ └── tests │ │ ├── components │ │ ├── Template.ts │ │ └── TemplateHarness.svelte │ │ ├── dom │ │ ├── ListViewMultiTemplate.svelte │ │ ├── ListViewNode.ts │ │ ├── MountChild.svelte │ │ ├── MountParent.svelte │ │ ├── NativeElement.ts │ │ ├── NativeElementHarness.svelte │ │ ├── PropDirective.ts │ │ ├── PropDirectiveHarness.svelte │ │ ├── PropertyNode.ts │ │ └── PropertyNodeHarness.svelte │ │ └── start.ts ├── assets │ └── icons │ │ ├── LICENSE │ │ └── menu.svg ├── build-assets.js ├── karma.conf.js ├── nativescript.config.ts ├── package-lock.json ├── package.json ├── svelte-native.webpack.config.js ├── svelte.config.js ├── tsconfig.json └── tsfmt.json ├── docs_src ├── .env.default ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── content │ ├── blog │ │ ├── 2019-02-28-svelte-goes-native.md │ │ ├── 2019-03-04-svelte-native-quick-start.md │ │ ├── 2019-09-19-hot-module-reloading.md │ │ └── 2021-10-29-svelte-native-turns-1.md │ ├── docs │ │ ├── 0-important-note.md │ │ ├── 00-introduction.md │ │ ├── 01-getting-started.md │ │ ├── 10-routing.md │ │ ├── 20-utilities.md │ │ ├── 30-layouts.md │ │ ├── 35-action-bars.md │ │ ├── 37-tab-navigation.md │ │ ├── 40-components.md │ │ ├── 50-dialogs.md │ │ └── 99-still-to-come.md │ ├── examples │ │ └── 00-examples │ │ │ ├── 00-hello-world │ │ │ ├── App.svelte │ │ │ └── meta.json │ │ │ └── meta.json │ └── tutorial │ │ └── 05-todo-app-example.md ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── spec.js │ ├── plugins │ │ └── index.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── deploy │ ├── develop.bat │ ├── develop.yml │ ├── docker-compose.yml │ ├── production.yml │ └── readme.md ├── package-lock.json ├── package.json ├── rollup.config.js ├── src │ ├── client.js │ ├── components │ │ ├── Example.svelte │ │ ├── Icon.svelte │ │ ├── InlineSvg.svelte │ │ ├── IntersectionObserver.svelte │ │ ├── PreloadingIndicator.svelte │ │ └── Repl │ │ │ ├── CodeMirror.svelte │ │ │ ├── Input │ │ │ ├── ComponentSelector.svelte │ │ │ └── ModuleEditor.svelte │ │ │ ├── InputOutputToggle.svelte │ │ │ ├── Message.svelte │ │ │ ├── Output │ │ │ ├── Compiler.js │ │ │ ├── CompilerOptions.svelte │ │ │ ├── QRCode.svelte │ │ │ ├── ReplProxy.js │ │ │ ├── Viewer.svelte │ │ │ ├── getLocationFromStack.js │ │ │ ├── index.svelte │ │ │ └── previewService.js │ │ │ ├── SplitPane.svelte │ │ │ ├── _codemirror.js │ │ │ ├── codemirror.css │ │ │ └── index.svelte │ ├── routes │ │ ├── _error.svelte │ │ ├── _layout.svelte │ │ ├── about.svelte │ │ ├── api │ │ │ └── blog │ │ │ │ ├── [slug].js │ │ │ │ ├── _posts.js │ │ │ │ └── get.js │ │ ├── auth │ │ │ └── me.json.js │ │ ├── blog │ │ │ ├── [slug].svelte │ │ │ └── index.svelte │ │ ├── chat.js │ │ ├── docs │ │ │ ├── index.json.js │ │ │ └── index.svelte │ │ ├── examples │ │ │ ├── [slug].json.js │ │ │ ├── _examples.js │ │ │ ├── index.json.js │ │ │ └── index.svelte │ │ ├── gist │ │ │ ├── [id].js │ │ │ ├── _utils.js │ │ │ └── create.js │ │ ├── index.svelte │ │ ├── repl │ │ │ ├── _components │ │ │ │ └── AppControls │ │ │ │ │ ├── UserMenu.svelte │ │ │ │ │ └── index.svelte │ │ │ ├── _utils │ │ │ │ ├── downloadBlob.js │ │ │ │ └── process_example.js │ │ │ ├── index.svelte │ │ │ ├── local.js │ │ │ └── syncfiles.js │ │ └── tutorial │ │ │ ├── index.json.js │ │ │ └── index.svelte │ ├── server.js │ ├── service-worker.js │ ├── template.html │ ├── user.js │ └── utils │ │ ├── _sections.js │ │ ├── events.js │ │ └── markdown.js └── static │ ├── CNAME │ ├── curl.js │ ├── favicon.png │ ├── fonts │ ├── fira-mono │ │ └── fira-mono-latin-400.woff2 │ ├── overpass │ │ ├── overpass-latin-100.woff2 │ │ ├── overpass-latin-300.woff2 │ │ ├── overpass-latin-400.woff2 │ │ ├── overpass-latin-600.woff2 │ │ └── overpass-latin-700.woff2 │ └── roboto │ │ ├── roboto-latin-400.woff2 │ │ ├── roboto-latin-400italic.woff2 │ │ ├── roboto-latin-500.woff2 │ │ └── roboto-latin-500italic.woff2 │ ├── icons │ ├── arrow-right.svg │ ├── check.svg │ ├── chevron.svg │ ├── collapse.svg │ ├── download.svg │ ├── dropdown.svg │ ├── expand.svg │ ├── flip.svg │ ├── fork.svg │ ├── link.svg │ ├── play.svg │ ├── preview.svg │ ├── save.svg │ └── tip.svg │ ├── images │ ├── svelte-android-chrome-192.png │ ├── svelte-android-chrome-512.png │ ├── svelte-apple-touch-icon.png │ ├── svelte-mstile-150.png │ └── twitter-card.png │ ├── logo.svg │ ├── logo2.svg │ ├── logos_combined.svg │ ├── manifest.json │ ├── media │ ├── app-store.png │ ├── blog │ │ └── squiggles.png │ ├── docs │ │ └── layouts │ │ │ ├── absolute_layout_grid.svg │ │ │ ├── absolute_layout_overlap.svg │ │ │ ├── dock_layout_all_sides_and_stretch.svg │ │ │ ├── dock_layout_multiple_on_same_side.svg │ │ │ ├── dock_layout_no_stretch.svg │ │ │ ├── dock_layout_stretch.svg │ │ │ ├── flexbox_layout_column_reverse_space_around_align_self.svg │ │ │ ├── flexbox_layout_column_stretch.svg │ │ │ ├── flexbox_layout_row_custom_order.svg │ │ │ ├── flexbox_layout_row_flex-start.svg │ │ │ ├── flexbox_layout_row_stretch.svg │ │ │ ├── flexbox_layout_wrap.svg │ │ │ ├── grid_layout.svg │ │ │ ├── grid_layout_complex.svg │ │ │ ├── grid_layout_fixed_auto.svg │ │ │ ├── grid_layout_star_sizing.svg │ │ │ ├── stack_layout_horizontal.svg │ │ │ ├── stack_layout_horizontal_align_children.svg │ │ │ ├── stack_layout_vertical.svg │ │ │ ├── stack_layout_vertical_align_children.svg │ │ │ ├── wrap_layout_horizontal.svg │ │ │ └── wrap_layout_vertical.svg │ ├── google-play.png │ ├── nativescript-svelte-todo.gif │ ├── quick-start-screenshot.png │ ├── svelte-hmr-2.gif │ ├── tns-success.png │ └── todoapp │ │ ├── nativescript-svelte-todo3.gif │ │ ├── todo-add-item.png │ │ ├── todo-basic-design-1.png │ │ ├── todo-mark-complete.png │ │ ├── todo-styled-button.png │ │ ├── todo-styled-list1.png │ │ └── todo-styled-list2.png │ ├── pako_deflate.min.js │ ├── prism.css │ ├── qrcode.js │ ├── repl-runner.js │ ├── repl-viewer.css │ ├── svelte-native-logo-horizontal-full.svg │ ├── svelte-native-logo-horizontal.svg │ ├── svelte-native-logo-outline.svg │ ├── svelte-native-logo-vertical-full.svg │ ├── svelte-native-logo-vertical.svg │ ├── svelte-native-logo.svg │ ├── svelte-native-logotype.svg │ └── workers │ ├── bundler.js │ └── compiler.js ├── nativescript-svelte-todo.gif ├── package.json ├── repl-workers ├── bundler │ ├── commonjs.js │ └── index.js ├── package-lock.json ├── package.json └── rollup.config.js ├── rollup.config.mjs ├── scripts └── create-pkg.js ├── src ├── ambient.d.ts ├── components │ ├── AsComponent.svelte │ ├── SlotComponent.svelte │ ├── Template.svelte │ ├── Template.svelte.d.ts │ ├── android.svelte │ ├── index.ts │ └── ios.svelte ├── dom │ ├── basicdom │ │ ├── CommentNode.ts │ │ ├── DocumentNode.ts │ │ ├── ElementNode.ts │ │ ├── LICENSE │ │ ├── Logger.ts │ │ ├── PropertyNode.ts │ │ ├── Readme.txt │ │ ├── TextNode.ts │ │ ├── ViewNode.ts │ │ ├── element-registry.ts │ │ └── index.ts │ ├── index.ts │ ├── native │ │ ├── AbsoluteLayoutElement.ts │ │ ├── ActionBarElement.ts │ │ ├── ActivityIndicatorElement.ts │ │ ├── ButtonElement.ts │ │ ├── ContentViewElement.ts │ │ ├── DatePickerElement.ts │ │ ├── DockLayoutElement.ts │ │ ├── FlexboxLayoutElement.ts │ │ ├── FormattedStringElement.ts │ │ ├── FrameElement.ts │ │ ├── GridLayoutElement.ts │ │ ├── HtmlViewElement.ts │ │ ├── ImageElement.ts │ │ ├── LabelElement.ts │ │ ├── ListPickerElement.ts │ │ ├── ListViewElement.ts │ │ ├── NativeElementNode.ts │ │ ├── NativeViewElementNode.ts │ │ ├── PageElement.ts │ │ ├── PlaceholderElement.ts │ │ ├── ProgressElement.ts │ │ ├── ProxyViewContainerElement.ts │ │ ├── RootLayoutElement.ts │ │ ├── ScrollViewElement.ts │ │ ├── SearchBarElement.ts │ │ ├── SegmentedBarElement.ts │ │ ├── SliderElement.ts │ │ ├── StackLayoutElement.ts │ │ ├── SwitchElement.ts │ │ ├── TabViewElement.ts │ │ ├── TextFieldElement.ts │ │ ├── TextViewElement.ts │ │ ├── TimePickerElement.ts │ │ ├── WebViewElement.ts │ │ └── WrapLayoutElement.ts │ ├── nativescript-elements.ts │ ├── navigation.ts │ ├── svelte-elements.ts │ └── svelte │ │ ├── HeadElement.ts │ │ ├── StyleElement.ts │ │ ├── SvelteNativeDocument.ts │ │ ├── TemplateElement.ts │ │ └── style-scope.d.ts ├── index.ts ├── jsx │ ├── shims.d.ts │ └── svelte-native-jsx-nativescript-core.d.ts └── transitions │ ├── bezier.ts │ ├── easing.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | compressionLevel: mixed 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/Readme.md -------------------------------------------------------------------------------- /demo/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/.editorconfig -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/app/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App.svelte -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/menu.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/menu@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/menu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/App_Resources/iOS/menu@3x.png -------------------------------------------------------------------------------- /demo/app/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/Header.svelte -------------------------------------------------------------------------------- /demo/app/Nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/Nav.ts -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/app.css -------------------------------------------------------------------------------- /demo/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/app.ts -------------------------------------------------------------------------------- /demo/app/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/font-awesome.css -------------------------------------------------------------------------------- /demo/app/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/fonts/LICENSE.txt -------------------------------------------------------------------------------- /demo/app/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo/app/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/app/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/app/pages/FormattedStringPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/pages/FormattedStringPage.svelte -------------------------------------------------------------------------------- /demo/app/pages/ListViewPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/pages/ListViewPage.svelte -------------------------------------------------------------------------------- /demo/app/pages/SegmentedBarPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/pages/SegmentedBarPage.svelte -------------------------------------------------------------------------------- /demo/app/pages/TextNodePage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/pages/TextNodePage.svelte -------------------------------------------------------------------------------- /demo/app/tests/components/Template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/components/Template.ts -------------------------------------------------------------------------------- /demo/app/tests/components/TemplateHarness.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/components/TemplateHarness.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/ListViewMultiTemplate.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/ListViewMultiTemplate.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/ListViewNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/ListViewNode.ts -------------------------------------------------------------------------------- /demo/app/tests/dom/MountChild.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/MountChild.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/MountParent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/MountParent.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/NativeElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/NativeElement.ts -------------------------------------------------------------------------------- /demo/app/tests/dom/NativeElementHarness.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/NativeElementHarness.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/PropDirective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/PropDirective.ts -------------------------------------------------------------------------------- /demo/app/tests/dom/PropDirectiveHarness.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/PropDirectiveHarness.svelte -------------------------------------------------------------------------------- /demo/app/tests/dom/PropertyNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/PropertyNode.ts -------------------------------------------------------------------------------- /demo/app/tests/dom/PropertyNodeHarness.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/dom/PropertyNodeHarness.svelte -------------------------------------------------------------------------------- /demo/app/tests/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/app/tests/start.ts -------------------------------------------------------------------------------- /demo/assets/icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/assets/icons/LICENSE -------------------------------------------------------------------------------- /demo/assets/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/assets/icons/menu.svg -------------------------------------------------------------------------------- /demo/build-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/build-assets.js -------------------------------------------------------------------------------- /demo/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/karma.conf.js -------------------------------------------------------------------------------- /demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/nativescript.config.ts -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/svelte-native.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/svelte-native.webpack.config.js -------------------------------------------------------------------------------- /demo/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/svelte.config.js -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/demo/tsfmt.json -------------------------------------------------------------------------------- /docs_src/.env.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/.env.default -------------------------------------------------------------------------------- /docs_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/.gitignore -------------------------------------------------------------------------------- /docs_src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/Dockerfile -------------------------------------------------------------------------------- /docs_src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/LICENSE -------------------------------------------------------------------------------- /docs_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/README.md -------------------------------------------------------------------------------- /docs_src/content/blog/2019-02-28-svelte-goes-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/blog/2019-02-28-svelte-goes-native.md -------------------------------------------------------------------------------- /docs_src/content/blog/2019-03-04-svelte-native-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/blog/2019-03-04-svelte-native-quick-start.md -------------------------------------------------------------------------------- /docs_src/content/blog/2019-09-19-hot-module-reloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/blog/2019-09-19-hot-module-reloading.md -------------------------------------------------------------------------------- /docs_src/content/blog/2021-10-29-svelte-native-turns-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/blog/2021-10-29-svelte-native-turns-1.md -------------------------------------------------------------------------------- /docs_src/content/docs/0-important-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/0-important-note.md -------------------------------------------------------------------------------- /docs_src/content/docs/00-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/00-introduction.md -------------------------------------------------------------------------------- /docs_src/content/docs/01-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/01-getting-started.md -------------------------------------------------------------------------------- /docs_src/content/docs/10-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/10-routing.md -------------------------------------------------------------------------------- /docs_src/content/docs/20-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/20-utilities.md -------------------------------------------------------------------------------- /docs_src/content/docs/30-layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/30-layouts.md -------------------------------------------------------------------------------- /docs_src/content/docs/35-action-bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/35-action-bars.md -------------------------------------------------------------------------------- /docs_src/content/docs/37-tab-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/37-tab-navigation.md -------------------------------------------------------------------------------- /docs_src/content/docs/40-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/40-components.md -------------------------------------------------------------------------------- /docs_src/content/docs/50-dialogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/50-dialogs.md -------------------------------------------------------------------------------- /docs_src/content/docs/99-still-to-come.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/docs/99-still-to-come.md -------------------------------------------------------------------------------- /docs_src/content/examples/00-examples/00-hello-world/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/examples/00-examples/00-hello-world/App.svelte -------------------------------------------------------------------------------- /docs_src/content/examples/00-examples/00-hello-world/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Adding data" 3 | } -------------------------------------------------------------------------------- /docs_src/content/examples/00-examples/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Introduction" 3 | } -------------------------------------------------------------------------------- /docs_src/content/tutorial/05-todo-app-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/content/tutorial/05-todo-app-example.md -------------------------------------------------------------------------------- /docs_src/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3000", 3 | "video": false 4 | } -------------------------------------------------------------------------------- /docs_src/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/cypress/fixtures/example.json -------------------------------------------------------------------------------- /docs_src/cypress/integration/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/cypress/integration/spec.js -------------------------------------------------------------------------------- /docs_src/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/cypress/plugins/index.js -------------------------------------------------------------------------------- /docs_src/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/cypress/support/commands.js -------------------------------------------------------------------------------- /docs_src/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/cypress/support/index.js -------------------------------------------------------------------------------- /docs_src/deploy/develop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/deploy/develop.bat -------------------------------------------------------------------------------- /docs_src/deploy/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/deploy/develop.yml -------------------------------------------------------------------------------- /docs_src/deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/deploy/docker-compose.yml -------------------------------------------------------------------------------- /docs_src/deploy/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/deploy/production.yml -------------------------------------------------------------------------------- /docs_src/deploy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/deploy/readme.md -------------------------------------------------------------------------------- /docs_src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/package-lock.json -------------------------------------------------------------------------------- /docs_src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/package.json -------------------------------------------------------------------------------- /docs_src/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/rollup.config.js -------------------------------------------------------------------------------- /docs_src/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/client.js -------------------------------------------------------------------------------- /docs_src/src/components/Example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Example.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Icon.svelte -------------------------------------------------------------------------------- /docs_src/src/components/InlineSvg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/InlineSvg.svelte -------------------------------------------------------------------------------- /docs_src/src/components/IntersectionObserver.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/IntersectionObserver.svelte -------------------------------------------------------------------------------- /docs_src/src/components/PreloadingIndicator.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/PreloadingIndicator.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/CodeMirror.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/CodeMirror.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Input/ComponentSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Input/ComponentSelector.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Input/ModuleEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Input/ModuleEditor.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/InputOutputToggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/InputOutputToggle.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Message.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Message.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/Compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/Compiler.js -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/CompilerOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/CompilerOptions.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/QRCode.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/QRCode.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/ReplProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/ReplProxy.js -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/Viewer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/Viewer.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/getLocationFromStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/getLocationFromStack.js -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/index.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/Output/previewService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/Output/previewService.js -------------------------------------------------------------------------------- /docs_src/src/components/Repl/SplitPane.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/SplitPane.svelte -------------------------------------------------------------------------------- /docs_src/src/components/Repl/_codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/_codemirror.js -------------------------------------------------------------------------------- /docs_src/src/components/Repl/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/codemirror.css -------------------------------------------------------------------------------- /docs_src/src/components/Repl/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/components/Repl/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/_error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/_error.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/_layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/_layout.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/about.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/about.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/api/blog/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/api/blog/[slug].js -------------------------------------------------------------------------------- /docs_src/src/routes/api/blog/_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/api/blog/_posts.js -------------------------------------------------------------------------------- /docs_src/src/routes/api/blog/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/api/blog/get.js -------------------------------------------------------------------------------- /docs_src/src/routes/auth/me.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/auth/me.json.js -------------------------------------------------------------------------------- /docs_src/src/routes/blog/[slug].svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/blog/[slug].svelte -------------------------------------------------------------------------------- /docs_src/src/routes/blog/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/blog/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/chat.js -------------------------------------------------------------------------------- /docs_src/src/routes/docs/index.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/docs/index.json.js -------------------------------------------------------------------------------- /docs_src/src/routes/docs/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/docs/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/examples/[slug].json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/examples/[slug].json.js -------------------------------------------------------------------------------- /docs_src/src/routes/examples/_examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/examples/_examples.js -------------------------------------------------------------------------------- /docs_src/src/routes/examples/index.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/examples/index.json.js -------------------------------------------------------------------------------- /docs_src/src/routes/examples/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/examples/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/gist/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/gist/[id].js -------------------------------------------------------------------------------- /docs_src/src/routes/gist/_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/gist/_utils.js -------------------------------------------------------------------------------- /docs_src/src/routes/gist/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/gist/create.js -------------------------------------------------------------------------------- /docs_src/src/routes/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/repl/_components/AppControls/UserMenu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/_components/AppControls/UserMenu.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/repl/_components/AppControls/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/_components/AppControls/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/repl/_utils/downloadBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/_utils/downloadBlob.js -------------------------------------------------------------------------------- /docs_src/src/routes/repl/_utils/process_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/_utils/process_example.js -------------------------------------------------------------------------------- /docs_src/src/routes/repl/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/index.svelte -------------------------------------------------------------------------------- /docs_src/src/routes/repl/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/local.js -------------------------------------------------------------------------------- /docs_src/src/routes/repl/syncfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/repl/syncfiles.js -------------------------------------------------------------------------------- /docs_src/src/routes/tutorial/index.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/tutorial/index.json.js -------------------------------------------------------------------------------- /docs_src/src/routes/tutorial/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/routes/tutorial/index.svelte -------------------------------------------------------------------------------- /docs_src/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/server.js -------------------------------------------------------------------------------- /docs_src/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/service-worker.js -------------------------------------------------------------------------------- /docs_src/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/template.html -------------------------------------------------------------------------------- /docs_src/src/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/user.js -------------------------------------------------------------------------------- /docs_src/src/utils/_sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/utils/_sections.js -------------------------------------------------------------------------------- /docs_src/src/utils/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/utils/events.js -------------------------------------------------------------------------------- /docs_src/src/utils/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/src/utils/markdown.js -------------------------------------------------------------------------------- /docs_src/static/CNAME: -------------------------------------------------------------------------------- 1 | svelte-native.technology -------------------------------------------------------------------------------- /docs_src/static/curl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/curl.js -------------------------------------------------------------------------------- /docs_src/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/favicon.png -------------------------------------------------------------------------------- /docs_src/static/fonts/fira-mono/fira-mono-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/fira-mono/fira-mono-latin-400.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/overpass/overpass-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/overpass/overpass-latin-100.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/overpass/overpass-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/overpass/overpass-latin-300.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/overpass/overpass-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/overpass/overpass-latin-400.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/overpass/overpass-latin-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/overpass/overpass-latin-600.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/overpass/overpass-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/overpass/overpass-latin-700.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/roboto/roboto-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/roboto/roboto-latin-400.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/roboto/roboto-latin-400italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/roboto/roboto-latin-400italic.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/roboto/roboto-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/roboto/roboto-latin-500.woff2 -------------------------------------------------------------------------------- /docs_src/static/fonts/roboto/roboto-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/fonts/roboto/roboto-latin-500italic.woff2 -------------------------------------------------------------------------------- /docs_src/static/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/arrow-right.svg -------------------------------------------------------------------------------- /docs_src/static/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/check.svg -------------------------------------------------------------------------------- /docs_src/static/icons/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/chevron.svg -------------------------------------------------------------------------------- /docs_src/static/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/collapse.svg -------------------------------------------------------------------------------- /docs_src/static/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/download.svg -------------------------------------------------------------------------------- /docs_src/static/icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/dropdown.svg -------------------------------------------------------------------------------- /docs_src/static/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/expand.svg -------------------------------------------------------------------------------- /docs_src/static/icons/flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/flip.svg -------------------------------------------------------------------------------- /docs_src/static/icons/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/fork.svg -------------------------------------------------------------------------------- /docs_src/static/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/link.svg -------------------------------------------------------------------------------- /docs_src/static/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/play.svg -------------------------------------------------------------------------------- /docs_src/static/icons/preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/preview.svg -------------------------------------------------------------------------------- /docs_src/static/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/save.svg -------------------------------------------------------------------------------- /docs_src/static/icons/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/icons/tip.svg -------------------------------------------------------------------------------- /docs_src/static/images/svelte-android-chrome-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/images/svelte-android-chrome-192.png -------------------------------------------------------------------------------- /docs_src/static/images/svelte-android-chrome-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/images/svelte-android-chrome-512.png -------------------------------------------------------------------------------- /docs_src/static/images/svelte-apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/images/svelte-apple-touch-icon.png -------------------------------------------------------------------------------- /docs_src/static/images/svelte-mstile-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/images/svelte-mstile-150.png -------------------------------------------------------------------------------- /docs_src/static/images/twitter-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/images/twitter-card.png -------------------------------------------------------------------------------- /docs_src/static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/logo.svg -------------------------------------------------------------------------------- /docs_src/static/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/logo2.svg -------------------------------------------------------------------------------- /docs_src/static/logos_combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/logos_combined.svg -------------------------------------------------------------------------------- /docs_src/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/manifest.json -------------------------------------------------------------------------------- /docs_src/static/media/app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/app-store.png -------------------------------------------------------------------------------- /docs_src/static/media/blog/squiggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/blog/squiggles.png -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/absolute_layout_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/absolute_layout_grid.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/absolute_layout_overlap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/absolute_layout_overlap.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/dock_layout_all_sides_and_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/dock_layout_all_sides_and_stretch.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/dock_layout_multiple_on_same_side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/dock_layout_multiple_on_same_side.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/dock_layout_no_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/dock_layout_no_stretch.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/dock_layout_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/dock_layout_stretch.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_column_reverse_space_around_align_self.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_column_reverse_space_around_align_self.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_column_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_column_stretch.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_row_custom_order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_row_custom_order.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_row_flex-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_row_flex-start.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_row_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_row_stretch.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/flexbox_layout_wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/flexbox_layout_wrap.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/grid_layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/grid_layout.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/grid_layout_complex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/grid_layout_complex.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/grid_layout_fixed_auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/grid_layout_fixed_auto.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/grid_layout_star_sizing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/grid_layout_star_sizing.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/stack_layout_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/stack_layout_horizontal.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/stack_layout_horizontal_align_children.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/stack_layout_horizontal_align_children.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/stack_layout_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/stack_layout_vertical.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/stack_layout_vertical_align_children.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/stack_layout_vertical_align_children.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/wrap_layout_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/wrap_layout_horizontal.svg -------------------------------------------------------------------------------- /docs_src/static/media/docs/layouts/wrap_layout_vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/docs/layouts/wrap_layout_vertical.svg -------------------------------------------------------------------------------- /docs_src/static/media/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/google-play.png -------------------------------------------------------------------------------- /docs_src/static/media/nativescript-svelte-todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/nativescript-svelte-todo.gif -------------------------------------------------------------------------------- /docs_src/static/media/quick-start-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/quick-start-screenshot.png -------------------------------------------------------------------------------- /docs_src/static/media/svelte-hmr-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/svelte-hmr-2.gif -------------------------------------------------------------------------------- /docs_src/static/media/tns-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/tns-success.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/nativescript-svelte-todo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/nativescript-svelte-todo3.gif -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-add-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-add-item.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-basic-design-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-basic-design-1.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-mark-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-mark-complete.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-styled-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-styled-button.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-styled-list1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-styled-list1.png -------------------------------------------------------------------------------- /docs_src/static/media/todoapp/todo-styled-list2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/media/todoapp/todo-styled-list2.png -------------------------------------------------------------------------------- /docs_src/static/pako_deflate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/pako_deflate.min.js -------------------------------------------------------------------------------- /docs_src/static/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/prism.css -------------------------------------------------------------------------------- /docs_src/static/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/qrcode.js -------------------------------------------------------------------------------- /docs_src/static/repl-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/repl-runner.js -------------------------------------------------------------------------------- /docs_src/static/repl-viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/repl-viewer.css -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo-horizontal-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo-horizontal-full.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo-horizontal.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo-outline.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo-vertical-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo-vertical-full.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo-vertical.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logo.svg -------------------------------------------------------------------------------- /docs_src/static/svelte-native-logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/svelte-native-logotype.svg -------------------------------------------------------------------------------- /docs_src/static/workers/bundler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/workers/bundler.js -------------------------------------------------------------------------------- /docs_src/static/workers/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/docs_src/static/workers/compiler.js -------------------------------------------------------------------------------- /nativescript-svelte-todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/nativescript-svelte-todo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/package.json -------------------------------------------------------------------------------- /repl-workers/bundler/commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/repl-workers/bundler/commonjs.js -------------------------------------------------------------------------------- /repl-workers/bundler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/repl-workers/bundler/index.js -------------------------------------------------------------------------------- /repl-workers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/repl-workers/package-lock.json -------------------------------------------------------------------------------- /repl-workers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/repl-workers/package.json -------------------------------------------------------------------------------- /repl-workers/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/repl-workers/rollup.config.js -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /scripts/create-pkg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/scripts/create-pkg.js -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/ambient.d.ts -------------------------------------------------------------------------------- /src/components/AsComponent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/components/AsComponent.svelte -------------------------------------------------------------------------------- /src/components/SlotComponent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/components/SlotComponent.svelte -------------------------------------------------------------------------------- /src/components/Template.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/components/Template.svelte -------------------------------------------------------------------------------- /src/components/Template.svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/components/Template.svelte.d.ts -------------------------------------------------------------------------------- /src/components/android.svelte: -------------------------------------------------------------------------------- 1 | {#if __ANDROID__} 2 | 3 | {/if} 4 | -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/ios.svelte: -------------------------------------------------------------------------------- 1 | {#if __IOS__} 2 | 3 | {/if} 4 | -------------------------------------------------------------------------------- /src/dom/basicdom/CommentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/CommentNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/DocumentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/DocumentNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/ElementNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/ElementNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/LICENSE -------------------------------------------------------------------------------- /src/dom/basicdom/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/Logger.ts -------------------------------------------------------------------------------- /src/dom/basicdom/PropertyNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/PropertyNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/Readme.txt -------------------------------------------------------------------------------- /src/dom/basicdom/TextNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/TextNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/ViewNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/ViewNode.ts -------------------------------------------------------------------------------- /src/dom/basicdom/element-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/element-registry.ts -------------------------------------------------------------------------------- /src/dom/basicdom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/basicdom/index.ts -------------------------------------------------------------------------------- /src/dom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/index.ts -------------------------------------------------------------------------------- /src/dom/native/AbsoluteLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/AbsoluteLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/ActionBarElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ActionBarElement.ts -------------------------------------------------------------------------------- /src/dom/native/ActivityIndicatorElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ActivityIndicatorElement.ts -------------------------------------------------------------------------------- /src/dom/native/ButtonElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ButtonElement.ts -------------------------------------------------------------------------------- /src/dom/native/ContentViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ContentViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/DatePickerElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/DatePickerElement.ts -------------------------------------------------------------------------------- /src/dom/native/DockLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/DockLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/FlexboxLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/FlexboxLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/FormattedStringElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/FormattedStringElement.ts -------------------------------------------------------------------------------- /src/dom/native/FrameElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/FrameElement.ts -------------------------------------------------------------------------------- /src/dom/native/GridLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/GridLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/HtmlViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/HtmlViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/ImageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ImageElement.ts -------------------------------------------------------------------------------- /src/dom/native/LabelElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/LabelElement.ts -------------------------------------------------------------------------------- /src/dom/native/ListPickerElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ListPickerElement.ts -------------------------------------------------------------------------------- /src/dom/native/ListViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ListViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/NativeElementNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/NativeElementNode.ts -------------------------------------------------------------------------------- /src/dom/native/NativeViewElementNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/NativeViewElementNode.ts -------------------------------------------------------------------------------- /src/dom/native/PageElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/PageElement.ts -------------------------------------------------------------------------------- /src/dom/native/PlaceholderElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/PlaceholderElement.ts -------------------------------------------------------------------------------- /src/dom/native/ProgressElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ProgressElement.ts -------------------------------------------------------------------------------- /src/dom/native/ProxyViewContainerElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ProxyViewContainerElement.ts -------------------------------------------------------------------------------- /src/dom/native/RootLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/RootLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/ScrollViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/ScrollViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/SearchBarElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/SearchBarElement.ts -------------------------------------------------------------------------------- /src/dom/native/SegmentedBarElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/SegmentedBarElement.ts -------------------------------------------------------------------------------- /src/dom/native/SliderElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/SliderElement.ts -------------------------------------------------------------------------------- /src/dom/native/StackLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/StackLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/native/SwitchElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/SwitchElement.ts -------------------------------------------------------------------------------- /src/dom/native/TabViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/TabViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/TextFieldElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/TextFieldElement.ts -------------------------------------------------------------------------------- /src/dom/native/TextViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/TextViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/TimePickerElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/TimePickerElement.ts -------------------------------------------------------------------------------- /src/dom/native/WebViewElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/WebViewElement.ts -------------------------------------------------------------------------------- /src/dom/native/WrapLayoutElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/native/WrapLayoutElement.ts -------------------------------------------------------------------------------- /src/dom/nativescript-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/nativescript-elements.ts -------------------------------------------------------------------------------- /src/dom/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/navigation.ts -------------------------------------------------------------------------------- /src/dom/svelte-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte-elements.ts -------------------------------------------------------------------------------- /src/dom/svelte/HeadElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte/HeadElement.ts -------------------------------------------------------------------------------- /src/dom/svelte/StyleElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte/StyleElement.ts -------------------------------------------------------------------------------- /src/dom/svelte/SvelteNativeDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte/SvelteNativeDocument.ts -------------------------------------------------------------------------------- /src/dom/svelte/TemplateElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte/TemplateElement.ts -------------------------------------------------------------------------------- /src/dom/svelte/style-scope.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/dom/svelte/style-scope.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jsx/shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/jsx/shims.d.ts -------------------------------------------------------------------------------- /src/jsx/svelte-native-jsx-nativescript-core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/jsx/svelte-native-jsx-nativescript-core.d.ts -------------------------------------------------------------------------------- /src/transitions/bezier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/transitions/bezier.ts -------------------------------------------------------------------------------- /src/transitions/easing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/transitions/easing.ts -------------------------------------------------------------------------------- /src/transitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/src/transitions/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/svelte-native/HEAD/yarn.lock --------------------------------------------------------------------------------