Skip to content

Commit b4b6da7

Browse files
committed
feat: 8.9 additions
1 parent 823029d commit b4b6da7

File tree

4 files changed

+59
-1
lines changed

4 files changed

+59
-1
lines changed

content/configuration/nativescript.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,11 @@ ios.SPMPackages: Array<{
371371
libs: Array<string>;
372372
repositoryURL: string;
373373
version: string;
374+
/**
375+
* (8.9+) If you have more targets (like widgets for example),
376+
* you can list their names here to include the Swift Package with them.
377+
*/
378+
targets?: string[];
374379
}>
375380
```
376381

content/ui/action-bar.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@ By default, a border is drawn at the bottom of the ActionBar. In addition to the
8383
<ActionBar title="MyApp" flat="true" />
8484
```
8585

86+
:::tip 8.9+
87+
You can alternatively use `iosShadow="false"` in the event you want to keep the translucency but remove the border.
88+
:::
89+
90+
91+
```xml
92+
<ActionBar title="MyApp" iosShadow="false" />
93+
```
94+
8695
## Props
8796

8897
### title
@@ -93,6 +102,14 @@ title: string
93102

94103
Gets or sets the ActionBar title.
95104

105+
::: tip 8.9+
106+
On iOS, you can also enable prefersLargeTitles by setting `iosLargeTitle="true"`
107+
:::
108+
109+
```xml
110+
<ActionBar title="MyApp" iosLargeTitle="true" />
111+
```
112+
96113
### titleView
97114

98115
```ts

content/ui/activity-indicator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ busy: boolean
3535

3636
Gets or sets whether the indicator is busy.
3737

38-
### iosIndicatorViewStyle
38+
### iosIndicatorViewStyle 8.9+
3939

4040
```ts
4141
iosIndicatorViewStyle: IOSIndicatorViewStyle = 'medium' | 'large'

content/ui/text-view.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,42 @@ autocorrect: boolean
118118

119119
Enables or disables autocorrect.
120120

121+
### isWritingToolsActive 8.9+
122+
123+
(iOS Only) Are Apple Intelligence writing tools active.
124+
125+
```ts
126+
isWritingToolsActive: boolean;
127+
```
128+
129+
### enableWritingToolsEvents 8.9+
130+
131+
(iOS Only) Allow Apple Intelligence writing tools to emit text changes on each alteration instead of after the final change (default).
132+
133+
```ts
134+
enableWritingToolsEvents: boolean;
135+
```
136+
137+
### iosWritingToolsBehavior 8.9+
138+
139+
(iOS Only) Behavior for Apple Intelligence Writing Tools.
140+
141+
```ts
142+
iosWritingToolsBehavior: WritingToolsBehavior;
143+
```
144+
145+
Can be `Default`, `Complete`, `Limited` or `None`.
146+
147+
### iosWritingToolsAllowedInput 8.9+
148+
149+
(iOS Only) Allowed input for Apple Intelligence Writing Tools.
150+
151+
```ts
152+
iosWritingToolsAllowedInput: Array<WritingToolsAllowedInput>;
153+
```
154+
155+
Can be `Default`, `List`, `PlainText`, `RichText` or `Table`.
156+
121157
### ...Inherited
122158

123159
For additional inherited properties not shown, refer to the [API Reference](/api/class/TextView).

0 commit comments

Comments
 (0)