@prosopo/svelte-procaptcha-wrapper 1.1.27 → 1.1.35

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 CHANGED
@@ -1,5 +1,47 @@
1
1
  # @prosopo/svelte-procaptcha-wrapper
2
2
 
3
+ ## 1.1.35
4
+ ### Patch Changes
5
+
6
+ - @prosopo/procaptcha-wrapper@2.6.37
7
+
8
+ ## 1.1.34
9
+ ### Patch Changes
10
+
11
+ - @prosopo/procaptcha-wrapper@2.6.36
12
+
13
+ ## 1.1.33
14
+ ### Patch Changes
15
+
16
+ - @prosopo/procaptcha-wrapper@2.6.35
17
+
18
+ ## 1.1.32
19
+ ### Patch Changes
20
+
21
+ - @prosopo/procaptcha-wrapper@2.6.34
22
+
23
+ ## 1.1.31
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [b8185a4]
27
+ - @prosopo/config@3.1.21
28
+ - @prosopo/procaptcha-wrapper@2.6.33
29
+
30
+ ## 1.1.30
31
+ ### Patch Changes
32
+
33
+ - @prosopo/procaptcha-wrapper@2.6.32
34
+
35
+ ## 1.1.29
36
+ ### Patch Changes
37
+
38
+ - @prosopo/procaptcha-wrapper@2.6.31
39
+
40
+ ## 1.1.28
41
+ ### Patch Changes
42
+
43
+ - @prosopo/procaptcha-wrapper@2.6.30
44
+
3
45
  ## 1.1.27
4
46
  ### Patch Changes
5
47
 
@@ -1,4 +1,12 @@
1
- declare const ProcaptchaComponent: import("svelte").Component<any, {}, "">;
1
+ import type { HTMLAttributes } from "svelte/elements";
2
+ import { type ProcaptchaRenderOptions } from "@prosopo/procaptcha-wrapper";
3
+ type AllHtmlAttributes = HTMLAttributes<HTMLElement> & {
4
+ [key: string]: any;
5
+ };
6
+ type ProcaptchaComponentProperties = ProcaptchaRenderOptions & {
7
+ htmlAttributes?: AllHtmlAttributes;
8
+ };
9
+ declare const ProcaptchaComponent: import("svelte").Component<ProcaptchaComponentProperties, {}, "">;
2
10
  type ProcaptchaComponent = ReturnType<typeof ProcaptchaComponent>;
3
11
  export default ProcaptchaComponent;
4
12
  //# sourceMappingURL=procaptchaComponent.svelte.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"procaptchaComponent.svelte.d.ts","sourceRoot":"","sources":["../src/procaptchaComponent.svelte.ts"],"names":[],"mappings":"AAuCA,QAAA,MAAM,mBAAmB,yCAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"procaptchaComponent.svelte.d.ts","sourceRoot":"","sources":["../src/procaptchaComponent.svelte.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,iBAAiB,CAAC;AACpD,OAAO,EAAC,KAAK,uBAAuB,EAAmB,MAAM,6BAA6B,CAAC;AAGvF,KAAK,iBAAiB,GAAG,cAAc,CAAC,WAAW,CAAC,GAAG;IAEnD,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CACrB,CAAC;AAEF,KAAK,6BAA6B,GAAG,uBAAuB,GAAG;IAC3D,cAAc,CAAC,EAAE,iBAAiB,CAAC;CACtC,CAAC;AAwBN,QAAA,MAAM,mBAAmB,mEAAwC,CAAC;AAClE,KAAK,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAClE,eAAe,mBAAmB,CAAC"}
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@prosopo/svelte-procaptcha-wrapper",
3
- "version": "1.1.27",
3
+ "version": "1.1.35",
4
4
  "type": "module",
5
5
  "engines": {
6
- "node": "20",
7
- "npm": "10.8.2"
6
+ "node": ">=v20.0.0",
7
+ "npm": ">=10.6.0"
8
8
  },
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "dev": "npm run svpkg -- -w"
24
24
  },
25
25
  "dependencies": {
26
- "@prosopo/procaptcha-wrapper": "2.6.29",
27
- "@prosopo/config": "3.1.20"
26
+ "@prosopo/procaptcha-wrapper": "2.6.37",
27
+ "@prosopo/config": "3.1.21"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "svelte": "^5.0.0"