mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
Updated version to 32.22.0
commit_hash:eab00db0159e956620fe58201c787f779e106f57
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
MARKETING_VERSION = 32.21.0
|
||||
MARKETING_VERSION = 32.22.0
|
||||
CURRENT_PROJECT_VERSION = 32
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
public enum DivKitInfo {
|
||||
public static let version = "32.21.0"
|
||||
public static let version = "32.22.0"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@divkitframework/divkit",
|
||||
"version": "32.21.0",
|
||||
"version": "32.22.0",
|
||||
"description": "DivKit for the web",
|
||||
"keywords": [
|
||||
"server-driven-ui",
|
||||
|
||||
@@ -55,7 +55,7 @@ data class Data internal constructor(
|
||||
* Events that trigger transition animations.
|
||||
* Default value: `none`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val transitionAnimationSelector: Property<TransitionSelector>?,
|
||||
/**
|
||||
* Triggers for changing variables.
|
||||
@@ -140,7 +140,7 @@ fun DivScope.data(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
functions: List<Function>? = null,
|
||||
timers: List<Timer>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
variableTriggers: List<Trigger>? = null,
|
||||
variables: List<Variable>? = null,
|
||||
): Data = Data(
|
||||
@@ -171,7 +171,7 @@ fun DivScope.dataProps(
|
||||
states: List<Data.State>? = null,
|
||||
functions: List<Function>? = null,
|
||||
timers: List<Timer>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
variableTriggers: List<Trigger>? = null,
|
||||
variables: List<Variable>? = null,
|
||||
) = Data.Properties(
|
||||
@@ -200,7 +200,7 @@ fun TemplateScope.dataRefs(
|
||||
states: ReferenceProperty<List<Data.State>>? = null,
|
||||
functions: ReferenceProperty<List<Function>>? = null,
|
||||
timers: ReferenceProperty<List<Timer>>? = null,
|
||||
transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
variableTriggers: ReferenceProperty<List<Trigger>>? = null,
|
||||
variables: ReferenceProperty<List<Variable>>? = null,
|
||||
) = Data.Properties(
|
||||
@@ -229,7 +229,7 @@ fun Data.override(
|
||||
states: List<Data.State>? = null,
|
||||
functions: List<Function>? = null,
|
||||
timers: List<Timer>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
variableTriggers: List<Trigger>? = null,
|
||||
variables: List<Variable>? = null,
|
||||
): Data = Data(
|
||||
@@ -260,7 +260,7 @@ fun Data.defer(
|
||||
states: ReferenceProperty<List<Data.State>>? = null,
|
||||
functions: ReferenceProperty<List<Function>>? = null,
|
||||
timers: ReferenceProperty<List<Timer>>? = null,
|
||||
transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
variableTriggers: ReferenceProperty<List<Trigger>>? = null,
|
||||
variables: ReferenceProperty<List<Variable>>? = null,
|
||||
): Data = Data(
|
||||
@@ -291,7 +291,7 @@ fun Data.modify(
|
||||
states: Property<List<Data.State>>? = null,
|
||||
functions: Property<List<Function>>? = null,
|
||||
timers: Property<List<Timer>>? = null,
|
||||
transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
variableTriggers: Property<List<Trigger>>? = null,
|
||||
variables: Property<List<Variable>>? = null,
|
||||
): Data = Data(
|
||||
@@ -312,7 +312,7 @@ fun Data.modify(
|
||||
@Generated
|
||||
fun Data.evaluate(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
): Data = Data(
|
||||
Data.Properties(
|
||||
logId = properties.logId,
|
||||
|
||||
+68
-68
@@ -95,13 +95,13 @@ data class Indicator internal constructor(
|
||||
* Active indicator color.
|
||||
* Default value: `#ffdc60`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val activeItemColor: Property<Color>?,
|
||||
/**
|
||||
* A size multiplier for an active indicator.
|
||||
* Default value: `1.3`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val activeItemSize: Property<Double>?,
|
||||
/**
|
||||
* Active indicator shape.
|
||||
@@ -170,7 +170,7 @@ data class Indicator internal constructor(
|
||||
* Indicator color.
|
||||
* Default value: `#33919cb5`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val inactiveItemColor: Property<Color>?,
|
||||
/**
|
||||
* Inactive indicator shape, minimum size. Used when all the indicators don't fit on the screen.
|
||||
@@ -196,7 +196,7 @@ data class Indicator internal constructor(
|
||||
* A size multiplier for a minimal indicator. It is used when the required number of indicators don't fit on the screen.
|
||||
* Default value: `0.5`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val minimumItemSize: Property<Double>?,
|
||||
/**
|
||||
* Internal margins from the element stroke.
|
||||
@@ -222,13 +222,13 @@ data class Indicator internal constructor(
|
||||
* Indicator shape.
|
||||
* Default value: `{"type":"rounded_rectangle"}`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val shape: Property<Shape>?,
|
||||
/**
|
||||
* Spacing between indicator centers.
|
||||
* Default value: `{"type": "fixed","value":15}`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val spaceBetweenCenters: Property<FixedSize>?,
|
||||
/**
|
||||
* Tooltips linked to an element. A tooltip can be shown by `div-action://show_tooltip?id=`, hidden by `div-action://hide_tooltip?id=` where `id` — tooltip id.
|
||||
@@ -397,8 +397,8 @@ data class Indicator internal constructor(
|
||||
fun DivScope.indicator(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Accessibility? = null,
|
||||
activeItemColor: Color? = null,
|
||||
activeItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Double? = null,
|
||||
activeShape: RoundedRectangleShape? = null,
|
||||
alignmentHorizontal: AlignmentHorizontal? = null,
|
||||
alignmentVertical: AlignmentVertical? = null,
|
||||
@@ -414,20 +414,20 @@ fun DivScope.indicator(
|
||||
functions: List<Function>? = null,
|
||||
height: Size? = null,
|
||||
id: String? = null,
|
||||
inactiveItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Color? = null,
|
||||
inactiveMinimumShape: RoundedRectangleShape? = null,
|
||||
inactiveShape: RoundedRectangleShape? = null,
|
||||
itemsPlacement: IndicatorItemPlacement? = null,
|
||||
layoutProvider: LayoutProvider? = null,
|
||||
margins: EdgeInsets? = null,
|
||||
minimumItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Double? = null,
|
||||
paddings: EdgeInsets? = null,
|
||||
pagerId: String? = null,
|
||||
reuseId: String? = null,
|
||||
rowSpan: Int? = null,
|
||||
selectedActions: List<Action>? = null,
|
||||
shape: Shape? = null,
|
||||
spaceBetweenCenters: FixedSize? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Shape? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: FixedSize? = null,
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
@@ -542,8 +542,8 @@ fun DivScope.indicator(
|
||||
fun DivScope.indicatorProps(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Accessibility? = null,
|
||||
activeItemColor: Color? = null,
|
||||
activeItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Double? = null,
|
||||
activeShape: RoundedRectangleShape? = null,
|
||||
alignmentHorizontal: AlignmentHorizontal? = null,
|
||||
alignmentVertical: AlignmentVertical? = null,
|
||||
@@ -559,20 +559,20 @@ fun DivScope.indicatorProps(
|
||||
functions: List<Function>? = null,
|
||||
height: Size? = null,
|
||||
id: String? = null,
|
||||
inactiveItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Color? = null,
|
||||
inactiveMinimumShape: RoundedRectangleShape? = null,
|
||||
inactiveShape: RoundedRectangleShape? = null,
|
||||
itemsPlacement: IndicatorItemPlacement? = null,
|
||||
layoutProvider: LayoutProvider? = null,
|
||||
margins: EdgeInsets? = null,
|
||||
minimumItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Double? = null,
|
||||
paddings: EdgeInsets? = null,
|
||||
pagerId: String? = null,
|
||||
reuseId: String? = null,
|
||||
rowSpan: Int? = null,
|
||||
selectedActions: List<Action>? = null,
|
||||
shape: Shape? = null,
|
||||
spaceBetweenCenters: FixedSize? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Shape? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: FixedSize? = null,
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
@@ -685,8 +685,8 @@ fun DivScope.indicatorProps(
|
||||
fun TemplateScope.indicatorRefs(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: ReferenceProperty<Accessibility>? = null,
|
||||
activeItemColor: ReferenceProperty<Color>? = null,
|
||||
activeItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: ReferenceProperty<Double>? = null,
|
||||
activeShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
alignmentHorizontal: ReferenceProperty<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: ReferenceProperty<AlignmentVertical>? = null,
|
||||
@@ -702,20 +702,20 @@ fun TemplateScope.indicatorRefs(
|
||||
functions: ReferenceProperty<List<Function>>? = null,
|
||||
height: ReferenceProperty<Size>? = null,
|
||||
id: ReferenceProperty<String>? = null,
|
||||
inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
inactiveMinimumShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
inactiveShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
itemsPlacement: ReferenceProperty<IndicatorItemPlacement>? = null,
|
||||
layoutProvider: ReferenceProperty<LayoutProvider>? = null,
|
||||
margins: ReferenceProperty<EdgeInsets>? = null,
|
||||
minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
paddings: ReferenceProperty<EdgeInsets>? = null,
|
||||
pagerId: ReferenceProperty<String>? = null,
|
||||
reuseId: ReferenceProperty<String>? = null,
|
||||
rowSpan: ReferenceProperty<Int>? = null,
|
||||
selectedActions: ReferenceProperty<List<Action>>? = null,
|
||||
shape: ReferenceProperty<Shape>? = null,
|
||||
spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: ReferenceProperty<Shape>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
@@ -828,8 +828,8 @@ fun TemplateScope.indicatorRefs(
|
||||
fun Indicator.override(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Accessibility? = null,
|
||||
activeItemColor: Color? = null,
|
||||
activeItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Double? = null,
|
||||
activeShape: RoundedRectangleShape? = null,
|
||||
alignmentHorizontal: AlignmentHorizontal? = null,
|
||||
alignmentVertical: AlignmentVertical? = null,
|
||||
@@ -845,20 +845,20 @@ fun Indicator.override(
|
||||
functions: List<Function>? = null,
|
||||
height: Size? = null,
|
||||
id: String? = null,
|
||||
inactiveItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Color? = null,
|
||||
inactiveMinimumShape: RoundedRectangleShape? = null,
|
||||
inactiveShape: RoundedRectangleShape? = null,
|
||||
itemsPlacement: IndicatorItemPlacement? = null,
|
||||
layoutProvider: LayoutProvider? = null,
|
||||
margins: EdgeInsets? = null,
|
||||
minimumItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Double? = null,
|
||||
paddings: EdgeInsets? = null,
|
||||
pagerId: String? = null,
|
||||
reuseId: String? = null,
|
||||
rowSpan: Int? = null,
|
||||
selectedActions: List<Action>? = null,
|
||||
shape: Shape? = null,
|
||||
spaceBetweenCenters: FixedSize? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Shape? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: FixedSize? = null,
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
@@ -973,8 +973,8 @@ fun Indicator.override(
|
||||
fun Indicator.defer(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: ReferenceProperty<Accessibility>? = null,
|
||||
activeItemColor: ReferenceProperty<Color>? = null,
|
||||
activeItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: ReferenceProperty<Double>? = null,
|
||||
activeShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
alignmentHorizontal: ReferenceProperty<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: ReferenceProperty<AlignmentVertical>? = null,
|
||||
@@ -990,20 +990,20 @@ fun Indicator.defer(
|
||||
functions: ReferenceProperty<List<Function>>? = null,
|
||||
height: ReferenceProperty<Size>? = null,
|
||||
id: ReferenceProperty<String>? = null,
|
||||
inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
inactiveMinimumShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
inactiveShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
itemsPlacement: ReferenceProperty<IndicatorItemPlacement>? = null,
|
||||
layoutProvider: ReferenceProperty<LayoutProvider>? = null,
|
||||
margins: ReferenceProperty<EdgeInsets>? = null,
|
||||
minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
paddings: ReferenceProperty<EdgeInsets>? = null,
|
||||
pagerId: ReferenceProperty<String>? = null,
|
||||
reuseId: ReferenceProperty<String>? = null,
|
||||
rowSpan: ReferenceProperty<Int>? = null,
|
||||
selectedActions: ReferenceProperty<List<Action>>? = null,
|
||||
shape: ReferenceProperty<Shape>? = null,
|
||||
spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: ReferenceProperty<Shape>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
@@ -1118,8 +1118,8 @@ fun Indicator.defer(
|
||||
fun Indicator.modify(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Property<Accessibility>? = null,
|
||||
activeItemColor: Property<Color>? = null,
|
||||
activeItemSize: Property<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Property<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Property<Double>? = null,
|
||||
activeShape: Property<RoundedRectangleShape>? = null,
|
||||
alignmentHorizontal: Property<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: Property<AlignmentVertical>? = null,
|
||||
@@ -1135,20 +1135,20 @@ fun Indicator.modify(
|
||||
functions: Property<List<Function>>? = null,
|
||||
height: Property<Size>? = null,
|
||||
id: Property<String>? = null,
|
||||
inactiveItemColor: Property<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Property<Color>? = null,
|
||||
inactiveMinimumShape: Property<RoundedRectangleShape>? = null,
|
||||
inactiveShape: Property<RoundedRectangleShape>? = null,
|
||||
itemsPlacement: Property<IndicatorItemPlacement>? = null,
|
||||
layoutProvider: Property<LayoutProvider>? = null,
|
||||
margins: Property<EdgeInsets>? = null,
|
||||
minimumItemSize: Property<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Property<Double>? = null,
|
||||
paddings: Property<EdgeInsets>? = null,
|
||||
pagerId: Property<String>? = null,
|
||||
reuseId: Property<String>? = null,
|
||||
rowSpan: Property<Int>? = null,
|
||||
selectedActions: Property<List<Action>>? = null,
|
||||
shape: Property<Shape>? = null,
|
||||
spaceBetweenCenters: Property<FixedSize>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Property<Shape>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: Property<FixedSize>? = null,
|
||||
tooltips: Property<List<Tooltip>>? = null,
|
||||
transform: Property<Transform>? = null,
|
||||
transformations: Property<List<Transformation>>? = null,
|
||||
@@ -1229,15 +1229,15 @@ fun Indicator.modify(
|
||||
@Generated
|
||||
fun Indicator.evaluate(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
activeItemColor: ExpressionProperty<Color>? = null,
|
||||
activeItemSize: ExpressionProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: ExpressionProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: ExpressionProperty<Double>? = null,
|
||||
alignmentHorizontal: ExpressionProperty<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: ExpressionProperty<AlignmentVertical>? = null,
|
||||
alpha: ExpressionProperty<Double>? = null,
|
||||
animation: ExpressionProperty<Indicator.Animation>? = null,
|
||||
columnSpan: ExpressionProperty<Int>? = null,
|
||||
inactiveItemColor: ExpressionProperty<Color>? = null,
|
||||
minimumItemSize: ExpressionProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: ExpressionProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: ExpressionProperty<Double>? = null,
|
||||
reuseId: ExpressionProperty<String>? = null,
|
||||
rowSpan: ExpressionProperty<Int>? = null,
|
||||
visibility: ExpressionProperty<Visibility>? = null,
|
||||
@@ -1342,8 +1342,8 @@ fun Indicator.evaluate(
|
||||
fun Component<Indicator>.override(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Accessibility? = null,
|
||||
activeItemColor: Color? = null,
|
||||
activeItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Double? = null,
|
||||
activeShape: RoundedRectangleShape? = null,
|
||||
alignmentHorizontal: AlignmentHorizontal? = null,
|
||||
alignmentVertical: AlignmentVertical? = null,
|
||||
@@ -1359,20 +1359,20 @@ fun Component<Indicator>.override(
|
||||
functions: List<Function>? = null,
|
||||
height: Size? = null,
|
||||
id: String? = null,
|
||||
inactiveItemColor: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Color? = null,
|
||||
inactiveMinimumShape: RoundedRectangleShape? = null,
|
||||
inactiveShape: RoundedRectangleShape? = null,
|
||||
itemsPlacement: IndicatorItemPlacement? = null,
|
||||
layoutProvider: LayoutProvider? = null,
|
||||
margins: EdgeInsets? = null,
|
||||
minimumItemSize: Double? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Double? = null,
|
||||
paddings: EdgeInsets? = null,
|
||||
pagerId: String? = null,
|
||||
reuseId: String? = null,
|
||||
rowSpan: Int? = null,
|
||||
selectedActions: List<Action>? = null,
|
||||
shape: Shape? = null,
|
||||
spaceBetweenCenters: FixedSize? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Shape? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: FixedSize? = null,
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
@@ -1488,8 +1488,8 @@ fun Component<Indicator>.override(
|
||||
fun Component<Indicator>.defer(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: ReferenceProperty<Accessibility>? = null,
|
||||
activeItemColor: ReferenceProperty<Color>? = null,
|
||||
activeItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: ReferenceProperty<Double>? = null,
|
||||
activeShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
alignmentHorizontal: ReferenceProperty<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: ReferenceProperty<AlignmentVertical>? = null,
|
||||
@@ -1505,20 +1505,20 @@ fun Component<Indicator>.defer(
|
||||
functions: ReferenceProperty<List<Function>>? = null,
|
||||
height: ReferenceProperty<Size>? = null,
|
||||
id: ReferenceProperty<String>? = null,
|
||||
inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: ReferenceProperty<Color>? = null,
|
||||
inactiveMinimumShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
inactiveShape: ReferenceProperty<RoundedRectangleShape>? = null,
|
||||
itemsPlacement: ReferenceProperty<IndicatorItemPlacement>? = null,
|
||||
layoutProvider: ReferenceProperty<LayoutProvider>? = null,
|
||||
margins: ReferenceProperty<EdgeInsets>? = null,
|
||||
minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: ReferenceProperty<Double>? = null,
|
||||
paddings: ReferenceProperty<EdgeInsets>? = null,
|
||||
pagerId: ReferenceProperty<String>? = null,
|
||||
reuseId: ReferenceProperty<String>? = null,
|
||||
rowSpan: ReferenceProperty<Int>? = null,
|
||||
selectedActions: ReferenceProperty<List<Action>>? = null,
|
||||
shape: ReferenceProperty<Shape>? = null,
|
||||
spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: ReferenceProperty<Shape>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: ReferenceProperty<FixedSize>? = null,
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
@@ -1600,15 +1600,15 @@ fun Component<Indicator>.defer(
|
||||
@Generated
|
||||
fun Component<Indicator>.evaluate(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
activeItemColor: ExpressionProperty<Color>? = null,
|
||||
activeItemSize: ExpressionProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: ExpressionProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: ExpressionProperty<Double>? = null,
|
||||
alignmentHorizontal: ExpressionProperty<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: ExpressionProperty<AlignmentVertical>? = null,
|
||||
alpha: ExpressionProperty<Double>? = null,
|
||||
animation: ExpressionProperty<Indicator.Animation>? = null,
|
||||
columnSpan: ExpressionProperty<Int>? = null,
|
||||
inactiveItemColor: ExpressionProperty<Color>? = null,
|
||||
minimumItemSize: ExpressionProperty<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: ExpressionProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: ExpressionProperty<Double>? = null,
|
||||
reuseId: ExpressionProperty<String>? = null,
|
||||
rowSpan: ExpressionProperty<Int>? = null,
|
||||
visibility: ExpressionProperty<Visibility>? = null,
|
||||
@@ -1714,8 +1714,8 @@ fun Component<Indicator>.evaluate(
|
||||
fun Component<Indicator>.modify(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
accessibility: Property<Accessibility>? = null,
|
||||
activeItemColor: Property<Color>? = null,
|
||||
activeItemSize: Property<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemColor: Property<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") activeItemSize: Property<Double>? = null,
|
||||
activeShape: Property<RoundedRectangleShape>? = null,
|
||||
alignmentHorizontal: Property<AlignmentHorizontal>? = null,
|
||||
alignmentVertical: Property<AlignmentVertical>? = null,
|
||||
@@ -1731,20 +1731,20 @@ fun Component<Indicator>.modify(
|
||||
functions: Property<List<Function>>? = null,
|
||||
height: Property<Size>? = null,
|
||||
id: Property<String>? = null,
|
||||
inactiveItemColor: Property<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") inactiveItemColor: Property<Color>? = null,
|
||||
inactiveMinimumShape: Property<RoundedRectangleShape>? = null,
|
||||
inactiveShape: Property<RoundedRectangleShape>? = null,
|
||||
itemsPlacement: Property<IndicatorItemPlacement>? = null,
|
||||
layoutProvider: Property<LayoutProvider>? = null,
|
||||
margins: Property<EdgeInsets>? = null,
|
||||
minimumItemSize: Property<Double>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") minimumItemSize: Property<Double>? = null,
|
||||
paddings: Property<EdgeInsets>? = null,
|
||||
pagerId: Property<String>? = null,
|
||||
reuseId: Property<String>? = null,
|
||||
rowSpan: Property<Int>? = null,
|
||||
selectedActions: Property<List<Action>>? = null,
|
||||
shape: Property<Shape>? = null,
|
||||
spaceBetweenCenters: Property<FixedSize>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") shape: Property<Shape>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") spaceBetweenCenters: Property<FixedSize>? = null,
|
||||
tooltips: Property<List<Tooltip>>? = null,
|
||||
transform: Property<Transform>? = null,
|
||||
transformations: Property<List<Transformation>>? = null,
|
||||
|
||||
+15
-15
@@ -48,7 +48,7 @@ data class ShapeDrawable internal constructor(
|
||||
/**
|
||||
* Fill color.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val color: Property<Color>?,
|
||||
/**
|
||||
* Shape.
|
||||
@@ -57,7 +57,7 @@ data class ShapeDrawable internal constructor(
|
||||
/**
|
||||
* Stroke style.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val stroke: Property<Stroke>?,
|
||||
) {
|
||||
internal fun mergeWith(properties: Map<String, Any>): Map<String, Any> {
|
||||
@@ -79,9 +79,9 @@ data class ShapeDrawable internal constructor(
|
||||
@Generated
|
||||
fun DivScope.shapeDrawable(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: Color? = null,
|
||||
shape: Shape? = null,
|
||||
stroke: Stroke? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: Stroke? = null,
|
||||
): ShapeDrawable = ShapeDrawable(
|
||||
ShapeDrawable.Properties(
|
||||
color = valueOrNull(color),
|
||||
@@ -98,9 +98,9 @@ fun DivScope.shapeDrawable(
|
||||
@Generated
|
||||
fun DivScope.shapeDrawableProps(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: Color? = null,
|
||||
shape: Shape? = null,
|
||||
stroke: Stroke? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: Stroke? = null,
|
||||
) = ShapeDrawable.Properties(
|
||||
color = valueOrNull(color),
|
||||
shape = valueOrNull(shape),
|
||||
@@ -115,9 +115,9 @@ fun DivScope.shapeDrawableProps(
|
||||
@Generated
|
||||
fun TemplateScope.shapeDrawableRefs(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: ReferenceProperty<Color>? = null,
|
||||
shape: ReferenceProperty<Shape>? = null,
|
||||
stroke: ReferenceProperty<Stroke>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: ReferenceProperty<Stroke>? = null,
|
||||
) = ShapeDrawable.Properties(
|
||||
color = color,
|
||||
shape = shape,
|
||||
@@ -132,9 +132,9 @@ fun TemplateScope.shapeDrawableRefs(
|
||||
@Generated
|
||||
fun ShapeDrawable.override(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: Color? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: Color? = null,
|
||||
shape: Shape? = null,
|
||||
stroke: Stroke? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: Stroke? = null,
|
||||
): ShapeDrawable = ShapeDrawable(
|
||||
ShapeDrawable.Properties(
|
||||
color = valueOrNull(color) ?: properties.color,
|
||||
@@ -151,9 +151,9 @@ fun ShapeDrawable.override(
|
||||
@Generated
|
||||
fun ShapeDrawable.defer(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: ReferenceProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: ReferenceProperty<Color>? = null,
|
||||
shape: ReferenceProperty<Shape>? = null,
|
||||
stroke: ReferenceProperty<Stroke>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: ReferenceProperty<Stroke>? = null,
|
||||
): ShapeDrawable = ShapeDrawable(
|
||||
ShapeDrawable.Properties(
|
||||
color = color ?: properties.color,
|
||||
@@ -170,9 +170,9 @@ fun ShapeDrawable.defer(
|
||||
@Generated
|
||||
fun ShapeDrawable.modify(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: Property<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: Property<Color>? = null,
|
||||
shape: Property<Shape>? = null,
|
||||
stroke: Property<Stroke>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") stroke: Property<Stroke>? = null,
|
||||
): ShapeDrawable = ShapeDrawable(
|
||||
ShapeDrawable.Properties(
|
||||
color = color ?: properties.color,
|
||||
@@ -187,7 +187,7 @@ fun ShapeDrawable.modify(
|
||||
@Generated
|
||||
fun ShapeDrawable.evaluate(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
color: ExpressionProperty<Color>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") color: ExpressionProperty<Color>? = null,
|
||||
): ShapeDrawable = ShapeDrawable(
|
||||
ShapeDrawable.Properties(
|
||||
color = color ?: properties.color,
|
||||
|
||||
@@ -158,7 +158,7 @@ data class State internal constructor(
|
||||
/**
|
||||
* ID of an element to search in the hierarchy. The ID must be unique at one hierarchy level.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val divId: Property<String>?,
|
||||
/**
|
||||
* Action when double-clicking on an element.
|
||||
@@ -253,7 +253,7 @@ data class State internal constructor(
|
||||
* It determines which events trigger transition animations.
|
||||
* Default value: `state_change`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val transitionAnimationSelector: Property<TransitionSelector>?,
|
||||
/**
|
||||
* Change animation. It is played when the position or size of an element changes in the new layout.
|
||||
@@ -383,12 +383,12 @@ data class State internal constructor(
|
||||
/**
|
||||
* State appearance animation. Use `transition_in` instead.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val animationIn: Property<Animation>?,
|
||||
/**
|
||||
* State disappearance animation. Use `transition_out` instead.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val animationOut: Property<Animation>?,
|
||||
/**
|
||||
* Contents. If the parameter is missing, the state won't be displayed.
|
||||
@@ -401,7 +401,7 @@ data class State internal constructor(
|
||||
/**
|
||||
* Actions when swiping the state horizontally.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val swipeOutActions: Property<List<Action>>?,
|
||||
) {
|
||||
internal fun mergeWith(properties: Map<String, Any>): Map<String, Any> {
|
||||
@@ -488,7 +488,7 @@ fun DivScope.state(
|
||||
columnSpan: Int? = null,
|
||||
defaultStateId: String? = null,
|
||||
disappearActions: List<DisappearAction>? = null,
|
||||
divId: String? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: String? = null,
|
||||
doubletapActions: List<Action>? = null,
|
||||
extensions: List<Extension>? = null,
|
||||
focus: Focus? = null,
|
||||
@@ -511,7 +511,7 @@ fun DivScope.state(
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
transitionChange: ChangeTransition? = null,
|
||||
transitionIn: AppearanceTransition? = null,
|
||||
transitionOut: AppearanceTransition? = null,
|
||||
@@ -645,7 +645,7 @@ fun DivScope.stateProps(
|
||||
columnSpan: Int? = null,
|
||||
defaultStateId: String? = null,
|
||||
disappearActions: List<DisappearAction>? = null,
|
||||
divId: String? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: String? = null,
|
||||
doubletapActions: List<Action>? = null,
|
||||
extensions: List<Extension>? = null,
|
||||
focus: Focus? = null,
|
||||
@@ -668,7 +668,7 @@ fun DivScope.stateProps(
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
transitionChange: ChangeTransition? = null,
|
||||
transitionIn: AppearanceTransition? = null,
|
||||
transitionOut: AppearanceTransition? = null,
|
||||
@@ -800,7 +800,7 @@ fun TemplateScope.stateRefs(
|
||||
columnSpan: ReferenceProperty<Int>? = null,
|
||||
defaultStateId: ReferenceProperty<String>? = null,
|
||||
disappearActions: ReferenceProperty<List<DisappearAction>>? = null,
|
||||
divId: ReferenceProperty<String>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: ReferenceProperty<String>? = null,
|
||||
doubletapActions: ReferenceProperty<List<Action>>? = null,
|
||||
extensions: ReferenceProperty<List<Extension>>? = null,
|
||||
focus: ReferenceProperty<Focus>? = null,
|
||||
@@ -823,7 +823,7 @@ fun TemplateScope.stateRefs(
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
transitionChange: ReferenceProperty<ChangeTransition>? = null,
|
||||
transitionIn: ReferenceProperty<AppearanceTransition>? = null,
|
||||
transitionOut: ReferenceProperty<AppearanceTransition>? = null,
|
||||
@@ -955,7 +955,7 @@ fun State.override(
|
||||
columnSpan: Int? = null,
|
||||
defaultStateId: String? = null,
|
||||
disappearActions: List<DisappearAction>? = null,
|
||||
divId: String? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: String? = null,
|
||||
doubletapActions: List<Action>? = null,
|
||||
extensions: List<Extension>? = null,
|
||||
focus: Focus? = null,
|
||||
@@ -978,7 +978,7 @@ fun State.override(
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
transitionChange: ChangeTransition? = null,
|
||||
transitionIn: AppearanceTransition? = null,
|
||||
transitionOut: AppearanceTransition? = null,
|
||||
@@ -1112,7 +1112,7 @@ fun State.defer(
|
||||
columnSpan: ReferenceProperty<Int>? = null,
|
||||
defaultStateId: ReferenceProperty<String>? = null,
|
||||
disappearActions: ReferenceProperty<List<DisappearAction>>? = null,
|
||||
divId: ReferenceProperty<String>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: ReferenceProperty<String>? = null,
|
||||
doubletapActions: ReferenceProperty<List<Action>>? = null,
|
||||
extensions: ReferenceProperty<List<Extension>>? = null,
|
||||
focus: ReferenceProperty<Focus>? = null,
|
||||
@@ -1135,7 +1135,7 @@ fun State.defer(
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
transitionChange: ReferenceProperty<ChangeTransition>? = null,
|
||||
transitionIn: ReferenceProperty<AppearanceTransition>? = null,
|
||||
transitionOut: ReferenceProperty<AppearanceTransition>? = null,
|
||||
@@ -1269,7 +1269,7 @@ fun State.modify(
|
||||
columnSpan: Property<Int>? = null,
|
||||
defaultStateId: Property<String>? = null,
|
||||
disappearActions: Property<List<DisappearAction>>? = null,
|
||||
divId: Property<String>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: Property<String>? = null,
|
||||
doubletapActions: Property<List<Action>>? = null,
|
||||
extensions: Property<List<Extension>>? = null,
|
||||
focus: Property<Focus>? = null,
|
||||
@@ -1292,7 +1292,7 @@ fun State.modify(
|
||||
tooltips: Property<List<Tooltip>>? = null,
|
||||
transform: Property<Transform>? = null,
|
||||
transformations: Property<List<Transformation>>? = null,
|
||||
transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
transitionChange: Property<ChangeTransition>? = null,
|
||||
transitionIn: Property<AppearanceTransition>? = null,
|
||||
transitionOut: Property<AppearanceTransition>? = null,
|
||||
@@ -1382,7 +1382,7 @@ fun State.evaluate(
|
||||
defaultStateId: ExpressionProperty<String>? = null,
|
||||
reuseId: ExpressionProperty<String>? = null,
|
||||
rowSpan: ExpressionProperty<Int>? = null,
|
||||
transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
visibility: ExpressionProperty<Visibility>? = null,
|
||||
): State = State(
|
||||
State.Properties(
|
||||
@@ -1507,7 +1507,7 @@ fun Component<State>.override(
|
||||
columnSpan: Int? = null,
|
||||
defaultStateId: String? = null,
|
||||
disappearActions: List<DisappearAction>? = null,
|
||||
divId: String? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: String? = null,
|
||||
doubletapActions: List<Action>? = null,
|
||||
extensions: List<Extension>? = null,
|
||||
focus: Focus? = null,
|
||||
@@ -1530,7 +1530,7 @@ fun Component<State>.override(
|
||||
tooltips: List<Tooltip>? = null,
|
||||
transform: Transform? = null,
|
||||
transformations: List<Transformation>? = null,
|
||||
transitionAnimationSelector: TransitionSelector? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: TransitionSelector? = null,
|
||||
transitionChange: ChangeTransition? = null,
|
||||
transitionIn: AppearanceTransition? = null,
|
||||
transitionOut: AppearanceTransition? = null,
|
||||
@@ -1665,7 +1665,7 @@ fun Component<State>.defer(
|
||||
columnSpan: ReferenceProperty<Int>? = null,
|
||||
defaultStateId: ReferenceProperty<String>? = null,
|
||||
disappearActions: ReferenceProperty<List<DisappearAction>>? = null,
|
||||
divId: ReferenceProperty<String>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: ReferenceProperty<String>? = null,
|
||||
doubletapActions: ReferenceProperty<List<Action>>? = null,
|
||||
extensions: ReferenceProperty<List<Extension>>? = null,
|
||||
focus: ReferenceProperty<Focus>? = null,
|
||||
@@ -1688,7 +1688,7 @@ fun Component<State>.defer(
|
||||
tooltips: ReferenceProperty<List<Tooltip>>? = null,
|
||||
transform: ReferenceProperty<Transform>? = null,
|
||||
transformations: ReferenceProperty<List<Transformation>>? = null,
|
||||
transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ReferenceProperty<TransitionSelector>? = null,
|
||||
transitionChange: ReferenceProperty<ChangeTransition>? = null,
|
||||
transitionIn: ReferenceProperty<AppearanceTransition>? = null,
|
||||
transitionOut: ReferenceProperty<AppearanceTransition>? = null,
|
||||
@@ -1779,7 +1779,7 @@ fun Component<State>.evaluate(
|
||||
defaultStateId: ExpressionProperty<String>? = null,
|
||||
reuseId: ExpressionProperty<String>? = null,
|
||||
rowSpan: ExpressionProperty<Int>? = null,
|
||||
transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: ExpressionProperty<TransitionSelector>? = null,
|
||||
visibility: ExpressionProperty<Visibility>? = null,
|
||||
): Component<State> = Component(
|
||||
template = template,
|
||||
@@ -1905,7 +1905,7 @@ fun Component<State>.modify(
|
||||
columnSpan: Property<Int>? = null,
|
||||
defaultStateId: Property<String>? = null,
|
||||
disappearActions: Property<List<DisappearAction>>? = null,
|
||||
divId: Property<String>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") divId: Property<String>? = null,
|
||||
doubletapActions: Property<List<Action>>? = null,
|
||||
extensions: Property<List<Extension>>? = null,
|
||||
focus: Property<Focus>? = null,
|
||||
@@ -1928,7 +1928,7 @@ fun Component<State>.modify(
|
||||
tooltips: Property<List<Tooltip>>? = null,
|
||||
transform: Property<Transform>? = null,
|
||||
transformations: Property<List<Transformation>>? = null,
|
||||
transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") transitionAnimationSelector: Property<TransitionSelector>? = null,
|
||||
transitionChange: Property<ChangeTransition>? = null,
|
||||
transitionIn: Property<AppearanceTransition>? = null,
|
||||
transitionOut: Property<AppearanceTransition>? = null,
|
||||
@@ -2013,11 +2013,11 @@ fun State.asList() = listOf(this)
|
||||
@Generated
|
||||
fun DivScope.stateItem(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: Animation? = null,
|
||||
animationOut: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: Animation? = null,
|
||||
div: Div? = null,
|
||||
stateId: String? = null,
|
||||
swipeOutActions: List<Action>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: List<Action>? = null,
|
||||
): State.Item = State.Item(
|
||||
State.Item.Properties(
|
||||
animationIn = valueOrNull(animationIn),
|
||||
@@ -2038,11 +2038,11 @@ fun DivScope.stateItem(
|
||||
@Generated
|
||||
fun DivScope.stateItemProps(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: Animation? = null,
|
||||
animationOut: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: Animation? = null,
|
||||
div: Div? = null,
|
||||
stateId: String? = null,
|
||||
swipeOutActions: List<Action>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: List<Action>? = null,
|
||||
) = State.Item.Properties(
|
||||
animationIn = valueOrNull(animationIn),
|
||||
animationOut = valueOrNull(animationOut),
|
||||
@@ -2061,11 +2061,11 @@ fun DivScope.stateItemProps(
|
||||
@Generated
|
||||
fun TemplateScope.stateItemRefs(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: ReferenceProperty<Animation>? = null,
|
||||
animationOut: ReferenceProperty<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: ReferenceProperty<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: ReferenceProperty<Animation>? = null,
|
||||
div: ReferenceProperty<Div>? = null,
|
||||
stateId: ReferenceProperty<String>? = null,
|
||||
swipeOutActions: ReferenceProperty<List<Action>>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: ReferenceProperty<List<Action>>? = null,
|
||||
) = State.Item.Properties(
|
||||
animationIn = animationIn,
|
||||
animationOut = animationOut,
|
||||
@@ -2084,11 +2084,11 @@ fun TemplateScope.stateItemRefs(
|
||||
@Generated
|
||||
fun State.Item.override(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: Animation? = null,
|
||||
animationOut: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: Animation? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: Animation? = null,
|
||||
div: Div? = null,
|
||||
stateId: String? = null,
|
||||
swipeOutActions: List<Action>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: List<Action>? = null,
|
||||
): State.Item = State.Item(
|
||||
State.Item.Properties(
|
||||
animationIn = valueOrNull(animationIn) ?: properties.animationIn,
|
||||
@@ -2109,11 +2109,11 @@ fun State.Item.override(
|
||||
@Generated
|
||||
fun State.Item.defer(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: ReferenceProperty<Animation>? = null,
|
||||
animationOut: ReferenceProperty<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: ReferenceProperty<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: ReferenceProperty<Animation>? = null,
|
||||
div: ReferenceProperty<Div>? = null,
|
||||
stateId: ReferenceProperty<String>? = null,
|
||||
swipeOutActions: ReferenceProperty<List<Action>>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: ReferenceProperty<List<Action>>? = null,
|
||||
): State.Item = State.Item(
|
||||
State.Item.Properties(
|
||||
animationIn = animationIn ?: properties.animationIn,
|
||||
@@ -2134,11 +2134,11 @@ fun State.Item.defer(
|
||||
@Generated
|
||||
fun State.Item.modify(
|
||||
`use named arguments`: Guard = Guard.instance,
|
||||
animationIn: Property<Animation>? = null,
|
||||
animationOut: Property<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationIn: Property<Animation>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") animationOut: Property<Animation>? = null,
|
||||
div: Property<Div>? = null,
|
||||
stateId: Property<String>? = null,
|
||||
swipeOutActions: Property<List<Action>>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") swipeOutActions: Property<List<Action>>? = null,
|
||||
): State.Item = State.Item(
|
||||
State.Item.Properties(
|
||||
animationIn = animationIn ?: properties.animationIn,
|
||||
|
||||
@@ -525,7 +525,7 @@ data class Tabs internal constructor(
|
||||
* Style. Use `active_font_weight` and `inactive_font_weight` instead.
|
||||
* Default value: `regular`.
|
||||
*/
|
||||
@Deprecated("Marked as deprecated in the JSON schema ")
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema")
|
||||
val fontWeight: Property<FontWeight>?,
|
||||
/**
|
||||
* Background color of the inactive tab title.
|
||||
@@ -2341,7 +2341,7 @@ fun DivScope.tabsTabTitleStyle(
|
||||
fontFamily: String? = null,
|
||||
fontSize: Int? = null,
|
||||
fontSizeUnit: SizeUnit? = null,
|
||||
fontWeight: FontWeight? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: FontWeight? = null,
|
||||
inactiveBackgroundColor: Color? = null,
|
||||
inactiveFontVariationSettings: Map<String, Any>? = null,
|
||||
inactiveFontWeight: FontWeight? = null,
|
||||
@@ -2411,7 +2411,7 @@ fun DivScope.tabsTabTitleStyleProps(
|
||||
fontFamily: String? = null,
|
||||
fontSize: Int? = null,
|
||||
fontSizeUnit: SizeUnit? = null,
|
||||
fontWeight: FontWeight? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: FontWeight? = null,
|
||||
inactiveBackgroundColor: Color? = null,
|
||||
inactiveFontVariationSettings: Map<String, Any>? = null,
|
||||
inactiveFontWeight: FontWeight? = null,
|
||||
@@ -2479,7 +2479,7 @@ fun TemplateScope.tabsTabTitleStyleRefs(
|
||||
fontFamily: ReferenceProperty<String>? = null,
|
||||
fontSize: ReferenceProperty<Int>? = null,
|
||||
fontSizeUnit: ReferenceProperty<SizeUnit>? = null,
|
||||
fontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
inactiveBackgroundColor: ReferenceProperty<Color>? = null,
|
||||
inactiveFontVariationSettings: ReferenceProperty<Map<String, Any>>? = null,
|
||||
inactiveFontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
@@ -2547,7 +2547,7 @@ fun Tabs.TabTitleStyle.override(
|
||||
fontFamily: String? = null,
|
||||
fontSize: Int? = null,
|
||||
fontSizeUnit: SizeUnit? = null,
|
||||
fontWeight: FontWeight? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: FontWeight? = null,
|
||||
inactiveBackgroundColor: Color? = null,
|
||||
inactiveFontVariationSettings: Map<String, Any>? = null,
|
||||
inactiveFontWeight: FontWeight? = null,
|
||||
@@ -2617,7 +2617,7 @@ fun Tabs.TabTitleStyle.defer(
|
||||
fontFamily: ReferenceProperty<String>? = null,
|
||||
fontSize: ReferenceProperty<Int>? = null,
|
||||
fontSizeUnit: ReferenceProperty<SizeUnit>? = null,
|
||||
fontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
inactiveBackgroundColor: ReferenceProperty<Color>? = null,
|
||||
inactiveFontVariationSettings: ReferenceProperty<Map<String, Any>>? = null,
|
||||
inactiveFontWeight: ReferenceProperty<FontWeight>? = null,
|
||||
@@ -2687,7 +2687,7 @@ fun Tabs.TabTitleStyle.modify(
|
||||
fontFamily: Property<String>? = null,
|
||||
fontSize: Property<Int>? = null,
|
||||
fontSizeUnit: Property<SizeUnit>? = null,
|
||||
fontWeight: Property<FontWeight>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: Property<FontWeight>? = null,
|
||||
inactiveBackgroundColor: Property<Color>? = null,
|
||||
inactiveFontVariationSettings: Property<Map<String, Any>>? = null,
|
||||
inactiveFontWeight: Property<FontWeight>? = null,
|
||||
@@ -2751,7 +2751,7 @@ fun Tabs.TabTitleStyle.evaluate(
|
||||
fontFamily: ExpressionProperty<String>? = null,
|
||||
fontSize: ExpressionProperty<Int>? = null,
|
||||
fontSizeUnit: ExpressionProperty<SizeUnit>? = null,
|
||||
fontWeight: ExpressionProperty<FontWeight>? = null,
|
||||
@DeprecatedApi("Marked as deprecated in the JSON schema") fontWeight: ExpressionProperty<FontWeight>? = null,
|
||||
inactiveBackgroundColor: ExpressionProperty<Color>? = null,
|
||||
inactiveFontWeight: ExpressionProperty<FontWeight>? = null,
|
||||
inactiveTextColor: ExpressionProperty<Color>? = null,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "pydivkit"
|
||||
version = "32.21.0"
|
||||
version = "32.22.0"
|
||||
description = "DivKit python library"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/divkit/divkit/tree/main/json-builder/python"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@divkitframework/jsonbuilder",
|
||||
"version": "32.21.0",
|
||||
"version": "32.22.0",
|
||||
"description": "DivKit TypeScript JSON Builder",
|
||||
"main": "./dist/jsonbuilder.js",
|
||||
"module": "./dist/es/jsonbuilder.js",
|
||||
|
||||
Reference in New Issue
Block a user