mali-applet-ui 0.0.73 → 0.0.74
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/index.js +5 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2,6 +2,7 @@ import config from './config'
|
|
|
2
2
|
import MaliToast from './modal/toast'
|
|
3
3
|
import MaliModal from './modal/modal'
|
|
4
4
|
import MaliLoading from './modal/loading'
|
|
5
|
+
import MaliStorage from './storage'
|
|
5
6
|
import * as MaliUtils from './utils'
|
|
6
7
|
|
|
7
8
|
const MaliUI = {
|
|
@@ -9,14 +10,16 @@ const MaliUI = {
|
|
|
9
10
|
MaliUtils,
|
|
10
11
|
MaliToast,
|
|
11
12
|
MaliModal,
|
|
12
|
-
MaliLoading
|
|
13
|
+
MaliLoading,
|
|
14
|
+
MaliStorage
|
|
13
15
|
}
|
|
14
16
|
|
|
15
17
|
export {
|
|
16
18
|
MaliUtils,
|
|
17
19
|
MaliToast,
|
|
18
20
|
MaliModal,
|
|
19
|
-
MaliLoading
|
|
21
|
+
MaliLoading,
|
|
22
|
+
MaliStorage
|
|
20
23
|
}
|
|
21
24
|
|
|
22
25
|
export default MaliUI
|