├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── androidTestResultsUserPreferences.xml ├── artifacts │ ├── app_desktop.xml │ ├── blueprint_desktop_2_0_0_alpha01.xml │ ├── blueprint_js_2_0_0_alpha01.xml │ ├── blueprint_no_op_desktop.xml │ ├── blueprint_no_op_desktop_2_0_0_alpha01.xml │ ├── blueprint_no_op_js.xml │ ├── blueprint_no_op_js_2_0_0_alpha01.xml │ ├── blueprint_no_op_wasm_js.xml │ ├── blueprint_no_op_wasm_js_2_0_0_alpha01.xml │ └── blueprint_wasm_js_2_0_0_alpha01.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── icon.svg ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── NOTICE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── popovanton0 │ │ │ └── blueprint │ │ │ └── app │ │ │ ├── Lab.android.kt │ │ │ └── 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-anydpi-v33 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── androidTest │ └── java │ │ └── com │ │ └── popovanton0 │ │ └── blueprint │ │ └── app │ │ └── ExampleInstrumentedTest.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── popovanton0 │ │ └── blueprint │ │ └── app │ │ ├── Lab.kt │ │ └── ui │ │ └── theme │ │ └── Pipette.kt │ ├── desktopMain │ └── kotlin │ │ └── com │ │ └── popovanton0 │ │ └── blueprint │ │ └── app │ │ ├── Lab.desktop.kt │ │ └── Main.kt │ ├── iosMain │ └── kotlin │ │ └── main.kt │ └── test │ └── java │ └── com │ └── popovanton0 │ └── blueprint │ └── app │ └── ExampleUnitTest.kt ├── blueprint-no-op ├── .gitignore ├── api │ ├── android │ │ └── blueprint-no-op.api │ └── desktop │ │ └── blueprint-no-op.api ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidMain │ └── AndroidManifest.xml │ ├── androidTest │ └── java │ │ └── com │ │ └── popovanton0 │ │ └── blueprint │ │ └── ExampleInstrumentedTest.kt │ └── commonMain │ └── kotlin │ └── com │ └── popovanton0 │ └── blueprint │ ├── Blueprint.kt │ ├── BlueprintId.kt │ ├── ExperimentalBlueprintApi.kt │ └── dsl │ ├── Anchor.kt │ ├── Arrow.kt │ ├── BlueprintBuilderScope.kt │ ├── BlueprintDslMarker.kt │ ├── GroupScope.kt │ ├── HorizontalScope.kt │ ├── MeasureUnit.kt │ ├── Position.kt │ ├── SizeUnits.kt │ └── VerticalScope.kt ├── blueprint ├── .gitignore ├── api │ ├── android │ │ └── blueprint.api │ ├── blueprint.api │ └── desktop │ │ └── blueprint.api ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidInstrumentedTest │ └── java │ │ └── com │ │ └── popovanton0 │ │ └── blueprint │ │ └── ExampleInstrumentedTest.kt │ ├── androidMain │ └── AndroidManifest.xml │ ├── androidUnitTest │ ├── kotlin │ │ └── com │ │ │ └── popovanton0 │ │ │ └── blueprint │ │ │ ├── BlueprintClass.kt │ │ │ ├── BlueprintScreenshotTest.kt │ │ │ └── Dsl.kt │ └── snapshots │ │ └── images │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_almost_none_space_to_draw.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[0.0].png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[15.0].png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[45.0].png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[90.0].png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_basicTest.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_correct_line_widths_and_alignments.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_customFontSizeAndColor.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_emptyBlueprint.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_fractional_dp_values_rendering.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_no_blueprint_if_globally_disabled.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_not_enough_space_to_draw.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_padding_not_applied.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(with_green).png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(without_green).png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_size_labels.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_when_blueprint_is_disabled_it_is_not_shown.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_not_referenced_in_the_composable_no_dimensions_are_shown.png │ │ ├── com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(with_green).png │ │ └── com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(without_green).png │ └── commonMain │ └── kotlin │ └── com │ └── popovanton0 │ └── blueprint │ ├── Blueprint.kt │ ├── BlueprintId.kt │ ├── BlueprintMarker.kt │ ├── ExperimentalBlueprintApi.kt │ ├── ModifierLocalBlueprintMarkers.kt │ ├── ModifierLocalProvider.kt │ └── dsl │ ├── Anchor.kt │ ├── Arrow.kt │ ├── Blueprint.kt │ ├── BlueprintBuilderScope.kt │ ├── BlueprintDslMarker.kt │ ├── Dimension.kt │ ├── Group.kt │ ├── GroupScope.kt │ ├── HorizontalScope.kt │ ├── MeasureUnit.kt │ ├── Position.kt │ ├── SizeUnits.kt │ └── VerticalScope.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── arrow-angle-anim-debug.mp4 ├── arrow-angle-anim.mp4 ├── button-dark.png ├── button-light.png ├── combinations-dark.png ├── combinations-light.png ├── navbar-dark.png └── navbar-light.png ├── iosApp ├── blueprintDemoApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── arogachevskiy.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── blueprintDemoApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── blueprintDemoAppApp.swift ├── blueprintDemoAppTests │ └── blueprintDemoAppTests.swift └── blueprintDemoAppUITests │ ├── blueprintDemoAppUITests.swift │ └── blueprintDemoAppUITestsLaunchTests.swift ├── jitpack.yml ├── kotlin-js-store └── yarn.lock └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Blueprint -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/androidTestResultsUserPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/androidTestResultsUserPreferences.xml -------------------------------------------------------------------------------- /.idea/artifacts/app_desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/app_desktop.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_desktop_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_desktop_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_js_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_js_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_desktop.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_desktop_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_desktop_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_js.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_js.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_js_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_js_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_wasm_js.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_wasm_js.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_no_op_wasm_js_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_no_op_wasm_js_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/artifacts/blueprint_wasm_js_2_0_0_alpha01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/artifacts/blueprint_wasm_js_2_0_0_alpha01.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2023, Anton Popov -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/popovanton0/blueprint/app/Lab.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/kotlin/com/popovanton0/blueprint/app/Lab.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/popovanton0/blueprint/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/kotlin/com/popovanton0/blueprint/app/MainActivity.kt -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-anydpi-v33/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-anydpi-v33/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/androidTest/java/com/popovanton0/blueprint/app/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/androidTest/java/com/popovanton0/blueprint/app/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/popovanton0/blueprint/app/Lab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/commonMain/kotlin/com/popovanton0/blueprint/app/Lab.kt -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/popovanton0/blueprint/app/ui/theme/Pipette.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/commonMain/kotlin/com/popovanton0/blueprint/app/ui/theme/Pipette.kt -------------------------------------------------------------------------------- /app/src/desktopMain/kotlin/com/popovanton0/blueprint/app/Lab.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/desktopMain/kotlin/com/popovanton0/blueprint/app/Lab.desktop.kt -------------------------------------------------------------------------------- /app/src/desktopMain/kotlin/com/popovanton0/blueprint/app/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/desktopMain/kotlin/com/popovanton0/blueprint/app/Main.kt -------------------------------------------------------------------------------- /app/src/iosMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/iosMain/kotlin/main.kt -------------------------------------------------------------------------------- /app/src/test/java/com/popovanton0/blueprint/app/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/app/src/test/java/com/popovanton0/blueprint/app/ExampleUnitTest.kt -------------------------------------------------------------------------------- /blueprint-no-op/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /blueprint-no-op/api/android/blueprint-no-op.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/api/android/blueprint-no-op.api -------------------------------------------------------------------------------- /blueprint-no-op/api/desktop/blueprint-no-op.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/api/desktop/blueprint-no-op.api -------------------------------------------------------------------------------- /blueprint-no-op/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/build.gradle.kts -------------------------------------------------------------------------------- /blueprint-no-op/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprint-no-op/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/proguard-rules.pro -------------------------------------------------------------------------------- /blueprint-no-op/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /blueprint-no-op/src/androidTest/java/com/popovanton0/blueprint/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/androidTest/java/com/popovanton0/blueprint/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/Blueprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/Blueprint.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintId.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/ExperimentalBlueprintApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/ExperimentalBlueprintApi.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Anchor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Anchor.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Arrow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Arrow.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintBuilderScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintBuilderScope.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintDslMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintDslMarker.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/GroupScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/GroupScope.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/HorizontalScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/HorizontalScope.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/MeasureUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/MeasureUnit.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Position.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Position.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/SizeUnits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/SizeUnits.kt -------------------------------------------------------------------------------- /blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/VerticalScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint-no-op/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/VerticalScope.kt -------------------------------------------------------------------------------- /blueprint/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /blueprint/api/android/blueprint.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/api/android/blueprint.api -------------------------------------------------------------------------------- /blueprint/api/blueprint.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/api/blueprint.api -------------------------------------------------------------------------------- /blueprint/api/desktop/blueprint.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/api/desktop/blueprint.api -------------------------------------------------------------------------------- /blueprint/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/build.gradle.kts -------------------------------------------------------------------------------- /blueprint/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blueprint/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/proguard-rules.pro -------------------------------------------------------------------------------- /blueprint/src/androidInstrumentedTest/java/com/popovanton0/blueprint/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidInstrumentedTest/java/com/popovanton0/blueprint/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /blueprint/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/BlueprintClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/BlueprintClass.kt -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/BlueprintScreenshotTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/BlueprintScreenshotTest.kt -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/Dsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/kotlin/com/popovanton0/blueprint/Dsl.kt -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_almost_none_space_to_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_almost_none_space_to_draw.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[0.0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[0.0].png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[15.0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[15.0].png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[45.0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[45.0].png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[90.0].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_arrow_customization[90.0].png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_basicTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_basicTest.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_correct_line_widths_and_alignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_correct_line_widths_and_alignments.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_customFontSizeAndColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_customFontSizeAndColor.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_emptyBlueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_emptyBlueprint.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_fractional_dp_values_rendering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_fractional_dp_values_rendering.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_no_blueprint_if_globally_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_no_blueprint_if_globally_disabled.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_not_enough_space_to_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_not_enough_space_to_draw.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_padding_not_applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_padding_not_applied.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(with_green).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(with_green).png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(without_green).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_reacts_to_blueprint_builder_update_(without_green).png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_size_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_size_labels.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_blueprint_is_disabled_it_is_not_shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_blueprint_is_disabled_it_is_not_shown.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_not_referenced_in_the_composable_no_dimensions_are_shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_not_referenced_in_the_composable_no_dimensions_are_shown.png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(with_green).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(with_green).png -------------------------------------------------------------------------------- /blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(without_green).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/androidUnitTest/snapshots/images/com.popovanton0.blueprint_BlueprintScreenshotTest_when_specifying_blueprint_ids_that_are_then_removed_from_the_composition_dimensions_are_shown_and_then_hidden_(without_green).png -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/Blueprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/Blueprint.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintId.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/BlueprintMarker.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ExperimentalBlueprintApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ExperimentalBlueprintApi.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ModifierLocalBlueprintMarkers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ModifierLocalBlueprintMarkers.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ModifierLocalProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/ModifierLocalProvider.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Anchor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Anchor.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Arrow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Arrow.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Blueprint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Blueprint.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintBuilderScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintBuilderScope.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintDslMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/BlueprintDslMarker.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Dimension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Dimension.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Group.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Group.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/GroupScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/GroupScope.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/HorizontalScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/HorizontalScope.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/MeasureUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/MeasureUnit.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Position.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/Position.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/SizeUnits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/SizeUnits.kt -------------------------------------------------------------------------------- /blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/VerticalScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/blueprint/src/commonMain/kotlin/com/popovanton0/blueprint/dsl/VerticalScope.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/arrow-angle-anim-debug.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/arrow-angle-anim-debug.mp4 -------------------------------------------------------------------------------- /images/arrow-angle-anim.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/arrow-angle-anim.mp4 -------------------------------------------------------------------------------- /images/button-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/button-dark.png -------------------------------------------------------------------------------- /images/button-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/button-light.png -------------------------------------------------------------------------------- /images/combinations-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/combinations-dark.png -------------------------------------------------------------------------------- /images/combinations-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/combinations-light.png -------------------------------------------------------------------------------- /images/navbar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/navbar-dark.png -------------------------------------------------------------------------------- /images/navbar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/images/navbar-light.png -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp.xcodeproj/xcuserdata/arogachevskiy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp.xcodeproj/xcuserdata/arogachevskiy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp/Info.plist -------------------------------------------------------------------------------- /iosApp/blueprintDemoApp/blueprintDemoAppApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoApp/blueprintDemoAppApp.swift -------------------------------------------------------------------------------- /iosApp/blueprintDemoAppTests/blueprintDemoAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoAppTests/blueprintDemoAppTests.swift -------------------------------------------------------------------------------- /iosApp/blueprintDemoAppUITests/blueprintDemoAppUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoAppUITests/blueprintDemoAppUITests.swift -------------------------------------------------------------------------------- /iosApp/blueprintDemoAppUITests/blueprintDemoAppUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/iosApp/blueprintDemoAppUITests/blueprintDemoAppUITestsLaunchTests.swift -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 -------------------------------------------------------------------------------- /kotlin-js-store/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/kotlin-js-store/yarn.lock -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popovanton0/Blueprint/HEAD/settings.gradle.kts --------------------------------------------------------------------------------