@minto-ai/mini-ui 1.0.101 → 1.0.102
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/dist/index.d.ts +3 -1
- package/dist/index.es.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
+
import { MtIcon } from './icon';
|
|
2
3
|
import { MtImage } from './image';
|
|
3
4
|
import { MtLoading } from './loading';
|
|
4
5
|
declare const _default: {
|
|
5
6
|
install: (app: App) => void;
|
|
6
7
|
};
|
|
7
8
|
export default _default;
|
|
8
|
-
export { MtImage, MtLoading, };
|
|
9
|
+
export { MtIcon, MtImage, MtLoading, };
|
|
9
10
|
declare module 'vue' {
|
|
10
11
|
interface GlobalComponents {
|
|
11
12
|
MtImage: typeof MtImage;
|
|
12
13
|
MtLoading: typeof MtLoading;
|
|
14
|
+
MtIcon: typeof MtIcon;
|
|
13
15
|
}
|
|
14
16
|
}
|
package/dist/index.es.js
CHANGED
|
@@ -322,7 +322,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
322
322
|
const MtImage = withInstall(_sfc_main);
|
|
323
323
|
const components = [
|
|
324
324
|
MtImage,
|
|
325
|
-
MtLoading
|
|
325
|
+
MtLoading,
|
|
326
|
+
MtIcon
|
|
326
327
|
];
|
|
327
328
|
const index = {
|
|
328
329
|
install: (app) => {
|
|
@@ -330,6 +331,7 @@ const index = {
|
|
|
330
331
|
}
|
|
331
332
|
};
|
|
332
333
|
export {
|
|
334
|
+
MtIcon,
|
|
333
335
|
MtImage,
|
|
334
336
|
MtLoading,
|
|
335
337
|
index as default
|