Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Notes: web developers are advised to use [`~` (tilde range)](https://github.com/
- Added support of [contentless activity in livestream](https://github.com/microsoft/BotFramework-WebChat/blob/main/docs/LIVESTREAMING.md#scenario-3-interim-activities-with-no-content), in PR [#5430](https://github.com/microsoft/BotFramework-WebChat/pull/5430), by [@compulim](https://github.com/compulim)
- Added sliding dots typing indicator in Fluent theme, in PR [#5447](https://github.com/microsoft/BotFramework-WebChat/pull/5447) and PR [#5448](https://github.com/microsoft/BotFramework-WebChat/pull/5448), by [@compulim](https://github.com/compulim)
- (Experimental) Add an ability to pass `completion` prop into Fluent send box and expose the component, in PR [#5466](https://github.com/microsoft/BotFramework-WebChat/pull/5466), by [@OEvgeny](https://github.com/OEvgeny)
- Added feedback form for like/dislike button when `feedbackActionsPlacement` is `"activity-actions"`, in PR [#5460](https://github.com/microsoft/BotFramework-WebChat/pull/5460), PR [#5469](https://github.com/microsoft/BotFramework-WebChat/pull/5469), PR [5470](https://github.com/microsoft/BotFramework-WebChat/pull/5470) and PR [#5501](https://github.com/microsoft/BotFramework-WebChat/pull/5501) by [@lexi-taylor](https://github.com/lexi-taylor) and [@OEvgeny](https://github.com/OEvgeny)
- Added feedback form for like/dislike button when `feedbackActionsPlacement` is `"activity-actions"`, in PR [#5460](https://github.com/microsoft/BotFramework-WebChat/pull/5460), PR [#5469](https://github.com/microsoft/BotFramework-WebChat/pull/5469), PR [5470](https://github.com/microsoft/BotFramework-WebChat/pull/5470) and PR [#5501](https://github.com/microsoft/BotFramework-WebChat/pull/5501) by [@lexi-taylor](https://github.com/lexi-taylor) and [@OEvgeny](https://github.com/OEvgeny) and PR [#5503](https://github.com/microsoft/BotFramework-WebChat/pull/5503) by [@lexi-taylor](https://github.com/lexi-taylor)
- <kbd>ESCAPE</kbd> key should reset the feedback form, in PR [#5480](https://github.com/microsoft/BotFramework-WebChat/pull/5480), by [@compulim](https://github.com/compulim), in PR [#5493](https://github.com/microsoft/BotFramework-WebChat/pull/5493) by [@lexi-taylor](https://github.com/lexi-taylor)
- Added multi-dimensional grouping, `styleOptions.groupActivitiesBy`, and `useGroupActivitiesByName` hook, in PR [#5471](https://github.com/microsoft/BotFramework-WebChat/pull/5471), by [@compulim](https://github.com/compulim)
- Existing behavior will be kept and activities will be grouped by `sender` followed by `status`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@
value: {
actionName: 'feedback',
actionValue: {
feedback: {
feedback: JSON.stringify({
feedbackText: 'Qui sint consequat reprehenderit aliquip esse duis.'
},
}),
reaction: 'like'
}
}
Expand Down
4 changes: 2 additions & 2 deletions __tests__/html2/feedbackForm/behavior.changeMind.mouse.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@
value: {
actionName: 'feedback',
actionValue: {
feedback: {
feedback: JSON.stringify({
feedbackText: 'Nostrud ad irure commodo magna pariatur aliqua.'
},
}),
reaction: 'dislike'
}
}
Expand Down
4 changes: 2 additions & 2 deletions __tests__/html2/feedbackForm/feedback.form.activity.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@
actionName: 'feedback',
actionValue: {
reaction: 'dislike',
feedback: {
feedback: JSON.stringify({
feedbackText: 'Test feedback'
}
})
}
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
actionName: 'feedback',
actionValue: {
reaction: 'like',
feedback: {
feedback: JSON.stringify({
feedbackText: ''
}
})
}
}
})
Expand Down
4 changes: 2 additions & 2 deletions __tests__/html2/fluentTheme/defaultFeedback.activity.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@
actionName: 'feedback',
actionValue: {
reaction: 'dislike',
feedback: {
feedback: JSON.stringify({
feedbackText: 'Test feedback'
}
})
}
}
})
Expand Down
6 changes: 3 additions & 3 deletions __tests__/html2/fluentTheme/feedback.form.multiple.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@
actionName: 'feedback',
actionValue: {
reaction: 'like',
feedback: {
feedbackText: expect.any(String)
}
feedback: JSON.stringify({
feedbackText: 'Test feedback'
})
}
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function ActivityFeedbackComposer(props: ActivityFeedbackComposerProps) {
value: {
actionName: 'feedback',
actionValue: {
feedback: { feedbackText: feedbackText || '' },
feedback: JSON.stringify({ feedbackText: feedbackText || '' }),
reaction: action['@type'] === 'LikeAction' ? 'like' : 'dislike'
}
}
Expand Down
Loading