mali-ui-plus 1.0.112 → 1.0.113
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/lib/mali-ui-plus.common.js +28 -21
- package/lib/mali-ui-plus.umd.js +28 -21
- package/lib/mali-ui-plus.umd.min.js +14 -14
- package/package.json +1 -1
- package/types/index.d.ts +4 -1
- package/types/permission/index.d.ts +8 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { VxeGlobalRenderer } from 'vxe-table'
|
|
|
3
3
|
import { MaliUtils, MlUtilsCore } from './utils'
|
|
4
4
|
import { MaliStorage, MlStorageCore } from './storage'
|
|
5
5
|
import { MaliClipboard, MlClipboardCore } from './clipboard'
|
|
6
|
+
import { MaliPermission, MaliPermissionCore } from './permission'
|
|
6
7
|
import { MaliModal } from './modal'
|
|
7
8
|
import { MaliToast } from './toast'
|
|
8
9
|
import { MaliNotify } from './notify'
|
|
@@ -157,6 +158,7 @@ export const MaliUI: {
|
|
|
157
158
|
MaliModal: typeof MaliModal
|
|
158
159
|
MaliLoading: typeof MaliLoading
|
|
159
160
|
MaliStorage: MlStorageCore
|
|
161
|
+
MaliPermission: MaliPermissionCore
|
|
160
162
|
}
|
|
161
163
|
|
|
162
164
|
export {
|
|
@@ -166,7 +168,8 @@ export {
|
|
|
166
168
|
MaliToast,
|
|
167
169
|
MaliModal,
|
|
168
170
|
MaliLoading,
|
|
169
|
-
MaliStorage
|
|
171
|
+
MaliStorage,
|
|
172
|
+
MaliPermission
|
|
170
173
|
}
|
|
171
174
|
|
|
172
175
|
export * from './icon'
|