@codemirror/lang-css
Advanced tools
Comparing version 6.3.0 to 6.3.1
@@ -0,1 +1,7 @@ | ||
## 6.3.1 (2024-11-26) | ||
### Bug fixes | ||
When completing a property name, insert a colon and space after the name. | ||
## 6.3.0 (2024-09-07) | ||
@@ -2,0 +8,0 @@ |
@@ -20,3 +20,3 @@ import { parser } from '@lezer/css'; | ||
} | ||
_properties = names.sort().map(name => ({ type: "property", label: name })); | ||
_properties = names.sort().map(name => ({ type: "property", label: name, apply: name + ": " })); | ||
} | ||
@@ -23,0 +23,0 @@ return _properties || []; |
{ | ||
"name": "@codemirror/lang-css", | ||
"version": "6.3.0", | ||
"version": "6.3.1", | ||
"description": "CSS language support for the CodeMirror code editor", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41188