Releases: typicode/mistcss
Releases · typicode/mistcss
v1.0.3
v1.0.2
What's Changed
- fix: normalize tag selectors and sanitize key generation by @honeymaro in #65
New Contributors
- @honeymaro made their first contribution in #65
Full Changelog: v1.0.1...v1.0.2
v1.0.1
v1.0.0
Instead of generating React components, v1 now uses a different approach. It's built on standard HTML/CSS and generates a single mist.d.ts
for type safety and code completion.
Setup is also greatly simplified and doesn't require running a separate process.
v0.5.6
What's Changed
- [Feature] Add Svelte Renderer by @totto2727 in #57
New Contributors
- @totto2727 made their first contribution in #57
Full Changelog: v0.5.5...v0.5.6
v0.5.5
v0.5.4
What's Changed
Usage
In your CSS component:
/* You can now add TSDoc comments in your CSS component */
@scope (button.custom-button) {
The generated component will contain:
/**
* You can now add TSDoc comments in your CSS component
*/
export function CustomButton // ...
Full Changelog: v0.5.3...v0.5.4
v0.5.3
v0.5.2 Demon Slayer
Vue Support
I'm proud to announce that MistCSS now supports Vue!
Also, following Vue's tradition, this release is named after an anime.
You can now write your atomic Vue components in CSS only! 💚
/* Button.mist.css */
@scope (button.custom-button) {
/* ... */
}
mistcss ./components --target=vue
// App.vue
import CustomButton from 'Button.mist`
v0.5.1
What's Changed
- fix(cli): handle unknown target by @haecheonlee in #48
New Contributors
- @haecheonlee made their first contribution in #48
Full Changelog: v0.5.0...v0.5.1