Skip to content

Commit f052b95

Browse files
committed
chore: types adjustments
1 parent 2653410 commit f052b95

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

packages/core/ui/core/view/index.d.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ShadowCSSValues } from '../../styling/css-shadow';
88
import { LinearGradient } from '../../styling/linear-gradient';
99
import { InheritedProperty, Property } from '../properties';
1010
import { ViewBase } from '../view-base';
11-
import { ViewCommon } from './view-common';
11+
import { GlassEffectType, ViewCommon } from './view-common';
1212
import type { Point, ShownModallyData } from './view-interfaces';
1313

1414
export * from './view-common';
@@ -237,6 +237,8 @@ export abstract class View extends ViewCommon {
237237

238238
/**
239239
* If `true` the element is an accessibility element and all the children will be treated as a single selectable component.
240+
*
241+
* @nsProperty
240242
*/
241243
accessible: boolean;
242244

@@ -294,6 +296,8 @@ export abstract class View extends ViewCommon {
294296

295297
/**
296298
* When components dynamically change, we want TalkBack to alert the end user. This is made possible by the accessibilityLiveRegion property.
299+
*
300+
* @nsProperty
297301
*/
298302
accessibilityLiveRegion: AccessibilityLiveRegion;
299303

@@ -622,6 +626,13 @@ export abstract class View extends ViewCommon {
622626
*/
623627
visionHoverStyle: string | VisionHoverOptions;
624628

629+
/**
630+
* Set the iOS liquid glass effect style on the view.
631+
*
632+
* @nsProperty
633+
*/
634+
iosGlassEffect: GlassEffectType;
635+
625636
/**
626637
* @nsProperty
627638
*/

0 commit comments

Comments
 (0)