@pinegrow/vite-plugin 3.0.0-beta.45 → 3.0.0-beta.47
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/vue-plugin.js +7 -0
- package/package.json +1 -1
- package/types.d.ts +10 -0
package/dist/vue-plugin.js
CHANGED
|
@@ -224,6 +224,13 @@ export function usePinegrow() {
|
|
|
224
224
|
lastEl = childVNodes[childVNodes.length - 1].el
|
|
225
225
|
}
|
|
226
226
|
|
|
227
|
+
if (firstEl && firstEl.nodeType !== 1) {
|
|
228
|
+
firstEl = firstEl.nextElementSibling
|
|
229
|
+
}
|
|
230
|
+
if (lastEl && lastEl.nodeType !== 1) {
|
|
231
|
+
lastEl = lastEl.nextElementSibling
|
|
232
|
+
}
|
|
233
|
+
|
|
227
234
|
childVNodes.forEach(childVNode => {
|
|
228
235
|
pgUpdateElCache(hook, pgId, isRootFragment ? el : rootEl, key)(childVNode)
|
|
229
236
|
})
|
package/package.json
CHANGED
package/types.d.ts
CHANGED