This is an automated email from the ASF dual-hosted git repository.

linkinstar pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git


    from cb97772  fix(connector-google): remove id and upgrade version
     new a04c63c  feat(embed): add basic embed plugin
     new bbda77a  feat(embed-basic): add i18n support for basic embed plugin
     new 4c4b4a7  chore(embed-basic): update npm dependencies and add types for 
vite-plugin-yaml
     new 51ed9a8  chore(embed-basic): update npm dependencies and add types for 
vite-plugin-dts
     new 5a9afe7  chore(embed-basic): update npm dependencies
     new 73adb0f  refactor(embed-basic): Update className
     new 08f803d  chore(embed-basic): update npm dependencies
     new e224fee  chore: Update package.json for editor-chart and 
editor-formula packages
     new df61990  refactor: Use icons instead of svg
     new f1c51a8  feat(embed-basic): add keyboard shortcut for showing embed 
modal
     new c29f78e  refactor(embed-basic): Update regular expression
     new 8da81ba  feat(embed-basic): add i18n support for basic embed plugin
     new 47bcdd7  fix(plugins): Fix the problem that the dom obtained by hooks 
in the plugin is null
     new e90c94e  chore: Update version
     new a7c8e0c  refactor(editor-formula): Update i18n files to use YAML format
     new d1b12a6  refactor(editor-chart): Update i18n files to use YAML format
     new b67fd9c  refactor: Update .prettierrc.json files for embed-basic and 
editor-formula packages

The 17 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:
 editor-chart/.prettierrc.json                      |    8 +
 editor-chart/Chart.tsx                             |   13 +-
 editor-chart/hooks.ts                              |   22 +-
 editor-chart/i18n/en_US.json                       |   15 -
 editor-chart/i18n/en_US.yaml                       |   12 +
 editor-chart/i18n/index.ts                         |    4 +-
 editor-chart/i18n/zh_CN.json                       |   15 -
 editor-chart/i18n/zh_CN.yaml                       |   11 +
 editor-chart/icon.svg                              |    4 -
 editor-chart/package.json                          |   19 +-
 {captcha-google-v2 => editor-chart}/pnpm-lock.yaml |  941 ++++++++++++++---
 editor-chart/tsconfig.json                         |    3 +
 editor-chart/vite.config.ts                        |    3 +-
 editor-formula/.prettierrc.json                    |    8 +
 editor-formula/Formula.tsx                         |   13 +-
 editor-formula/hooks.ts                            |   20 +-
 editor-formula/i18n/en_US.json                     |   11 -
 editor-formula/i18n/en_US.yaml                     |    5 +
 editor-formula/i18n/index.ts                       |    4 +-
 editor-formula/i18n/zh_CN.json                     |   11 -
 editor-formula/i18n/zh_CN.yaml                     |    5 +
 editor-formula/icon.svg                            |    3 -
 editor-formula/package.json                        |   19 +-
 .../pnpm-lock.yaml                                 |  559 +++++++---
 editor-formula/tsconfig.json                       |    5 +-
 editor-formula/vite.config.ts                      |   25 +-
 embed-basic/.prettierrc.json                       |    8 +
 embed-basic/Component.tsx                          |   73 ++
 embed-basic/README.md                              |    2 +
 embed-basic/basic.go                               |  153 +++
 {editor-chart => embed-basic}/go.mod               |    6 +-
 embed-basic/hooks.ts                               |  258 +++++
 {captcha-google-v2 => embed-basic}/i18n/en_US.yaml |   51 +-
 embed-basic/i18n/index.ts                          |    7 +
 embed-basic/i18n/translation.go                    |   36 +
 .../i18n/en_US.yaml => embed-basic/i18n/zh_CN.yaml |   51 +-
 {editor-chart => embed-basic}/index.ts             |   10 +-
 embed-basic/modal.tsx                              |  149 +++
 {editor-formula => embed-basic}/package.json       |   35 +-
 {captcha-google-v2 => embed-basic}/pnpm-lock.yaml  | 1070 ++++++++++++++++----
 {editor-chart => embed-basic}/tsconfig.json        |    3 +
 {editor-chart => embed-basic}/tsconfig.node.json   |    2 +-
 {editor-chart => embed-basic}/vite-env.d.ts        |    0
 {captcha-basic => embed-basic}/vite.config.ts      |   28 +-
 44 files changed, 3034 insertions(+), 666 deletions(-)
 create mode 100644 editor-chart/.prettierrc.json
 delete mode 100644 editor-chart/i18n/en_US.json
 delete mode 100644 editor-chart/i18n/zh_CN.json
 delete mode 100644 editor-chart/icon.svg
 copy {captcha-google-v2 => editor-chart}/pnpm-lock.yaml (60%)
 create mode 100644 editor-formula/.prettierrc.json
 delete mode 100644 editor-formula/i18n/en_US.json
 delete mode 100644 editor-formula/i18n/zh_CN.json
 delete mode 100644 editor-formula/icon.svg
 copy {captcha-google-v2 => editor-formula}/pnpm-lock.yaml (73%)
 create mode 100644 embed-basic/.prettierrc.json
 create mode 100644 embed-basic/Component.tsx
 create mode 100644 embed-basic/README.md
 create mode 100644 embed-basic/basic.go
 copy {editor-chart => embed-basic}/go.mod (92%)
 create mode 100644 embed-basic/hooks.ts
 copy {captcha-google-v2 => embed-basic}/i18n/en_US.yaml (51%)
 create mode 100644 embed-basic/i18n/index.ts
 create mode 100644 embed-basic/i18n/translation.go
 copy captcha-google-v2/i18n/en_US.yaml => embed-basic/i18n/zh_CN.yaml (50%)
 copy {editor-chart => embed-basic}/index.ts (84%)
 create mode 100644 embed-basic/modal.tsx
 copy {editor-formula => embed-basic}/package.json (53%)
 copy {captcha-google-v2 => embed-basic}/pnpm-lock.yaml (54%)
 copy {editor-chart => embed-basic}/tsconfig.json (91%)
 copy {editor-chart => embed-basic}/tsconfig.node.json (84%)
 copy {editor-chart => embed-basic}/vite-env.d.ts (100%)
 copy {captcha-basic => embed-basic}/vite.config.ts (75%)

Reply via email to