@fluentui/react-slider 9.0.0-beta.1 → 9.0.0-beta.5
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.json +219 -1
- package/CHANGELOG.md +63 -2
- package/dist/react-slider.d.ts +4 -4
- package/lib/common/isConformant.js +1 -1
- package/lib/common/isConformant.js.map +1 -1
- package/lib/components/RangedSlider/RangedSlider.js +2 -2
- package/lib/components/RangedSlider/RangedSlider.js.map +1 -1
- package/lib/components/RangedSlider/index.d.ts +1 -1
- package/lib/components/RangedSlider/index.js +1 -1
- package/lib/components/RangedSlider/index.js.map +1 -1
- package/lib/components/RangedSlider/renderRangedSlider.js +7 -8
- package/lib/components/RangedSlider/renderRangedSlider.js.map +1 -1
- package/lib/components/RangedSlider/useRangedSlider.js +46 -47
- package/lib/components/RangedSlider/useRangedSlider.js.map +1 -1
- package/lib/components/RangedSlider/useRangedSliderState.js +83 -96
- package/lib/components/RangedSlider/useRangedSliderState.js.map +1 -1
- package/lib/components/RangedSlider/useRangedSliderStyles.d.ts +1 -0
- package/lib/components/RangedSlider/useRangedSliderStyles.js +45 -44
- package/lib/components/RangedSlider/useRangedSliderStyles.js.map +1 -1
- package/lib/components/Slider/Slider.js +2 -2
- package/lib/components/Slider/Slider.js.map +1 -1
- package/lib/components/Slider/index.d.ts +1 -1
- package/lib/components/Slider/index.js +1 -1
- package/lib/components/Slider/index.js.map +1 -1
- package/lib/components/Slider/renderSlider.js +6 -7
- package/lib/components/Slider/renderSlider.js.map +1 -1
- package/lib/components/Slider/useSlider.js +46 -47
- package/lib/components/Slider/useSlider.js.map +1 -1
- package/lib/components/Slider/useSliderState.js +74 -87
- package/lib/components/Slider/useSliderState.js.map +1 -1
- package/lib/components/Slider/useSliderStyles.d.ts +16 -10
- package/lib/components/Slider/useSliderStyles.js +64 -59
- package/lib/components/Slider/useSliderStyles.js.map +1 -1
- package/lib/utils/calculateSteps.js +8 -8
- package/lib/utils/calculateSteps.js.map +1 -1
- package/lib/utils/findClosestThumb.js +1 -1
- package/lib/utils/findClosestThumb.js.map +1 -1
- package/lib/utils/getKeydownValue.js +3 -3
- package/lib/utils/getKeydownValue.js.map +1 -1
- package/lib/utils/getMarkPercent.js +4 -4
- package/lib/utils/getMarkPercent.js.map +1 -1
- package/lib/utils/getMarkValues.js +7 -9
- package/lib/utils/getMarkValues.js.map +1 -1
- package/lib/utils/getPercent.js +1 -1
- package/lib/utils/getPercent.js.map +1 -1
- package/lib/utils/on.js +2 -4
- package/lib/utils/on.js.map +1 -1
- package/lib/utils/renderMarks.d.ts +0 -2
- package/lib/utils/renderMarks.js +15 -22
- package/lib/utils/renderMarks.js.map +1 -1
- package/lib/utils/validateRangedThumbValues.js +1 -7
- package/lib/utils/validateRangedThumbValues.js.map +1 -1
- package/lib-commonjs/RangedSlider.js +1 -1
- package/lib-commonjs/Slider.js +1 -1
- package/lib-commonjs/common/isConformant.js +3 -3
- package/lib-commonjs/common/isConformant.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/RangedSlider.js +6 -6
- package/lib-commonjs/components/RangedSlider/RangedSlider.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/index.d.ts +1 -1
- package/lib-commonjs/components/RangedSlider/index.js +16 -2
- package/lib-commonjs/components/RangedSlider/index.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/renderRangedSlider.js +9 -11
- package/lib-commonjs/components/RangedSlider/renderRangedSlider.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/useRangedSlider.js +48 -50
- package/lib-commonjs/components/RangedSlider/useRangedSlider.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/useRangedSliderState.js +93 -107
- package/lib-commonjs/components/RangedSlider/useRangedSliderState.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.d.ts +1 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js +49 -48
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js.map +1 -1
- package/lib-commonjs/components/Slider/Slider.js +6 -6
- package/lib-commonjs/components/Slider/Slider.js.map +1 -1
- package/lib-commonjs/components/Slider/index.d.ts +1 -1
- package/lib-commonjs/components/Slider/index.js +8 -2
- package/lib-commonjs/components/Slider/index.js.map +1 -1
- package/lib-commonjs/components/Slider/renderSlider.js +9 -11
- package/lib-commonjs/components/Slider/renderSlider.js.map +1 -1
- package/lib-commonjs/components/Slider/useSlider.js +47 -49
- package/lib-commonjs/components/Slider/useSlider.js.map +1 -1
- package/lib-commonjs/components/Slider/useSliderState.js +77 -91
- package/lib-commonjs/components/Slider/useSliderState.js.map +1 -1
- package/lib-commonjs/components/Slider/useSliderStyles.d.ts +16 -10
- package/lib-commonjs/components/Slider/useSliderStyles.js +58 -54
- package/lib-commonjs/components/Slider/useSliderStyles.js.map +1 -1
- package/lib-commonjs/index.js +1 -1
- package/lib-commonjs/utils/calculateSteps.js +9 -9
- package/lib-commonjs/utils/calculateSteps.js.map +1 -1
- package/lib-commonjs/utils/findClosestThumb.js +1 -1
- package/lib-commonjs/utils/findClosestThumb.js.map +1 -1
- package/lib-commonjs/utils/getKeydownValue.js +4 -4
- package/lib-commonjs/utils/getKeydownValue.js.map +1 -1
- package/lib-commonjs/utils/getMarkPercent.js +4 -4
- package/lib-commonjs/utils/getMarkPercent.js.map +1 -1
- package/lib-commonjs/utils/getMarkValues.js +8 -10
- package/lib-commonjs/utils/getMarkValues.js.map +1 -1
- package/lib-commonjs/utils/getPercent.js +1 -1
- package/lib-commonjs/utils/getPercent.js.map +1 -1
- package/lib-commonjs/utils/index.js +1 -1
- package/lib-commonjs/utils/on.js +2 -4
- package/lib-commonjs/utils/on.js.map +1 -1
- package/lib-commonjs/utils/renderMarks.d.ts +0 -2
- package/lib-commonjs/utils/renderMarks.js +18 -24
- package/lib-commonjs/utils/renderMarks.js.map +1 -1
- package/lib-commonjs/utils/validateRangedThumbValues.js +2 -8
- package/lib-commonjs/utils/validateRangedThumbValues.js.map +1 -1
- package/package.json +9 -10
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,225 @@
|
|
|
2
2
|
"name": "@fluentui/react-slider",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Thu, 25 Nov 2021 08:31:35 GMT",
|
|
6
|
+
"tag": "@fluentui/react-slider_v9.0.0-beta.5",
|
|
7
|
+
"version": "9.0.0-beta.5",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "beachball",
|
|
12
|
+
"package": "@fluentui/react-slider",
|
|
13
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
|
|
14
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@fluentui/react-slider",
|
|
19
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.4",
|
|
20
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"author": "beachball",
|
|
24
|
+
"package": "@fluentui/react-slider",
|
|
25
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
|
|
26
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"author": "beachball",
|
|
30
|
+
"package": "@fluentui/react-slider",
|
|
31
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
|
|
32
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"author": "beachball",
|
|
36
|
+
"package": "@fluentui/react-slider",
|
|
37
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
|
|
38
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"author": "beachball",
|
|
42
|
+
"package": "@fluentui/react-slider",
|
|
43
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
|
|
44
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"author": "beachball",
|
|
48
|
+
"package": "@fluentui/react-slider",
|
|
49
|
+
"comment": "Bump @fluentui/react-label to v9.0.0-beta.4",
|
|
50
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"author": "beachball",
|
|
54
|
+
"package": "@fluentui/react-slider",
|
|
55
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
|
|
56
|
+
"commit": "281e8820669214c1ffb9bc75e9b719a3b27fa9b6"
|
|
57
|
+
}
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"date": "Fri, 12 Nov 2021 13:25:32 GMT",
|
|
63
|
+
"tag": "@fluentui/react-slider_v9.0.0-beta.4",
|
|
64
|
+
"version": "9.0.0-beta.4",
|
|
65
|
+
"comments": {
|
|
66
|
+
"none": [
|
|
67
|
+
{
|
|
68
|
+
"author": "lingfangao@hotmail.com",
|
|
69
|
+
"package": "@fluentui/react-slider",
|
|
70
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
|
71
|
+
"comment": "Remove beta release tag"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"prerelease": [
|
|
75
|
+
{
|
|
76
|
+
"author": "olfedias@microsoft.com",
|
|
77
|
+
"package": "@fluentui/react-slider",
|
|
78
|
+
"commit": "f078af73d95d0f2c380144a40127bd08e389aa2d",
|
|
79
|
+
"comment": "export static classes for components"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"author": "gcox@microsoft.com",
|
|
83
|
+
"package": "@fluentui/react-slider",
|
|
84
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
|
85
|
+
"comment": "Updated beta and RC components to ES2019"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"author": "olfedias@microsoft.com",
|
|
89
|
+
"package": "@fluentui/react-slider",
|
|
90
|
+
"commit": "e48014a7fd9c030eafc1eec68463d013eac58baa",
|
|
91
|
+
"comment": "remove temporary workaround with duplicated classes constants"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"author": "beachball",
|
|
95
|
+
"package": "@fluentui/react-slider",
|
|
96
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
|
|
97
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"author": "beachball",
|
|
101
|
+
"package": "@fluentui/react-slider",
|
|
102
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.3",
|
|
103
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"author": "beachball",
|
|
107
|
+
"package": "@fluentui/react-slider",
|
|
108
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
|
|
109
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"author": "beachball",
|
|
113
|
+
"package": "@fluentui/react-slider",
|
|
114
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
|
|
115
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"author": "beachball",
|
|
119
|
+
"package": "@fluentui/react-slider",
|
|
120
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
|
|
121
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"author": "beachball",
|
|
125
|
+
"package": "@fluentui/react-slider",
|
|
126
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
|
|
127
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"author": "beachball",
|
|
131
|
+
"package": "@fluentui/react-slider",
|
|
132
|
+
"comment": "Bump @fluentui/react-label to v9.0.0-beta.3",
|
|
133
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"author": "beachball",
|
|
137
|
+
"package": "@fluentui/react-slider",
|
|
138
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
|
|
139
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"date": "Wed, 27 Oct 2021 12:14:22 GMT",
|
|
146
|
+
"tag": "@fluentui/react-slider_v9.0.0-beta.3",
|
|
147
|
+
"version": "9.0.0-beta.3",
|
|
148
|
+
"comments": {
|
|
149
|
+
"prerelease": [
|
|
150
|
+
{
|
|
151
|
+
"author": "peter@draxler.ml",
|
|
152
|
+
"package": "@fluentui/react-slider",
|
|
153
|
+
"commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
|
|
154
|
+
"comment": "added styling of documentation"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"author": "beachball",
|
|
158
|
+
"package": "@fluentui/react-slider",
|
|
159
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
|
|
160
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"author": "beachball",
|
|
164
|
+
"package": "@fluentui/react-slider",
|
|
165
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0-beta.2",
|
|
166
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"author": "beachball",
|
|
170
|
+
"package": "@fluentui/react-slider",
|
|
171
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
|
|
172
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"author": "beachball",
|
|
176
|
+
"package": "@fluentui/react-slider",
|
|
177
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
|
|
178
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"author": "beachball",
|
|
182
|
+
"package": "@fluentui/react-slider",
|
|
183
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
|
|
184
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"author": "beachball",
|
|
188
|
+
"package": "@fluentui/react-slider",
|
|
189
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
|
|
190
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"author": "beachball",
|
|
194
|
+
"package": "@fluentui/react-slider",
|
|
195
|
+
"comment": "Bump @fluentui/react-label to v9.0.0-beta.2",
|
|
196
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"author": "beachball",
|
|
200
|
+
"package": "@fluentui/react-slider",
|
|
201
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
|
|
202
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"date": "Tue, 12 Oct 2021 19:45:58 GMT",
|
|
209
|
+
"tag": "@fluentui/react-slider_v9.0.0-beta.2",
|
|
210
|
+
"version": "9.0.0-beta.2",
|
|
211
|
+
"comments": {
|
|
212
|
+
"prerelease": [
|
|
213
|
+
{
|
|
214
|
+
"author": "beachball",
|
|
215
|
+
"package": "@fluentui/react-slider",
|
|
216
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.2",
|
|
217
|
+
"commit": "bdd19e2bb827fc1d8eb329e6ed48cd0542048358"
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"date": "Wed, 06 Oct 2021 10:37:22 GMT",
|
|
6
224
|
"tag": "@fluentui/react-slider_v9.0.0-beta.1",
|
|
7
225
|
"version": "9.0.0-beta.1",
|
|
8
226
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,73 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-slider
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 25 Nov 2021 08:31:35 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-beta.5)
|
|
8
|
+
|
|
9
|
+
Thu, 25 Nov 2021 08:31:35 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-beta.4..@fluentui/react-slider_v9.0.0-beta.5)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
15
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
16
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
17
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
18
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
19
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
20
|
+
- Bump @fluentui/react-label to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
21
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20609](https://github.com/microsoft/fluentui/pull/20609) by beachball)
|
|
22
|
+
|
|
23
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-beta.4)
|
|
24
|
+
|
|
25
|
+
Fri, 12 Nov 2021 13:25:32 GMT
|
|
26
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-beta.3..@fluentui/react-slider_v9.0.0-beta.4)
|
|
27
|
+
|
|
28
|
+
### Changes
|
|
29
|
+
|
|
30
|
+
- export static classes for components ([PR #20455](https://github.com/microsoft/fluentui/pull/20455) by olfedias@microsoft.com)
|
|
31
|
+
- Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
|
|
32
|
+
- remove temporary workaround with duplicated classes constants ([PR #20538](https://github.com/microsoft/fluentui/pull/20538) by olfedias@microsoft.com)
|
|
33
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
34
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
35
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
36
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
37
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
38
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
39
|
+
- Bump @fluentui/react-label to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
40
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
|
41
|
+
|
|
42
|
+
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-beta.3)
|
|
43
|
+
|
|
44
|
+
Wed, 27 Oct 2021 12:14:22 GMT
|
|
45
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-beta.2..@fluentui/react-slider_v9.0.0-beta.3)
|
|
46
|
+
|
|
47
|
+
### Changes
|
|
48
|
+
|
|
49
|
+
- added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
|
|
50
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
51
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
52
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
53
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
54
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
55
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
56
|
+
- Bump @fluentui/react-label to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
57
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
|
58
|
+
|
|
59
|
+
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-beta.2)
|
|
60
|
+
|
|
61
|
+
Tue, 12 Oct 2021 19:45:58 GMT
|
|
62
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-beta.1..@fluentui/react-slider_v9.0.0-beta.2)
|
|
63
|
+
|
|
64
|
+
### Changes
|
|
65
|
+
|
|
66
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
|
|
67
|
+
|
|
7
68
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-beta.1)
|
|
8
69
|
|
|
9
|
-
Wed, 06 Oct 2021 10:
|
|
70
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
|
10
71
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.18..@fluentui/react-slider_v9.0.0-beta.1)
|
|
11
72
|
|
|
12
73
|
### Changes
|
package/dist/react-slider.d.ts
CHANGED
|
@@ -4,13 +4,13 @@ import type { ForwardRefComponent } from '@fluentui/react-utilities';
|
|
|
4
4
|
import { IntrinsicShorthandProps } from '@fluentui/react-utilities';
|
|
5
5
|
import * as React_2 from 'react';
|
|
6
6
|
|
|
7
|
-
export declare const lowerThumbClassName: string;
|
|
8
|
-
|
|
9
7
|
/**
|
|
10
8
|
* The RangedSlider component allows users to quickly select a range by dragging a lower or upper thumb across a rail.
|
|
11
9
|
*/
|
|
12
10
|
export declare const RangedSlider: ForwardRefComponent<RangedSliderProps>;
|
|
13
11
|
|
|
12
|
+
export declare const rangedSliderClassName = "fui-RangedSlider";
|
|
13
|
+
|
|
14
14
|
export declare interface RangedSliderCommons extends Omit<SliderCommons, 'value' | 'defaultValue' | 'origin' | 'onChange'> {
|
|
15
15
|
/**
|
|
16
16
|
* The starting value for an uncontrolled RangedSlider. The first value is always lower than the second value.
|
|
@@ -80,6 +80,8 @@ export declare const renderSlider: (state: SliderState) => JSX.Element;
|
|
|
80
80
|
*/
|
|
81
81
|
export declare const Slider: ForwardRefComponent<SliderProps>;
|
|
82
82
|
|
|
83
|
+
export declare const sliderClassName = "fui-Slider";
|
|
84
|
+
|
|
83
85
|
export declare type SliderCommons = {
|
|
84
86
|
/**
|
|
85
87
|
* The starting value for an uncontrolled Slider.
|
|
@@ -213,8 +215,6 @@ export declare type SliderSlots = {
|
|
|
213
215
|
|
|
214
216
|
export declare type SliderState = ComponentState<SliderSlots> & SliderCommons;
|
|
215
217
|
|
|
216
|
-
export declare const upperThumbClassName: string;
|
|
217
|
-
|
|
218
218
|
/**
|
|
219
219
|
* Given user props, returns state and render function for a RangedSlider.
|
|
220
220
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { isConformant as baseIsConformant } from '@fluentui/react-conformance';
|
|
2
2
|
import makeStylesTests from '@fluentui/react-conformance-make-styles';
|
|
3
3
|
export function isConformant(testInfo) {
|
|
4
|
-
|
|
4
|
+
const defaultOptions = {
|
|
5
5
|
asPropHandlesRef: true,
|
|
6
6
|
componentPath: module.parent.filename.replace('.test', ''),
|
|
7
7
|
extraTests: makeStylesTests,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/common/isConformant.ts"],"names":[],"mappings":"AAAA,SAAS,YAAY,IAAI,gBAAzB,QAAiD,6BAAjD;AAEA,OAAO,eAAP,MAA4B,yCAA5B;AAEA,OAAM,SAAU,YAAV,CACJ,QADI,EACqF;AAEzF,
|
|
1
|
+
{"version":3,"sources":["../../src/common/isConformant.ts"],"names":[],"mappings":"AAAA,SAAS,YAAY,IAAI,gBAAzB,QAAiD,6BAAjD;AAEA,OAAO,eAAP,MAA4B,yCAA5B;AAEA,OAAM,SAAU,YAAV,CACJ,QADI,EACqF;AAEzF,QAAM,cAAc,GAAyC;AAC3D,IAAA,gBAAgB,EAAE,IADyC;AAE3D,IAAA,aAAa,EAAE,MAAO,CAAC,MAAR,CAAgB,QAAhB,CAAyB,OAAzB,CAAiC,OAAjC,EAA0C,EAA1C,CAF4C;AAG3D,IAAA,UAAU,EAAE,eAH+C;AAI3D,IAAA,eAAe,EAAE;AAJ0C,GAA7D;AAOA,EAAA,gBAAgB,CAAC,cAAD,EAAiB,QAAjB,CAAhB;AACD","sourceRoot":""}
|
|
@@ -6,8 +6,8 @@ import { useRangedSliderStyles } from './useRangedSliderStyles';
|
|
|
6
6
|
* The RangedSlider component allows users to quickly select a range by dragging a lower or upper thumb across a rail.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
export
|
|
10
|
-
|
|
9
|
+
export const RangedSlider = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
10
|
+
const state = useRangedSlider(props, ref);
|
|
11
11
|
useRangedSliderStyles(state);
|
|
12
12
|
return renderRangedSlider(state);
|
|
13
13
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/RangedSlider/RangedSlider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,kBAAT,QAAmC,sBAAnC;AACA,SAAS,eAAT,QAAgC,mBAAhC;AACA,SAAS,qBAAT,QAAsC,yBAAtC;AAIA;;AAEG;;AACH,OAAO,
|
|
1
|
+
{"version":3,"sources":["../../../src/components/RangedSlider/RangedSlider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,kBAAT,QAAmC,sBAAnC;AACA,SAAS,eAAT,QAAgC,mBAAhC;AACA,SAAS,qBAAT,QAAsC,yBAAtC;AAIA;;AAEG;;AACH,OAAO,MAAM,YAAY,gBAA2C,KAAK,CAAC,UAAN,CAAiB,CAAC,KAAD,EAAQ,GAAR,KAAe;AAClG,QAAM,KAAK,GAAG,eAAe,CAAC,KAAD,EAAQ,GAAR,CAA7B;AAEA,EAAA,qBAAqB,CAAC,KAAD,CAArB;AAEA,SAAO,kBAAkB,CAAC,KAAD,CAAzB;AACD,CANmE,CAA7D;AAOP,YAAY,CAAC,WAAb,GAA2B,cAA3B","sourceRoot":""}
|
|
@@ -3,4 +3,4 @@ export * from './RangedSlider.types';
|
|
|
3
3
|
export * from './renderRangedSlider';
|
|
4
4
|
export * from './useRangedSlider';
|
|
5
5
|
export * from './useRangedSliderState';
|
|
6
|
-
export
|
|
6
|
+
export { rangedSliderClassName, useRangedSliderStyles } from './useRangedSliderStyles';
|
|
@@ -3,5 +3,5 @@ export * from './RangedSlider.types';
|
|
|
3
3
|
export * from './renderRangedSlider';
|
|
4
4
|
export * from './useRangedSlider';
|
|
5
5
|
export * from './useRangedSliderState';
|
|
6
|
-
export
|
|
6
|
+
export { rangedSliderClassName, useRangedSliderStyles } from './useRangedSliderStyles';
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/RangedSlider/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/RangedSlider/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC;AACrC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,OAAO,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
import { getSlots } from '@fluentui/react-utilities';
|
|
4
3
|
/**
|
|
5
4
|
* Array of all shorthand properties listed in RangedSliderSlots.
|
|
6
5
|
*/
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
const rangedSliderShorthandProps = ['activeRail', 'lowerInput', 'lowerThumb', 'lowerThumbWrapper', 'marksWrapper', 'rail', 'root', 'sliderWrapper', 'track', 'trackWrapper', 'upperInput', 'upperThumb', 'upperThumbWrapper'];
|
|
9
8
|
/**
|
|
10
9
|
* Render the final JSX of RangedSlider
|
|
11
10
|
*/
|
|
12
11
|
|
|
13
|
-
export
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
return /*#__PURE__*/React.createElement(slots.root,
|
|
12
|
+
export const renderRangedSlider = state => {
|
|
13
|
+
const {
|
|
14
|
+
slots,
|
|
15
|
+
slotProps
|
|
16
|
+
} = getSlots(state, rangedSliderShorthandProps);
|
|
17
|
+
return /*#__PURE__*/React.createElement(slots.root, Object.assign({}, slotProps.root), state.marks && /*#__PURE__*/React.createElement(slots.marksWrapper, Object.assign({}, slotProps.marksWrapper)), /*#__PURE__*/React.createElement(slots.sliderWrapper, Object.assign({}, slotProps.sliderWrapper), /*#__PURE__*/React.createElement(slots.rail, Object.assign({}, slotProps.rail)), /*#__PURE__*/React.createElement(slots.trackWrapper, Object.assign({}, slotProps.trackWrapper), /*#__PURE__*/React.createElement(slots.track, Object.assign({}, slotProps.track))), /*#__PURE__*/React.createElement(slots.lowerThumbWrapper, Object.assign({}, slotProps.lowerThumbWrapper), /*#__PURE__*/React.createElement(slots.lowerInput, Object.assign({}, slotProps.lowerInput)), /*#__PURE__*/React.createElement(slots.lowerThumb, Object.assign({}, slotProps.lowerThumb))), /*#__PURE__*/React.createElement(slots.upperThumbWrapper, Object.assign({}, slotProps.upperThumbWrapper), /*#__PURE__*/React.createElement(slots.upperInput, Object.assign({}, slotProps.upperInput)), /*#__PURE__*/React.createElement(slots.upperThumb, Object.assign({}, slotProps.upperThumb))), /*#__PURE__*/React.createElement(slots.activeRail, Object.assign({}, slotProps.activeRail))));
|
|
19
18
|
};
|
|
20
19
|
//# sourceMappingURL=renderRangedSlider.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/RangedSlider/renderRangedSlider.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../src/components/RangedSlider/renderRangedSlider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AAGA;;AAEG;;AACH,MAAM,0BAA0B,GAAgC,CAC9D,YAD8D,EAE9D,YAF8D,EAG9D,YAH8D,EAI9D,mBAJ8D,EAK9D,cAL8D,EAM9D,MAN8D,EAO9D,MAP8D,EAQ9D,eAR8D,EAS9D,OAT8D,EAU9D,cAV8D,EAW9D,YAX8D,EAY9D,YAZ8D,EAa9D,mBAb8D,CAAhE;AAgBA;;AAEG;;AACH,OAAO,MAAM,kBAAkB,GAAI,KAAD,IAA6B;AAC7D,QAAM;AAAE,IAAA,KAAF;AAAS,IAAA;AAAT,MAAuB,QAAQ,CAAoB,KAApB,EAA2B,0BAA3B,CAArC;AAEA,sBACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,IAAf,CAAX,EACG,KAAK,CAAC,KAAN,iBAAe,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,YAAP,EAAmB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,YAAf,CAAnB,CADlB,eAEE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,aAAP,EAAoB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,aAAf,CAApB,eACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,IAAf,CAAX,CADF,eAEE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,YAAP,EAAmB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,YAAf,CAAnB,eACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,KAAP,EAAY,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,KAAf,CAAZ,CADF,CAFF,eAKE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,iBAAP,EAAwB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,iBAAf,CAAxB,eACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,UAAP,EAAiB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,UAAf,CAAjB,CADF,eAEE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,UAAP,EAAiB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,UAAf,CAAjB,CAFF,CALF,eASE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,iBAAP,EAAwB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,iBAAf,CAAxB,eACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,UAAP,EAAiB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,UAAf,CAAjB,CADF,eAEE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,UAAP,EAAiB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,UAAf,CAAjB,CAFF,CATF,eAaE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,UAAP,EAAiB,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,UAAf,CAAjB,CAbF,CAFF,CADF;AAoBD,CAvBM","sourceRoot":""}
|
|
@@ -1,52 +1,51 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
2
1
|
import { getNativeElementProps, resolveShorthand, useId } from '@fluentui/react-utilities';
|
|
3
2
|
import { useRangedSliderState } from './useRangedSliderState';
|
|
4
3
|
/**
|
|
5
4
|
* Given user props, returns state and render function for a RangedSlider.
|
|
6
5
|
*/
|
|
7
6
|
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
ariaValueText
|
|
39
|
-
defaultValue
|
|
40
|
-
disabled
|
|
41
|
-
keyboardStep
|
|
42
|
-
marks
|
|
43
|
-
max
|
|
44
|
-
min
|
|
45
|
-
onChange
|
|
46
|
-
size
|
|
47
|
-
step
|
|
48
|
-
value
|
|
49
|
-
vertical
|
|
7
|
+
export const useRangedSlider = (props, ref) => {
|
|
8
|
+
const {
|
|
9
|
+
// Props
|
|
10
|
+
ariaValueText,
|
|
11
|
+
defaultValue,
|
|
12
|
+
disabled,
|
|
13
|
+
keyboardStep,
|
|
14
|
+
marks,
|
|
15
|
+
max,
|
|
16
|
+
min,
|
|
17
|
+
onChange,
|
|
18
|
+
size = 'medium',
|
|
19
|
+
step = 1,
|
|
20
|
+
value,
|
|
21
|
+
vertical,
|
|
22
|
+
// Slots
|
|
23
|
+
activeRail,
|
|
24
|
+
lowerInput,
|
|
25
|
+
lowerThumb,
|
|
26
|
+
lowerThumbWrapper,
|
|
27
|
+
marksWrapper,
|
|
28
|
+
rail,
|
|
29
|
+
sliderWrapper,
|
|
30
|
+
track,
|
|
31
|
+
trackWrapper,
|
|
32
|
+
upperInput,
|
|
33
|
+
upperThumb,
|
|
34
|
+
upperThumbWrapper
|
|
35
|
+
} = props;
|
|
36
|
+
const state = {
|
|
37
|
+
ariaValueText,
|
|
38
|
+
defaultValue,
|
|
39
|
+
disabled,
|
|
40
|
+
keyboardStep,
|
|
41
|
+
marks,
|
|
42
|
+
max,
|
|
43
|
+
min,
|
|
44
|
+
onChange,
|
|
45
|
+
size,
|
|
46
|
+
step,
|
|
47
|
+
value,
|
|
48
|
+
vertical,
|
|
50
49
|
components: {
|
|
51
50
|
activeRail: 'div',
|
|
52
51
|
lowerInput: 'input',
|
|
@@ -62,11 +61,11 @@ export var useRangedSlider = function (props, ref) {
|
|
|
62
61
|
upperThumb: 'div',
|
|
63
62
|
upperThumbWrapper: 'div'
|
|
64
63
|
},
|
|
65
|
-
root: getNativeElementProps('span',
|
|
66
|
-
ref
|
|
67
|
-
|
|
64
|
+
root: getNativeElementProps('span', {
|
|
65
|
+
ref,
|
|
66
|
+
...props,
|
|
68
67
|
id: useId('ranged-slider-', props.id)
|
|
69
|
-
})
|
|
68
|
+
}),
|
|
70
69
|
activeRail: resolveShorthand(activeRail, {
|
|
71
70
|
required: true
|
|
72
71
|
}),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/RangedSlider/useRangedSlider.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../src/components/RangedSlider/useRangedSlider.ts"],"names":[],"mappings":"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","sourceRoot":""}
|