@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +1 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4i/modal-manager",
3
- "version": "1.0.10",
3
+ "version": "1.0.101",
4
4
  "description": "",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
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