@wix/zero-config-implementation 1.46.0 → 1.47.0
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.
package/dist/index.js
CHANGED
|
@@ -11286,6 +11286,7 @@ function Om(e, t, a, n) {
|
|
|
11286
11286
|
inlineElement: {
|
|
11287
11287
|
selector: Mm(i),
|
|
11288
11288
|
displayName: jn(i.name),
|
|
11289
|
+
behaviors: { removable: !0, selectable: !1 },
|
|
11289
11290
|
// Add data from inner element props if available
|
|
11290
11291
|
...u && Object.keys(u).length > 0 && { data: u },
|
|
11291
11292
|
// CSS properties from heuristic + matched CSS files
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"registry": "https://registry.npmjs.org/",
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.47.0",
|
|
8
8
|
"description": "Core library for extracting component manifests from JS and CSS files",
|
|
9
9
|
"type": "module",
|
|
10
10
|
"main": "dist/index.js",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
]
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
|
-
"falconPackageHash": "
|
|
87
|
+
"falconPackageHash": "3524e32da30b9a43b1f548d22b8e065abea7ce993f23ae0f52abc674"
|
|
88
88
|
}
|
|
@@ -104,6 +104,7 @@ function buildElements(
|
|
|
104
104
|
inlineElement: {
|
|
105
105
|
selector: buildSelector(element),
|
|
106
106
|
displayName: formatDisplayName(element.name),
|
|
107
|
+
behaviors: { removable: true, selectable: false },
|
|
107
108
|
// Add data from inner element props if available
|
|
108
109
|
...(data && Object.keys(data).length > 0 && { data }),
|
|
109
110
|
// CSS properties from heuristic + matched CSS files
|