@prosopo/svelte-procaptcha-wrapper 1.1.8 → 1.1.9

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,22 @@
1
1
  # @prosopo/svelte-procaptcha-wrapper
2
2
 
3
+ ## 1.1.9
4
+ ### Patch Changes
5
+
6
+ - 828066d: remove empty test npm scripts, add missing npm test scripts
7
+ - 91bbe87: configure typecheck before bundle for vue packages
8
+ - 91bbe87: make typecheck script always recompile
9
+ - Updated dependencies [91d56e7]
10
+ - Updated dependencies [828066d]
11
+ - Updated dependencies [91bbe87]
12
+ - Updated dependencies [686c5f5]
13
+ - Updated dependencies [3ef4fd2]
14
+ - Updated dependencies [91bbe87]
15
+ - Updated dependencies [346e092]
16
+ - Updated dependencies [5d36e05]
17
+ - @prosopo/procaptcha-wrapper@2.6.11
18
+ - @prosopo/config@3.1.3
19
+
3
20
  ## 1.1.8
4
21
  ### Patch Changes
5
22
 
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@prosopo/svelte-procaptcha-wrapper",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "20",
@@ -17,15 +17,14 @@
17
17
  }
18
18
  },
19
19
  "scripts": {
20
- "test": "echo no tests",
21
20
  "clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
22
21
  "svpkg": "svelte-package -i ./src -o ./dist",
23
22
  "build": "npm run svpkg && del-cli --verbose ./.svelte-kit",
24
23
  "dev": "npm run svpkg -- -w"
25
24
  },
26
25
  "dependencies": {
27
- "@prosopo/procaptcha-wrapper": "2.6.10",
28
- "@prosopo/config": "3.1.2"
26
+ "@prosopo/procaptcha-wrapper": "2.6.11",
27
+ "@prosopo/config": "3.1.3"
29
28
  },
30
29
  "peerDependencies": {
31
30
  "svelte": "^5.0.0"