Skip to content

Commit 15cbfc0

Browse files
Merge pull request SharePoint#9894 from andrewconnell/content-update/ace-updates
Content update/ace updates
2 parents 44a8faa + a991ee1 commit 15cbfc0

33 files changed

+700
-471
lines changed
Loading
Loading
Loading

docs/spfx/release-1.14.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ This property will be explicitly used to wind up the server, meaning all debug U
159159

160160
Following features are still in preview status as part of the 1.14 release and should not be used in production. We are looking into releasing them officially as part of the upcoming 1.15 release.
161161

162-
### Adaptive Card Extensions card view caching
162+
### Adaptive Card Extensions Card View caching
163163

164164
For improved performance, SPFx now supports local caching of your Adaptive Card Extension's
165-
card views. The cached card view will be immediately rendered when loading your Adaptive Card
166-
Extension. After your Adaptive Card Extension loads, it can optionally update the card view.
165+
Card Views. The cached Card View will be immediately rendered when loading your Adaptive Card
166+
Extension. After your Adaptive Card Extension loads, it can optionally update the Card View.
167167

168168
```typescript
169169
interface ICacheSettings {
@@ -188,8 +188,8 @@ BaseAdaptiveCardExtension.getCacheSettings(): Partial<ICacheSettings>;
188188
By default caching is enabled with default settings. An Adaptive Card Extension can customize its
189189
cache settings by overriding `getCacheSettings` to return the settings it wants to override.
190190

191-
When the last known card view shouldn't be cached, you can provide a specific card view to be
192-
cached and displayed on the next page load through `ICacheSettings.cachedCardView`. This card view
191+
When the last known Card View shouldn't be cached, you can provide a specific Card View to be
192+
cached and displayed on the next page load through `ICacheSettings.cachedCardView`. This Card View
193193
doesn't need to have been previously registered.
194194

195195
An Adaptive Card Extension can also locally cache its current state. By default no state is cached.
@@ -202,7 +202,7 @@ If `getCachedState` is overridden, then the cached values will be provided when
202202
Extension is initialized on the next page load.
203203

204204
`onInit` has a new overload, which passes information about the cached card state. If the card wasn't
205-
loaded from a cached card view, then `cachedLoadParameters` will be `undefined`.
205+
loaded from a cached Card View, then `cachedLoadParameters` will be `undefined`.
206206

207207
```typescript
208208
interface ICachedLoadParameters {

docs/spfx/release-1.15.2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ Based on the received feedback from the ecosystem, we "relaxed" applied ESLint r
115115

116116
### Defer loading Adaptive Card Extension Quick View
117117

118-
When an ACE is loaded on a page we load both the card view and quick view. However, we don't need load the quick view until it is interacted with. By defer loading a quick view, we will gain performance when loading an ACE.
118+
When an ACE is loaded on a page we load both the card view and Quick View. However, we don't need load the Quick View until it is interacted with. By defer loading a Quick View, we will gain performance when loading an ACE.
119119

120-
Below is an example to defer load quick view.
120+
Below is an example to defer load Quick View.
121121

122-
Remove importing quick view files in your class that extends `BaseAdaptiveCardExtension`.
122+
Remove importing Quick View files in your class that extends `BaseAdaptiveCardExtension`.
123123

124124
```typescript
125125
this.quickViewNavigator.register(

docs/spfx/release-1.15.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ The Location Action can be used to get your current ___location, show your current
157157

158158
Following features are still in preview status as part of the 1.15 release and should not be used in production. We are looking into releasing them officially as part of the upcoming 1.16 release.
159159

160-
### Adaptive Card Extensions card view caching
160+
### Adaptive Card Extensions Card View caching
161161

162162
For improved performance, SPFx now supports local caching of your Adaptive Card Extension's
163-
card views. The cached card view will be immediately rendered when loading your Adaptive Card
164-
Extension. After your Adaptive Card Extension loads, it can optionally update the card view.
163+
Card Views. The cached Card View will be immediately rendered when loading your Adaptive Card
164+
Extension. After your Adaptive Card Extension loads, it can optionally update the Card View.
165165

166166
```typescript
167167
interface ICacheSettings {
@@ -188,8 +188,8 @@ BaseAdaptiveCardExtension.getCacheSettings(): Partial<ICacheSettings>;
188188
By default caching is enabled with default settings. An Adaptive Card Extension can customize its
189189
cache settings by overriding `getCacheSettings` to return the settings it wants to override.
190190

191-
When the last known card view shouldn't be cached, you can provide a specific card view to be
192-
cached and displayed on the next page load through `ICacheSettings.cachedCardView`. This card view
191+
When the last known Card View shouldn't be cached, you can provide a specific Card View to be
192+
cached and displayed on the next page load through `ICacheSettings.cachedCardView`. This Card View
193193
doesn't need to have been previously registered.
194194

195195
An Adaptive Card Extension can also locally cache its current state. By default no state is cached.
@@ -202,7 +202,7 @@ If `getCachedState` is overridden, then the cached values will be provided when
202202
Extension is initialized on the next page load.
203203

204204
`onInit` has a new overload, which passes information about the cached card state. If the card wasn't
205-
loaded from a cached card view, then `cachedLoadParameters` will be `undefined`.
205+
loaded from a cached Card View, then `cachedLoadParameters` will be `undefined`.
206206

207207
```typescript
208208
interface ICachedLoadParameters {

docs/spfx/release-1.17.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The `onBeforeAction` handler is added to `BaseAdaptiveCardExtension` class to al
9090
9191
### Ability to specify initial focus element in an Adaptive Card Extension Quick View
9292

93-
New `focusParameters` virtual property allows to set focus when the view is rendered for accessibility purposes. If not overridden, the focus element defaulted to the first actionable element of the quick view.
93+
New `focusParameters` virtual property allows to set focus when the view is rendered for accessibility purposes. If not overridden, the focus element defaulted to the first actionable element of the Quick View.
9494

9595
```typescript
9696
/** @virtual */

docs/spfx/release-1.18.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ this.setState({
6666
See more details on the use cases with code samples from the following updated documentation
6767

6868
* [Making Quick View compatible with dark mode in mobile devices](./viva/get-started/making-quickview-compatable-darkmode-mobile.md)
69-
* [Quick view design guidance](./viva/design/designing-quick-view.md)
69+
* [Quick View design guidance](./viva/design/designing-quick-view.md)
7070

7171
## Summary
7272

docs/spfx/release-1.18.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.localizationpriority: high
88

99
This release focuses on new features within the Viva Connections side and evolving existing capabilities within the other areas on building Microsoft 365 solutions with SharePoint Framework.
1010

11-
**Released:** September 12, 2023
11+
**Released:** September 12, 2023
1212

1313
[!INCLUDE [spfx-release-notes-common](../../includes/snippets/spfx-release-notes-common.md)]
1414

@@ -63,11 +63,11 @@ SharePoint Framework solutions now support NodeJS v18 as the default version.
6363

6464
### Support for Execute Action in Adaptive Card Extensions
6565

66-
Developers can use `Execute` action for both card view and quick view actions.
66+
Developers can use `Execute` action for both Card View and Quick View actions.
6767

68-
### BaseComponentsCardView as a new default card view for Adaptive Card Extensions
68+
### BaseComponentsCardView as a new default Card View for Adaptive Card Extensions
6969

70-
We introduce new default class for Adaptive Card Extensions card views. With these new class developers can specify a set of components that is rendered in a card view.
70+
We introduce new default class for Adaptive Card Extensions Card Views. With these new class developers can specify a set of components that is rendered in a Card View.
7171

7272
For more information on the new designs, see [Designing Viva Connections custom cards for your dashboard](./viva/design/designing-card.md).
7373

@@ -114,15 +114,15 @@ export class CardView extends BaseComponentsCardView<
114114
}
115115
```
116116

117-
### Adaptive Card Extensions flexible card views
117+
### Adaptive Card Extensions flexible Card Views
118118

119-
With this release, we introduce more flexible way to configure card views for Adaptive Card Extensions. Developers can now "mix and match" components in a card view configuration based on allowed set of [variations](./viva/design/designing-card.md).
119+
With this release, we introduce more flexible way to configure Card Views for Adaptive Card Extensions. Developers can now "mix and match" components in a Card View configuration based on allowed set of [variations](./viva/design/designing-card.md).
120120

121121
Use new **Generic Card Template** in the generator to get started. Migration guide for existing projects is available [here](./viva/get-started/migrate-to-spfx-1-18.md).
122122

123-
### Ability to use text input in Adaptive Card Extensions' card views
123+
### Ability to use text input in Adaptive Card Extensions' Card Views
124124

125-
Developers can now use text input component in a body or footer of a card view. For more information on the layout options, see [Designing Viva Connections custom cards for your dashboard](./viva/design/designing-card.md).
125+
Developers can now use text input component in a body or footer of a Card View. For more information on the layout options, see [Designing Viva Connections custom cards for your dashboard](./viva/design/designing-card.md).
126126

127127
> [!NOTE]
128128
> The text input component is fully supported in the browser and in Teams desktop. Full support for Viva Connections mobile will be enabled later.
@@ -133,7 +133,7 @@ Developers can now use text input component in a body or footer of a card view.
133133

134134
### New Search Card Template for Adaptive Card Extensions
135135

136-
We introduce a new search card view for Adaptive Card Extensions that is intended to be used for search scenarios. Use new **Search Card Template** in the generator to get started.
136+
We introduce a new search Card View for Adaptive Card Extensions that is intended to be used for search scenarios. Use new **Search Card Template** in the generator to get started.
137137

138138
> [!NOTE]
139139
> The text input component is fully supported in the browser and in Teams desktop. Full support for Viva Connections mobile will be enabled later.

docs/spfx/release-1.19.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ In the project's **package.json** file, identify all SPFx v1.18.x packages. For
4242

4343
### New Data Visualization Card Template for Adaptive Card Extensions
4444

45-
We introduce a new data visualization card view for Adaptive Card Extensions that is intended to be used for charting scenarios. Use new Data Visualization Card Template in the generator to get started.
45+
We introduce a new data visualization Card View for Adaptive Card Extensions that is intended to be used for charting scenarios. Use new Data Visualization Card Template in the generator to get started.
4646

4747
![Sample chart card layouts](../images/119-release-notes/chart-card-viva-connections.png)
4848

@@ -54,7 +54,7 @@ Related updated documentation for the SPFx v1.19 release:
5454
New samples showcasing the new data visualization ACE template:
5555

5656
- **[Chart Card - Page Creation](https://github.com/pnp/sp-dev-fx-aces/tree/main/samples/ChartCard-PageCreation)**: This Adaptive Card Extension displays a line chart showing pages and news creation history on the current SharePoint site.
57-
- **[Chart Card - Three Series](https://github.com/pnp/sp-dev-fx-aces/tree/main/samples/ChartCard-ThreeSeries)**: Baseline example of the chart card rendering options, which was introduced as part of the SPFx 1.19 release. Chart card can be used to render simple charts directly in the card view, so that you can include graphical details on your business situation directly in the Viva Connections dashboard.
57+
- **[Chart Card - Three Series](https://github.com/pnp/sp-dev-fx-aces/tree/main/samples/ChartCard-ThreeSeries)**: Baseline example of the chart card rendering options, which was introduced as part of the SPFx 1.19 release. Chart card can be used to render simple charts directly in the Card View, so that you can include graphical details on your business situation directly in the Viva Connections dashboard.
5858

5959
### Webpack 5 support
6060

0 commit comments

Comments
 (0)