@atlaskit/forge-react-types 0.24.0 → 0.25.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/forge-react-types
2
2
 
3
+ ## 0.25.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#121002](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/121002)
8
+ [`bbb23b698c493`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bbb23b698c493) -
9
+ Add Popup component
10
+
3
11
  ## 0.24.0
4
12
 
5
13
  ### Minor 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.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Component types for Forge UI Kit React components",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -38,6 +38,7 @@
38
38
  "@atlaskit/inline-edit": "^13.4.1",
39
39
  "@atlaskit/lozenge": "^11.9.0",
40
40
  "@atlaskit/modal-dialog": "^12.14.0",
41
+ "@atlaskit/popup": "^1.20.0",
41
42
  "@atlaskit/primitives": "^11.0.0",
42
43
  "@atlaskit/progress-bar": "2.2.0",
43
44
  "@atlaskit/progress-tracker": "8.7.5",
@@ -52,7 +53,7 @@
52
53
  "@atlaskit/textarea": "^5.5.0",
53
54
  "@atlaskit/textfield": "^6.4.0",
54
55
  "@atlaskit/toggle": "^13.2.0",
55
- "@atlaskit/tokens": "^1.54.0",
56
+ "@atlaskit/tokens": "^1.55.0",
56
57
  "@atlaskit/tooltip": "^18.5.0",
57
58
  "@babel/runtime": "^7.0.0"
58
59
  },
@@ -0,0 +1,19 @@
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 - PopupProps
5
+ *
6
+ * @codegen <<SignedSource::048c8cd953be259496fc69cb92c450c4>>
7
+ * @codegenCommand yarn workspace @atlaskit/forge-react-types codegen
8
+ * @codegenDependency ../../../../forge-ui/src/components/UIKit2-codegen/popup/index.tsx <<SignedSource::669054459a4e640892876e5374fc4d60>>
9
+ */
10
+ import React from 'react';
11
+ import { default as PlatformPopup } from '@atlaskit/popup';
12
+
13
+ export type PopupProps = Omit<
14
+ React.ComponentProps<typeof PlatformPopup>,
15
+ 'content' | 'trigger' | 'popupComponent' | 'zIndex' | 'offset' | 'boundary'
16
+ > & {
17
+ children: React.ReactNode;
18
+ boundary?: 'clippingParents';
19
+ };