Skip to content

Commit 30c59dc

Browse files
committed
Including 1.18 RC1 release otes
1 parent bbce79d commit 30c59dc

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

docs/spfx/release-1.18.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Framework v1.18 preview release notes
33
description: Release notes for the SharePoint Framework v1.18 preview release
4-
ms.date: 08/08/2023
4+
ms.date: 08/30/2023
55
ms.localizationpriority: high
66
---
77
# SharePoint Framework v1.18 preview release notes
@@ -10,6 +10,7 @@ This release focuses on new features within the Viva Connections side and evolvi
1010

1111
[!INCLUDE [spfx-release-beta](../../includes/snippets/spfx-release-beta.md)]
1212

13+
- rc.1 **Released**: August 30, 2023
1314
- beta.5 **Released**: August 15, 2023
1415
- beta.3 **Released**: August 1, 2023
1516
- beta.2 **Released**: July 18, 2023
@@ -141,7 +142,9 @@ We introduce a new search card view for Adaptive Card Extensions that is intende
141142
![Search Card View](../images/118-release-notes/ace-search-box.png)
142143

143144
### Support onChange event for ACE TextInput and SearchBox
145+
144146
Developers can now use onChange event for TextInput and SearchBox components in Adaptive Card Extensions.
147+
145148
```typescript
146149
/**
147150
* Text change event handler.
@@ -152,6 +155,7 @@ onChange?: (newValue?: string) => void;
152155
> The `onChange` event for TextInput and SearchBox is fully supported in the browser and in Teams desktop. Full support for Viva Connections mobile will be enabled later.
153156
154157
### Ability to detect host's theme for Viva Connections Mobile
158+
155159
Starting with this version developers have access to `hostContext` in the `AdaptiveCardExtensionContext` object. This property allows to detect host's theme.
156160
```typescript
157161

@@ -173,8 +177,22 @@ export interface IHostContext {
173177
Starting this version React templates use Fluent UI React v8 instead of v7.
174178

175179
### Transparent outline icon for Teams-hosted web parts
180+
176181
The default outline icon for Teams-hosted web parts is now transparent. This allows to meet the Teams design guidelines for application.
177182

183+
### TypeScript v4.7 Support
184+
185+
SPFx solutions now support TypeScript v4.7.
186+
187+
### NodeJS v18 support
188+
189+
SPFx solutions now support NodeJS v18.
190+
191+
> [!NOTE]
192+
> A developer needs to manually set NODE_OPTIONS environment variable to `--openssl-legacy-provider` to use NodeJS v18 after the NodeJS 18 has been installed. This requirement is intended to be removed with the General Availability version of the 1.18. This setting is required to adjust the toolchain to work properly with Webpack 4 which the SPFx tooling is using for now.
193+
> This can be done using `export NODE_OPTIONS=--openssl-legacy-provider` on Mac/Linux or `set NODE_OPTIONS=--openssl-legacy-provider` on Windows.
194+
195+
178196
## Deprecations
179197

180198
- `BaseAdaptiveCardView` - use `BaseAdaptiveCardQuickView` instead

0 commit comments

Comments
 (0)