@spothero/ui 14.3.3 → 14.3.4-beta.0
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 +5 -0
- package/CHANGELOG.tmp +2 -3
- package/package.json +1 -1
- package/styles/v2/components/ImageCarousel/ImageCarousel.jsx +1 -1
- package/v1/index-bundled.cjs.js +1 -1
- package/v1/index-bundled.cjs.js.map +1 -1
- package/v1/index-bundled.esm.js +1 -1
- package/v1/index-bundled.esm.js.map +1 -1
- package/v1/index-unbundled.cjs.js +35 -35
- package/v1/index-unbundled.esm.js +35 -35
- package/v2/index-bundled.cjs.js +1 -1
- package/v2/index-bundled.cjs.js.map +1 -1
- package/v2/index-bundled.esm.js +3 -3
- package/v2/index-bundled.esm.js.map +1 -1
- package/v2/index-unbundled.cjs.js +147 -147
- package/v2/index-unbundled.cjs.js.map +1 -1
- package/v2/index-unbundled.esm.js +147 -147
- package/v2/index-unbundled.esm.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
# 14.3.4-beta.0 - 04/11/2022
|
|
2
|
+
|
|
3
|
+
## Miscellaneous Updates
|
|
4
|
+
* [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
|
|
5
|
+
|
|
1
6
|
# 14.3.3 - 04/07/2022
|
|
2
7
|
|
|
3
8
|
## Miscellaneous Updates
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
# 14.3.
|
|
1
|
+
# 14.3.4-beta.0 - 04/11/2022
|
|
2
2
|
|
|
3
3
|
## Miscellaneous Updates
|
|
4
|
-
* [[
|
|
5
|
-
* `refactor:` Add controls to checkbox stories
|
|
4
|
+
* [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
|
|
6
5
|
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import {Box} from '@chakra-ui/react';
|
|
|
4
4
|
import useEmblaCarousel from 'embla-carousel-react';
|
|
5
5
|
import IconChevronLeft from '@spothero/icons/chevron-left';
|
|
6
6
|
import IconChevronRight from '@spothero/icons/chevron-right';
|
|
7
|
-
import Button from '
|
|
7
|
+
import {Button} from '../Button';
|
|
8
8
|
|
|
9
9
|
const ImageCarousel = ({images, width, height, ...props}) => {
|
|
10
10
|
const imgWidth = width ? `${width}rem` : '100%';
|