@synerise/ds-popover 1.3.1 → 1.4.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
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.4.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popover@1.3.2...@synerise/ds-popover@1.4.0) (2026-02-05)
7
+
8
+ ### Features
9
+
10
+ - **tooltip:** migrate to popover ([53ecd29](https://github.com/Synerise/synerise-design/commit/53ecd293fa31bdcfd921c6c5fd91db9c2c643eda))
11
+
12
+ ## [1.3.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popover@1.3.1...@synerise/ds-popover@1.3.2) (2026-01-29)
13
+
14
+ **Note:** Version bump only for package @synerise/ds-popover
15
+
6
16
  ## [1.3.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-popover@1.3.0...@synerise/ds-popover@1.3.1) (2026-01-21)
7
17
 
8
18
  ### Bug Fixes
@@ -45,6 +45,7 @@ export type PopoverOptions = {
45
45
  placement: Placement;
46
46
  }) => Partial<UseTransitionStylesProps>;
47
47
  };
48
+ export type LegacyTooltipPlacement = LegacyPlacement;
48
49
  type OpenChangeFn = (open: boolean, event?: Event, reason?: OpenChangeReason) => void;
49
50
  export type UsePopoverReturn = Omit<UseFloatingReturn, 'open'> & UseInteractionsReturn & {
50
51
  open: boolean;
@@ -31,7 +31,6 @@ export var PopoverTrigger = /*#__PURE__*/forwardRef(function (_ref, propRef) {
31
31
  "aria-hidden": "true",
32
32
  hidden: true,
33
33
  ref: function ref(node) {
34
- // TODO - skip any TriggerAnchors .....
35
34
  context.refs.setReference((node == null ? void 0 : node.nextElementSibling) || null);
36
35
  }
37
36
  }), /*#__PURE__*/cloneElement(children, _extends({}, referenceProps)));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-popover",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "description": "Popover UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -16,16 +16,16 @@
16
16
  "access": "public"
17
17
  },
18
18
  "scripts": {
19
- "build": "npm run build:js && npm run build:css && npm run defs",
19
+ "build": "pnpm run build:js && pnpm run build:css && pnpm run defs",
20
20
  "build:css": "node ../../../scripts/style/less.js",
21
21
  "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
- "build:watch": "npm run build:js -- --watch",
22
+ "build:watch": "pnpm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
- "prepublish": "npm run build",
24
+ "prepublish": "pnpm run build",
25
25
  "types": "tsc --noEmit",
26
- "pack:ci": "npm pack --pack-destination ../../storybook/storybook-static/static",
26
+ "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
27
27
  "test": "jest",
28
- "test:watch": "npm run test -- --watchAll",
28
+ "test:watch": "pnpm run test -- --watchAll",
29
29
  "upgrade:ds": "ncu -f \"@synerise/ds-*\" -u"
30
30
  },
31
31
  "sideEffects": [
@@ -45,5 +45,5 @@
45
45
  "react": ">=16.9.0 <= 18.3.1",
46
46
  "styled-components": "^5.3.3"
47
47
  },
48
- "gitHead": "1ab50150aadeb21d9464b1558d0d1ea8808b85e5"
48
+ "gitHead": "ac8decd9736940735bf05198b24b3eeeb5900b18"
49
49
  }