@uwdata/mosaic-spec 0.10.0 → 0.11.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/mosaic-schema.json +17 -0
- package/dist/mosaic-spec.js +4287 -13264
- package/dist/mosaic-spec.min.js +33 -42
- package/dist/types/ast/ParamNode.d.ts +1 -2
- package/dist/types/ast/ParamRefNode.d.ts +1 -1
- package/dist/types/ast/SelectionNode.d.ts +15 -5
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/parse-spec.d.ts +33 -8
- package/dist/types/spec/Param.d.ts +6 -0
- package/package.json +6 -6
- package/src/ast/ParamNode.js +3 -4
- package/src/ast/ParamRefNode.js +1 -1
- package/src/ast/SelectionNode.js +46 -14
- package/src/constants.js +1 -0
- package/src/parse-spec.js +53 -16
- package/src/spec/Param.ts +7 -0
- package/src/spec/Spec.ts +1 -1
package/dist/mosaic-schema.json
CHANGED
|
@@ -15711,6 +15711,9 @@
|
|
|
15711
15711
|
"verticalAlign": {
|
|
15712
15712
|
"type": "string"
|
|
15713
15713
|
},
|
|
15714
|
+
"viewTransitionName": {
|
|
15715
|
+
"type": "string"
|
|
15716
|
+
},
|
|
15714
15717
|
"visibility": {
|
|
15715
15718
|
"type": "string"
|
|
15716
15719
|
},
|
|
@@ -84818,6 +84821,20 @@
|
|
|
84818
84821
|
"description": "A flag for setting an initial empty selection state. If true, a selection with no clauses corresponds to an empty selection with no records. If false, a selection with no clauses selects all values.",
|
|
84819
84822
|
"type": "boolean"
|
|
84820
84823
|
},
|
|
84824
|
+
"include": {
|
|
84825
|
+
"anyOf": [
|
|
84826
|
+
{
|
|
84827
|
+
"$ref": "#/definitions/ParamRef"
|
|
84828
|
+
},
|
|
84829
|
+
{
|
|
84830
|
+
"items": {
|
|
84831
|
+
"$ref": "#/definitions/ParamRef"
|
|
84832
|
+
},
|
|
84833
|
+
"type": "array"
|
|
84834
|
+
}
|
|
84835
|
+
],
|
|
84836
|
+
"description": "Upstream selections whose clauses should be included as part of this selection. Any clauses or activations published to the upstream selections will be relayed to this selection."
|
|
84837
|
+
},
|
|
84821
84838
|
"select": {
|
|
84822
84839
|
"description": "The type of reactive parameter. One of:\n- `\"value\"` (default) for a standard `Param`\n- `\"intersect\"` for a `Selection` that intersects clauses (logical \"and\")\n- `\"union\"` for a `Selection` that unions clauses (logical \"or\")\n- `\"single\"` for a `Selection` that retains a single clause only\n- `\"crossfilter\"` for a cross-filtered intersection `Selection`",
|
|
84823
84840
|
"enum": [
|