-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
341 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: npm | ||
directory: '/' | ||
schedule: | ||
interval: monthly | ||
- package-ecosystem: github-actions | ||
directory: '/' | ||
schedule: | ||
interval: monthly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ jobs: | |
token: ${{ secrets.GITHUB_TOKEN }} | ||
auto-merge: 'minor' | ||
merge-method: 'rebase' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
const sveltePreprocess = require("svelte-preprocess"); | ||
const sveltePreprocess = require('svelte-preprocess'); | ||
module.exports = { | ||
stories: ["../stories/*.stories.@(js|jsx|ts|tsx)"], | ||
addons: ["@storybook/addon-mdx-gfm"], | ||
framework: { | ||
stories: ['../stories/*.stories.@(js|jsx|ts|tsx)'], | ||
addons: ['@storybook/addon-mdx-gfm'], | ||
framework: { | ||
name: '@storybook/svelte-vite', | ||
options: { | ||
svelteOptions: { | ||
preprocess: sveltePreprocess() | ||
}, | ||
} | ||
svelteOptions: { | ||
preprocess: sveltePreprocess() | ||
} | ||
} | ||
}, | ||
docs: { | ||
autodocs: true | ||
} | ||
}; | ||
docs: { | ||
autodocs: true | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const parameters = { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
actions: { argTypesRegex: '^on[A-Z].*' } | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"name": "svelte-vega-demo", | ||
"version": "0.0.0", | ||
"description": "Demos for svelte-vega", | ||
"author": "Alex Bäuerle <[email protected]> (https://a13x.io)", | ||
"repository": "[email protected]:vega/svelte-vega.git", | ||
"bugs": { | ||
"url": "https://github.com/vega/svelte-vega/issues" | ||
}, | ||
"main": "lib/index.js", | ||
"module": "esm/index.js", | ||
"files": [ | ||
"src", | ||
"esm", | ||
"lib", | ||
"types" | ||
], | ||
"private": true, | ||
"dependencies": { | ||
"@storybook/source-loader": "^7.0.4", | ||
"@storybook/svelte": "^7.0.4", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"svelte": "^3.58.0", | ||
"svelte-vega": "^1.2.0", | ||
"vega": "^5.24.0", | ||
"vega-lite": "^5.6.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.21.4", | ||
"@storybook/cli": "^7.0.4", | ||
"@storybook/svelte-vite": "^7.0.4", | ||
"gh-pages": "^5.0.0", | ||
"storybook": "^7.0.4", | ||
"svelte-check": "^3.2.0", | ||
"svelte-loader": "^3.1.7", | ||
"svelte-preprocess": "^5.0.3" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"demo:clean": "rm -rf _gh-pages", | ||
"demo:build": "storybook build -o _gh-pages", | ||
"demo:publish": "gh-pages -d _gh-pages", | ||
"deploy-demo": "npm run demo:clean && npm run demo:build && npm run demo:publish && npm run demo:clean", | ||
"storybook": "storybook dev -p 9001" | ||
} | ||
} | ||
"name": "svelte-vega-demo", | ||
"version": "0.0.0", | ||
"description": "Demos for svelte-vega", | ||
"author": "Alex Bäuerle <[email protected]> (https://a13x.io)", | ||
"repository": "[email protected]:vega/svelte-vega.git", | ||
"bugs": { | ||
"url": "https://github.com/vega/svelte-vega/issues" | ||
}, | ||
"main": "lib/index.js", | ||
"module": "esm/index.js", | ||
"files": [ | ||
"src", | ||
"esm", | ||
"lib", | ||
"types" | ||
], | ||
"private": true, | ||
"dependencies": { | ||
"@storybook/source-loader": "^7.0.4", | ||
"@storybook/svelte": "^7.0.4", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"svelte": "^3.58.0", | ||
"svelte-vega": "^1.2.0", | ||
"vega": "^5.24.0", | ||
"vega-lite": "^5.6.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.21.4", | ||
"@storybook/cli": "^7.0.4", | ||
"@storybook/svelte-vite": "^7.0.4", | ||
"gh-pages": "^5.0.0", | ||
"storybook": "^7.0.4", | ||
"svelte-check": "^3.2.0", | ||
"svelte-loader": "^3.1.7", | ||
"svelte-preprocess": "^5.0.3" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"demo:clean": "rm -rf _gh-pages", | ||
"demo:build": "storybook build -o _gh-pages", | ||
"demo:publish": "gh-pages -d _gh-pages", | ||
"deploy-demo": "npm run demo:clean && npm run demo:build && npm run demo:publish && npm run demo:clean", | ||
"storybook": "storybook dev -p 9001" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"table": [ | ||
{"category": "A", "amount": 28}, | ||
{"category": "B", "amount": 55}, | ||
{"category": "C", "amount": 43}, | ||
{"category": "D", "amount": 91}, | ||
{"category": "E", "amount": 81}, | ||
{"category": "F", "amount": 53}, | ||
{"category": "G", "amount": 19}, | ||
{"category": "H", "amount": 87} | ||
] | ||
} | ||
"table": [ | ||
{ "category": "A", "amount": 28 }, | ||
{ "category": "B", "amount": 55 }, | ||
{ "category": "C", "amount": 43 }, | ||
{ "category": "D", "amount": 91 }, | ||
{ "category": "E", "amount": 81 }, | ||
{ "category": "F", "amount": 53 }, | ||
{ "category": "G", "amount": 19 }, | ||
{ "category": "H", "amount": 87 } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + Svelte + TS</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + Svelte + TS</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
{ | ||
"name": "svelte-vega-sample", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"validate": "svelte-check --tsconfig ./tsconfig.json" | ||
}, | ||
"dependencies": { | ||
"svelte-vega": "^1.2.0", | ||
"tslib": "^2.5.0", | ||
"vega-lite": "^5.6.1", | ||
"vega": "^5.24.0" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/vite-plugin-svelte": "^2.0.4", | ||
"@tsconfig/svelte": "^4.0.1", | ||
"svelte-check": "^3.2.0", | ||
"svelte-preprocess": "^5.0.3", | ||
"svelte": "^3.58.0", | ||
"typescript": "^5.0.4", | ||
"vite": "^4.2.1" | ||
} | ||
} | ||
"name": "svelte-vega-sample", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"validate": "svelte-check --tsconfig ./tsconfig.json" | ||
}, | ||
"dependencies": { | ||
"svelte-vega": "^1.2.0", | ||
"tslib": "^2.5.0", | ||
"vega-lite": "^5.6.1", | ||
"vega": "^5.24.0" | ||
}, | ||
"devDependencies": { | ||
"@sveltejs/vite-plugin-svelte": "^2.0.4", | ||
"@tsconfig/svelte": "^4.0.1", | ||
"svelte-check": "^3.2.0", | ||
"svelte-preprocess": "^5.0.3", | ||
"svelte": "^3.58.0", | ||
"typescript": "^5.0.4", | ||
"vite": "^4.2.1" | ||
} | ||
} |
Oops, something went wrong.