This is an automated email from the ASF dual-hosted git repository.
ovilia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-theme-builder.git
from 4d946d3 fix
new 3dbdb80 chore: init with vite
new 4f42db8 feat: preview
new 5c38d52 chore: remove old code
new 78c3f3c refactor: basic layouot
new 3d70a8f feat: add themes
new 92e9056 feat: update themes
new 19fa4bd feat: update theme working
new 3450c84 feat: download and import and export
new 85c6bc3 feat: update theme
new 56546a4 feat: add v5 theme
new 6513e7a feat: update styles
new 0e77d86 feat: update i18n
new 7794531 feat: update i18n
new eb144d4 feat: update theme panel
new b6df62a feat: update theme
new d5960e3 chore: build
new 38e8264 feat: update build src
new 8056734 chore: update release script
new 2a70814 feat: add debounce; fix background
new d90cc41 feat: support grid and legend location
new 90fb56b feat: update themes
new 1f1d08b feat: update theme
new 09ab5eb feat: remove preview code
new ccd9161 chore: update for release
new 9f65c2d feat: only the first panel should be open by default
new 65bd466 chore: add more i18n
new fca10b2 feat: update i18n and add source code link
new ed50ab9 fix: small improvement
The 28 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 2 +
app/en/body.html | 520 ---
app/en/index.html | 538 ---
app/en/theme-builder/app.min.js | 1 -
app/en/theme-builder/main.css | 234 --
app/img/pumpkin.png | Bin 14575 -> 0 bytes
app/index.html | 17 -
app/scripts/components.js | 211 --
app/scripts/components_en.js | 211 --
app/scripts/main.js | 831 -----
app/scripts/main_en.js | 829 -----
app/scripts/options.js | 3650 --------------------
app/scripts/options_en.js | 3650 --------------------
app/styles/_components.code.scss | 67 -
app/styles/_components.color.scss | 18 -
app/styles/_components.config.scss | 151 -
app/styles/_components.echarts.scss | 25 -
app/styles/_configs.color.scss | 20 -
app/styles/_settings.global.scss | 56 -
app/styles/main.scss | 9 -
app/themes/chalk.json | 169 -
app/themes/dark.json | 172 -
app/themes/default.json | 173 -
app/themes/essos.json | 171 -
app/themes/halloween.json | 167 -
app/themes/infographic.json | 176 -
app/themes/macarons.json | 180 -
app/themes/purple-passion.json | 169 -
app/themes/roma.json | 181 -
app/themes/shine.json | 163 -
app/themes/vintage.json | 172 -
app/themes/walden.json | 167 -
app/themes/westeros.json | 168 -
app/themes/wonderland.json | 168 -
app/zh/body.html | 520 ---
app/zh/index.html | 538 ---
app/zh/theme-builder/app.min.js | 1 -
app/zh/theme-builder/main.css | 234 --
app/zh/theme-builder/themes/chalk.json | 169 -
app/zh/theme-builder/themes/dark.json | 172 -
app/zh/theme-builder/themes/default.json | 173 -
app/zh/theme-builder/themes/essos.json | 171 -
app/zh/theme-builder/themes/halloween.json | 167 -
app/zh/theme-builder/themes/infographic.json | 176 -
app/zh/theme-builder/themes/macarons.json | 180 -
app/zh/theme-builder/themes/purple-passion.json | 169 -
app/zh/theme-builder/themes/roma.json | 181 -
app/zh/theme-builder/themes/shine.json | 163 -
app/zh/theme-builder/themes/vintage.json | 172 -
app/zh/theme-builder/themes/walden.json | 167 -
app/zh/theme-builder/themes/westeros.json | 168 -
app/zh/theme-builder/themes/wonderland.json | 168 -
assets/essos.png | Bin 344222 -> 0 bytes
build.js | 95 -
config/env.asf.js | 11 +-
en/body.html | 2 +
index.html | 13 +
package-lock.json | 1896 ++++++++--
package.json | 31 +-
{app/en/theme-builder => public}/themes/chalk.json | 0
{app/en/theme-builder => public}/themes/dark.json | 0
.../theme-builder => public}/themes/default.json | 0
{app/en/theme-builder => public}/themes/essos.json | 0
.../theme-builder => public}/themes/halloween.json | 0
.../themes/infographic.json | 0
.../theme-builder => public}/themes/macarons.json | 0
.../themes/purple-passion.json | 0
{app/en/theme-builder => public}/themes/roma.json | 0
{app/en/theme-builder => public}/themes/shine.json | 0
public/themes/v5.json | 173 +
.../theme-builder => public}/themes/vintage.json | 0
.../en/theme-builder => public}/themes/walden.json | 0
.../theme-builder => public}/themes/westeros.json | 0
.../themes/wonderland.json | 0
scripts/release.js | 62 +
src/App.vue | 107 +
src/components/ChartPreviewPanel.vue | 222 ++
src/components/ColorList.vue | 160 +
src/components/ColorPicker.vue | 83 +
src/components/ThemePanel.vue | 1168 +++++++
src/composables/useLocalization.ts | 75 +
src/entries/en.ts | 36 +
src/entries/zh.ts | 36 +
src/i18n.ts | 56 +
src/locales/en.json | 187 +
src/locales/zh.json | 187 +
src/main.ts | 31 +
src/stores/theme.ts | 353 ++
src/style.css | 5 +
src/types/theme.ts | 116 +
src/utils/chartConfigs.ts | 570 +++
src/utils/download.ts | 114 +
src/utils/themeGenerator.ts | 313 ++
src/vite-env.d.ts | 1 +
tsconfig.app.json | 15 +
tsconfig.json | 7 +
tsconfig.node.json | 25 +
vite.config.ts | 145 +
zh/body.html | 2 +
99 files changed, 5846 insertions(+), 17576 deletions(-)
delete mode 100644 app/en/body.html
delete mode 100644 app/en/index.html
delete mode 100644 app/en/theme-builder/app.min.js
delete mode 100644 app/en/theme-builder/main.css
delete mode 100644 app/img/pumpkin.png
delete mode 100644 app/index.html
delete mode 100644 app/scripts/components.js
delete mode 100644 app/scripts/components_en.js
delete mode 100644 app/scripts/main.js
delete mode 100644 app/scripts/main_en.js
delete mode 100644 app/scripts/options.js
delete mode 100644 app/scripts/options_en.js
delete mode 100644 app/styles/_components.code.scss
delete mode 100644 app/styles/_components.color.scss
delete mode 100644 app/styles/_components.config.scss
delete mode 100644 app/styles/_components.echarts.scss
delete mode 100644 app/styles/_configs.color.scss
delete mode 100644 app/styles/_settings.global.scss
delete mode 100644 app/styles/main.scss
delete mode 100644 app/themes/chalk.json
delete mode 100644 app/themes/dark.json
delete mode 100644 app/themes/default.json
delete mode 100644 app/themes/essos.json
delete mode 100644 app/themes/halloween.json
delete mode 100644 app/themes/infographic.json
delete mode 100644 app/themes/macarons.json
delete mode 100644 app/themes/purple-passion.json
delete mode 100644 app/themes/roma.json
delete mode 100644 app/themes/shine.json
delete mode 100644 app/themes/vintage.json
delete mode 100644 app/themes/walden.json
delete mode 100644 app/themes/westeros.json
delete mode 100644 app/themes/wonderland.json
delete mode 100644 app/zh/body.html
delete mode 100644 app/zh/index.html
delete mode 100644 app/zh/theme-builder/app.min.js
delete mode 100644 app/zh/theme-builder/main.css
delete mode 100644 app/zh/theme-builder/themes/chalk.json
delete mode 100644 app/zh/theme-builder/themes/dark.json
delete mode 100644 app/zh/theme-builder/themes/default.json
delete mode 100644 app/zh/theme-builder/themes/essos.json
delete mode 100644 app/zh/theme-builder/themes/halloween.json
delete mode 100644 app/zh/theme-builder/themes/infographic.json
delete mode 100644 app/zh/theme-builder/themes/macarons.json
delete mode 100644 app/zh/theme-builder/themes/purple-passion.json
delete mode 100644 app/zh/theme-builder/themes/roma.json
delete mode 100644 app/zh/theme-builder/themes/shine.json
delete mode 100644 app/zh/theme-builder/themes/vintage.json
delete mode 100644 app/zh/theme-builder/themes/walden.json
delete mode 100644 app/zh/theme-builder/themes/westeros.json
delete mode 100644 app/zh/theme-builder/themes/wonderland.json
delete mode 100644 assets/essos.png
delete mode 100644 build.js
create mode 100644 en/body.html
create mode 100644 index.html
rename {app/en/theme-builder => public}/themes/chalk.json (100%)
rename {app/en/theme-builder => public}/themes/dark.json (100%)
rename {app/en/theme-builder => public}/themes/default.json (100%)
rename {app/en/theme-builder => public}/themes/essos.json (100%)
rename {app/en/theme-builder => public}/themes/halloween.json (100%)
rename {app/en/theme-builder => public}/themes/infographic.json (100%)
rename {app/en/theme-builder => public}/themes/macarons.json (100%)
rename {app/en/theme-builder => public}/themes/purple-passion.json (100%)
rename {app/en/theme-builder => public}/themes/roma.json (100%)
rename {app/en/theme-builder => public}/themes/shine.json (100%)
create mode 100644 public/themes/v5.json
rename {app/en/theme-builder => public}/themes/vintage.json (100%)
rename {app/en/theme-builder => public}/themes/walden.json (100%)
rename {app/en/theme-builder => public}/themes/westeros.json (100%)
rename {app/en/theme-builder => public}/themes/wonderland.json (100%)
create mode 100644 scripts/release.js
create mode 100644 src/App.vue
create mode 100644 src/components/ChartPreviewPanel.vue
create mode 100644 src/components/ColorList.vue
create mode 100644 src/components/ColorPicker.vue
create mode 100644 src/components/ThemePanel.vue
create mode 100644 src/composables/useLocalization.ts
create mode 100644 src/entries/en.ts
create mode 100644 src/entries/zh.ts
create mode 100644 src/i18n.ts
create mode 100644 src/locales/en.json
create mode 100644 src/locales/zh.json
create mode 100644 src/main.ts
create mode 100644 src/stores/theme.ts
create mode 100644 src/style.css
create mode 100644 src/types/theme.ts
create mode 100644 src/utils/chartConfigs.ts
create mode 100644 src/utils/download.ts
create mode 100644 src/utils/themeGenerator.ts
create mode 100644 src/vite-env.d.ts
create mode 100644 tsconfig.app.json
create mode 100644 tsconfig.json
create mode 100644 tsconfig.node.json
create mode 100644 vite.config.ts
create mode 100644 zh/body.html
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]