Skip to content

Releases: josefaidt/svelte-themer

v0.5.5

30 Jan 20:20
Compare
Choose a tag to compare

What's Changed

  • feat: 0.5.5 by @josefaidt in #46
    • migrate from vite to svelte-kit package
    • svelte-kit for demo and component lib packaging
    • moves source code to src/
    • removes pnpm workspaces
    • removes docs package
    • examples to use latest distribution rather than workspace package

Full Changelog: v0.5.3...v0.5.5

v0.5.3

23 Jan 16:42
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.3

v0.5.0

22 Jan 22:27
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.13...v0.5.0

v0.4.13

03 Oct 22:40
Compare
Choose a tag to compare
  • improves CSS Variable creation and management
  • base variables get precedence over theme variables when initializing CSS Variables
     const base = {
       colors: {
         blue: 'blue'
       }
     }
    
     const themes = {
       dark: {
         colors: {
           red: 'red'
         }
       }
     }
    
     // creates
     // --theme-colors-blue: blue;
     // --theme-colors-red: initial;

v0.4.11

24 May 16:49
Compare
Choose a tag to compare
  • fix: set context on init & reactive, named exports rollup config

  • v0.4.11

v0.4.10

23 May 21:48
Compare
Choose a tag to compare
  • v0.4.10

v0.4.9

21 May 13:37
Compare
Choose a tag to compare
  • update ssr build, ref #33