Skip to content

Commit ab8ab69

Browse files
authored
4.16.0 and native chevron of accordion in citation should be hidden (#4958)
* 4.16.0 * Add PR number
1 parent b5f0308 commit ab8ab69

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2222

2323
## [Unreleased]
2424

25-
## [4.15.10] - 2023-11-16
25+
## [4.16.0] - 2023-11-16
2626

2727
### Breaking changes
2828

29+
- Starting from 4.16.0, Internet Explorer is no longer supported
30+
- After more than a year of the Internet Explorer 11 officially retirement, we decided to stop supporting Internet Explorer. This will help us to bring new features to Web Chat
31+
- 4.15.9 is the last version which supports Internet Explorer in limited fashion
2932
- `useTextBoxValue` setter will no longer replace emoticon with emoji, in PR [#4861](https://github.com/microsoft/BotFramework-WebChat/issues/pull/4861)
3033

3134
### Fixed
@@ -34,6 +37,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3437
- Fixes [#4863](https://github.com/microsoft/BotFramework-WebChat/issues/4863). Disable dark theme for link references until chat history has dark theme support, by [@compulim](https://github.com/compulim), in PR [#4864](https://github.com/microsoft/BotFramework-WebChat/pull/4864)
3538
- Fixes [#4866](https://github.com/microsoft/BotFramework-WebChat/issues/4866). Citation modal show fill screen width on mobile device and various fit-and-finish, by [@compulim](https://github.com/compulim), in PR [#4867](https://github.com/microsoft/BotFramework-WebChat/pull/4867)
3639
- Fixes [#4878](https://github.com/microsoft/BotFramework-WebChat/issues/4878). `createStore` should return type of `Redux.Store`, by [@compulim](https://github.com/compulim), in PR [#4877](https://github.com/microsoft/BotFramework-WebChat/pull/4877)
40+
- Fixes [#4957](https://github.com/microsoft/BotFramework-WebChat/issues/4957). Native chevron of the accordion in citation should be hidden, by [@compulim](https://github.com/compulim), in PR [#4958](https://github.com/microsoft/BotFramework-WebChat/pull/4958)
3741

3842
### Added
3943

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "botframework-webchat-root",
3-
"version": "4.15.10",
3+
"version": "4.16.0",
44
"private": true,
55
"files": [
66
"lib/**/*"

packages/component/src/Styles/StyleSet/LinkDefinitions.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export default function createLinkDefinitionsStyleSet() {
2828
}
2929
},
3030

31+
'.webchat__link-definitions__header::-webkit-details-marker': {
32+
display: 'none'
33+
},
34+
3135
'&:not([open]) .webchat__link-definitions__header-chevron': {
3236
marginBottom: '-0.1em',
3337
transform: 'rotate(-180deg)'

0 commit comments

Comments
 (0)