@cubejs-client/vue3 0.31.15 → 0.31.30
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/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center"><a href="https://cube.dev"><img src="https://i.imgur.com/zYHXm4o.png" alt="Cube.js" width="300px"></a></p>
|
|
2
2
|
|
|
3
|
-
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [
|
|
3
|
+
[Website](https://cube.dev) • [Docs](https://cube.dev/docs) • [Blog](https://cube.dev/blog) • [Slack](https://slack.cube.dev) • [Twitter](https://twitter.com/thecubejs)
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/js/%40cubejs-client%2Fvue)
|
|
6
6
|
[](https://github.com/cube-js/cube.js/actions?query=workflow%3ABuild+branch%3Amaster)
|
|
@@ -10136,9 +10136,11 @@
|
|
|
10136
10136
|
|
|
10137
10137
|
return this.seriesNames(pivotConfig).map(function (_ref18) {
|
|
10138
10138
|
var title = _ref18.title,
|
|
10139
|
+
shortTitle = _ref18.shortTitle,
|
|
10139
10140
|
key = _ref18.key;
|
|
10140
10141
|
return {
|
|
10141
10142
|
title: title,
|
|
10143
|
+
shortTitle: shortTitle,
|
|
10142
10144
|
key: key,
|
|
10143
10145
|
series: _this.chartPivot(pivotConfig).map(function (_ref19) {
|
|
10144
10146
|
var x = _ref19.x,
|
|
@@ -10597,6 +10599,9 @@
|
|
|
10597
10599
|
title: _this4.axisValuesString(pivotConfig.y.find(function (d) {
|
|
10598
10600
|
return d === 'measures';
|
|
10599
10601
|
}) ? dropLast(1, aliasedAxis).concat(measures[ResultSet.measureFromAxis(axisValues)].title) : aliasedAxis, ', '),
|
|
10602
|
+
shortTitle: _this4.axisValuesString(pivotConfig.y.find(function (d) {
|
|
10603
|
+
return d === 'measures';
|
|
10604
|
+
}) ? dropLast(1, aliasedAxis).concat(measures[ResultSet.measureFromAxis(axisValues)].shortTitle) : aliasedAxis, ', '),
|
|
10600
10605
|
key: _this4.axisValuesString(aliasedAxis, ','),
|
|
10601
10606
|
yValues: axisValues
|
|
10602
10607
|
};
|