@uniformdev/context 19.210.1-alpha.7 → 19.210.4-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.
package/dist/index.esm.js CHANGED
@@ -453,7 +453,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
453
453
  const visitorValue = update.visitor.quirks[criteria.key];
454
454
  const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
455
455
  const value = updateValue != null ? updateValue : visitorValue;
456
- const changed = Boolean(updateValue && visitorValue !== updateValue);
456
+ const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
457
457
  const result = isStringMatch(value, criteria.match);
458
458
  const finalResult = { result, changed };
459
459
  onLogMessage == null ? void 0 : onLogMessage([
package/dist/index.js CHANGED
@@ -541,7 +541,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
541
541
  const visitorValue = update.visitor.quirks[criteria.key];
542
542
  const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
543
543
  const value = updateValue != null ? updateValue : visitorValue;
544
- const changed = Boolean(updateValue && visitorValue !== updateValue);
544
+ const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
545
545
  const result = isStringMatch(value, criteria.match);
546
546
  const finalResult = { result, changed };
547
547
  onLogMessage == null ? void 0 : onLogMessage([
package/dist/index.mjs CHANGED
@@ -453,7 +453,7 @@ var quirkEvaluator = ({ update, criteria, signal, onLogMessage }) => {
453
453
  const visitorValue = update.visitor.quirks[criteria.key];
454
454
  const updateValue = (_a = update.state.quirks) == null ? void 0 : _a[criteria.key];
455
455
  const value = updateValue != null ? updateValue : visitorValue;
456
- const changed = Boolean(updateValue && visitorValue !== updateValue);
456
+ const changed = Boolean(updateValue !== void 0 && visitorValue !== updateValue);
457
457
  const result = isStringMatch(value, criteria.match);
458
458
  const finalResult = { result, changed };
459
459
  onLogMessage == null ? void 0 : onLogMessage([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context",
3
- "version": "19.210.1-alpha.7+5402269e8e",
3
+ "version": "19.210.4-alpha.0+2ff265809b",
4
4
  "description": "Uniform Context core package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -68,5 +68,5 @@
68
68
  "publishConfig": {
69
69
  "access": "public"
70
70
  },
71
- "gitHead": "5402269e8e1d1f8d955c4c2bb30ab7ac1a96e66b"
71
+ "gitHead": "2ff265809b85f61d950748aaea35beaf1c4fe443"
72
72
  }