You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/content/docs/turnstile/get-started/client-side-rendering.mdx
+4-2
Original file line number
Diff line number
Diff line change
@@ -212,11 +212,12 @@ By default, `appearance` is set to `always` for visible widget types. However, i
212
212
213
213
## Widget size
214
214
215
-
The Turnstile widget can have two different sizes when using the Managed or Non-interactive modes:
215
+
The Turnstile widget can have two different fixed sizes or a flexible width size when using the Managed or Non-interactive modes:
216
216
217
217
| Size | Width | Height |
218
218
| ------- | ----- | ------ |
219
219
| Normal | 300px | 65px |
220
+
| Flexible | 100% (min: 300px) | 120px |
220
221
| Compact | 130px | 120px |
221
222
222
223
## Configurations
@@ -239,9 +240,10 @@ The Turnstile widget can have two different sizes when using the Managed or Non-
239
240
|`timeout-callback`|`data-timeout-callback`| A JavaScript callback invoked when the challenge presents an interactive challenge but was not solved within a given time. A callback will reset the widget to allow a visitor to solve the challenge again. |
240
241
|`response-field`|`data-response-field`| A boolean that controls if an input element with the response token is created, defaults to `true`. |
241
242
|`response-field-name`|`data-response-field-name`| Name of the input element, defaults to `cf-turnstile-response`. |
242
-
|`size`|`data-size`| The widget size. Can take the following values: `normal`, `compact`.|
243
+
|`size`|`data-size`| The widget size. Can take the following values: `normal`, `flexible`, `compact`. |
243
244
|`retry`|`data-retry`| Controls whether the widget should automatically retry to obtain a token if it did not succeed. The default is `auto`, which will retry automatically. This can be set to `never` to disable retry on failure. |
244
245
|`retry-interval`|`data-retry-interval`| When `retry` is set to `auto`, `retry-interval` controls the time between retry attempts in milliseconds. Value must be a positive integer less than `900000`, defaults to `8000`. |
245
246
|`refresh-expired`|`data-refresh-expired`| Automatically refreshes the token when it expires. Can take `auto`, `manual`, or `never`, defaults to `auto`. |
246
247
|`refresh-timeout`|`data-refresh-timeout`| Controls whether the widget should automatically refresh upon entering an interactive challenge and observing a timeout. Can take `auto` (automatically refreshes upon encountering an interactive timeout), `manual` (prompts the visitor to manually refresh) or `never` (will show a timeout), defaults to `auto`. Only applies to widgets of mode managed. |
247
248
|`appearance`|`data-appearance`| Appearance controls when the widget is visible. It can be `always` (default), `execute`, or `interaction-only`. Refer to [Appearance modes](/turnstile/get-started/client-side-rendering/#appearance-modes) for more information. |
249
+
|`feedback-enabled`|`data-feedback-enabled`| Allows Cloudflare to gather visitor feedback upon widget failure. It can be `true` (default) or `false`. |
0 commit comments