@maxtropy/v-components 0.1.17-beta.22 → 0.1.17-beta.23

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.
@@ -1,3 +1,5 @@
1
1
  import { Plugin } from 'vue';
2
+ import CustomLoading from './service';
2
3
  declare const MxLoading: Plugin;
4
+ export { CustomLoading };
3
5
  export default MxLoading;
@@ -1,4 +1,7 @@
1
1
  import { App } from 'vue';
2
- export declare const loadingService: {
3
- install(app: App, options?: any): void;
2
+ import { LoadingServiceOptions, LoadingServiceInstance } from './types';
3
+ declare const CustomLoading: {
4
+ service: (opts?: LoadingServiceOptions) => LoadingServiceInstance;
5
+ install: (app: App, options?: any) => void;
4
6
  };
7
+ export default CustomLoading;
@@ -7,6 +7,7 @@ declare const _default: {
7
7
  export default _default;
8
8
  export * from './components/message';
9
9
  export * from './components/messageBox';
10
+ export * from './components/loading';
10
11
  export * from './components/notification';
11
12
  export * from './components';
12
13
  export * from './constants';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxtropy/v-components",
3
- "version": "0.1.17-beta.22",
3
+ "version": "0.1.17-beta.23",
4
4
  "files": [
5
5
  "dist"
6
6
  ],