@atlaskit/popup 1.3.7 → 1.3.10
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 +18 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/popup
|
|
2
2
|
|
|
3
|
+
## 1.3.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`8a5bdb3c844`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a5bdb3c844) - Upgrading internal dependency (bind-event-listener) for improved internal types
|
|
8
|
+
|
|
9
|
+
## 1.3.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`dcf8150c49c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dcf8150c49c) - Allow `trigger` props to be applied to any HTML element tag without causing type errors for the `ref` type
|
|
14
|
+
|
|
15
|
+
## 1.3.8
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 1.3.7
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
package/dist/types/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentType, CSSProperties, Dispatch, ReactNode, Ref, SetStateAction } from 'react';
|
|
2
2
|
import { Placement, PopperChildrenProps } from '@atlaskit/popper';
|
|
3
3
|
export interface TriggerProps {
|
|
4
|
-
ref: Ref<
|
|
4
|
+
ref: Ref<any>;
|
|
5
5
|
'aria-controls'?: string;
|
|
6
6
|
'aria-expanded': boolean;
|
|
7
7
|
'aria-haspopup': boolean;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/popup",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "A popup displays brief content in an overlay.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
7
7
|
},
|
|
8
|
-
"repository": "https://bitbucket.org/atlassian/atlassian-frontend",
|
|
8
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
9
9
|
"author": "Atlassian Pty Ltd",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"main": "dist/cjs/index.js",
|
|
@@ -22,17 +22,18 @@
|
|
|
22
22
|
"team": "Design System Team",
|
|
23
23
|
"releaseModel": "scheduled",
|
|
24
24
|
"website": {
|
|
25
|
-
"name": "Popup"
|
|
25
|
+
"name": "Popup",
|
|
26
|
+
"category": "Components"
|
|
26
27
|
}
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
30
|
"@atlaskit/popper": "^5.0.0",
|
|
30
31
|
"@atlaskit/portal": "^4.0.0",
|
|
31
32
|
"@atlaskit/theme": "^12.1.0",
|
|
32
|
-
"@atlaskit/tokens": "^0.
|
|
33
|
+
"@atlaskit/tokens": "^0.10.0",
|
|
33
34
|
"@babel/runtime": "^7.0.0",
|
|
34
35
|
"@emotion/core": "^10.0.9",
|
|
35
|
-
"bind-event-listener": "^2.1.
|
|
36
|
+
"bind-event-listener": "^2.1.1",
|
|
36
37
|
"focus-trap": "^2.4.5"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"@atlaskit/menu": "^1.3.0",
|
|
47
48
|
"@atlaskit/radio": "^5.3.0",
|
|
48
49
|
"@atlaskit/section-message": "^6.1.0",
|
|
49
|
-
"@atlaskit/select": "^15.
|
|
50
|
+
"@atlaskit/select": "^15.3.0",
|
|
50
51
|
"@atlaskit/ssr": "*",
|
|
51
52
|
"@atlaskit/textfield": "^5.1.7",
|
|
52
53
|
"@atlaskit/toggle": "^12.4.4",
|
|
@@ -73,6 +74,7 @@
|
|
|
73
74
|
"import-structure": "atlassian-conventions"
|
|
74
75
|
},
|
|
75
76
|
"@repo/internal": {
|
|
77
|
+
"dom-events": "use-bind-event-listener",
|
|
76
78
|
"ui-components": "lite-mode",
|
|
77
79
|
"analytics": "analytics-next",
|
|
78
80
|
"theming": "tokens",
|