@atom-learning/components 1.20.0 → 1.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -12
- package/dist/docs/Stepper.mdx +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
## [1.20.1](https://github.com/Atom-Learning/components/compare/v1.20.0...v1.20.1) (2022-07-18)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* deploy script name ([1d76584](https://github.com/Atom-Learning/components/commit/1d765841fef528d0a77d005fa926743e57c62a53))
|
|
8
|
-
* remove commented code ([ae655ae](https://github.com/Atom-Learning/components/commit/ae655ae18a7efa6ce3a6b0ab8ef2570dafce41bb))
|
|
9
|
-
* remove typechecking on flaky files ([523af15](https://github.com/Atom-Learning/components/commit/523af15868ec1fb060aaecd22a6614c9bcbb166d))
|
|
10
|
-
* version reference in components page ([89f0624](https://github.com/Atom-Learning/components/commit/89f062462521487274424748c95303925667212d))
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* add up to date version with Badge, fix SPA routing ([00fddc0](https://github.com/Atom-Learning/components/commit/00fddc076603c988e608be882813c616c0647bf3))
|
|
16
|
-
* pass CarouselProviderProps from Carousel onto CarouselProvider ([32d4a12](https://github.com/Atom-Learning/components/commit/32d4a12ba8a774d0eb0714de2eddb8111c317f46))
|
|
6
|
+
* documentation error ([1fdf7ff](https://github.com/Atom-Learning/components/commit/1fdf7ff7f41e4c9bc6b9bcd8fd9c398fbc2dc825))
|
|
17
7
|
|
|
18
8
|
# [1.4.0](https://github.com/Atom-Learning/components/compare/v1.3.0...v1.4.0) (2022-04-11)
|
|
19
9
|
|
package/dist/docs/Stepper.mdx
CHANGED
|
@@ -93,12 +93,12 @@ Below is an example that shows how to use the controlled component. Each object
|
|
|
93
93
|
</Stepper>
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
The root `Stepper` component also allows the user to pass a `
|
|
96
|
+
The root `Stepper` component also allows the user to pass a `direction` prop in order to the alternate the component direction .
|
|
97
97
|
|
|
98
98
|
Below is an example that shows how to render steps in vertical direction.
|
|
99
99
|
|
|
100
100
|
```tsx preview
|
|
101
|
-
<Stepper stepCount={2}
|
|
101
|
+
<Stepper stepCount={2} direction="vertical">
|
|
102
102
|
<Stepper.Steps />
|
|
103
103
|
</Stepper>
|
|
104
104
|
```
|