lty-protocol 1.0.28 → 1.0.30

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 CHANGED
@@ -1,22 +1,14 @@
1
- import { App, Plugin } from 'vue';
1
+ import { Plugin } from 'vue';
2
2
  import { default as MyButton } from './components/MyButton.vue';
3
3
  import { default as Button2 } from './components/button2.vue';
4
4
  import { default as Input } from './components/Input.vue';
5
5
  import { default as IpInput } from './components/IpInput.vue';
6
6
  import { default as InputNumber } from './components/InputNumber.vue';
7
- import { MyLibPlugin } from './plugin';
8
- import { UIComponentsMap } from './keys';
9
- /**
10
- * 插件
11
- * @description 引用时请通过 name 字段引用,例如:import { Protocol } from 'lty-protocol'
12
- */
13
- declare const Protocol: Plugin & {
14
- install: (app: App, components?: UIComponentsMap) => void;
15
- };
7
+ declare const Protocol: Plugin;
16
8
  /**
17
9
  * 导出组件
18
10
  */
19
- export { MyButton, Button2, Input, InputNumber, MyLibPlugin, IpInput };
11
+ export { MyButton, Button2, Input, InputNumber, IpInput };
20
12
  /**
21
13
  * 导出协议模型
22
14
  */