You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/spfx/release-1.15.md
+104Lines changed: 104 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -133,6 +133,110 @@ The ___location actions can be configured as shown below:
133
133
]
134
134
```
135
135
136
+
The actions will be rendered as below
137
+
138
+
Location Action:
139
+
140
+

141
+
142
+
The Location Action can be used to get your current ___location, show your current or a custom ___location on a map, and choose your current ___location from a map. In the browser it uses Bing Maps as the mapping interface:
143
+
144
+

145
+
146
+
147
+
## Preview Features and Capabilities
148
+
149
+
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.
150
+
151
+
### Adaptive Card Extensions card view caching
152
+
153
+
For improved performance, SPFx now supports local caching of your Adaptive Card Extension's
154
+
card views. The cached card view will be immediately rendered when loading your Adaptive Card
155
+
Extension. After your Adaptive Card Extension loads, it can optionally update the card view.
156
+
157
+
```typescript
158
+
interfaceICacheSettings {
159
+
/**
160
+
* Whether cache is enabled. Default: true
161
+
*/
162
+
isEnabled:boolean;
163
+
/**
164
+
* Expiry time in seconds. Default: 86400 seconds (24 hours)
165
+
*/
166
+
expiryTimeInSeconds:number;
167
+
168
+
/**
169
+
* Returns the Card View used to generate the cached card.
170
+
* By default, the currently rendered Card View will be used to cache the card.
Your Adaptive Card Extension's initial state can be seeded from the cached state. The cached state can also be used to determine if any further logic needs to be executed.
204
+
205
+
State caching and the cache expiry time can be used to determine when expensive remote calls need to be made by the Adaptive Card Extension.
206
+
207
+
Caching can help significantly improve the perceived performance for your Adaptive Card Extension.
208
+
209
+
210
+
### New Action types for media
211
+
212
+
After General Availability the support matrix for media action will be as follows:
0 commit comments