elcrm 0.7.7 → 0.7.8
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/Modal/Modal.d.ts +1 -0
- package/dist/Modal/index.d.ts +2 -1
- package/dist/index.es.js +257 -243
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/Modal/Modal.d.ts
CHANGED
package/dist/Modal/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { default as List } from './List';
|
|
|
2
2
|
import { default as Scroll } from './Scroll';
|
|
3
3
|
import { default as Form } from './Form';
|
|
4
4
|
import { default as Center } from './Center';
|
|
5
|
-
import { Main, Add, Icon, Open, Shake } from './Modal';
|
|
5
|
+
import { Main, Add, Icon, Open, Shake, Close } from './Modal';
|
|
6
6
|
|
|
7
7
|
declare const _default: {
|
|
8
8
|
List: typeof List;
|
|
@@ -14,5 +14,6 @@ declare const _default: {
|
|
|
14
14
|
Shake: typeof Shake;
|
|
15
15
|
Form: typeof Form;
|
|
16
16
|
Center: typeof Center;
|
|
17
|
+
Close: typeof Close;
|
|
17
18
|
};
|
|
18
19
|
export default _default;
|