@pronto-tools-and-more/components 12.8.0 → 12.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/main.js +21 -3
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -94,9 +94,27 @@ var createCategoryFilter = (categoryId) => {
94
94
  taxonomies: {
95
95
  content: {
96
96
  value: {
97
- id: {
98
- value: categoryId
99
- }
97
+ AND: [
98
+ {
99
+ type: {
100
+ value: "category"
101
+ }
102
+ },
103
+ {
104
+ OR: [
105
+ {
106
+ id: {
107
+ value: categoryId
108
+ }
109
+ },
110
+ {
111
+ parentId: {
112
+ value: categoryId
113
+ }
114
+ }
115
+ ]
116
+ }
117
+ ]
100
118
  }
101
119
  }
102
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "12.8.0",
3
+ "version": "12.10.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",