@atlaskit/forge-react-types 0.5.6 → 0.6.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/CHANGELOG.md +17 -0
- package/README.md +2 -2
- package/dist/types/components/__generated__/BoxProps.codegen.d.ts +1976 -52
- package/dist/types/components/__generated__/TagProps.codegen.d.ts +3 -3
- package/dist/types-ts4.5/components/__generated__/BoxProps.codegen.d.ts +1976 -52
- package/dist/types-ts4.5/components/__generated__/TagProps.codegen.d.ts +3 -3
- package/package.json +8 -8
- package/src/components/__generated__/TagProps.codegen.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/forge-react-types
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
## 0.6.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [#80613](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80613) [`83fc29f5e92c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/83fc29f5e92c) - Add href prop to Tag component
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 0.5.6
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -21,13 +21,13 @@ yarn workspace @atlaskit/forge-react-types codegen
|
|
|
21
21
|
During development, the codegen command can be run for a specific component:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
yarn workspace @atlaskit/forge-react-types <component-name>
|
|
24
|
+
yarn workspace @atlaskit/forge-react-types codegen <component-name>
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
e.g.
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
yarn workspace @atlaskit/forge-react-types ButtonProps
|
|
30
|
+
yarn workspace @atlaskit/forge-react-types codegen ButtonProps
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
NOTE: Make sure any new component prop types are being exported from `packages/forge/forge-react-types/src/components/__generated__/index.ts`
|