@fluentui/react-slider 1.0.0-beta.99 → 9.0.0-alpha.12
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 +1394 -1
- package/CHANGELOG.md +525 -2
- package/MIGRATION.md +58 -0
- package/README.md +30 -4
- package/dist/react-slider.d.ts +160 -419
- package/lib/RangedSlider.d.ts +1 -0
- package/lib/RangedSlider.js +2 -0
- package/lib/RangedSlider.js.map +1 -0
- package/lib/Slider.js.map +1 -1
- package/lib/common/isConformant.d.ts +1 -1
- package/lib/common/isConformant.js +8 -5
- package/lib/common/isConformant.js.map +1 -1
- package/lib/components/RangedSlider/RangedSlider.d.ts +6 -0
- package/lib/components/RangedSlider/RangedSlider.js +15 -0
- package/lib/components/RangedSlider/RangedSlider.js.map +1 -0
- package/lib/components/RangedSlider/RangedSlider.types.d.ts +53 -0
- package/lib/components/RangedSlider/RangedSlider.types.js +2 -0
- package/lib/components/RangedSlider/RangedSlider.types.js.map +1 -0
- package/lib/components/RangedSlider/index.d.ts +6 -0
- package/lib/components/RangedSlider/index.js +7 -0
- package/lib/components/RangedSlider/index.js.map +1 -0
- package/lib/components/RangedSlider/renderRangedSlider.d.ts +5 -0
- package/lib/components/RangedSlider/renderRangedSlider.js +20 -0
- package/lib/components/RangedSlider/renderRangedSlider.js.map +1 -0
- package/lib/components/RangedSlider/useRangedSlider.d.ts +6 -0
- package/lib/components/RangedSlider/useRangedSlider.js +116 -0
- package/lib/components/RangedSlider/useRangedSlider.js.map +1 -0
- package/lib/components/RangedSlider/useRangedSliderState.d.ts +2 -0
- package/lib/components/RangedSlider/useRangedSliderState.js +271 -0
- package/lib/components/RangedSlider/useRangedSliderState.js.map +1 -0
- package/lib/components/RangedSlider/useRangedSliderStyles.d.ts +4 -0
- package/lib/components/RangedSlider/useRangedSliderStyles.js +59 -0
- package/lib/components/RangedSlider/useRangedSliderStyles.js.map +1 -0
- package/lib/components/Slider/Slider.d.ts +4 -2
- package/lib/components/Slider/Slider.js +13 -52
- package/lib/components/Slider/Slider.js.map +1 -1
- package/lib/components/Slider/Slider.types.d.ts +79 -121
- package/lib/components/Slider/Slider.types.js +0 -1
- package/lib/components/Slider/Slider.types.js.map +1 -1
- package/lib/components/Slider/index.d.ts +3 -1
- package/lib/components/Slider/index.js +3 -1
- package/lib/components/Slider/index.js.map +1 -1
- package/lib/components/Slider/renderSlider.d.ts +5 -0
- package/lib/components/Slider/renderSlider.js +16 -0
- package/lib/components/Slider/renderSlider.js.map +1 -0
- package/lib/components/Slider/useSlider.d.ts +9 -316
- package/lib/components/Slider/useSlider.js +101 -272
- package/lib/components/Slider/useSlider.js.map +1 -1
- package/lib/components/Slider/useSliderState.d.ts +3 -0
- package/lib/components/Slider/useSliderState.js +198 -0
- package/lib/components/Slider/useSliderState.js.map +1 -0
- package/lib/components/Slider/useSliderStyles.d.ts +43 -0
- package/lib/components/Slider/useSliderStyles.js +391 -0
- package/lib/components/Slider/useSliderStyles.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/lib/utils/calculateSteps.d.ts +5 -0
- package/lib/utils/calculateSteps.js +27 -0
- package/lib/utils/calculateSteps.js.map +1 -0
- package/lib/utils/findClosestThumb.d.ts +4 -0
- package/lib/utils/findClosestThumb.js +7 -0
- package/lib/utils/findClosestThumb.js.map +1 -0
- package/lib/utils/getKeydownValue.d.ts +6 -0
- package/lib/utils/getKeydownValue.js +35 -0
- package/lib/utils/getKeydownValue.js.map +1 -0
- package/lib/utils/getMarkPercent.d.ts +12 -0
- package/lib/utils/getMarkPercent.js +27 -0
- package/lib/utils/getMarkPercent.js.map +1 -0
- package/lib/utils/getMarkValues.d.ts +13 -0
- package/lib/utils/getMarkValues.js +29 -0
- package/lib/utils/getMarkValues.js.map +1 -0
- package/lib/utils/getPercent.d.ts +8 -0
- package/lib/utils/getPercent.js +11 -0
- package/lib/utils/getPercent.js.map +1 -0
- package/lib/utils/index.d.ts +9 -0
- package/lib/utils/index.js +10 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/on.d.ts +11 -0
- package/lib/utils/on.js +17 -0
- package/lib/utils/on.js.map +1 -0
- package/lib/utils/renderMarks.d.ts +13 -0
- package/lib/utils/renderMarks.js +31 -0
- package/lib/utils/renderMarks.js.map +1 -0
- package/lib/utils/validateRangedThumbValues.d.ts +4 -0
- package/lib/utils/validateRangedThumbValues.js +13 -0
- package/lib/utils/validateRangedThumbValues.js.map +1 -0
- package/lib-commonjs/RangedSlider.d.ts +1 -0
- package/lib-commonjs/RangedSlider.js +10 -0
- package/lib-commonjs/RangedSlider.js.map +1 -0
- package/lib-commonjs/Slider.js +7 -2
- package/lib-commonjs/Slider.js.map +1 -1
- package/lib-commonjs/common/isConformant.d.ts +1 -1
- package/lib-commonjs/common/isConformant.js +17 -7
- package/lib-commonjs/common/isConformant.js.map +1 -1
- package/lib-commonjs/components/RangedSlider/RangedSlider.d.ts +6 -0
- package/lib-commonjs/components/RangedSlider/RangedSlider.js +26 -0
- package/lib-commonjs/components/RangedSlider/RangedSlider.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/RangedSlider.types.d.ts +53 -0
- package/lib-commonjs/components/RangedSlider/RangedSlider.types.js +6 -0
- package/lib-commonjs/components/RangedSlider/RangedSlider.types.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/index.d.ts +6 -0
- package/lib-commonjs/components/RangedSlider/index.js +20 -0
- package/lib-commonjs/components/RangedSlider/index.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/renderRangedSlider.d.ts +5 -0
- package/lib-commonjs/components/RangedSlider/renderRangedSlider.js +32 -0
- package/lib-commonjs/components/RangedSlider/renderRangedSlider.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/useRangedSlider.d.ts +6 -0
- package/lib-commonjs/components/RangedSlider/useRangedSlider.js +128 -0
- package/lib-commonjs/components/RangedSlider/useRangedSlider.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderState.d.ts +2 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderState.js +286 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderState.js.map +1 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.d.ts +4 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js +71 -0
- package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js.map +1 -0
- package/lib-commonjs/components/Slider/Slider.d.ts +4 -2
- package/lib-commonjs/components/Slider/Slider.js +22 -53
- package/lib-commonjs/components/Slider/Slider.js.map +1 -1
- package/lib-commonjs/components/Slider/Slider.types.d.ts +79 -121
- package/lib-commonjs/components/Slider/Slider.types.js +4 -2
- package/lib-commonjs/components/Slider/Slider.types.js.map +1 -1
- package/lib-commonjs/components/Slider/index.d.ts +3 -1
- package/lib-commonjs/components/Slider/index.js +30 -3
- package/lib-commonjs/components/Slider/index.js.map +1 -1
- package/lib-commonjs/components/Slider/renderSlider.d.ts +5 -0
- package/lib-commonjs/components/Slider/renderSlider.js +29 -0
- package/lib-commonjs/components/Slider/renderSlider.js.map +1 -0
- package/lib-commonjs/components/Slider/useSlider.d.ts +9 -316
- package/lib-commonjs/components/Slider/useSlider.js +112 -275
- package/lib-commonjs/components/Slider/useSlider.js.map +1 -1
- package/lib-commonjs/components/Slider/useSliderState.d.ts +3 -0
- package/lib-commonjs/components/Slider/useSliderState.js +213 -0
- package/lib-commonjs/components/Slider/useSliderState.js.map +1 -0
- package/lib-commonjs/components/Slider/useSliderStyles.d.ts +43 -0
- package/lib-commonjs/components/Slider/useSliderStyles.js +403 -0
- package/lib-commonjs/components/Slider/useSliderStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +1 -0
- package/lib-commonjs/index.js +9 -2
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/calculateSteps.d.ts +5 -0
- package/lib-commonjs/utils/calculateSteps.js +37 -0
- package/lib-commonjs/utils/calculateSteps.js.map +1 -0
- package/lib-commonjs/utils/findClosestThumb.d.ts +4 -0
- package/lib-commonjs/utils/findClosestThumb.js +16 -0
- package/lib-commonjs/utils/findClosestThumb.js.map +1 -0
- package/lib-commonjs/utils/getKeydownValue.d.ts +6 -0
- package/lib-commonjs/utils/getKeydownValue.js +45 -0
- package/lib-commonjs/utils/getKeydownValue.js.map +1 -0
- package/lib-commonjs/utils/getMarkPercent.d.ts +12 -0
- package/lib-commonjs/utils/getMarkPercent.js +36 -0
- package/lib-commonjs/utils/getMarkPercent.js.map +1 -0
- package/lib-commonjs/utils/getMarkValues.d.ts +13 -0
- package/lib-commonjs/utils/getMarkValues.js +39 -0
- package/lib-commonjs/utils/getMarkValues.js.map +1 -0
- package/lib-commonjs/utils/getPercent.d.ts +8 -0
- package/lib-commonjs/utils/getPercent.js +20 -0
- package/lib-commonjs/utils/getPercent.js.map +1 -0
- package/lib-commonjs/utils/index.d.ts +9 -0
- package/lib-commonjs/utils/index.js +26 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/on.d.ts +11 -0
- package/lib-commonjs/utils/on.js +26 -0
- package/lib-commonjs/utils/on.js.map +1 -0
- package/lib-commonjs/utils/renderMarks.d.ts +13 -0
- package/lib-commonjs/utils/renderMarks.js +42 -0
- package/lib-commonjs/utils/renderMarks.js.map +1 -0
- package/lib-commonjs/utils/validateRangedThumbValues.d.ts +4 -0
- package/lib-commonjs/utils/validateRangedThumbValues.js +23 -0
- package/lib-commonjs/utils/validateRangedThumbValues.js.map +1 -0
- package/package.json +21 -16
- package/config/api-extractor.json +0 -3
- package/config/tests.js +0 -10
- package/etc/react-slider.api.md +0 -396
- package/just.config.ts +0 -3
- package/lib/components/Slider/Slider.base.d.ts +0 -3
- package/lib/components/Slider/Slider.base.js +0 -32
- package/lib/components/Slider/Slider.base.js.map +0 -1
- package/lib/components/Slider/Slider.scss.d.ts +0 -13
- package/lib/components/Slider/Slider.scss.js +0 -17
- package/lib/components/Slider/Slider.scss.js.map +0 -1
- package/lib-amd/Slider.d.ts +0 -1
- package/lib-amd/Slider.js +0 -6
- package/lib-amd/Slider.js.map +0 -1
- package/lib-amd/common/isConformant.d.ts +0 -4
- package/lib-amd/common/isConformant.js +0 -14
- package/lib-amd/common/isConformant.js.map +0 -1
- package/lib-amd/components/Slider/Slider.base.d.ts +0 -3
- package/lib-amd/components/Slider/Slider.base.js +0 -24
- package/lib-amd/components/Slider/Slider.base.js.map +0 -1
- package/lib-amd/components/Slider/Slider.d.ts +0 -3
- package/lib-amd/components/Slider/Slider.js +0 -54
- package/lib-amd/components/Slider/Slider.js.map +0 -1
- package/lib-amd/components/Slider/Slider.scss.d.ts +0 -13
- package/lib-amd/components/Slider/Slider.scss.js +0 -20
- package/lib-amd/components/Slider/Slider.scss.js.map +0 -1
- package/lib-amd/components/Slider/Slider.types.d.ts +0 -168
- package/lib-amd/components/Slider/Slider.types.js +0 -6
- package/lib-amd/components/Slider/Slider.types.js.map +0 -1
- package/lib-amd/components/Slider/index.d.ts +0 -4
- package/lib-amd/components/Slider/index.js +0 -9
- package/lib-amd/components/Slider/index.js.map +0 -1
- package/lib-amd/components/Slider/useSlider.d.ts +0 -317
- package/lib-amd/components/Slider/useSlider.js +0 -278
- package/lib-amd/components/Slider/useSlider.js.map +0 -1
- package/lib-amd/index.d.ts +0 -1
- package/lib-amd/index.js +0 -6
- package/lib-amd/index.js.map +0 -1
- package/lib-commonjs/components/Slider/Slider.base.d.ts +0 -3
- package/lib-commonjs/components/Slider/Slider.base.js +0 -35
- package/lib-commonjs/components/Slider/Slider.base.js.map +0 -1
- package/lib-commonjs/components/Slider/Slider.scss.d.ts +0 -13
- package/lib-commonjs/components/Slider/Slider.scss.js +0 -20
- package/lib-commonjs/components/Slider/Slider.scss.js.map +0 -1
- package/src/components/Slider/Slider.types.ts +0 -207
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,535 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-slider
|
|
2
2
|
|
|
3
|
-
This log was last generated on Mon,
|
|
3
|
+
This log was last generated on Mon, 27 Sep 2021 08:04:28 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.12)
|
|
8
|
+
|
|
9
|
+
Mon, 27 Sep 2021 08:04:28 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.11..@fluentui/react-slider_v9.0.0-alpha.12)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Adding the RangedSlider component. ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by czearing@outlook.com)
|
|
15
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
16
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.67 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
17
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
18
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
19
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
20
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
21
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
|
|
22
|
+
|
|
23
|
+
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.11)
|
|
24
|
+
|
|
25
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
|
26
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.10..@fluentui/react-slider_v9.0.0-alpha.11)
|
|
27
|
+
|
|
28
|
+
### Changes
|
|
29
|
+
|
|
30
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
31
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.66 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
32
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
33
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
34
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
35
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.45 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
36
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
|
37
|
+
|
|
38
|
+
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.10)
|
|
39
|
+
|
|
40
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
|
41
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.9..@fluentui/react-slider_v9.0.0-alpha.10)
|
|
42
|
+
|
|
43
|
+
### Changes
|
|
44
|
+
|
|
45
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
46
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.65 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
47
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
48
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
49
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
50
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.44 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
51
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
|
52
|
+
|
|
53
|
+
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.9)
|
|
54
|
+
|
|
55
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
|
56
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.8..@fluentui/react-slider_v9.0.0-alpha.9)
|
|
57
|
+
|
|
58
|
+
### Changes
|
|
59
|
+
|
|
60
|
+
- Cleaning up the Slider utils folder. ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by czearing@outlook.com)
|
|
61
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
62
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.64 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
63
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
64
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
65
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
66
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.43 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
67
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
|
68
|
+
|
|
69
|
+
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.8)
|
|
70
|
+
|
|
71
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
|
72
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.7..@fluentui/react-slider_v9.0.0-alpha.8)
|
|
73
|
+
|
|
74
|
+
### Changes
|
|
75
|
+
|
|
76
|
+
- Adding custom marks and mark labels. ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by czearing@outlook.com)
|
|
77
|
+
- Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
|
|
78
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
79
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-alpha.25 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
80
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.63 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
81
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
82
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
83
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.42 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
84
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
|
85
|
+
|
|
86
|
+
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.7)
|
|
87
|
+
|
|
88
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
|
89
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.6..@fluentui/react-slider_v9.0.0-alpha.7)
|
|
90
|
+
|
|
91
|
+
### Changes
|
|
92
|
+
|
|
93
|
+
- Bump @fluentui/react-slider to v9.0.0-alpha.7 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
|
|
94
|
+
|
|
95
|
+
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.6)
|
|
96
|
+
|
|
97
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
|
98
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.5..@fluentui/react-slider_v9.0.0-alpha.6)
|
|
99
|
+
|
|
100
|
+
### Changes
|
|
101
|
+
|
|
102
|
+
- Moving Slider logic into utils folder. ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by czearing@outlook.com)
|
|
103
|
+
- Bump @fluentui/react-slider to v9.0.0-alpha.6 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
|
|
104
|
+
|
|
105
|
+
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.5)
|
|
106
|
+
|
|
107
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
|
108
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.4..@fluentui/react-slider_v9.0.0-alpha.5)
|
|
109
|
+
|
|
110
|
+
### Changes
|
|
111
|
+
|
|
112
|
+
- Fix typings in React.forwardRef ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
|
|
113
|
+
- Bump @fluentui/react-slider to v9.0.0-alpha.5 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
|
|
114
|
+
|
|
115
|
+
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.4)
|
|
116
|
+
|
|
117
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
|
118
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.3..@fluentui/react-slider_v9.0.0-alpha.4)
|
|
119
|
+
|
|
120
|
+
### Changes
|
|
121
|
+
|
|
122
|
+
- Bump @fluentui/react-slider to v9.0.0-alpha.4 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
|
|
123
|
+
|
|
124
|
+
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.3)
|
|
125
|
+
|
|
126
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
|
127
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.2..@fluentui/react-slider_v9.0.0-alpha.3)
|
|
128
|
+
|
|
129
|
+
### Changes
|
|
130
|
+
|
|
131
|
+
- chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
|
|
132
|
+
- Bump @fluentui/react-slider to v9.0.0-alpha.3 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
|
|
133
|
+
|
|
134
|
+
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.2)
|
|
135
|
+
|
|
136
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
|
137
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.1..@fluentui/react-slider_v9.0.0-alpha.2)
|
|
138
|
+
|
|
139
|
+
### Changes
|
|
140
|
+
|
|
141
|
+
- Refactor ObjectShorthandProps into IntrinsicShorthandProps ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
|
|
142
|
+
|
|
143
|
+
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.1)
|
|
144
|
+
|
|
145
|
+
Thu, 09 Sep 2021 07:39:06 GMT
|
|
146
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.1)
|
|
147
|
+
|
|
148
|
+
### Changes
|
|
149
|
+
|
|
150
|
+
- Setting the package to public. ([PR #19693](https://github.com/microsoft/fluentui/pull/19693) by czearing@outlook.com)
|
|
151
|
+
|
|
152
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
153
|
+
|
|
154
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
|
155
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
156
|
+
|
|
157
|
+
### Changes
|
|
158
|
+
|
|
159
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.35 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
|
|
160
|
+
|
|
161
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
162
|
+
|
|
163
|
+
Thu, 02 Sep 2021 07:36:46 GMT
|
|
164
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
165
|
+
|
|
166
|
+
### Patches
|
|
167
|
+
|
|
168
|
+
- Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
|
|
169
|
+
|
|
170
|
+
### Changes
|
|
171
|
+
|
|
172
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.34 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
|
|
173
|
+
|
|
174
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
175
|
+
|
|
176
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
|
177
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
178
|
+
|
|
179
|
+
### Changes
|
|
180
|
+
|
|
181
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.33 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
|
|
182
|
+
|
|
183
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
184
|
+
|
|
185
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
|
186
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
187
|
+
|
|
188
|
+
### Changes
|
|
189
|
+
|
|
190
|
+
- Bump @fluentui/react-tabster to v9.0.0-alpha.54 ([PR #19534](https://github.com/microsoft/fluentui/pull/19534) by marata@microsoft.com)
|
|
191
|
+
|
|
192
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
193
|
+
|
|
194
|
+
Fri, 27 Aug 2021 07:33:32 GMT
|
|
195
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
196
|
+
|
|
197
|
+
### Changes
|
|
198
|
+
|
|
199
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.31 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
|
|
200
|
+
|
|
201
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
202
|
+
|
|
203
|
+
Thu, 26 Aug 2021 07:35:43 GMT
|
|
204
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
205
|
+
|
|
206
|
+
### Changes
|
|
207
|
+
|
|
208
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.30 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
|
|
209
|
+
|
|
210
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
211
|
+
|
|
212
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
|
213
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
214
|
+
|
|
215
|
+
### Changes
|
|
216
|
+
|
|
217
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.27 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
|
|
218
|
+
|
|
219
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
220
|
+
|
|
221
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
|
222
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
223
|
+
|
|
224
|
+
### Changes
|
|
225
|
+
|
|
226
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.26 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
|
|
227
|
+
|
|
228
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
229
|
+
|
|
230
|
+
Wed, 11 Aug 2021 07:34:54 GMT
|
|
231
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
232
|
+
|
|
233
|
+
### Changes
|
|
234
|
+
|
|
235
|
+
- Bump @fluentui/react-label to v9.0.0-alpha.25 ([PR #19256](https://github.com/microsoft/fluentui/pull/19256) by olfedias@microsoft.com)
|
|
236
|
+
|
|
237
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
238
|
+
|
|
239
|
+
Fri, 06 Aug 2021 07:35:14 GMT
|
|
240
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
241
|
+
|
|
242
|
+
### Changes
|
|
243
|
+
|
|
244
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.31 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
|
|
245
|
+
|
|
246
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
247
|
+
|
|
248
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
|
249
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
250
|
+
|
|
251
|
+
### Patches
|
|
252
|
+
|
|
253
|
+
- Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
|
254
|
+
- Bump @fluentui/jest-serializer-merge-styles to v8.0.9 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
|
255
|
+
- Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
|
256
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
|
|
257
|
+
|
|
258
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
259
|
+
|
|
260
|
+
Mon, 02 Aug 2021 07:36:20 GMT
|
|
261
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
262
|
+
|
|
263
|
+
### Changes
|
|
264
|
+
|
|
265
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.53 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
|
|
266
|
+
|
|
267
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
268
|
+
|
|
269
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
|
270
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
271
|
+
|
|
272
|
+
### Changes
|
|
273
|
+
|
|
274
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.52 ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
|
|
275
|
+
|
|
276
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
277
|
+
|
|
278
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
|
279
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
280
|
+
|
|
281
|
+
### Changes
|
|
282
|
+
|
|
283
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.51 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
|
|
284
|
+
|
|
285
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
286
|
+
|
|
287
|
+
Thu, 22 Jul 2021 07:36:55 GMT
|
|
288
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v9.0.0-alpha.0..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
289
|
+
|
|
290
|
+
### Changes
|
|
291
|
+
|
|
292
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.50 ([PR #19023](https://github.com/microsoft/fluentui/pull/19023) by behowell@microsoft.com)
|
|
293
|
+
|
|
294
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v9.0.0-alpha.0)
|
|
295
|
+
|
|
296
|
+
Thu, 15 Jul 2021 07:36:18 GMT
|
|
297
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.122..@fluentui/react-slider_v9.0.0-alpha.0)
|
|
298
|
+
|
|
299
|
+
### Changes
|
|
300
|
+
|
|
301
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.49 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
|
|
302
|
+
|
|
303
|
+
## [1.0.0-beta.122](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.122)
|
|
304
|
+
|
|
305
|
+
Tue, 13 Jul 2021 22:32:58 GMT
|
|
306
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.121..@fluentui/react-slider_v1.0.0-beta.122)
|
|
307
|
+
|
|
308
|
+
### Patches
|
|
309
|
+
|
|
310
|
+
- Bump @fluentui/react to v8.23.1 ([PR #18890](https://github.com/microsoft/fluentui/pull/18890) by behowell@microsoft.com)
|
|
311
|
+
- Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
|
|
312
|
+
|
|
313
|
+
## [1.0.0-beta.121](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.121)
|
|
314
|
+
|
|
315
|
+
Tue, 13 Jul 2021 07:35:36 GMT
|
|
316
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.120..@fluentui/react-slider_v1.0.0-beta.121)
|
|
317
|
+
|
|
318
|
+
### Patches
|
|
319
|
+
|
|
320
|
+
- Bump @fluentui/react to v8.23.0 ([PR #18802](https://github.com/microsoft/fluentui/pull/18802) by tmichon@microsoft.com)
|
|
321
|
+
- Bump @fluentui/style-utilities to v8.2.0 ([PR #18802](https://github.com/microsoft/fluentui/pull/18802) by tmichon@microsoft.com)
|
|
322
|
+
|
|
323
|
+
## [1.0.0-beta.120](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.120)
|
|
324
|
+
|
|
325
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
|
326
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.119..@fluentui/react-slider_v1.0.0-beta.120)
|
|
327
|
+
|
|
328
|
+
### Patches
|
|
329
|
+
|
|
330
|
+
- Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
331
|
+
- Bump @fluentui/react to v8.22.3 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
332
|
+
- Bump @fluentui/utilities to v8.2.1 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
333
|
+
- Bump @fluentui/react-hooks to v8.2.4 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
334
|
+
- Bump @fluentui/style-utilities to v8.1.5 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
335
|
+
- Bump @fluentui/jest-serializer-merge-styles to v8.0.8 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
336
|
+
- Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
337
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
|
|
338
|
+
|
|
339
|
+
## [1.0.0-beta.119](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.119)
|
|
340
|
+
|
|
341
|
+
Thu, 08 Jul 2021 07:32:49 GMT
|
|
342
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.118..@fluentui/react-slider_v1.0.0-beta.119)
|
|
343
|
+
|
|
344
|
+
### Patches
|
|
345
|
+
|
|
346
|
+
- Bump @fluentui/react to v8.22.2 ([PR #18771](https://github.com/microsoft/fluentui/pull/18771) by sarah.higley@microsoft.com)
|
|
347
|
+
|
|
348
|
+
## [1.0.0-beta.118](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.118)
|
|
349
|
+
|
|
350
|
+
Wed, 07 Jul 2021 07:32:54 GMT
|
|
351
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.117..@fluentui/react-slider_v1.0.0-beta.118)
|
|
352
|
+
|
|
353
|
+
### Patches
|
|
354
|
+
|
|
355
|
+
- Bump @fluentui/react to v8.22.1 ([PR #18825](https://github.com/microsoft/fluentui/pull/18825) by sarah.higley@microsoft.com)
|
|
356
|
+
|
|
357
|
+
## [1.0.0-beta.117](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.117)
|
|
358
|
+
|
|
359
|
+
Thu, 01 Jul 2021 07:35:05 GMT
|
|
360
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.116..@fluentui/react-slider_v1.0.0-beta.117)
|
|
361
|
+
|
|
362
|
+
### Patches
|
|
363
|
+
|
|
364
|
+
- Bump @fluentui/react to v8.22.0 ([PR #18430](https://github.com/microsoft/fluentui/pull/18430) by nikolenkoanton92@gmail.com)
|
|
365
|
+
|
|
366
|
+
## [1.0.0-beta.116](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.116)
|
|
367
|
+
|
|
368
|
+
Tue, 29 Jun 2021 07:33:32 GMT
|
|
369
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.115..@fluentui/react-slider_v1.0.0-beta.116)
|
|
370
|
+
|
|
371
|
+
### Patches
|
|
372
|
+
|
|
373
|
+
- Bump @fluentui/react to v8.21.1 ([PR #18713](https://github.com/microsoft/fluentui/pull/18713) by makopch@microsoft.com)
|
|
374
|
+
|
|
375
|
+
## [1.0.0-beta.115](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.115)
|
|
376
|
+
|
|
377
|
+
Mon, 28 Jun 2021 07:35:16 GMT
|
|
378
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.114..@fluentui/react-slider_v1.0.0-beta.115)
|
|
379
|
+
|
|
380
|
+
### Patches
|
|
381
|
+
|
|
382
|
+
- Bump @fluentui/react to v8.21.0 ([PR #18556](https://github.com/microsoft/fluentui/pull/18556) by jamwu@microsoft.com)
|
|
383
|
+
- Bump @fluentui/utilities to v8.2.0 ([PR #18556](https://github.com/microsoft/fluentui/pull/18556) by jamwu@microsoft.com)
|
|
384
|
+
- Bump @fluentui/react-hooks to v8.2.3 ([PR #18556](https://github.com/microsoft/fluentui/pull/18556) by jamwu@microsoft.com)
|
|
385
|
+
- Bump @fluentui/style-utilities to v8.1.4 ([PR #18556](https://github.com/microsoft/fluentui/pull/18556) by jamwu@microsoft.com)
|
|
386
|
+
|
|
387
|
+
## [1.0.0-beta.114](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.114)
|
|
388
|
+
|
|
389
|
+
Tue, 22 Jun 2021 07:35:11 GMT
|
|
390
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.113..@fluentui/react-slider_v1.0.0-beta.114)
|
|
391
|
+
|
|
392
|
+
### Patches
|
|
393
|
+
|
|
394
|
+
- Bump @fluentui/react to v8.20.2 ([PR #18526](https://github.com/microsoft/fluentui/pull/18526) by tkrasniqi@microsoft.com)
|
|
395
|
+
|
|
396
|
+
## [1.0.0-beta.113](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.113)
|
|
397
|
+
|
|
398
|
+
Mon, 21 Jun 2021 07:34:33 GMT
|
|
399
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.112..@fluentui/react-slider_v1.0.0-beta.113)
|
|
400
|
+
|
|
401
|
+
### Patches
|
|
402
|
+
|
|
403
|
+
- Bump @fluentui/react to v8.20.1 ([PR #18613](https://github.com/microsoft/fluentui/pull/18613) by ololubek@microsoft.com)
|
|
404
|
+
|
|
405
|
+
## [1.0.0-beta.112](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.112)
|
|
406
|
+
|
|
407
|
+
Fri, 18 Jun 2021 07:30:58 GMT
|
|
408
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.111..@fluentui/react-slider_v1.0.0-beta.112)
|
|
409
|
+
|
|
410
|
+
### Patches
|
|
411
|
+
|
|
412
|
+
- Bump @fluentui/react to v8.20.0 ([PR #18268](https://github.com/microsoft/fluentui/pull/18268) by khhuynh@microsoft.com)
|
|
413
|
+
|
|
414
|
+
## [1.0.0-beta.111](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.111)
|
|
415
|
+
|
|
416
|
+
Wed, 16 Jun 2021 07:34:24 GMT
|
|
417
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.110..@fluentui/react-slider_v1.0.0-beta.111)
|
|
418
|
+
|
|
419
|
+
### Patches
|
|
420
|
+
|
|
421
|
+
- Bump @fluentui/react to v8.19.1 ([PR #18469](https://github.com/microsoft/fluentui/pull/18469) by sarah.higley@microsoft.com)
|
|
422
|
+
|
|
423
|
+
## [1.0.0-beta.110](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.110)
|
|
424
|
+
|
|
425
|
+
Tue, 15 Jun 2021 07:40:20 GMT
|
|
426
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.109..@fluentui/react-slider_v1.0.0-beta.110)
|
|
427
|
+
|
|
428
|
+
### Patches
|
|
429
|
+
|
|
430
|
+
- Bump @fluentui/react to v8.19.0 ([PR #18249](https://github.com/microsoft/fluentui/pull/18249) by sarah.higley@microsoft.com)
|
|
431
|
+
- Bump @fluentui/style-utilities to v8.1.3 ([PR #18249](https://github.com/microsoft/fluentui/pull/18249) by sarah.higley@microsoft.com)
|
|
432
|
+
|
|
433
|
+
## [1.0.0-beta.109](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.109)
|
|
434
|
+
|
|
435
|
+
Fri, 11 Jun 2021 07:34:26 GMT
|
|
436
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.108..@fluentui/react-slider_v1.0.0-beta.109)
|
|
437
|
+
|
|
438
|
+
### Patches
|
|
439
|
+
|
|
440
|
+
- Bump @fluentui/react to v8.18.0 ([PR #18495](https://github.com/microsoft/fluentui/pull/18495) by sarah.higley@microsoft.com)
|
|
441
|
+
|
|
442
|
+
## [1.0.0-beta.108](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.108)
|
|
443
|
+
|
|
444
|
+
Thu, 10 Jun 2021 07:32:59 GMT
|
|
445
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.107..@fluentui/react-slider_v1.0.0-beta.108)
|
|
446
|
+
|
|
447
|
+
### Patches
|
|
448
|
+
|
|
449
|
+
- Bump @fluentui/react to v8.17.4 ([PR #18472](https://github.com/microsoft/fluentui/pull/18472) by lorejoh12@gmail.com)
|
|
450
|
+
|
|
451
|
+
## [1.0.0-beta.107](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.107)
|
|
452
|
+
|
|
453
|
+
Wed, 09 Jun 2021 07:33:38 GMT
|
|
454
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.106..@fluentui/react-slider_v1.0.0-beta.107)
|
|
455
|
+
|
|
456
|
+
### Patches
|
|
457
|
+
|
|
458
|
+
- Bump @fluentui/react to v8.17.3 ([PR #18298](https://github.com/microsoft/fluentui/pull/18298) by tkrasniqi@microsoft.com)
|
|
459
|
+
|
|
460
|
+
## [1.0.0-beta.106](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.106)
|
|
461
|
+
|
|
462
|
+
Tue, 08 Jun 2021 07:32:44 GMT
|
|
463
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.105..@fluentui/react-slider_v1.0.0-beta.106)
|
|
464
|
+
|
|
465
|
+
### Patches
|
|
466
|
+
|
|
467
|
+
- Bump @fluentui/react to v8.17.2 ([PR #18298](https://github.com/microsoft/fluentui/pull/18298) by tkrasniqi@microsoft.com)
|
|
468
|
+
|
|
469
|
+
## [1.0.0-beta.105](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.105)
|
|
470
|
+
|
|
471
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
|
472
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.104..@fluentui/react-slider_v1.0.0-beta.105)
|
|
473
|
+
|
|
474
|
+
### Patches
|
|
475
|
+
|
|
476
|
+
- Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
477
|
+
- Bump @fluentui/utilities to v8.1.2 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
478
|
+
- Bump @fluentui/react-hooks to v8.2.2 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
479
|
+
- Bump @fluentui/style-utilities to v8.1.2 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
480
|
+
- Bump @fluentui/jest-serializer-merge-styles to v8.0.7 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
481
|
+
- Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
482
|
+
- Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
|
|
483
|
+
- Bump @fluentui/react to v8.17.1 ([PR #18366](https://github.com/microsoft/fluentui/pull/18366) by sarah.higley@microsoft.com)
|
|
484
|
+
|
|
485
|
+
## [1.0.0-beta.104](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.104)
|
|
486
|
+
|
|
487
|
+
Fri, 04 Jun 2021 07:37:23 GMT
|
|
488
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.103..@fluentui/react-slider_v1.0.0-beta.104)
|
|
489
|
+
|
|
490
|
+
### Patches
|
|
491
|
+
|
|
492
|
+
- Bump @fluentui/react to v8.17.0 ([PR #18427](https://github.com/microsoft/fluentui/pull/18427) by Humberto.Morimoto@microsoft.com)
|
|
493
|
+
|
|
494
|
+
## [1.0.0-beta.103](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.103)
|
|
495
|
+
|
|
496
|
+
Mon, 31 May 2021 07:33:15 GMT
|
|
497
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.102..@fluentui/react-slider_v1.0.0-beta.103)
|
|
498
|
+
|
|
499
|
+
### Patches
|
|
500
|
+
|
|
501
|
+
- Bump @fluentui/react to v8.16.0 ([PR #18376](https://github.com/microsoft/fluentui/pull/18376) by Humberto.Morimoto@microsoft.com)
|
|
502
|
+
|
|
503
|
+
## [1.0.0-beta.102](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.102)
|
|
504
|
+
|
|
505
|
+
Thu, 27 May 2021 07:33:21 GMT
|
|
506
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.101..@fluentui/react-slider_v1.0.0-beta.102)
|
|
507
|
+
|
|
508
|
+
### Patches
|
|
509
|
+
|
|
510
|
+
- Bump @fluentui/react to v8.15.1 ([PR #18197](https://github.com/microsoft/fluentui/pull/18197) by hetanthakkar1@gmail.com)
|
|
511
|
+
|
|
512
|
+
## [1.0.0-beta.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.101)
|
|
513
|
+
|
|
514
|
+
Wed, 26 May 2021 07:35:43 GMT
|
|
515
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.100..@fluentui/react-slider_v1.0.0-beta.101)
|
|
516
|
+
|
|
517
|
+
### Patches
|
|
518
|
+
|
|
519
|
+
- Bump @fluentui/react to v8.15.0 ([PR #18308](https://github.com/microsoft/fluentui/pull/18308) by anhw@microsoft.com)
|
|
520
|
+
|
|
521
|
+
## [1.0.0-beta.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.100)
|
|
522
|
+
|
|
523
|
+
Tue, 25 May 2021 01:11:03 GMT
|
|
524
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.99..@fluentui/react-slider_v1.0.0-beta.100)
|
|
525
|
+
|
|
526
|
+
### Patches
|
|
527
|
+
|
|
528
|
+
- Bump @fluentui/react to v8.14.15 ([PR #18304](https://github.com/microsoft/fluentui/pull/18304) by tristan.watanabe@gmail.com)
|
|
529
|
+
|
|
7
530
|
## [1.0.0-beta.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-slider_v1.0.0-beta.99)
|
|
8
531
|
|
|
9
|
-
Mon, 24 May 2021 07:
|
|
532
|
+
Mon, 24 May 2021 07:35:28 GMT
|
|
10
533
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-slider_v1.0.0-beta.98..@fluentui/react-slider_v1.0.0-beta.99)
|
|
11
534
|
|
|
12
535
|
### Patches
|
package/MIGRATION.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Slider Migration
|
|
2
|
+
|
|
3
|
+
## STATUS: WIP 🚧
|
|
4
|
+
|
|
5
|
+
This Migration guide is a work in progress and is not yet ready for use.
|
|
6
|
+
|
|
7
|
+
## Migration from v8
|
|
8
|
+
|
|
9
|
+
- `componentRef` => NOT SUPPORTED - use regular `ref` instead.
|
|
10
|
+
- `styles` => NOT SUPPORTED - use new styling system via `tokens` instead.
|
|
11
|
+
- `theme` => NOT SUPPORTED
|
|
12
|
+
- `originFromZero` => `origin` - allows for custom origin values other than zero.
|
|
13
|
+
- `ariaLabel` => NOT SUPPORTED
|
|
14
|
+
- `valueLabel` => NOT SUPPORTED
|
|
15
|
+
- `defaultLowerValue` => NOT SUPPORTED
|
|
16
|
+
- `lowerValue` => NOT SUPPORTED
|
|
17
|
+
- `showValue` => NOT SUPPORTED
|
|
18
|
+
- `onChanged` => NOT SUPPORTED
|
|
19
|
+
- `snapToStep` => NOT SUPPORTED - the slider no longer snaps.
|
|
20
|
+
- `buttonProps` => NOT SUPPORTED
|
|
21
|
+
- `valueFormat` => NOT SUPPORTED
|
|
22
|
+
- `ranged` => NOT SUPPORTED
|
|
23
|
+
- `label` => NOT SUPPORTED
|
|
24
|
+
|
|
25
|
+
## Migration from v0
|
|
26
|
+
|
|
27
|
+
- `inputRef` => NOT SUPPORTED
|
|
28
|
+
- `getA11yValueMessageOnChange` => NOT SUPPORTED
|
|
29
|
+
- `fluid` => NOT SUPPORTED - Use CSS styling such as flex-grow.
|
|
30
|
+
- `label` => NOT SUPPORTED
|
|
31
|
+
|
|
32
|
+
## Property mapping
|
|
33
|
+
|
|
34
|
+
### v8
|
|
35
|
+
|
|
36
|
+
| v8 `Slider` | Converged `Slider` |
|
|
37
|
+
| ----------------- | ------------------ |
|
|
38
|
+
| originFromZero | origin |
|
|
39
|
+
| ariaLabel | - |
|
|
40
|
+
| valueLabel | - |
|
|
41
|
+
| defaultLowerValue | - |
|
|
42
|
+
| lowerValue | - |
|
|
43
|
+
| showValue | - |
|
|
44
|
+
| onChanged | - |
|
|
45
|
+
| snapToStep | - |
|
|
46
|
+
| buttonProps | - |
|
|
47
|
+
| valueFormat | - |
|
|
48
|
+
| ranged | - |
|
|
49
|
+
| label | - |
|
|
50
|
+
|
|
51
|
+
### v0
|
|
52
|
+
|
|
53
|
+
| v0 `Slider` | Converged `Slider` |
|
|
54
|
+
| --------------------------- | ------------------ |
|
|
55
|
+
| inputRef | - |
|
|
56
|
+
| getA11yValueMessageOnChange | - |
|
|
57
|
+
| fluid | - |
|
|
58
|
+
| label | - |
|
package/README.md
CHANGED
|
@@ -2,14 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
**React Slider components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
|
|
4
4
|
|
|
5
|
+
The Slider component allows users to quickly select a value (or range) by dragging a thumb across a rail. It is often used when setting values with a relaxed precision such as audio volume and screen brightness.
|
|
6
|
+
|
|
7
|
+
## STATUS: WIP 🚧
|
|
8
|
+
|
|
5
9
|
These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
To import Slider:
|
|
8
14
|
|
|
9
15
|
```js
|
|
10
16
|
import { Slider } from '@fluentui/react-slider';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Once the Slider component graduates to a production release, the component will be available at:
|
|
20
|
+
|
|
21
|
+
```js
|
|
22
|
+
import { Slider } from '@fluentui/react-components';
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Examples
|
|
11
26
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
27
|
+
```jsx
|
|
28
|
+
<Slider />
|
|
29
|
+
<Slider defaultValue={3} />
|
|
30
|
+
<Slider value={sliderValue} onChange={sliderOnChange} />
|
|
31
|
+
<Slider min={0} max={10} />
|
|
32
|
+
<Slider vertical />
|
|
33
|
+
<Slider disabled />
|
|
34
|
+
<Slider origin={2} />
|
|
35
|
+
<Slider step={10} keyboardStep={2} />
|
|
36
|
+
<Slider marks={true} max={10} />
|
|
37
|
+
<Slider marks={[30, 40, 80, 100]} />
|
|
38
|
+
<Slider marks={[2, { value: 50, label: "50" }]} />
|
|
39
|
+
<Slider marks={[2, { value: 50, mark: <MyComponent/>, label: <MyComponent/> }]} />
|
|
40
|
+
<Slider size="small" />
|
|
15
41
|
```
|