@ningboyz/vue 1.0.17 → 1.0.19
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 +1 -1
- package/es/components.js +4 -4
- package/es/index.js +4 -4
- package/es/stimulsoft/desginer/desginer.vue.js +7 -0
- package/es/stimulsoft/{desgin/desgin.vue2.js → desginer/desginer.vue2.js} +1 -1
- package/es/stimulsoft/{desgin → desginer}/index.d.ts +2 -2
- package/es/stimulsoft/desginer/index.js +9 -0
- package/package.json +3 -2
- package/es/index.d.ts +0 -3
- package/es/stimulsoft/desgin/desgin.vue.js +0 -7
- package/es/stimulsoft/desgin/index.js +0 -10
- /package/es/stimulsoft/{desgin/desgin.vue.d.ts → desginer/desginer.vue.d.ts} +0 -0
- /package/es/stimulsoft/{desgin → desginer}/factory.d.ts +0 -0
- /package/es/stimulsoft/{desgin → desginer}/factory.js +0 -0
- /package/es/stimulsoft/{desgin → desginer}/interface.d.ts +0 -0
package/es/components.d.ts
CHANGED
package/es/components.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
const t = [s],
|
|
1
|
+
import { YzDesginer as s } from "./stimulsoft/desginer/index.js";
|
|
2
|
+
const t = [s], r = (o) => {
|
|
3
3
|
t.forEach((n) => o.use(n));
|
|
4
4
|
};
|
|
5
5
|
export {
|
|
6
|
-
s as
|
|
7
|
-
|
|
6
|
+
s as YzDesginer,
|
|
7
|
+
r as install
|
|
8
8
|
};
|
package/es/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as o from "./components.js";
|
|
2
|
-
import { install as
|
|
3
|
-
import {
|
|
2
|
+
import { install as t } from "./components.js";
|
|
3
|
+
import { YzDesginer as p } from "./stimulsoft/desginer/index.js";
|
|
4
4
|
export {
|
|
5
|
-
p as
|
|
5
|
+
p as YzDesginer,
|
|
6
6
|
o as default,
|
|
7
|
-
|
|
7
|
+
t as install
|
|
8
8
|
};
|
|
@@ -6,7 +6,7 @@ import "../../node_modules/stimulsoft-reports-js-vuejs/stimulsoft.viewer.js";
|
|
|
6
6
|
import "../../node_modules/stimulsoft-reports-js-vuejs/stimulsoft.designer.js";
|
|
7
7
|
import "../../node_modules/stimulsoft-reports-js-vuejs/stimulsoft.blockly.editor.js";
|
|
8
8
|
const N = /* @__PURE__ */ f({
|
|
9
|
-
__name: "
|
|
9
|
+
__name: "desginer",
|
|
10
10
|
props: {
|
|
11
11
|
listData: {}
|
|
12
12
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const YzDesginer: {
|
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./interface').IStimulsoftDesginProps> & Readonly<{
|
|
4
4
|
onSaveReport?: ((fileName: string, json: string) => any) | undefined;
|
|
5
5
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
@@ -24,4 +24,4 @@ export declare const YzDesgin: {
|
|
|
24
24
|
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
25
25
|
install(app: App): void;
|
|
26
26
|
};
|
|
27
|
-
export
|
|
27
|
+
export * from './interface';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政vue-ui库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"main": "es/index.js",
|
|
18
18
|
"types": "es/index.d.ts",
|
|
19
19
|
"files": [
|
|
20
|
-
"es"
|
|
20
|
+
"es",
|
|
21
|
+
"components.d.ts"
|
|
21
22
|
],
|
|
22
23
|
"scripts": {
|
|
23
24
|
"build": "vite build",
|
package/es/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|