@ningboyz/vue 1.0.9 → 1.0.11
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.d.ts +3 -1
- package/es/components.js +8 -3
- package/es/index.d.ts +3 -4
- package/es/index.js +6 -14
- package/es/stimulsoft/desgin/desgin.vue.js +2 -2
- package/es/stimulsoft/desgin/index.d.ts +3 -2
- package/es/stimulsoft/desgin/index.js +7 -4
- package/package.json +1 -1
- package/es/package.json.js +0 -7
package/es/components.d.ts
CHANGED
package/es/components.js
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
import "./stimulsoft/desgin/index.js";
|
|
2
|
-
|
|
1
|
+
import { YzDesgin as s } from "./stimulsoft/desgin/index.js";
|
|
2
|
+
const t = [s], e = {
|
|
3
|
+
install(o) {
|
|
4
|
+
t.forEach((n) => o.use(n));
|
|
5
|
+
}
|
|
6
|
+
};
|
|
3
7
|
export {
|
|
4
|
-
|
|
8
|
+
s as YzDesgin,
|
|
9
|
+
e as YzUI
|
|
5
10
|
};
|
package/es/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
export * from './components
|
|
3
|
-
|
|
4
|
-
export default _default;
|
|
1
|
+
import * as YzUI from './components';
|
|
2
|
+
export * from './components';
|
|
3
|
+
export default YzUI;
|
package/es/index.js
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
|
-
import o from "./
|
|
2
|
-
import
|
|
3
|
-
import "./stimulsoft/desgin/index.js";
|
|
4
|
-
import { default as l } from "./stimulsoft/desgin/desgin.vue.js";
|
|
5
|
-
const a = {
|
|
6
|
-
install(e) {
|
|
7
|
-
Object.entries(s).forEach(([i, t]) => {
|
|
8
|
-
t.install && e.use(t);
|
|
9
|
-
});
|
|
10
|
-
},
|
|
11
|
-
version: o.version
|
|
12
|
-
};
|
|
1
|
+
import * as o from "./components.js";
|
|
2
|
+
import { YzUI as t } from "./components.js";
|
|
3
|
+
import { YzDesgin as p } from "./stimulsoft/desgin/index.js";
|
|
13
4
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
p as YzDesgin,
|
|
6
|
+
t as YzUI,
|
|
7
|
+
o as default
|
|
16
8
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./desgin.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-119bbadd"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
export declare const YzDesgin: Plugin;
|
|
3
|
+
export default YzDesgin;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
t
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import n from "./desgin.vue.js";
|
|
2
|
+
const t = Object.assign({}, n, {
|
|
3
|
+
install(e) {
|
|
4
|
+
e.component(n.name, n);
|
|
5
|
+
}
|
|
6
|
+
});
|
|
5
7
|
export {
|
|
8
|
+
t as YzDesgin,
|
|
6
9
|
t as default
|
|
7
10
|
};
|
package/package.json
CHANGED