├── .github ├── hooks │ ├── install-pre-commit.sh │ └── pre-commit ├── renovate.json5 └── workflows │ ├── check-pr.yaml │ └── publish.yaml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── migrations.xml └── runConfigurations │ ├── desktopApp.xml │ ├── desktopAppHotReload.xml │ ├── iosApp.xml │ └── wasmJsApp.xml ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── RELEASING.md ├── detekt ├── baseline.xml └── config.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── Configuration │ └── Config.xcconfig ├── iosApp.xcodeproj │ └── project.pbxproj └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── app-icon-1024.png │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── jsontree ├── .gitignore ├── api │ ├── android │ │ └── jsontree.api │ ├── jsontree.api │ └── jvm │ │ └── jsontree.api ├── build.gradle.kts ├── gradle.properties ├── proguard-rules.pro └── src │ ├── commonMain │ ├── composeResources │ │ ├── drawable │ │ │ └── jsontree_arrow_right.xml │ │ └── values │ │ │ └── plurals.xml │ └── kotlin │ │ └── com │ │ └── sebastianneubauer │ │ └── jsontree │ │ ├── CollapsableType.kt │ │ ├── JsonTree.kt │ │ ├── JsonTreeElement.kt │ │ ├── JsonTreeParser.kt │ │ ├── JsonTreeParserState.kt │ │ ├── TreeColors.kt │ │ ├── TreeState.kt │ │ ├── search │ │ ├── JsonTreeSearch.kt │ │ └── SearchState.kt │ │ └── util │ │ ├── AnnotatedText.kt │ │ └── Extensions.kt │ └── commonTest │ └── kotlin │ └── com │ └── sebastianneubauer │ └── jsontree │ ├── ExtensionsTest.kt │ ├── JsonTreeParserTest.kt │ ├── JsonTreeSearchTest.kt │ ├── SearchStateTest.kt │ ├── TestData.kt │ └── ui │ ├── Assertions.kt │ └── JsonTreeTest.kt ├── kotlin-js-store └── yarn.lock ├── sample ├── build.gradle.kts ├── compose-desktop.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── sebastianneubauer │ │ │ └── jsontreesample │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.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 │ ├── commonMain │ └── kotlin │ │ ├── App.kt │ │ ├── JsonStrings.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Shape.kt │ │ ├── Theme.kt │ │ └── Type.kt │ ├── iosMain │ └── kotlin │ │ └── main.kt │ ├── jsMain │ ├── kotlin │ │ └── main.js.kt │ └── resources │ │ └── index.html │ ├── jvmMain │ └── kotlin │ │ └── main.kt │ └── wasmJsMain │ ├── kotlin │ └── main.wasm.kt │ └── resources │ └── index.html ├── screenshots ├── jsonTree-android-dark.png ├── jsonTree-macos.png └── jsonTreeGif.gif └── settings.gradle.kts /.github/hooks/install-pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.github/hooks/install-pre-commit.sh -------------------------------------------------------------------------------- /.github/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.github/hooks/pre-commit -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/check-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.github/workflows/check-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | JsonTree -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/desktopApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/runConfigurations/desktopApp.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/desktopAppHotReload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/runConfigurations/desktopAppHotReload.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/iosApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/runConfigurations/iosApp.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/wasmJsApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/.idea/runConfigurations/wasmJsApp.xml -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/RELEASING.md -------------------------------------------------------------------------------- /detekt/baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/detekt/baseline.xml -------------------------------------------------------------------------------- /detekt/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/detekt/config.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /jsontree/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /jsontree/api/android/jsontree.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/api/android/jsontree.api -------------------------------------------------------------------------------- /jsontree/api/jsontree.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/api/jsontree.api -------------------------------------------------------------------------------- /jsontree/api/jvm/jsontree.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/api/jvm/jsontree.api -------------------------------------------------------------------------------- /jsontree/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/build.gradle.kts -------------------------------------------------------------------------------- /jsontree/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/gradle.properties -------------------------------------------------------------------------------- /jsontree/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/proguard-rules.pro -------------------------------------------------------------------------------- /jsontree/src/commonMain/composeResources/drawable/jsontree_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/composeResources/drawable/jsontree_arrow_right.xml -------------------------------------------------------------------------------- /jsontree/src/commonMain/composeResources/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/composeResources/values/plurals.xml -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/CollapsableType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/CollapsableType.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTree.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeElement.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeParser.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeParserState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/JsonTreeParserState.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/TreeColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/TreeColors.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/TreeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/TreeState.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/search/JsonTreeSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/search/JsonTreeSearch.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/search/SearchState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/search/SearchState.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/util/AnnotatedText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/util/AnnotatedText.kt -------------------------------------------------------------------------------- /jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/util/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonMain/kotlin/com/sebastianneubauer/jsontree/util/Extensions.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ExtensionsTest.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/JsonTreeParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/JsonTreeParserTest.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/JsonTreeSearchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/JsonTreeSearchTest.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/SearchStateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/SearchStateTest.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/TestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/TestData.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ui/Assertions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ui/Assertions.kt -------------------------------------------------------------------------------- /jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ui/JsonTreeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/jsontree/src/commonTest/kotlin/com/sebastianneubauer/jsontree/ui/JsonTreeTest.kt -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/build.gradle.kts -------------------------------------------------------------------------------- /sample/compose-desktop.pro: -------------------------------------------------------------------------------- 1 | -keep class org.sqlite.** { *; } -------------------------------------------------------------------------------- /sample/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/androidMain/kotlin/com/sebastianneubauer/jsontreesample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/kotlin/com/sebastianneubauer/jsontreesample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/App.kt -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/JsonStrings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/JsonStrings.kt -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/ui/theme/Color.kt -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/ui/theme/Shape.kt -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/ui/theme/Theme.kt -------------------------------------------------------------------------------- /sample/src/commonMain/kotlin/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/commonMain/kotlin/ui/theme/Type.kt -------------------------------------------------------------------------------- /sample/src/iosMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/iosMain/kotlin/main.kt -------------------------------------------------------------------------------- /sample/src/jsMain/kotlin/main.js.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/jsMain/kotlin/main.js.kt -------------------------------------------------------------------------------- /sample/src/jsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/jsMain/resources/index.html -------------------------------------------------------------------------------- /sample/src/jvmMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/jvmMain/kotlin/main.kt -------------------------------------------------------------------------------- /sample/src/wasmJsMain/kotlin/main.wasm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/wasmJsMain/kotlin/main.wasm.kt -------------------------------------------------------------------------------- /sample/src/wasmJsMain/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/sample/src/wasmJsMain/resources/index.html -------------------------------------------------------------------------------- /screenshots/jsonTree-android-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/screenshots/jsonTree-android-dark.png -------------------------------------------------------------------------------- /screenshots/jsonTree-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/screenshots/jsonTree-macos.png -------------------------------------------------------------------------------- /screenshots/jsonTreeGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/screenshots/jsonTreeGif.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappdevelopment/JsonTree/HEAD/settings.gradle.kts --------------------------------------------------------------------------------