@atlaskit/media-test-helpers 29.4.1 → 29.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cjs/clipboardEventMocks.js +2 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/clipboardEventMocks.js +2 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/clipboardEventMocks.js +2 -1
- package/dist/esm/version.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/media-test-helpers
|
|
2
2
|
|
|
3
|
+
## 29.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`a424e62b264`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a424e62b264) - Changes to support Node 16 Typescript definitions from `@types/node`.
|
|
8
|
+
|
|
3
9
|
## 29.4.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -56,7 +56,8 @@ var ClipboardMockFile = /*#__PURE__*/function () {
|
|
|
56
56
|
key: "arrayBuffer",
|
|
57
57
|
value: function arrayBuffer() {
|
|
58
58
|
return Promise.resolve(new ArrayBuffer(0));
|
|
59
|
-
}
|
|
59
|
+
} // @ts-expect-error Property 'stream' in type 'ClipboardMockFile' is not assignable to the same property in base type 'File'.
|
|
60
|
+
|
|
60
61
|
}, {
|
|
61
62
|
key: "stream",
|
|
62
63
|
value: function stream() {
|
package/dist/cjs/version.json
CHANGED
|
@@ -24,7 +24,8 @@ export class ClipboardMockFile {
|
|
|
24
24
|
|
|
25
25
|
arrayBuffer() {
|
|
26
26
|
return Promise.resolve(new ArrayBuffer(0));
|
|
27
|
-
}
|
|
27
|
+
} // @ts-expect-error Property 'stream' in type 'ClipboardMockFile' is not assignable to the same property in base type 'File'.
|
|
28
|
+
|
|
28
29
|
|
|
29
30
|
stream() {
|
|
30
31
|
// IE11 compat
|
package/dist/es2019/version.json
CHANGED
|
@@ -44,7 +44,8 @@ export var ClipboardMockFile = /*#__PURE__*/function () {
|
|
|
44
44
|
key: "arrayBuffer",
|
|
45
45
|
value: function arrayBuffer() {
|
|
46
46
|
return Promise.resolve(new ArrayBuffer(0));
|
|
47
|
-
}
|
|
47
|
+
} // @ts-expect-error Property 'stream' in type 'ClipboardMockFile' is not assignable to the same property in base type 'File'.
|
|
48
|
+
|
|
48
49
|
}, {
|
|
49
50
|
key: "stream",
|
|
50
51
|
value: function stream() {
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED