com.yandex.div.dsl.model.DivContainer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-json-builder Show documentation
Show all versions of kotlin-json-builder Show documentation
DivKit is an open source Server-Driven UI (SDUI) framework. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app.
// Generated code. Do not modify.
package com.yandex.div.dsl.model
import java.net.URI
import com.fasterxml.jackson.annotation.*
import com.yandex.div.dsl.*
import com.yandex.div.dsl.context.*
import com.yandex.div.dsl.type.*
import com.yandex.div.dsl.util.*
class DivContainer internal constructor(
@JsonIgnore override val accessibility: Property?,
@JsonIgnore val action: Property?,
@JsonIgnore val actionAnimation: Property?,
@JsonIgnore val actions: Property>?,
@JsonIgnore override val alignmentHorizontal: Property?,
@JsonIgnore override val alignmentVertical: Property?,
@JsonIgnore override val alpha: Property?,
@JsonIgnore override val background: Property>?,
@JsonIgnore override val border: Property?,
@JsonIgnore override val columnSpan: Property?,
@JsonIgnore val contentAlignmentHorizontal: Property?,
@JsonIgnore val contentAlignmentVertical: Property?,
@JsonIgnore val doubletapActions: Property>?,
@JsonIgnore override val extensions: Property>?,
@JsonIgnore override val focus: Property?,
@JsonIgnore override val height: Property?,
@JsonIgnore override val id: Property?,
@JsonIgnore val items: Property>?,
@JsonIgnore val layoutMode: Property?,
@JsonIgnore val lineSeparator: Property?,
@JsonIgnore val longtapActions: Property>?,
@JsonIgnore override val margins: Property?,
@JsonIgnore val orientation: Property?,
@JsonIgnore override val paddings: Property?,
@JsonIgnore override val rowSpan: Property?,
@JsonIgnore override val selectedActions: Property>?,
@JsonIgnore val separator: Property?,
@JsonIgnore override val tooltips: Property>?,
@JsonIgnore override val transform: Property?,
@JsonIgnore override val transitionChange: Property?,
@JsonIgnore override val transitionIn: Property?,
@JsonIgnore override val transitionOut: Property?,
@JsonIgnore override val transitionTriggers: Property>?,
@JsonIgnore override val visibility: Property?,
@JsonIgnore override val visibilityAction: Property?,
@JsonIgnore override val visibilityActions: Property>?,
@JsonIgnore override val width: Property?,
) : Div, DivBase {
@JsonProperty("type") override val type = "container"
@JsonAnyGetter
internal fun properties(): Map {
return propertyMapOf(
"accessibility" to accessibility,
"action" to action,
"action_animation" to actionAnimation,
"actions" to actions,
"alignment_horizontal" to alignmentHorizontal,
"alignment_vertical" to alignmentVertical,
"alpha" to alpha,
"background" to background,
"border" to border,
"column_span" to columnSpan,
"content_alignment_horizontal" to contentAlignmentHorizontal,
"content_alignment_vertical" to contentAlignmentVertical,
"doubletap_actions" to doubletapActions,
"extensions" to extensions,
"focus" to focus,
"height" to height,
"id" to id,
"items" to items,
"layout_mode" to layoutMode,
"line_separator" to lineSeparator,
"longtap_actions" to longtapActions,
"margins" to margins,
"orientation" to orientation,
"paddings" to paddings,
"row_span" to rowSpan,
"selected_actions" to selectedActions,
"separator" to separator,
"tooltips" to tooltips,
"transform" to transform,
"transition_change" to transitionChange,
"transition_in" to transitionIn,
"transition_out" to transitionOut,
"transition_triggers" to transitionTriggers,
"visibility" to visibility,
"visibility_action" to visibilityAction,
"visibility_actions" to visibilityActions,
"width" to width,
)
}
enum class LayoutMode(@JsonValue val value: String) {
NO_WRAP("no_wrap"),
WRAP("wrap"),
}
enum class Orientation(@JsonValue val value: String) {
VERTICAL("vertical"),
HORIZONTAL("horizontal"),
OVERLAP("overlap"),
}
class Separator internal constructor(
@JsonIgnore val showAtEnd: Property?,
@JsonIgnore val showAtStart: Property?,
@JsonIgnore val showBetween: Property?,
@JsonIgnore val style: Property?,
) {
@JsonAnyGetter
internal fun properties(): Map {
return propertyMapOf(
"show_at_end" to showAtEnd,
"show_at_start" to showAtStart,
"show_between" to showBetween,
"style" to style,
)
}
}
}
fun TemplateContext.divContainer(): LiteralProperty {
return value(DivContainer(
accessibility = null,
action = null,
actionAnimation = null,
actions = null,
alignmentHorizontal = null,
alignmentVertical = null,
alpha = null,
background = null,
border = null,
columnSpan = null,
contentAlignmentHorizontal = null,
contentAlignmentVertical = null,
doubletapActions = null,
extensions = null,
focus = null,
height = null,
id = null,
items = null,
layoutMode = null,
lineSeparator = null,
longtapActions = null,
margins = null,
orientation = null,
paddings = null,
rowSpan = null,
selectedActions = null,
separator = null,
tooltips = null,
transform = null,
transitionChange = null,
transitionIn = null,
transitionOut = null,
transitionTriggers = null,
visibility = null,
visibilityAction = null,
visibilityActions = null,
width = null,
))
}
fun TemplateContext.divContainer(
items: Property>? = null,
accessibility: Property? = null,
action: Property? = null,
actionAnimation: Property? = null,
actions: Property>? = null,
alignmentHorizontal: Property? = null,
alignmentVertical: Property? = null,
alpha: Property? = null,
background: Property>? = null,
border: Property? = null,
columnSpan: Property? = null,
contentAlignmentHorizontal: Property? = null,
contentAlignmentVertical: Property? = null,
doubletapActions: Property>? = null,
extensions: Property>? = null,
focus: Property? = null,
height: Property? = null,
id: Property? = null,
layoutMode: Property? = null,
lineSeparator: Property? = null,
longtapActions: Property>? = null,
margins: Property? = null,
orientation: Property? = null,
paddings: Property? = null,
rowSpan: Property? = null,
selectedActions: Property>? = null,
separator: Property? = null,
tooltips: Property>? = null,
transform: Property? = null,
transitionChange: Property? = null,
transitionIn: Property? = null,
transitionOut: Property? = null,
transitionTriggers: Property>? = null,
visibility: Property? = null,
visibilityAction: Property? = null,
visibilityActions: Property>? = null,
width: Property? = null,
): LiteralProperty {
return value(DivContainer(
accessibility = accessibility,
action = action,
actionAnimation = actionAnimation,
actions = actions,
alignmentHorizontal = alignmentHorizontal,
alignmentVertical = alignmentVertical,
alpha = alpha,
background = background,
border = border,
columnSpan = columnSpan,
contentAlignmentHorizontal = contentAlignmentHorizontal,
contentAlignmentVertical = contentAlignmentVertical,
doubletapActions = doubletapActions,
extensions = extensions,
focus = focus,
height = height,
id = id,
items = items,
layoutMode = layoutMode,
lineSeparator = lineSeparator,
longtapActions = longtapActions,
margins = margins,
orientation = orientation,
paddings = paddings,
rowSpan = rowSpan,
selectedActions = selectedActions,
separator = separator,
tooltips = tooltips,
transform = transform,
transitionChange = transitionChange,
transitionIn = transitionIn,
transitionOut = transitionOut,
transitionTriggers = transitionTriggers,
visibility = visibility,
visibilityAction = visibilityAction,
visibilityActions = visibilityActions,
width = width,
))
}
fun TemplateContext.divContainer(
items: List? = null,
accessibility: DivAccessibility? = null,
action: DivAction? = null,
actionAnimation: DivAnimation? = null,
actions: List? = null,
alignmentHorizontal: DivAlignmentHorizontal? = null,
alignmentVertical: DivAlignmentVertical? = null,
alpha: Double? = null,
background: List? = null,
border: DivBorder? = null,
columnSpan: Int? = null,
contentAlignmentHorizontal: DivAlignmentHorizontal? = null,
contentAlignmentVertical: DivAlignmentVertical? = null,
doubletapActions: List? = null,
extensions: List? = null,
focus: DivFocus? = null,
height: DivSize? = null,
id: String? = null,
layoutMode: DivContainer.LayoutMode? = null,
lineSeparator: DivContainer.Separator? = null,
longtapActions: List? = null,
margins: DivEdgeInsets? = null,
orientation: DivContainer.Orientation? = null,
paddings: DivEdgeInsets? = null,
rowSpan: Int? = null,
selectedActions: List? = null,
separator: DivContainer.Separator? = null,
tooltips: List? = null,
transform: DivTransform? = null,
transitionChange: DivChangeTransition? = null,
transitionIn: DivAppearanceTransition? = null,
transitionOut: DivAppearanceTransition? = null,
transitionTriggers: List? = null,
visibility: DivVisibility? = null,
visibilityAction: DivVisibilityAction? = null,
visibilityActions: List? = null,
width: DivSize? = null,
): LiteralProperty {
return value(DivContainer(
accessibility = optionalValue(accessibility),
action = optionalValue(action),
actionAnimation = optionalValue(actionAnimation),
actions = optionalValue(actions),
alignmentHorizontal = optionalValue(alignmentHorizontal),
alignmentVertical = optionalValue(alignmentVertical),
alpha = optionalValue(alpha),
background = optionalValue(background),
border = optionalValue(border),
columnSpan = optionalValue(columnSpan),
contentAlignmentHorizontal = optionalValue(contentAlignmentHorizontal),
contentAlignmentVertical = optionalValue(contentAlignmentVertical),
doubletapActions = optionalValue(doubletapActions),
extensions = optionalValue(extensions),
focus = optionalValue(focus),
height = optionalValue(height),
id = optionalValue(id),
items = optionalValue(items),
layoutMode = optionalValue(layoutMode),
lineSeparator = optionalValue(lineSeparator),
longtapActions = optionalValue(longtapActions),
margins = optionalValue(margins),
orientation = optionalValue(orientation),
paddings = optionalValue(paddings),
rowSpan = optionalValue(rowSpan),
selectedActions = optionalValue(selectedActions),
separator = optionalValue(separator),
tooltips = optionalValue(tooltips),
transform = optionalValue(transform),
transitionChange = optionalValue(transitionChange),
transitionIn = optionalValue(transitionIn),
transitionOut = optionalValue(transitionOut),
transitionTriggers = optionalValue(transitionTriggers),
visibility = optionalValue(visibility),
visibilityAction = optionalValue(visibilityAction),
visibilityActions = optionalValue(visibilityActions),
width = optionalValue(width),
))
}
fun TemplateContext.separator(): LiteralProperty {
return value(DivContainer.Separator(
showAtEnd = null,
showAtStart = null,
showBetween = null,
style = null,
))
}
fun TemplateContext.separator(
style: Property? = null,
showAtEnd: Property? = null,
showAtStart: Property? = null,
showBetween: Property? = null,
): LiteralProperty {
return value(DivContainer.Separator(
showAtEnd = showAtEnd,
showAtStart = showAtStart,
showBetween = showBetween,
style = style,
))
}
fun TemplateContext.separator(
style: DivDrawable? = null,
showAtEnd: BoolInt? = null,
showAtStart: BoolInt? = null,
showBetween: BoolInt? = null,
): LiteralProperty {
return value(DivContainer.Separator(
showAtEnd = optionalValue(showAtEnd),
showAtStart = optionalValue(showAtStart),
showBetween = optionalValue(showBetween),
style = optionalValue(style),
))
}
fun CardContext.divContainer(
items: ValueProperty>,
accessibility: ValueProperty? = null,
action: ValueProperty? = null,
actionAnimation: ValueProperty? = null,
actions: ValueProperty>? = null,
alignmentHorizontal: ValueProperty? = null,
alignmentVertical: ValueProperty? = null,
alpha: ValueProperty? = null,
background: ValueProperty>? = null,
border: ValueProperty? = null,
columnSpan: ValueProperty? = null,
contentAlignmentHorizontal: ValueProperty? = null,
contentAlignmentVertical: ValueProperty? = null,
doubletapActions: ValueProperty>? = null,
extensions: ValueProperty>? = null,
focus: ValueProperty? = null,
height: ValueProperty? = null,
id: ValueProperty? = null,
layoutMode: ValueProperty? = null,
lineSeparator: ValueProperty? = null,
longtapActions: ValueProperty>? = null,
margins: ValueProperty? = null,
orientation: ValueProperty? = null,
paddings: ValueProperty? = null,
rowSpan: ValueProperty? = null,
selectedActions: ValueProperty>? = null,
separator: ValueProperty? = null,
tooltips: ValueProperty>? = null,
transform: ValueProperty? = null,
transitionChange: ValueProperty? = null,
transitionIn: ValueProperty? = null,
transitionOut: ValueProperty? = null,
transitionTriggers: ValueProperty>? = null,
visibility: ValueProperty? = null,
visibilityAction: ValueProperty? = null,
visibilityActions: ValueProperty>? = null,
width: ValueProperty? = null,
): DivContainer {
return DivContainer(
accessibility = accessibility,
action = action,
actionAnimation = actionAnimation,
actions = actions,
alignmentHorizontal = alignmentHorizontal,
alignmentVertical = alignmentVertical,
alpha = alpha,
background = background,
border = border,
columnSpan = columnSpan,
contentAlignmentHorizontal = contentAlignmentHorizontal,
contentAlignmentVertical = contentAlignmentVertical,
doubletapActions = doubletapActions,
extensions = extensions,
focus = focus,
height = height,
id = id,
items = items,
layoutMode = layoutMode,
lineSeparator = lineSeparator,
longtapActions = longtapActions,
margins = margins,
orientation = orientation,
paddings = paddings,
rowSpan = rowSpan,
selectedActions = selectedActions,
separator = separator,
tooltips = tooltips,
transform = transform,
transitionChange = transitionChange,
transitionIn = transitionIn,
transitionOut = transitionOut,
transitionTriggers = transitionTriggers,
visibility = visibility,
visibilityAction = visibilityAction,
visibilityActions = visibilityActions,
width = width,
)
}
fun CardContext.divContainer(
items: List,
accessibility: DivAccessibility? = null,
action: DivAction? = null,
actionAnimation: DivAnimation? = null,
actions: List? = null,
alignmentHorizontal: DivAlignmentHorizontal? = null,
alignmentVertical: DivAlignmentVertical? = null,
alpha: Double? = null,
background: List? = null,
border: DivBorder? = null,
columnSpan: Int? = null,
contentAlignmentHorizontal: DivAlignmentHorizontal? = null,
contentAlignmentVertical: DivAlignmentVertical? = null,
doubletapActions: List? = null,
extensions: List? = null,
focus: DivFocus? = null,
height: DivSize? = null,
id: String? = null,
layoutMode: DivContainer.LayoutMode? = null,
lineSeparator: DivContainer.Separator? = null,
longtapActions: List? = null,
margins: DivEdgeInsets? = null,
orientation: DivContainer.Orientation? = null,
paddings: DivEdgeInsets? = null,
rowSpan: Int? = null,
selectedActions: List? = null,
separator: DivContainer.Separator? = null,
tooltips: List? = null,
transform: DivTransform? = null,
transitionChange: DivChangeTransition? = null,
transitionIn: DivAppearanceTransition? = null,
transitionOut: DivAppearanceTransition? = null,
transitionTriggers: List? = null,
visibility: DivVisibility? = null,
visibilityAction: DivVisibilityAction? = null,
visibilityActions: List? = null,
width: DivSize? = null,
): DivContainer {
return DivContainer(
accessibility = optionalValue(accessibility),
action = optionalValue(action),
actionAnimation = optionalValue(actionAnimation),
actions = optionalValue(actions),
alignmentHorizontal = optionalValue(alignmentHorizontal),
alignmentVertical = optionalValue(alignmentVertical),
alpha = optionalValue(alpha),
background = optionalValue(background),
border = optionalValue(border),
columnSpan = optionalValue(columnSpan),
contentAlignmentHorizontal = optionalValue(contentAlignmentHorizontal),
contentAlignmentVertical = optionalValue(contentAlignmentVertical),
doubletapActions = optionalValue(doubletapActions),
extensions = optionalValue(extensions),
focus = optionalValue(focus),
height = optionalValue(height),
id = optionalValue(id),
items = value(items),
layoutMode = optionalValue(layoutMode),
lineSeparator = optionalValue(lineSeparator),
longtapActions = optionalValue(longtapActions),
margins = optionalValue(margins),
orientation = optionalValue(orientation),
paddings = optionalValue(paddings),
rowSpan = optionalValue(rowSpan),
selectedActions = optionalValue(selectedActions),
separator = optionalValue(separator),
tooltips = optionalValue(tooltips),
transform = optionalValue(transform),
transitionChange = optionalValue(transitionChange),
transitionIn = optionalValue(transitionIn),
transitionOut = optionalValue(transitionOut),
transitionTriggers = optionalValue(transitionTriggers),
visibility = optionalValue(visibility),
visibilityAction = optionalValue(visibilityAction),
visibilityActions = optionalValue(visibilityActions),
width = optionalValue(width),
)
}
fun CardContext.separator(
style: ValueProperty,
showAtEnd: ValueProperty? = null,
showAtStart: ValueProperty? = null,
showBetween: ValueProperty? = null,
): DivContainer.Separator {
return DivContainer.Separator(
showAtEnd = showAtEnd,
showAtStart = showAtStart,
showBetween = showBetween,
style = style,
)
}
fun CardContext.separator(
style: DivDrawable,
showAtEnd: BoolInt? = null,
showAtStart: BoolInt? = null,
showBetween: BoolInt? = null,
): DivContainer.Separator {
return DivContainer.Separator(
showAtEnd = optionalValue(showAtEnd),
showAtStart = optionalValue(showAtStart),
showBetween = optionalValue(showBetween),
style = value(style),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy