@ningboyz/vue 1.0.46 → 1.0.47
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,7 +1,7 @@
|
|
|
1
1
|
import { YzDesginer as t } from "./stimulsoft/desginer/index.js";
|
|
2
2
|
import { YzMessage as s } from "./message/index.js";
|
|
3
3
|
import { YzLayout as e } from "./layout/index.js";
|
|
4
|
-
const m = [t,
|
|
4
|
+
const m = [t, e, s], a = (o) => {
|
|
5
5
|
m.forEach((r) => o.use(r));
|
|
6
6
|
};
|
|
7
7
|
export {
|
package/package.json
CHANGED
package/types/all.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type App } from "vue";
|
|
2
2
|
import YzDesginer from "./components/stimulsoft/desginer/desginer";
|
|
3
|
-
import YzMessage from "./components/message/message";
|
|
4
3
|
import YzLayout from "./components/layout/layout";
|
|
4
|
+
import YzMessage from "./components/message/message";
|
|
5
5
|
interface AllComponents {
|
|
6
6
|
YzDesginer: typeof YzDesginer;
|
|
7
|
-
YzMessage: typeof YzMessage;
|
|
8
7
|
YzLayout: typeof YzLayout;
|
|
8
|
+
YzMessage: typeof YzMessage;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export function install(app: App): void;
|