@atlaskit/media-file-preview 1.0.0 → 1.0.1
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 +5 -5
- package/CHANGELOG.md +9 -0
- package/package.json +7 -7
package/AGENTS.md
CHANGED
|
@@ -26,11 +26,11 @@
|
|
|
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
|
-
`.agents/knowledge-index/domains/media/units/atlaskit-media-file-preview.md`
|
|
31
|
-
|
|
32
|
-
**
|
|
33
|
-
first, edit, then `kg.py edit <path> --message "<reason>"`.
|
|
29
|
+
**Entry point:** `.agents/knowledge-index/INDEX.md`
|
|
30
|
+
**Unit doc:** `.agents/knowledge-index/domains/media/units/atlaskit-media-file-preview.md`
|
|
31
|
+
**Standards page:** `.agents/knowledge-index/domains/media/units/atlaskit-media-file-preview/standards-and-patterns.md`
|
|
32
|
+
**CLI:** `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` first, edit, then `kg.py edit <path> --message "<reason>"`.
|
|
34
34
|
|
|
35
35
|
## Key source files
|
|
36
36
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/media-file-preview
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`ee28cf33718b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee28cf33718b0) -
|
|
8
|
+
Add @atlassian/react-compiler-gating as a runtime dependency to enable React Compiler platform
|
|
9
|
+
gating.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 1.0.0
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-file-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A React Hook to fetch and render file previews. It's overloaded with fancy features like SSR, lazy loading, memory cache and local preview.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,12 +29,13 @@
|
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"atlaskit:src": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@atlaskit/media-client": "^37.
|
|
32
|
+
"@atlaskit/media-client": "^37.1.0",
|
|
33
33
|
"@atlaskit/media-client-react": "^6.0.0",
|
|
34
|
-
"@atlaskit/media-common": "^14.
|
|
35
|
-
"@atlaskit/media-ui": "^30.
|
|
34
|
+
"@atlaskit/media-common": "^14.1.0",
|
|
35
|
+
"@atlaskit/media-ui": "^30.3.0",
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
37
|
-
"@atlaskit/react-ufo": "^7.
|
|
37
|
+
"@atlaskit/react-ufo": "^7.1.0",
|
|
38
|
+
"@atlassian/react-compiler-gating": "^0.2.0",
|
|
38
39
|
"@babel/runtime": "^7.0.0",
|
|
39
40
|
"lru_map": "^0.4.1"
|
|
40
41
|
},
|
|
@@ -47,11 +48,10 @@
|
|
|
47
48
|
"@af/visual-regression": "workspace:^",
|
|
48
49
|
"@atlaskit/media-state": "^3.0.0",
|
|
49
50
|
"@atlaskit/media-test-data": "^4.0.0",
|
|
50
|
-
"@atlaskit/section-message": "^9.
|
|
51
|
+
"@atlaskit/section-message": "^9.1.0",
|
|
51
52
|
"@atlaskit/ssr": "workspace:^",
|
|
52
53
|
"@atlassian/a11y-jest-testing": "^0.12.0",
|
|
53
54
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
54
|
-
"@atlassian/react-compiler-gating": "workspace:^",
|
|
55
55
|
"@atlassian/testing-library": "^0.6.0",
|
|
56
56
|
"@testing-library/react": "^16.3.0",
|
|
57
57
|
"react": "^18.2.0",
|