entrijs 0.0.0-beta.2 → 0.0.0-beta.3

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/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,6 +10,9 @@ For full developer documentation, see: https://developers.entri.com
10
10
 
11
11
  ```
12
12
  npm install entrijs
13
+ ```
14
+ or
15
+ ```
13
16
  yard add entrijs
14
17
  ```
15
18
 
@@ -36,6 +39,14 @@ showEntri(config);
36
39
 
37
40
  [Read more about the `config` object](https://developers.entri.com/api-reference#entri-showentri-config).
38
41
 
42
+ To close the modal:
43
+
44
+ ```
45
+ import {close} from 'entrijs';
46
+
47
+ close();
48
+ ```
49
+
39
50
  ### Check domain
40
51
 
41
52
  See the [full documentation](https://developers.entri.com/api-reference#check-domain).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entrijs",
3
- "version": "0.0.0-beta.2",
3
+ "version": "0.0.0-beta.3",
4
4
  "description": "Entri",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/main.js",