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

ovilia pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/echarts-custom-series.git


    from 62c3256  Merge pull request #15 from apache/dev
     add 064e639  feat: word cloud init
     add 4e6d614  feat: word cloud layout
     add 2e294b0  feat: word cloud
     add 2043124  refactor: layout should follow the original version as much 
as possible
     add 894d95b  feat: finish word cloud
     add 6e4c847  doc: update license and notice
     add 75e5973  chore: release wordCloud
     add 0e28f6b  doc: add notice
     new f1d10f3  Merge pull request #17 from apache/feat-word-cloud

The 1 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:
 NOTICE                                             |    5 +
 README.md                                          |    2 +-
 LICENSE => custom-series/barRange/LICENSE          |    0
 custom-series/barRange/NOTICE                      |    5 +
 custom-series/barRange/package-lock.json           |    4 +-
 custom-series/barRange/package.json                |    6 +-
 LICENSE => custom-series/contour/LICENSE           |    0
 custom-series/contour/NOTICE                       |    5 +
 custom-series/contour/package-lock.json            |    4 +-
 custom-series/contour/package.json                 |    6 +-
 LICENSE => custom-series/lineRange/LICENSE         |    0
 custom-series/lineRange/NOTICE                     |    5 +
 custom-series/lineRange/package-lock.json          |    4 +-
 custom-series/lineRange/package.json               |    6 +-
 LICENSE => custom-series/liquidFill/LICENSE        |    0
 custom-series/liquidFill/NOTICE                    |    5 +
 custom-series/liquidFill/package-lock.json         |    4 +-
 custom-series/liquidFill/package.json              |    6 +-
 LICENSE => custom-series/segmentedDoughnut/LICENSE |    0
 custom-series/segmentedDoughnut/NOTICE             |    5 +
 custom-series/segmentedDoughnut/package-lock.json  |    4 +-
 custom-series/segmentedDoughnut/package.json       |    6 +-
 LICENSE => custom-series/stage/LICENSE             |    0
 custom-series/stage/NOTICE                         |    5 +
 custom-series/stage/package-lock.json              |    4 +-
 custom-series/stage/package.json                   |    6 +-
 LICENSE => custom-series/violin/LICENSE            |    0
 custom-series/violin/NOTICE                        |    5 +
 custom-series/violin/package-lock.json             |    4 +-
 custom-series/violin/package.json                  |    6 +-
 custom-series/wordCloud/LICENSE                    |  214 +++
 custom-series/wordCloud/NOTICE                     |    5 +
 custom-series/wordCloud/README.md                  |  117 ++
 custom-series/wordCloud/dist/word-cloud.auto.js    | 1128 +++++++++++++++
 .../wordCloud/dist/word-cloud.auto.min.js          |   22 +
 .../wordCloud/dist/word-cloud.auto.min.js.map      |    1 +
 .../dist/word-cloud.d.ts}                          |    0
 .../wordCloud/dist/word-cloud.esm.min.mjs          |   20 +
 .../wordCloud/dist/word-cloud.esm.min.mjs.map      |    1 +
 custom-series/wordCloud/dist/word-cloud.esm.mjs    | 1121 +++++++++++++++
 custom-series/wordCloud/dist/word-cloud.js         | 1127 +++++++++++++++
 custom-series/wordCloud/dist/word-cloud.min.js     |   20 +
 custom-series/wordCloud/dist/word-cloud.min.js.map |    1 +
 custom-series/wordCloud/examples/index.html        |  437 ++++++
 custom-series/wordCloud/examples/logo.png          |  Bin 0 -> 4685 bytes
 .../examples/shrinkToFit.html}                     |   69 +-
 custom-series/wordCloud/examples/ssr.js            |  424 ++++++
 .../{liquidFill => wordCloud}/package-lock.json    |    4 +-
 .../{liquidFill => wordCloud}/package.json         |   25 +-
 custom-series/wordCloud/screenshots/wordCloud.png  |  Bin 0 -> 231827 bytes
 custom-series/wordCloud/src/index.ts               |  287 ++++
 custom-series/wordCloud/src/layout.ts              | 1481 ++++++++++++++++++++
 LICENSE => scripts/template/LICENSE                |    0
 scripts/template/NOTICE                            |    5 +
 scripts/template/package.json                      |    4 +-
 scripts/template/src/index.ts                      |    2 +-
 56 files changed, 6547 insertions(+), 80 deletions(-)
 create mode 100644 NOTICE
 copy LICENSE => custom-series/barRange/LICENSE (100%)
 create mode 100644 custom-series/barRange/NOTICE
 copy LICENSE => custom-series/contour/LICENSE (100%)
 create mode 100644 custom-series/contour/NOTICE
 copy LICENSE => custom-series/lineRange/LICENSE (100%)
 create mode 100644 custom-series/lineRange/NOTICE
 copy LICENSE => custom-series/liquidFill/LICENSE (100%)
 create mode 100644 custom-series/liquidFill/NOTICE
 copy LICENSE => custom-series/segmentedDoughnut/LICENSE (100%)
 create mode 100644 custom-series/segmentedDoughnut/NOTICE
 copy LICENSE => custom-series/stage/LICENSE (100%)
 create mode 100644 custom-series/stage/NOTICE
 copy LICENSE => custom-series/violin/LICENSE (100%)
 create mode 100644 custom-series/violin/NOTICE
 create mode 100644 custom-series/wordCloud/LICENSE
 create mode 100644 custom-series/wordCloud/NOTICE
 create mode 100644 custom-series/wordCloud/README.md
 create mode 100644 custom-series/wordCloud/dist/word-cloud.auto.js
 create mode 100644 custom-series/wordCloud/dist/word-cloud.auto.min.js
 create mode 100644 custom-series/wordCloud/dist/word-cloud.auto.min.js.map
 copy custom-series/{barRange/dist/bar-range.d.ts => 
wordCloud/dist/word-cloud.d.ts} (100%)
 create mode 100644 custom-series/wordCloud/dist/word-cloud.esm.min.mjs
 create mode 100644 custom-series/wordCloud/dist/word-cloud.esm.min.mjs.map
 create mode 100644 custom-series/wordCloud/dist/word-cloud.esm.mjs
 create mode 100644 custom-series/wordCloud/dist/word-cloud.js
 create mode 100644 custom-series/wordCloud/dist/word-cloud.min.js
 create mode 100644 custom-series/wordCloud/dist/word-cloud.min.js.map
 create mode 100644 custom-series/wordCloud/examples/index.html
 create mode 100644 custom-series/wordCloud/examples/logo.png
 copy custom-series/{barRange/examples/index.html => 
wordCloud/examples/shrinkToFit.html} (58%)
 create mode 100644 custom-series/wordCloud/examples/ssr.js
 copy custom-series/{liquidFill => wordCloud}/package-lock.json (95%)
 copy custom-series/{liquidFill => wordCloud}/package.json (62%)
 create mode 100644 custom-series/wordCloud/screenshots/wordCloud.png
 create mode 100644 custom-series/wordCloud/src/index.ts
 create mode 100644 custom-series/wordCloud/src/layout.ts
 copy LICENSE => scripts/template/LICENSE (100%)
 create mode 100644 scripts/template/NOTICE


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to