@prosopo/angular-procaptcha-wrapper 1.1.39 → 1.1.44

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.
@@ -0,0 +1,28 @@
1
+
2
+ > @prosopo/angular-procaptcha-wrapper@1.1.44 build
3
+ > ng-packagr -p ng-package.json
4
+
5
+ Building Angular Package
6
+
7
+ ------------------------------------------------------------------------------
8
+ Building entry point '@prosopo/angular-procaptcha-wrapper'
9
+ ------------------------------------------------------------------------------
10
+ - Compiling with Angular sources in partial compilation mode.
11
+ ✔ Compiling with Angular sources in partial compilation mode.
12
+ ✔ Generating FESM and DTS bundles
13
+ - Copying assets
14
+ ✔ Copying assets
15
+ - Writing package manifest
16
+ ℹ Removing scripts section in package.json as it's considered a potential security vulnerability.
17
+ ℹ Removing devDependencies section in package.json.
18
+ ✔ Writing package manifest
19
+ ✔ Built @prosopo/angular-procaptcha-wrapper
20
+
21
+ ------------------------------------------------------------------------------
22
+ Built Angular Package
23
+ - from: /home/runner/work/captcha/captcha/integration/frameworks/angular/angular-procaptcha-wrapper
24
+ - to: /home/runner/work/captcha/captcha/integration/frameworks/angular/angular-procaptcha-wrapper/dist
25
+ ------------------------------------------------------------------------------
26
+
27
+ Build at: 2026-01-14T16:58:30.159Z - Time: 5017ms
28
+
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @prosopo/angular-procaptcha-wrapper
2
2
 
3
+ ## 1.1.44
4
+ ### Patch Changes
5
+
6
+ - a8faa9a: bump license year
7
+ - 3acc333: Release 3.3.0
8
+ - Updated dependencies [0a38892]
9
+ - Updated dependencies [a8faa9a]
10
+ - Updated dependencies [3acc333]
11
+ - @prosopo/procaptcha-wrapper@2.6.46
12
+
13
+ ## 1.1.43
14
+ ### Patch Changes
15
+
16
+ - @prosopo/procaptcha-wrapper@2.6.45
17
+
18
+ ## 1.1.42
19
+ ### Patch Changes
20
+
21
+ - @prosopo/procaptcha-wrapper@2.6.44
22
+
23
+ ## 1.1.41
24
+ ### Patch Changes
25
+
26
+ - @prosopo/procaptcha-wrapper@2.6.43
27
+
28
+ ## 1.1.40
29
+ ### Patch Changes
30
+
31
+ - 7d5eb3f: bump
32
+ - Updated dependencies [7d5eb3f]
33
+ - @prosopo/procaptcha-wrapper@2.6.42
34
+
3
35
  ## 1.1.39
4
36
  ### Patch Changes
5
37
 
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
2
2
  import { inject, ElementRef, Input, Component } from '@angular/core';
3
3
  import { renderProcaptcha } from '@prosopo/procaptcha-wrapper';
4
4
 
5
- // Copyright 2021-2025 Prosopo (UK) Ltd.
5
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
6
6
  //
7
7
  // Licensed under the Apache License, Version 2.0 (the "License");
8
8
  // you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.9", ngImpor
44
44
  type: Input
45
45
  }] } });
46
46
 
47
- // Copyright 2021-2025 Prosopo (UK) Ltd.
47
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
48
48
  //
49
49
  // Licensed under the Apache License, Version 2.0 (the "License");
50
50
  // you may not use this file except in compliance with the License.
@@ -1 +1 @@
1
- {"version":3,"file":"prosopo-angular-procaptcha-wrapper.mjs","sources":["../../src/lib/procaptcha.component.ts","../../src/public_api.ts","../../src/prosopo-angular-procaptcha-wrapper.ts"],"sourcesContent":["// Copyright 2021-2025 Prosopo (UK) Ltd.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport { Component, ElementRef, Input, inject } from \"@angular/core\";\nimport {\n\ttype ProcaptchaRenderOptions,\n\trenderProcaptcha,\n} from \"@prosopo/procaptcha-wrapper\";\n\n@Component({\n\tselector: \"procaptcha-component\",\n\timports: [],\n\ttemplate: \"<div></div>\",\n\tstyles: \"\",\n})\nexport class ProcaptchaComponent {\n\telementRef = inject(ElementRef);\n\n\t@Input({ required: true })\n\tsettings!: ProcaptchaRenderOptions;\n\t@Input()\n\thtmlAttributes: { [key: string]: string } = {};\n\n\tpublic ngOnInit(): void {\n\t\tthis.render();\n\t}\n\n\tpublic ngOnChanges(): void {\n\t\tthis.render();\n\t}\n\n\tprivate render(): void {\n\t\tfor (const attr in this.htmlAttributes) {\n\t\t\tthis.elementRef.nativeElement.setAttribute(\n\t\t\t\tattr,\n\t\t\t\tthis.htmlAttributes[attr],\n\t\t\t);\n\t\t}\n\n\t\trenderProcaptcha(this.elementRef.nativeElement, this.settings);\n\t}\n}\n","// Copyright 2021-2025 Prosopo (UK) Ltd.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport type {\n\tProcaptchaLanguages,\n\tProcaptchaRenderOptions,\n\tProcaptchaType,\n} from \"@prosopo/procaptcha-wrapper\";\nimport { ProcaptchaComponent } from \"./lib/procaptcha.component\";\n\nexport {\n\tProcaptchaComponent,\n\ttype ProcaptchaRenderOptions,\n\ttype ProcaptchaType,\n\ttype ProcaptchaLanguages,\n};\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;MAca,mBAAmB,CAAA;AAC/B,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAG/B,IAAA,QAAQ;IAER,cAAc,GAA8B,EAAE;IAEvC,QAAQ,GAAA;QACd,IAAI,CAAC,MAAM,EAAE;IACd;IAEO,WAAW,GAAA;QACjB,IAAI,CAAC,MAAM,EAAE;IACd;IAEQ,MAAM,GAAA;AACb,QAAA,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,cAAc,EAAE;AACvC,YAAA,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY,CACzC,IAAI,EACJ,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CACzB;QACF;QAEA,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC;IAC/D;uGAzBY,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,yKAHrB,aAAa,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAGX,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAN/B,SAAS;+BACC,sBAAsB,EAAA,OAAA,EACvB,EAAE,EAAA,QAAA,EACD,aAAa,EAAA;;sBAMtB,KAAK;uBAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;;sBAExB;;;AC/BF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACZA;;AAEG;;;;"}
1
+ {"version":3,"file":"prosopo-angular-procaptcha-wrapper.mjs","sources":["../../src/lib/procaptcha.component.ts","../../src/public_api.ts","../../src/prosopo-angular-procaptcha-wrapper.ts"],"sourcesContent":["// Copyright 2021-2026 Prosopo (UK) Ltd.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport { Component, ElementRef, Input, inject } from \"@angular/core\";\nimport {\n\ttype ProcaptchaRenderOptions,\n\trenderProcaptcha,\n} from \"@prosopo/procaptcha-wrapper\";\n\n@Component({\n\tselector: \"procaptcha-component\",\n\timports: [],\n\ttemplate: \"<div></div>\",\n\tstyles: \"\",\n})\nexport class ProcaptchaComponent {\n\telementRef = inject(ElementRef);\n\n\t@Input({ required: true })\n\tsettings!: ProcaptchaRenderOptions;\n\t@Input()\n\thtmlAttributes: { [key: string]: string } = {};\n\n\tpublic ngOnInit(): void {\n\t\tthis.render();\n\t}\n\n\tpublic ngOnChanges(): void {\n\t\tthis.render();\n\t}\n\n\tprivate render(): void {\n\t\tfor (const attr in this.htmlAttributes) {\n\t\t\tthis.elementRef.nativeElement.setAttribute(\n\t\t\t\tattr,\n\t\t\t\tthis.htmlAttributes[attr],\n\t\t\t);\n\t\t}\n\n\t\trenderProcaptcha(this.elementRef.nativeElement, this.settings);\n\t}\n}\n","// Copyright 2021-2026 Prosopo (UK) Ltd.\n//\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.apache.org/licenses/LICENSE-2.0\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n\nimport type {\n\tProcaptchaLanguages,\n\tProcaptchaRenderOptions,\n\tProcaptchaType,\n} from \"@prosopo/procaptcha-wrapper\";\nimport { ProcaptchaComponent } from \"./lib/procaptcha.component\";\n\nexport {\n\tProcaptchaComponent,\n\ttype ProcaptchaRenderOptions,\n\ttype ProcaptchaType,\n\ttype ProcaptchaLanguages,\n};\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":[],"mappings":";;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;MAca,mBAAmB,CAAA;AAC/B,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAG/B,IAAA,QAAQ;IAER,cAAc,GAA8B,EAAE;IAEvC,QAAQ,GAAA;QACd,IAAI,CAAC,MAAM,EAAE;IACd;IAEO,WAAW,GAAA;QACjB,IAAI,CAAC,MAAM,EAAE;IACd;IAEQ,MAAM,GAAA;AACb,QAAA,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,cAAc,EAAE;AACvC,YAAA,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY,CACzC,IAAI,EACJ,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,CACzB;QACF;QAEA,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,IAAI,CAAC,QAAQ,CAAC;IAC/D;uGAzBY,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAnB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,mBAAmB,yKAHrB,aAAa,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAGX,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAN/B,SAAS;+BACC,sBAAsB,EAAA,OAAA,EACvB,EAAE,EAAA,QAAA,EACD,aAAa,EAAA;;sBAMtB,KAAK;uBAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;;sBAExB;;;AC/BF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACZA;;AAEG;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosopo/angular-procaptcha-wrapper",
3
- "version": "1.1.39",
3
+ "version": "1.1.44",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^24",
@@ -15,13 +15,13 @@
15
15
  "dev": "npm run build -- --watch"
16
16
  },
17
17
  "dependencies": {
18
- "@prosopo/procaptcha-wrapper": "2.6.41"
18
+ "@prosopo/procaptcha-wrapper": "2.6.46"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "@angular/core": "^20.3.9"
22
22
  },
23
23
  "devDependencies": {
24
- "@prosopo/config": "3.1.25",
24
+ "@prosopo/config": "3.3.0",
25
25
  "@angular/compiler-cli": "20.3.9",
26
26
  "@types/node": "22.10.2",
27
27
  "del-cli": "6.0.0",
@@ -1,5 +1,5 @@
1
1
  import path from "node:path";
2
- // Copyright 2021-2025 Prosopo (UK) Ltd.
2
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
3
3
  //
4
4
  // Licensed under the Apache License, Version 2.0 (the "License");
5
5
  // you may not use this file except in compliance with the License.
@@ -1,4 +1,4 @@
1
- // Copyright 2021-2025 Prosopo (UK) Ltd.
1
+ // Copyright 2021-2026 Prosopo (UK) Ltd.
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.