├── .codesandbox └── ci.json ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .npmrc ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── example ├── .buckconfig ├── .bundle │ └── config ├── .flowconfig ├── .gitignore ├── .node-version ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── Gemfile.lock ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── components │ ├── Demo.js │ ├── DomCounter.js │ ├── MultiPage.js │ └── PreactCounter.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Example.xcscheme │ ├── Example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── ExampleTests │ │ ├── ExampleTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── metro.config.js ├── package.json ├── react-native.config.js └── yarn.lock ├── package.json ├── readme.md ├── src ├── components.js ├── dom.js ├── dom │ ├── binding.js │ ├── bridge.js │ ├── constants.js │ ├── document-fragment.js │ ├── document.js │ ├── element.js │ ├── event-target.js │ ├── event.js │ ├── html-collection.js │ ├── node-list.js │ ├── node.js │ ├── registry.js │ ├── svg-element.js │ ├── text.js │ ├── utils.js │ └── window.js ├── index.js ├── preact.js └── register-native-dom.js ├── tsconfig.json └── yarn.lock /.codesandbox/ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/.codesandbox/ci.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | types 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | yarn.lock -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=none -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/.prettierignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/LICENSE -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.node-version: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /example/.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/App.js -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/__tests__/App-test.js -------------------------------------------------------------------------------- /example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/_BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /example/android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /example/android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/components/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/components/Demo.js -------------------------------------------------------------------------------- /example/components/DomCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/components/DomCounter.js -------------------------------------------------------------------------------- /example/components/MultiPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/components/MultiPage.js -------------------------------------------------------------------------------- /example/components/PreactCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/components/PreactCounter.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /example/ios/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Example/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/Info.plist -------------------------------------------------------------------------------- /example/ios/Example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Example/main.m -------------------------------------------------------------------------------- /example/ios/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /example/ios/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/ExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/readme.md -------------------------------------------------------------------------------- /src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/components.js -------------------------------------------------------------------------------- /src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom.js -------------------------------------------------------------------------------- /src/dom/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/binding.js -------------------------------------------------------------------------------- /src/dom/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/bridge.js -------------------------------------------------------------------------------- /src/dom/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/constants.js -------------------------------------------------------------------------------- /src/dom/document-fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/document-fragment.js -------------------------------------------------------------------------------- /src/dom/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/document.js -------------------------------------------------------------------------------- /src/dom/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/element.js -------------------------------------------------------------------------------- /src/dom/event-target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/event-target.js -------------------------------------------------------------------------------- /src/dom/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/event.js -------------------------------------------------------------------------------- /src/dom/html-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/html-collection.js -------------------------------------------------------------------------------- /src/dom/node-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/node-list.js -------------------------------------------------------------------------------- /src/dom/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/node.js -------------------------------------------------------------------------------- /src/dom/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/registry.js -------------------------------------------------------------------------------- /src/dom/svg-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/svg-element.js -------------------------------------------------------------------------------- /src/dom/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/text.js -------------------------------------------------------------------------------- /src/dom/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/utils.js -------------------------------------------------------------------------------- /src/dom/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/dom/window.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/index.js -------------------------------------------------------------------------------- /src/preact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/preact.js -------------------------------------------------------------------------------- /src/register-native-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/src/register-native-dom.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barelyhuman/preact-native/HEAD/yarn.lock --------------------------------------------------------------------------------