@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 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.3 - 04/07/2022
1
+ # 14.3.4-beta.0 - 04/11/2022
2
2
 
3
3
  ## Miscellaneous Updates
4
- * [[8511f03](https://github.com/spothero/fe-ui/commit/8511f03)] - `refactor:` Add controls to checkbox stories ([#279](https://github.com/spothero/fe-ui/pull/279)) (annaliarosed)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spothero/ui",
3
- "version": "14.3.3",
3
+ "version": "14.3.4-beta.0",
4
4
  "description": "SpotHero's React component UI library.",
5
5
  "main": "v2/index-bundled.cjs.js",
6
6
  "module": "v2/index.js",
@@ -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 'v2/components/Button/Button';
7
+ import {Button} from '../Button';
8
8
 
9
9
  const ImageCarousel = ({images, width, height, ...props}) => {
10
10
  const imgWidth = width ? `${width}rem` : '100%';