@caseparts-org/caseblocks 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -43,4 +43,19 @@ button {
43
43
  }
44
44
  ```
45
45
 
46
- CSS IntelliSense: Use an extension like 'CSS Variable Autocomplete' for better IntelliSense and easier access to design tokens.
46
+ ### CSS Variable Autocomplete
47
+
48
+ 1. Install `CSS Variable Autocomplete` vs code extension
49
+ 2. Go to VS Code settings (Ctrl + ,)
50
+ 3. Look for a setting like "Css Variables: Lookup Files" or similar
51
+ 4. Add the path to your tokens.css file
52
+
53
+ ```json
54
+ {
55
+ "cssVariables.lookupFiles": [
56
+ "node_modules/@caseparts-org/caseblocks/dist/styles/tokens.css"
57
+ ]
58
+ }
59
+ ```
60
+
61
+ ![CSS Variable Autocomplete in action](./assets/css-autocomplete.png)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@caseparts-org/caseblocks",
3
3
  "private": false,
4
- "version": "0.0.6",
4
+ "version": "0.0.8",
5
5
  "type": "module",
6
6
  "module": "dist/main.js",
7
7
  "types": "dist/main.d.ts",