@scbt-ecom/ui 0.64.1 → 0.66.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/dist/{index-B00qeS0W.js → index-CywQGF6V.js} +9405 -9362
- package/dist/index-CywQGF6V.js.map +1 -0
- package/dist/shared/types/dicriminatedUnion.d.ts +7 -0
- package/dist/shared/types/index.d.ts +2 -0
- package/dist/shared/types/keysOf.d.ts +5 -0
- package/dist/shared/ui/button/index.d.ts +1 -0
- package/dist/shared/ui/button/model/helpers.d.ts +18 -1
- package/dist/shared/ui/buttonIcon/ButtonIcon.d.ts +1 -1
- package/dist/shared/ui/carousel/CarouselBase.d.ts +29 -0
- package/dist/shared/ui/carousel/index.d.ts +3 -0
- package/dist/shared/ui/carousel/model/helpers.d.ts +9 -0
- package/dist/shared/ui/carousel/model/hooks/index.d.ts +3 -0
- package/dist/shared/ui/carousel/model/hooks/useArrowNavigation.d.ts +12 -0
- package/dist/shared/ui/carousel/model/hooks/useCarousel.d.ts +12 -0
- package/dist/shared/ui/carousel/model/hooks/useDotsNavigation.d.ts +15 -0
- package/dist/shared/ui/carousel/model/index.d.ts +3 -0
- package/dist/shared/ui/carousel/model/types.d.ts +27 -0
- package/dist/shared/ui/carousel/ui/ArrowNavigationButton.d.ts +13 -0
- package/dist/shared/ui/carousel/ui/CarouselContent.d.ts +16 -0
- package/dist/shared/ui/carousel/ui/CarouselSlide.d.ts +10 -0
- package/dist/shared/ui/carousel/ui/ContainerWithNavigation.d.ts +16 -0
- package/dist/shared/ui/carousel/ui/DotsNavigations.d.ts +13 -0
- package/dist/shared/ui/carousel/ui/index.d.ts +5 -0
- package/dist/shared/ui/carousel/ui/slideVariants/SlideFullScreen.d.ts +19 -0
- package/dist/shared/ui/carousel/ui/slideVariants/SlideOnlyImage.d.ts +11 -0
- package/dist/shared/ui/carousel/ui/slideVariants/SlideProductCard.d.ts +20 -0
- package/dist/shared/ui/carousel/ui/slideVariants/index.d.ts +3 -0
- package/dist/shared/ui/customLink/model/helpers.d.ts +1 -1
- package/dist/shared/ui/index.d.ts +1 -0
- package/dist/shared/ui/loader/model/helpers.d.ts +1 -1
- package/dist/ui.js +2468 -858
- package/dist/ui.js.map +1 -1
- package/dist/widget.js +1 -1
- package/dist/widget.js.map +1 -1
- package/package.json +5 -2
- package/dist/index-B00qeS0W.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scbt-ecom/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -130,6 +130,9 @@
|
|
|
130
130
|
"clsx": "^2.1.1",
|
|
131
131
|
"cypress": "^14.0.0",
|
|
132
132
|
"date-fns": "^4.1.0",
|
|
133
|
+
"embla-carousel": "^8.5.2",
|
|
134
|
+
"embla-carousel-autoplay": "^8.5.2",
|
|
135
|
+
"embla-carousel-react": "^8.5.2",
|
|
133
136
|
"eslint": "^9.13.0",
|
|
134
137
|
"eslint-plugin-import": "^2.31.0",
|
|
135
138
|
"eslint-plugin-jsx-a11y": "^6.10.1",
|
|
@@ -154,7 +157,7 @@
|
|
|
154
157
|
"react-day-picker": "^9.4.1",
|
|
155
158
|
"react-dom": "^18.3.1",
|
|
156
159
|
"react-dropzone": "^14.2.3",
|
|
157
|
-
"react-hook-form": "^7.
|
|
160
|
+
"react-hook-form": "^7.53.1",
|
|
158
161
|
"react-hot-toast": "^2.4.1",
|
|
159
162
|
"react-number-format": "^5.4.0",
|
|
160
163
|
"semantic-release": "^24.2.0",
|