Skip to content

Commit b3bc4cc

Browse files
committed
Few updates on the ___location features for 1.14 release notes
1 parent b9311fe commit b3bc4cc

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docs/spfx/release-1.14.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,14 @@ Override this method to handle errors from Adaptive Card actions.
155155
> [!NOTE]
156156
> These new actions are **only available in the browser** currently. Viva Connections desktop and Viva Connections mobile support will be enabled later.
157157
158+
After General Availability the support matrix for actions will look like:
159+
160+
Action | Viva Connection Desktop | Viva Connections Mobile | Browser
161+
------------- | ------------- | ------------- | -------------
162+
Select Media | Supported | Supported | Supported
163+
Get Location | Not Supported | Supported | Supported
164+
Show Location | Not Supported | Supported | Supported
165+
158166
```typescript
159167
ISPFxAdaptiveCard.actions?: (
160168
| ISubmitAction
@@ -180,6 +188,11 @@ The SelectMedia and Location action can be configured as shown below:
180188
type: 'VivaAction.GetLocation',
181189
id: 'Get Location',
182190
parameters: {chooseLocationOnMap: true}
191+
},
192+
{
193+
type: 'VivaAction.ShowLocation',
194+
id: 'Show Location',
195+
parameters: parameters: {locationCoordinates: {latitude: 40, longitude: 40}}
183196
}
184197
]
185198
```

0 commit comments

Comments
 (0)