@elliemae/ds-slider 2.0.0-alpha.3 → 2.0.0-alpha.7
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/DSSlider.js +2 -2
- package/cjs/components/SliderImp.js +10 -10
- package/cjs/components/Thumb.js +3 -3
- package/cjs/components/TickMarks.js +4 -4
- package/cjs/components/TickMarksValues.js +4 -4
- package/cjs/components/Track.js +4 -4
- package/cjs/components/context.js +1 -1
- package/cjs/components/styled.js +7 -7
- package/cjs/index.js +1 -1
- package/package.json +6 -6
package/cjs/DSSlider.js
CHANGED
|
@@ -15,7 +15,7 @@ var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_definePropert
|
|
|
15
15
|
|
|
16
16
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
17
17
|
|
|
18
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default[
|
|
18
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
19
19
|
|
|
20
20
|
const DSSlider = props => /*#__PURE__*/jsxRuntime.jsx(SliderImp, _objectSpread({}, props));
|
|
21
21
|
|
|
@@ -25,4 +25,4 @@ DSSliderWithSchema.propTypes = propTypes.sliderPropTypes;
|
|
|
25
25
|
|
|
26
26
|
exports.DSSlider = DSSlider;
|
|
27
27
|
exports.DSSliderWithSchema = DSSliderWithSchema;
|
|
28
|
-
exports[
|
|
28
|
+
exports["default"] = DSSlider;
|
|
@@ -93,7 +93,7 @@ const SliderImp = props => {
|
|
|
93
93
|
const selectedRangeValues = getSubArrayFromRange(parsedValuesArray, rangeValues, !!(customTickMarksValues !== null && customTickMarksValues !== void 0 && customTickMarksValues.length));
|
|
94
94
|
setFullSelectedValues(selectedRangeValues);
|
|
95
95
|
}, [parsedValuesArray, rangeValues, customTickMarksValues === null || customTickMarksValues === void 0 ? void 0 : customTickMarksValues.length]);
|
|
96
|
-
const prevWithTwoHandles = usePrevious__default[
|
|
96
|
+
const prevWithTwoHandles = usePrevious__default["default"](withTwoHandles);
|
|
97
97
|
|
|
98
98
|
const resizeHandler = () => {
|
|
99
99
|
var _ref$current;
|
|
@@ -121,14 +121,14 @@ const SliderImp = props => {
|
|
|
121
121
|
const [finalLabelText, finalValueText] = React.useMemo(() => utils.conformedLabel(rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep), [rangeValues, label, labelWithValue, withTwoHandles, customTickMarksValues, parsedStep]);
|
|
122
122
|
|
|
123
123
|
const SliderLabel = /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
124
|
-
children: [/*#__PURE__*/_jsx__default[
|
|
124
|
+
children: [/*#__PURE__*/_jsx__default["default"](styled.LabelText, {}, void 0, finalLabelText), finalLabelText && ' ', /*#__PURE__*/_jsx__default["default"](styled.ValueText, {
|
|
125
125
|
disabled: disabled
|
|
126
126
|
}, void 0, finalValueText)]
|
|
127
127
|
});
|
|
128
128
|
|
|
129
|
-
return /*#__PURE__*/_jsx__default[
|
|
129
|
+
return /*#__PURE__*/_jsx__default["default"](DSTruncatedTooltipText.TooltipTextProvider, {}, void 0, /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
130
130
|
ref: ref,
|
|
131
|
-
children: /*#__PURE__*/_jsx__default[
|
|
131
|
+
children: /*#__PURE__*/_jsx__default["default"](dsGrid.Grid, {
|
|
132
132
|
width: "100%",
|
|
133
133
|
style: {
|
|
134
134
|
maxWidth: '100%'
|
|
@@ -136,7 +136,7 @@ const SliderImp = props => {
|
|
|
136
136
|
containerProps: containerProps,
|
|
137
137
|
"data-testid": "slider",
|
|
138
138
|
rows: ['auto', 'auto']
|
|
139
|
-
}, void 0, /*#__PURE__*/_jsx__default[
|
|
139
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"](context.SliderContext.Provider, {
|
|
140
140
|
value: {
|
|
141
141
|
disabled,
|
|
142
142
|
sliderUUID,
|
|
@@ -154,11 +154,11 @@ const SliderImp = props => {
|
|
|
154
154
|
fullSelectedValues,
|
|
155
155
|
zIndex
|
|
156
156
|
}
|
|
157
|
-
}, void 0, finalLabelText && /*#__PURE__*/_jsx__default[
|
|
157
|
+
}, void 0, finalLabelText && /*#__PURE__*/_jsx__default["default"](styled.LabelWrapper, {
|
|
158
158
|
width: width
|
|
159
|
-
}, void 0, /*#__PURE__*/_jsx__default[
|
|
159
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"](DSTruncatedTooltipText__default["default"], {
|
|
160
160
|
value: SliderLabel
|
|
161
|
-
})), /*#__PURE__*/_jsx__default[
|
|
161
|
+
})), /*#__PURE__*/_jsx__default["default"](styled.StyledRangeWrapper, {}, void 0, /*#__PURE__*/_jsx__default["default"](reactRange.Range, {
|
|
162
162
|
step: parsedStep,
|
|
163
163
|
min: parsedMinValue,
|
|
164
164
|
max: parsedMaxValue,
|
|
@@ -172,7 +172,7 @@ const SliderImp = props => {
|
|
|
172
172
|
renderTrack: ({
|
|
173
173
|
props: trackProps,
|
|
174
174
|
children
|
|
175
|
-
}) => /*#__PURE__*/_jsx__default[
|
|
175
|
+
}) => /*#__PURE__*/_jsx__default["default"](Track, {
|
|
176
176
|
props: trackProps
|
|
177
177
|
}, void 0, children),
|
|
178
178
|
renderThumb: renderArgs => {
|
|
@@ -181,7 +181,7 @@ const SliderImp = props => {
|
|
|
181
181
|
props: thumbProps,
|
|
182
182
|
isDragged
|
|
183
183
|
} = renderArgs;
|
|
184
|
-
return /*#__PURE__*/_jsx__default[
|
|
184
|
+
return /*#__PURE__*/_jsx__default["default"](Thumb, {
|
|
185
185
|
props: thumbProps,
|
|
186
186
|
isDragged: isDragged,
|
|
187
187
|
index: index
|
package/cjs/components/Thumb.js
CHANGED
|
@@ -18,7 +18,7 @@ var _TooltipArrow;
|
|
|
18
18
|
|
|
19
19
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
20
20
|
|
|
21
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default[
|
|
21
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
22
22
|
|
|
23
23
|
const Thumb = ({
|
|
24
24
|
index,
|
|
@@ -53,10 +53,10 @@ const Thumb = ({
|
|
|
53
53
|
index: index,
|
|
54
54
|
onMouseEnter: () => setIsHovered(true),
|
|
55
55
|
onMouseLeave: () => setIsHovered(false),
|
|
56
|
-
children: /*#__PURE__*/_jsx__default[
|
|
56
|
+
children: /*#__PURE__*/_jsx__default["default"](styled.TooltipContainerStyled, {
|
|
57
57
|
isDragged: isDragged,
|
|
58
58
|
isHovered: isHovered
|
|
59
|
-
}, void 0, /*#__PURE__*/_jsx__default[
|
|
59
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"](dsTooltip.TooltipText, {}, void 0, utils.conformedThumbLabel(rangeValues, customTickMarksValues, index, step, minValue)), _TooltipArrow || (_TooltipArrow = /*#__PURE__*/_jsx__default["default"](styled.TooltipArrow, {})))
|
|
60
60
|
}))
|
|
61
61
|
);
|
|
62
62
|
};
|
|
@@ -24,22 +24,22 @@ const TickMarks = () => {
|
|
|
24
24
|
|
|
25
25
|
for (let index = minValue || 0; index <= maxValue; index += step) {
|
|
26
26
|
const isActive = withTwoHandles ? rangeValues[0] <= index && index < rangeValues[1] : rangeValues[0] > index;
|
|
27
|
-
dots.push( /*#__PURE__*/_jsx__default[
|
|
27
|
+
dots.push( /*#__PURE__*/_jsx__default["default"](Dot, {
|
|
28
28
|
"data-testid": "slider-dot",
|
|
29
29
|
isActive: isActive
|
|
30
30
|
}, index));
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
return /*#__PURE__*/_jsx__default[
|
|
33
|
+
return /*#__PURE__*/_jsx__default["default"](DotsContainer, {
|
|
34
34
|
"data-testid": "slider-tick-marks",
|
|
35
35
|
zIndex: zIndex
|
|
36
36
|
}, void 0, dots);
|
|
37
37
|
};
|
|
38
38
|
|
|
39
|
-
const Dot = /*#__PURE__*/styled__default[
|
|
39
|
+
const Dot = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
40
40
|
componentId: "sc-15z2sh4-0"
|
|
41
41
|
})(["&:after{content:'';background:", ";border-radius:", ";display:block;position:relative;width:2px;height:2px;}"], props => props.isActive ? props.theme.colors.brand[300] : props.theme.colors.neutral[400], props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs));
|
|
42
|
-
const DotsContainer = /*#__PURE__*/styled__default[
|
|
42
|
+
const DotsContainer = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
43
43
|
componentId: "sc-15z2sh4-1"
|
|
44
44
|
})(["padding:0 calc(", " * 0.5);align-items:center;display:flex;justify-content:space-between;pointer-events:none;position:absolute;top:0;left:0;right:0;bottom:0;z-index:", ";"], props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => props.zIndex - 1);
|
|
45
45
|
|
|
@@ -21,20 +21,20 @@ const TickMarks = () => {
|
|
|
21
21
|
} = React.useContext(context.SliderContext);
|
|
22
22
|
const TickMarksLabels = React.useMemo(() => parsedValuesArray.map(value => {
|
|
23
23
|
const isSelected = fullSelectedValues.findIndex(selectedVal => selectedVal === value) >= 0;
|
|
24
|
-
return /*#__PURE__*/_jsx__default[
|
|
24
|
+
return /*#__PURE__*/_jsx__default["default"](TickMarkValue, {
|
|
25
25
|
isSelected: isSelected
|
|
26
26
|
}, `${sliderUUID}-${value}`, value);
|
|
27
27
|
}), [parsedValuesArray, sliderUUID, fullSelectedValues]);
|
|
28
|
-
const PureTickMArksValues = React.useMemo(() => _TickMarksContainer || (_TickMarksContainer = /*#__PURE__*/_jsx__default[
|
|
28
|
+
const PureTickMArksValues = React.useMemo(() => _TickMarksContainer || (_TickMarksContainer = /*#__PURE__*/_jsx__default["default"](TickMarksContainer, {
|
|
29
29
|
"data-testid": "slider-tick-marks-values"
|
|
30
30
|
}, void 0, TickMarksLabels)), [TickMarksLabels]);
|
|
31
31
|
return PureTickMArksValues;
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
const TickMarkValue = /*#__PURE__*/styled__default[
|
|
34
|
+
const TickMarkValue = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
35
35
|
componentId: "sc-lq3yel-0"
|
|
36
36
|
})(["margin:", " 0;overflow:visible;transform:translateX(-100%);width:", ";color:", ";"], props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.s), props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => props.isSelected ? props.theme.colors.neutral[800] : props.theme.colors.neutral[500]);
|
|
37
|
-
const TickMarksContainer = /*#__PURE__*/styled__default[
|
|
37
|
+
const TickMarksContainer = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
38
38
|
componentId: "sc-lq3yel-1"
|
|
39
39
|
})(["display:flex;justify-content:space-between;"]);
|
|
40
40
|
|
package/cjs/components/Track.js
CHANGED
|
@@ -21,7 +21,7 @@ var _TickMarks, _TickMarksValues;
|
|
|
21
21
|
|
|
22
22
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
23
23
|
|
|
24
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default[
|
|
24
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
25
25
|
|
|
26
26
|
const Track = ({
|
|
27
27
|
children,
|
|
@@ -44,12 +44,12 @@ const Track = ({
|
|
|
44
44
|
maxValue: maxValue,
|
|
45
45
|
rangeValues: rangeValues,
|
|
46
46
|
withTwoHandles: withTwoHandles,
|
|
47
|
-
children: [children, withTickMarks && !disabled && (_TickMarks || (_TickMarks = /*#__PURE__*/_jsx__default[
|
|
48
|
-
})), withTickMarksValues && (_TickMarksValues || (_TickMarksValues = /*#__PURE__*/_jsx__default[
|
|
47
|
+
children: [children, withTickMarks && !disabled && (_TickMarks || (_TickMarks = /*#__PURE__*/_jsx__default["default"](TickMarks, {})))]
|
|
48
|
+
})), withTickMarksValues && (_TickMarksValues || (_TickMarksValues = /*#__PURE__*/_jsx__default["default"](TickMarksValues, {})))]
|
|
49
49
|
});
|
|
50
50
|
};
|
|
51
51
|
|
|
52
|
-
const TrackStyled = /*#__PURE__*/styled__default[
|
|
52
|
+
const TrackStyled = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
53
53
|
componentId: "sc-13fbuj5-0"
|
|
54
54
|
})(["position:relative;height:", ";width:100%;min-width:", ";border-radius:", ";background:", ";"], props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxl), props => dsSystem.__UNSAFE_SPACE_TO_DIMSUM(props.theme.space.xxs), props => props.disabled ? props.theme.colors.neutral[100] : reactRange.getTrackBackground({
|
|
55
55
|
values: props.rangeValues,
|
|
@@ -8,6 +8,6 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
8
8
|
|
|
9
9
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
10
10
|
|
|
11
|
-
const SliderContext = /*#__PURE__*/React__default[
|
|
11
|
+
const SliderContext = /*#__PURE__*/React__default["default"].createContext();
|
|
12
12
|
|
|
13
13
|
exports.SliderContext = SliderContext;
|
package/cjs/components/styled.js
CHANGED
|
@@ -11,35 +11,35 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
11
11
|
var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
|
|
12
12
|
|
|
13
13
|
/* eslint-disable indent */
|
|
14
|
-
const ThumbStyled = /*#__PURE__*/styled__default[
|
|
14
|
+
const ThumbStyled = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
15
15
|
componentId: "sc-24in0j-0"
|
|
16
16
|
})(["height:20px;width:20px;background-color:", ";border-radius:10px;border:1px solid ", ";:focus{border:1px solid ", ";outline:unset;}:hover{background-color:", ";}"], props => props.disabled ? props.theme.colors.neutral[100] : props.theme.colors.neutral['000'], props => props.disabled ? props.theme.colors.neutral[100] : props.theme.colors.neutral[400], props => props.theme.colors.brand[600], ({
|
|
17
17
|
disabled,
|
|
18
18
|
theme
|
|
19
19
|
}) => disabled ? theme.colors.neutral[100] : theme.colors.brand[200]);
|
|
20
|
-
const TooltipContainerStyled = /*#__PURE__*/styled__default[
|
|
20
|
+
const TooltipContainerStyled = /*#__PURE__*/styled__default["default"](dsTooltip.TooltipContainer).withConfig({
|
|
21
21
|
componentId: "sc-24in0j-1"
|
|
22
22
|
})(["position:relative;display:flex;align-items:center;flex-direction:column;top:-35px;width:max-content;left:50%;transform:translateX(-50%);visibility:", ";"], ({
|
|
23
23
|
isDragged,
|
|
24
24
|
isHovered
|
|
25
25
|
}) => isDragged || isHovered ? 'visible' : 'hidden'); // TODO: didn't work with DSTooltip, see how to improve
|
|
26
26
|
|
|
27
|
-
const TooltipArrow = /*#__PURE__*/styled__default[
|
|
27
|
+
const TooltipArrow = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
28
28
|
componentId: "sc-24in0j-2"
|
|
29
29
|
})(["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]);
|
|
30
|
-
const LabelWrapper = /*#__PURE__*/styled__default[
|
|
30
|
+
const LabelWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
31
31
|
componentId: "sc-24in0j-3"
|
|
32
32
|
})(["margin-bottom:", ";max-width:100%;width:", ";"], props => props.theme.space.xxs, props => `${props.width || 0}px`);
|
|
33
|
-
const LabelText = /*#__PURE__*/styled__default[
|
|
33
|
+
const LabelText = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
34
34
|
componentId: "sc-24in0j-4"
|
|
35
35
|
})(["color:", ";"], props => props.theme.colors.neutral[600]);
|
|
36
|
-
const ValueText = /*#__PURE__*/styled__default[
|
|
36
|
+
const ValueText = /*#__PURE__*/styled__default["default"].span.withConfig({
|
|
37
37
|
componentId: "sc-24in0j-5"
|
|
38
38
|
})(["color:", ";"], ({
|
|
39
39
|
disabled,
|
|
40
40
|
theme
|
|
41
41
|
}) => theme.colors.neutral[disabled ? 500 : 800]);
|
|
42
|
-
const StyledRangeWrapper = /*#__PURE__*/styled__default[
|
|
42
|
+
const StyledRangeWrapper = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
43
43
|
componentId: "sc-24in0j-6"
|
|
44
44
|
})(["min-height:28px;margin:0 10px;"]);
|
|
45
45
|
|
package/cjs/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-slider",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.7",
|
|
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.0.0-alpha.
|
|
76
|
-
"@elliemae/ds-system": "2.0.0-alpha.
|
|
77
|
-
"@elliemae/ds-tooltip": "2.0.0-alpha.
|
|
78
|
-
"@elliemae/ds-truncated-tooltip-text": "2.0.0-alpha.
|
|
79
|
-
"@elliemae/ds-utilities": "2.0.0-alpha.
|
|
75
|
+
"@elliemae/ds-grid": "2.0.0-alpha.7",
|
|
76
|
+
"@elliemae/ds-system": "2.0.0-alpha.7",
|
|
77
|
+
"@elliemae/ds-tooltip": "2.0.0-alpha.7",
|
|
78
|
+
"@elliemae/ds-truncated-tooltip-text": "2.0.0-alpha.7",
|
|
79
|
+
"@elliemae/ds-utilities": "2.0.0-alpha.7",
|
|
80
80
|
"prop-types": "~15.7.2",
|
|
81
81
|
"react-desc": "~4.1.3",
|
|
82
82
|
"react-range": "~1.8.11",
|