@forge/react 11.2.9-next.0 → 11.3.0-next.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/CHANGELOG.md +13 -0
- package/package.json +10 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/react
|
|
2
2
|
|
|
3
|
+
## 11.3.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1fe70bc: Add package.json exports configuration for improved TypeScript module resolution in forge-react package.
|
|
8
|
+
|
|
9
|
+
## 11.2.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [c51a29d]
|
|
14
|
+
- @forge/bridge@5.4.1
|
|
15
|
+
|
|
3
16
|
## 11.2.9-next.0
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/react",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.3.0-next.0",
|
|
4
4
|
"description": "Forge React reconciler",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -15,14 +15,20 @@
|
|
|
15
15
|
"add-component-jsdoc": "ts-node ./build/add-component-jsdoc.ts"
|
|
16
16
|
},
|
|
17
17
|
"exports": {
|
|
18
|
-
".":
|
|
19
|
-
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./out/index.d.ts",
|
|
20
|
+
"default": "./out/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./jira": {
|
|
23
|
+
"types": "./out/components/jira/index.d.ts",
|
|
24
|
+
"default": "./out/components/jira/index.js"
|
|
25
|
+
}
|
|
20
26
|
},
|
|
21
27
|
"dependencies": {
|
|
22
28
|
"@atlaskit/adf-schema": "^48.0.0",
|
|
23
29
|
"@atlaskit/adf-utils": "^19.19.0",
|
|
24
30
|
"@atlaskit/forge-react-types": "^0.42.10",
|
|
25
|
-
"@forge/bridge": "^5.4.1
|
|
31
|
+
"@forge/bridge": "^5.4.1",
|
|
26
32
|
"@forge/i18n": "0.0.7",
|
|
27
33
|
"@types/react": "^18.2.64",
|
|
28
34
|
"@types/react-reconciler": "^0.28.8",
|