@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.
Files changed (216) hide show
  1. package/CHANGELOG.json +1394 -1
  2. package/CHANGELOG.md +525 -2
  3. package/MIGRATION.md +58 -0
  4. package/README.md +30 -4
  5. package/dist/react-slider.d.ts +160 -419
  6. package/lib/RangedSlider.d.ts +1 -0
  7. package/lib/RangedSlider.js +2 -0
  8. package/lib/RangedSlider.js.map +1 -0
  9. package/lib/Slider.js.map +1 -1
  10. package/lib/common/isConformant.d.ts +1 -1
  11. package/lib/common/isConformant.js +8 -5
  12. package/lib/common/isConformant.js.map +1 -1
  13. package/lib/components/RangedSlider/RangedSlider.d.ts +6 -0
  14. package/lib/components/RangedSlider/RangedSlider.js +15 -0
  15. package/lib/components/RangedSlider/RangedSlider.js.map +1 -0
  16. package/lib/components/RangedSlider/RangedSlider.types.d.ts +53 -0
  17. package/lib/components/RangedSlider/RangedSlider.types.js +2 -0
  18. package/lib/components/RangedSlider/RangedSlider.types.js.map +1 -0
  19. package/lib/components/RangedSlider/index.d.ts +6 -0
  20. package/lib/components/RangedSlider/index.js +7 -0
  21. package/lib/components/RangedSlider/index.js.map +1 -0
  22. package/lib/components/RangedSlider/renderRangedSlider.d.ts +5 -0
  23. package/lib/components/RangedSlider/renderRangedSlider.js +20 -0
  24. package/lib/components/RangedSlider/renderRangedSlider.js.map +1 -0
  25. package/lib/components/RangedSlider/useRangedSlider.d.ts +6 -0
  26. package/lib/components/RangedSlider/useRangedSlider.js +116 -0
  27. package/lib/components/RangedSlider/useRangedSlider.js.map +1 -0
  28. package/lib/components/RangedSlider/useRangedSliderState.d.ts +2 -0
  29. package/lib/components/RangedSlider/useRangedSliderState.js +271 -0
  30. package/lib/components/RangedSlider/useRangedSliderState.js.map +1 -0
  31. package/lib/components/RangedSlider/useRangedSliderStyles.d.ts +4 -0
  32. package/lib/components/RangedSlider/useRangedSliderStyles.js +59 -0
  33. package/lib/components/RangedSlider/useRangedSliderStyles.js.map +1 -0
  34. package/lib/components/Slider/Slider.d.ts +4 -2
  35. package/lib/components/Slider/Slider.js +13 -52
  36. package/lib/components/Slider/Slider.js.map +1 -1
  37. package/lib/components/Slider/Slider.types.d.ts +79 -121
  38. package/lib/components/Slider/Slider.types.js +0 -1
  39. package/lib/components/Slider/Slider.types.js.map +1 -1
  40. package/lib/components/Slider/index.d.ts +3 -1
  41. package/lib/components/Slider/index.js +3 -1
  42. package/lib/components/Slider/index.js.map +1 -1
  43. package/lib/components/Slider/renderSlider.d.ts +5 -0
  44. package/lib/components/Slider/renderSlider.js +16 -0
  45. package/lib/components/Slider/renderSlider.js.map +1 -0
  46. package/lib/components/Slider/useSlider.d.ts +9 -316
  47. package/lib/components/Slider/useSlider.js +101 -272
  48. package/lib/components/Slider/useSlider.js.map +1 -1
  49. package/lib/components/Slider/useSliderState.d.ts +3 -0
  50. package/lib/components/Slider/useSliderState.js +198 -0
  51. package/lib/components/Slider/useSliderState.js.map +1 -0
  52. package/lib/components/Slider/useSliderStyles.d.ts +43 -0
  53. package/lib/components/Slider/useSliderStyles.js +391 -0
  54. package/lib/components/Slider/useSliderStyles.js.map +1 -0
  55. package/lib/index.d.ts +1 -0
  56. package/lib/index.js +1 -0
  57. package/lib/index.js.map +1 -1
  58. package/lib/tsdoc-metadata.json +1 -1
  59. package/lib/utils/calculateSteps.d.ts +5 -0
  60. package/lib/utils/calculateSteps.js +27 -0
  61. package/lib/utils/calculateSteps.js.map +1 -0
  62. package/lib/utils/findClosestThumb.d.ts +4 -0
  63. package/lib/utils/findClosestThumb.js +7 -0
  64. package/lib/utils/findClosestThumb.js.map +1 -0
  65. package/lib/utils/getKeydownValue.d.ts +6 -0
  66. package/lib/utils/getKeydownValue.js +35 -0
  67. package/lib/utils/getKeydownValue.js.map +1 -0
  68. package/lib/utils/getMarkPercent.d.ts +12 -0
  69. package/lib/utils/getMarkPercent.js +27 -0
  70. package/lib/utils/getMarkPercent.js.map +1 -0
  71. package/lib/utils/getMarkValues.d.ts +13 -0
  72. package/lib/utils/getMarkValues.js +29 -0
  73. package/lib/utils/getMarkValues.js.map +1 -0
  74. package/lib/utils/getPercent.d.ts +8 -0
  75. package/lib/utils/getPercent.js +11 -0
  76. package/lib/utils/getPercent.js.map +1 -0
  77. package/lib/utils/index.d.ts +9 -0
  78. package/lib/utils/index.js +10 -0
  79. package/lib/utils/index.js.map +1 -0
  80. package/lib/utils/on.d.ts +11 -0
  81. package/lib/utils/on.js +17 -0
  82. package/lib/utils/on.js.map +1 -0
  83. package/lib/utils/renderMarks.d.ts +13 -0
  84. package/lib/utils/renderMarks.js +31 -0
  85. package/lib/utils/renderMarks.js.map +1 -0
  86. package/lib/utils/validateRangedThumbValues.d.ts +4 -0
  87. package/lib/utils/validateRangedThumbValues.js +13 -0
  88. package/lib/utils/validateRangedThumbValues.js.map +1 -0
  89. package/lib-commonjs/RangedSlider.d.ts +1 -0
  90. package/lib-commonjs/RangedSlider.js +10 -0
  91. package/lib-commonjs/RangedSlider.js.map +1 -0
  92. package/lib-commonjs/Slider.js +7 -2
  93. package/lib-commonjs/Slider.js.map +1 -1
  94. package/lib-commonjs/common/isConformant.d.ts +1 -1
  95. package/lib-commonjs/common/isConformant.js +17 -7
  96. package/lib-commonjs/common/isConformant.js.map +1 -1
  97. package/lib-commonjs/components/RangedSlider/RangedSlider.d.ts +6 -0
  98. package/lib-commonjs/components/RangedSlider/RangedSlider.js +26 -0
  99. package/lib-commonjs/components/RangedSlider/RangedSlider.js.map +1 -0
  100. package/lib-commonjs/components/RangedSlider/RangedSlider.types.d.ts +53 -0
  101. package/lib-commonjs/components/RangedSlider/RangedSlider.types.js +6 -0
  102. package/lib-commonjs/components/RangedSlider/RangedSlider.types.js.map +1 -0
  103. package/lib-commonjs/components/RangedSlider/index.d.ts +6 -0
  104. package/lib-commonjs/components/RangedSlider/index.js +20 -0
  105. package/lib-commonjs/components/RangedSlider/index.js.map +1 -0
  106. package/lib-commonjs/components/RangedSlider/renderRangedSlider.d.ts +5 -0
  107. package/lib-commonjs/components/RangedSlider/renderRangedSlider.js +32 -0
  108. package/lib-commonjs/components/RangedSlider/renderRangedSlider.js.map +1 -0
  109. package/lib-commonjs/components/RangedSlider/useRangedSlider.d.ts +6 -0
  110. package/lib-commonjs/components/RangedSlider/useRangedSlider.js +128 -0
  111. package/lib-commonjs/components/RangedSlider/useRangedSlider.js.map +1 -0
  112. package/lib-commonjs/components/RangedSlider/useRangedSliderState.d.ts +2 -0
  113. package/lib-commonjs/components/RangedSlider/useRangedSliderState.js +286 -0
  114. package/lib-commonjs/components/RangedSlider/useRangedSliderState.js.map +1 -0
  115. package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.d.ts +4 -0
  116. package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js +71 -0
  117. package/lib-commonjs/components/RangedSlider/useRangedSliderStyles.js.map +1 -0
  118. package/lib-commonjs/components/Slider/Slider.d.ts +4 -2
  119. package/lib-commonjs/components/Slider/Slider.js +22 -53
  120. package/lib-commonjs/components/Slider/Slider.js.map +1 -1
  121. package/lib-commonjs/components/Slider/Slider.types.d.ts +79 -121
  122. package/lib-commonjs/components/Slider/Slider.types.js +4 -2
  123. package/lib-commonjs/components/Slider/Slider.types.js.map +1 -1
  124. package/lib-commonjs/components/Slider/index.d.ts +3 -1
  125. package/lib-commonjs/components/Slider/index.js +30 -3
  126. package/lib-commonjs/components/Slider/index.js.map +1 -1
  127. package/lib-commonjs/components/Slider/renderSlider.d.ts +5 -0
  128. package/lib-commonjs/components/Slider/renderSlider.js +29 -0
  129. package/lib-commonjs/components/Slider/renderSlider.js.map +1 -0
  130. package/lib-commonjs/components/Slider/useSlider.d.ts +9 -316
  131. package/lib-commonjs/components/Slider/useSlider.js +112 -275
  132. package/lib-commonjs/components/Slider/useSlider.js.map +1 -1
  133. package/lib-commonjs/components/Slider/useSliderState.d.ts +3 -0
  134. package/lib-commonjs/components/Slider/useSliderState.js +213 -0
  135. package/lib-commonjs/components/Slider/useSliderState.js.map +1 -0
  136. package/lib-commonjs/components/Slider/useSliderStyles.d.ts +43 -0
  137. package/lib-commonjs/components/Slider/useSliderStyles.js +403 -0
  138. package/lib-commonjs/components/Slider/useSliderStyles.js.map +1 -0
  139. package/lib-commonjs/index.d.ts +1 -0
  140. package/lib-commonjs/index.js +9 -2
  141. package/lib-commonjs/index.js.map +1 -1
  142. package/lib-commonjs/utils/calculateSteps.d.ts +5 -0
  143. package/lib-commonjs/utils/calculateSteps.js +37 -0
  144. package/lib-commonjs/utils/calculateSteps.js.map +1 -0
  145. package/lib-commonjs/utils/findClosestThumb.d.ts +4 -0
  146. package/lib-commonjs/utils/findClosestThumb.js +16 -0
  147. package/lib-commonjs/utils/findClosestThumb.js.map +1 -0
  148. package/lib-commonjs/utils/getKeydownValue.d.ts +6 -0
  149. package/lib-commonjs/utils/getKeydownValue.js +45 -0
  150. package/lib-commonjs/utils/getKeydownValue.js.map +1 -0
  151. package/lib-commonjs/utils/getMarkPercent.d.ts +12 -0
  152. package/lib-commonjs/utils/getMarkPercent.js +36 -0
  153. package/lib-commonjs/utils/getMarkPercent.js.map +1 -0
  154. package/lib-commonjs/utils/getMarkValues.d.ts +13 -0
  155. package/lib-commonjs/utils/getMarkValues.js +39 -0
  156. package/lib-commonjs/utils/getMarkValues.js.map +1 -0
  157. package/lib-commonjs/utils/getPercent.d.ts +8 -0
  158. package/lib-commonjs/utils/getPercent.js +20 -0
  159. package/lib-commonjs/utils/getPercent.js.map +1 -0
  160. package/lib-commonjs/utils/index.d.ts +9 -0
  161. package/lib-commonjs/utils/index.js +26 -0
  162. package/lib-commonjs/utils/index.js.map +1 -0
  163. package/lib-commonjs/utils/on.d.ts +11 -0
  164. package/lib-commonjs/utils/on.js +26 -0
  165. package/lib-commonjs/utils/on.js.map +1 -0
  166. package/lib-commonjs/utils/renderMarks.d.ts +13 -0
  167. package/lib-commonjs/utils/renderMarks.js +42 -0
  168. package/lib-commonjs/utils/renderMarks.js.map +1 -0
  169. package/lib-commonjs/utils/validateRangedThumbValues.d.ts +4 -0
  170. package/lib-commonjs/utils/validateRangedThumbValues.js +23 -0
  171. package/lib-commonjs/utils/validateRangedThumbValues.js.map +1 -0
  172. package/package.json +21 -16
  173. package/config/api-extractor.json +0 -3
  174. package/config/tests.js +0 -10
  175. package/etc/react-slider.api.md +0 -396
  176. package/just.config.ts +0 -3
  177. package/lib/components/Slider/Slider.base.d.ts +0 -3
  178. package/lib/components/Slider/Slider.base.js +0 -32
  179. package/lib/components/Slider/Slider.base.js.map +0 -1
  180. package/lib/components/Slider/Slider.scss.d.ts +0 -13
  181. package/lib/components/Slider/Slider.scss.js +0 -17
  182. package/lib/components/Slider/Slider.scss.js.map +0 -1
  183. package/lib-amd/Slider.d.ts +0 -1
  184. package/lib-amd/Slider.js +0 -6
  185. package/lib-amd/Slider.js.map +0 -1
  186. package/lib-amd/common/isConformant.d.ts +0 -4
  187. package/lib-amd/common/isConformant.js +0 -14
  188. package/lib-amd/common/isConformant.js.map +0 -1
  189. package/lib-amd/components/Slider/Slider.base.d.ts +0 -3
  190. package/lib-amd/components/Slider/Slider.base.js +0 -24
  191. package/lib-amd/components/Slider/Slider.base.js.map +0 -1
  192. package/lib-amd/components/Slider/Slider.d.ts +0 -3
  193. package/lib-amd/components/Slider/Slider.js +0 -54
  194. package/lib-amd/components/Slider/Slider.js.map +0 -1
  195. package/lib-amd/components/Slider/Slider.scss.d.ts +0 -13
  196. package/lib-amd/components/Slider/Slider.scss.js +0 -20
  197. package/lib-amd/components/Slider/Slider.scss.js.map +0 -1
  198. package/lib-amd/components/Slider/Slider.types.d.ts +0 -168
  199. package/lib-amd/components/Slider/Slider.types.js +0 -6
  200. package/lib-amd/components/Slider/Slider.types.js.map +0 -1
  201. package/lib-amd/components/Slider/index.d.ts +0 -4
  202. package/lib-amd/components/Slider/index.js +0 -9
  203. package/lib-amd/components/Slider/index.js.map +0 -1
  204. package/lib-amd/components/Slider/useSlider.d.ts +0 -317
  205. package/lib-amd/components/Slider/useSlider.js +0 -278
  206. package/lib-amd/components/Slider/useSlider.js.map +0 -1
  207. package/lib-amd/index.d.ts +0 -1
  208. package/lib-amd/index.js +0 -6
  209. package/lib-amd/index.js.map +0 -1
  210. package/lib-commonjs/components/Slider/Slider.base.d.ts +0 -3
  211. package/lib-commonjs/components/Slider/Slider.base.js +0 -35
  212. package/lib-commonjs/components/Slider/Slider.base.js.map +0 -1
  213. package/lib-commonjs/components/Slider/Slider.scss.d.ts +0 -13
  214. package/lib-commonjs/components/Slider/Slider.scss.js +0 -20
  215. package/lib-commonjs/components/Slider/Slider.scss.js.map +0 -1
  216. 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, 24 May 2021 07:33:47 GMT and should not be manually modified.
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:33:47 GMT
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
- To import React Slider components:
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
- const App = () => {
13
- return <Slider label="Slider" min={0} max={50} />;
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
  ```