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: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,8 @@ Notes: web developers are advised to use [`~` (tilde range)](https://github.com/
78
78
- New style option supports two values: `'activity-actions'` and `'activity-status'` (default)
79
79
- When set to `'activity-actions'`, feedback buttons are displayed in the activity actions toolbar
80
80
- When set to `'activity-status'`, feedback buttons appear in the activity status area (default behavior)
81
+
- Added support for including activity ID and key into form data indicated by `data-webchat-include-activity-id` and `data-webchat-include-activity-key` attributes, in PR [#5418](https://github.com/microsoft/BotFramework-WebChat/pull/5418), by [@OEvgeny](https://github.com/OEvgeny)
82
+
- Added dedicated loading animation for messages in preparing state for Fluent theme, in PR [#5423](https://github.com/microsoft/BotFramework-WebChat/pull/5423), by [@OEvgeny](https://github.com/OEvgeny)
81
83
82
84
### Changed
83
85
@@ -2037,7 +2039,6 @@ It should check the result from downstream middleware. If it is falsy, it should
2037
2039
- Adds Direct Line Speech support, by [@compulim](https://github.com/compulim) in PR [#2621](https://github.com/microsoft/BotFramework-WebChat/pull/2621)
2038
2040
- Adds [`microsoft-cognitiveservices-sdk@1.8.1`](https://npmjs.com/package/microsoft-cognitiveservices-speech-sdk), in PR [#2704](https://github.com/microsoft/BotFramework-WebChat/pull/2704)
2039
2041
- Fixes [#2692](https://github.com/microsoft/BotFramework-WebChat/issues/2692). Rename sample 17 to 17.a, by [@corinagum](https://github.com/corinagum) in PR [#2695](https://github.com/microsoft/BotFramework-WebChat/pull/2695)
2040
-
- Added support for including activity ID and key into form data indicated by `data-webchat-include-activity-id` and `data-webchat-include-activity-key` attributes, in PR [#5418](https://github.com/microsoft/BotFramework-WebChat/pull/5418), by [@OEvgeny](https://github.com/OEvgeny)
Copy file name to clipboardExpand all lines: __tests__/html/fluentTheme/side-by-side.wide.dark.html
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -501,13 +501,23 @@
501
501
type: 'message'
502
502
}
503
503
],[
504
+
{
505
+
timestamp: timestamp(),
506
+
from: {"role": "user"},
507
+
id: "6.0",
508
+
text: "Start onboarding",
509
+
type: "message"
510
+
},
504
511
{
505
512
timestamp: timestamp(),
506
513
from: {role: 'bot'},
507
-
entities: [aiMessageEntity],
514
+
entities: [{
515
+
...aiMessageEntity,
516
+
keywords: []
517
+
}],
508
518
id: "a4c0c01d-c06e-4dde-9278-265c607b545b",
509
519
type: "typing",
510
-
text: "Processing",
520
+
text: "Processing your request…",
511
521
channelData: {
512
522
streamType: "informative",
513
523
streamSequence: 1
@@ -532,7 +542,7 @@
532
542
entities: [aiMessageEntity],
533
543
id: "a4c0c01d-c06e-4dde-9278-265c607b545b-82",
534
544
type: "message",
535
-
text: "Hello there! I'm your Onboarding Buddy, here to guide you through your first days at our company. Let's go over some important information:\n\n- Your **orientation session** is scheduled for tomorrow at **9:00 AM** in the main conference room.\n\n- Don't forget to complete your **new hire paperwork** by the end of this week. This includes your tax forms, benefits enrollment, and emergency contact information.\n\nGood luck!",
545
+
text: "- Don't forget to complete your **new hire paperwork** by the end of this week. This includes your tax forms, benefits enrollment, and emergency contact information.\n\nGood luck!",
Copy file name to clipboardExpand all lines: __tests__/html/fluentTheme/side-by-side.wide.html
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -511,13 +511,23 @@
511
511
type: 'message'
512
512
}
513
513
],[
514
+
{
515
+
timestamp: timestamp(),
516
+
from: {"role": "user"},
517
+
id: "6.0",
518
+
text: "Start onboarding",
519
+
type: "message"
520
+
},
514
521
{
515
522
timestamp: timestamp(),
516
523
from: {role: 'bot'},
517
-
entities: [aiMessageEntity],
524
+
entities: [{
525
+
...aiMessageEntity,
526
+
keywords: []
527
+
}],
518
528
id: "a4c0c01d-c06e-4dde-9278-265c607b545b",
519
529
type: "typing",
520
-
text: "Processing",
530
+
text: "Processing your request…",
521
531
channelData: {
522
532
streamType: "informative",
523
533
streamSequence: 1
@@ -542,7 +552,7 @@
542
552
entities: [aiMessageEntity],
543
553
id: "a4c0c01d-c06e-4dde-9278-265c607b545b-82",
544
554
type: "message",
545
-
text: "Hello there! I'm your Onboarding Buddy, here to guide you through your first days at our company. Let's go over some important information:\n\n- Your **orientation session** is scheduled for tomorrow at **9:00 AM** in the main conference room.\n\n- Don't forget to complete your **new hire paperwork** by the end of this week. This includes your tax forms, benefits enrollment, and emergency contact information.\n\nGood luck!",
555
+
text: "- Don't forget to complete your **new hire paperwork** by the end of this week. This includes your tax forms, benefits enrollment, and emergency contact information.\n\nGood luck!",
0 commit comments