All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.datastar.MergeMode.kt Maven / Gradle / Ivy

There is a newer version: 5.41.0.0
Show newest version
package org.http4k.datastar

enum class MergeMode {
    // Merges the fragment using Idiomorph. This is the default merge strategy.
    morph,

    // Replaces the target’s innerHTML with the fragment.
    inner,

    // Replaces the target’s outerHTML with the fragment.
    outer,

    // Prepends the fragment to the target’s children.
    prepend,

    // Appends the fragment to the target’s children.
    append,

    // Inserts the fragment before the target as a sibling.
    before,

    // Inserts the fragment after the target as a sibling.
    after,

    // Merges attributes from the fragment into the target – useful for updating a store.
    upsertAttributes
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy