Skip to content

Commit f5d118a

Browse files
authored
Merge pull request #70 from privy-open-source/release/1.0.0
2 parents bf6eeb0 + 81c15b4 commit f5d118a

File tree

21 files changed

+362
-352
lines changed

21 files changed

+362
-352
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
> PrivyID's Official Client Integration Library for signing.
88
9-
🚧 This project is under development. Not ready for public use yet.
10-
119
</div>
1210

1311
## Getting Started

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@privyid/pena-monorepo",
33
"description": "PrivyID's Official Client Integration Library for signing.",
44
"packageManager": "[email protected]",
5-
"version": "0.3.0",
5+
"version": "1.0.0",
66
"private": true,
77
"scripts": {
88
"lint": "eslint . --ext .js,.ts,.jsx,.tsx,.vue",
@@ -26,8 +26,8 @@
2626
"packages/*"
2727
],
2828
"devDependencies": {
29-
"@privyid/browserslist-config": "^0.9.0",
30-
"@privyid/eslint-config-persona": "^0.9.0",
29+
"@privyid/browserslist-config": "^0.13.0",
30+
"@privyid/eslint-config-persona": "^0.13.0",
3131
"@typescript-eslint/eslint-plugin": "^5.50.0",
3232
"@typescript-eslint/parser": "^5.50.0",
3333
"@vue/eslint-config-typescript": "^11.0.2",

packages/pena-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/pena-angular-workspace",
33
"description": "Pena plugin for Angular",
4-
"version": "0.3.0",
4+
"version": "1.0.0",
55
"scripts": {
66
"ng": "ng",
77
"dev": "yarn start",
@@ -32,7 +32,7 @@
3232
"@privyid/browserslist-config": "^0.9.0",
3333
"@types/jasmine": "~4.3.0",
3434
"browserslist-to-esbuild": "^1.2.0",
35-
"jasmine-core": "~4.5.0",
35+
"jasmine-core": "~4.6.0",
3636
"karma": "~6.4.0",
3737
"karma-chrome-launcher": "~3.1.0",
3838
"karma-coverage": "~2.2.0",

packages/pena-angular/projects/lib/README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,21 @@ export class AppComponent {
6969

7070
### Input Properties
7171

72-
| Name | Type | Default | Description |
73-
|--------------|---------|:-----------:|--------------------------------------------------------------------------------------------------------------|
74-
| `url` | string | - | **(Required)** Document's url |
75-
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
76-
| `layout` | string | `fixed` | Set layout mode, valid value is `fixed` or `fit`, see the [different][different] |
77-
| `visibility` | boolean | `true` | Set signature visibility |
78-
| `privyId` | string | - | Set recipient's privyId |
79-
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
80-
|`x` | number | - | X Coordinate |
81-
|`y` | number | - | Y Coordinate |
82-
|`page` | number | - | Target page |
83-
|`fixed` | boolean | `false` | Disabled signature for moving |
84-
| `debug` | boolean | `false` | Enable debug mode |
85-
| `ratio` | number | `210 / 297` | Ratio size **(Layout `fixed` only)** |
72+
| Name | Type | Default | Description |
73+
|----------------|------------------|:-----------:|----------------------------------------------------------------------------------------------------------------------------------------------|
74+
| `url` | string | - | **(Required)** Document's url |
75+
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
76+
| `layout` | string | `fixed` | Set layout mode, valid value is `fixed` or `fit`, see the [different][different] |
77+
| `visibility` | boolean | `true` | Set signature visibility |
78+
| `privyId` | string | - | Set recipient's privyId |
79+
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
80+
|`x` | number | - | X Coordinate |
81+
|`y` | number | - | Y Coordinate |
82+
|`page` | number | - | Target page |
83+
|`fixed` | boolean | `false` | Disabled signature for moving |
84+
| `debug` | boolean | `false` | Enable debug mode |
85+
| `ratio` | number | `210 / 297` | Ratio size **(Layout `fixed` only)** |
86+
| `needScrollTo` | number \| string | - | Force user to scroll to target page before doing an action (sign,review,etc). Valid value is a number, or set `last` to target the last page |
8687

8788
### Output Events
8889

packages/pena-angular/projects/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/pena-angular",
33
"description": "PrivyID's Official Client Integration Library for Angular",
4-
"version": "0.3.0",
4+
"version": "1.0.0",
55
"peerDependencies": {
66
"@angular/common": "^15.1.0",
77
"@angular/core": "^15.1.0",

packages/pena-jquery/README.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,22 @@ Add this in your HTML
4646

4747
## Options
4848

49-
| Name | Type | Default | Description |
50-
|-----------------|----------|:-----------:|--------------------------------------------------------------------------------------------------------------|
51-
| `url` | string | - | **(Required)** Document's url |
52-
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
53-
| `layout` | string | `fixed` | Set layout mode, valid value is `fixed` or `fit`, see the [different][different] |
54-
| `visibility` | boolean | `true` | Set signature visibility |
55-
| `privyId` | string | - | Set recipient's privyId |
56-
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
57-
|`x` | number | - | X Coordinate |
58-
|`y` | number | - | Y Coordinate |
59-
|`page` | number | - | Target page |
60-
|`fixed` | boolean | `false` | Disabled signature for moving |
61-
| `debug` | boolean | `false` | Enable debug mode |
62-
| `ratio` | number | `210 / 297` | Ratio size **(Layout `fixed` only)** |
63-
| `onAfterAction` | function | - | After action hook |
49+
| Name | Type | Default | Description |
50+
|-----------------|------------------|:-----------:|----------------------------------------------------------------------------------------------------------------------------------------------|
51+
| `url` | string | - | **(Required)** Document's url |
52+
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
53+
| `layout` | string | `fixed` | Set layout mode, valid value is `fixed` or `fit`, see the [different][different] |
54+
| `visibility` | boolean | `true` | Set signature visibility |
55+
| `privyId` | string | - | Set recipient's privyId |
56+
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
57+
|`x` | number | - | X Coordinate |
58+
|`y` | number | - | Y Coordinate |
59+
|`page` | number | - | Target page |
60+
|`fixed` | boolean | `false` | Disabled signature for moving |
61+
| `debug` | boolean | `false` | Enable debug mode |
62+
| `ratio` | number | `210 / 297` | Ratio size **(Layout `fixed` only)** |
63+
| `needScrollTo` | number \| string | - | Force user to scroll to target page before doing an action (sign,review,etc). Valid value is a number, or set `last` to target the last page |
64+
| `onAfterAction` | function | - | After action hook |
6465

6566
## License
6667

packages/pena-jquery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/pena-jquery",
33
"description": "PrivyID's Official Client Integration Library for jQuery",
4-
"version": "0.3.0",
4+
"version": "1.0.0",
55
"type": "module",
66
"main": "./dist/pena-jquery.umd.cjs",
77
"module": "./dist/pena-jquery.js",

packages/pena-react-native/README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,20 @@ export default function App () {
4747

4848
### Props
4949

50-
| Name | Type | Default | Description |
51-
|-----------------|----------|:-------:|--------------------------------------------------------------------------------------------------------------|
52-
| `url` | string | - | **(Required)** Document's url |
53-
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
54-
| `visibility` | boolean | `true` | Set signature visibility |
55-
| `privyId` | string | - | Set recipient's privyId |
56-
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
57-
|`x` | number | - | X Coordinate |
58-
|`y` | number | - | Y Coordinate |
59-
|`page` | number | - | Target page |
60-
|`fixed` | boolean | `false` | Disabled signature for moving |
61-
| `debug` | boolean | `false` | Enable debug mode |
62-
| `onAfterAction` | function | - | After action hook |
50+
| Name | Type | Default | Description |
51+
|-----------------|------------------|:-------:|----------------------------------------------------------------------------------------------------------------------------------------------|
52+
| `url` | string | - | **(Required)** Document's url |
53+
| `lang` | string | `en` | Set language, valid value is `en` or `id` |
54+
| `visibility` | boolean | `true` | Set signature visibility |
55+
| `privyId` | string | - | Set recipient's privyId |
56+
| `signature` | object | - | Set signature placement<br/> <strong>(Deprecated)</strong> use API to set placement when upload the document |
57+
|`x` | number | - | X Coordinate |
58+
|`y` | number | - | Y Coordinate |
59+
|`page` | number | - | Target page |
60+
|`fixed` | boolean | `false` | Disabled signature for moving |
61+
| `debug` | boolean | `false` | Enable debug mode |
62+
| `needScrollTo` | number \| string | - | Force user to scroll to target page before doing an action (sign,review,etc). Valid value is a number, or set `last` to target the last page |
63+
| `onAfterAction` | function | - | After action hook |
6364

6465

6566
## License

0 commit comments

Comments
 (0)