@synerise/ds-factors 0.16.16 → 0.17.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,18 @@
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
+ # [0.17.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.16.16...@synerise/ds-factors@0.17.0) (2023-03-02)
7
+
8
+
9
+ ### Features
10
+
11
+ * add test for tooltip and fixes ([ad89d98](https://github.com/Synerise/synerise-design/commit/ad89d980591f39f66e66ba04f53c6df2d45cca99))
12
+ * tooltip improvements ([7bd8c7f](https://github.com/Synerise/synerise-design/commit/7bd8c7fb3921932540edce5ee1435e5a810c852f))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [0.16.16](https://github.com/Synerise/synerise-design/compare/@synerise/ds-factors@0.16.15...@synerise/ds-factors@0.16.16) (2023-03-02)
7
19
 
8
20
  **Note:** Version bump only for package @synerise/ds-factors
@@ -106,11 +106,11 @@ var ParameterInput = function ParameterInput(_ref) {
106
106
  popupPlacement: 'top',
107
107
  getPopupContainer: getPopupContainerOverride || getPopupContainer
108
108
  },
109
- renderHoverTooltip: parameter ? function () {
109
+ renderHoverTooltip: parameter != null && parameter.name ? function () {
110
110
  return /*#__PURE__*/React.createElement(InformationCard, {
111
111
  icon: parameterIcon,
112
- subtitle: parameterName,
113
- title: parameterName.replace('_', ' '),
112
+ subtitle: parameter.id.toString(),
113
+ title: parameterName,
114
114
  descriptionConfig: parameter.description ? {
115
115
  value: parameter.description,
116
116
  disabled: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-factors",
3
- "version": "0.16.16",
3
+ "version": "0.17.0",
4
4
  "description": "Factors UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -39,7 +39,7 @@
39
39
  "@synerise/ds-date-range-picker": "^0.19.10",
40
40
  "@synerise/ds-dropdown": "^0.17.53",
41
41
  "@synerise/ds-icon": "^0.53.0",
42
- "@synerise/ds-information-card": "^0.2.6",
42
+ "@synerise/ds-information-card": "^0.3.0",
43
43
  "@synerise/ds-inline-edit": "^0.6.50",
44
44
  "@synerise/ds-input": "^0.18.34",
45
45
  "@synerise/ds-input-number": "^0.6.28",
@@ -56,5 +56,5 @@
56
56
  "@synerise/ds-core": "*",
57
57
  "react": ">=16.9.0 < 17.0.0"
58
58
  },
59
- "gitHead": "5b18fcd6b2f2f64aa2878fe6ba6a98877fa7067f"
59
+ "gitHead": "d6f6c673f854aaaf7c26ddcedcbfa2f465d70d4d"
60
60
  }