@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.
- package/dist/main.js +9 -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:
|
644
|
-
LanguageIsNotGerman:
|
650
|
+
LanguageIsGerman: `$context.language === "de"`,
|
651
|
+
LanguageIsNotGerman: `$context.language !== "de"`
|
645
652
|
};
|
646
653
|
|
647
654
|
// src/parts/Container/Container.tsx
|