mali-ui-plus 1.0.111 → 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 +91 -24
- package/lib/mali-ui-plus.umd.js +91 -24
- package/lib/mali-ui-plus.umd.min.js +14 -14
- package/package.json +1 -1
- package/types/index.d.ts +8 -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'
|
|
@@ -138,6 +139,10 @@ export interface ConfigOptions {
|
|
|
138
139
|
},
|
|
139
140
|
colorPicker?: {
|
|
140
141
|
predefineColors?: string[]
|
|
142
|
+
},
|
|
143
|
+
notData?:{
|
|
144
|
+
emptyUrl?: string
|
|
145
|
+
emptyText?: string
|
|
141
146
|
}
|
|
142
147
|
}
|
|
143
148
|
|
|
@@ -153,6 +158,7 @@ export const MaliUI: {
|
|
|
153
158
|
MaliModal: typeof MaliModal
|
|
154
159
|
MaliLoading: typeof MaliLoading
|
|
155
160
|
MaliStorage: MlStorageCore
|
|
161
|
+
MaliPermission: MaliPermissionCore
|
|
156
162
|
}
|
|
157
163
|
|
|
158
164
|
export {
|
|
@@ -162,7 +168,8 @@ export {
|
|
|
162
168
|
MaliToast,
|
|
163
169
|
MaliModal,
|
|
164
170
|
MaliLoading,
|
|
165
|
-
MaliStorage
|
|
171
|
+
MaliStorage,
|
|
172
|
+
MaliPermission
|
|
166
173
|
}
|
|
167
174
|
|
|
168
175
|
export * from './icon'
|