@elliemae/ds-slider 2.4.2-rc.1 → 2.4.2-rc.13
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/cjs/components/SliderImp.js +14 -21
- package/cjs/components/Thumb.js +2 -3
- package/cjs/components/TickMarksValues.js +1 -1
- package/cjs/components/styled.js +1 -1
- package/cjs/components/utils.js +5 -7
- package/esm/components/SliderImp.js +14 -21
- package/esm/components/Thumb.js +0 -1
- package/esm/components/TickMarksValues.js +1 -1
- package/esm/components/styled.js +1 -1
- package/esm/components/utils.js +5 -7
- package/package.json +6 -6
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
4
|
-
require('core-js/modules/web.dom-collections.iterator.js');
|
|
5
4
|
var React = require('react');
|
|
6
5
|
var uuid = require('uuid');
|
|
7
6
|
var reactRange = require('react-range');
|
|
@@ -39,8 +38,6 @@ const getSubArrayFromRange = function (arr, _ref) {
|
|
|
39
38
|
};
|
|
40
39
|
|
|
41
40
|
const SliderImp = props => {
|
|
42
|
-
var _ref$current3;
|
|
43
|
-
|
|
44
41
|
const {
|
|
45
42
|
containerProps,
|
|
46
43
|
disabled,
|
|
@@ -61,22 +58,22 @@ const SliderImp = props => {
|
|
|
61
58
|
const sliderUUID = React.useMemo(() => uuid.v4(), []);
|
|
62
59
|
const parsedMinValue = React.useMemo(() => {
|
|
63
60
|
// ensure this works correctly with customTickMarksValues array
|
|
64
|
-
if (customTickMarksValues
|
|
61
|
+
if (customTickMarksValues?.length) return 0;
|
|
65
62
|
return minValue;
|
|
66
|
-
}, [customTickMarksValues
|
|
63
|
+
}, [customTickMarksValues?.length, minValue]);
|
|
67
64
|
const parsedMaxValue = React.useMemo(() => {
|
|
68
65
|
// ensure this works correctly with customTickMarksValues array
|
|
69
|
-
if (customTickMarksValues
|
|
66
|
+
if (customTickMarksValues?.length) return customTickMarksValues?.length - 1;
|
|
70
67
|
return maxValue;
|
|
71
|
-
}, [customTickMarksValues
|
|
68
|
+
}, [customTickMarksValues?.length, maxValue]);
|
|
72
69
|
const parsedStep = React.useMemo(() => {
|
|
73
70
|
// ensure this works correctly with customTickMarksValues array
|
|
74
|
-
if (customTickMarksValues
|
|
71
|
+
if (customTickMarksValues?.length) return 1;
|
|
75
72
|
return step;
|
|
76
|
-
}, [customTickMarksValues
|
|
73
|
+
}, [customTickMarksValues?.length, step]);
|
|
77
74
|
const parsedValuesArray = React.useMemo(() => {
|
|
78
75
|
// ensure this works correctly with customTickMarksValues array
|
|
79
|
-
if (customTickMarksValues
|
|
76
|
+
if (customTickMarksValues?.length) return customTickMarksValues;
|
|
80
77
|
const newLength = Math.ceil(maxValue / step);
|
|
81
78
|
const valuesArray = [];
|
|
82
79
|
|
|
@@ -85,22 +82,20 @@ const SliderImp = props => {
|
|
|
85
82
|
}
|
|
86
83
|
|
|
87
84
|
return valuesArray;
|
|
88
|
-
}, [customTickMarksValues
|
|
85
|
+
}, [customTickMarksValues?.length, minValue, maxValue, step]);
|
|
89
86
|
const [rangeValues, setRangeValues] = React.useState(withTwoHandles ? [parsedMinValue, parsedMaxValue] : [parsedMinValue]); // track the full slice of values selected instead of only the limits
|
|
90
87
|
// this is important to handle the selected range labels colors
|
|
91
88
|
|
|
92
89
|
const [fullSelectedValues, setFullSelectedValues] = React.useState([]);
|
|
93
90
|
React.useEffect(() => {
|
|
94
|
-
const selectedRangeValues = getSubArrayFromRange(parsedValuesArray, rangeValues, !!
|
|
91
|
+
const selectedRangeValues = getSubArrayFromRange(parsedValuesArray, rangeValues, !!customTickMarksValues?.length);
|
|
95
92
|
setFullSelectedValues(selectedRangeValues);
|
|
96
|
-
}, [parsedValuesArray, rangeValues, customTickMarksValues
|
|
93
|
+
}, [parsedValuesArray, rangeValues, customTickMarksValues?.length]);
|
|
97
94
|
const prevWithTwoHandles = dsUtilities.usePrevious(withTwoHandles);
|
|
98
95
|
|
|
99
96
|
const resizeHandler = () => {
|
|
100
|
-
var _ref$current;
|
|
101
|
-
|
|
102
97
|
setWidth(0);
|
|
103
|
-
setWidth(
|
|
98
|
+
setWidth(ref.current?.clientWidth);
|
|
104
99
|
};
|
|
105
100
|
|
|
106
101
|
React.useEffect(() => {
|
|
@@ -115,10 +110,8 @@ const SliderImp = props => {
|
|
|
115
110
|
}
|
|
116
111
|
}, [withTwoHandles]);
|
|
117
112
|
React.useEffect(() => {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
setWidth((_ref$current2 = ref.current) === null || _ref$current2 === void 0 ? void 0 : _ref$current2.clientWidth);
|
|
121
|
-
}, [(_ref$current3 = ref.current) === null || _ref$current3 === void 0 ? void 0 : _ref$current3.clientWidth]);
|
|
113
|
+
setWidth(ref.current?.clientWidth);
|
|
114
|
+
}, [ref.current?.clientWidth]);
|
|
122
115
|
const [finalLabelText, finalValueText] = React.useMemo(() => utils.conformedLabel(rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep), [rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep]);
|
|
123
116
|
|
|
124
117
|
const SliderLabel = /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
@@ -189,7 +182,7 @@ const SliderImp = props => {
|
|
|
189
182
|
props: thumbProps,
|
|
190
183
|
isDragged: isDragged,
|
|
191
184
|
index: index
|
|
192
|
-
},
|
|
185
|
+
}, `${sliderUUID}-${thumbProps.key}`);
|
|
193
186
|
},
|
|
194
187
|
allowOverlap: false
|
|
195
188
|
}))))
|
package/cjs/components/Thumb.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
4
|
-
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
5
|
-
require('core-js/modules/web.dom-collections.iterator.js');
|
|
6
3
|
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
7
4
|
require('core-js/modules/esnext.iterator.constructor.js');
|
|
8
5
|
require('core-js/modules/esnext.iterator.filter.js');
|
|
9
6
|
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
10
7
|
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
11
10
|
var React = require('react');
|
|
12
11
|
var dsTooltip = require('@elliemae/ds-tooltip');
|
|
13
12
|
var context = require('./context.js');
|
|
@@ -25,7 +25,7 @@ const TickMarks = () => {
|
|
|
25
25
|
const isSelected = fullSelectedValues.findIndex(selectedVal => selectedVal === value) >= 0;
|
|
26
26
|
return /*#__PURE__*/_jsx__default["default"](TickMarkValue, {
|
|
27
27
|
isSelected: isSelected
|
|
28
|
-
},
|
|
28
|
+
}, `${sliderUUID}-${value}`, value);
|
|
29
29
|
}), [parsedValuesArray, sliderUUID, fullSelectedValues]);
|
|
30
30
|
const PureTickMArksValues = React.useMemo(() => _TickMarksContainer || (_TickMarksContainer = /*#__PURE__*/_jsx__default["default"](TickMarksContainer, {
|
|
31
31
|
"data-testid": "slider-tick-marks-values"
|
package/cjs/components/styled.js
CHANGED
|
@@ -35,7 +35,7 @@ const TooltipArrow = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
|
35
35
|
})(["position:absolute;width:0;height:0;top:20px;border-left:calc(", " * 2.5) solid transparent;border-right:calc(", " * 2.5) solid transparent;border-top:calc(", " * 2.5) solid ", ";"], props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => props.theme.colors.neutral[0]);
|
|
36
36
|
const LabelWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
37
37
|
componentId: "sc-24in0j-3"
|
|
38
|
-
})(["margin-bottom:", ";max-width:100%;width:", ";"], props => props.theme.space.xxs, props =>
|
|
38
|
+
})(["margin-bottom:", ";max-width:100%;width:", ";"], props => props.theme.space.xxs, props => `${props.width || 0}px`);
|
|
39
39
|
const LabelText = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
40
40
|
componentId: "sc-24in0j-4"
|
|
41
41
|
})(["color:", ";"], props => props.theme.colors.neutral[600]);
|
package/cjs/components/utils.js
CHANGED
|
@@ -18,11 +18,9 @@ const conformedLabel = function (rangeValues) {
|
|
|
18
18
|
if (!dsUtilities.isEmpty(customTickMarksValues) && labelWithValue && label) {
|
|
19
19
|
const firstValue = customTickMarksValues[(rangeValues[0] - minValue) / step];
|
|
20
20
|
const secondValue = customTickMarksValues[(rangeValues[1] - minValue) / step];
|
|
21
|
-
value =
|
|
21
|
+
value = `${firstValue || rangeValues[0].toFixed(1)} ${withTwoHandles ? `, ${secondValue || rangeValues[1].toFixed(1)}` : ''} `;
|
|
22
22
|
} else if (labelWithValue && label) {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
value = "".concat(rangeValues[0].toFixed(1), " ").concat(withTwoHandles ? ", ".concat((_rangeValues$ = rangeValues[1]) === null || _rangeValues$ === void 0 ? void 0 : _rangeValues$.toFixed(1)) : '', " ");
|
|
23
|
+
value = `${rangeValues[0].toFixed(1)} ${withTwoHandles ? `, ${rangeValues[1]?.toFixed(1)}` : ''} `;
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
value = value.trim();
|
|
@@ -33,13 +31,13 @@ const conformedThumbLabel = function (rangeValues) {
|
|
|
33
31
|
let index = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
34
32
|
let step = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1;
|
|
35
33
|
let minValue = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
|
|
36
|
-
let msg =
|
|
34
|
+
let msg = `Value: `;
|
|
37
35
|
|
|
38
36
|
if (!dsUtilities.isEmpty(customTickMarksValues)) {
|
|
39
37
|
const foundValue = customTickMarksValues[(rangeValues[index] - minValue) / step];
|
|
40
|
-
msg +=
|
|
38
|
+
msg += `${foundValue || rangeValues[index].toFixed(1)}`;
|
|
41
39
|
} else {
|
|
42
|
-
msg +=
|
|
40
|
+
msg += `${rangeValues[index].toFixed(1)}`;
|
|
43
41
|
}
|
|
44
42
|
|
|
45
43
|
return msg;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
-
import 'core-js/modules/web.dom-collections.iterator.js';
|
|
3
2
|
import { useRef, useState, useMemo, useEffect } from 'react';
|
|
4
3
|
import { v4 } from 'uuid';
|
|
5
4
|
import { Range } from 'react-range';
|
|
@@ -32,8 +31,6 @@ const getSubArrayFromRange = function (arr, _ref) {
|
|
|
32
31
|
};
|
|
33
32
|
|
|
34
33
|
const SliderImp = props => {
|
|
35
|
-
var _ref$current3;
|
|
36
|
-
|
|
37
34
|
const {
|
|
38
35
|
containerProps,
|
|
39
36
|
disabled,
|
|
@@ -54,22 +51,22 @@ const SliderImp = props => {
|
|
|
54
51
|
const sliderUUID = useMemo(() => v4(), []);
|
|
55
52
|
const parsedMinValue = useMemo(() => {
|
|
56
53
|
// ensure this works correctly with customTickMarksValues array
|
|
57
|
-
if (customTickMarksValues
|
|
54
|
+
if (customTickMarksValues?.length) return 0;
|
|
58
55
|
return minValue;
|
|
59
|
-
}, [customTickMarksValues
|
|
56
|
+
}, [customTickMarksValues?.length, minValue]);
|
|
60
57
|
const parsedMaxValue = useMemo(() => {
|
|
61
58
|
// ensure this works correctly with customTickMarksValues array
|
|
62
|
-
if (customTickMarksValues
|
|
59
|
+
if (customTickMarksValues?.length) return customTickMarksValues?.length - 1;
|
|
63
60
|
return maxValue;
|
|
64
|
-
}, [customTickMarksValues
|
|
61
|
+
}, [customTickMarksValues?.length, maxValue]);
|
|
65
62
|
const parsedStep = useMemo(() => {
|
|
66
63
|
// ensure this works correctly with customTickMarksValues array
|
|
67
|
-
if (customTickMarksValues
|
|
64
|
+
if (customTickMarksValues?.length) return 1;
|
|
68
65
|
return step;
|
|
69
|
-
}, [customTickMarksValues
|
|
66
|
+
}, [customTickMarksValues?.length, step]);
|
|
70
67
|
const parsedValuesArray = useMemo(() => {
|
|
71
68
|
// ensure this works correctly with customTickMarksValues array
|
|
72
|
-
if (customTickMarksValues
|
|
69
|
+
if (customTickMarksValues?.length) return customTickMarksValues;
|
|
73
70
|
const newLength = Math.ceil(maxValue / step);
|
|
74
71
|
const valuesArray = [];
|
|
75
72
|
|
|
@@ -78,22 +75,20 @@ const SliderImp = props => {
|
|
|
78
75
|
}
|
|
79
76
|
|
|
80
77
|
return valuesArray;
|
|
81
|
-
}, [customTickMarksValues
|
|
78
|
+
}, [customTickMarksValues?.length, minValue, maxValue, step]);
|
|
82
79
|
const [rangeValues, setRangeValues] = useState(withTwoHandles ? [parsedMinValue, parsedMaxValue] : [parsedMinValue]); // track the full slice of values selected instead of only the limits
|
|
83
80
|
// this is important to handle the selected range labels colors
|
|
84
81
|
|
|
85
82
|
const [fullSelectedValues, setFullSelectedValues] = useState([]);
|
|
86
83
|
useEffect(() => {
|
|
87
|
-
const selectedRangeValues = getSubArrayFromRange(parsedValuesArray, rangeValues, !!
|
|
84
|
+
const selectedRangeValues = getSubArrayFromRange(parsedValuesArray, rangeValues, !!customTickMarksValues?.length);
|
|
88
85
|
setFullSelectedValues(selectedRangeValues);
|
|
89
|
-
}, [parsedValuesArray, rangeValues, customTickMarksValues
|
|
86
|
+
}, [parsedValuesArray, rangeValues, customTickMarksValues?.length]);
|
|
90
87
|
const prevWithTwoHandles = usePrevious(withTwoHandles);
|
|
91
88
|
|
|
92
89
|
const resizeHandler = () => {
|
|
93
|
-
var _ref$current;
|
|
94
|
-
|
|
95
90
|
setWidth(0);
|
|
96
|
-
setWidth(
|
|
91
|
+
setWidth(ref.current?.clientWidth);
|
|
97
92
|
};
|
|
98
93
|
|
|
99
94
|
useEffect(() => {
|
|
@@ -108,10 +103,8 @@ const SliderImp = props => {
|
|
|
108
103
|
}
|
|
109
104
|
}, [withTwoHandles]);
|
|
110
105
|
useEffect(() => {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
setWidth((_ref$current2 = ref.current) === null || _ref$current2 === void 0 ? void 0 : _ref$current2.clientWidth);
|
|
114
|
-
}, [(_ref$current3 = ref.current) === null || _ref$current3 === void 0 ? void 0 : _ref$current3.clientWidth]);
|
|
106
|
+
setWidth(ref.current?.clientWidth);
|
|
107
|
+
}, [ref.current?.clientWidth]);
|
|
115
108
|
const [finalLabelText, finalValueText] = useMemo(() => conformedLabel(rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep), [rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep]);
|
|
116
109
|
|
|
117
110
|
const SliderLabel = /*#__PURE__*/jsxs(Fragment, {
|
|
@@ -182,7 +175,7 @@ const SliderImp = props => {
|
|
|
182
175
|
props: thumbProps,
|
|
183
176
|
isDragged: isDragged,
|
|
184
177
|
index: index
|
|
185
|
-
},
|
|
178
|
+
}, `${sliderUUID}-${thumbProps.key}`);
|
|
186
179
|
},
|
|
187
180
|
allowOverlap: false
|
|
188
181
|
}))))
|
package/esm/components/Thumb.js
CHANGED
|
@@ -5,7 +5,6 @@ import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
|
5
5
|
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
6
|
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
7
|
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
-
import 'core-js/modules/web.dom-collections.iterator.js';
|
|
9
8
|
import { useState, useContext } from 'react';
|
|
10
9
|
import { TooltipText } from '@elliemae/ds-tooltip';
|
|
11
10
|
import { SliderContext } from './context.js';
|
|
@@ -18,7 +18,7 @@ const TickMarks = () => {
|
|
|
18
18
|
const isSelected = fullSelectedValues.findIndex(selectedVal => selectedVal === value) >= 0;
|
|
19
19
|
return /*#__PURE__*/_jsx(TickMarkValue, {
|
|
20
20
|
isSelected: isSelected
|
|
21
|
-
},
|
|
21
|
+
}, `${sliderUUID}-${value}`, value);
|
|
22
22
|
}), [parsedValuesArray, sliderUUID, fullSelectedValues]);
|
|
23
23
|
const PureTickMArksValues = useMemo(() => _TickMarksContainer || (_TickMarksContainer = /*#__PURE__*/_jsx(TickMarksContainer, {
|
|
24
24
|
"data-testid": "slider-tick-marks-values"
|
package/esm/components/styled.js
CHANGED
|
@@ -27,7 +27,7 @@ const TooltipArrow = /*#__PURE__*/styled.div.withConfig({
|
|
|
27
27
|
})(["position:absolute;width:0;height:0;top:20px;border-left:calc(", " * 2.5) solid transparent;border-right:calc(", " * 2.5) solid transparent;border-top:calc(", " * 2.5) solid ", ";"], props => __UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => __UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => __UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => props.theme.colors.neutral[0]);
|
|
28
28
|
const LabelWrapper = /*#__PURE__*/styled.div.withConfig({
|
|
29
29
|
componentId: "sc-24in0j-3"
|
|
30
|
-
})(["margin-bottom:", ";max-width:100%;width:", ";"], props => props.theme.space.xxs, props =>
|
|
30
|
+
})(["margin-bottom:", ";max-width:100%;width:", ";"], props => props.theme.space.xxs, props => `${props.width || 0}px`);
|
|
31
31
|
const LabelText = /*#__PURE__*/styled.span.withConfig({
|
|
32
32
|
componentId: "sc-24in0j-4"
|
|
33
33
|
})(["color:", ";"], props => props.theme.colors.neutral[600]);
|
package/esm/components/utils.js
CHANGED
|
@@ -14,11 +14,9 @@ const conformedLabel = function (rangeValues) {
|
|
|
14
14
|
if (!isEmpty(customTickMarksValues) && labelWithValue && label) {
|
|
15
15
|
const firstValue = customTickMarksValues[(rangeValues[0] - minValue) / step];
|
|
16
16
|
const secondValue = customTickMarksValues[(rangeValues[1] - minValue) / step];
|
|
17
|
-
value =
|
|
17
|
+
value = `${firstValue || rangeValues[0].toFixed(1)} ${withTwoHandles ? `, ${secondValue || rangeValues[1].toFixed(1)}` : ''} `;
|
|
18
18
|
} else if (labelWithValue && label) {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
value = "".concat(rangeValues[0].toFixed(1), " ").concat(withTwoHandles ? ", ".concat((_rangeValues$ = rangeValues[1]) === null || _rangeValues$ === void 0 ? void 0 : _rangeValues$.toFixed(1)) : '', " ");
|
|
19
|
+
value = `${rangeValues[0].toFixed(1)} ${withTwoHandles ? `, ${rangeValues[1]?.toFixed(1)}` : ''} `;
|
|
22
20
|
}
|
|
23
21
|
|
|
24
22
|
value = value.trim();
|
|
@@ -29,13 +27,13 @@ const conformedThumbLabel = function (rangeValues) {
|
|
|
29
27
|
let index = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
30
28
|
let step = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1;
|
|
31
29
|
let minValue = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
|
|
32
|
-
let msg =
|
|
30
|
+
let msg = `Value: `;
|
|
33
31
|
|
|
34
32
|
if (!isEmpty(customTickMarksValues)) {
|
|
35
33
|
const foundValue = customTickMarksValues[(rangeValues[index] - minValue) / step];
|
|
36
|
-
msg +=
|
|
34
|
+
msg += `${foundValue || rangeValues[index].toFixed(1)}`;
|
|
37
35
|
} else {
|
|
38
|
-
msg +=
|
|
36
|
+
msg += `${rangeValues[index].toFixed(1)}`;
|
|
39
37
|
}
|
|
40
38
|
|
|
41
39
|
return msg;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-slider",
|
|
3
|
-
"version": "2.4.2-rc.
|
|
3
|
+
"version": "2.4.2-rc.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Slider",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"build": "node ../../scripts/build/build.js"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@elliemae/ds-grid": "2.4.2-rc.
|
|
76
|
-
"@elliemae/ds-system": "2.4.2-rc.
|
|
77
|
-
"@elliemae/ds-tooltip": "2.4.2-rc.
|
|
78
|
-
"@elliemae/ds-truncated-tooltip-text": "2.4.2-rc.
|
|
79
|
-
"@elliemae/ds-utilities": "2.4.2-rc.
|
|
75
|
+
"@elliemae/ds-grid": "2.4.2-rc.13",
|
|
76
|
+
"@elliemae/ds-system": "2.4.2-rc.13",
|
|
77
|
+
"@elliemae/ds-tooltip": "2.4.2-rc.13",
|
|
78
|
+
"@elliemae/ds-truncated-tooltip-text": "2.4.2-rc.13",
|
|
79
|
+
"@elliemae/ds-utilities": "2.4.2-rc.13",
|
|
80
80
|
"prop-types": "~15.7.2",
|
|
81
81
|
"react-desc": "~4.1.3",
|
|
82
82
|
"react-range": "~1.8.11",
|