@atlaskit/tooltip 21.0.0 → 21.1.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 +19 -0
- package/Tooltip/package.json +5 -5
- package/TooltipContainer/package.json +5 -5
- package/TooltipPrimitive/package.json +5 -5
- package/dist/cjs/entry-points/tooltip-container.js +13 -0
- package/dist/cjs/entry-points/tooltip-primitive.js +13 -0
- package/dist/cjs/entry-points/tooltip.js +13 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/es2019/entry-points/tooltip-container.js +1 -0
- package/dist/es2019/entry-points/tooltip-primitive.js +1 -0
- package/dist/es2019/entry-points/tooltip.js +1 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/esm/entry-points/tooltip-container.js +1 -0
- package/dist/esm/entry-points/tooltip-primitive.js +1 -0
- package/dist/esm/entry-points/tooltip.js +1 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/types/entry-points/tooltip-container.d.ts +2 -0
- package/dist/types/entry-points/tooltip-primitive.d.ts +2 -0
- package/dist/types/entry-points/tooltip.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/tooltip-container.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/tooltip-primitive.d.ts +2 -0
- package/dist/types-ts4.5/entry-points/tooltip.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/package.json +8 -8
- package/types/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/tooltip
|
|
2
2
|
|
|
3
|
+
## 21.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a4ea57d27e111`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4ea57d27e111) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
14
|
+
## 21.0.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [`7aef1e49e90ea`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7aef1e49e90ea) -
|
|
19
|
+
Removes redundant fallback color values via @atlaskit/theme
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 21.0.0
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
package/Tooltip/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip/Tooltip",
|
|
3
|
-
"main": "../dist/cjs/tooltip.js",
|
|
4
|
-
"module": "../dist/esm/tooltip.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/tooltip.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/tooltip.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/tooltip.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/tooltip.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/tooltip.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/tooltip.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/tooltip.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/tooltip.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip/TooltipContainer",
|
|
3
|
-
"main": "../dist/cjs/tooltip-container.js",
|
|
4
|
-
"module": "../dist/esm/tooltip-container.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/tooltip-container.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/tooltip-container.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/tooltip-container.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/tooltip-container.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/tooltip-container.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/tooltip-container.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/tooltip-container.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/tooltip-container.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip/TooltipPrimitive",
|
|
3
|
-
"main": "../dist/cjs/tooltip-primitive.js",
|
|
4
|
-
"module": "../dist/esm/tooltip-primitive.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/tooltip-primitive.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/tooltip-primitive.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/tooltip-primitive.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/tooltip-primitive.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/tooltip-primitive.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/tooltip-primitive.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/tooltip-primitive.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/tooltip-primitive.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _tooltipContainer.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _tooltipContainer = _interopRequireDefault(require("../tooltip-container"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _tooltipPrimitive.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _tooltipPrimitive = _interopRequireDefault(require("../tooltip-primitive"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
Object.defineProperty(exports, "default", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function get() {
|
|
10
|
+
return _tooltip.default;
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
var _tooltip = _interopRequireDefault(require("../tooltip"));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip-container';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip-primitive';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip-container';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip-primitive';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip';
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FakeMouseElement, PositionType, PositionTypeBase, TooltipProps, TriggerProps, } from '../types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '../tooltip';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { FakeMouseElement, PositionType, PositionTypeBase, TooltipProps, TriggerProps, } from '../types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "A tooltip briefly describes an interactive element on mouse hover or keyboard focus.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/analytics-next": "^11.
|
|
35
|
+
"@atlaskit/analytics-next": "^11.2.0",
|
|
36
36
|
"@atlaskit/ds-lib": "^6.0.0",
|
|
37
37
|
"@atlaskit/layering": "^3.6.0",
|
|
38
|
-
"@atlaskit/motion": "^5.
|
|
38
|
+
"@atlaskit/motion": "^5.5.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
40
|
"@atlaskit/popper": "^7.1.0",
|
|
41
|
-
"@atlaskit/portal": "^5.
|
|
41
|
+
"@atlaskit/portal": "^5.3.0",
|
|
42
42
|
"@atlaskit/theme": "^22.0.0",
|
|
43
|
-
"@atlaskit/tokens": "^11.
|
|
43
|
+
"@atlaskit/tokens": "^11.4.0",
|
|
44
44
|
"@babel/runtime": "^7.0.0",
|
|
45
45
|
"@compiled/react": "^0.20.0",
|
|
46
46
|
"bind-event-listener": "^3.0.0"
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@atlaskit/button": "^23.10.0",
|
|
58
58
|
"@atlaskit/css": "^0.19.0",
|
|
59
59
|
"@atlaskit/docs": "^11.7.0",
|
|
60
|
-
"@atlaskit/icon": "^33.
|
|
60
|
+
"@atlaskit/icon": "^33.1.0",
|
|
61
61
|
"@atlaskit/link": "^3.3.0",
|
|
62
|
-
"@atlaskit/primitives": "^18.
|
|
62
|
+
"@atlaskit/primitives": "^18.1.0",
|
|
63
63
|
"@atlaskit/section-message": "^8.12.0",
|
|
64
64
|
"@atlassian/feature-flags-test-utils": "^1.0.0",
|
|
65
65
|
"@atlassian/ssr-tests": "workspace:^",
|
|
66
66
|
"@atlassian/structured-docs-types": "workspace:^",
|
|
67
|
-
"@atlassian/testing-library": "^0.
|
|
67
|
+
"@atlassian/testing-library": "^0.5.0",
|
|
68
68
|
"@testing-library/react": "^16.3.0",
|
|
69
69
|
"react-dom": "^18.2.0",
|
|
70
70
|
"tiny-invariant": "^1.2.0"
|
package/types/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tooltip/types",
|
|
3
|
-
"main": "../dist/cjs/types.js",
|
|
4
|
-
"module": "../dist/esm/types.js",
|
|
5
|
-
"module:es2019": "../dist/es2019/types.js",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.compiled.css"
|
|
8
8
|
],
|
|
9
|
-
"types": "../dist/types/types.d.ts",
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
">=4.5 <5.9": {
|
|
12
12
|
"*": [
|
|
13
|
-
"../dist/types-ts4.5/types.d.ts"
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
14
|
]
|
|
15
15
|
}
|
|
16
16
|
}
|