@forge/react 10.6.0-next.6 → 10.6.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 +21 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/react
|
|
2
2
|
|
|
3
|
+
## 10.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c56ce5b: Add useTranslation hook and I18nProvider to provide basic i18n support for UI Kit apps
|
|
8
|
+
- 63795c7: Added product-specific Jira UI Kit component: CustomFieldEdit. This component is to be used for Forge custom field modules as a top level component.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 0ca1db7: Added missing exports
|
|
13
|
+
- Updated dependencies [a27f856]
|
|
14
|
+
- Updated dependencies [c74ca63]
|
|
15
|
+
- Updated dependencies [d51b7be]
|
|
16
|
+
- Updated dependencies [23f6675]
|
|
17
|
+
- Updated dependencies [0c7960f]
|
|
18
|
+
- Updated dependencies [c81fa57]
|
|
19
|
+
- Updated dependencies [27249cd]
|
|
20
|
+
- Updated dependencies [fdaaeab]
|
|
21
|
+
- @forge/bridge@4.0.0
|
|
22
|
+
- @forge/i18n@0.0.1
|
|
23
|
+
|
|
3
24
|
## 10.6.0-next.6
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/react",
|
|
3
|
-
"version": "10.6.0
|
|
3
|
+
"version": "10.6.0",
|
|
4
4
|
"description": "Forge React reconciler",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@atlaskit/forge-react-types": "^0.27.10",
|
|
21
|
-
"@forge/bridge": "^4.0.0
|
|
22
|
-
"@forge/i18n": "0.0.1
|
|
21
|
+
"@forge/bridge": "^4.0.0",
|
|
22
|
+
"@forge/i18n": "0.0.1",
|
|
23
23
|
"@types/react-reconciler": "^0.28.8",
|
|
24
24
|
"lodash": "^4.17.21",
|
|
25
25
|
"react": "^18.2.0",
|