morghulis 2.0.70 → 3.0.0

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.
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ text?: string;
3
+ };
4
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
5
+ text: string;
6
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ export default _default;
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ .m-button{color:red}
@@ -0,0 +1,13 @@
1
+ import { App } from "vue";
2
+ import MButton from "./MButton.vue";
3
+ import './style.css';
4
+ import type { MorghulisOptions } from "./types";
5
+ declare module "vue" {
6
+ interface GlobalComponents {
7
+ MButton: typeof MButton;
8
+ }
9
+ }
10
+ export declare const createMorghulis: (options?: MorghulisOptions) => {
11
+ install(Vue: App): void;
12
+ };
13
+ export { MButton };