@razaman2/reactive-view 0.0.34-beta.16 → 0.0.34-beta.17

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
@@ -172,7 +172,7 @@ var import_vue = require("vue");
172
172
 
173
173
  // package.json
174
174
  var name = "@razaman2/reactive-view";
175
- var version = "0.0.34-beta.16";
175
+ var version = "0.0.34-beta.17";
176
176
 
177
177
  // src/ReactiveView.ts
178
178
  var setup = {
@@ -560,7 +560,7 @@ var extendVnode = (component, element) => {
560
560
  const finalProps = Object.assign(rest, functionalProps, { class: finalClasses, style: finalStyles });
561
561
  const finalSlots = slots ? typeof slots === "function" ? slots(vnode.children) : slots : vnode.children;
562
562
  const finalElement = ["undefined"].includes(typeof element) ? vnode.type : element;
563
- return (0, import_vue2.h)(finalElement, finalProps, () => finalSlots);
563
+ return (0, import_vue2.h)(finalElement, finalProps, finalSlots);
564
564
  };
565
565
  }
566
566
  });
package/dist/index.mjs CHANGED
@@ -128,7 +128,7 @@ import { ref, reactive, watch, isRef, isReactive, createVNode, getCurrentInstanc
128
128
 
129
129
  // package.json
130
130
  var name = "@razaman2/reactive-view";
131
- var version = "0.0.34-beta.16";
131
+ var version = "0.0.34-beta.17";
132
132
 
133
133
  // src/ReactiveView.ts
134
134
  var setup = {
@@ -516,7 +516,7 @@ var extendVnode = (component, element) => {
516
516
  const finalProps = Object.assign(rest, functionalProps, { class: finalClasses, style: finalStyles });
517
517
  const finalSlots = slots ? typeof slots === "function" ? slots(vnode.children) : slots : vnode.children;
518
518
  const finalElement = ["undefined"].includes(typeof element) ? vnode.type : element;
519
- return h(finalElement, finalProps, () => finalSlots);
519
+ return h(finalElement, finalProps, finalSlots);
520
520
  };
521
521
  }
522
522
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razaman2/reactive-view",
3
- "version": "0.0.34-beta.16",
3
+ "version": "0.0.34-beta.17",
4
4
  "description": "This library enables you to build vue apps in an object oriented way. It provides a convenient approach to extend and override ui components. It provides a built in eventing system along with component data management.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",