Releases: josefaidt/svelte-themer
Releases · josefaidt/svelte-themer
v0.5.5
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
What's Changed
- feat: add use theme by @josefaidt in #44
- feat: add use theme by @josefaidt in #45
Full Changelog: v0.5.0...v0.5.3
v0.5.0
What's Changed
- swap jest for vitest by @josefaidt in #43
- 0.5.0 by @josefaidt in #42
Full Changelog: v0.4.13...v0.5.0
v0.4.13
- 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;