@4i/modal-manager 1.0.10 → 1.0.101
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/package.json +1 -1
- package/readme.md +1 -3
package/package.json
CHANGED
package/readme.md
CHANGED
@@ -53,8 +53,6 @@ modal.call(modalAction.MODAL_PROMPT, {
|
|
53
53
|
|
54
54
|
If desired, you can inherit from the Manager class to create your own classes for handling custom notifications, popups, and more. And then pass your custom class to the CustomProvider component using ModalProvider as an example
|
55
55
|
|
56
|
-
````javascript
|
57
|
-
|
58
56
|
```javascript
|
59
57
|
import { Manager } from "@4i/modal-manager";
|
60
58
|
|
@@ -63,7 +61,7 @@ class CustomManager extends Manager {
|
|
63
61
|
}
|
64
62
|
|
65
63
|
const customManager = new CustomManager();
|
66
|
-
|
64
|
+
```
|
67
65
|
|
68
66
|
### index.js
|
69
67
|
|