@atlaskit/forge-react-types 0.42.15 → 0.42.17

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/forge-react-types
2
2
 
3
+ ## 0.42.17
4
+
5
+ ### Patch Changes
6
+
7
+ - [`91479b396011c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/91479b396011c) -
8
+ Add TopNav to FDAS
9
+
10
+ ## 0.42.16
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
3
16
  ## 0.42.15
4
17
 
5
18
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/forge-react-types",
3
- "version": "0.42.15",
3
+ "version": "0.42.17",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -17,9 +17,6 @@
17
17
  }
18
18
  },
19
19
  "atlaskit:src": "src/index.ts",
20
- "af:exports": {
21
- ".": "./src/index.ts"
22
- },
23
20
  "atlassian": {
24
21
  "team": "Forge UI"
25
22
  },
@@ -28,16 +25,16 @@
28
25
  "@atlaskit/comment": "^13.0.0",
29
26
  "@atlaskit/datetime-picker": "^17.0.0",
30
27
  "@atlaskit/dynamic-table": "^18.2.0",
31
- "@atlaskit/form": "^12.2.0",
28
+ "@atlaskit/form": "^12.4.0",
32
29
  "@atlaskit/inline-edit": "^15.3.0",
33
30
  "@atlaskit/modal-dialog": "^14.3.0",
34
- "@atlaskit/navigation-system": "^1.1.0",
31
+ "@atlaskit/navigation-system": "^2.3.0",
35
32
  "@atlaskit/popup": "^4.3.0",
36
- "@atlaskit/primitives": "^14.11.0",
33
+ "@atlaskit/primitives": "^14.12.0",
37
34
  "@atlaskit/progress-bar": "^4.0.0",
38
35
  "@atlaskit/progress-tracker": "^10.3.0",
39
- "@atlaskit/radio": "^8.2.0",
40
- "@atlaskit/section-message": "^8.5.0",
36
+ "@atlaskit/radio": "^8.3.0",
37
+ "@atlaskit/section-message": "^8.7.0",
41
38
  "@atlaskit/select": "^21.2.0",
42
39
  "@atlaskit/spinner": "^19.0.0",
43
40
  "@atlaskit/tabs": "^18.1.0",
@@ -46,7 +43,7 @@
46
43
  "@atlaskit/textarea": "^8.0.0",
47
44
  "@atlaskit/textfield": "^8.0.0",
48
45
  "@atlaskit/toggle": "^15.1.0",
49
- "@atlaskit/tokens": "^6.0.0",
46
+ "@atlaskit/tokens": "^6.1.0",
50
47
  "@atlaskit/tooltip": "^20.4.0",
51
48
  "@babel/runtime": "^7.0.0"
52
49
  },
@@ -55,8 +52,8 @@
55
52
  },
56
53
  "devDependencies": {
57
54
  "@atlassian/codegen": "^0.1.0",
58
- "@atlassian/forge-ui": "^32.30.0",
59
- "@types/node": "~20.16.5",
55
+ "@atlassian/forge-ui": "^32.32.0",
56
+ "@types/node": "~22.17.1",
60
57
  "lodash": "^4.17.21",
61
58
  "react": "^18.2.0",
62
59
  "ts-morph": "^17.0.0",
@@ -0,0 +1,22 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ *
4
+ * Extract component prop types from UIKit 2 components - TopNavProps
5
+ *
6
+ * @codegen <<SignedSource::cfccf71be2860c34c0b3e8fd7e5bcc85>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit/top-nav/__generated__/index.partial.tsx <<SignedSource::89ced6c24bd1d4d3dec7d8ef5b5723a7>>
9
+ */
10
+ /* eslint @repo/internal/codegen/signed-source-integrity: "warn" */
11
+
12
+ import React from 'react';
13
+ import { TopNav as PlatformTopNav } from '@atlaskit/navigation-system/layout/top-nav';
14
+
15
+ type PlatformTopNavProps = React.ComponentProps<typeof PlatformTopNav>;
16
+
17
+ export type TopNavProps = Pick<
18
+ PlatformTopNavProps,
19
+ 'children' | 'testId' | 'UNSAFE_theme'
20
+ >;
21
+
22
+ export type TTopNav<T> = (props: TopNavProps) => T;