@spothero/ui 14.3.4-beta.1 → 14.3.5-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 +6 -10
- package/CHANGELOG.tmp +5 -6
- package/package.json +1 -1
- package/styles/v2/components/index.js +0 -1
- package/v2/index-bundled.cjs.js +4 -3
- package/v2/index-bundled.cjs.js.map +1 -1
- package/v2/index-bundled.esm.js +4 -3
- package/v2/index-bundled.esm.js.map +1 -1
- package/v2/index-unbundled.cjs.js +706 -3440
- package/v2/index-unbundled.cjs.js.map +1 -1
- package/v2/index-unbundled.esm.js +696 -3429
- package/v2/index-unbundled.esm.js.map +1 -1
- package/styles/v2/components/ImageCarousel/ImageCarousel.jsx +0 -178
- package/styles/v2/components/ImageCarousel/ImageCarousel.spec.js +0 -53
- package/styles/v2/components/ImageCarousel/ImageCarousel.stories.js +0 -71
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
# 14.3.
|
|
2
|
-
|
|
1
|
+
# 14.3.5-beta.0 - 04/11/2022
|
|
3
2
|
## Miscellaneous Updates
|
|
4
|
-
* [[629fd70](https://github.com/spothero/fe-ui/commit/629fd70)] - `fix:` Try passing Button as prop (Gru Singh)
|
|
5
|
-
* [[18ee171](https://github.com/spothero/fe-ui/commit/18ee171)] - `refactor:` Add controls to container stories ([#280](https://github.com/spothero/fe-ui/pull/280)) (annaliarosed)
|
|
6
|
-
* `refactor:` Add controls to Container stories
|
|
7
|
-
* `refactor:` Extract all colors to utils
|
|
8
|
-
* `refactor:` Extract get all sizes to utils and use it in container stories
|
|
9
|
-
* `fix:` Remove unused importsCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
|
|
10
|
-
|
|
11
|
-
# 14.3.4-beta.0 - 04/11/2022
|
|
12
3
|
|
|
13
4
|
## Miscellaneous Updates
|
|
5
|
+
* [[ece7932](https://github.com/spothero/fe-ui/commit/ece7932)] - 14.3.4-beta.0 (sh-devtools-bot)
|
|
6
|
+
* [[c136546](https://github.com/spothero/fe-ui/commit/c136546)] - `fix:` Remove ImageCarousel as its failing on consumer (Gru Singh)
|
|
7
|
+
* [[629fd70](https://github.com/spothero/fe-ui/commit/629fd70)] - `fix:` Try passing Button as prop (Gru Singh)
|
|
14
8
|
* [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
|
|
15
9
|
|
|
10
|
+
# 14.3.4 - 04/11/2022
|
|
11
|
+
|
|
16
12
|
# 14.3.3 - 04/07/2022
|
|
17
13
|
|
|
18
14
|
## Miscellaneous Updates
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
# 14.3.
|
|
1
|
+
# 14.3.5-beta.0 - 04/11/2022
|
|
2
|
+
## Miscellaneous Updates
|
|
2
3
|
|
|
3
4
|
## Miscellaneous Updates
|
|
5
|
+
* [[ece7932](https://github.com/spothero/fe-ui/commit/ece7932)] - 14.3.4-beta.0 (sh-devtools-bot)
|
|
6
|
+
* [[c136546](https://github.com/spothero/fe-ui/commit/c136546)] - `fix:` Remove ImageCarousel as its failing on consumer (Gru Singh)
|
|
4
7
|
* [[629fd70](https://github.com/spothero/fe-ui/commit/629fd70)] - `fix:` Try passing Button as prop (Gru Singh)
|
|
5
|
-
* [[
|
|
6
|
-
* `refactor:` Add controls to Container stories
|
|
7
|
-
* `refactor:` Extract all colors to utils
|
|
8
|
-
* `refactor:` Extract get all sizes to utils and use it in container stories
|
|
9
|
-
* `fix:` Remove unused importsCo-authored-by: Annalia Destefano <annalia.destefano@spothero.com>
|
|
8
|
+
* [[016347f](https://github.com/spothero/fe-ui/commit/016347f)] - `fix:` Use relative path for Button inorder to fix build issue in consumer (Gru Singh)
|
|
10
9
|
|
package/package.json
CHANGED
|
@@ -20,7 +20,6 @@ export {default as ThemeProvider} from './ThemeProvider/ThemeProvider';
|
|
|
20
20
|
export {default as Card} from './Card/Card';
|
|
21
21
|
export {default as Icon} from './Icon/Icon';
|
|
22
22
|
export {default as Image} from './Image/Image';
|
|
23
|
-
export {default as ImageCarousel} from './ImageCarousel/ImageCarousel';
|
|
24
23
|
export {default as Loader} from './Loader/Loader';
|
|
25
24
|
export {default as Checkbox} from './Checkbox';
|
|
26
25
|
export {Popover, PopoverTrigger, PopoverContent} from './Popover';
|