gatsby-core-theme 41.1.17 → 41.1.18
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 +7 -0
- package/package.json +1 -1
- package/src/helpers/processor/modules.mjs +13 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [41.1.18](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v41.1.17...v41.1.18) (2025-01-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* cards v2 filtering ([08ae7da](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/08ae7da43b647ee0270a36db00ee6d23d30f7253))
|
|
7
|
+
|
|
1
8
|
## [41.1.17](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v41.1.16...v41.1.17) (2025-01-03)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -150,7 +150,19 @@ export function processCardsV2(
|
|
|
150
150
|
const selectedReviewer = module.cards_selector_filters.page_reviewer;
|
|
151
151
|
const selectedCategories = module.cards_selector_filters.page_categories;
|
|
152
152
|
|
|
153
|
-
const
|
|
153
|
+
const allFilters = [
|
|
154
|
+
cardType,
|
|
155
|
+
pageTemplateId,
|
|
156
|
+
selectedAuthors,
|
|
157
|
+
selectedReviewer,
|
|
158
|
+
selectedCategories,
|
|
159
|
+
moduleSelectedProviders,
|
|
160
|
+
moduleSelectedCategories,
|
|
161
|
+
moduleSelectedTypes,
|
|
162
|
+
];
|
|
163
|
+
|
|
164
|
+
const u8 = new Uint8Array(allFilters);
|
|
165
|
+
const b64 = Buffer.from(u8).toString("base64");
|
|
154
166
|
|
|
155
167
|
if (cardType) {
|
|
156
168
|
// Get all pages by the selected page type
|