PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 0.0.3
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v0.0.3
2.12.6 2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 All 96 releases
sureforms / src / blocks / input / block.json
block.json
71 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "srfm/input",
3 "title": "Text Field",
4 "description": "Displays a SureForm Text Field",
5 "category": "sureforms",
6 "keywords": [ "text", "input", "custom", "field" ],
7 "textdomain": "sureforms",
8 "supports": {
9 "reusable": false,
10 "html": false
11 },
12 "example": {
13 "attributes": {
14 "preview": true
15 }
16 },
17 "attributes": {
18 "preview": {
19 "type": "boolean",
20 "default": false
21 },
22 "block_id": {
23 "type": "string"
24 },
25 "defaultValue": {
26 "type": "string",
27 "default": ""
28 },
29 "required": {
30 "type": "boolean",
31 "default": false
32 },
33 "isUnique": {
34 "type": "boolean",
35 "default": false
36 },
37 "duplicateMsg": {
38 "type": "string",
39 "default": "Value needs to be unique."
40 },
41 "placeholder": {
42 "type": "string",
43 "default": ""
44 },
45 "fieldWidth": {
46 "type": "number",
47 "default": 100
48 },
49 "label": {
50 "type": "string",
51 "default": "Text Field"
52 },
53 "help": {
54 "type": "string",
55 "default": ""
56 },
57 "errorMsg": {
58 "type": "string",
59 "default": "This field is required."
60 },
61 "textLength": {
62 "type": "number",
63 "default": 30
64 },
65 "formId": {
66 "type": "number",
67 "default": ""
68 }
69 }
70 }
71