@atlaskit/media-ui 30.4.0 → 30.5.0
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/AGENTS.md +6 -5
- package/CHANGELOG.md +18 -0
- package/dist/cjs/customMediaPlayer/index.js +1 -1
- package/dist/cjs/customMediaPlayer/mediaPlayer/mediaPlayer.js +1 -1
- package/dist/es2019/customMediaPlayer/index.js +1 -1
- package/dist/es2019/customMediaPlayer/mediaPlayer/mediaPlayer.js +1 -1
- package/dist/esm/customMediaPlayer/index.js +1 -1
- package/dist/esm/customMediaPlayer/mediaPlayer/mediaPlayer.js +1 -1
- package/package.json +23 -23
package/AGENTS.md
CHANGED
|
@@ -26,11 +26,12 @@
|
|
|
26
26
|
> codebase and the docs after any code change. Use the `generate` subcommand to bootstrap the index
|
|
27
27
|
> in a new repository.
|
|
28
28
|
|
|
29
|
-
**Entry point:** `.agents/knowledge-index/INDEX.md`
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
**Refresh protocol:** never silently bump `Last verified` — always re-read the listed `Sources`
|
|
29
|
+
**Entry point:** `.agents/knowledge-index/INDEX.md` **Unit doc:**
|
|
30
|
+
`.agents/knowledge-index/domains/media/units/atlaskit-media-ui.md` **Standards page:**
|
|
31
|
+
`.agents/knowledge-index/domains/media/units/atlaskit-media-ui/standards-and-patterns.md` **CLI:**
|
|
32
|
+
`python3 .agents/skills/knowledge-index/scripts/kg.py {find,read,edit,investigate,validate,init,explore,generate} …`
|
|
33
|
+
**Refresh protocol:** never silently bump `Last verified` — always re-read the listed `Sources`
|
|
34
|
+
first, edit, then `kg.py edit <path> --message "<reason>"`.
|
|
34
35
|
|
|
35
36
|
## Key source files
|
|
36
37
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/media-ui
|
|
2
2
|
|
|
3
|
+
## 30.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`cd097a2111788`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd097a2111788) -
|
|
8
|
+
Republish packages depending on `@atlaskit/react-compiler-gating` so their published dependency
|
|
9
|
+
reference is updated to the renamed `@atlaskit/react-compiler-gating` scope.
|
|
10
|
+
|
|
11
|
+
The earlier rename of `@atlassian/react-compiler-gating` to `@atlaskit/react-compiler-gating` only
|
|
12
|
+
bumped the renamed package itself, so dependent packages were never republished and their
|
|
13
|
+
published versions still referenced the old `@atlassian/react-compiler-gating` name, which is not
|
|
14
|
+
available in the public npm registry. This minor bump republishes all affected packages with the
|
|
15
|
+
corrected dependency.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 30.4.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -14,7 +14,7 @@ var CustomMediaPlayerBase = exports.CustomMediaPlayerBase = function CustomMedia
|
|
|
14
14
|
return /*#__PURE__*/_react.default.createElement(_indexCompiled.CustomMediaPlayerBase, props);
|
|
15
15
|
};
|
|
16
16
|
var packageName = "@atlaskit/media-ui";
|
|
17
|
-
var packageVersion = "30.
|
|
17
|
+
var packageVersion = "30.4.0";
|
|
18
18
|
|
|
19
19
|
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
20
20
|
var CustomMediaPlayer = exports.CustomMediaPlayer = (0, _mediaCommon.withMediaAnalyticsContext)({
|
|
@@ -15,7 +15,7 @@ var _useTextTracks2 = require("./useTextTracks");
|
|
|
15
15
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
16
16
|
var _excluded = ["onPlay"];
|
|
17
17
|
var packageName = "@atlaskit/media-ui";
|
|
18
|
-
var packageVersion = "30.
|
|
18
|
+
var packageVersion = "30.4.0";
|
|
19
19
|
var MediaPlayerWihtoutContext = exports.MediaPlayerWihtoutContext = function MediaPlayerWihtoutContext(_ref) {
|
|
20
20
|
var _onPlay = _ref.onPlay,
|
|
21
21
|
props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
|
|
@@ -5,7 +5,7 @@ import { CustomMediaPlayerBase as CompiledCustomMediaPlayerBase } from './index-
|
|
|
5
5
|
import { withMediaAnalyticsContext } from '@atlaskit/media-common';
|
|
6
6
|
export const CustomMediaPlayerBase = props => /*#__PURE__*/React.createElement(CompiledCustomMediaPlayerBase, props);
|
|
7
7
|
const packageName = "@atlaskit/media-ui";
|
|
8
|
-
const packageVersion = "30.
|
|
8
|
+
const packageVersion = "30.4.0";
|
|
9
9
|
|
|
10
10
|
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
11
11
|
export const CustomMediaPlayer = withMediaAnalyticsContext({
|
|
@@ -6,7 +6,7 @@ import { MediaPlayerBase } from './mediaPlayerBase';
|
|
|
6
6
|
import { useTextTracks } from './useTextTracks';
|
|
7
7
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
8
8
|
const packageName = "@atlaskit/media-ui";
|
|
9
|
-
const packageVersion = "30.
|
|
9
|
+
const packageVersion = "30.4.0";
|
|
10
10
|
export const MediaPlayerWihtoutContext = ({
|
|
11
11
|
onPlay,
|
|
12
12
|
...props
|
|
@@ -7,7 +7,7 @@ export var CustomMediaPlayerBase = function CustomMediaPlayerBase(props) {
|
|
|
7
7
|
return /*#__PURE__*/React.createElement(CompiledCustomMediaPlayerBase, props);
|
|
8
8
|
};
|
|
9
9
|
var packageName = "@atlaskit/media-ui";
|
|
10
|
-
var packageVersion = "30.
|
|
10
|
+
var packageVersion = "30.4.0";
|
|
11
11
|
|
|
12
12
|
// @ts-ignore: [PIT-1685] Fails in post-office due to backwards incompatibility issue with React 18
|
|
13
13
|
export var CustomMediaPlayer = withMediaAnalyticsContext({
|
|
@@ -8,7 +8,7 @@ import { MediaPlayerBase } from './mediaPlayerBase';
|
|
|
8
8
|
import { useTextTracks } from './useTextTracks';
|
|
9
9
|
import { useAnalyticsEvents } from '@atlaskit/analytics-next';
|
|
10
10
|
var packageName = "@atlaskit/media-ui";
|
|
11
|
-
var packageVersion = "30.
|
|
11
|
+
var packageVersion = "30.4.0";
|
|
12
12
|
export var MediaPlayerWihtoutContext = function MediaPlayerWihtoutContext(_ref) {
|
|
13
13
|
var _onPlay = _ref.onPlay,
|
|
14
14
|
props = _objectWithoutProperties(_ref, _excluded);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-ui",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.5.0",
|
|
4
4
|
"description": "Includes common components and utilities used by other media packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -31,32 +31,32 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@atlaskit/afm-i18n-platform-media-media-ui": "2.168.0",
|
|
34
|
-
"@atlaskit/analytics-next": "^12.
|
|
35
|
-
"@atlaskit/browser-apis": "^1.
|
|
36
|
-
"@atlaskit/button": "^24.
|
|
37
|
-
"@atlaskit/code": "^18.
|
|
34
|
+
"@atlaskit/analytics-next": "^12.1.0",
|
|
35
|
+
"@atlaskit/browser-apis": "^1.1.0",
|
|
36
|
+
"@atlaskit/button": "^24.2.0",
|
|
37
|
+
"@atlaskit/code": "^18.2.0",
|
|
38
38
|
"@atlaskit/css": "^1.0.0",
|
|
39
|
-
"@atlaskit/flag": "^18.
|
|
40
|
-
"@atlaskit/form": "^16.
|
|
41
|
-
"@atlaskit/icon": "^36.
|
|
42
|
-
"@atlaskit/icon-file-type": "^8.
|
|
39
|
+
"@atlaskit/flag": "^18.1.0",
|
|
40
|
+
"@atlaskit/form": "^16.1.0",
|
|
41
|
+
"@atlaskit/icon": "^36.1.0",
|
|
42
|
+
"@atlaskit/icon-file-type": "^8.1.0",
|
|
43
43
|
"@atlaskit/locale": "^5.0.0",
|
|
44
44
|
"@atlaskit/media-client": "^37.1.0",
|
|
45
|
-
"@atlaskit/media-client-react": "^6.
|
|
46
|
-
"@atlaskit/media-common": "^14.
|
|
45
|
+
"@atlaskit/media-client-react": "^6.1.0",
|
|
46
|
+
"@atlaskit/media-common": "^14.2.0",
|
|
47
47
|
"@atlaskit/media-state": "^3.0.0",
|
|
48
|
-
"@atlaskit/modal-dialog": "^16.
|
|
48
|
+
"@atlaskit/modal-dialog": "^16.1.0",
|
|
49
49
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
50
|
-
"@atlaskit/primitives": "^20.
|
|
51
|
-
"@atlaskit/range": "^11.
|
|
50
|
+
"@atlaskit/primitives": "^20.1.0",
|
|
51
|
+
"@atlaskit/range": "^11.1.0",
|
|
52
52
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
53
|
-
"@atlaskit/react-ufo": "^7.
|
|
54
|
-
"@atlaskit/select": "^22.
|
|
55
|
-
"@atlaskit/spinner": "^20.
|
|
56
|
-
"@atlaskit/theme": "^26.
|
|
57
|
-
"@atlaskit/tokens": "^15.
|
|
58
|
-
"@atlaskit/tooltip": "^23.
|
|
59
|
-
"@atlaskit/width-detector": "^6.
|
|
53
|
+
"@atlaskit/react-ufo": "^7.3.0",
|
|
54
|
+
"@atlaskit/select": "^22.2.0",
|
|
55
|
+
"@atlaskit/spinner": "^20.1.0",
|
|
56
|
+
"@atlaskit/theme": "^26.1.0",
|
|
57
|
+
"@atlaskit/tokens": "^15.1.0",
|
|
58
|
+
"@atlaskit/tooltip": "^23.1.0",
|
|
59
|
+
"@atlaskit/width-detector": "^6.1.0",
|
|
60
60
|
"@babel/runtime": "^7.0.0",
|
|
61
61
|
"@compiled/react": "^0.20.0",
|
|
62
62
|
"@emotion/styled": "^11.0.0",
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@af/visual-regression": "workspace:^",
|
|
78
|
-
"@atlaskit/analytics-listeners": "^11.
|
|
78
|
+
"@atlaskit/analytics-listeners": "^11.1.0",
|
|
79
79
|
"@atlaskit/media-test-data": "^4.0.0",
|
|
80
80
|
"@atlaskit/ssr": "workspace:^",
|
|
81
81
|
"@atlassian/a11y-jest-testing": "^0.13.0",
|
|
82
82
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
83
|
-
"@atlassian/testing-library": "^0.
|
|
83
|
+
"@atlassian/testing-library": "^0.7.0",
|
|
84
84
|
"@testing-library/jest-dom": "^6.4.5",
|
|
85
85
|
"@testing-library/react": "^16.3.0",
|
|
86
86
|
"@types/blueimp-load-image": "^5.16.3",
|