@atlaskit/forge-react-types 0.14.0 → 0.14.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 +88 -83
- package/LICENSE.md +6 -8
- package/dist/types/components/__generated__/ButtonProps.codegen.d.ts +1 -1
- package/dist/types/components/__generated__/CheckboxGroupProps.codegen.d.ts +2 -2
- package/dist/types/components/__generated__/DatePickerProps.codegen.d.ts +1 -1
- package/dist/types/components/__generated__/FormProps.codegen.d.ts +2 -2
- package/dist/types/components/__generated__/IconProps.codegen.d.ts +2 -2
- package/dist/types/components/__generated__/ListItemProps.codegen.d.ts +2 -2
- package/dist/types/components/__generated__/ListProps.codegen.d.ts +2 -2
- package/dist/types/components/__generated__/types.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/ButtonProps.codegen.d.ts +1 -1
- package/dist/types-ts4.5/components/__generated__/CheckboxGroupProps.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/DatePickerProps.codegen.d.ts +1 -1
- package/dist/types-ts4.5/components/__generated__/FormProps.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/IconProps.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/ListItemProps.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/ListProps.codegen.d.ts +2 -2
- package/dist/types-ts4.5/components/__generated__/types.codegen.d.ts +2 -2
- package/package.json +7 -9
- package/scripts/codegen/codeGenerator.ts +306 -347
- package/scripts/codegen/componentPropTypes.ts +167 -212
- package/scripts/codegen-runner.ts +4 -4
- package/src/components/__generated__/ButtonProps.codegen.tsx +358 -358
- package/src/components/__generated__/CheckboxGroupProps.codegen.tsx +8 -8
- package/src/components/__generated__/DatePickerProps.codegen.tsx +12 -12
- package/src/components/__generated__/FormProps.codegen.tsx +4 -4
- package/src/components/__generated__/IconProps.codegen.tsx +364 -364
- package/src/components/__generated__/ListItemProps.codegen.tsx +3 -3
- package/src/components/__generated__/ListProps.codegen.tsx +4 -4
- package/src/components/__generated__/types.codegen.ts +20 -20
- package/src/index.ts +58 -58
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/forge-react-types",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Component types for Forge UI Kit React components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -27,23 +27,23 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@atlaskit/badge": "^16.1.0",
|
|
29
29
|
"@atlaskit/banner": "^12.3.0",
|
|
30
|
-
"@atlaskit/button": "^17.
|
|
30
|
+
"@atlaskit/button": "^17.17.0",
|
|
31
31
|
"@atlaskit/calendar": "^14.2.1",
|
|
32
|
-
"@atlaskit/checkbox": "^13.
|
|
32
|
+
"@atlaskit/checkbox": "^13.4.0",
|
|
33
33
|
"@atlaskit/code": "^15.2.0",
|
|
34
34
|
"@atlaskit/dynamic-table": "^14.17.0",
|
|
35
35
|
"@atlaskit/empty-state": "^7.8.0",
|
|
36
|
-
"@atlaskit/form": "^10.
|
|
36
|
+
"@atlaskit/form": "^10.3.0",
|
|
37
37
|
"@atlaskit/heading": "^2.3.0",
|
|
38
38
|
"@atlaskit/lozenge": "^11.7.0",
|
|
39
39
|
"@atlaskit/modal-dialog": "^12.13.0",
|
|
40
|
-
"@atlaskit/primitives": "^
|
|
40
|
+
"@atlaskit/primitives": "^7.0.0",
|
|
41
41
|
"@atlaskit/progress-bar": "2.1.0",
|
|
42
|
-
"@atlaskit/progress-tracker": "8.6.
|
|
42
|
+
"@atlaskit/progress-tracker": "8.6.2",
|
|
43
43
|
"@atlaskit/radio": "^6.3.0",
|
|
44
44
|
"@atlaskit/range": "^7.2.0",
|
|
45
45
|
"@atlaskit/section-message": "^6.5.0",
|
|
46
|
-
"@atlaskit/select": "^17.
|
|
46
|
+
"@atlaskit/select": "^17.10.0",
|
|
47
47
|
"@atlaskit/spinner": "^16.1.0",
|
|
48
48
|
"@atlaskit/tabs": "^16.1.0",
|
|
49
49
|
"@atlaskit/tag": "^12.2.0",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
63
62
|
"@atlassian/codegen": "^0.1.2",
|
|
64
63
|
"@types/node": "~18.19.31",
|
|
65
64
|
"react": "^16.8.0",
|
|
@@ -67,7 +66,6 @@
|
|
|
67
66
|
"ts-node": "^10.9.1",
|
|
68
67
|
"typescript": "~5.4.2"
|
|
69
68
|
},
|
|
70
|
-
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1",
|
|
71
69
|
"scripts": {
|
|
72
70
|
"codegen": "ts-node ./scripts/codegen-runner.ts"
|
|
73
71
|
}
|