@mezzanine-ui/core 0.7.0 → 0.7.1
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/message/_message-styles.scss +4 -3
- package/package.json +1 -1
- package/slider/index.js +1 -1
- package/slider/slider.d.ts +3 -0
- package/slider/slider.js +37 -3
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
|
|
8
8
|
$height: 40px !default;
|
|
9
9
|
$padding-left: 12px !default;
|
|
10
|
-
$padding-right:
|
|
10
|
+
$padding-right: 12px !default;
|
|
11
|
+
$content-padding: 12px !default;
|
|
11
12
|
$icon-size: 24px !default;
|
|
12
|
-
$icon-gap: 12px !default;
|
|
13
13
|
|
|
14
14
|
.#{$prefix} {
|
|
15
15
|
display: flex;
|
|
@@ -28,12 +28,13 @@ $icon-gap: 12px !default;
|
|
|
28
28
|
&__icon {
|
|
29
29
|
color: var(--#{$prefix}-color);
|
|
30
30
|
font-size: typography.px-to-rem($icon-size);
|
|
31
|
-
margin-right: $icon-gap;
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
&__content {
|
|
35
34
|
@include typography.variant(body1);
|
|
36
35
|
@include typography.overflow-ellipsis();
|
|
36
|
+
|
|
37
|
+
padding: 0 $content-padding;
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
@each $severity in $severities {
|
package/package.json
CHANGED
package/slider/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { findClosetValueIndex, getPercentage, getSliderRect, getValueFromClientX, isRangeSlider, roundToStep, sliderClasses, sliderHandlerPrefix, sliderPrefix, sortSliderValue, toSliderCssVars } from './slider.js';
|
|
1
|
+
export { findClosetValueIndex, fixRangeSliderValue, fixSingleSliderValue, getPercentage, getPrecision, getSliderRect, getValueFromClientX, isRangeSlider, roundToStep, sliderClasses, sliderHandlerPrefix, sliderPrefix, sortSliderValue, toSliderCssVars } from './slider.js';
|
package/slider/slider.d.ts
CHANGED
|
@@ -53,5 +53,8 @@ export declare function sortSliderValue(value: RangeSliderValue): RangeSliderVal
|
|
|
53
53
|
export declare function getSliderRect(element: HTMLDivElement): SliderRect;
|
|
54
54
|
export declare function getValueFromClientX(clientX: number, trackDims: SliderRect, min: number, max: number): number;
|
|
55
55
|
export declare function getPercentage(value: number, min: number, max: number): number;
|
|
56
|
+
export declare function getPrecision(step: number): number;
|
|
57
|
+
export declare function fixSingleSliderValue(value: SingleSliderValue, min: number, max: number): SingleSliderValue;
|
|
58
|
+
export declare function fixRangeSliderValue(value: RangeSliderValue, min: number, max: number): RangeSliderValue;
|
|
56
59
|
export declare function roundToStep(value: number, step: number, min: number, max: number): number;
|
|
57
60
|
export declare function findClosetValueIndex(value: SliderValue, newValue: number): number;
|
package/slider/slider.js
CHANGED
|
@@ -67,8 +67,42 @@ function getValueFromClientX(clientX, trackDims, min, max) {
|
|
|
67
67
|
return value + min;
|
|
68
68
|
}
|
|
69
69
|
function getPercentage(value, min, max) {
|
|
70
|
+
if (min > max)
|
|
71
|
+
return 0;
|
|
70
72
|
return Math.max(0, Math.min(100, (value / Math.abs(max - min)) * 100));
|
|
71
73
|
}
|
|
74
|
+
function getPrecision(step) {
|
|
75
|
+
const stepString = step.toString();
|
|
76
|
+
let precision = 0;
|
|
77
|
+
if (stepString.indexOf('.') >= 0) {
|
|
78
|
+
precision = stepString.length - stepString.indexOf('.') - 1;
|
|
79
|
+
}
|
|
80
|
+
return precision;
|
|
81
|
+
}
|
|
82
|
+
function fixSingleSliderValue(value, min, max) {
|
|
83
|
+
if (value < min) {
|
|
84
|
+
return min;
|
|
85
|
+
}
|
|
86
|
+
if (value > max) {
|
|
87
|
+
return max;
|
|
88
|
+
}
|
|
89
|
+
return value;
|
|
90
|
+
}
|
|
91
|
+
function fixRangeSliderValue(value, min, max) {
|
|
92
|
+
if (value[0] > max && value[1] > max) {
|
|
93
|
+
return [max, max];
|
|
94
|
+
}
|
|
95
|
+
if (value[0] < min && value[1] < min) {
|
|
96
|
+
return [min, min];
|
|
97
|
+
}
|
|
98
|
+
if (value[0] < min) {
|
|
99
|
+
return [min, value[1]];
|
|
100
|
+
}
|
|
101
|
+
if (value[1] > max) {
|
|
102
|
+
return [value[0], max];
|
|
103
|
+
}
|
|
104
|
+
return value;
|
|
105
|
+
}
|
|
72
106
|
function roundToStep(value, step, min, max) {
|
|
73
107
|
let left = min;
|
|
74
108
|
let right = max;
|
|
@@ -77,9 +111,9 @@ function roundToStep(value, step, min, max) {
|
|
|
77
111
|
}
|
|
78
112
|
right = Math.min(left + step, max);
|
|
79
113
|
if (value - left < right - value) {
|
|
80
|
-
return left;
|
|
114
|
+
return parseFloat(left.toFixed(getPrecision(step)));
|
|
81
115
|
}
|
|
82
|
-
return right;
|
|
116
|
+
return parseFloat(right.toFixed(getPrecision(step)));
|
|
83
117
|
}
|
|
84
118
|
function findClosetValueIndex(value, newValue) {
|
|
85
119
|
if (!isRangeSlider(value))
|
|
@@ -88,4 +122,4 @@ function findClosetValueIndex(value, newValue) {
|
|
|
88
122
|
return value.findIndex((element) => element === closetValue);
|
|
89
123
|
}
|
|
90
124
|
|
|
91
|
-
export { findClosetValueIndex, getPercentage, getSliderRect, getValueFromClientX, isRangeSlider, roundToStep, sliderClasses, sliderHandlerPrefix, sliderPrefix, sortSliderValue, toSliderCssVars };
|
|
125
|
+
export { findClosetValueIndex, fixRangeSliderValue, fixSingleSliderValue, getPercentage, getPrecision, getSliderRect, getValueFromClientX, isRangeSlider, roundToStep, sliderClasses, sliderHandlerPrefix, sliderPrefix, sortSliderValue, toSliderCssVars };
|