@atlaskit/popup 1.3.2 → 1.3.5

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,23 @@
1
1
  # @atlaskit/popup
2
2
 
3
+ ## 1.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.3.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
15
+ ## 1.3.3
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.3.2
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # popup
2
2
 
3
- Creates a simple and lightweight inline Popup.
3
+ A popup displays brief content in an overlay.
4
4
 
5
5
  ## Installation
6
6
 
@@ -10,4 +10,4 @@ yarn add @atlaskit/popup
10
10
 
11
11
  ## Usage
12
12
 
13
- Detailed docs and example usage can be found [here](https://atlaskit.atlassian.com/packages/core/popup).
13
+ Detailed docs and example usage can be found [here](https://atlassian.design/components/popup/).
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/popup",
3
- "version": "1.3.2",
3
+ "version": "1.3.5",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/popup",
3
- "version": "1.3.2",
3
+ "version": "1.3.5",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/popup",
3
- "version": "1.3.2",
3
+ "version": "1.3.5",
4
4
  "sideEffects": false
5
5
  }
@@ -130,7 +130,7 @@ interface BaseProps {
130
130
  autoFocus?: boolean;
131
131
  /**
132
132
  * Controls if the event which handles clicks outside the popup is be bound with
133
- * `capture: true`
133
+ * `capture: true`.
134
134
  */
135
135
  shouldUseCaptureOnOutsideClick?: boolean;
136
136
  }
@@ -138,7 +138,7 @@ export interface PopupProps extends BaseProps {
138
138
  /**
139
139
  * Render props used to anchor the popup to your content.
140
140
  * Make this an interactive element,
141
- * such as an @atlaskit/button component.
141
+ * such as an `@atlaskit/button` component.
142
142
  */
143
143
  trigger: (props: TriggerProps) => React.ReactNode;
144
144
  /**
@@ -0,0 +1,5 @@
1
+ import { PopupProps } from '../src/types';
2
+
3
+ export default function PopupAttributesFunction(props: PopupProps) {
4
+ return null;
5
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaskit/popup",
3
- "version": "1.3.2",
4
- "description": "A portalled popup primitive that is tied to a trigger element.",
3
+ "version": "1.3.5",
4
+ "description": "A popup displays brief content in an overlay.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
7
7
  },
@@ -29,7 +29,7 @@
29
29
  "@atlaskit/popper": "^5.0.0",
30
30
  "@atlaskit/portal": "^4.0.0",
31
31
  "@atlaskit/theme": "^12.1.0",
32
- "@atlaskit/tokens": "^0.6.0",
32
+ "@atlaskit/tokens": "^0.9.0",
33
33
  "@babel/runtime": "^7.0.0",
34
34
  "@emotion/core": "^10.0.9",
35
35
  "bind-event-listener": "^1.0.2",
@@ -40,14 +40,16 @@
40
40
  "react-dom": "^16.8.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@atlaskit/button": "^16.1.0",
43
+ "@atlaskit/button": "^16.2.0",
44
44
  "@atlaskit/docs": "*",
45
45
  "@atlaskit/icon": "^21.10.0",
46
- "@atlaskit/menu": "^1.2.0",
46
+ "@atlaskit/menu": "^1.3.0",
47
47
  "@atlaskit/radio": "^5.3.0",
48
+ "@atlaskit/section-message": "^6.1.0",
48
49
  "@atlaskit/select": "^15.0.0",
49
- "@atlaskit/spinner": "^15.1.0",
50
50
  "@atlaskit/ssr": "*",
51
+ "@atlaskit/textfield": "^5.1.7",
52
+ "@atlaskit/toggle": "^12.4.4",
51
53
  "@atlaskit/visual-regression": "*",
52
54
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
53
55
  "@testing-library/dom": "^7.7.3",
@@ -58,7 +60,7 @@
58
60
  "raf-stub": "^2.0.1",
59
61
  "react-dom": "^16.8.0",
60
62
  "storybook-addon-performance": "^0.16.0",
61
- "typescript": "3.9.6",
63
+ "typescript": "3.9.10",
62
64
  "wait-for-expect": "^1.2.0"
63
65
  },
64
66
  "keywords": [
@@ -81,5 +83,6 @@
81
83
  ]
82
84
  }
83
85
  },
86
+ "homepage": "https://atlassian.design/components/popup/",
84
87
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
85
88
  }