Skip to content

Commit e2357bd

Browse files
Add RTL enabled attribute (#291)
1 parent 0aaecb0 commit e2357bd

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

lib/cjs/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,5 +1848,9 @@ export interface ViewAccessibilityProperties {
18481848
* Indicates whether the text-to-speech selection feature is enabled.
18491849
*/
18501850
readonly speak_selection_enabled?: boolean;
1851+
/**
1852+
* Indicates whether the right-to-left support is enabled.
1853+
*/
1854+
readonly rtl_enabled?: boolean;
18511855
[k: string]: unknown;
18521856
}

lib/esm/generated/rum.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,5 +1848,9 @@ export interface ViewAccessibilityProperties {
18481848
* Indicates whether the text-to-speech selection feature is enabled.
18491849
*/
18501850
readonly speak_selection_enabled?: boolean;
1851+
/**
1852+
* Indicates whether the right-to-left support is enabled.
1853+
*/
1854+
readonly rtl_enabled?: boolean;
18511855
[k: string]: unknown;
18521856
}

schemas/rum/_view-accessibility-schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,11 @@
110110
"type": "boolean",
111111
"description": "Indicates whether the text-to-speech selection feature is enabled.",
112112
"readOnly": true
113+
},
114+
"rtl_enabled": {
115+
"type": "boolean",
116+
"description": "Indicates whether the right-to-left support is enabled.",
117+
"readOnly": true
113118
}
114119
}
115120
}

0 commit comments

Comments
 (0)