Skip to content

Releases: timvink/mkdocs-charts-plugin

mkdocs-charts-plugin v0.0.12

22 Oct 13:44
aa7a774
Compare
Choose a tag to compare

What's Changed

This release has better support light/dark modes. You can specify the vegalite theme to use for light, and/or dark mode. In addition, you can specify which mkdocs-material themes qualify as light and which as dark. This way, the charts will properly change light/dark mode, even when using custom mkdocs-material themes.

The vegalite_theme option has been replaced with the vegalite_theme_light option. A new integrations option section lets you specify the mkdocs-material theme(s) that correspond with light and dark. Here are the new default settings:

# mkdocs.yml
plugins:
  - charts:
      vega_theme_light: default
      vega_theme_dark: dark
      integrations:
        mkdocs_material:
          themes_light:
            - default
          themes_dark:
            - slate

Pull requests:

  • Add support for custom light/dark schemes by @sisp in #23
  • Add new option vega_theme_light by @timvink in #25

New Contributors

  • @sisp made their first contribution in #23

Full Changelog: v0.0.11...v0.0.12

mkdocs-charts-plugin v0.0.11

26 Aug 15:12
0bb5eab
Compare
Choose a tag to compare
  • Fixed edge-case where links with indexs would break charts (#24) via 276cd2a

Full Changelog: v0.0.10...v0.0.11

mkdocs-charts-plugin v0.0.10

28 Aug 07:57
Compare
Choose a tag to compare

What's Changed

  • Compatibility with MkDocs 1.5 change to extra_javascript by @oprypin in #18

New Contributors

Full Changelog: v0.0.9...v0.0.10

mkdocs-charts-plugin v0.0.9

06 Jun 10:58
73a486b
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.8...v0.0.9

mkdocs-charts-plugin v0.0.8

20 Feb 10:01
Compare
Choose a tag to compare

mkdocs-charts-plugin v0.0.7

16 Feb 11:40
Compare
Choose a tag to compare

Changed

  • Invalid JSON schema will now raise a SuperFencesException instead of silently failing

mkdocs-charts-plugin v0.0.6

14 Dec 20:08
Compare
Choose a tag to compare

Changed

mkdocs-charts-plugin v0.0.5

11 Dec 13:16
Compare
Choose a tag to compare

Fixed

  • Bug where plugin would break if pymdownx.superfences was set but not a custom fence (31f120d)

Added

mkdocs-charts-plugin v0.0.4

10 Dec 21:43
Compare
Choose a tag to compare

Fixed

  • Bug where URLs in 'schema.spec' field were not updated (37e3271)
  • Bug where URLs in schema.transform.from fields were not updated (5ffa8f2)

Added

  • Completed documentation including altair example and demo page (#7 #10)

mkdocs-charts-plugin v0.0.3

09 Dec 13:11
Compare
Choose a tag to compare

Added

  • Support for dark mode toggle (#3)