@akinon/pz-otp 1.42.0-rc.9 → 1.42.0

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 (3) hide show
  1. package/CHANGELOG.md +1 -23
  2. package/package.json +1 -1
  3. package/readme.md +19 -4
package/CHANGELOG.md CHANGED
@@ -1,28 +1,6 @@
1
1
  # @akinon/pz-otp
2
2
 
3
- ## 1.42.0-rc.9
4
-
5
- ## 1.42.0-rc.8
6
-
7
- ## 1.42.0-rc.7
8
-
9
- ### Minor Changes
10
-
11
- - 50b9069: ZERO-2767: update plugin readme files
12
-
13
- ## 1.42.0-rc.6
14
-
15
- ## 1.42.0-rc.5
16
-
17
- ## 1.42.0-rc.4
18
-
19
- ## 1.42.0-rc.3
20
-
21
- ## 1.42.0-rc.2
22
-
23
- ## 1.42.0-rc.1
24
-
25
- ## 1.42.0-rc.0
3
+ ## 1.42.0
26
4
 
27
5
  ## 1.41.0
28
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/pz-otp",
3
- "version": "1.42.0-rc.9",
3
+ "version": "1.42.0",
4
4
  "license": "MIT",
5
5
  "main": "src/index.tsx",
6
6
  "peerDependencies": {
package/readme.md CHANGED
@@ -1,11 +1,26 @@
1
- # @akinon/pz-otp
1
+ # pz-otp
2
2
 
3
3
  ### Install the npm package
4
4
 
5
5
  ```bash
6
6
  # For latest version
7
- yarn add @akinon/pz-otp
7
+ yarn add git+ssh://git@bitbucket.org:akinonteam/pz-otp.git
8
8
 
9
- # Preferred installation method
10
- npx @akinon/projectzero@latest --plugins
9
+ # For specific version
10
+ yarn add git+ssh://git@bitbucket.org:akinonteam/pz-otp.git#eX4mPl3
11
11
  ```
12
+
13
+ ### Example Usage
14
+ ##### File Path: src/views/register/index.tsx
15
+
16
+ ```javascript
17
+ import { Otp } from 'pz-otp';
18
+
19
+ export default function Register() {
20
+ return (
21
+ // ...
22
+ <Otp />
23
+ //
24
+ );
25
+ }
26
+ ```