From 56ceefc35c08a6720717542110a0f3cdcc30a6c0 Mon Sep 17 00:00:00 2001 From: robot-divkit Date: Wed, 15 Jan 2025 18:27:52 +0300 Subject: [PATCH] Updated version to 30.33.0 commit_hash:c7554b95ce6ae53799913b88f7199abf8e7599c9 --- client/ios/Configurations/Version.xcconfig | 2 +- client/ios/DivKit/DivKitInfo.swift | 2 +- client/web/divkit/package.json | 2 +- .../generated/kotlin/divkit/dsl/Accessibility.kt | 14 +++++++------- .../kotlin/src/generated/kotlin/divkit/dsl/Text.kt | 14 +++++++------- json-builder/python/pyproject.toml | 2 +- json-builder/typescript/package.json | 2 +- version | 2 +- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/client/ios/Configurations/Version.xcconfig b/client/ios/Configurations/Version.xcconfig index 1a0794caa..ef260e0ee 100644 --- a/client/ios/Configurations/Version.xcconfig +++ b/client/ios/Configurations/Version.xcconfig @@ -1,2 +1,2 @@ -MARKETING_VERSION = 30.32.0 +MARKETING_VERSION = 30.33.0 CURRENT_PROJECT_VERSION = 30 diff --git a/client/ios/DivKit/DivKitInfo.swift b/client/ios/DivKit/DivKitInfo.swift index 36ea42cd5..d5baef951 100644 --- a/client/ios/DivKit/DivKitInfo.swift +++ b/client/ios/DivKit/DivKitInfo.swift @@ -1,3 +1,3 @@ public enum DivKitInfo { - public static let version = "30.32.0" + public static let version = "30.33.0" } diff --git a/client/web/divkit/package.json b/client/web/divkit/package.json index 8f8a31a51..c830f4dda 100644 --- a/client/web/divkit/package.json +++ b/client/web/divkit/package.json @@ -1,6 +1,6 @@ { "name": "@divkitframework/divkit", - "version": "30.32.0", + "version": "30.33.0", "description": "DivKit for the web", "keywords": [ "server-driven-ui", diff --git a/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Accessibility.kt b/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Accessibility.kt index a381bbf11..124f08907 100644 --- a/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Accessibility.kt +++ b/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Accessibility.kt @@ -52,7 +52,7 @@ data class Accessibility internal constructor( */ val hint: Property?, /** - * Indicates the current state of the item. `true` is enabled, `false` is disabled. + * Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. */ val isChecked: Property?, /** @@ -109,7 +109,7 @@ data class Accessibility internal constructor( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. @@ -140,7 +140,7 @@ fun DivScope.accessibility( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. @@ -169,7 +169,7 @@ fun DivScope.accessibilityProps( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. @@ -198,7 +198,7 @@ fun TemplateScope.accessibilityRefs( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. @@ -229,7 +229,7 @@ fun Accessibility.override( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. @@ -260,7 +260,7 @@ fun Accessibility.defer( /** * @param description Element description. It is used as the main description for screen reading applications. * @param hint A tooltip of what will happen during interaction. If Speak Hints is enabled in the VoiceOver settings on iOS, a tooltip is played after `description`. - * @param isChecked Indicates the current state of the item. `true` is enabled, `false` is disabled. + * @param isChecked Shows the current state of the checkbox or radio button. `true` is selected, `false` is not selected. * @param mode The way the accessibility tree is organized. In the `merge` mode the accessibility service perceives an element together with a subtree as a whole. In the `exclude` mode an element together with a subtree isn't available for accessibility. * @param muteAfterAction Mutes the screen reader sound after interacting with the element. * @param stateDescription Description of the current state of an element. For example, in the description you can specify a selected date for a date selection element and an on/off state for a switch. diff --git a/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Text.kt b/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Text.kt index b0c010e7d..931c83314 100644 --- a/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Text.kt +++ b/json-builder/kotlin/src/generated/kotlin/divkit/dsl/Text.kt @@ -729,7 +729,7 @@ data class Text internal constructor( */ val actions: Property>?, /** - * Vertical text alignment within the row. Ignored when a baseline offset is specified. + * Vertical text alignment within the row. */ val alignmentVertical: Property?, /** @@ -2952,7 +2952,7 @@ fun Text.Image.asList() = listOf(this) /** * @param actions Action when clicking on text. - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param background Character range background. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param border Character range border. @@ -3025,7 +3025,7 @@ fun DivScope.textRange( /** * @param actions Action when clicking on text. - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param background Character range background. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param border Character range border. @@ -3096,7 +3096,7 @@ fun DivScope.textRangeProps( /** * @param actions Action when clicking on text. - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param background Character range background. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param border Character range border. @@ -3167,7 +3167,7 @@ fun TemplateScope.textRangeRefs( /** * @param actions Action when clicking on text. - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param background Character range background. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param border Character range border. @@ -3240,7 +3240,7 @@ fun Text.Range.override( /** * @param actions Action when clicking on text. - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param background Character range background. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param border Character range border. @@ -3312,7 +3312,7 @@ fun Text.Range.defer( ) /** - * @param alignmentVertical Vertical text alignment within the row. Ignored when a baseline offset is specified. + * @param alignmentVertical Vertical text alignment within the row. * @param baselineOffset Character baseline vertial offset. If set, vertical alignment is ignored. * @param end Ordinal number of the last character to be included in the range. If the property is omitted, the range ends at the last character of the text. * @param fontFamily Font family:
  • `text` — a standard text font;
  • `display` — a family of fonts with a large font size.
  • diff --git a/json-builder/python/pyproject.toml b/json-builder/python/pyproject.toml index 5bf004f30..d7eb9db91 100644 --- a/json-builder/python/pyproject.toml +++ b/json-builder/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydivkit" -version = "30.32.0" +version = "30.33.0" description = "DivKit python library" readme = "README.md" repository = "https://github.com/divkit/divkit/tree/main/json-builder/python" diff --git a/json-builder/typescript/package.json b/json-builder/typescript/package.json index afd71648b..0607bda05 100644 --- a/json-builder/typescript/package.json +++ b/json-builder/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@divkitframework/jsonbuilder", - "version": "30.32.0", + "version": "30.33.0", "description": "DivKit TypeScript JSON Builder", "main": "./dist/jsonbuilder.js", "module": "./dist/es/jsonbuilder.js", diff --git a/version b/version index 284ed79e5..60a10dd4f 100644 --- a/version +++ b/version @@ -1 +1 @@ -30.32.0 +30.33.0