Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for @container queries by updating the CSS language service #439

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.7.9 (11-12-2023)

- Add support for `@container` queries

## 1.7.8 (03-04-2023)

- Bug fix, update typescript styled plugin to re-enable auto completion
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ If however you believe this property is standard and thus missing you can raise
### Intellisense is not working!

#### It hasn't worked since updating to v1.7.8!

This is due to a clash between TypeScript 5.0.0 and this extension. When VSCode released March 2023 that had TypeScript 5.X set by default which 1.7.8 supports but lower versions don't.
So, if you're not getting intellisense its most likely because you've updated the extension but haven't updated your version of TypeScript yet. The quick option is to downgrade to v1.7.5, the long term option is to migrate to TypeScript 5.X
See: https://github.com/styled-components/vscode-styled-components/issues/387
Expand Down
192 changes: 96 additions & 96 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-styled-components",
"displayName": "vscode-styled-components",
"description": "Syntax highlighting for styled-components",
"version": "1.7.8",
"version": "1.7.9",
"publisher": "styled-components",
"icon": "logo.png",
"license": "MIT",
Expand Down Expand Up @@ -87,8 +87,8 @@
},
"dependencies": {
"d3-color": "^3.1.0",
"@styled/typescript-styled-plugin": "^1.0.0",
"vscode-css-languageservice": "^6.2.1"
"@styled/typescript-styled-plugin": "^1.0.1",
"vscode-css-languageservice": "^6.2.11"
},
"devDependencies": {
"@types/d3-color": "^3.1.0",
Expand Down
Loading