@razaman2/reactive-view 0.0.34-beta.19 → 0.0.34-beta.20

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
@@ -174,7 +174,7 @@ var import_vue = require("vue");
174
174
 
175
175
  // package.json
176
176
  var name = "@razaman2/reactive-view";
177
- var version = "0.0.34-beta.19";
177
+ var version = "0.0.34-beta.20";
178
178
 
179
179
  // src/ReactiveView.ts
180
180
  var setup = {
@@ -618,7 +618,7 @@ function defineReactiveView(param1, param2) {
618
618
  function showComponent(component, options = {}) {
619
619
  var _a;
620
620
  if (!options.key || !document.getElementById(options.key)) {
621
- const container = options.container || "app-modal";
621
+ const container = options.container || "app-dialogs";
622
622
  const dialogs = document.getElementById(container) || document.createElement("div");
623
623
  if (!dialogs.hasAttribute("id")) {
624
624
  dialogs.setAttribute("id", container);
package/dist/index.mjs CHANGED
@@ -128,7 +128,7 @@ import { ref, reactive, watch, unref, isRef, isReactive, createVNode, getCurrent
128
128
 
129
129
  // package.json
130
130
  var name = "@razaman2/reactive-view";
131
- var version = "0.0.34-beta.19";
131
+ var version = "0.0.34-beta.20";
132
132
 
133
133
  // src/ReactiveView.ts
134
134
  var setup = {
@@ -572,7 +572,7 @@ function defineReactiveView(param1, param2) {
572
572
  function showComponent(component, options = {}) {
573
573
  var _a;
574
574
  if (!options.key || !document.getElementById(options.key)) {
575
- const container = options.container || "app-modal";
575
+ const container = options.container || "app-dialogs";
576
576
  const dialogs = document.getElementById(container) || document.createElement("div");
577
577
  if (!dialogs.hasAttribute("id")) {
578
578
  dialogs.setAttribute("id", container);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@razaman2/reactive-view",
3
- "version": "0.0.34-beta.19",
3
+ "version": "0.0.34-beta.20",
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",