@pronto-tools-and-more/components 15.7.0 → 15.9.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 (2) hide show
  1. package/dist/main.js +9 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -69,6 +69,13 @@ var createPropertiesFilter = (properties) => {
69
69
  OR: innerFilter
70
70
  });
71
71
  }
72
+ } else if (typeof value === "string") {
73
+ outerFilter.push({
74
+ properties: {
75
+ key,
76
+ value
77
+ }
78
+ });
72
79
  }
73
80
  }
74
81
  return outerFilter;
@@ -640,8 +647,8 @@ var Collection = ({
640
647
  // src/parts/Conditions/Conditions.ts
641
648
  var Conditions = {
642
649
  SearchResultsAreEmpty: "!$context.phrase",
643
- LanguageIsGerman: `'$context.language === "de"'`,
644
- LanguageIsNotGerman: `'$context.language !== "de"'`
650
+ LanguageIsGerman: `$context.language === "de"`,
651
+ LanguageIsNotGerman: `$context.language !== "de"`
645
652
  };
646
653
 
647
654
  // src/parts/Container/Container.tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/components",
3
- "version": "15.7.0",
3
+ "version": "15.9.0",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/main.d.ts",