@forge/react 11.18.0-next.2 → 12.0.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 +45 -0
- package/out/__test__/reconcilerTestRenderer.d.ts +5 -5
- package/out/__test__/reconcilerTestRenderer.d.ts.map +1 -1
- package/out/__test__/testUtils.d.ts +6 -6
- package/out/__test__/testUtils.d.ts.map +1 -1
- package/out/components/adf-renderer.d.ts +1 -1
- package/out/components/adf-renderer.d.ts.map +1 -1
- package/out/components/comment.d.ts.map +1 -1
- package/out/components/dynamic-table.d.ts.map +1 -1
- package/out/components/global/index.d.ts +12 -12
- package/out/components/global/index.d.ts.map +1 -1
- package/out/components/index.d.ts +1 -1
- package/out/components/index.d.ts.map +1 -1
- package/out/components/inline-edit.d.ts.map +1 -1
- package/out/components/jira/custom-field-edit.d.ts.map +1 -1
- package/out/components/popup.d.ts.map +1 -1
- package/out/components/ui-kit-components.d.ts +79 -80
- package/out/components/ui-kit-components.d.ts.map +1 -1
- package/out/components/utils/content-wrapper.d.ts +1 -1
- package/out/components/utils/content-wrapper.d.ts.map +1 -1
- package/out/components/utils/replaceUnsupportedDocumentNodes.d.ts.map +1 -1
- package/out/hooks/__test__/usePermissions.test.js +2 -2
- package/out/hooks/confluenceEntity.d.ts.map +1 -1
- package/out/hooks/jiraEntity.d.ts.map +1 -1
- package/out/hooks/types/confEntityProps.d.ts +4 -4
- package/out/hooks/types/confEntityProps.d.ts.map +1 -1
- package/out/hooks/types/entityProps.d.ts +12 -12
- package/out/hooks/types/entityProps.d.ts.map +1 -1
- package/out/hooks/types/jiraEntityProps.d.ts +2 -2
- package/out/hooks/types/jiraEntityProps.d.ts.map +1 -1
- package/out/hooks/types/objectStoreProps.d.ts +6 -6
- package/out/hooks/types/objectStoreProps.d.ts.map +1 -1
- package/out/hooks/useContentProperty.d.ts.map +1 -1
- package/out/hooks/useEntityProperty.d.ts.map +1 -1
- package/out/hooks/useForm.d.ts +3 -3
- package/out/hooks/useForm.d.ts.map +1 -1
- package/out/hooks/useForm.js +2 -3
- package/out/hooks/useIssueProperty.d.ts +1 -1
- package/out/hooks/useIssueProperty.d.ts.map +1 -1
- package/out/hooks/useObjectStore.d.ts.map +1 -1
- package/out/hooks/useObjectStore.js +1 -2
- package/out/hooks/usePermissions.d.ts.map +1 -1
- package/out/hooks/useSpaceProperty.d.ts +1 -1
- package/out/hooks/useSpaceProperty.d.ts.map +1 -1
- package/out/hooks/useTheme.d.ts +1 -1
- package/out/hooks/useTheme.d.ts.map +1 -1
- package/out/hooks/useTranslation.d.ts +1 -1
- package/out/hooks/useTranslation.d.ts.map +1 -1
- package/out/hooks/utils/apiRequestUtils.d.ts.map +1 -1
- package/out/hooks/utils/valueUtils.d.ts +1 -1
- package/out/hooks/utils/valueUtils.d.ts.map +1 -1
- package/out/index.d.ts.map +1 -1
- package/out/package-types.d.ts +2 -2
- package/out/package-types.d.ts.map +1 -1
- package/out/reconciler.d.ts +17 -17
- package/out/reconciler.d.ts.map +1 -1
- package/out/router/components/ParamsContext.d.ts +0 -1
- package/out/router/components/ParamsContext.d.ts.map +1 -1
- package/out/router/components/Route.d.ts.map +1 -1
- package/out/router/components/Router.d.ts.map +1 -1
- package/out/router/hooks/useParams.d.ts.map +1 -1
- package/out/router/utils/matchPath.d.ts.map +1 -1
- package/out/router/utils/test-utils.d.ts.map +1 -1
- package/out/types/components.d.ts +41 -41
- package/out/types/components.d.ts.map +1 -1
- package/out/types/effect.d.ts +6 -6
- package/out/types/effect.d.ts.map +1 -1
- package/out/types/effect.js +2 -2
- package/out/types/forge.d.ts +8 -8
- package/out/types/forge.d.ts.map +1 -1
- package/out/types/forge.js +3 -3
- package/out/types/icons.d.ts +1 -1
- package/out/types/icons.d.ts.map +1 -1
- package/out/types/legacy-effect.d.ts +3 -3
- package/out/types/legacy-effect.d.ts.map +1 -1
- package/out/types/legacy-effect.js +2 -2
- package/package.json +14 -5
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"description": "Forge React reconciler",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"@atlaskit/adf-schema": "^48.0.0",
|
|
37
37
|
"@atlaskit/adf-utils": "^19.19.0",
|
|
38
38
|
"@atlaskit/forge-react-types": "^2.0.0",
|
|
39
|
-
"@forge/bridge": "^
|
|
40
|
-
"@forge/egress": "^
|
|
41
|
-
"@forge/i18n": "0.0
|
|
39
|
+
"@forge/bridge": "^6.0.0",
|
|
40
|
+
"@forge/egress": "^3.0.0",
|
|
41
|
+
"@forge/i18n": "1.0.0",
|
|
42
42
|
"@types/react": "^18.2.64",
|
|
43
43
|
"@types/react-reconciler": "^0.28.8",
|
|
44
44
|
"lodash": "^4.17.21",
|
|
@@ -52,9 +52,18 @@
|
|
|
52
52
|
"@testing-library/react-hooks": "^8.0.1",
|
|
53
53
|
"history": "5.3.0",
|
|
54
54
|
"ts-morph": "^22.0.0",
|
|
55
|
-
"ts-node": "^10.9.2"
|
|
55
|
+
"ts-node": "^10.9.2",
|
|
56
|
+
"typescript": "5.9.2"
|
|
56
57
|
},
|
|
57
58
|
"publishConfig": {
|
|
58
59
|
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"typescript": ">=5.0.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependenciesMeta": {
|
|
65
|
+
"typescript": {
|
|
66
|
+
"optional": true
|
|
67
|
+
}
|
|
59
68
|
}
|
|
60
69
|
}
|