meixioacomponent 0.5.21 → 0.5.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.
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meixioacomponent",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "YuRi",
|
|
6
|
-
"main": "lib/meixioacomponent.
|
|
6
|
+
"main": "lib/meixioacomponent.common.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"serve": "vue-cli-service serve",
|
|
9
9
|
"lib": "vue-cli-service build --target lib --name meixioacomponent --dest lib packages/components/index.js",
|
package/types/baseIcon.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Vue, { PluginObject } from 'vue'
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { Icon } from "./baseIcon"
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
export interface InstallationOptions {
|
|
@@ -14,4 +14,4 @@ export function install(vue: typeof Vue, options: InstallationOptions): void
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
export class
|
|
17
|
+
export class baseIcon extends Icon { }
|