@atlaskit/tooltip 18.8.0 → 18.8.2

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/tooltip
2
2
 
3
+ ## 18.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 18.8.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#148281](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/148281)
14
+ [`3c4de48168ffe`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c4de48168ffe) -
15
+ Update the import path of `useId*` from `@atlaskit/ds-lib`
16
+ - Updated dependencies
17
+
3
18
  ## 18.8.0
4
19
 
5
20
  ### Minor Changes
@@ -4,11 +4,11 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = useUniqueId;
7
- var _reactUid = require("@atlaskit/ds-lib/react-uid");
7
+ var _useId = require("@atlaskit/ds-lib/use-id");
8
8
  /**
9
9
  * Generates unique ID.
10
10
  */
11
11
  function useUniqueId(prefix, shouldRenderId) {
12
- var seed = (0, _reactUid.useIdSeed)();
12
+ var seed = (0, _useId.useIdSeed)();
13
13
  return shouldRenderId ? "".concat(seed(prefix)) : undefined;
14
14
  }
@@ -33,7 +33,7 @@ var tooltipZIndex = _constants.layers.tooltip();
33
33
  var analyticsAttributes = {
34
34
  componentName: 'tooltip',
35
35
  packageName: "@atlaskit/tooltip",
36
- packageVersion: "18.8.0"
36
+ packageVersion: "18.8.2"
37
37
  };
38
38
 
39
39
  // Inverts motion direction
@@ -1,4 +1,4 @@
1
- import { useIdSeed } from '@atlaskit/ds-lib/react-uid';
1
+ import { useIdSeed } from '@atlaskit/ds-lib/use-id';
2
2
 
3
3
  /**
4
4
  * Generates unique ID.
@@ -19,7 +19,7 @@ const tooltipZIndex = layers.tooltip();
19
19
  const analyticsAttributes = {
20
20
  componentName: 'tooltip',
21
21
  packageName: "@atlaskit/tooltip",
22
- packageVersion: "18.8.0"
22
+ packageVersion: "18.8.2"
23
23
  };
24
24
 
25
25
  // Inverts motion direction
@@ -1,4 +1,4 @@
1
- import { useIdSeed } from '@atlaskit/ds-lib/react-uid';
1
+ import { useIdSeed } from '@atlaskit/ds-lib/use-id';
2
2
 
3
3
  /**
4
4
  * Generates unique ID.
@@ -23,7 +23,7 @@ var tooltipZIndex = layers.tooltip();
23
23
  var analyticsAttributes = {
24
24
  componentName: 'tooltip',
25
25
  packageName: "@atlaskit/tooltip",
26
- packageVersion: "18.8.0"
26
+ packageVersion: "18.8.2"
27
27
  };
28
28
 
29
29
  // Inverts motion direction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tooltip",
3
- "version": "18.8.0",
3
+ "version": "18.8.2",
4
4
  "description": "A tooltip is a floating, non-actionable label used to explain a user interface element or feature.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@atlaskit/analytics-next": "^10.1.0",
43
- "@atlaskit/ds-lib": "^2.6.0",
43
+ "@atlaskit/ds-lib": "^3.0.0",
44
44
  "@atlaskit/layering": "^0.5.0",
45
45
  "@atlaskit/motion": "^1.9.0",
46
46
  "@atlaskit/popper": "^6.3.0",