@faststore/core 2.2.61 → 2.2.65
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 +40 -44
- 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 +5 -5
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/289.js +11 -8
- package/.next/server/chunks/312.js +3 -5
- package/.next/server/chunks/445.js +167 -0
- package/.next/server/chunks/520.js +1 -1
- package/.next/server/chunks/585.js +3 -25
- package/.next/server/chunks/74.js +1700 -86
- package/.next/server/chunks/863.js +0 -22
- package/.next/server/chunks/934.js +125 -0
- 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 +7 -7
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_error.js.nft.json +1 -1
- package/.next/server/pages/account.js.nft.json +1 -1
- package/.next/server/pages/api/graphql.js.nft.json +1 -1
- package/.next/server/pages/checkout.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 +2 -2
- package/.next/server/pages/index.js +1 -1
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/login.js.nft.json +1 -1
- package/.next/server/pages/s.js +5 -5
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/static/8bY0SvP6sqeD3bp_3Ie2r/_buildManifest.js +1 -0
- package/.next/static/chunks/{251.98f500dd8ba008ae.js → 251.65e0bb7a2f58b3db.js} +1 -1
- package/.next/static/chunks/585.ee7478bead8853ae.js +1 -0
- package/.next/static/chunks/800.8f4f91b39aa47346.js +1 -0
- package/.next/static/chunks/875-e59a8e9803b1d863.js +1 -0
- package/.next/static/chunks/pages/404-419470fcedcaba54.js +1 -0
- package/.next/static/chunks/pages/500-337a57eb2c9da6ba.js +1 -0
- package/.next/static/chunks/pages/[...slug]-4fd81d8f84dd561f.js +1 -0
- package/.next/static/chunks/pages/[slug]/{p-fd236c3b1d28734d.js → p-551e8bbc72bab530.js} +1 -1
- package/.next/static/chunks/pages/{index-66a1b740f1101ce4.js → index-7d0e3d61afd0a37c.js} +1 -1
- package/.next/static/chunks/pages/login-c38b2107d504199c.js +1 -0
- package/.next/static/chunks/pages/s-a6e95c34a89ccbfb.js +1 -0
- package/.next/static/chunks/webpack-adf61d0bc3a8dbb3.js +1 -0
- package/.next/static/css/d2e8564f2bf133d9.css +1 -0
- package/.next/static/css/{e84fc497732ea596.css → e772e7786bb4dee9.css} +1 -1
- package/.next/static/css/eababca67e15ef4b.css +1 -0
- package/.next/static/css/f0e64672053efd0c.css +1 -0
- package/.next/trace +81 -81
- package/.turbo/turbo-build.log +13 -13
- package/.turbo/turbo-test.log +9 -9
- package/package.json +4 -4
- package/src/components/cart/CartSidebar/section.module.scss +1 -0
- package/src/components/product/ProductGrid/ProductGrid.tsx +8 -8
- package/src/components/search/Filter/Filter.tsx +6 -5
- package/src/components/sections/Navbar/section.module.scss +1 -0
- package/src/components/sections/ProductDetails/DefaultComponents.ts +2 -2
- package/src/components/sections/ProductGallery/DefaultComponents.ts +29 -0
- package/src/components/sections/ProductGallery/OverriddenDefaultProductGallery.ts +12 -0
- package/src/components/sections/ProductGallery/ProductGallery.tsx +4 -2
- package/src/components/sections/ProductShelf/section.module.scss +1 -0
- package/src/components/sections/ProductTiles/section.module.scss +2 -1
- package/src/components/templates/ProductListingPage/ProductListing.tsx +1 -1
- package/src/components/templates/SearchPage/SearchPage.tsx +1 -1
- package/src/components/ui/ProductDetails/ProductDetailsSettings.tsx +8 -48
- package/src/components/ui/ProductGallery/ProductGallery.tsx +12 -10
- package/src/sdk/overrides/sections.tsx +5 -1
- package/src/typings/overrides.ts +5 -4
- package/.next/server/chunks/732.js +0 -1887
- package/.next/static/YaAOEVbZrM4Y0xL8O4SKx/_buildManifest.js +0 -1
- package/.next/static/chunks/238-6cdd6e7841eba836.js +0 -1
- package/.next/static/chunks/585.f056dcd6e8625c41.js +0 -1
- package/.next/static/chunks/800.ea75aa39e939d9af.js +0 -1
- package/.next/static/chunks/875-3b0f69008ecb7897.js +0 -1
- package/.next/static/chunks/pages/404-340e5868f79ee704.js +0 -1
- package/.next/static/chunks/pages/500-ee2a5efc5808cdd4.js +0 -1
- package/.next/static/chunks/pages/[...slug]-8e6c8b59791c31e9.js +0 -1
- package/.next/static/chunks/pages/login-e5ee36783a4877fd.js +0 -1
- package/.next/static/chunks/pages/s-669d2eccade79e75.js +0 -1
- package/.next/static/chunks/webpack-41b4f40c5b7ff474.js +0 -1
- package/.next/static/css/014e8b0d9020cd52.css +0 -1
- package/.next/static/css/0dc997f9da3027b7.css +0 -1
- package/.next/static/css/4a189916c3edc75d.css +0 -1
- package/.next/static/css/cf062feb79245123.css +0 -1
- package/src/components/sections/ProductGallery/Overrides.tsx +0 -65
- /package/.next/static/{YaAOEVbZrM4Y0xL8O4SKx → 8bY0SvP6sqeD3bp_3Ie2r}/_ssgManifest.js +0 -0
package/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8bY0SvP6sqeD3bp_3Ie2r
|
|
@@ -5,114 +5,110 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/8bY0SvP6sqeD3bp_3Ie2r/_buildManifest.js",
|
|
9
|
+
"static/8bY0SvP6sqeD3bp_3Ie2r/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [],
|
|
12
12
|
"pages": {
|
|
13
13
|
"/": [
|
|
14
|
-
"static/chunks/webpack-
|
|
14
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
15
15
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
16
16
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
17
17
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
18
|
-
"static/css/
|
|
19
|
-
"static/chunks/875-
|
|
20
|
-
"static/css/
|
|
21
|
-
"static/chunks/pages/index-
|
|
18
|
+
"static/css/f0e64672053efd0c.css",
|
|
19
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
20
|
+
"static/css/d2e8564f2bf133d9.css",
|
|
21
|
+
"static/chunks/pages/index-7d0e3d61afd0a37c.js"
|
|
22
22
|
],
|
|
23
23
|
"/404": [
|
|
24
|
-
"static/chunks/webpack-
|
|
24
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
25
25
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
26
26
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
27
27
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
28
|
-
"static/css/
|
|
29
|
-
"static/chunks/875-
|
|
28
|
+
"static/css/f0e64672053efd0c.css",
|
|
29
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
30
30
|
"static/css/df588bb98c0b0ca6.css",
|
|
31
|
-
"static/chunks/pages/404-
|
|
31
|
+
"static/chunks/pages/404-419470fcedcaba54.js"
|
|
32
32
|
],
|
|
33
33
|
"/500": [
|
|
34
|
-
"static/chunks/webpack-
|
|
34
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
35
35
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
36
36
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
37
37
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
38
|
-
"static/css/
|
|
39
|
-
"static/chunks/875-
|
|
38
|
+
"static/css/f0e64672053efd0c.css",
|
|
39
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
40
40
|
"static/css/df588bb98c0b0ca6.css",
|
|
41
|
-
"static/chunks/pages/500-
|
|
41
|
+
"static/chunks/pages/500-337a57eb2c9da6ba.js"
|
|
42
42
|
],
|
|
43
43
|
"/[...slug]": [
|
|
44
|
-
"static/chunks/webpack-
|
|
44
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
45
45
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
46
46
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
47
47
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
48
|
-
"static/css/
|
|
49
|
-
"static/chunks/875-
|
|
50
|
-
"static/css/
|
|
51
|
-
"static/chunks/
|
|
52
|
-
"static/css/0dc997f9da3027b7.css",
|
|
53
|
-
"static/chunks/pages/[...slug]-8e6c8b59791c31e9.js"
|
|
48
|
+
"static/css/f0e64672053efd0c.css",
|
|
49
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
50
|
+
"static/css/eababca67e15ef4b.css",
|
|
51
|
+
"static/chunks/pages/[...slug]-4fd81d8f84dd561f.js"
|
|
54
52
|
],
|
|
55
53
|
"/[slug]/p": [
|
|
56
|
-
"static/chunks/webpack-
|
|
54
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
57
55
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
58
56
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
59
57
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
60
|
-
"static/css/
|
|
61
|
-
"static/chunks/875-
|
|
58
|
+
"static/css/f0e64672053efd0c.css",
|
|
59
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
62
60
|
"static/css/e67c73ff7fbc8c54.css",
|
|
63
|
-
"static/chunks/pages/[slug]/p-
|
|
61
|
+
"static/chunks/pages/[slug]/p-551e8bbc72bab530.js"
|
|
64
62
|
],
|
|
65
63
|
"/_app": [
|
|
66
|
-
"static/chunks/webpack-
|
|
64
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
67
65
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
68
66
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
69
67
|
"static/css/5d1f64b61ea581f4.css",
|
|
70
68
|
"static/chunks/pages/_app-30b9666307e4b3b1.js"
|
|
71
69
|
],
|
|
72
70
|
"/_error": [
|
|
73
|
-
"static/chunks/webpack-
|
|
71
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
74
72
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
75
73
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
76
74
|
"static/chunks/pages/_error-319451dea77827a6.js"
|
|
77
75
|
],
|
|
78
76
|
"/account": [
|
|
79
|
-
"static/chunks/webpack-
|
|
77
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
80
78
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
81
79
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
82
80
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
83
|
-
"static/css/
|
|
84
|
-
"static/chunks/875-
|
|
81
|
+
"static/css/f0e64672053efd0c.css",
|
|
82
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
85
83
|
"static/chunks/pages/account-acd169fb6e00021f.js"
|
|
86
84
|
],
|
|
87
85
|
"/checkout": [
|
|
88
|
-
"static/chunks/webpack-
|
|
86
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
89
87
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
90
88
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
91
89
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
92
|
-
"static/css/
|
|
93
|
-
"static/chunks/875-
|
|
90
|
+
"static/css/f0e64672053efd0c.css",
|
|
91
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
94
92
|
"static/chunks/pages/checkout-5de711ccb807644b.js"
|
|
95
93
|
],
|
|
96
94
|
"/login": [
|
|
97
|
-
"static/chunks/webpack-
|
|
95
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
98
96
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
99
97
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
100
98
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
101
|
-
"static/css/
|
|
102
|
-
"static/chunks/875-
|
|
99
|
+
"static/css/f0e64672053efd0c.css",
|
|
100
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
103
101
|
"static/css/df588bb98c0b0ca6.css",
|
|
104
|
-
"static/chunks/pages/login-
|
|
102
|
+
"static/chunks/pages/login-c38b2107d504199c.js"
|
|
105
103
|
],
|
|
106
104
|
"/s": [
|
|
107
|
-
"static/chunks/webpack-
|
|
105
|
+
"static/chunks/webpack-adf61d0bc3a8dbb3.js",
|
|
108
106
|
"static/chunks/framework-dfd14d7ce6600b03.js",
|
|
109
107
|
"static/chunks/main-e4e873ee741162eb.js",
|
|
110
108
|
"static/chunks/897-b07932d813bb7dac.js",
|
|
111
|
-
"static/css/
|
|
112
|
-
"static/chunks/875-
|
|
113
|
-
"static/
|
|
114
|
-
"static/chunks/238-6cdd6e7841eba836.js",
|
|
115
|
-
"static/chunks/pages/s-669d2eccade79e75.js"
|
|
109
|
+
"static/css/f0e64672053efd0c.css",
|
|
110
|
+
"static/chunks/875-e59a8e9803b1d863.js",
|
|
111
|
+
"static/chunks/pages/s-a6e95c34a89ccbfb.js"
|
|
116
112
|
]
|
|
117
113
|
},
|
|
118
114
|
"ampFirstPages": []
|