@akinon/pz-otp 1.48.0-rc.4 → 1.48.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.
- package/CHANGELOG.md +1 -19
- package/package.json +1 -1
- package/readme.md +19 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,6 @@
|
|
|
1
1
|
# @akinon/pz-otp
|
|
2
2
|
|
|
3
|
-
## 1.48.0
|
|
4
|
-
|
|
5
|
-
## 1.48.0-rc.3
|
|
6
|
-
|
|
7
|
-
### Minor Changes
|
|
8
|
-
|
|
9
|
-
- 50b9069: ZERO-2767: update plugin readme files
|
|
10
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
11
|
-
|
|
12
|
-
## 1.48.0-rc.2
|
|
13
|
-
|
|
14
|
-
## 1.48.0-rc.1
|
|
15
|
-
|
|
16
|
-
## 1.48.0-rc.0
|
|
17
|
-
|
|
18
|
-
### Minor Changes
|
|
19
|
-
|
|
20
|
-
- 50b9069: ZERO-2767: update plugin readme files
|
|
21
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
3
|
+
## 1.48.0
|
|
22
4
|
|
|
23
5
|
## 1.47.0
|
|
24
6
|
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,11 +1,26 @@
|
|
|
1
|
-
#
|
|
1
|
+
# pz-otp
|
|
2
2
|
|
|
3
3
|
### Install the npm package
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
# For latest version
|
|
7
|
-
yarn add @
|
|
7
|
+
yarn add git+ssh://git@bitbucket.org:akinonteam/pz-otp.git
|
|
8
8
|
|
|
9
|
-
#
|
|
10
|
-
|
|
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
|
+
```
|