Releases: tw-in-js/vscode-twind-intellisense
Releases · tw-in-js/vscode-twind-intellisense
v0.2.1
v0.2.0
v0.1.1
-
fix: upgrade typescript-plugin 39de6aa
-
adds support for the important modifier
!
as prefix to align the syntax with windicss and tailwindcss-jitRule Class Names !text-center
!text-center
!-m-8
!-m-8
!(text-center font-bold)
!text-center !font-bold
hover:!(text-center font-bold)
hover:!text-center hover:!font-bold
!hover:(text-center focus:font-bold)
hover:!text-center hover:focus:!font-bold
text!(xl underline)
!text-xl !text-underline
!text(xl underline) md:!m(-8)
!text-xl !text-underline md:!-m-8
The suffix syntax is still supported but the emitted class is transformed to the new syntax:
font-bold!
->!font-bold
-
fix: re-loading of config file
-
-
fix: always activate 271ac9b
v0.1.0
- fix: include twind types in package 23c2395
- fix: use @twind/[email protected] 4bd77d7
- fix: prevent detection of CSS objects within style/styled API
- fix: "better" completion labels
- fix: cache replaced placeholders
- fix: only provide completions if a twind dts file (local or bundled) has been found
- fix: optimize loading of twind dts (prefer local, fallback bundled)
- fix: use sucrase to transform config files
v0.0.4
v0.0.3
- autodetect if twind project
- twind output channel
- restart command
- doc: describe config options 94ff4e1
Changes from @twind/[email protected]
- fix: update twind to use fixed types
- fix: fallback to load types from builtin twind
- fix: allow to enable/disable the plugin
- fix: cleanup interpolated values label and sort last
- fix: add arbitrary value to completion list
- fix: important config value is now supported in twind
- fix: do not beautify comma with arbitrary values
- fix: report unknown theme value again
- fix: ignore string that are part of a binary expression like x + '...'
- fix: use kind order only for same ranked items and sort screens by their min-width
- fix: break out of arbitrary value on whitespace