Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump @rollup/plugin-typescript from 12.1.1 to 12.1.2 #1375

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps-dev): bump @rollup/plugin-typescript from 12.1.1 to 12.1.2
Bumps [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) from 12.1.1 to 12.1.2.
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.2/packages/typescript)

---
updated-dependencies:
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Jan 1, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0d64448d43e3148a25b97fe789953a297ca7c6e0
7 changes: 3 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.


Unchanged files with check annotations Beta

export let vegaLite = vegaLiteImport;
// For backwards compatibility with Vega-Lite before v4.
const w = (typeof window !== 'undefined' ? window : undefined) as any;

Check warning on line 41 in src/embed.ts

GitHub Actions / Test on Node

Unsafe assignment of an `any` value

Check warning on line 41 in src/embed.ts

GitHub Actions / Test on Node

Unexpected any. Specify a different type
if (vegaLite === undefined && w?.vl?.compile) {

Check warning on line 42 in src/embed.ts

GitHub Actions / Test on Node

Unsafe member access .vl on an `any` value
vegaLite = w.vl;

Check warning on line 43 in src/embed.ts

GitHub Actions / Test on Node

Unsafe assignment of an `any` value

Check warning on line 43 in src/embed.ts

GitHub Actions / Test on Node

Unsafe member access .vl on an `any` value
}
export interface Actions {
'vega-lite': vegaLite ? vegaLite.version : 'not available',
};
const PREPROCESSOR: {[mode in Mode]: (spec: any, config?: Config) => VgSpec} = {

Check warning on line 112 in src/embed.ts

GitHub Actions / Test on Node

Unexpected any. Specify a different type
vega: (vgSpec: VgSpec) => vgSpec,
'vega-lite': (vlSpec, config) => vegaLite.compile(vlSpec as VlSpec, {config: config as VlConfig}).spec,
};
}
function embedOptionsFromUsermeta(parsedSpec: VisualizationSpec) {
const opts = (parsedSpec.usermeta as any)?.embedOptions ?? {};

Check warning on line 215 in src/embed.ts

GitHub Actions / Test on Node

Unsafe assignment of an `any` value

Check warning on line 215 in src/embed.ts

GitHub Actions / Test on Node

Unexpected any. Specify a different type

Check warning on line 215 in src/embed.ts

GitHub Actions / Test on Node

Unsafe member access .embedOptions on an `any` value
if (isString(opts.defaultStyle)) {

Check warning on line 216 in src/embed.ts

GitHub Actions / Test on Node

Unsafe member access .defaultStyle on an `any` value
// we don't allow styles set via usermeta since it would allow injection of logic (we set the style via innerHTML)
opts.defaultStyle = false;
}