@salty-css/webpack 0.0.1-alpha.225 → 0.0.1-alpha.226

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 +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -88,6 +88,7 @@ export const Component = styled('div', {
88
88
  // Add additional default props for the component (eg, id and other html element attributes)
89
89
  },
90
90
  passProps: true, // Pass variant props to the rendered element / parent component (default: false)
91
+ priority: 1, // Override automatic priotity layer with a custom value (0-8), higher is considered more important
91
92
  });
92
93
  ```
93
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salty-css/webpack",
3
- "version": "0.0.1-alpha.225",
3
+ "version": "0.0.1-alpha.226",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "typings": "./dist/index.d.ts",
@@ -34,7 +34,7 @@
34
34
  }
35
35
  },
36
36
  "dependencies": {
37
- "@salty-css/core": "^0.0.1-alpha.225",
37
+ "@salty-css/core": "^0.0.1-alpha.226",
38
38
  "webpack": ">=5.x"
39
39
  }
40
40
  }