@akinon/pz-basket-gift-pack 1.42.0-rc.9 → 1.42.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +1 -23
- package/README.md +22 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,28 +1,6 @@
|
|
1
1
|
# @akinon/pz-basket-gift-pack
|
2
2
|
|
3
|
-
## 1.42.0
|
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/README.md
CHANGED
@@ -1,13 +1,31 @@
|
|
1
|
-
#
|
1
|
+
# pz-basket-gift-pack
|
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-basket-gift-pack.git
|
8
8
|
|
9
|
-
#
|
10
|
-
|
9
|
+
# For specific version
|
10
|
+
yarn add git+ssh://git@bitbucket.org:akinonteam/pz-basket-gift-pack.git#0e7cde5
|
11
|
+
```
|
12
|
+
|
13
|
+
### Next Config Configuration
|
14
|
+
|
15
|
+
##### apps/web/next.config.js**
|
16
|
+
|
17
|
+
```javascript
|
18
|
+
const withTM = require("next-transpile-modules")(["pz-basket-gift-pack"]);
|
19
|
+
```
|
20
|
+
|
21
|
+
### Example Usage
|
22
|
+
##### File Path: src/views/basket/basket-item.tsx
|
23
|
+
|
24
|
+
|
25
|
+
```javascript
|
26
|
+
import { BasketGiftPackage } from 'pz-basket-gift-pack';
|
27
|
+
|
28
|
+
<BasketGiftPackage basketItem={basketItem}/>
|
11
29
|
```
|
12
30
|
|
13
31
|
### Props
|