@atlaskit/forge-react-types 0.42.17 → 0.42.19

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,20 @@
1
1
  # @atlaskit/forge-react-types
2
2
 
3
+ ## 0.42.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [`d194627d3b571`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d194627d3b571) -
8
+ Add TopNavMiddle to FDAS
9
+
10
+ ## 0.42.18
11
+
12
+ ### Patch Changes
13
+
14
+ - [`7f44653010732`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f44653010732) -
15
+ Add TopNavStart to FDAS
16
+ - Updated dependencies
17
+
3
18
  ## 0.42.17
4
19
 
5
20
  ### Patch Changes
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -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.17",
3
+ "version": "0.42.19",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,7 +30,7 @@
30
30
  "@atlaskit/modal-dialog": "^14.3.0",
31
31
  "@atlaskit/navigation-system": "^2.3.0",
32
32
  "@atlaskit/popup": "^4.3.0",
33
- "@atlaskit/primitives": "^14.12.0",
33
+ "@atlaskit/primitives": "^14.13.0",
34
34
  "@atlaskit/progress-bar": "^4.0.0",
35
35
  "@atlaskit/progress-tracker": "^10.3.0",
36
36
  "@atlaskit/radio": "^8.3.0",
@@ -43,7 +43,7 @@
43
43
  "@atlaskit/textarea": "^8.0.0",
44
44
  "@atlaskit/textfield": "^8.0.0",
45
45
  "@atlaskit/toggle": "^15.1.0",
46
- "@atlaskit/tokens": "^6.1.0",
46
+ "@atlaskit/tokens": "^6.2.0",
47
47
  "@atlaskit/tooltip": "^20.4.0",
48
48
  "@babel/runtime": "^7.0.0"
49
49
  },
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "devDependencies": {
54
54
  "@atlassian/codegen": "^0.1.0",
55
- "@atlassian/forge-ui": "^32.32.0",
55
+ "@atlassian/forge-ui": "^32.33.0",
56
56
  "@types/node": "~22.17.1",
57
57
  "lodash": "^4.17.21",
58
58
  "react": "^18.2.0",
@@ -0,0 +1,23 @@
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 - TopNavMiddleProps
5
+ *
6
+ * @codegen <<SignedSource::d9105e1d85a6d65be052fb925cbca83a>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../../../services/forge-common-app-gateway/src/components/navigation/TopNavMiddle.tsx <<SignedSource::cdfdd5fe0b77615c5519b81e75970600>>
9
+ */
10
+ /* eslint @repo/internal/codegen/signed-source-integrity: "warn" */
11
+
12
+ import React from 'react';
13
+ import { TopNavMiddle as PlatformTopNavMiddle } from '@atlaskit/navigation-system/layout/top-nav';
14
+
15
+ type PlatformTopNavMiddleProps = React.ComponentProps<typeof PlatformTopNavMiddle>;
16
+
17
+ export type TopNavMiddleProps = Pick<
18
+ // Setting up TopNavMiddleProps as a Pick of PlatformTopNavMiddleProps
19
+ PlatformTopNavMiddleProps,
20
+ 'children'
21
+ >;
22
+
23
+ export type TTopNavMiddle<T> = (props: TopNavMiddleProps) => T;
@@ -0,0 +1,23 @@
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 - TopNavStartProps
5
+ *
6
+ * @codegen <<SignedSource::b5ec6e3ad904dc7b1d04816ca5462f46>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../../../services/forge-common-app-gateway/src/components/navigation/TopNavStart.tsx <<SignedSource::1040907d3c1adaecf75e7044b83851e4>>
9
+ */
10
+ /* eslint @repo/internal/codegen/signed-source-integrity: "warn" */
11
+
12
+ import React from 'react';
13
+ import { TopNavStart as PlatformTopNavStart } from '@atlaskit/navigation-system/layout/top-nav';
14
+
15
+ type PlatformTopNavStartProps = React.ComponentProps<typeof PlatformTopNavStart>;
16
+
17
+ export type TopNavStartProps = Pick<
18
+ // Setting up TopNavProps as a Pick of PlatformTopNavProps
19
+ PlatformTopNavStartProps,
20
+ 'children' | 'testId'
21
+ >;
22
+
23
+ export type TTopNavStart<T> = (props: TopNavStartProps) => T;