Skip to content

Commit

Permalink
pre-LIO-init
Browse files Browse the repository at this point in the history
  • Loading branch information
dwootton committed Oct 31, 2023
1 parent 1a68456 commit 91514f7
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build/vega-lite-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21340,6 +21340,13 @@
},
"type": "array"
},
"fields": {
"description": "An array of field names whose values must match for a data tuple to fall within the selection.\n\n__See also:__ The [projection with `encodings` and `fields` section](https://vega.github.io/vega-lite/docs/selection.html#project) in the documentation.",
"items": {
"$ref": "#/definitions/FieldName"
},
"type": "array"
},
"mark": {
"$ref": "#/definitions/BrushConfig",
"description": "A region selection also adds a path mark to depict the shape of the region. The `mark` property can be used to customize the appearance of the mark.\n\n__See also:__ [`mark` examples](https://vega.github.io/vega-lite/docs/selection.html#mark) in the documentation."
Expand Down Expand Up @@ -21394,6 +21401,13 @@
},
"type": "array"
},
"fields": {
"description": "An array of field names whose values must match for a data tuple to fall within the selection.\n\n__See also:__ The [projection with `encodings` and `fields` section](https://vega.github.io/vega-lite/docs/selection.html#project) in the documentation.",
"items": {
"$ref": "#/definitions/FieldName"
},
"type": "array"
},
"mark": {
"$ref": "#/definitions/BrushConfig",
"description": "A region selection also adds a path mark to depict the shape of the region. The `mark` property can be used to customize the appearance of the mark.\n\n__See also:__ [`mark` examples](https://vega.github.io/vega-lite/docs/selection.html#mark) in the documentation."
Expand Down
1 change: 1 addition & 0 deletions site/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ PLATFORMS
arm64-darwin-22
x86_64-darwin-19
x86_64-darwin-20
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
Expand Down
4 changes: 4 additions & 0 deletions site/_data/versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
vega: 5.25.0
vega-lite: 5.16.1
vega-embed: 6.22.2
vega-tooltip: 0.33.0
2 changes: 2 additions & 0 deletions site/static/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ export function embedExample($target: any, spec: TopLevelSpec, actions = true, t
const {spec: vgSpec} = compile(spec);

const view = new vega.View(vega.parse(vgSpec), {loader: loader}).renderer('svg').initialize($target);
console.log('view', view);


if (tooltip) {
const handler = new Handler().call;
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ export type {Config} from './config';
export {normalize} from './normalize';
export type {TopLevelSpec} from './spec';
export * from './util';

console.log('DWOOTTON in index.ts!');

0 comments on commit 91514f7

Please sign in to comment.