vsoft-ui 1.0.8 → 1.0.9
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 +5 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/vsoft-ui.es.js +808 -795
- package/dist/vsoft-ui.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -168,6 +168,11 @@ export declare function usePermission(): {
|
|
|
168
168
|
clearPermissions: () => void;
|
|
169
169
|
};
|
|
170
170
|
|
|
171
|
+
export declare function usePinyin(): {
|
|
172
|
+
pinyin: (text?: string, options?: any) => string;
|
|
173
|
+
match: (text: string, keyword: string) => number[] | null;
|
|
174
|
+
};
|
|
175
|
+
|
|
171
176
|
/**
|
|
172
177
|
* VLoading - Element Plus Loading 的二次封装
|
|
173
178
|
* 提供与 ElLoading 完全一致的 API
|
package/dist/src/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { App } from 'vue';
|
|
|
2
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';
|