| @@ -1,6 +1,13 @@ | ||
| 1 | 1 | { |
| 2 | - "widgetKeys": {}, | |
| 2 | + "widgetKeys": { | |
| 3 | + "e-form-submit-button": [ | |
| 4 | + { "from": "label", "to": "text" } | |
| 5 | + ], | |
| 6 | + "e-form-textarea": [ | |
| 7 | + { "from": "maxlength", "to": "length" } | |
| 8 | + ] | |
| 9 | + }, | |
| 3 | 10 | "propTypes": { |
| 4 | 11 | "string-to-html": { |
| 5 | 12 | "fromType": "string", |
| 6 | 13 | "toType": "html", |
| @@ -10,8 +17,13 @@ | ||
| 10 | 17 | "fromType": "number", |
| 11 | 18 | "toType": "size", |
| 12 | 19 | "path": "operations/number-to-size.json" |
| 13 | 20 | }, |
| 21 | + "number-to-number-range": { | |
| 22 | + "fromType": "number", | |
| 23 | + "toType": "number-range", | |
| 24 | + "path": "operations/number-to-number-range.json" | |
| 25 | + }, | |
| 14 | 26 | "html-to-html-v2": { |
| 15 | 27 | "fromType": "html", |
| 16 | 28 | "toType": "html-v2", |
| 17 | 29 | "path": "operations/html-to-html-v2.json" |
| @@ -20,16 +32,46 @@ | ||
| 20 | 32 | "fromType": "html-v2", |
| 21 | 33 | "toType": "html-v3", |
| 22 | 34 | "path": "operations/html-v2-to-html-v3.json" |
| 23 | 35 | }, |
| 36 | + "html-v3-to-escaped-html": { | |
| 37 | + "fromType": "html-v3", | |
| 38 | + "toType": "escaped-html", | |
| 39 | + "path": "operations/html-v3-to-escaped-html.json" | |
| 40 | + }, | |
| 24 | 41 | "image-src-to-svg-src": { |
| 25 | 42 | "fromType": "image-src", |
| 26 | 43 | "toType": "svg-src", |
| 27 | 44 | "path": "operations/image-src-to-svg-src.json" |
| 28 | 45 | }, |
| 46 | + "svg-src-to-icon": { | |
| 47 | + "fromType": "svg-src", | |
| 48 | + "toType": "icon", | |
| 49 | + "path": "operations/svg-src-to-icon.json" | |
| 50 | + }, | |
| 29 | 51 | "config-to-config-v2": { |
| 30 | 52 | "fromType": "config", |
| 31 | 53 | "toType": "config-v2", |
| 32 | 54 | "path": "operations/config-to-config-v2.json" |
| 55 | + }, | |
| 56 | + "email-to-emails": { | |
| 57 | + "fromType": "email", | |
| 58 | + "toType": "emails", | |
| 59 | + "path": "operations/email-to-emails.json" | |
| 60 | + }, | |
| 61 | + "string-to-font-family": { | |
| 62 | + "fromType": "string", | |
| 63 | + "toType": "font-family", | |
| 64 | + "path": "operations/string-to-font-family.json" | |
| 65 | + }, | |
| 66 | + "border-radius-to-border-radius-v2": { | |
| 67 | + "fromType": "border-radius", | |
| 68 | + "toType": "border-radius-v2", | |
| 69 | + "path": "operations/border-radius-to-border-radius-v2.json" | |
| 70 | + }, | |
| 71 | + "border-width-to-border-width-v2": { | |
| 72 | + "fromType": "border-width", | |
| 73 | + "toType": "border-width-v2", | |
| 74 | + "path": "operations/border-width-to-border-width-v2.json" | |
| 33 | 75 | } |
| 34 | 76 | } |
| 35 | 77 | } |