@divkitframework/jsonbuilder 25.4.1 → 25.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/jsonbuilder.js +1 -1
- package/dist/jsonbuilder.d.ts +2 -2
- package/dist/jsonbuilder.js +1 -1
- package/package.json +1 -1
package/dist/es/jsonbuilder.js
CHANGED
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -146,7 +146,7 @@ interface ColorVariableProps {
|
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* An arbitrary object in JSON format.
|
|
150
150
|
*/
|
|
151
151
|
declare class DictVariable<T extends DictVariableProps = DictVariableProps> {
|
|
152
152
|
readonly _props?: Exact<DictVariableProps, T>;
|
|
@@ -229,7 +229,7 @@ interface IDivAccessibility {
|
|
|
229
229
|
type?: Type<DivAccessibilityType>;
|
|
230
230
|
}
|
|
231
231
|
declare type DivAccessibilityMode = 'default' | 'merge' | 'exclude';
|
|
232
|
-
declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list';
|
|
232
|
+
declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list' | 'select';
|
|
233
233
|
|
|
234
234
|
/**
|
|
235
235
|
* It defines an action when clicking on an element.
|
package/dist/jsonbuilder.js
CHANGED