@sis-cc/dotstatsuite-visions 7.18.1 → 7.18.3

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.
@@ -155,7 +155,7 @@ var ChartConfig = function ChartConfig(_ref) {
155
155
  { keys: ['highlight', 'baseline'], properties: properties },
156
156
  React.createElement(
157
157
  Grid,
158
- { item: true, xs: 12, md: 8, container: true, alignContent: 'flex-start' },
158
+ { item: true, xs: 12, lg: 8, container: true, alignContent: 'flex-start' },
159
159
  React.createElement(
160
160
  Grid,
161
161
  { item: true, xs: 12 },
@@ -204,7 +204,7 @@ var ChartConfig = function ChartConfig(_ref) {
204
204
  ),
205
205
  React.createElement(
206
206
  Grid,
207
- { item: true, xs: 12, md: true, container: true, alignContent: 'flex-start' },
207
+ { item: true, xs: 12, lg: 4, container: true, alignContent: 'flex-start' },
208
208
  React.createElement(
209
209
  Grid,
210
210
  { item: true, xs: 12 },
@@ -269,7 +269,7 @@ var ChartConfig = function ChartConfig(_ref) {
269
269
  pkey: key,
270
270
  mkey: R.init(key),
271
271
  key: key,
272
- sm: 12 / R.length(xKeys),
272
+ lg: 12 / R.length(xKeys),
273
273
  labels: labels,
274
274
  properties: properties
275
275
  });
@@ -322,7 +322,7 @@ var ChartConfig = function ChartConfig(_ref) {
322
322
  pkey: key,
323
323
  mkey: R.init(key),
324
324
  key: key,
325
- sm: 12 / R.length(yKeys),
325
+ lg: 12 / R.length(yKeys),
326
326
  labels: labels,
327
327
  properties: properties
328
328
  });
@@ -19,6 +19,8 @@ var InputProxy = function InputProxy(_ref) {
19
19
  xs = _ref$xs === undefined ? 12 : _ref$xs,
20
20
  _ref$sm = _ref.sm,
21
21
  sm = _ref$sm === undefined ? 12 : _ref$sm,
22
+ _ref$lg = _ref.lg,
23
+ lg = _ref$lg === undefined ? 12 : _ref$lg,
22
24
  _ref$InputProps = _ref.InputProps,
23
25
  InputProps = _ref$InputProps === undefined ? {} : _ref$InputProps;
24
26
 
@@ -29,7 +31,7 @@ var InputProxy = function InputProxy(_ref) {
29
31
 
30
32
  return React.createElement(
31
33
  Grid,
32
- { item: true, xs: xs, sm: sm, style: { minWidth: minWidth } },
34
+ { item: true, xs: xs, sm: sm, lg: lg, style: { minWidth: minWidth } },
33
35
  React.createElement(Input, _extends({}, prop, {
34
36
  value: R.when(R.isNil, R.always(''))(prop.value),
35
37
  type: 'number',
@@ -48,6 +50,7 @@ InputProxy.propTypes = process.env.NODE_ENV !== "production" ? {
48
50
  mkey: PropTypes.string,
49
51
  xs: PropTypes.number,
50
52
  sm: PropTypes.number,
53
+ lg: PropTypes.number,
51
54
  InputProps: PropTypes.object
52
55
  } : {};
53
56
 
@@ -208,7 +208,7 @@ var ChartConfig = function ChartConfig(_ref) {
208
208
  { keys: ['highlight', 'baseline'], properties: properties },
209
209
  _react2.default.createElement(
210
210
  _Grid2.default,
211
- { item: true, xs: 12, md: 8, container: true, alignContent: 'flex-start' },
211
+ { item: true, xs: 12, lg: 8, container: true, alignContent: 'flex-start' },
212
212
  _react2.default.createElement(
213
213
  _Grid2.default,
214
214
  { item: true, xs: 12 },
@@ -257,7 +257,7 @@ var ChartConfig = function ChartConfig(_ref) {
257
257
  ),
258
258
  _react2.default.createElement(
259
259
  _Grid2.default,
260
- { item: true, xs: 12, md: true, container: true, alignContent: 'flex-start' },
260
+ { item: true, xs: 12, lg: 4, container: true, alignContent: 'flex-start' },
261
261
  _react2.default.createElement(
262
262
  _Grid2.default,
263
263
  { item: true, xs: 12 },
@@ -322,7 +322,7 @@ var ChartConfig = function ChartConfig(_ref) {
322
322
  pkey: key,
323
323
  mkey: R.init(key),
324
324
  key: key,
325
- sm: 12 / R.length(xKeys),
325
+ lg: 12 / R.length(xKeys),
326
326
  labels: labels,
327
327
  properties: properties
328
328
  });
@@ -375,7 +375,7 @@ var ChartConfig = function ChartConfig(_ref) {
375
375
  pkey: key,
376
376
  mkey: R.init(key),
377
377
  key: key,
378
- sm: 12 / R.length(yKeys),
378
+ lg: 12 / R.length(yKeys),
379
379
  labels: labels,
380
380
  properties: properties
381
381
  });
@@ -39,6 +39,8 @@ var InputProxy = function InputProxy(_ref) {
39
39
  xs = _ref$xs === undefined ? 12 : _ref$xs,
40
40
  _ref$sm = _ref.sm,
41
41
  sm = _ref$sm === undefined ? 12 : _ref$sm,
42
+ _ref$lg = _ref.lg,
43
+ lg = _ref$lg === undefined ? 12 : _ref$lg,
42
44
  _ref$InputProps = _ref.InputProps,
43
45
  InputProps = _ref$InputProps === undefined ? {} : _ref$InputProps;
44
46
 
@@ -49,7 +51,7 @@ var InputProxy = function InputProxy(_ref) {
49
51
 
50
52
  return _react2.default.createElement(
51
53
  _core.Grid,
52
- { item: true, xs: xs, sm: sm, style: { minWidth: minWidth } },
54
+ { item: true, xs: xs, sm: sm, lg: lg, style: { minWidth: minWidth } },
53
55
  _react2.default.createElement(_Input2.default, _extends({}, prop, {
54
56
  value: R.when(R.isNil, R.always(''))(prop.value),
55
57
  type: 'number',
@@ -68,6 +70,7 @@ InputProxy.propTypes = process.env.NODE_ENV !== "production" ? {
68
70
  mkey: _propTypes2.default.string,
69
71
  xs: _propTypes2.default.number,
70
72
  sm: _propTypes2.default.number,
73
+ lg: _propTypes2.default.number,
71
74
  InputProps: _propTypes2.default.object
72
75
  } : {};
73
76
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sis-cc/dotstatsuite-visions",
3
- "version": "7.18.1",
3
+ "version": "7.18.3",
4
4
  "description": "Library of visual components",
5
5
  "author": "OECD",
6
6
  "homepage": "https://visions-qa.siscc.org/#o",