@faststore/core 2.0.72-alpha.0 → 2.0.74-alpha.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/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +23 -23
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/react-loadable-manifest.json +6 -6
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/312.js +140 -101
- package/.next/server/chunks/{528.js → 317.js} +8 -8
- package/.next/server/chunks/371.js +14 -27
- package/.next/server/chunks/{352.js → 377.js} +3 -79
- package/.next/server/chunks/650.js +3 -3
- package/.next/server/chunks/664.js +124 -0
- package/.next/server/chunks/953.js +36 -50
- package/.next/server/chunks/98.js +229 -87
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/middleware-react-loadable-manifest.js +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.js.nft.json +1 -1
- package/.next/server/pages/[...slug].js +2 -2
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js +62 -65
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js +14 -42
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/en-US/404.html +2 -2
- package/.next/server/pages/en-US/500.html +2 -2
- package/.next/server/pages/en-US/account.html +2 -2
- package/.next/server/pages/en-US/checkout.html +2 -2
- package/.next/server/pages/en-US/login.html +2 -2
- package/.next/server/pages/en-US/s.html +2 -2
- package/.next/server/pages/en-US.html +3 -3
- package/.next/server/pages/en-US.json +1 -1
- package/.next/server/pages/index.js +2 -2
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/server/pages-manifest.json +1 -1
- package/.next/static/{G3-BZ2q8Yidjo2K-piTay → M7OQ7A7JAyTrgvf0m1Ztu}/_buildManifest.js +1 -1
- package/.next/static/chunks/337-4b719ca7a86d8d8c.js +1 -0
- package/.next/static/chunks/650.807852d1c36bfe44.js +1 -0
- package/.next/static/chunks/791.e9be2b77d132c1b1.js +1 -0
- package/.next/static/chunks/953.77a48c854f628dcf.js +1 -0
- package/.next/static/chunks/pages/{[...slug]-320aee38665be1f9.js → [...slug]-9443b18a60d89746.js} +1 -1
- package/.next/static/chunks/pages/[slug]/p-cb8ef12f6449cf26.js +1 -0
- package/.next/static/chunks/pages/_app-286bcfa03a5e17a7.js +1 -0
- package/.next/static/chunks/pages/{index-d6f91f5ff8ab8b48.js → index-6717326cc207d674.js} +1 -1
- package/.next/static/chunks/webpack-8f397ae160440a8e.js +1 -0
- package/.next/static/css/430b8cafbf7c23c1.css +1 -0
- package/.next/static/css/9dd1d1084d254c66.css +1 -0
- package/.next/static/css/b2f16bd4b93e0aca.css +1 -0
- package/.next/static/css/d78f4c5305f398ac.css +1 -0
- package/.next/static/css/e1c24beb73906eed.css +1 -0
- package/.next/static/css/{1bc30e7e0de1217d.css → e63697a078fd522e.css} +1 -1
- package/.next/trace +64 -65
- package/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +12 -0
- package/package.json +4 -5
- package/src/components/cart/CartSidebar/CartSidebar.stories.mdx +1 -15
- package/src/components/cart/CartSidebar/CartSidebar.tsx +11 -14
- package/src/components/cart/CartSidebar/cart-sidebar.module.scss +2 -16
- package/src/components/common/Navbar/NavbarSlider.tsx +8 -14
- package/src/components/common/Navbar/navbar-slider.module.scss +2 -9
- package/src/components/regionalization/RegionalizationModal/RegionalizationModalContent.tsx +1 -1
- package/src/components/search/Filter/FilterSlider.stories.mdx +0 -9
- package/src/components/search/Filter/FilterSlider.tsx +18 -20
- package/src/components/search/Filter/filter-slider.module.scss +2 -12
- package/src/components/search/SearchDropdown/SearchDropdown.tsx +2 -2
- package/src/components/search/SearchHistory/SearchHistory.tsx +17 -35
- package/src/components/search/SearchInput/SearchInput.stories.mdx +0 -4
- package/src/components/search/SearchInput/search-input.module.scss +9 -3
- package/src/components/search/SearchTop/SearchTop.tsx +32 -59
- package/src/components/search/search.module.scss +0 -14
- package/src/components/sections/Hero/Hero.tsx +4 -4
- package/src/components/sections/ProductDetails/ProductDetails.tsx +4 -5
- package/src/components/sections/ProductDetails/product-details.module.scss +1 -1
- package/src/components/ui/Gift/Gift.tsx +10 -33
- package/src/components/ui/ShippingSimulation/ShippingSimulation.tsx +2 -2
- package/.next/server/chunks/731.js +0 -282
- package/.next/static/chunks/158.b4898013c4a4f10c.js +0 -1
- package/.next/static/chunks/337-12ae3c3ff71e4dcf.js +0 -1
- package/.next/static/chunks/650.32d18858075fbe98.js +0 -1
- package/.next/static/chunks/953.b6387969c2dcdcae.js +0 -1
- package/.next/static/chunks/pages/[slug]/p-d64952a99f04e24d.js +0 -1
- package/.next/static/chunks/pages/_app-8bf35fcba4db8198.js +0 -1
- package/.next/static/chunks/webpack-1bf4acba8ca90a1e.js +0 -1
- package/.next/static/css/4d4cbc524ba58b0a.css +0 -1
- package/.next/static/css/5f6541bfaaa52b08.css +0 -1
- package/.next/static/css/8e980d3191396e67.css +0 -1
- package/.next/static/css/e8f44fcf61ab2e4a.css +0 -1
- package/.next/static/css/f03ffa52b8ad3e4c.css +0 -1
- package/src/components/ui/Price/Price.stories.mdx +0 -194
- package/src/components/ui/Price/Price.tsx +0 -31
- package/src/components/ui/Price/index.ts +0 -1
- package/src/components/ui/Price/price.module.scss +0 -27
- package/src/components/ui/SlideOver/SlideOver.stories.mdx +0 -283
- package/src/components/ui/SlideOver/SlideOver.tsx +0 -59
- package/src/components/ui/SlideOver/index.ts +0 -1
- package/src/components/ui/SlideOver/slide-over.module.scss +0 -63
- /package/.next/static/{G3-BZ2q8Yidjo2K-piTay → M7OQ7A7JAyTrgvf0m1Ztu}/_ssgManifest.js +0 -0
package/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
M7OQ7A7JAyTrgvf0m1Ztu
|
|
@@ -5,97 +5,97 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/M7OQ7A7JAyTrgvf0m1Ztu/_buildManifest.js",
|
|
9
|
+
"static/M7OQ7A7JAyTrgvf0m1Ztu/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [],
|
|
12
12
|
"pages": {
|
|
13
13
|
"/": [
|
|
14
|
-
"static/chunks/webpack-
|
|
14
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
15
15
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
16
16
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
17
17
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
18
18
|
"static/chunks/260-994385416f68673d.js",
|
|
19
19
|
"static/chunks/817-728f854c2948afc0.js",
|
|
20
20
|
"static/css/43d61b402f41569b.css",
|
|
21
|
-
"static/chunks/pages/index-
|
|
21
|
+
"static/chunks/pages/index-6717326cc207d674.js"
|
|
22
22
|
],
|
|
23
23
|
"/404": [
|
|
24
|
-
"static/chunks/webpack-
|
|
24
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
25
25
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
26
26
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
27
27
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
28
28
|
"static/chunks/pages/404-ba608a2a9f0c420a.js"
|
|
29
29
|
],
|
|
30
30
|
"/500": [
|
|
31
|
-
"static/chunks/webpack-
|
|
31
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
32
32
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
33
33
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
34
34
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
35
35
|
"static/chunks/pages/500-910883c20541d9ce.js"
|
|
36
36
|
],
|
|
37
37
|
"/[...slug]": [
|
|
38
|
-
"static/chunks/webpack-
|
|
38
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
39
39
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
40
40
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
41
41
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
42
42
|
"static/chunks/260-994385416f68673d.js",
|
|
43
|
-
"static/chunks/337-
|
|
44
|
-
"static/css/
|
|
45
|
-
"static/chunks/pages/[...slug]-
|
|
43
|
+
"static/chunks/337-4b719ca7a86d8d8c.js",
|
|
44
|
+
"static/css/430b8cafbf7c23c1.css",
|
|
45
|
+
"static/chunks/pages/[...slug]-9443b18a60d89746.js"
|
|
46
46
|
],
|
|
47
47
|
"/[slug]/p": [
|
|
48
|
-
"static/chunks/webpack-
|
|
48
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
49
49
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
50
50
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
51
51
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
52
52
|
"static/chunks/260-994385416f68673d.js",
|
|
53
53
|
"static/chunks/817-728f854c2948afc0.js",
|
|
54
|
-
"static/css/
|
|
55
|
-
"static/chunks/pages/[slug]/p-
|
|
54
|
+
"static/css/e63697a078fd522e.css",
|
|
55
|
+
"static/chunks/pages/[slug]/p-cb8ef12f6449cf26.js"
|
|
56
56
|
],
|
|
57
57
|
"/_app": [
|
|
58
|
-
"static/chunks/webpack-
|
|
58
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
59
59
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
60
60
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
61
|
-
"static/css/
|
|
62
|
-
"static/chunks/pages/_app-
|
|
61
|
+
"static/css/d78f4c5305f398ac.css",
|
|
62
|
+
"static/chunks/pages/_app-286bcfa03a5e17a7.js"
|
|
63
63
|
],
|
|
64
64
|
"/_error": [
|
|
65
|
-
"static/chunks/webpack-
|
|
65
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
66
66
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
67
67
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
68
68
|
"static/chunks/pages/_error-a7a0c1d9bfbb4f38.js"
|
|
69
69
|
],
|
|
70
70
|
"/account": [
|
|
71
|
-
"static/chunks/webpack-
|
|
71
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
72
72
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
73
73
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
74
74
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
75
75
|
"static/chunks/pages/account-f19102933e6fd84c.js"
|
|
76
76
|
],
|
|
77
77
|
"/checkout": [
|
|
78
|
-
"static/chunks/webpack-
|
|
78
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
79
79
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
80
80
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
81
81
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
82
82
|
"static/chunks/pages/checkout-f8cb7cb22225ef9d.js"
|
|
83
83
|
],
|
|
84
84
|
"/login": [
|
|
85
|
-
"static/chunks/webpack-
|
|
85
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
86
86
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
87
87
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
88
88
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
89
89
|
"static/chunks/pages/login-0b9ea80d9fa0f91b.js"
|
|
90
90
|
],
|
|
91
91
|
"/s": [
|
|
92
|
-
"static/chunks/webpack-
|
|
92
|
+
"static/chunks/webpack-8f397ae160440a8e.js",
|
|
93
93
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
94
94
|
"static/chunks/main-9746772201fe3ac1.js",
|
|
95
95
|
"static/chunks/351-a4e28d64f48c5269.js",
|
|
96
96
|
"static/chunks/153-a20e3f2da180607e.js",
|
|
97
|
-
"static/chunks/337-
|
|
98
|
-
"static/css/
|
|
97
|
+
"static/chunks/337-4b719ca7a86d8d8c.js",
|
|
98
|
+
"static/css/9dd1d1084d254c66.css",
|
|
99
99
|
"static/chunks/pages/s-86fe1e3303388123.js"
|
|
100
100
|
]
|
|
101
101
|
},
|