@spaced-out/ui-design-system 0.1.114 → 0.1.115
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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.115](https://github.com/spaced-out/ui-design-system/compare/v0.1.114...v0.1.115) (2024-07-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* xAxis color borderPrimary in column and line chart ([#246](https://github.com/spaced-out/ui-design-system/issues/246)) ([b21dd11](https://github.com/spaced-out/ui-design-system/commit/b21dd113a9e6408d87f60afef2a680c2ce9072de))
|
|
11
|
+
|
|
5
12
|
### [0.1.114](https://github.com/spaced-out/ui-design-system/compare/v0.1.113...v0.1.114) (2024-07-18)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.getColumnChartOptions = exports.columnPlotWidth = void 0;
|
|
7
|
+
var _color = require("../../styles/variables/_color.js");
|
|
7
8
|
var _charts = require("./charts");
|
|
8
9
|
var _helpers = require("./helpers");
|
|
9
10
|
|
|
@@ -31,7 +32,8 @@ const getColumnChartOptions = () => ({
|
|
|
31
32
|
title: {
|
|
32
33
|
margin: 12,
|
|
33
34
|
style: _helpers.xAxisTitleStyle
|
|
34
|
-
}
|
|
35
|
+
},
|
|
36
|
+
lineColor: _color.colorBorderPrimary
|
|
35
37
|
},
|
|
36
38
|
yAxis: {
|
|
37
39
|
labels: {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
// @flow strict
|
|
2
2
|
|
|
3
|
+
import {colorBorderPrimary} from '../../styles/variables/_color.js';
|
|
3
4
|
import type {ChartOptions} from '../../types/charts';
|
|
4
5
|
|
|
5
6
|
import {commonChartOptions} from './charts';
|
|
@@ -37,6 +38,7 @@ export const getColumnChartOptions = (): ChartOptions => ({
|
|
|
37
38
|
margin: 12,
|
|
38
39
|
style: xAxisTitleStyle,
|
|
39
40
|
},
|
|
41
|
+
lineColor: colorBorderPrimary,
|
|
40
42
|
},
|
|
41
43
|
yAxis: {
|
|
42
44
|
labels: {
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.getLineChartOptions = void 0;
|
|
7
|
+
var _color = require("../../styles/variables/_color.js");
|
|
7
8
|
var _charts = require("./charts");
|
|
8
9
|
var _helpers = require("./helpers");
|
|
9
10
|
var _typography = require("./typography");
|
|
@@ -31,7 +32,8 @@ const getLineChartOptions = () => ({
|
|
|
31
32
|
title: {
|
|
32
33
|
margin: 12,
|
|
33
34
|
style: _helpers.xAxisTitleStyle
|
|
34
|
-
}
|
|
35
|
+
},
|
|
36
|
+
lineColor: _color.colorBorderPrimary
|
|
35
37
|
},
|
|
36
38
|
yAxis: {
|
|
37
39
|
labels: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// @flow strict
|
|
2
|
+
import {colorBorderPrimary} from '../../styles/variables/_color.js';
|
|
2
3
|
import type {ChartOptions} from '../../types/charts';
|
|
3
4
|
|
|
4
5
|
import {commonChartOptions} from './charts';
|
|
@@ -34,6 +35,7 @@ export const getLineChartOptions = (): ChartOptions => ({
|
|
|
34
35
|
margin: 12,
|
|
35
36
|
style: xAxisTitleStyle,
|
|
36
37
|
},
|
|
38
|
+
lineColor: colorBorderPrimary,
|
|
37
39
|
},
|
|
38
40
|
yAxis: {
|
|
39
41
|
labels: {
|