@ningboyz/vue 1.0.65 → 1.0.66
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/es/components.js
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import { YzDesginer as
|
|
2
|
-
import { StimulsoftFactory as c } from "./stimulsoft/desginer/index.js";
|
|
1
|
+
import { YzDesginer as t } from "./stimulsoft/desginer/index.js";
|
|
3
2
|
import { YzLayout as e } from "./layout/index.js";
|
|
4
|
-
import { YzMessage as
|
|
5
|
-
const s = [
|
|
6
|
-
s.forEach((
|
|
3
|
+
import { YzMessage as f } from "./message/index.js";
|
|
4
|
+
const s = [t, e], p = (o) => {
|
|
5
|
+
s.forEach((r) => o.use(r));
|
|
7
6
|
};
|
|
8
7
|
export {
|
|
9
|
-
|
|
10
|
-
r as YzDesginer,
|
|
8
|
+
t as YzDesginer,
|
|
11
9
|
e as YzLayout,
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
f as YzMessage,
|
|
11
|
+
p as install
|
|
14
12
|
};
|
package/es/index.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import * as o from "./components.js";
|
|
2
|
-
import { install as
|
|
3
|
-
import {
|
|
4
|
-
import { YzMessage as
|
|
5
|
-
import { YzLayout as
|
|
2
|
+
import { install as t } from "./components.js";
|
|
3
|
+
import { YzDesginer as p } from "./stimulsoft/desginer/index.js";
|
|
4
|
+
import { YzMessage as a } from "./message/index.js";
|
|
5
|
+
import { YzLayout as x } from "./layout/index.js";
|
|
6
6
|
export {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
p as YzMessage,
|
|
7
|
+
p as YzDesginer,
|
|
8
|
+
x as YzLayout,
|
|
9
|
+
a as YzMessage,
|
|
11
10
|
o as default,
|
|
12
|
-
|
|
11
|
+
t as install
|
|
13
12
|
};
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
o.
|
|
4
|
-
t.component(o.name, o);
|
|
1
|
+
import n from "./desginer.vue.js";
|
|
2
|
+
n.install = (o) => {
|
|
3
|
+
o.component(n.name, n);
|
|
5
4
|
};
|
|
6
|
-
const
|
|
5
|
+
const m = n;
|
|
7
6
|
export {
|
|
8
|
-
|
|
9
|
-
c as YzDesginer
|
|
7
|
+
m as YzDesginer
|
|
10
8
|
};
|
package/package.json
CHANGED