@wx-design/components 1.1.10 → 1.1.11
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/es/index.mjs +1 -0
- package/lib/index.js +6 -6
- package/package.json +1 -1
- package/types/index.d.ts +4 -1
- package/types/modal/index.d.ts +8 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -3,8 +3,9 @@ import { App, Plugin } from 'vue'
|
|
|
3
3
|
import { SabTable, SabTableSet, SabDesignConfigProvider } from './table'
|
|
4
4
|
|
|
5
5
|
import { SabSelect } from './select'
|
|
6
|
+
import { SabModal } from './modal'
|
|
6
7
|
|
|
7
|
-
export { SabTable, SabTableSet, SabDesignConfigProvider, SabSelect }
|
|
8
|
+
export { SabTable, SabTableSet, SabDesignConfigProvider, SabSelect, SabModal }
|
|
8
9
|
|
|
9
10
|
declare module '@vue/runtime-core' {
|
|
10
11
|
export interface GlobalComponents {
|
|
@@ -14,6 +15,8 @@ declare module '@vue/runtime-core' {
|
|
|
14
15
|
|
|
15
16
|
// 下拉选择器
|
|
16
17
|
SabSelect: typeof SabSelect
|
|
18
|
+
// 弹窗
|
|
19
|
+
SabModal: typeof SabModal
|
|
17
20
|
|
|
18
21
|
// 全局配置项
|
|
19
22
|
SabDesignConfigProvider: typeof SabDesignConfigProvider
|