@node-projects/web-component-designer 0.1.62 → 0.1.63

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.
@@ -116,6 +116,8 @@ export class AbstractStylesheetService {
116
116
  for (let p of parts) {
117
117
  if (p == ':host')
118
118
  sel += DesignerCanvas.cssprefixConstant;
119
+ else if (p == ':root')
120
+ sel += p;
119
121
  else if (p.includes(DesignerCanvas.cssprefixConstant)) {
120
122
  sel += p;
121
123
  continue;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "A UI designer for Polymer apps",
3
3
  "name": "@node-projects/web-component-designer",
4
- "version": "0.1.62",
4
+ "version": "0.1.63",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",