|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## 0.3.0 |
| 4 | + |
| 5 | +### General |
| 6 | + |
| 7 | +- Added support for string values in Tailwind's `important` option (#96) |
| 8 | +- Removed all unnecessary logs (#91) |
| 9 | +- Added support for components in addition to utilities (#67) |
| 10 | +- Added description to custom variant completion items where possible |
| 11 | +- Config parsing errors are now displayed in the VS Code UI |
| 12 | +- Class names from `@tailwind base` are now included (by default `@tailwind base` does not include any class names but plugins may contribute them) |
| 13 | +- Color swatches can now be displayed for rules with multiple properties and/or colors with variable alpha (#113) |
| 14 | +- Added `tailwindCSS.includeLanguages` setting: |
| 15 | + ```json |
| 16 | + { |
| 17 | + "tailwindCSS.includeLanguages": { |
| 18 | + "plaintext": "html" |
| 19 | + } |
| 20 | + } |
| 21 | + ``` |
| 22 | + This setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions built-in languages, depending on how you want the new language to be treated (e.g. `html`, `css`, or `javascript`) |
| 23 | + |
| 24 | +### HTML |
| 25 | + |
| 26 | +- Added built-in support for `liquid`, `aspnetcorerazor`, `mustache`, `HTML (EEx)`, `html-eex`, `gohtml`, `GoHTML`, and `hbs` languages |
| 27 | +- Added syntax definition to embedded stylesheets in HTML files |
| 28 | + |
| 29 | +### CSS |
| 30 | + |
| 31 | +- Added built-in support for `sugarss` language |
| 32 | +- Added `theme` (and `config`) helper hovers |
| 33 | +- Added `@apply` class name hovers |
| 34 | +- Added directive completion items with links to documentation |
| 35 | +- Added `@tailwind` completion items (`preflight`/`base`, `utilities`, `components`, `screens`) with links to documentation |
| 36 | +- Helper completion items that contain the `.` character will now insert square brackets when selected |
| 37 | +- `@apply` completion list now excludes class names that are not compatible |
| 38 | +- Added CSS syntax highlighting in `.vue` files (#15) |
| 39 | + |
| 40 | +### JS(X) |
| 41 | + |
| 42 | +- Completions now trigger when using backticks (#50, #93): |
| 43 | + ```js |
| 44 | + const App = () => <div className={`_ |
| 45 | + ``` |
| 46 | + |
3 | 47 | ## 0.2.0
|
4 | 48 |
|
5 | 49 | - Support for Tailwind v1 via LSP 🎉
|
|
0 commit comments