@auth0/quantum-charts 1.0.1 → 1.0.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/esm/line-chart/index.js +1 -0
- package/line-chart/index.js +1 -0
- package/package.json +2 -2
package/esm/line-chart/index.js
CHANGED
|
@@ -111,6 +111,7 @@ export function LineChart(props) {
|
|
|
111
111
|
if (thresholds) {
|
|
112
112
|
menuItems = thresholds.map(function (threshold) { return ({
|
|
113
113
|
title: threshold.threshold_label,
|
|
114
|
+
description: threshold.evaluated_metric,
|
|
114
115
|
onClick: function (event) {
|
|
115
116
|
setThreshold(threshold);
|
|
116
117
|
if (menuProps.onClose) {
|
package/line-chart/index.js
CHANGED
|
@@ -140,6 +140,7 @@ function LineChart(props) {
|
|
|
140
140
|
if (thresholds) {
|
|
141
141
|
menuItems = thresholds.map(function (threshold) { return ({
|
|
142
142
|
title: threshold.threshold_label,
|
|
143
|
+
description: threshold.evaluated_metric,
|
|
143
144
|
onClick: function (event) {
|
|
144
145
|
setThreshold(threshold);
|
|
145
146
|
if (menuProps.onClose) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auth0/quantum-charts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"registry": "https://registry.npmjs.org/"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@auth0/quantum-product": "^2.1.
|
|
19
|
+
"@auth0/quantum-product": "^2.1.5",
|
|
20
20
|
"@formatjs/intl": "^2.5.1",
|
|
21
21
|
"date-fns": "^2.29.3",
|
|
22
22
|
"recharts": "^2.0.7"
|