vue-turnstile
Advanced tools
Comparing version 1.0.10 to 1.0.11
@@ -28,3 +28,3 @@ import type { PropType } from 'vue'; | ||
size: { | ||
type: PropType<"normal" | "compact">; | ||
type: PropType<"normal" | "flexible" | "compact">; | ||
required: false; | ||
@@ -63,3 +63,3 @@ default: string; | ||
language: string; | ||
size: "normal" | "compact"; | ||
size: "normal" | "flexible" | "compact"; | ||
callback: (token: string) => void; | ||
@@ -100,3 +100,3 @@ action: string; | ||
size: { | ||
type: PropType<"normal" | "compact">; | ||
type: PropType<"normal" | "flexible" | "compact">; | ||
required: false; | ||
@@ -139,3 +139,3 @@ default: string; | ||
resetInterval: number; | ||
size: "normal" | "compact"; | ||
size: "normal" | "flexible" | "compact"; | ||
theme: "light" | "dark" | "auto"; | ||
@@ -142,0 +142,0 @@ language: string; |
{ | ||
"name": "vue-turnstile", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "Vue library for Cloudflare Turnstile CAPTCHA alternative", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -53,3 +53,3 @@ # vue-turnstile | ||
| reset-interval | `Number` | Get a fresh token after `reset-interval` milliseconds - Turnstile tokens only last for 5 minutes | No | `295000` | | ||
| size | `'normal' \| 'compact'` | Widget size | No | `'normal'` | | ||
| size | `'normal' \| 'flexible' \| 'compact'` | Widget size | No | `'normal'` | | ||
| theme | `'light' \| 'dark' \| 'auto'` | Widget theme - auto respects the user's browser preference | No | `'auto'` | | ||
@@ -56,0 +56,0 @@ | action | `String` | A customer value that can be used to differentiate widgets under the same sitekey in analytics and which is returned upon validation. | No | `''` | |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18053