Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ Breaking changes in this release:
- Added `img-src data:`, required for icons
- Downgraded graph upsert conflict checks, by [@compulim](https://github.com/compulim) in PR [#5674](https://github.com/microsoft/BotFramework-WebChat/pull/5674)
- Fixed virtual keyboard should show up on tap after being suppressed, in iOS 26.2, by [@compulim](https://github.com/compulim) in PR [#5678](https://github.com/microsoft/BotFramework-WebChat/pull/5678)
- Fixed compatibility with `create-react-app` by adding file extension to `core-js` imports, by [@compulim](https://github.com/compulim) in PR [#5680](https://github.com/microsoft/BotFramework-WebChat/pull/5680)

## [4.18.0] - 2024-07-10

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-expect-error No @types/core-js-pure.
import difference from 'core-js-pure/features/set/difference';
import difference from 'core-js-pure/features/set/difference.js';
import { type GraphMiddleware } from '../../Graph';
import { type SlantNode } from '../../schemas/colorNode';
import type { Identifier } from '../../schemas/Identifier';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-ignore No @types/core-js-pure
import { default as toSpliced_ } from 'core-js-pure/features/array/to-spliced';
import { default as toSpliced_ } from 'core-js-pure/features/array/to-spliced.js';

// The Node.js version we are using for CI/CD does not support Array.prototype.toSpliced yet.
function toSpliced<T>(array: readonly T[], start: number, deleteCount: number, ...items: T[]): T[] {
Expand Down
Loading