@uwdata/mosaic-core
Advanced tools
Comparing version 0.12.0 to 0.12.1
{ | ||
"name": "@uwdata/mosaic-core", | ||
"version": "0.12.0", | ||
"version": "0.12.1", | ||
"description": "Scalable and extensible linked data views.", | ||
@@ -35,8 +35,8 @@ "keywords": [ | ||
"@uwdata/flechette": "^1.1.1", | ||
"@uwdata/mosaic-sql": "^0.12.0" | ||
"@uwdata/mosaic-sql": "^0.12.1" | ||
}, | ||
"devDependencies": { | ||
"@uwdata/mosaic-duckdb": "^0.12.0" | ||
"@uwdata/mosaic-duckdb": "^0.12.1" | ||
}, | ||
"gitHead": "523b1afe2a0880291c92f81e4a7b91829362d285" | ||
"gitHead": "fe3a7c34352da54ec36a1ebf557846f46a649782" | ||
} |
# mosaic-core | ||
[![npm version](https://img.shields.io/npm/v/@uwdata/mosaic-core.svg)](https://www.npmjs.com/package/@uwdata/mosaic-core) | ||
The core Mosaic components: a central coordinator, parameters (`Param`) and selections (`Selection`) for linking scalar values or query predicates (respectively) across Mosaic clients, and filter groups with materialized views of pre-aggregated data. The Mosaic coordinator can send queries either over the network to a backing server (`socket` and `rest` clients) or to a client-side [DuckDB-WASM](https://github.com/duckdb/duckdb-wasm) instance (`wasm` client). | ||
The `mosaic-core` facilities are included as part of the [vgplot](https://github.com/uwdata/mosaic/tree/main/packages/vgplot) API. |
@@ -29,3 +29,3 @@ import { ExprNode, and, contains, isBetween, isIn, isNotDistinct, literal, or, prefix, regexp_matches, suffix } from '@uwdata/mosaic-sql'; | ||
const predicate = value !== undefined | ||
? isNotDistinct(field, literal(value)) | ||
? isIn(field, [literal(value)]) | ||
: null; | ||
@@ -32,0 +32,0 @@ return { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1082401
8
Updated@uwdata/mosaic-sql@^0.12.1