vsoft-ui 1.0.8 → 1.0.10
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 +6 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/vsoft-ui.css +1 -1
- package/dist/vsoft-ui.es.js +1312 -1204
- package/dist/vsoft-ui.umd.js +1 -1
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export { default_2 as VTooltip }
|
|
|
115
115
|
export { default_2 as VTransfer }
|
|
116
116
|
export { default_2 as VTree }
|
|
117
117
|
export { default_2 as VTreeNode }
|
|
118
|
+
export { default_2 as VTreeSelect }
|
|
118
119
|
export { default_2 as VUpload }
|
|
119
120
|
export { default_2 as VUploadDragger }
|
|
120
121
|
|
|
@@ -168,6 +169,11 @@ export declare function usePermission(): {
|
|
|
168
169
|
clearPermissions: () => void;
|
|
169
170
|
};
|
|
170
171
|
|
|
172
|
+
export declare function usePinyin(): {
|
|
173
|
+
pinyin: (text?: string, options?: any) => string;
|
|
174
|
+
match: (text: string, keyword: string) => number[] | null;
|
|
175
|
+
};
|
|
176
|
+
|
|
171
177
|
/**
|
|
172
178
|
* VLoading - Element Plus Loading 的二次封装
|
|
173
179
|
* 提供与 ElLoading 完全一致的 API
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
import * as ElementPlusIconsVue from
|
|
2
|
+
import * as ElementPlusIconsVue from "@element-plus/icons-vue";
|
|
3
3
|
export * from './directives/permission';
|
|
4
4
|
export * from './composables/usePermission';
|
|
5
|
+
export * from './composables/usePinyin';
|
|
5
6
|
export * from './components/VAffix';
|
|
6
7
|
export * from './components/VAlert';
|
|
7
8
|
export * from './components/VAside';
|
|
@@ -77,6 +78,7 @@ export * from './components/VTooltip';
|
|
|
77
78
|
export * from './components/VTransfer';
|
|
78
79
|
export * from './components/VTree';
|
|
79
80
|
export * from './components/VTreeNode';
|
|
81
|
+
export * from './components/VTreeSelect';
|
|
80
82
|
export * from './components/VUpload';
|
|
81
83
|
export * from './components/VUploadDragger';
|
|
82
84
|
export * from './components/VMessageBox';
|