@prosopo/svelte-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,10 @@
|
|
|
1
|
+
|
|
2
|
+
> @prosopo/svelte-procaptcha-wrapper@1.1.44 build
|
|
3
|
+
> npm run svpkg && del-cli --verbose ./.svelte-kit
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
> @prosopo/svelte-procaptcha-wrapper@1.1.44 svpkg
|
|
7
|
+
> svelte-package -i ./src -o ./dist
|
|
8
|
+
|
|
9
|
+
src -> dist
|
|
10
|
+
/home/runner/work/captcha/captcha/integration/frameworks/svelte/svelte-procaptcha-wrapper/.svelte-kit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @prosopo/svelte-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
|
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
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":"
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/svelte-procaptcha-wrapper",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.44",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": "^24",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"dev": "npm run svpkg -- -w"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@prosopo/procaptcha-wrapper": "2.6.
|
|
26
|
+
"@prosopo/procaptcha-wrapper": "2.6.46"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"svelte": "^5.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@prosopo/config": "3.
|
|
32
|
+
"@prosopo/config": "3.3.0",
|
|
33
33
|
"@sveltejs/package": "2.3.10",
|
|
34
34
|
"@types/node": "22.10.2",
|
|
35
35
|
"del-cli": "6.0.0",
|
package/vite.cjs.config.ts
CHANGED
package/vite.esm.config.ts
CHANGED