@cccsaurora/clue-ui 1.2.0-dev.143 → 1.2.0-dev.145

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.
@@ -43,8 +43,15 @@ const useAnnotations = (type, value, _classification, { skipEnrichment } = { ski
43
43
  }
44
44
  const observable = database.selectors.find({
45
45
  selector: {
46
- // Use regex instead of exact value for case-insensitivity
47
- value: { $regex: `^${value}$`, $options: "i" }
46
+ $or: [
47
+ {
48
+ // Use regex instead of exact value for case-insensitivity
49
+ value: { $regex: `^${value}$`, $options: "i" }
50
+ },
51
+ {
52
+ value
53
+ }
54
+ ]
48
55
  }
49
56
  }).$.subscribe(
50
57
  (result) => setAnnotations(
package/package.json CHANGED
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "type": "module",
65
65
  "types": "main.d.ts",
66
- "version": "1.2.0-dev.143",
66
+ "version": "1.2.0-dev.145",
67
67
  "exports": {
68
68
  ".": "./main.js",
69
69
  "./index.css": "./index.css",