Skip to content

Releases: antvis/T8

0.2.0

07 Aug 13:09
0a3bea7

Choose a tag to compare

What's Changed

  • fix: product import tslib with an absolute path by @BQXBQX in #101
  • fix: style detail issue by @BQXBQX in #106
  • chore: update readme image & badge by @hustcc in #108
  • feat: add text plugin support by @BQXBQX in #109
  • feat: implement event handling in Text component by @BQXBQX in #110
  • feat: add structured article generation prompt by @BQXBQX in #112
  • test: init test util by @hustcc in #113
  • refactor: use arrow as ratio suffix by @BQXBQX in #114
  • chore: decoupling ts configuration by @BQXBQX in #115
  • feat: integrate VitePress for documentation by @BQXBQX in #116
  • feat: enhance tutorial by @BQXBQX in #117
  • chore: deploy with gh-pages by @hustcc in #118
  • docs: update readme by @hustcc in #122
  • feat: enhance parsing and rendering capabilities with clarinet by @BQXBQX in #123
  • docs: add preview video by @hustcc in #124
  • chore: add streaming output tutorial and update API by @BQXBQX in #125
  • fix: Use html native tags to implement ul, ol by @HHN0609 in #126
  • chore: update favicon and upgrade 0.2.0 by @hustcc in #127

T8-Preview-Lite.mp4

New Contributors

Full Changelog: 0.1.0...0.2.0

0.1.0

24 Jun 08:52
4cb765a

Choose a tag to compare

What's Changed

  • feat(t8): initial 0.1.0 version
import { Text } from '@antv/t8';

// A text json schema to be visualized.
const schema = {
  /*  */
};

// Instantiate a new Text.
const text = new Text({
  container: 'container',
});

// Specify schema visualization.
text.schema(schema).theme('dark');

// Render visualization.
const unmont = text.render();

// Destroy.
unmont();

T8 examples dark

New Contributors

Full Changelog: https://github.com/antvis/T8/commits/0.1.0