@faststore/core 2.0.151-alpha.0 → 2.0.153-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.
Files changed (110) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +44 -44
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/eslint/.cache_1gneedd +1 -1
  6. package/.next/cache/webpack/client-production/0.pack +0 -0
  7. package/.next/cache/webpack/client-production/index.pack +0 -0
  8. package/.next/cache/webpack/server-production/0.pack +0 -0
  9. package/.next/cache/webpack/server-production/index.pack +0 -0
  10. package/.next/prerender-manifest.json +1 -1
  11. package/.next/react-loadable-manifest.json +5 -5
  12. package/.next/routes-manifest.json +1 -1
  13. package/.next/server/chunks/104.js +1 -1
  14. package/.next/server/chunks/{746.js → 289.js} +12 -8
  15. package/.next/server/chunks/312.js +35 -8
  16. package/.next/server/chunks/401.js +5 -5
  17. package/.next/server/chunks/74.js +30 -14
  18. package/.next/server/chunks/907.js +433 -353
  19. package/.next/server/middleware-build-manifest.js +1 -1
  20. package/.next/server/middleware-react-loadable-manifest.js +1 -1
  21. package/.next/server/pages/404.js.nft.json +1 -1
  22. package/.next/server/pages/500.js.nft.json +1 -1
  23. package/.next/server/pages/[...slug].js +30 -15
  24. package/.next/server/pages/[...slug].js.nft.json +1 -1
  25. package/.next/server/pages/[slug]/p.js.nft.json +1 -1
  26. package/.next/server/pages/_app.js.nft.json +1 -1
  27. package/.next/server/pages/account.js.nft.json +1 -1
  28. package/.next/server/pages/checkout.js.nft.json +1 -1
  29. package/.next/server/pages/en-US/404.html +2 -2
  30. package/.next/server/pages/en-US/500.html +2 -2
  31. package/.next/server/pages/en-US/account.html +2 -2
  32. package/.next/server/pages/en-US/checkout.html +2 -2
  33. package/.next/server/pages/en-US/login.html +2 -2
  34. package/.next/server/pages/en-US/s.html +2 -2
  35. package/.next/server/pages/en-US/s.json +1 -1
  36. package/.next/server/pages/en-US.html +2 -2
  37. package/.next/server/pages/index.js.nft.json +1 -1
  38. package/.next/server/pages/login.js.nft.json +1 -1
  39. package/.next/server/pages/s.js +30 -14
  40. package/.next/server/pages/s.js.nft.json +1 -1
  41. package/.next/server/pages-manifest.json +5 -5
  42. package/.next/static/Jdc52lXcDWIk2D0wQ-Z4p/_buildManifest.js +1 -0
  43. package/.next/static/chunks/0-0e3914d9fc148f74.js +1 -0
  44. package/.next/static/chunks/{366-4a0572a47e2225d9.js → 366-c0bfd9890048babf.js} +1 -1
  45. package/.next/static/chunks/377-b3616792e1f5f651.js +1 -0
  46. package/.next/static/chunks/495.0ecd099878b2a36d.js +1 -0
  47. package/.next/static/chunks/64.ebbe1d2b40f980c7.js +1 -0
  48. package/.next/static/chunks/pages/{[...slug]-3c749c7d8561eb90.js → [...slug]-bd1885159f7dfbba.js} +1 -1
  49. package/.next/static/chunks/pages/s-1cbe740b5b781d28.js +1 -0
  50. package/.next/static/chunks/webpack-eb5ed34c93d07fac.js +1 -0
  51. package/.next/static/css/{2e9de35e0cb999e0.css → 1323734429a8aa40.css} +1 -1
  52. package/.next/static/css/7d822a137c54a781.css +1 -0
  53. package/.next/static/css/a0feab89b7648c5c.css +1 -0
  54. package/.next/static/css/a13a9f9cd349d906.css +1 -0
  55. package/.next/static/css/a45618030b16a245.css +1 -0
  56. package/.next/static/css/bde408cc006e64f8.css +1 -0
  57. package/.next/static/css/d462d9478ce00021.css +1 -0
  58. package/.next/trace +69 -69
  59. package/.turbo/turbo-build.log +6 -6
  60. package/CHANGELOG.md +12 -0
  61. package/cms/faststore/content-types.json +96 -2
  62. package/cms/faststore/sections.json +176 -0
  63. package/package.json +4 -4
  64. package/src/components/navigation/Navbar/Navbar.tsx +14 -8
  65. package/src/components/product/ProductGrid/ProductGrid.tsx +8 -3
  66. package/src/components/search/Filter/Filter.tsx +22 -3
  67. package/src/components/search/Filter/FilterSlider.tsx +14 -4
  68. package/src/components/search/SearchDropdown/SearchDropdown.tsx +17 -7
  69. package/src/components/search/SearchInput/SearchInput.tsx +10 -5
  70. package/src/components/search/SearchTop/SearchTop.tsx +17 -3
  71. package/src/components/search/Sort/Sort.tsx +21 -3
  72. package/src/components/sections/Navbar/Navbar.tsx +5 -0
  73. package/src/components/sections/ProductGallery/ProductGallery.tsx +44 -154
  74. package/src/components/ui/ProductGallery/ProductGallery.tsx +220 -0
  75. package/src/components/{sections → ui}/ProductGallery/ProductGalleryPage.tsx +9 -2
  76. package/src/components/ui/ProductGallery/index.ts +1 -0
  77. package/src/pages/[...slug].tsx +34 -17
  78. package/src/pages/s.tsx +38 -13
  79. package/src/sdk/search/formatSearchPath.ts +8 -1
  80. package/src/server/cms.ts +11 -2
  81. package/.next/static/SPkTG9-gxU2UejLG7FvOw/_buildManifest.js +0 -1
  82. package/.next/static/chunks/170.c17ce564bb568265.js +0 -1
  83. package/.next/static/chunks/327-43715af4f3fffaf6.js +0 -1
  84. package/.next/static/chunks/377-61e89c711b136605.js +0 -1
  85. package/.next/static/chunks/495.8ffebac98e9475dc.js +0 -1
  86. package/.next/static/chunks/pages/s-890c0c4b88484224.js +0 -1
  87. package/.next/static/chunks/webpack-5051dce9659282f3.js +0 -1
  88. package/.next/static/css/1de3e7b6ba8daaac.css +0 -1
  89. package/.next/static/css/43b1b3821e21630c.css +0 -1
  90. package/.next/static/css/48af598df5fe042d.css +0 -1
  91. package/.next/static/css/923c4a942e57bc91.css +0 -1
  92. package/.next/static/css/e434797816e17065.css +0 -1
  93. package/.next/static/css/e7a6f3559cf45c62.css +0 -1
  94. package/src/stories/brandless.stories.mdx +0 -87
  95. package/src/stories/changelog-template.stories.mdx +0 -10
  96. package/src/stories/colors.stories.mdx +0 -306
  97. package/src/stories/customizing.stories.mdx +0 -113
  98. package/src/stories/getting-started.stories.mdx +0 -68
  99. package/src/stories/grid-layout.stories.mdx +0 -53
  100. package/src/stories/icons.stories.mdx +0 -237
  101. package/src/stories/interactive-controls.stories.mdx +0 -50
  102. package/src/stories/midnight.stories.mdx +0 -56
  103. package/src/stories/refinements.stories.mdx +0 -96
  104. package/src/stories/soft-blue.stories.mdx +0 -56
  105. package/src/stories/spacing.stories.mdx +0 -38
  106. package/src/stories/typography.stories.mdx +0 -224
  107. /package/.next/static/{SPkTG9-gxU2UejLG7FvOw → Jdc52lXcDWIk2D0wQ-Z4p}/_ssgManifest.js +0 -0
  108. /package/src/components/{sections → ui}/ProductGallery/useDelayedFacets.ts +0 -0
  109. /package/src/components/{sections → ui}/ProductGallery/useDelayedPagination.ts +0 -0
  110. /package/src/components/{sections → ui}/ProductGallery/usePageProducts.ts +0 -0
package/.next/BUILD_ID CHANGED
@@ -1 +1 @@
1
- SPkTG9-gxU2UejLG7FvOw
1
+ Jdc52lXcDWIk2D0wQ-Z4p
@@ -5,127 +5,127 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/SPkTG9-gxU2UejLG7FvOw/_buildManifest.js",
9
- "static/SPkTG9-gxU2UejLG7FvOw/_ssgManifest.js"
8
+ "static/Jdc52lXcDWIk2D0wQ-Z4p/_buildManifest.js",
9
+ "static/Jdc52lXcDWIk2D0wQ-Z4p/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [],
12
12
  "pages": {
13
13
  "/": [
14
- "static/chunks/webpack-5051dce9659282f3.js",
14
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
15
15
  "static/chunks/framework-dfd14d7ce6600b03.js",
16
16
  "static/chunks/main-fd466221927468fd.js",
17
17
  "static/chunks/391-47b923ef44945418.js",
18
18
  "static/chunks/545-1d3d08edfd2ee4c6.js",
19
- "static/css/e7a6f3559cf45c62.css",
20
- "static/chunks/377-61e89c711b136605.js",
21
- "static/css/e434797816e17065.css",
22
- "static/chunks/366-4a0572a47e2225d9.js",
19
+ "static/css/a13a9f9cd349d906.css",
20
+ "static/chunks/377-b3616792e1f5f651.js",
21
+ "static/css/a45618030b16a245.css",
22
+ "static/chunks/366-c0bfd9890048babf.js",
23
23
  "static/css/13a4da555ff5e3be.css",
24
24
  "static/chunks/pages/index-49b7ee570f7cc4b7.js"
25
25
  ],
26
26
  "/404": [
27
- "static/chunks/webpack-5051dce9659282f3.js",
27
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
28
28
  "static/chunks/framework-dfd14d7ce6600b03.js",
29
29
  "static/chunks/main-fd466221927468fd.js",
30
30
  "static/chunks/391-47b923ef44945418.js",
31
31
  "static/chunks/545-1d3d08edfd2ee4c6.js",
32
- "static/css/e7a6f3559cf45c62.css",
33
- "static/chunks/377-61e89c711b136605.js",
32
+ "static/css/a13a9f9cd349d906.css",
33
+ "static/chunks/377-b3616792e1f5f651.js",
34
34
  "static/css/e02cdad8fc000339.css",
35
35
  "static/chunks/pages/404-459452495a0df278.js"
36
36
  ],
37
37
  "/500": [
38
- "static/chunks/webpack-5051dce9659282f3.js",
38
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
39
39
  "static/chunks/framework-dfd14d7ce6600b03.js",
40
40
  "static/chunks/main-fd466221927468fd.js",
41
41
  "static/chunks/391-47b923ef44945418.js",
42
42
  "static/chunks/545-1d3d08edfd2ee4c6.js",
43
- "static/css/e7a6f3559cf45c62.css",
44
- "static/chunks/377-61e89c711b136605.js",
43
+ "static/css/a13a9f9cd349d906.css",
44
+ "static/chunks/377-b3616792e1f5f651.js",
45
45
  "static/css/e02cdad8fc000339.css",
46
46
  "static/chunks/pages/500-008e30c48eceebed.js"
47
47
  ],
48
48
  "/[...slug]": [
49
- "static/chunks/webpack-5051dce9659282f3.js",
49
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
50
50
  "static/chunks/framework-dfd14d7ce6600b03.js",
51
51
  "static/chunks/main-fd466221927468fd.js",
52
52
  "static/chunks/391-47b923ef44945418.js",
53
53
  "static/chunks/545-1d3d08edfd2ee4c6.js",
54
- "static/css/e7a6f3559cf45c62.css",
55
- "static/chunks/377-61e89c711b136605.js",
56
- "static/css/43b1b3821e21630c.css",
57
- "static/chunks/327-43715af4f3fffaf6.js",
58
- "static/css/2e9de35e0cb999e0.css",
59
- "static/chunks/pages/[...slug]-3c749c7d8561eb90.js"
54
+ "static/css/a13a9f9cd349d906.css",
55
+ "static/chunks/377-b3616792e1f5f651.js",
56
+ "static/css/a0feab89b7648c5c.css",
57
+ "static/chunks/0-0e3914d9fc148f74.js",
58
+ "static/css/1323734429a8aa40.css",
59
+ "static/chunks/pages/[...slug]-bd1885159f7dfbba.js"
60
60
  ],
61
61
  "/[slug]/p": [
62
- "static/chunks/webpack-5051dce9659282f3.js",
62
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
63
63
  "static/chunks/framework-dfd14d7ce6600b03.js",
64
64
  "static/chunks/main-fd466221927468fd.js",
65
65
  "static/chunks/391-47b923ef44945418.js",
66
66
  "static/chunks/545-1d3d08edfd2ee4c6.js",
67
- "static/css/e7a6f3559cf45c62.css",
68
- "static/chunks/377-61e89c711b136605.js",
69
- "static/css/e434797816e17065.css",
70
- "static/chunks/366-4a0572a47e2225d9.js",
71
- "static/css/1de3e7b6ba8daaac.css",
67
+ "static/css/a13a9f9cd349d906.css",
68
+ "static/chunks/377-b3616792e1f5f651.js",
69
+ "static/css/a45618030b16a245.css",
70
+ "static/chunks/366-c0bfd9890048babf.js",
71
+ "static/css/d462d9478ce00021.css",
72
72
  "static/chunks/pages/[slug]/p-fa35dd93d53f75f6.js"
73
73
  ],
74
74
  "/_app": [
75
- "static/chunks/webpack-5051dce9659282f3.js",
75
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
76
76
  "static/chunks/framework-dfd14d7ce6600b03.js",
77
77
  "static/chunks/main-fd466221927468fd.js",
78
- "static/css/923c4a942e57bc91.css",
78
+ "static/css/bde408cc006e64f8.css",
79
79
  "static/chunks/pages/_app-3e4e7e579cb0681a.js"
80
80
  ],
81
81
  "/_error": [
82
- "static/chunks/webpack-5051dce9659282f3.js",
82
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
83
83
  "static/chunks/framework-dfd14d7ce6600b03.js",
84
84
  "static/chunks/main-fd466221927468fd.js",
85
85
  "static/chunks/pages/_error-a7a0c1d9bfbb4f38.js"
86
86
  ],
87
87
  "/account": [
88
- "static/chunks/webpack-5051dce9659282f3.js",
88
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
89
89
  "static/chunks/framework-dfd14d7ce6600b03.js",
90
90
  "static/chunks/main-fd466221927468fd.js",
91
91
  "static/chunks/391-47b923ef44945418.js",
92
92
  "static/chunks/545-1d3d08edfd2ee4c6.js",
93
- "static/css/e7a6f3559cf45c62.css",
94
- "static/chunks/377-61e89c711b136605.js",
93
+ "static/css/a13a9f9cd349d906.css",
94
+ "static/chunks/377-b3616792e1f5f651.js",
95
95
  "static/chunks/pages/account-46263f0c100c3eae.js"
96
96
  ],
97
97
  "/checkout": [
98
- "static/chunks/webpack-5051dce9659282f3.js",
98
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
99
99
  "static/chunks/framework-dfd14d7ce6600b03.js",
100
100
  "static/chunks/main-fd466221927468fd.js",
101
101
  "static/chunks/391-47b923ef44945418.js",
102
102
  "static/chunks/545-1d3d08edfd2ee4c6.js",
103
- "static/css/e7a6f3559cf45c62.css",
104
- "static/chunks/377-61e89c711b136605.js",
103
+ "static/css/a13a9f9cd349d906.css",
104
+ "static/chunks/377-b3616792e1f5f651.js",
105
105
  "static/chunks/pages/checkout-20bb3710b24df3b6.js"
106
106
  ],
107
107
  "/login": [
108
- "static/chunks/webpack-5051dce9659282f3.js",
108
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
109
109
  "static/chunks/framework-dfd14d7ce6600b03.js",
110
110
  "static/chunks/main-fd466221927468fd.js",
111
111
  "static/chunks/391-47b923ef44945418.js",
112
112
  "static/chunks/545-1d3d08edfd2ee4c6.js",
113
- "static/css/e7a6f3559cf45c62.css",
114
- "static/chunks/377-61e89c711b136605.js",
113
+ "static/css/a13a9f9cd349d906.css",
114
+ "static/chunks/377-b3616792e1f5f651.js",
115
115
  "static/css/e02cdad8fc000339.css",
116
116
  "static/chunks/pages/login-f9d316d261fcc062.js"
117
117
  ],
118
118
  "/s": [
119
- "static/chunks/webpack-5051dce9659282f3.js",
119
+ "static/chunks/webpack-eb5ed34c93d07fac.js",
120
120
  "static/chunks/framework-dfd14d7ce6600b03.js",
121
121
  "static/chunks/main-fd466221927468fd.js",
122
122
  "static/chunks/391-47b923ef44945418.js",
123
123
  "static/chunks/545-1d3d08edfd2ee4c6.js",
124
- "static/css/e7a6f3559cf45c62.css",
125
- "static/chunks/377-61e89c711b136605.js",
126
- "static/css/43b1b3821e21630c.css",
127
- "static/chunks/327-43715af4f3fffaf6.js",
128
- "static/chunks/pages/s-890c0c4b88484224.js"
124
+ "static/css/a13a9f9cd349d906.css",
125
+ "static/chunks/377-b3616792e1f5f651.js",
126
+ "static/css/a0feab89b7648c5c.css",
127
+ "static/chunks/0-0e3914d9fc148f74.js",
128
+ "static/chunks/pages/s-1cbe740b5b781d28.js"
129
129
  ]
130
130
  },
131
131
  "ampFirstPages": []