esm-styles 0.3.9 → 0.3.10

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.
@@ -247,7 +247,7 @@ export const joinSelectorPath = (path) => {
247
247
  part.startsWith('+') ||
248
248
  part.startsWith('~'):
249
249
  // Combinators: always join with a space
250
- return acc + ' ' + part;
250
+ return acc + ' ' + transformExplicitClasses(part);
251
251
  case part.startsWith(':') ||
252
252
  part.startsWith('::') ||
253
253
  part.startsWith('#') ||
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esm-styles",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "A library for working with ESM styles",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",