kotlin_ui_dsl_version_2.md: Mention the current API as default

This commit is contained in:
Karol Lewandowski 2025-04-23 15:19:01 +02:00
parent ac44f7efbd
commit 79db7c9f1d

View File

@ -415,15 +415,15 @@ It can be created by `Row.placeholder()` method and populated by content later v
It is possible to bind component values to properties with the following methods.
### `Cell.graphProperty`
> Removed in 2023.3, use `validationRequestor(property::afterPropagation)` instead.
### `Cell.validationRequestor`
Binds `component` value changing to property.
The property is updated when the value is changed and is not related to `DialogPanel.apply()`.
The method is rarely used directly.
There are many extensions for specific components described in [](#cellbind).
> In versions before 2023.3, use `Cell.graphProperty`.
### `Cell.bind`
**UI DSL Showcase Tab**: Binding (Sources: [`DemoBinding`](%gh-ic%/platform/platform-impl/internal/src/com/intellij/internal/ui/uiDslShowcase/DemoBinding.kt))