@cloudcannon/configuration-types 0.0.44 → 0.0.46
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/dist/cloudcannon-collections.schema.json +838 -816
- package/dist/cloudcannon-config.documentation.schema.json +1157 -1661
- package/dist/cloudcannon-config.latest.schema.json +1165 -1644
- package/dist/cloudcannon-config.legacy-eleventy.schema.json +1166 -1645
- package/dist/cloudcannon-config.legacy-hugo.schema.json +1166 -1645
- package/dist/cloudcannon-config.legacy-jekyll.schema.json +1166 -1645
- package/dist/cloudcannon-config.legacy-reader.schema.json +1166 -1645
- package/dist/cloudcannon-editables.schema.json +151 -151
- package/dist/cloudcannon-inputs.schema.json +671 -663
- package/dist/cloudcannon-schemas.schema.json +820 -801
- package/dist/cloudcannon-snippets-imports.schema.json +12 -16
- package/dist/cloudcannon-snippets.schema.json +956 -1451
- package/dist/cloudcannon-structure-value.schema.json +671 -663
- package/dist/cloudcannon-structures.schema.json +671 -663
- package/dist/documentation.json +20400 -31108
- package/package.json +1 -1
- package/src/cascade.ts +6 -6
- package/src/collections.ts +6 -6
- package/src/documentation.ts +1 -1
- package/src/editables.ts +38 -34
- package/src/image-options.ts +9 -9
- package/src/inputs.ts +48 -45
- package/src/preview.ts +63 -28
- package/src/snippets.ts +69 -56
- package/src/structures.ts +9 -3
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
"markdownDescription": "Displayed in the add menu when creating new files. Defaults to a formatted version of the key."
|
|
22
22
|
},
|
|
23
23
|
"icon": {
|
|
24
|
-
"description": "Displayed in the add menu when creating new files; also used as the icon for collection files if no other preview is found.
|
|
24
|
+
"description": "Displayed in the add menu when creating new files; also used as the icon for collection files if no other preview is found.",
|
|
25
25
|
"default": "notes",
|
|
26
26
|
"allOf": [
|
|
27
27
|
{
|
|
28
28
|
"$ref": "#/definitions/icon"
|
|
29
29
|
}
|
|
30
30
|
],
|
|
31
|
-
"markdownDescription": "Displayed in the add menu when creating new files; also used as the icon for collection files if no other preview is found.
|
|
31
|
+
"markdownDescription": "Displayed in the add menu when creating new files; also used as the icon for collection files if no other preview is found."
|
|
32
32
|
},
|
|
33
33
|
"create": {
|
|
34
34
|
"allOf": [
|
|
35
35
|
{
|
|
36
|
-
"$ref": "#/definitions/create"
|
|
36
|
+
"$ref": "#/definitions/type.create"
|
|
37
37
|
}
|
|
38
38
|
]
|
|
39
39
|
},
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"markdownDescription": "Preview your unbuilt pages (e.g. drafts) to another page's output URL. The Visual Editor will load that URL, where Data Bindings and Previews are available to render your new page without saving."
|
|
44
44
|
},
|
|
45
45
|
"reorder_inputs": {
|
|
46
|
-
"description": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true.
|
|
46
|
+
"description": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true.",
|
|
47
47
|
"default": true,
|
|
48
48
|
"type": "boolean",
|
|
49
|
-
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true.
|
|
49
|
+
"markdownDescription": "If true, inputs are sorted to match when editing. Extra inputs are ordered after expected inputs, unless `remove_extra_inputs` is true."
|
|
50
50
|
},
|
|
51
51
|
"hide_extra_inputs": {
|
|
52
52
|
"description": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults to false.",
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"markdownDescription": "Hides unexpected inputs when editing. Has no effect if `remove_extra_inputs` is true. Defaults to false."
|
|
56
56
|
},
|
|
57
57
|
"remove_empty_inputs": {
|
|
58
|
-
"description": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure.
|
|
58
|
+
"description": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure.",
|
|
59
59
|
"default": false,
|
|
60
60
|
"type": "boolean",
|
|
61
|
-
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure.
|
|
61
|
+
"markdownDescription": "If checked, empty inputs are removed from the source file on save. Removed inputs will be available for editing again, provided they are in the matching schema/structure."
|
|
62
62
|
},
|
|
63
63
|
"remove_extra_inputs": {
|
|
64
|
-
"description": "If checked, extra inputs are removed when editing.
|
|
64
|
+
"description": "If checked, extra inputs are removed when editing.",
|
|
65
65
|
"default": true,
|
|
66
66
|
"type": "boolean",
|
|
67
|
-
"markdownDescription": "If checked, extra inputs are removed when editing.
|
|
67
|
+
"markdownDescription": "If checked, extra inputs are removed when editing."
|
|
68
68
|
},
|
|
69
69
|
"preview": {
|
|
70
70
|
"allOf": [
|
|
@@ -81,10 +81,11 @@
|
|
|
81
81
|
]
|
|
82
82
|
},
|
|
83
83
|
"_inputs_from_glob": {
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
84
|
+
"allOf": [
|
|
85
|
+
{
|
|
86
|
+
"$ref": "#/definitions/type._inputs_from_glob"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
88
89
|
},
|
|
89
90
|
"_select_data": {
|
|
90
91
|
"allOf": [
|
|
@@ -101,10 +102,11 @@
|
|
|
101
102
|
]
|
|
102
103
|
},
|
|
103
104
|
"_structures_from_glob": {
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
"allOf": [
|
|
106
|
+
{
|
|
107
|
+
"$ref": "#/definitions/type._structures_from_glob"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
108
110
|
},
|
|
109
111
|
"_enabled_editors": {
|
|
110
112
|
"$ref": "#/definitions/type._enabled_editors"
|
|
@@ -113,10 +115,11 @@
|
|
|
113
115
|
"$ref": "#/definitions/type._editables"
|
|
114
116
|
},
|
|
115
117
|
"_editables_from_glob": {
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
"allOf": [
|
|
119
|
+
{
|
|
120
|
+
"$ref": "#/definitions/type._editables_from_glob"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
120
123
|
}
|
|
121
124
|
},
|
|
122
125
|
"required": [
|
|
@@ -3718,7 +3721,7 @@
|
|
|
3718
3721
|
],
|
|
3719
3722
|
"markdownDescription": "Material Symbol icon names available in CloudCannon for UI elements and content previews."
|
|
3720
3723
|
},
|
|
3721
|
-
"create": {
|
|
3724
|
+
"type.create": {
|
|
3722
3725
|
"title": "Create",
|
|
3723
3726
|
"description": "Controls where new files are saved.",
|
|
3724
3727
|
"type": "object",
|
|
@@ -3752,10 +3755,11 @@
|
|
|
3752
3755
|
]
|
|
3753
3756
|
},
|
|
3754
3757
|
"_inputs_from_glob": {
|
|
3755
|
-
"
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3758
|
+
"allOf": [
|
|
3759
|
+
{
|
|
3760
|
+
"$ref": "#/definitions/type._inputs_from_glob"
|
|
3761
|
+
}
|
|
3762
|
+
]
|
|
3759
3763
|
},
|
|
3760
3764
|
"_select_data": {
|
|
3761
3765
|
"allOf": [
|
|
@@ -3772,10 +3776,11 @@
|
|
|
3772
3776
|
]
|
|
3773
3777
|
},
|
|
3774
3778
|
"_structures_from_glob": {
|
|
3775
|
-
"
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
+
"allOf": [
|
|
3780
|
+
{
|
|
3781
|
+
"$ref": "#/definitions/type._structures_from_glob"
|
|
3782
|
+
}
|
|
3783
|
+
]
|
|
3779
3784
|
}
|
|
3780
3785
|
},
|
|
3781
3786
|
"additionalProperties": false,
|
|
@@ -3871,12 +3876,12 @@
|
|
|
3871
3876
|
"type": "object",
|
|
3872
3877
|
"properties": {
|
|
3873
3878
|
"comment": {
|
|
3874
|
-
"$ref": "#/definitions/comment"
|
|
3879
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
3875
3880
|
},
|
|
3876
3881
|
"context": {
|
|
3877
3882
|
"allOf": [
|
|
3878
3883
|
{
|
|
3879
|
-
"$ref": "#/definitions/context"
|
|
3884
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
3880
3885
|
}
|
|
3881
3886
|
]
|
|
3882
3887
|
},
|
|
@@ -3884,28 +3889,28 @@
|
|
|
3884
3889
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
3885
3890
|
"allOf": [
|
|
3886
3891
|
{
|
|
3887
|
-
"$ref": "#/definitions/documentation"
|
|
3892
|
+
"$ref": "#/definitions/type.documentation"
|
|
3888
3893
|
}
|
|
3889
3894
|
],
|
|
3890
3895
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
3891
3896
|
},
|
|
3892
3897
|
"label": {
|
|
3893
|
-
"$ref": "#/definitions/label"
|
|
3898
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
3894
3899
|
},
|
|
3895
3900
|
"hidden": {
|
|
3896
|
-
"$ref": "#/definitions/hidden"
|
|
3901
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
3897
3902
|
},
|
|
3898
3903
|
"disabled": {
|
|
3899
|
-
"$ref": "#/definitions/disabled"
|
|
3904
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
3900
3905
|
},
|
|
3901
3906
|
"instance_value": {
|
|
3902
|
-
"$ref": "#/definitions/instance_value"
|
|
3907
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
3903
3908
|
},
|
|
3904
3909
|
"disable_instance_value_rehydration": {
|
|
3905
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
3910
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
3906
3911
|
},
|
|
3907
3912
|
"cascade": {
|
|
3908
|
-
"$ref": "#/definitions/cascade"
|
|
3913
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
3909
3914
|
},
|
|
3910
3915
|
"type": {
|
|
3911
3916
|
"title": "Type",
|
|
@@ -3928,36 +3933,36 @@
|
|
|
3928
3933
|
"type": "object",
|
|
3929
3934
|
"properties": {
|
|
3930
3935
|
"max_length": {
|
|
3931
|
-
"$ref": "#/definitions/max_length"
|
|
3936
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
3932
3937
|
},
|
|
3933
3938
|
"max_length_message": {
|
|
3934
|
-
"$ref": "#/definitions/max_length_message"
|
|
3939
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
3935
3940
|
},
|
|
3936
3941
|
"min_length": {
|
|
3937
|
-
"$ref": "#/definitions/min_length"
|
|
3942
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
3938
3943
|
},
|
|
3939
3944
|
"min_length_message": {
|
|
3940
|
-
"$ref": "#/definitions/min_length_message"
|
|
3945
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
3941
3946
|
},
|
|
3942
3947
|
"pattern": {
|
|
3943
|
-
"$ref": "#/definitions/pattern"
|
|
3948
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
3944
3949
|
},
|
|
3945
3950
|
"pattern_message": {
|
|
3946
|
-
"$ref": "#/definitions/pattern_message"
|
|
3951
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
3947
3952
|
},
|
|
3948
3953
|
"pattern_flags": {
|
|
3949
|
-
"$ref": "#/definitions/pattern_flags"
|
|
3954
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
3950
3955
|
},
|
|
3951
3956
|
"required": {
|
|
3952
|
-
"$ref": "#/definitions/required"
|
|
3957
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
3953
3958
|
},
|
|
3954
3959
|
"required_message": {
|
|
3955
|
-
"$ref": "#/definitions/required_message"
|
|
3960
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
3956
3961
|
},
|
|
3957
3962
|
"empty_type": {
|
|
3958
3963
|
"allOf": [
|
|
3959
3964
|
{
|
|
3960
|
-
"$ref": "#/definitions/empty_type_text"
|
|
3965
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
3961
3966
|
}
|
|
3962
3967
|
]
|
|
3963
3968
|
},
|
|
@@ -4000,12 +4005,12 @@
|
|
|
4000
4005
|
"additionalProperties": false,
|
|
4001
4006
|
"markdownDescription": "Provides a simple editing interface for plain text."
|
|
4002
4007
|
},
|
|
4003
|
-
"comment": {
|
|
4008
|
+
"type._inputs.*.comment": {
|
|
4004
4009
|
"description": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.",
|
|
4005
4010
|
"type": "string",
|
|
4006
4011
|
"markdownDescription": "Changes the subtext below the _Label_. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed."
|
|
4007
4012
|
},
|
|
4008
|
-
"context": {
|
|
4013
|
+
"type._inputs.*.context": {
|
|
4009
4014
|
"description": "Adds an expandable section of rich text below the input.",
|
|
4010
4015
|
"type": "object",
|
|
4011
4016
|
"properties": {
|
|
@@ -4038,7 +4043,7 @@
|
|
|
4038
4043
|
"additionalProperties": false,
|
|
4039
4044
|
"markdownDescription": "Adds an expandable section of rich text below the input."
|
|
4040
4045
|
},
|
|
4041
|
-
"documentation": {
|
|
4046
|
+
"type.documentation": {
|
|
4042
4047
|
"title": "Documentation",
|
|
4043
4048
|
"description": "Configuration for documentation links displayed in the CloudCannon interface.",
|
|
4044
4049
|
"type": "object",
|
|
@@ -4070,12 +4075,12 @@
|
|
|
4070
4075
|
"additionalProperties": false,
|
|
4071
4076
|
"markdownDescription": "Configuration for documentation links displayed in the CloudCannon interface."
|
|
4072
4077
|
},
|
|
4073
|
-
"label": {
|
|
4078
|
+
"type._inputs.*.label": {
|
|
4074
4079
|
"description": "Optionally changes the text above this input.",
|
|
4075
4080
|
"type": "string",
|
|
4076
4081
|
"markdownDescription": "Optionally changes the text above this input."
|
|
4077
4082
|
},
|
|
4078
|
-
"hidden": {
|
|
4083
|
+
"type._inputs.*.hidden": {
|
|
4079
4084
|
"description": "Toggles the visibility of this input.",
|
|
4080
4085
|
"default": false,
|
|
4081
4086
|
"anyOf": [
|
|
@@ -4090,7 +4095,7 @@
|
|
|
4090
4095
|
],
|
|
4091
4096
|
"markdownDescription": "Toggles the visibility of this input."
|
|
4092
4097
|
},
|
|
4093
|
-
"disabled": {
|
|
4098
|
+
"type._inputs.*.disabled": {
|
|
4094
4099
|
"description": "Toggles if this input can be edited.",
|
|
4095
4100
|
"default": false,
|
|
4096
4101
|
"anyOf": [
|
|
@@ -4105,7 +4110,7 @@
|
|
|
4105
4110
|
],
|
|
4106
4111
|
"markdownDescription": "Toggles if this input can be edited."
|
|
4107
4112
|
},
|
|
4108
|
-
"instance_value": {
|
|
4113
|
+
"type._inputs.*.instance_value": {
|
|
4109
4114
|
"title": "Instance Value",
|
|
4110
4115
|
"description": "Controls if and how the value of this input is instantiated when created. This occurs when creating files, or adding array items containing the configured input.",
|
|
4111
4116
|
"type": "string",
|
|
@@ -4115,49 +4120,49 @@
|
|
|
4115
4120
|
],
|
|
4116
4121
|
"markdownDescription": "Controls if and how the value of this input is instantiated when created. This occurs when creating files, or adding array items containing the configured input."
|
|
4117
4122
|
},
|
|
4118
|
-
"disable_instance_value_rehydration": {
|
|
4123
|
+
"type._inputs.*.disable_instance_value_rehydration": {
|
|
4119
4124
|
"description": "Prevents the default where inputs configured with an `instance_value` are rehydrated with a new value when duplicated in the CMS.",
|
|
4120
4125
|
"default": false,
|
|
4121
4126
|
"type": "boolean",
|
|
4122
4127
|
"markdownDescription": "Prevents the default where inputs configured with an `instance_value` are rehydrated with a new value when duplicated in the CMS."
|
|
4123
4128
|
},
|
|
4124
|
-
"cascade": {
|
|
4129
|
+
"type._inputs.*.cascade": {
|
|
4125
4130
|
"description": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration.",
|
|
4126
4131
|
"default": true,
|
|
4127
4132
|
"type": "boolean",
|
|
4128
4133
|
"markdownDescription": "Specifies whether or not this input configuration should be merged with any matching, less specific configuration."
|
|
4129
4134
|
},
|
|
4130
|
-
"max_length": {
|
|
4135
|
+
"type._inputs.*.options.max_length": {
|
|
4131
4136
|
"description": "This key defines the maximum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too long. If the Input already contains a longer value, CloudCannon will require you to remove characters until the Input contains a valid string to save your changes, or discard your unsaved changes.",
|
|
4132
4137
|
"type": "number",
|
|
4133
4138
|
"markdownDescription": "This key defines the maximum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too long. If the Input already contains a longer value, CloudCannon will require you to remove characters until the Input contains a valid string to save your changes, or discard your unsaved changes."
|
|
4134
4139
|
},
|
|
4135
|
-
"max_length_message": {
|
|
4140
|
+
"type._inputs.*.options.max_length_message": {
|
|
4136
4141
|
"description": "This key defines the message that explains which maximum string length an Input will accept. This key requires you to define `options.max_length`.",
|
|
4137
4142
|
"type": "string",
|
|
4138
4143
|
"markdownDescription": "This key defines the message that explains which maximum string length an Input will accept. This key requires you to define `options.max_length`."
|
|
4139
4144
|
},
|
|
4140
|
-
"min_length": {
|
|
4145
|
+
"type._inputs.*.options.min_length": {
|
|
4141
4146
|
"description": "This key defines the minimum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too short. If the Input already contains a shorter value, CloudCannon will require you to add characters until the Input contains a valid string to save your changes, or discard your unsaved changes.",
|
|
4142
4147
|
"type": "number",
|
|
4143
4148
|
"markdownDescription": "This key defines the minimum string length, in characters, that CloudCannon will allow in an Input. When configured, CloudCannon will warn you when an Input value is too short. If the Input already contains a shorter value, CloudCannon will require you to add characters until the Input contains a valid string to save your changes, or discard your unsaved changes."
|
|
4144
4149
|
},
|
|
4145
|
-
"min_length_message": {
|
|
4150
|
+
"type._inputs.*.options.min_length_message": {
|
|
4146
4151
|
"description": "This key defines the message that explains which minimum string length an Input will accept. This key requires you to define `options.min_length`.",
|
|
4147
4152
|
"type": "string",
|
|
4148
4153
|
"markdownDescription": "This key defines the message that explains which minimum string length an Input will accept. This key requires you to define `options.min_length`."
|
|
4149
4154
|
},
|
|
4150
|
-
"pattern": {
|
|
4155
|
+
"type._inputs.*.options.pattern": {
|
|
4151
4156
|
"description": "This key defines a regular expression that the Input value must match. When configured, CloudCannon will require you to enter a value that matches the REGEX pattern. If the Input already contains an invalid value, CloudCannon will require you to enter a valid string to save your changes, or discard your unsaved changes.",
|
|
4152
4157
|
"type": "string",
|
|
4153
4158
|
"markdownDescription": "This key defines a regular expression that the Input value must match. When configured, CloudCannon will require you to enter a value that matches the REGEX pattern. If the Input already contains an invalid value, CloudCannon will require you to enter a valid string to save your changes, or discard your unsaved changes."
|
|
4154
4159
|
},
|
|
4155
|
-
"pattern_message": {
|
|
4160
|
+
"type._inputs.*.options.pattern_message": {
|
|
4156
4161
|
"description": "This key defines the message that explains which regular expression an Input will accept. This key requires you to define `options.pattern`.",
|
|
4157
4162
|
"type": "string",
|
|
4158
4163
|
"markdownDescription": "This key defines the message that explains which regular expression an Input will accept. This key requires you to define `options.pattern`."
|
|
4159
4164
|
},
|
|
4160
|
-
"pattern_flags": {
|
|
4165
|
+
"type._inputs.*.options.pattern_flags": {
|
|
4161
4166
|
"description": "This key defines the flags (e.g. case-insensitive searching) for the regular expression set in `options.pattern`.",
|
|
4162
4167
|
"type": "object",
|
|
4163
4168
|
"properties": {
|
|
@@ -4195,18 +4200,18 @@
|
|
|
4195
4200
|
"additionalProperties": false,
|
|
4196
4201
|
"markdownDescription": "This key defines the flags (e.g. case-insensitive searching) for the regular expression set in `options.pattern`."
|
|
4197
4202
|
},
|
|
4198
|
-
"required": {
|
|
4203
|
+
"type._inputs.*.options.required": {
|
|
4199
4204
|
"description": "This key toggles whether CloudCannon requires this Input to have a value. If set to true, CloudCannon will require you to enter a value to save your changes, or discard your unsaved changes.",
|
|
4200
4205
|
"default": false,
|
|
4201
4206
|
"type": "boolean",
|
|
4202
4207
|
"markdownDescription": "This key toggles whether CloudCannon requires this Input to have a value. If set to true, CloudCannon will require you to enter a value to save your changes, or discard your unsaved changes."
|
|
4203
4208
|
},
|
|
4204
|
-
"required_message": {
|
|
4209
|
+
"type._inputs.*.options.required_message": {
|
|
4205
4210
|
"description": "This key defines the message that explains why an Input is required. This key requires you to define `options.required`.",
|
|
4206
4211
|
"type": "string",
|
|
4207
4212
|
"markdownDescription": "This key defines the message that explains why an Input is required. This key requires you to define `options.required`."
|
|
4208
4213
|
},
|
|
4209
|
-
"empty_type_text": {
|
|
4214
|
+
"type._inputs.*.options.empty_type_text": {
|
|
4210
4215
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4211
4216
|
"default": "null",
|
|
4212
4217
|
"type": "string",
|
|
@@ -4219,90 +4224,106 @@
|
|
|
4219
4224
|
"PreviewEntries": {
|
|
4220
4225
|
"anyOf": [
|
|
4221
4226
|
{
|
|
4222
|
-
"
|
|
4223
|
-
"type": "array",
|
|
4224
|
-
"items": {
|
|
4225
|
-
"$ref": "#/definitions/PreviewEntry"
|
|
4226
|
-
}
|
|
4227
|
+
"$ref": "#/definitions/type.preview-entry.(array)"
|
|
4227
4228
|
},
|
|
4228
4229
|
{
|
|
4229
|
-
"
|
|
4230
|
-
"type": "string"
|
|
4230
|
+
"$ref": "#/definitions/type.preview-entry.(raw-text)"
|
|
4231
4231
|
},
|
|
4232
4232
|
{
|
|
4233
|
-
"
|
|
4234
|
-
"type": "boolean",
|
|
4235
|
-
"const": false
|
|
4233
|
+
"$ref": "#/definitions/type.preview-entry.(false)"
|
|
4236
4234
|
}
|
|
4237
4235
|
]
|
|
4238
4236
|
},
|
|
4239
|
-
"
|
|
4237
|
+
"type.preview-entry.(array)": {
|
|
4238
|
+
"title": "Array",
|
|
4239
|
+
"type": "array",
|
|
4240
|
+
"items": {
|
|
4241
|
+
"$ref": "#/definitions/type.preview-entry"
|
|
4242
|
+
}
|
|
4243
|
+
},
|
|
4244
|
+
"type.preview-entry": {
|
|
4245
|
+
"title": "Preview Entry",
|
|
4240
4246
|
"anyOf": [
|
|
4241
4247
|
{
|
|
4242
|
-
"
|
|
4243
|
-
"type": "object",
|
|
4244
|
-
"properties": {
|
|
4245
|
-
"key": {
|
|
4246
|
-
"title": "Key Value",
|
|
4247
|
-
"type": "string"
|
|
4248
|
-
}
|
|
4249
|
-
},
|
|
4250
|
-
"required": [
|
|
4251
|
-
"key"
|
|
4252
|
-
],
|
|
4253
|
-
"additionalProperties": false
|
|
4248
|
+
"$ref": "#/definitions/type.preview-entry.(key)"
|
|
4254
4249
|
},
|
|
4255
4250
|
{
|
|
4256
|
-
"
|
|
4257
|
-
"type": "object",
|
|
4258
|
-
"properties": {
|
|
4259
|
-
"template": {
|
|
4260
|
-
"title": "Template Value",
|
|
4261
|
-
"type": "string"
|
|
4262
|
-
}
|
|
4263
|
-
},
|
|
4264
|
-
"required": [
|
|
4265
|
-
"template"
|
|
4266
|
-
],
|
|
4267
|
-
"additionalProperties": false
|
|
4251
|
+
"$ref": "#/definitions/type.preview-entry.(template)"
|
|
4268
4252
|
},
|
|
4269
4253
|
{
|
|
4270
|
-
"
|
|
4271
|
-
"type": "object",
|
|
4272
|
-
"properties": {
|
|
4273
|
-
"text": {
|
|
4274
|
-
"title": "Text Value",
|
|
4275
|
-
"type": "string"
|
|
4276
|
-
}
|
|
4277
|
-
},
|
|
4278
|
-
"required": [
|
|
4279
|
-
"text"
|
|
4280
|
-
],
|
|
4281
|
-
"additionalProperties": false
|
|
4254
|
+
"$ref": "#/definitions/type.preview-entry.(text)"
|
|
4282
4255
|
},
|
|
4283
4256
|
{
|
|
4284
|
-
"
|
|
4285
|
-
"type": "string"
|
|
4257
|
+
"$ref": "#/definitions/type.preview-entry.(raw-text)"
|
|
4286
4258
|
},
|
|
4287
4259
|
{
|
|
4288
|
-
"
|
|
4289
|
-
"type": "boolean",
|
|
4290
|
-
"const": false
|
|
4260
|
+
"$ref": "#/definitions/type.preview-entry.(false)"
|
|
4291
4261
|
}
|
|
4292
4262
|
]
|
|
4293
4263
|
},
|
|
4264
|
+
"type.preview-entry.(key)": {
|
|
4265
|
+
"title": "Key",
|
|
4266
|
+
"type": "object",
|
|
4267
|
+
"properties": {
|
|
4268
|
+
"key": {
|
|
4269
|
+
"title": "Key Value",
|
|
4270
|
+
"type": "string"
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
4273
|
+
"required": [
|
|
4274
|
+
"key"
|
|
4275
|
+
],
|
|
4276
|
+
"additionalProperties": false
|
|
4277
|
+
},
|
|
4278
|
+
"type.preview-entry.(template)": {
|
|
4279
|
+
"title": "Template",
|
|
4280
|
+
"type": "object",
|
|
4281
|
+
"properties": {
|
|
4282
|
+
"template": {
|
|
4283
|
+
"title": "Template Value",
|
|
4284
|
+
"type": "string"
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
4287
|
+
"required": [
|
|
4288
|
+
"template"
|
|
4289
|
+
],
|
|
4290
|
+
"additionalProperties": false
|
|
4291
|
+
},
|
|
4292
|
+
"type.preview-entry.(text)": {
|
|
4293
|
+
"title": "Text",
|
|
4294
|
+
"type": "object",
|
|
4295
|
+
"properties": {
|
|
4296
|
+
"text": {
|
|
4297
|
+
"title": "Text Value",
|
|
4298
|
+
"type": "string"
|
|
4299
|
+
}
|
|
4300
|
+
},
|
|
4301
|
+
"required": [
|
|
4302
|
+
"text"
|
|
4303
|
+
],
|
|
4304
|
+
"additionalProperties": false
|
|
4305
|
+
},
|
|
4306
|
+
"type.preview-entry.(raw-text)": {
|
|
4307
|
+
"title": "Raw Text",
|
|
4308
|
+
"type": "string"
|
|
4309
|
+
},
|
|
4310
|
+
"type.preview-entry.(false)": {
|
|
4311
|
+
"title": "False",
|
|
4312
|
+
"type": "boolean",
|
|
4313
|
+
"const": false
|
|
4314
|
+
},
|
|
4294
4315
|
"TextareaInput": {
|
|
4295
4316
|
"title": "Textarea Input",
|
|
4296
4317
|
"description": "Provides an editing interface for plain text.",
|
|
4297
4318
|
"type": "object",
|
|
4298
4319
|
"properties": {
|
|
4299
4320
|
"comment": {
|
|
4300
|
-
"$ref": "#/definitions/comment"
|
|
4321
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4301
4322
|
},
|
|
4302
4323
|
"context": {
|
|
4303
4324
|
"allOf": [
|
|
4304
4325
|
{
|
|
4305
|
-
"$ref": "#/definitions/context"
|
|
4326
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4306
4327
|
}
|
|
4307
4328
|
]
|
|
4308
4329
|
},
|
|
@@ -4310,28 +4331,28 @@
|
|
|
4310
4331
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4311
4332
|
"allOf": [
|
|
4312
4333
|
{
|
|
4313
|
-
"$ref": "#/definitions/documentation"
|
|
4334
|
+
"$ref": "#/definitions/type.documentation"
|
|
4314
4335
|
}
|
|
4315
4336
|
],
|
|
4316
4337
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4317
4338
|
},
|
|
4318
4339
|
"label": {
|
|
4319
|
-
"$ref": "#/definitions/label"
|
|
4340
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4320
4341
|
},
|
|
4321
4342
|
"hidden": {
|
|
4322
|
-
"$ref": "#/definitions/hidden"
|
|
4343
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4323
4344
|
},
|
|
4324
4345
|
"disabled": {
|
|
4325
|
-
"$ref": "#/definitions/disabled"
|
|
4346
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4326
4347
|
},
|
|
4327
4348
|
"instance_value": {
|
|
4328
|
-
"$ref": "#/definitions/instance_value"
|
|
4349
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4329
4350
|
},
|
|
4330
4351
|
"disable_instance_value_rehydration": {
|
|
4331
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
4352
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4332
4353
|
},
|
|
4333
4354
|
"cascade": {
|
|
4334
|
-
"$ref": "#/definitions/cascade"
|
|
4355
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4335
4356
|
},
|
|
4336
4357
|
"type": {
|
|
4337
4358
|
"title": "Type",
|
|
@@ -4345,36 +4366,36 @@
|
|
|
4345
4366
|
"type": "object",
|
|
4346
4367
|
"properties": {
|
|
4347
4368
|
"max_length": {
|
|
4348
|
-
"$ref": "#/definitions/max_length"
|
|
4369
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
4349
4370
|
},
|
|
4350
4371
|
"max_length_message": {
|
|
4351
|
-
"$ref": "#/definitions/max_length_message"
|
|
4372
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
4352
4373
|
},
|
|
4353
4374
|
"min_length": {
|
|
4354
|
-
"$ref": "#/definitions/min_length"
|
|
4375
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
4355
4376
|
},
|
|
4356
4377
|
"min_length_message": {
|
|
4357
|
-
"$ref": "#/definitions/min_length_message"
|
|
4378
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
4358
4379
|
},
|
|
4359
4380
|
"pattern": {
|
|
4360
|
-
"$ref": "#/definitions/pattern"
|
|
4381
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
4361
4382
|
},
|
|
4362
4383
|
"pattern_message": {
|
|
4363
|
-
"$ref": "#/definitions/pattern_message"
|
|
4384
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
4364
4385
|
},
|
|
4365
4386
|
"pattern_flags": {
|
|
4366
|
-
"$ref": "#/definitions/pattern_flags"
|
|
4387
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
4367
4388
|
},
|
|
4368
4389
|
"required": {
|
|
4369
|
-
"$ref": "#/definitions/required"
|
|
4390
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
4370
4391
|
},
|
|
4371
4392
|
"required_message": {
|
|
4372
|
-
"$ref": "#/definitions/required_message"
|
|
4393
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
4373
4394
|
},
|
|
4374
4395
|
"empty_type": {
|
|
4375
4396
|
"allOf": [
|
|
4376
4397
|
{
|
|
4377
|
-
"$ref": "#/definitions/empty_type_text"
|
|
4398
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
4378
4399
|
}
|
|
4379
4400
|
]
|
|
4380
4401
|
},
|
|
@@ -4406,12 +4427,12 @@
|
|
|
4406
4427
|
"type": "object",
|
|
4407
4428
|
"properties": {
|
|
4408
4429
|
"comment": {
|
|
4409
|
-
"$ref": "#/definitions/comment"
|
|
4430
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4410
4431
|
},
|
|
4411
4432
|
"context": {
|
|
4412
4433
|
"allOf": [
|
|
4413
4434
|
{
|
|
4414
|
-
"$ref": "#/definitions/context"
|
|
4435
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4415
4436
|
}
|
|
4416
4437
|
]
|
|
4417
4438
|
},
|
|
@@ -4419,28 +4440,28 @@
|
|
|
4419
4440
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4420
4441
|
"allOf": [
|
|
4421
4442
|
{
|
|
4422
|
-
"$ref": "#/definitions/documentation"
|
|
4443
|
+
"$ref": "#/definitions/type.documentation"
|
|
4423
4444
|
}
|
|
4424
4445
|
],
|
|
4425
4446
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4426
4447
|
},
|
|
4427
4448
|
"label": {
|
|
4428
|
-
"$ref": "#/definitions/label"
|
|
4449
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4429
4450
|
},
|
|
4430
4451
|
"hidden": {
|
|
4431
|
-
"$ref": "#/definitions/hidden"
|
|
4452
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4432
4453
|
},
|
|
4433
4454
|
"disabled": {
|
|
4434
|
-
"$ref": "#/definitions/disabled"
|
|
4455
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4435
4456
|
},
|
|
4436
4457
|
"instance_value": {
|
|
4437
|
-
"$ref": "#/definitions/instance_value"
|
|
4458
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4438
4459
|
},
|
|
4439
4460
|
"disable_instance_value_rehydration": {
|
|
4440
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
4461
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4441
4462
|
},
|
|
4442
4463
|
"cascade": {
|
|
4443
|
-
"$ref": "#/definitions/cascade"
|
|
4464
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4444
4465
|
},
|
|
4445
4466
|
"type": {
|
|
4446
4467
|
"title": "Type",
|
|
@@ -4474,36 +4495,36 @@
|
|
|
4474
4495
|
"type": "boolean"
|
|
4475
4496
|
},
|
|
4476
4497
|
"max_length": {
|
|
4477
|
-
"$ref": "#/definitions/max_length"
|
|
4498
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
4478
4499
|
},
|
|
4479
4500
|
"max_length_message": {
|
|
4480
|
-
"$ref": "#/definitions/max_length_message"
|
|
4501
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
4481
4502
|
},
|
|
4482
4503
|
"min_length": {
|
|
4483
|
-
"$ref": "#/definitions/min_length"
|
|
4504
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
4484
4505
|
},
|
|
4485
4506
|
"min_length_message": {
|
|
4486
|
-
"$ref": "#/definitions/min_length_message"
|
|
4507
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
4487
4508
|
},
|
|
4488
4509
|
"pattern": {
|
|
4489
|
-
"$ref": "#/definitions/pattern"
|
|
4510
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
4490
4511
|
},
|
|
4491
4512
|
"pattern_message": {
|
|
4492
|
-
"$ref": "#/definitions/pattern_message"
|
|
4513
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
4493
4514
|
},
|
|
4494
4515
|
"pattern_flags": {
|
|
4495
|
-
"$ref": "#/definitions/pattern_flags"
|
|
4516
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
4496
4517
|
},
|
|
4497
4518
|
"required": {
|
|
4498
|
-
"$ref": "#/definitions/required"
|
|
4519
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
4499
4520
|
},
|
|
4500
4521
|
"required_message": {
|
|
4501
|
-
"$ref": "#/definitions/required_message"
|
|
4522
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
4502
4523
|
},
|
|
4503
4524
|
"empty_type": {
|
|
4504
4525
|
"allOf": [
|
|
4505
4526
|
{
|
|
4506
|
-
"$ref": "#/definitions/empty_type_text"
|
|
4527
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
4507
4528
|
}
|
|
4508
4529
|
]
|
|
4509
4530
|
},
|
|
@@ -4649,12 +4670,12 @@
|
|
|
4649
4670
|
"type": "object",
|
|
4650
4671
|
"properties": {
|
|
4651
4672
|
"comment": {
|
|
4652
|
-
"$ref": "#/definitions/comment"
|
|
4673
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4653
4674
|
},
|
|
4654
4675
|
"context": {
|
|
4655
4676
|
"allOf": [
|
|
4656
4677
|
{
|
|
4657
|
-
"$ref": "#/definitions/context"
|
|
4678
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4658
4679
|
}
|
|
4659
4680
|
]
|
|
4660
4681
|
},
|
|
@@ -4662,28 +4683,28 @@
|
|
|
4662
4683
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4663
4684
|
"allOf": [
|
|
4664
4685
|
{
|
|
4665
|
-
"$ref": "#/definitions/documentation"
|
|
4686
|
+
"$ref": "#/definitions/type.documentation"
|
|
4666
4687
|
}
|
|
4667
4688
|
],
|
|
4668
4689
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4669
4690
|
},
|
|
4670
4691
|
"label": {
|
|
4671
|
-
"$ref": "#/definitions/label"
|
|
4692
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4672
4693
|
},
|
|
4673
4694
|
"hidden": {
|
|
4674
|
-
"$ref": "#/definitions/hidden"
|
|
4695
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4675
4696
|
},
|
|
4676
4697
|
"disabled": {
|
|
4677
|
-
"$ref": "#/definitions/disabled"
|
|
4698
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4678
4699
|
},
|
|
4679
4700
|
"instance_value": {
|
|
4680
|
-
"$ref": "#/definitions/instance_value"
|
|
4701
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4681
4702
|
},
|
|
4682
4703
|
"disable_instance_value_rehydration": {
|
|
4683
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
4704
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4684
4705
|
},
|
|
4685
4706
|
"cascade": {
|
|
4686
|
-
"$ref": "#/definitions/cascade"
|
|
4707
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4687
4708
|
},
|
|
4688
4709
|
"type": {
|
|
4689
4710
|
"title": "Type",
|
|
@@ -4697,36 +4718,36 @@
|
|
|
4697
4718
|
"type": "object",
|
|
4698
4719
|
"properties": {
|
|
4699
4720
|
"max_length": {
|
|
4700
|
-
"$ref": "#/definitions/max_length"
|
|
4721
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
4701
4722
|
},
|
|
4702
4723
|
"max_length_message": {
|
|
4703
|
-
"$ref": "#/definitions/max_length_message"
|
|
4724
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
4704
4725
|
},
|
|
4705
4726
|
"min_length": {
|
|
4706
|
-
"$ref": "#/definitions/min_length"
|
|
4727
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
4707
4728
|
},
|
|
4708
4729
|
"min_length_message": {
|
|
4709
|
-
"$ref": "#/definitions/min_length_message"
|
|
4730
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
4710
4731
|
},
|
|
4711
4732
|
"pattern": {
|
|
4712
|
-
"$ref": "#/definitions/pattern"
|
|
4733
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
4713
4734
|
},
|
|
4714
4735
|
"pattern_message": {
|
|
4715
|
-
"$ref": "#/definitions/pattern_message"
|
|
4736
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
4716
4737
|
},
|
|
4717
4738
|
"pattern_flags": {
|
|
4718
|
-
"$ref": "#/definitions/pattern_flags"
|
|
4739
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
4719
4740
|
},
|
|
4720
4741
|
"required": {
|
|
4721
|
-
"$ref": "#/definitions/required"
|
|
4742
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
4722
4743
|
},
|
|
4723
4744
|
"required_message": {
|
|
4724
|
-
"$ref": "#/definitions/required_message"
|
|
4745
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
4725
4746
|
},
|
|
4726
4747
|
"empty_type": {
|
|
4727
4748
|
"allOf": [
|
|
4728
4749
|
{
|
|
4729
|
-
"$ref": "#/definitions/empty_type_text"
|
|
4750
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
4730
4751
|
}
|
|
4731
4752
|
]
|
|
4732
4753
|
},
|
|
@@ -4763,12 +4784,12 @@
|
|
|
4763
4784
|
"type": "object",
|
|
4764
4785
|
"properties": {
|
|
4765
4786
|
"comment": {
|
|
4766
|
-
"$ref": "#/definitions/comment"
|
|
4787
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4767
4788
|
},
|
|
4768
4789
|
"context": {
|
|
4769
4790
|
"allOf": [
|
|
4770
4791
|
{
|
|
4771
|
-
"$ref": "#/definitions/context"
|
|
4792
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4772
4793
|
}
|
|
4773
4794
|
]
|
|
4774
4795
|
},
|
|
@@ -4776,28 +4797,28 @@
|
|
|
4776
4797
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4777
4798
|
"allOf": [
|
|
4778
4799
|
{
|
|
4779
|
-
"$ref": "#/definitions/documentation"
|
|
4800
|
+
"$ref": "#/definitions/type.documentation"
|
|
4780
4801
|
}
|
|
4781
4802
|
],
|
|
4782
4803
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4783
4804
|
},
|
|
4784
4805
|
"label": {
|
|
4785
|
-
"$ref": "#/definitions/label"
|
|
4806
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4786
4807
|
},
|
|
4787
4808
|
"hidden": {
|
|
4788
|
-
"$ref": "#/definitions/hidden"
|
|
4809
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4789
4810
|
},
|
|
4790
4811
|
"disabled": {
|
|
4791
|
-
"$ref": "#/definitions/disabled"
|
|
4812
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4792
4813
|
},
|
|
4793
4814
|
"instance_value": {
|
|
4794
|
-
"$ref": "#/definitions/instance_value"
|
|
4815
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4795
4816
|
},
|
|
4796
4817
|
"disable_instance_value_rehydration": {
|
|
4797
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
4818
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4798
4819
|
},
|
|
4799
4820
|
"cascade": {
|
|
4800
|
-
"$ref": "#/definitions/cascade"
|
|
4821
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4801
4822
|
},
|
|
4802
4823
|
"type": {
|
|
4803
4824
|
"title": "Type",
|
|
@@ -4822,12 +4843,12 @@
|
|
|
4822
4843
|
"type": "object",
|
|
4823
4844
|
"properties": {
|
|
4824
4845
|
"comment": {
|
|
4825
|
-
"$ref": "#/definitions/comment"
|
|
4846
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4826
4847
|
},
|
|
4827
4848
|
"context": {
|
|
4828
4849
|
"allOf": [
|
|
4829
4850
|
{
|
|
4830
|
-
"$ref": "#/definitions/context"
|
|
4851
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4831
4852
|
}
|
|
4832
4853
|
]
|
|
4833
4854
|
},
|
|
@@ -4835,28 +4856,28 @@
|
|
|
4835
4856
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4836
4857
|
"allOf": [
|
|
4837
4858
|
{
|
|
4838
|
-
"$ref": "#/definitions/documentation"
|
|
4859
|
+
"$ref": "#/definitions/type.documentation"
|
|
4839
4860
|
}
|
|
4840
4861
|
],
|
|
4841
4862
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4842
4863
|
},
|
|
4843
4864
|
"label": {
|
|
4844
|
-
"$ref": "#/definitions/label"
|
|
4865
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4845
4866
|
},
|
|
4846
4867
|
"hidden": {
|
|
4847
|
-
"$ref": "#/definitions/hidden"
|
|
4868
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4848
4869
|
},
|
|
4849
4870
|
"disabled": {
|
|
4850
|
-
"$ref": "#/definitions/disabled"
|
|
4871
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4851
4872
|
},
|
|
4852
4873
|
"instance_value": {
|
|
4853
|
-
"$ref": "#/definitions/instance_value"
|
|
4874
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4854
4875
|
},
|
|
4855
4876
|
"disable_instance_value_rehydration": {
|
|
4856
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
4877
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4857
4878
|
},
|
|
4858
4879
|
"cascade": {
|
|
4859
|
-
"$ref": "#/definitions/cascade"
|
|
4880
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4860
4881
|
},
|
|
4861
4882
|
"type": {
|
|
4862
4883
|
"title": "Type",
|
|
@@ -4870,40 +4891,40 @@
|
|
|
4870
4891
|
"type": "object",
|
|
4871
4892
|
"properties": {
|
|
4872
4893
|
"required": {
|
|
4873
|
-
"$ref": "#/definitions/required"
|
|
4894
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
4874
4895
|
},
|
|
4875
4896
|
"required_message": {
|
|
4876
|
-
"$ref": "#/definitions/required_message"
|
|
4897
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
4877
4898
|
},
|
|
4878
4899
|
"empty_type": {
|
|
4879
4900
|
"allOf": [
|
|
4880
4901
|
{
|
|
4881
|
-
"$ref": "#/definitions/empty_type_number"
|
|
4902
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_number"
|
|
4882
4903
|
}
|
|
4883
4904
|
]
|
|
4884
4905
|
},
|
|
4885
4906
|
"min": {
|
|
4886
4907
|
"allOf": [
|
|
4887
4908
|
{
|
|
4888
|
-
"$ref": "#/definitions/min"
|
|
4909
|
+
"$ref": "#/definitions/type._inputs.*.options.min"
|
|
4889
4910
|
}
|
|
4890
4911
|
]
|
|
4891
4912
|
},
|
|
4892
4913
|
"max": {
|
|
4893
4914
|
"allOf": [
|
|
4894
4915
|
{
|
|
4895
|
-
"$ref": "#/definitions/max"
|
|
4916
|
+
"$ref": "#/definitions/type._inputs.*.options.max"
|
|
4896
4917
|
}
|
|
4897
4918
|
]
|
|
4898
4919
|
},
|
|
4899
4920
|
"step": {
|
|
4900
|
-
"$ref": "#/definitions/step"
|
|
4921
|
+
"$ref": "#/definitions/type._inputs.*.options.step"
|
|
4901
4922
|
},
|
|
4902
4923
|
"min_message": {
|
|
4903
|
-
"$ref": "#/definitions/min_message"
|
|
4924
|
+
"$ref": "#/definitions/type._inputs.*.options.min_message"
|
|
4904
4925
|
},
|
|
4905
4926
|
"max_message": {
|
|
4906
|
-
"$ref": "#/definitions/max_message"
|
|
4927
|
+
"$ref": "#/definitions/type._inputs.*.options.max_message"
|
|
4907
4928
|
}
|
|
4908
4929
|
},
|
|
4909
4930
|
"additionalProperties": false,
|
|
@@ -4916,7 +4937,7 @@
|
|
|
4916
4937
|
"additionalProperties": false,
|
|
4917
4938
|
"markdownDescription": "Provides an editing interface for numeric values."
|
|
4918
4939
|
},
|
|
4919
|
-
"empty_type_number": {
|
|
4940
|
+
"type._inputs.*.options.empty_type_number": {
|
|
4920
4941
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
4921
4942
|
"default": "null",
|
|
4922
4943
|
"type": "string",
|
|
@@ -4926,27 +4947,27 @@
|
|
|
4926
4947
|
],
|
|
4927
4948
|
"markdownDescription": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values."
|
|
4928
4949
|
},
|
|
4929
|
-
"min": {
|
|
4950
|
+
"type._inputs.*.options.min": {
|
|
4930
4951
|
"description": "This key defines the minimum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a lesser numerical value. If the Input already contains a lesser numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes.",
|
|
4931
4952
|
"type": "number",
|
|
4932
4953
|
"markdownDescription": "This key defines the minimum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a lesser numerical value. If the Input already contains a lesser numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes."
|
|
4933
4954
|
},
|
|
4934
|
-
"max": {
|
|
4955
|
+
"type._inputs.*.options.max": {
|
|
4935
4956
|
"description": "This key defines the maximum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a greater numerical value. If the Input already contains a greater numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes.",
|
|
4936
4957
|
"type": "number",
|
|
4937
4958
|
"markdownDescription": "This key defines the maximum numerical value CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from entering a greater numerical value. If the Input already contains a greater numerical value, CloudCannon will require you to enter a valid value to save your changes, or discard your unsaved changes."
|
|
4938
4959
|
},
|
|
4939
|
-
"step": {
|
|
4960
|
+
"type._inputs.*.options.step": {
|
|
4940
4961
|
"description": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`.",
|
|
4941
4962
|
"type": "number",
|
|
4942
4963
|
"markdownDescription": "A number that specifies the granularity that the value must adhere to, or the special value any, which allows any decimal value between `max` and `min`."
|
|
4943
4964
|
},
|
|
4944
|
-
"min_message": {
|
|
4965
|
+
"type._inputs.*.options.min_message": {
|
|
4945
4966
|
"description": "This key defines the message that explains why an Input needs to have a minimum numerical value. This key requires you to define `options.min`.",
|
|
4946
4967
|
"type": "string",
|
|
4947
4968
|
"markdownDescription": "This key defines the message that explains why an Input needs to have a minimum numerical value. This key requires you to define `options.min`."
|
|
4948
4969
|
},
|
|
4949
|
-
"max_message": {
|
|
4970
|
+
"type._inputs.*.options.max_message": {
|
|
4950
4971
|
"description": "This key defines the message that explains why an Input needs to have a maximum numerical value. This key requires you to define `options.max`.",
|
|
4951
4972
|
"type": "string",
|
|
4952
4973
|
"markdownDescription": "This key defines the message that explains why an Input needs to have a maximum numerical value. This key requires you to define `options.max`."
|
|
@@ -4957,12 +4978,12 @@
|
|
|
4957
4978
|
"type": "object",
|
|
4958
4979
|
"properties": {
|
|
4959
4980
|
"comment": {
|
|
4960
|
-
"$ref": "#/definitions/comment"
|
|
4981
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
4961
4982
|
},
|
|
4962
4983
|
"context": {
|
|
4963
4984
|
"allOf": [
|
|
4964
4985
|
{
|
|
4965
|
-
"$ref": "#/definitions/context"
|
|
4986
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
4966
4987
|
}
|
|
4967
4988
|
]
|
|
4968
4989
|
},
|
|
@@ -4970,28 +4991,28 @@
|
|
|
4970
4991
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
4971
4992
|
"allOf": [
|
|
4972
4993
|
{
|
|
4973
|
-
"$ref": "#/definitions/documentation"
|
|
4994
|
+
"$ref": "#/definitions/type.documentation"
|
|
4974
4995
|
}
|
|
4975
4996
|
],
|
|
4976
4997
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
4977
4998
|
},
|
|
4978
4999
|
"label": {
|
|
4979
|
-
"$ref": "#/definitions/label"
|
|
5000
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
4980
5001
|
},
|
|
4981
5002
|
"hidden": {
|
|
4982
|
-
"$ref": "#/definitions/hidden"
|
|
5003
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
4983
5004
|
},
|
|
4984
5005
|
"disabled": {
|
|
4985
|
-
"$ref": "#/definitions/disabled"
|
|
5006
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
4986
5007
|
},
|
|
4987
5008
|
"instance_value": {
|
|
4988
|
-
"$ref": "#/definitions/instance_value"
|
|
5009
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
4989
5010
|
},
|
|
4990
5011
|
"disable_instance_value_rehydration": {
|
|
4991
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
5012
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
4992
5013
|
},
|
|
4993
5014
|
"cascade": {
|
|
4994
|
-
"$ref": "#/definitions/cascade"
|
|
5015
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
4995
5016
|
},
|
|
4996
5017
|
"type": {
|
|
4997
5018
|
"title": "Type",
|
|
@@ -5005,32 +5026,32 @@
|
|
|
5005
5026
|
"type": "object",
|
|
5006
5027
|
"properties": {
|
|
5007
5028
|
"required": {
|
|
5008
|
-
"$ref": "#/definitions/required"
|
|
5029
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
5009
5030
|
},
|
|
5010
5031
|
"required_message": {
|
|
5011
|
-
"$ref": "#/definitions/required_message"
|
|
5032
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
5012
5033
|
},
|
|
5013
5034
|
"empty_type": {
|
|
5014
5035
|
"allOf": [
|
|
5015
5036
|
{
|
|
5016
|
-
"$ref": "#/definitions/empty_type_number"
|
|
5037
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_number"
|
|
5017
5038
|
}
|
|
5018
5039
|
]
|
|
5019
5040
|
},
|
|
5020
5041
|
"min": {
|
|
5021
|
-
"$ref": "#/definitions/min"
|
|
5042
|
+
"$ref": "#/definitions/type._inputs.*.options.min"
|
|
5022
5043
|
},
|
|
5023
5044
|
"max": {
|
|
5024
|
-
"$ref": "#/definitions/max"
|
|
5045
|
+
"$ref": "#/definitions/type._inputs.*.options.max"
|
|
5025
5046
|
},
|
|
5026
5047
|
"step": {
|
|
5027
|
-
"$ref": "#/definitions/step"
|
|
5048
|
+
"$ref": "#/definitions/type._inputs.*.options.step"
|
|
5028
5049
|
},
|
|
5029
5050
|
"min_message": {
|
|
5030
|
-
"$ref": "#/definitions/min_message"
|
|
5051
|
+
"$ref": "#/definitions/type._inputs.*.options.min_message"
|
|
5031
5052
|
},
|
|
5032
5053
|
"max_message": {
|
|
5033
|
-
"$ref": "#/definitions/max_message"
|
|
5054
|
+
"$ref": "#/definitions/type._inputs.*.options.max_message"
|
|
5034
5055
|
}
|
|
5035
5056
|
},
|
|
5036
5057
|
"required": [
|
|
@@ -5053,12 +5074,12 @@
|
|
|
5053
5074
|
"type": "object",
|
|
5054
5075
|
"properties": {
|
|
5055
5076
|
"comment": {
|
|
5056
|
-
"$ref": "#/definitions/comment"
|
|
5077
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
5057
5078
|
},
|
|
5058
5079
|
"context": {
|
|
5059
5080
|
"allOf": [
|
|
5060
5081
|
{
|
|
5061
|
-
"$ref": "#/definitions/context"
|
|
5082
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
5062
5083
|
}
|
|
5063
5084
|
]
|
|
5064
5085
|
},
|
|
@@ -5066,28 +5087,28 @@
|
|
|
5066
5087
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
5067
5088
|
"allOf": [
|
|
5068
5089
|
{
|
|
5069
|
-
"$ref": "#/definitions/documentation"
|
|
5090
|
+
"$ref": "#/definitions/type.documentation"
|
|
5070
5091
|
}
|
|
5071
5092
|
],
|
|
5072
5093
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
5073
5094
|
},
|
|
5074
5095
|
"label": {
|
|
5075
|
-
"$ref": "#/definitions/label"
|
|
5096
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
5076
5097
|
},
|
|
5077
5098
|
"hidden": {
|
|
5078
|
-
"$ref": "#/definitions/hidden"
|
|
5099
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
5079
5100
|
},
|
|
5080
5101
|
"disabled": {
|
|
5081
|
-
"$ref": "#/definitions/disabled"
|
|
5102
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
5082
5103
|
},
|
|
5083
5104
|
"instance_value": {
|
|
5084
|
-
"$ref": "#/definitions/instance_value"
|
|
5105
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
5085
5106
|
},
|
|
5086
5107
|
"disable_instance_value_rehydration": {
|
|
5087
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
5108
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
5088
5109
|
},
|
|
5089
5110
|
"cascade": {
|
|
5090
|
-
"$ref": "#/definitions/cascade"
|
|
5111
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
5091
5112
|
},
|
|
5092
5113
|
"type": {
|
|
5093
5114
|
"title": "Type",
|
|
@@ -5104,31 +5125,31 @@
|
|
|
5104
5125
|
"type": "object",
|
|
5105
5126
|
"properties": {
|
|
5106
5127
|
"mime_type": {
|
|
5107
|
-
"$ref": "#/definitions/mime_type"
|
|
5128
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
5108
5129
|
},
|
|
5109
5130
|
"resize_style": {
|
|
5110
|
-
"$ref": "#/definitions/resize_style"
|
|
5131
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
5111
5132
|
},
|
|
5112
5133
|
"width": {
|
|
5113
|
-
"$ref": "#/definitions/width"
|
|
5134
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
5114
5135
|
},
|
|
5115
5136
|
"height": {
|
|
5116
|
-
"$ref": "#/definitions/height"
|
|
5137
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
5117
5138
|
},
|
|
5118
5139
|
"expandable": {
|
|
5119
|
-
"$ref": "#/definitions/expandable"
|
|
5140
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
5120
5141
|
},
|
|
5121
5142
|
"image_size_attributes": {
|
|
5122
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
5143
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
5123
5144
|
},
|
|
5124
5145
|
"allowed_sources": {
|
|
5125
|
-
"$ref": "#/definitions/allowed_sources"
|
|
5146
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
5126
5147
|
},
|
|
5127
5148
|
"prevent_resize_existing_files": {
|
|
5128
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
5149
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
5129
5150
|
},
|
|
5130
5151
|
"sizes": {
|
|
5131
|
-
"$ref": "#/definitions/sizes"
|
|
5152
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
5132
5153
|
},
|
|
5133
5154
|
"paths": {
|
|
5134
5155
|
"allOf": [
|
|
@@ -5138,138 +5159,138 @@
|
|
|
5138
5159
|
]
|
|
5139
5160
|
},
|
|
5140
5161
|
"bold": {
|
|
5141
|
-
"$ref": "#/definitions/bold"
|
|
5162
|
+
"$ref": "#/definitions/type._editables.*.bold"
|
|
5142
5163
|
},
|
|
5143
5164
|
"copyformatting": {
|
|
5144
|
-
"$ref": "#/definitions/copyformatting"
|
|
5165
|
+
"$ref": "#/definitions/type._editables.*.copyformatting"
|
|
5145
5166
|
},
|
|
5146
5167
|
"italic": {
|
|
5147
|
-
"$ref": "#/definitions/italic"
|
|
5168
|
+
"$ref": "#/definitions/type._editables.*.italic"
|
|
5148
5169
|
},
|
|
5149
5170
|
"link": {
|
|
5150
|
-
"$ref": "#/definitions/link"
|
|
5171
|
+
"$ref": "#/definitions/type._editables.*.link"
|
|
5151
5172
|
},
|
|
5152
5173
|
"redo": {
|
|
5153
|
-
"$ref": "#/definitions/redo"
|
|
5174
|
+
"$ref": "#/definitions/type._editables.*.redo"
|
|
5154
5175
|
},
|
|
5155
5176
|
"removeformat": {
|
|
5156
|
-
"$ref": "#/definitions/removeformat"
|
|
5177
|
+
"$ref": "#/definitions/type._editables.*.removeformat"
|
|
5157
5178
|
},
|
|
5158
5179
|
"strike": {
|
|
5159
|
-
"$ref": "#/definitions/strike"
|
|
5180
|
+
"$ref": "#/definitions/type._editables.*.strike"
|
|
5160
5181
|
},
|
|
5161
5182
|
"subscript": {
|
|
5162
|
-
"$ref": "#/definitions/subscript"
|
|
5183
|
+
"$ref": "#/definitions/type._editables.*.subscript"
|
|
5163
5184
|
},
|
|
5164
5185
|
"superscript": {
|
|
5165
|
-
"$ref": "#/definitions/superscript"
|
|
5186
|
+
"$ref": "#/definitions/type._editables.*.superscript"
|
|
5166
5187
|
},
|
|
5167
5188
|
"underline": {
|
|
5168
|
-
"$ref": "#/definitions/underline"
|
|
5189
|
+
"$ref": "#/definitions/type._editables.*.underline"
|
|
5169
5190
|
},
|
|
5170
5191
|
"undo": {
|
|
5171
|
-
"$ref": "#/definitions/undo"
|
|
5192
|
+
"$ref": "#/definitions/type._editables.*.undo"
|
|
5172
5193
|
},
|
|
5173
5194
|
"remove_custom_markup": {
|
|
5174
|
-
"$ref": "#/definitions/remove_custom_markup"
|
|
5195
|
+
"$ref": "#/definitions/type._editables.*.remove_custom_markup"
|
|
5175
5196
|
},
|
|
5176
5197
|
"allow_custom_markup": {
|
|
5177
|
-
"$ref": "#/definitions/allow_custom_markup"
|
|
5198
|
+
"$ref": "#/definitions/type._editables.*.allow_custom_markup"
|
|
5178
5199
|
},
|
|
5179
5200
|
"blockquote": {
|
|
5180
|
-
"$ref": "#/definitions/blockquote"
|
|
5201
|
+
"$ref": "#/definitions/type._editables.*.blockquote"
|
|
5181
5202
|
},
|
|
5182
5203
|
"bulletedlist": {
|
|
5183
|
-
"$ref": "#/definitions/bulletedlist"
|
|
5204
|
+
"$ref": "#/definitions/type._editables.*.bulletedlist"
|
|
5184
5205
|
},
|
|
5185
5206
|
"center": {
|
|
5186
|
-
"$ref": "#/definitions/center"
|
|
5207
|
+
"$ref": "#/definitions/type._editables.*.center"
|
|
5187
5208
|
},
|
|
5188
5209
|
"code_inline": {
|
|
5189
|
-
"$ref": "#/definitions/code_inline"
|
|
5210
|
+
"$ref": "#/definitions/type._editables.*.code_inline"
|
|
5190
5211
|
},
|
|
5191
5212
|
"code_block": {
|
|
5192
|
-
"$ref": "#/definitions/code_block"
|
|
5213
|
+
"$ref": "#/definitions/type._editables.*.code_block"
|
|
5193
5214
|
},
|
|
5194
5215
|
"code": {
|
|
5195
|
-
"$ref": "#/definitions/code"
|
|
5216
|
+
"$ref": "#/definitions/type._editables.*.code"
|
|
5196
5217
|
},
|
|
5197
5218
|
"embed": {
|
|
5198
|
-
"$ref": "#/definitions/embed"
|
|
5219
|
+
"$ref": "#/definitions/type._editables.*.embed"
|
|
5199
5220
|
},
|
|
5200
5221
|
"format": {
|
|
5201
|
-
"$ref": "#/definitions/format"
|
|
5222
|
+
"$ref": "#/definitions/type._editables.*.format"
|
|
5202
5223
|
},
|
|
5203
5224
|
"horizontalrule": {
|
|
5204
|
-
"$ref": "#/definitions/horizontalrule"
|
|
5225
|
+
"$ref": "#/definitions/type._editables.*.horizontalrule"
|
|
5205
5226
|
},
|
|
5206
5227
|
"image": {
|
|
5207
|
-
"$ref": "#/definitions/image"
|
|
5228
|
+
"$ref": "#/definitions/type._editables.*.image"
|
|
5208
5229
|
},
|
|
5209
5230
|
"indent": {
|
|
5210
|
-
"$ref": "#/definitions/indent"
|
|
5231
|
+
"$ref": "#/definitions/type._editables.*.indent"
|
|
5211
5232
|
},
|
|
5212
5233
|
"justify": {
|
|
5213
|
-
"$ref": "#/definitions/justify"
|
|
5234
|
+
"$ref": "#/definitions/type._editables.*.justify"
|
|
5214
5235
|
},
|
|
5215
5236
|
"left": {
|
|
5216
|
-
"$ref": "#/definitions/left"
|
|
5237
|
+
"$ref": "#/definitions/type._editables.*.left"
|
|
5217
5238
|
},
|
|
5218
5239
|
"numberedlist": {
|
|
5219
|
-
"$ref": "#/definitions/numberedlist"
|
|
5240
|
+
"$ref": "#/definitions/type._editables.*.numberedlist"
|
|
5220
5241
|
},
|
|
5221
5242
|
"outdent": {
|
|
5222
|
-
"$ref": "#/definitions/outdent"
|
|
5243
|
+
"$ref": "#/definitions/type._editables.*.outdent"
|
|
5223
5244
|
},
|
|
5224
5245
|
"right": {
|
|
5225
|
-
"$ref": "#/definitions/right"
|
|
5246
|
+
"$ref": "#/definitions/type._editables.*.right"
|
|
5226
5247
|
},
|
|
5227
5248
|
"snippet": {
|
|
5228
|
-
"$ref": "#/definitions/snippet"
|
|
5249
|
+
"$ref": "#/definitions/type._editables.*.snippet"
|
|
5229
5250
|
},
|
|
5230
5251
|
"styles": {
|
|
5231
|
-
"$ref": "#/definitions/styles"
|
|
5252
|
+
"$ref": "#/definitions/type._editables.*.styles"
|
|
5232
5253
|
},
|
|
5233
5254
|
"table": {
|
|
5234
|
-
"$ref": "#/definitions/table"
|
|
5255
|
+
"$ref": "#/definitions/type._editables.*.table"
|
|
5235
5256
|
},
|
|
5236
5257
|
"join_above": {
|
|
5237
|
-
"$ref": "#/definitions/join_above"
|
|
5258
|
+
"$ref": "#/definitions/type._editables.*.join_above"
|
|
5238
5259
|
},
|
|
5239
5260
|
"join_below": {
|
|
5240
|
-
"$ref": "#/definitions/join_below"
|
|
5261
|
+
"$ref": "#/definitions/type._editables.*.join_below"
|
|
5241
5262
|
},
|
|
5242
5263
|
"max_length": {
|
|
5243
|
-
"$ref": "#/definitions/max_length"
|
|
5264
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
5244
5265
|
},
|
|
5245
5266
|
"max_length_message": {
|
|
5246
|
-
"$ref": "#/definitions/max_length_message"
|
|
5267
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
5247
5268
|
},
|
|
5248
5269
|
"min_length": {
|
|
5249
|
-
"$ref": "#/definitions/min_length"
|
|
5270
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
5250
5271
|
},
|
|
5251
5272
|
"min_length_message": {
|
|
5252
|
-
"$ref": "#/definitions/min_length_message"
|
|
5273
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
5253
5274
|
},
|
|
5254
5275
|
"pattern": {
|
|
5255
|
-
"$ref": "#/definitions/pattern"
|
|
5276
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
5256
5277
|
},
|
|
5257
5278
|
"pattern_message": {
|
|
5258
|
-
"$ref": "#/definitions/pattern_message"
|
|
5279
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
5259
5280
|
},
|
|
5260
5281
|
"pattern_flags": {
|
|
5261
|
-
"$ref": "#/definitions/pattern_flags"
|
|
5282
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
5262
5283
|
},
|
|
5263
5284
|
"required": {
|
|
5264
|
-
"$ref": "#/definitions/required"
|
|
5285
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
5265
5286
|
},
|
|
5266
5287
|
"required_message": {
|
|
5267
|
-
"$ref": "#/definitions/required_message"
|
|
5288
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
5268
5289
|
},
|
|
5269
5290
|
"empty_type": {
|
|
5270
5291
|
"allOf": [
|
|
5271
5292
|
{
|
|
5272
|
-
"$ref": "#/definitions/empty_type_text"
|
|
5293
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
5273
5294
|
}
|
|
5274
5295
|
]
|
|
5275
5296
|
},
|
|
@@ -5295,7 +5316,7 @@
|
|
|
5295
5316
|
"additionalProperties": false,
|
|
5296
5317
|
"markdownDescription": "Provides an editing interface for HTML markup content."
|
|
5297
5318
|
},
|
|
5298
|
-
"mime_type": {
|
|
5319
|
+
"type._inputs.*.options.mime_type": {
|
|
5299
5320
|
"title": "Mime Type",
|
|
5300
5321
|
"description": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file.",
|
|
5301
5322
|
"type": "string",
|
|
@@ -5306,7 +5327,7 @@
|
|
|
5306
5327
|
],
|
|
5307
5328
|
"markdownDescription": "Sets the format images are converted to prior to upload. The extension of the file is updated to match. Defaults to keeping the mime type of the uploaded file."
|
|
5308
5329
|
},
|
|
5309
|
-
"resize_style": {
|
|
5330
|
+
"type._inputs.*.options.resize_style": {
|
|
5310
5331
|
"title": "Resize Style",
|
|
5311
5332
|
"description": "Sets how uploaded image files are resized with a bounding box defined by width and height prior to upload. Has no effect when selecting existing images, or if width and height are unset.",
|
|
5312
5333
|
"default": "contain",
|
|
@@ -5319,33 +5340,33 @@
|
|
|
5319
5340
|
],
|
|
5320
5341
|
"markdownDescription": "Sets how uploaded image files are resized with a bounding box defined by width and height prior to upload. Has no effect when selecting existing images, or if width and height are unset."
|
|
5321
5342
|
},
|
|
5322
|
-
"width": {
|
|
5343
|
+
"type._inputs.*.options.width": {
|
|
5323
5344
|
"title": "Width",
|
|
5324
5345
|
"description": "Defines the width of the bounding box used in the image resizing process defined with resize_style.",
|
|
5325
5346
|
"type": "number",
|
|
5326
5347
|
"markdownDescription": "Defines the width of the bounding box used in the image resizing process defined with resize_style."
|
|
5327
5348
|
},
|
|
5328
|
-
"height": {
|
|
5349
|
+
"type._inputs.*.options.height": {
|
|
5329
5350
|
"title": "Height",
|
|
5330
5351
|
"description": "Defines the height of the bounding box used in the image resizing process defined with resize_style.",
|
|
5331
5352
|
"type": "number",
|
|
5332
5353
|
"markdownDescription": "Defines the height of the bounding box used in the image resizing process defined with resize_style."
|
|
5333
5354
|
},
|
|
5334
|
-
"expandable": {
|
|
5355
|
+
"type._inputs.*.options.expandable": {
|
|
5335
5356
|
"title": "Expandable",
|
|
5336
5357
|
"description": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized.",
|
|
5337
5358
|
"default": false,
|
|
5338
5359
|
"type": "boolean",
|
|
5339
5360
|
"markdownDescription": "Controls whether or not images can be upscaled to fit the bounding box during resize prior to upload. Has no effect if files are not resized."
|
|
5340
5361
|
},
|
|
5341
|
-
"image_size_attributes": {
|
|
5362
|
+
"type._inputs.*.options.image_size_attributes": {
|
|
5342
5363
|
"title": "Image Size Attributes",
|
|
5343
5364
|
"description": "Instructs the editor to save `width` and `height` attributes on the image elements. This can prevent pop-in as a page loads.",
|
|
5344
5365
|
"default": true,
|
|
5345
5366
|
"type": "boolean",
|
|
5346
5367
|
"markdownDescription": "Instructs the editor to save `width` and `height` attributes on the image elements. This can prevent pop-in as a page loads."
|
|
5347
5368
|
},
|
|
5348
|
-
"allowed_sources": {
|
|
5369
|
+
"type._inputs.*.options.allowed_sources": {
|
|
5349
5370
|
"title": "Allowed Sources",
|
|
5350
5371
|
"description": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from.",
|
|
5351
5372
|
"type": "array",
|
|
@@ -5354,14 +5375,14 @@
|
|
|
5354
5375
|
},
|
|
5355
5376
|
"markdownDescription": "If you have one or more DAMs connected to your site, you can use this key to list which asset sources can be uploaded to and selected from."
|
|
5356
5377
|
},
|
|
5357
|
-
"prevent_resize_existing_files": {
|
|
5378
|
+
"type._inputs.*.options.prevent_resize_existing_files": {
|
|
5358
5379
|
"title": "Prevent Resize Existing Files",
|
|
5359
5380
|
"description": "Enable to skip the image resizing process configured for this input when selecting existing images.",
|
|
5360
5381
|
"default": false,
|
|
5361
5382
|
"type": "boolean",
|
|
5362
5383
|
"markdownDescription": "Enable to skip the image resizing process configured for this input when selecting existing images."
|
|
5363
5384
|
},
|
|
5364
|
-
"sizes": {
|
|
5385
|
+
"type._inputs.*.options.sizes": {
|
|
5365
5386
|
"title": "Sizes",
|
|
5366
5387
|
"description": "Definitions for creating additional images of different sizes when uploading or selecting existing files.",
|
|
5367
5388
|
"type": "array",
|
|
@@ -5436,198 +5457,198 @@
|
|
|
5436
5457
|
"paths.uploads_use_relative_path": {
|
|
5437
5458
|
"type": "boolean"
|
|
5438
5459
|
},
|
|
5439
|
-
"bold": {
|
|
5460
|
+
"type._editables.*.bold": {
|
|
5440
5461
|
"description": "Enables a control to set selected text to bold.",
|
|
5441
5462
|
"default": true,
|
|
5442
5463
|
"type": "boolean",
|
|
5443
5464
|
"markdownDescription": "Enables a control to set selected text to bold."
|
|
5444
5465
|
},
|
|
5445
|
-
"copyformatting": {
|
|
5466
|
+
"type._editables.*.copyformatting": {
|
|
5446
5467
|
"description": "Enables a control to copy formatting from text to other text. Only applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other styles or formatting.",
|
|
5447
5468
|
"default": false,
|
|
5448
5469
|
"type": "boolean",
|
|
5449
5470
|
"markdownDescription": "Enables a control to copy formatting from text to other text. Only applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not copy other styles or formatting."
|
|
5450
5471
|
},
|
|
5451
|
-
"italic": {
|
|
5472
|
+
"type._editables.*.italic": {
|
|
5452
5473
|
"description": "Enables a control to italicize selected text.",
|
|
5453
5474
|
"default": true,
|
|
5454
5475
|
"type": "boolean",
|
|
5455
5476
|
"markdownDescription": "Enables a control to italicize selected text."
|
|
5456
5477
|
},
|
|
5457
|
-
"link": {
|
|
5478
|
+
"type._editables.*.link": {
|
|
5458
5479
|
"description": "Enables a control to create hyperlinks around selected text.",
|
|
5459
5480
|
"default": true,
|
|
5460
5481
|
"type": "boolean",
|
|
5461
5482
|
"markdownDescription": "Enables a control to create hyperlinks around selected text."
|
|
5462
5483
|
},
|
|
5463
|
-
"redo": {
|
|
5484
|
+
"type._editables.*.redo": {
|
|
5464
5485
|
"description": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5465
5486
|
"default": false,
|
|
5466
5487
|
"type": "boolean",
|
|
5467
5488
|
"markdownDescription": "Enables a control to redo recent edits undone with undo. Redo is always enabled through standard OS-specific keyboard shortcuts."
|
|
5468
5489
|
},
|
|
5469
|
-
"removeformat": {
|
|
5490
|
+
"type._editables.*.removeformat": {
|
|
5470
5491
|
"description": "Enables the control to remove formatting from text. Applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles or formatting.",
|
|
5471
5492
|
"default": true,
|
|
5472
5493
|
"type": "boolean",
|
|
5473
5494
|
"markdownDescription": "Enables the control to remove formatting from text. Applies to formatting from `bold`, `italic`, `underline`, `strike`, `subscript`, and `superscript`. Does not remove other styles or formatting."
|
|
5474
5495
|
},
|
|
5475
|
-
"strike": {
|
|
5496
|
+
"type._editables.*.strike": {
|
|
5476
5497
|
"description": "Enables a control to strike selected text.",
|
|
5477
5498
|
"default": false,
|
|
5478
5499
|
"type": "boolean",
|
|
5479
5500
|
"markdownDescription": "Enables a control to strike selected text."
|
|
5480
5501
|
},
|
|
5481
|
-
"subscript": {
|
|
5502
|
+
"type._editables.*.subscript": {
|
|
5482
5503
|
"description": "Enables a control to set selected text to subscript.",
|
|
5483
5504
|
"default": false,
|
|
5484
5505
|
"type": "boolean",
|
|
5485
5506
|
"markdownDescription": "Enables a control to set selected text to subscript."
|
|
5486
5507
|
},
|
|
5487
|
-
"superscript": {
|
|
5508
|
+
"type._editables.*.superscript": {
|
|
5488
5509
|
"description": "Enables a control to set selected text to superscript.",
|
|
5489
5510
|
"default": false,
|
|
5490
5511
|
"type": "boolean",
|
|
5491
5512
|
"markdownDescription": "Enables a control to set selected text to superscript."
|
|
5492
5513
|
},
|
|
5493
|
-
"underline": {
|
|
5514
|
+
"type._editables.*.underline": {
|
|
5494
5515
|
"description": "Enables a control to underline selected text.",
|
|
5495
5516
|
"default": false,
|
|
5496
5517
|
"type": "boolean",
|
|
5497
5518
|
"markdownDescription": "Enables a control to underline selected text."
|
|
5498
5519
|
},
|
|
5499
|
-
"undo": {
|
|
5520
|
+
"type._editables.*.undo": {
|
|
5500
5521
|
"description": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts.",
|
|
5501
5522
|
"default": false,
|
|
5502
5523
|
"type": "boolean",
|
|
5503
5524
|
"markdownDescription": "Enables a control to undo recent edits. Undo is always enabled through standard OS-specific keyboard shortcuts."
|
|
5504
5525
|
},
|
|
5505
|
-
"remove_custom_markup": {
|
|
5526
|
+
"type._editables.*.remove_custom_markup": {
|
|
5506
5527
|
"description": "Defines if the content should be stripped of \"custom markup\". It is recommended to have this option turned on once you have all of your rich text options configured. Having `allow_custom_markup` turned on disables this option. Defaults to false.",
|
|
5507
5528
|
"type": "boolean",
|
|
5508
5529
|
"markdownDescription": "Defines if the content should be stripped of \"custom markup\". It is recommended to have this option turned on once you have all of your rich text options configured. Having `allow_custom_markup` turned on disables this option. Defaults to false."
|
|
5509
5530
|
},
|
|
5510
|
-
"allow_custom_markup": {
|
|
5531
|
+
"type._editables.*.allow_custom_markup": {
|
|
5511
5532
|
"description": "Defines if the content can contain \"custom markup\". It is not recommended to have this option turned on. Defaults to true for non-content editable regions, false otherwise.",
|
|
5512
5533
|
"type": "boolean",
|
|
5513
5534
|
"markdownDescription": "Defines if the content can contain \"custom markup\". It is not recommended to have this option turned on. Defaults to true for non-content editable regions, false otherwise."
|
|
5514
5535
|
},
|
|
5515
|
-
"blockquote": {
|
|
5536
|
+
"type._editables.*.blockquote": {
|
|
5516
5537
|
"description": "Enables a control to wrap blocks of text in block quotes.",
|
|
5517
5538
|
"default": true,
|
|
5518
5539
|
"type": "boolean",
|
|
5519
5540
|
"markdownDescription": "Enables a control to wrap blocks of text in block quotes."
|
|
5520
5541
|
},
|
|
5521
|
-
"bulletedlist": {
|
|
5542
|
+
"type._editables.*.bulletedlist": {
|
|
5522
5543
|
"description": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list.",
|
|
5523
5544
|
"default": true,
|
|
5524
5545
|
"type": "boolean",
|
|
5525
5546
|
"markdownDescription": "Enables a control to insert an unordered list, or to convert selected blocks of text into a unordered list."
|
|
5526
5547
|
},
|
|
5527
|
-
"center": {
|
|
5548
|
+
"type._editables.*.center": {
|
|
5528
5549
|
"description": "Enables a control to center align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
|
|
5529
5550
|
"type": "string",
|
|
5530
5551
|
"markdownDescription": "Enables a control to center align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
|
|
5531
5552
|
},
|
|
5532
|
-
"code_inline": {
|
|
5553
|
+
"type._editables.*.code_inline": {
|
|
5533
5554
|
"description": "Enables a control to create an inline code element, containing any selected text.",
|
|
5534
5555
|
"default": false,
|
|
5535
5556
|
"type": "boolean",
|
|
5536
5557
|
"markdownDescription": "Enables a control to create an inline code element, containing any selected text."
|
|
5537
5558
|
},
|
|
5538
|
-
"code_block": {
|
|
5559
|
+
"type._editables.*.code_block": {
|
|
5539
5560
|
"description": "Enables a control to insert a code block.",
|
|
5540
5561
|
"default": false,
|
|
5541
5562
|
"type": "boolean",
|
|
5542
5563
|
"markdownDescription": "Enables a control to insert a code block."
|
|
5543
5564
|
},
|
|
5544
|
-
"code": {
|
|
5565
|
+
"type._editables.*.code": {
|
|
5545
5566
|
"description": "Enables both block and inline code controls: `code_block` and `code_inline`.",
|
|
5546
5567
|
"default": false,
|
|
5547
5568
|
"type": "boolean",
|
|
5548
5569
|
"markdownDescription": "Enables both block and inline code controls: `code_block` and `code_inline`."
|
|
5549
5570
|
},
|
|
5550
|
-
"embed": {
|
|
5571
|
+
"type._editables.*.embed": {
|
|
5551
5572
|
"description": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor.",
|
|
5552
5573
|
"default": false,
|
|
5553
5574
|
"type": "boolean",
|
|
5554
5575
|
"markdownDescription": "Enables a control to insert a region of raw HTML, including YouTube, Vimeo, Tweets, and other media. Embedded content is sanitized to mitigate XSS risks, which includes removing style tags. Embeds containing script tags are not loaded in the editor."
|
|
5555
5576
|
},
|
|
5556
|
-
"format": {
|
|
5577
|
+
"type._editables.*.format": {
|
|
5557
5578
|
"description": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\").",
|
|
5558
5579
|
"default": "p h1 h2 h3 h4 h5 h6",
|
|
5559
5580
|
"type": "string",
|
|
5560
5581
|
"markdownDescription": "Enables a drop down menu for structured text. Has options for \"p\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\". Set as space separated options (e.g. \"p h1 h2\")."
|
|
5561
5582
|
},
|
|
5562
|
-
"horizontalrule": {
|
|
5583
|
+
"type._editables.*.horizontalrule": {
|
|
5563
5584
|
"description": "Enables a control to insert a horizontal rule.",
|
|
5564
5585
|
"default": false,
|
|
5565
5586
|
"type": "boolean",
|
|
5566
5587
|
"markdownDescription": "Enables a control to insert a horizontal rule."
|
|
5567
5588
|
},
|
|
5568
|
-
"image": {
|
|
5589
|
+
"type._editables.*.image": {
|
|
5569
5590
|
"description": "Enables a control to insert an image. The image can be uploaded, existing or an external link.",
|
|
5570
5591
|
"default": true,
|
|
5571
5592
|
"type": "boolean",
|
|
5572
5593
|
"markdownDescription": "Enables a control to insert an image. The image can be uploaded, existing or an external link."
|
|
5573
5594
|
},
|
|
5574
|
-
"indent": {
|
|
5595
|
+
"type._editables.*.indent": {
|
|
5575
5596
|
"description": "Enables a control to increase indentation for numbered and unordered lists.",
|
|
5576
5597
|
"default": false,
|
|
5577
5598
|
"type": "boolean",
|
|
5578
5599
|
"markdownDescription": "Enables a control to increase indentation for numbered and unordered lists."
|
|
5579
5600
|
},
|
|
5580
|
-
"justify": {
|
|
5601
|
+
"type._editables.*.justify": {
|
|
5581
5602
|
"description": "Enables a control to justify text by toggling a class name for a block of text. The value is the class name the editor should add to justify the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
|
|
5582
5603
|
"type": "string",
|
|
5583
5604
|
"markdownDescription": "Enables a control to justify text by toggling a class name for a block of text. The value is the class name the editor should add to justify the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
|
|
5584
5605
|
},
|
|
5585
|
-
"left": {
|
|
5606
|
+
"type._editables.*.left": {
|
|
5586
5607
|
"description": "Enables a control to left align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
|
|
5587
5608
|
"type": "string",
|
|
5588
5609
|
"markdownDescription": "Enables a control to left align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
|
|
5589
5610
|
},
|
|
5590
|
-
"numberedlist": {
|
|
5611
|
+
"type._editables.*.numberedlist": {
|
|
5591
5612
|
"description": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list.",
|
|
5592
5613
|
"default": true,
|
|
5593
5614
|
"type": "boolean",
|
|
5594
5615
|
"markdownDescription": "Enables a control to insert a numbered list, or to convert selected blocks of text into a numbered list."
|
|
5595
5616
|
},
|
|
5596
|
-
"outdent": {
|
|
5617
|
+
"type._editables.*.outdent": {
|
|
5597
5618
|
"description": "Enables a control to reduce indentation for numbered and unordered lists.",
|
|
5598
5619
|
"default": false,
|
|
5599
5620
|
"type": "boolean",
|
|
5600
5621
|
"markdownDescription": "Enables a control to reduce indentation for numbered and unordered lists."
|
|
5601
5622
|
},
|
|
5602
|
-
"right": {
|
|
5623
|
+
"type._editables.*.right": {
|
|
5603
5624
|
"description": "Enables a control to right align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input.",
|
|
5604
5625
|
"type": "string",
|
|
5605
5626
|
"markdownDescription": "Enables a control to right align text by toggling a class name for a block of text. The value is the class name the editor should add to align the text. The styles for this class need to be listed in the `styles` file to take effect outside of the input."
|
|
5606
5627
|
},
|
|
5607
|
-
"snippet": {
|
|
5628
|
+
"type._editables.*.snippet": {
|
|
5608
5629
|
"description": "Enables a control to insert snippets, if any are available.",
|
|
5609
5630
|
"default": true,
|
|
5610
5631
|
"type": "boolean",
|
|
5611
5632
|
"markdownDescription": "Enables a control to insert snippets, if any are available."
|
|
5612
5633
|
},
|
|
5613
|
-
"styles": {
|
|
5634
|
+
"type._editables.*.styles": {
|
|
5614
5635
|
"description": "Enables a drop down menu for editors to style selected text or blocks or text. Styles are the combination of an element and class name. The value for this option is the path (either source or build output) to the CSS file containing the styles.",
|
|
5615
5636
|
"type": "string",
|
|
5616
5637
|
"markdownDescription": "Enables a drop down menu for editors to style selected text or blocks or text. Styles are the combination of an element and class name. The value for this option is the path (either source or build output) to the CSS file containing the styles."
|
|
5617
5638
|
},
|
|
5618
|
-
"table": {
|
|
5639
|
+
"type._editables.*.table": {
|
|
5619
5640
|
"description": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor.",
|
|
5620
5641
|
"default": false,
|
|
5621
5642
|
"type": "boolean",
|
|
5622
5643
|
"markdownDescription": "Enables a control to insert a table. Further options for table cells are available in the context menu for cells within the editor."
|
|
5623
5644
|
},
|
|
5624
|
-
"join_above": {
|
|
5645
|
+
"type._editables.*.join_above": {
|
|
5625
5646
|
"description": "Enables a control to join the selected block with the block above it.",
|
|
5626
5647
|
"default": false,
|
|
5627
5648
|
"type": "boolean",
|
|
5628
5649
|
"markdownDescription": "Enables a control to join the selected block with the block above it."
|
|
5629
5650
|
},
|
|
5630
|
-
"join_below": {
|
|
5651
|
+
"type._editables.*.join_below": {
|
|
5631
5652
|
"description": "Enables a control to join the selected block with the block below it.",
|
|
5632
5653
|
"default": false,
|
|
5633
5654
|
"type": "boolean",
|
|
@@ -5639,12 +5660,12 @@
|
|
|
5639
5660
|
"type": "object",
|
|
5640
5661
|
"properties": {
|
|
5641
5662
|
"comment": {
|
|
5642
|
-
"$ref": "#/definitions/comment"
|
|
5663
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
5643
5664
|
},
|
|
5644
5665
|
"context": {
|
|
5645
5666
|
"allOf": [
|
|
5646
5667
|
{
|
|
5647
|
-
"$ref": "#/definitions/context"
|
|
5668
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
5648
5669
|
}
|
|
5649
5670
|
]
|
|
5650
5671
|
},
|
|
@@ -5652,28 +5673,28 @@
|
|
|
5652
5673
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
5653
5674
|
"allOf": [
|
|
5654
5675
|
{
|
|
5655
|
-
"$ref": "#/definitions/documentation"
|
|
5676
|
+
"$ref": "#/definitions/type.documentation"
|
|
5656
5677
|
}
|
|
5657
5678
|
],
|
|
5658
5679
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
5659
5680
|
},
|
|
5660
5681
|
"label": {
|
|
5661
|
-
"$ref": "#/definitions/label"
|
|
5682
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
5662
5683
|
},
|
|
5663
5684
|
"hidden": {
|
|
5664
|
-
"$ref": "#/definitions/hidden"
|
|
5685
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
5665
5686
|
},
|
|
5666
5687
|
"disabled": {
|
|
5667
|
-
"$ref": "#/definitions/disabled"
|
|
5688
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
5668
5689
|
},
|
|
5669
5690
|
"instance_value": {
|
|
5670
|
-
"$ref": "#/definitions/instance_value"
|
|
5691
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
5671
5692
|
},
|
|
5672
5693
|
"disable_instance_value_rehydration": {
|
|
5673
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
5694
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
5674
5695
|
},
|
|
5675
5696
|
"cascade": {
|
|
5676
|
-
"$ref": "#/definitions/cascade"
|
|
5697
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
5677
5698
|
},
|
|
5678
5699
|
"type": {
|
|
5679
5700
|
"title": "Type",
|
|
@@ -5690,15 +5711,15 @@
|
|
|
5690
5711
|
"type": "object",
|
|
5691
5712
|
"properties": {
|
|
5692
5713
|
"required": {
|
|
5693
|
-
"$ref": "#/definitions/required"
|
|
5714
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
5694
5715
|
},
|
|
5695
5716
|
"required_message": {
|
|
5696
|
-
"$ref": "#/definitions/required_message"
|
|
5717
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
5697
5718
|
},
|
|
5698
5719
|
"empty_type": {
|
|
5699
5720
|
"allOf": [
|
|
5700
5721
|
{
|
|
5701
|
-
"$ref": "#/definitions/empty_type_text"
|
|
5722
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
5702
5723
|
}
|
|
5703
5724
|
]
|
|
5704
5725
|
},
|
|
@@ -6369,12 +6390,12 @@
|
|
|
6369
6390
|
"type": "object",
|
|
6370
6391
|
"properties": {
|
|
6371
6392
|
"comment": {
|
|
6372
|
-
"$ref": "#/definitions/comment"
|
|
6393
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
6373
6394
|
},
|
|
6374
6395
|
"context": {
|
|
6375
6396
|
"allOf": [
|
|
6376
6397
|
{
|
|
6377
|
-
"$ref": "#/definitions/context"
|
|
6398
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
6378
6399
|
}
|
|
6379
6400
|
]
|
|
6380
6401
|
},
|
|
@@ -6382,28 +6403,28 @@
|
|
|
6382
6403
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
6383
6404
|
"allOf": [
|
|
6384
6405
|
{
|
|
6385
|
-
"$ref": "#/definitions/documentation"
|
|
6406
|
+
"$ref": "#/definitions/type.documentation"
|
|
6386
6407
|
}
|
|
6387
6408
|
],
|
|
6388
6409
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
6389
6410
|
},
|
|
6390
6411
|
"label": {
|
|
6391
|
-
"$ref": "#/definitions/label"
|
|
6412
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
6392
6413
|
},
|
|
6393
6414
|
"hidden": {
|
|
6394
|
-
"$ref": "#/definitions/hidden"
|
|
6415
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
6395
6416
|
},
|
|
6396
6417
|
"disabled": {
|
|
6397
|
-
"$ref": "#/definitions/disabled"
|
|
6418
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
6398
6419
|
},
|
|
6399
6420
|
"instance_value": {
|
|
6400
|
-
"$ref": "#/definitions/instance_value"
|
|
6421
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
6401
6422
|
},
|
|
6402
6423
|
"disable_instance_value_rehydration": {
|
|
6403
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
6424
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
6404
6425
|
},
|
|
6405
6426
|
"cascade": {
|
|
6406
|
-
"$ref": "#/definitions/cascade"
|
|
6427
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
6407
6428
|
},
|
|
6408
6429
|
"type": {
|
|
6409
6430
|
"title": "Type",
|
|
@@ -6417,15 +6438,15 @@
|
|
|
6417
6438
|
"type": "object",
|
|
6418
6439
|
"properties": {
|
|
6419
6440
|
"required": {
|
|
6420
|
-
"$ref": "#/definitions/required"
|
|
6441
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
6421
6442
|
},
|
|
6422
6443
|
"required_message": {
|
|
6423
|
-
"$ref": "#/definitions/required_message"
|
|
6444
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
6424
6445
|
},
|
|
6425
6446
|
"empty_type": {
|
|
6426
6447
|
"allOf": [
|
|
6427
6448
|
{
|
|
6428
|
-
"$ref": "#/definitions/empty_type_text"
|
|
6449
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
6429
6450
|
}
|
|
6430
6451
|
]
|
|
6431
6452
|
}
|
|
@@ -6446,12 +6467,12 @@
|
|
|
6446
6467
|
"type": "object",
|
|
6447
6468
|
"properties": {
|
|
6448
6469
|
"comment": {
|
|
6449
|
-
"$ref": "#/definitions/comment"
|
|
6470
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
6450
6471
|
},
|
|
6451
6472
|
"context": {
|
|
6452
6473
|
"allOf": [
|
|
6453
6474
|
{
|
|
6454
|
-
"$ref": "#/definitions/context"
|
|
6475
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
6455
6476
|
}
|
|
6456
6477
|
]
|
|
6457
6478
|
},
|
|
@@ -6459,28 +6480,28 @@
|
|
|
6459
6480
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
6460
6481
|
"allOf": [
|
|
6461
6482
|
{
|
|
6462
|
-
"$ref": "#/definitions/documentation"
|
|
6483
|
+
"$ref": "#/definitions/type.documentation"
|
|
6463
6484
|
}
|
|
6464
6485
|
],
|
|
6465
6486
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
6466
6487
|
},
|
|
6467
6488
|
"label": {
|
|
6468
|
-
"$ref": "#/definitions/label"
|
|
6489
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
6469
6490
|
},
|
|
6470
6491
|
"hidden": {
|
|
6471
|
-
"$ref": "#/definitions/hidden"
|
|
6492
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
6472
6493
|
},
|
|
6473
6494
|
"disabled": {
|
|
6474
|
-
"$ref": "#/definitions/disabled"
|
|
6495
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
6475
6496
|
},
|
|
6476
6497
|
"instance_value": {
|
|
6477
|
-
"$ref": "#/definitions/instance_value"
|
|
6498
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
6478
6499
|
},
|
|
6479
6500
|
"disable_instance_value_rehydration": {
|
|
6480
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
6501
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
6481
6502
|
},
|
|
6482
6503
|
"cascade": {
|
|
6483
|
-
"$ref": "#/definitions/cascade"
|
|
6504
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
6484
6505
|
},
|
|
6485
6506
|
"type": {
|
|
6486
6507
|
"title": "Type",
|
|
@@ -6498,63 +6519,63 @@
|
|
|
6498
6519
|
"type": "object",
|
|
6499
6520
|
"properties": {
|
|
6500
6521
|
"mime_type": {
|
|
6501
|
-
"$ref": "#/definitions/mime_type"
|
|
6522
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
6502
6523
|
},
|
|
6503
6524
|
"resize_style": {
|
|
6504
|
-
"$ref": "#/definitions/resize_style"
|
|
6525
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
6505
6526
|
},
|
|
6506
6527
|
"width": {
|
|
6507
|
-
"$ref": "#/definitions/width"
|
|
6528
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
6508
6529
|
},
|
|
6509
6530
|
"height": {
|
|
6510
|
-
"$ref": "#/definitions/height"
|
|
6531
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
6511
6532
|
},
|
|
6512
6533
|
"expandable": {
|
|
6513
|
-
"$ref": "#/definitions/expandable"
|
|
6534
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
6514
6535
|
},
|
|
6515
6536
|
"image_size_attributes": {
|
|
6516
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
6537
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
6517
6538
|
},
|
|
6518
6539
|
"allowed_sources": {
|
|
6519
|
-
"$ref": "#/definitions/allowed_sources"
|
|
6540
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
6520
6541
|
},
|
|
6521
6542
|
"prevent_resize_existing_files": {
|
|
6522
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
6543
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
6523
6544
|
},
|
|
6524
6545
|
"sizes": {
|
|
6525
|
-
"$ref": "#/definitions/sizes"
|
|
6546
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
6526
6547
|
},
|
|
6527
6548
|
"max_length": {
|
|
6528
|
-
"$ref": "#/definitions/max_length"
|
|
6549
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
6529
6550
|
},
|
|
6530
6551
|
"max_length_message": {
|
|
6531
|
-
"$ref": "#/definitions/max_length_message"
|
|
6552
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
6532
6553
|
},
|
|
6533
6554
|
"min_length": {
|
|
6534
|
-
"$ref": "#/definitions/min_length"
|
|
6555
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
6535
6556
|
},
|
|
6536
6557
|
"min_length_message": {
|
|
6537
|
-
"$ref": "#/definitions/min_length_message"
|
|
6558
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
6538
6559
|
},
|
|
6539
6560
|
"pattern": {
|
|
6540
|
-
"$ref": "#/definitions/pattern"
|
|
6561
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
6541
6562
|
},
|
|
6542
6563
|
"pattern_message": {
|
|
6543
|
-
"$ref": "#/definitions/pattern_message"
|
|
6564
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
6544
6565
|
},
|
|
6545
6566
|
"pattern_flags": {
|
|
6546
|
-
"$ref": "#/definitions/pattern_flags"
|
|
6567
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
6547
6568
|
},
|
|
6548
6569
|
"required": {
|
|
6549
|
-
"$ref": "#/definitions/required"
|
|
6570
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
6550
6571
|
},
|
|
6551
6572
|
"required_message": {
|
|
6552
|
-
"$ref": "#/definitions/required_message"
|
|
6573
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
6553
6574
|
},
|
|
6554
6575
|
"empty_type": {
|
|
6555
6576
|
"allOf": [
|
|
6556
6577
|
{
|
|
6557
|
-
"$ref": "#/definitions/empty_type_text"
|
|
6578
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
6558
6579
|
}
|
|
6559
6580
|
]
|
|
6560
6581
|
},
|
|
@@ -6566,22 +6587,22 @@
|
|
|
6566
6587
|
]
|
|
6567
6588
|
},
|
|
6568
6589
|
"accepts_mime_types": {
|
|
6569
|
-
"$ref": "#/definitions/accepts_mime_types"
|
|
6590
|
+
"$ref": "#/definitions/type._inputs.*.options.accepts_mime_types"
|
|
6570
6591
|
},
|
|
6571
6592
|
"max_file_size": {
|
|
6572
|
-
"$ref": "#/definitions/max_file_size"
|
|
6593
|
+
"$ref": "#/definitions/type._inputs.*.options.max_file_size"
|
|
6573
6594
|
},
|
|
6574
6595
|
"max_file_size_message": {
|
|
6575
|
-
"$ref": "#/definitions/max_file_size_message"
|
|
6596
|
+
"$ref": "#/definitions/type._inputs.*.options.max_file_size_message"
|
|
6576
6597
|
},
|
|
6577
6598
|
"disable_upload_file": {
|
|
6578
|
-
"$ref": "#/definitions/disable_upload_file"
|
|
6599
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_upload_file"
|
|
6579
6600
|
},
|
|
6580
6601
|
"disable_direct_input": {
|
|
6581
|
-
"$ref": "#/definitions/disable_direct_input"
|
|
6602
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_direct_input"
|
|
6582
6603
|
},
|
|
6583
6604
|
"disable_upload_file_in_file_browser": {
|
|
6584
|
-
"$ref": "#/definitions/disable_upload_file_in_file_browser"
|
|
6605
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_upload_file_in_file_browser"
|
|
6585
6606
|
}
|
|
6586
6607
|
},
|
|
6587
6608
|
"additionalProperties": false,
|
|
@@ -6594,7 +6615,7 @@
|
|
|
6594
6615
|
"additionalProperties": false,
|
|
6595
6616
|
"markdownDescription": "Provides an editing interface for uploading files to your repository or DAM and browsing existing assets."
|
|
6596
6617
|
},
|
|
6597
|
-
"accepts_mime_types": {
|
|
6618
|
+
"type._inputs.*.options.accepts_mime_types": {
|
|
6598
6619
|
"description": "Restricts which file types are available to select or upload to this input. Accepted format is an array or comma-separated string of MIME types. The special value \"*\" means any type is accepted.",
|
|
6599
6620
|
"anyOf": [
|
|
6600
6621
|
{
|
|
@@ -7052,29 +7073,29 @@
|
|
|
7052
7073
|
],
|
|
7053
7074
|
"markdownDescription": "MIME type identifiers for file type validation and handling in CloudCannon."
|
|
7054
7075
|
},
|
|
7055
|
-
"max_file_size": {
|
|
7076
|
+
"type._inputs.*.options.max_file_size": {
|
|
7056
7077
|
"description": "This key defines the maximum file size, in kilobytes, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from uploading a file larger than the specified size. If the Input already contains a file larger than the specified size, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value can be any positive integer.",
|
|
7057
7078
|
"type": "number",
|
|
7058
7079
|
"markdownDescription": "This key defines the maximum file size, in kilobytes, that CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from uploading a file larger than the specified size. If the Input already contains a file larger than the specified size, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes. Value can be any positive integer."
|
|
7059
7080
|
},
|
|
7060
|
-
"max_file_size_message": {
|
|
7081
|
+
"type._inputs.*.options.max_file_size_message": {
|
|
7061
7082
|
"description": "This key defines the message that explains why an Input needs to have a maximum file size. This key requires you to define `options.max_file_size`. This key has no default.",
|
|
7062
7083
|
"type": "string",
|
|
7063
7084
|
"markdownDescription": "This key defines the message that explains why an Input needs to have a maximum file size. This key requires you to define `options.max_file_size`. This key has no default."
|
|
7064
7085
|
},
|
|
7065
|
-
"disable_upload_file": {
|
|
7086
|
+
"type._inputs.*.options.disable_upload_file": {
|
|
7066
7087
|
"description": "Disables the context menu option and the drop area for uploading files.",
|
|
7067
7088
|
"default": false,
|
|
7068
7089
|
"type": "boolean",
|
|
7069
7090
|
"markdownDescription": "Disables the context menu option and the drop area for uploading files."
|
|
7070
7091
|
},
|
|
7071
|
-
"disable_direct_input": {
|
|
7092
|
+
"type._inputs.*.options.disable_direct_input": {
|
|
7072
7093
|
"description": "Prevents typing into the text input, while still allowing context menu options to change the value.",
|
|
7073
7094
|
"default": false,
|
|
7074
7095
|
"type": "boolean",
|
|
7075
7096
|
"markdownDescription": "Prevents typing into the text input, while still allowing context menu options to change the value."
|
|
7076
7097
|
},
|
|
7077
|
-
"disable_upload_file_in_file_browser": {
|
|
7098
|
+
"type._inputs.*.options.disable_upload_file_in_file_browser": {
|
|
7078
7099
|
"description": "Prevents file uploads inside the \"Select existing file/image\" file browser modal window.",
|
|
7079
7100
|
"default": false,
|
|
7080
7101
|
"type": "boolean",
|
|
@@ -7086,12 +7107,12 @@
|
|
|
7086
7107
|
"type": "object",
|
|
7087
7108
|
"properties": {
|
|
7088
7109
|
"comment": {
|
|
7089
|
-
"$ref": "#/definitions/comment"
|
|
7110
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
7090
7111
|
},
|
|
7091
7112
|
"context": {
|
|
7092
7113
|
"allOf": [
|
|
7093
7114
|
{
|
|
7094
|
-
"$ref": "#/definitions/context"
|
|
7115
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
7095
7116
|
}
|
|
7096
7117
|
]
|
|
7097
7118
|
},
|
|
@@ -7099,28 +7120,28 @@
|
|
|
7099
7120
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
7100
7121
|
"allOf": [
|
|
7101
7122
|
{
|
|
7102
|
-
"$ref": "#/definitions/documentation"
|
|
7123
|
+
"$ref": "#/definitions/type.documentation"
|
|
7103
7124
|
}
|
|
7104
7125
|
],
|
|
7105
7126
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
7106
7127
|
},
|
|
7107
7128
|
"label": {
|
|
7108
|
-
"$ref": "#/definitions/label"
|
|
7129
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
7109
7130
|
},
|
|
7110
7131
|
"hidden": {
|
|
7111
|
-
"$ref": "#/definitions/hidden"
|
|
7132
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
7112
7133
|
},
|
|
7113
7134
|
"disabled": {
|
|
7114
|
-
"$ref": "#/definitions/disabled"
|
|
7135
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
7115
7136
|
},
|
|
7116
7137
|
"instance_value": {
|
|
7117
|
-
"$ref": "#/definitions/instance_value"
|
|
7138
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
7118
7139
|
},
|
|
7119
7140
|
"disable_instance_value_rehydration": {
|
|
7120
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
7141
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
7121
7142
|
},
|
|
7122
7143
|
"cascade": {
|
|
7123
|
-
"$ref": "#/definitions/cascade"
|
|
7144
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
7124
7145
|
},
|
|
7125
7146
|
"type": {
|
|
7126
7147
|
"title": "Type",
|
|
@@ -7134,63 +7155,63 @@
|
|
|
7134
7155
|
"type": "object",
|
|
7135
7156
|
"properties": {
|
|
7136
7157
|
"mime_type": {
|
|
7137
|
-
"$ref": "#/definitions/mime_type"
|
|
7158
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
7138
7159
|
},
|
|
7139
7160
|
"resize_style": {
|
|
7140
|
-
"$ref": "#/definitions/resize_style"
|
|
7161
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
7141
7162
|
},
|
|
7142
7163
|
"width": {
|
|
7143
|
-
"$ref": "#/definitions/width"
|
|
7164
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
7144
7165
|
},
|
|
7145
7166
|
"height": {
|
|
7146
|
-
"$ref": "#/definitions/height"
|
|
7167
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
7147
7168
|
},
|
|
7148
7169
|
"expandable": {
|
|
7149
|
-
"$ref": "#/definitions/expandable"
|
|
7170
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
7150
7171
|
},
|
|
7151
7172
|
"image_size_attributes": {
|
|
7152
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
7173
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
7153
7174
|
},
|
|
7154
7175
|
"allowed_sources": {
|
|
7155
|
-
"$ref": "#/definitions/allowed_sources"
|
|
7176
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
7156
7177
|
},
|
|
7157
7178
|
"prevent_resize_existing_files": {
|
|
7158
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
7179
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
7159
7180
|
},
|
|
7160
7181
|
"sizes": {
|
|
7161
|
-
"$ref": "#/definitions/sizes"
|
|
7182
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
7162
7183
|
},
|
|
7163
7184
|
"max_length": {
|
|
7164
|
-
"$ref": "#/definitions/max_length"
|
|
7185
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
7165
7186
|
},
|
|
7166
7187
|
"max_length_message": {
|
|
7167
|
-
"$ref": "#/definitions/max_length_message"
|
|
7188
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
7168
7189
|
},
|
|
7169
7190
|
"min_length": {
|
|
7170
|
-
"$ref": "#/definitions/min_length"
|
|
7191
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
7171
7192
|
},
|
|
7172
7193
|
"min_length_message": {
|
|
7173
|
-
"$ref": "#/definitions/min_length_message"
|
|
7194
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
7174
7195
|
},
|
|
7175
7196
|
"pattern": {
|
|
7176
|
-
"$ref": "#/definitions/pattern"
|
|
7197
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
7177
7198
|
},
|
|
7178
7199
|
"pattern_message": {
|
|
7179
|
-
"$ref": "#/definitions/pattern_message"
|
|
7200
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
7180
7201
|
},
|
|
7181
7202
|
"pattern_flags": {
|
|
7182
|
-
"$ref": "#/definitions/pattern_flags"
|
|
7203
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
7183
7204
|
},
|
|
7184
7205
|
"required": {
|
|
7185
|
-
"$ref": "#/definitions/required"
|
|
7206
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
7186
7207
|
},
|
|
7187
7208
|
"required_message": {
|
|
7188
|
-
"$ref": "#/definitions/required_message"
|
|
7209
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
7189
7210
|
},
|
|
7190
7211
|
"empty_type": {
|
|
7191
7212
|
"allOf": [
|
|
7192
7213
|
{
|
|
7193
|
-
"$ref": "#/definitions/empty_type_text"
|
|
7214
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
7194
7215
|
}
|
|
7195
7216
|
]
|
|
7196
7217
|
},
|
|
@@ -7202,22 +7223,22 @@
|
|
|
7202
7223
|
]
|
|
7203
7224
|
},
|
|
7204
7225
|
"accepts_mime_types": {
|
|
7205
|
-
"$ref": "#/definitions/accepts_mime_types"
|
|
7226
|
+
"$ref": "#/definitions/type._inputs.*.options.accepts_mime_types"
|
|
7206
7227
|
},
|
|
7207
7228
|
"max_file_size": {
|
|
7208
|
-
"$ref": "#/definitions/max_file_size"
|
|
7229
|
+
"$ref": "#/definitions/type._inputs.*.options.max_file_size"
|
|
7209
7230
|
},
|
|
7210
7231
|
"max_file_size_message": {
|
|
7211
|
-
"$ref": "#/definitions/max_file_size_message"
|
|
7232
|
+
"$ref": "#/definitions/type._inputs.*.options.max_file_size_message"
|
|
7212
7233
|
},
|
|
7213
7234
|
"disable_upload_file": {
|
|
7214
|
-
"$ref": "#/definitions/disable_upload_file"
|
|
7235
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_upload_file"
|
|
7215
7236
|
},
|
|
7216
7237
|
"disable_direct_input": {
|
|
7217
|
-
"$ref": "#/definitions/disable_direct_input"
|
|
7238
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_direct_input"
|
|
7218
7239
|
},
|
|
7219
7240
|
"disable_upload_file_in_file_browser": {
|
|
7220
|
-
"$ref": "#/definitions/disable_upload_file_in_file_browser"
|
|
7241
|
+
"$ref": "#/definitions/type._inputs.*.options.disable_upload_file_in_file_browser"
|
|
7221
7242
|
},
|
|
7222
7243
|
"hide_link_to_file": {
|
|
7223
7244
|
"description": "Hides the options to link to an existing file, and upload a new file. This does not prevent typing a file path in the input.",
|
|
@@ -7260,12 +7281,12 @@
|
|
|
7260
7281
|
"type": "object",
|
|
7261
7282
|
"properties": {
|
|
7262
7283
|
"comment": {
|
|
7263
|
-
"$ref": "#/definitions/comment"
|
|
7284
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
7264
7285
|
},
|
|
7265
7286
|
"context": {
|
|
7266
7287
|
"allOf": [
|
|
7267
7288
|
{
|
|
7268
|
-
"$ref": "#/definitions/context"
|
|
7289
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
7269
7290
|
}
|
|
7270
7291
|
]
|
|
7271
7292
|
},
|
|
@@ -7273,28 +7294,28 @@
|
|
|
7273
7294
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
7274
7295
|
"allOf": [
|
|
7275
7296
|
{
|
|
7276
|
-
"$ref": "#/definitions/documentation"
|
|
7297
|
+
"$ref": "#/definitions/type.documentation"
|
|
7277
7298
|
}
|
|
7278
7299
|
],
|
|
7279
7300
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
7280
7301
|
},
|
|
7281
7302
|
"label": {
|
|
7282
|
-
"$ref": "#/definitions/label"
|
|
7303
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
7283
7304
|
},
|
|
7284
7305
|
"hidden": {
|
|
7285
|
-
"$ref": "#/definitions/hidden"
|
|
7306
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
7286
7307
|
},
|
|
7287
7308
|
"disabled": {
|
|
7288
|
-
"$ref": "#/definitions/disabled"
|
|
7309
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
7289
7310
|
},
|
|
7290
7311
|
"instance_value": {
|
|
7291
|
-
"$ref": "#/definitions/instance_value"
|
|
7312
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
7292
7313
|
},
|
|
7293
7314
|
"disable_instance_value_rehydration": {
|
|
7294
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
7315
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
7295
7316
|
},
|
|
7296
7317
|
"cascade": {
|
|
7297
|
-
"$ref": "#/definitions/cascade"
|
|
7318
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
7298
7319
|
},
|
|
7299
7320
|
"type": {
|
|
7300
7321
|
"title": "Type",
|
|
@@ -7308,10 +7329,10 @@
|
|
|
7308
7329
|
"type": "object",
|
|
7309
7330
|
"properties": {
|
|
7310
7331
|
"required": {
|
|
7311
|
-
"$ref": "#/definitions/required"
|
|
7332
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
7312
7333
|
},
|
|
7313
7334
|
"required_message": {
|
|
7314
|
-
"$ref": "#/definitions/required_message"
|
|
7335
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
7315
7336
|
},
|
|
7316
7337
|
"preview": {
|
|
7317
7338
|
"allOf": [
|
|
@@ -7328,48 +7349,48 @@
|
|
|
7328
7349
|
]
|
|
7329
7350
|
},
|
|
7330
7351
|
"allow_create": {
|
|
7331
|
-
"$ref": "#/definitions/allow_create"
|
|
7352
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_create"
|
|
7332
7353
|
},
|
|
7333
7354
|
"allow_empty": {
|
|
7334
|
-
"$ref": "#/definitions/allow_empty"
|
|
7355
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_empty"
|
|
7335
7356
|
},
|
|
7336
7357
|
"values": {
|
|
7337
|
-
"$ref": "#/definitions/values"
|
|
7358
|
+
"$ref": "#/definitions/type._inputs.*.options.values"
|
|
7338
7359
|
},
|
|
7339
7360
|
"value_key": {
|
|
7340
|
-
"$ref": "#/definitions/value_key"
|
|
7361
|
+
"$ref": "#/definitions/type._inputs.*.options.value_key"
|
|
7341
7362
|
},
|
|
7342
7363
|
"view": {
|
|
7343
|
-
"$ref": "#/definitions/view"
|
|
7364
|
+
"$ref": "#/definitions/type._inputs.*.options.view"
|
|
7344
7365
|
},
|
|
7345
7366
|
"picker_view": {
|
|
7346
|
-
"$ref": "#/definitions/picker_view"
|
|
7367
|
+
"$ref": "#/definitions/type._inputs.*.options.picker_view"
|
|
7347
7368
|
},
|
|
7348
7369
|
"max_length": {
|
|
7349
|
-
"$ref": "#/definitions/max_length"
|
|
7370
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
7350
7371
|
},
|
|
7351
7372
|
"max_length_message": {
|
|
7352
|
-
"$ref": "#/definitions/max_length_message"
|
|
7373
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
7353
7374
|
},
|
|
7354
7375
|
"min_length": {
|
|
7355
|
-
"$ref": "#/definitions/min_length"
|
|
7376
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
7356
7377
|
},
|
|
7357
7378
|
"min_length_message": {
|
|
7358
|
-
"$ref": "#/definitions/min_length_message"
|
|
7379
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
7359
7380
|
},
|
|
7360
7381
|
"pattern": {
|
|
7361
|
-
"$ref": "#/definitions/pattern"
|
|
7382
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
7362
7383
|
},
|
|
7363
7384
|
"pattern_message": {
|
|
7364
|
-
"$ref": "#/definitions/pattern_message"
|
|
7385
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
7365
7386
|
},
|
|
7366
7387
|
"pattern_flags": {
|
|
7367
|
-
"$ref": "#/definitions/pattern_flags"
|
|
7388
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
7368
7389
|
},
|
|
7369
7390
|
"empty_type": {
|
|
7370
7391
|
"allOf": [
|
|
7371
7392
|
{
|
|
7372
|
-
"$ref": "#/definitions/empty_type_text"
|
|
7393
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
7373
7394
|
}
|
|
7374
7395
|
]
|
|
7375
7396
|
}
|
|
@@ -7389,46 +7410,22 @@
|
|
|
7389
7410
|
"type": "object",
|
|
7390
7411
|
"properties": {
|
|
7391
7412
|
"text": {
|
|
7392
|
-
"
|
|
7393
|
-
{
|
|
7394
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7395
|
-
}
|
|
7396
|
-
]
|
|
7413
|
+
"$ref": "#/definitions/type.preview.text"
|
|
7397
7414
|
},
|
|
7398
7415
|
"subtext": {
|
|
7399
|
-
"
|
|
7400
|
-
{
|
|
7401
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7402
|
-
}
|
|
7403
|
-
]
|
|
7416
|
+
"$ref": "#/definitions/type.preview.subtext"
|
|
7404
7417
|
},
|
|
7405
7418
|
"image": {
|
|
7406
|
-
"
|
|
7407
|
-
{
|
|
7408
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7409
|
-
}
|
|
7410
|
-
]
|
|
7419
|
+
"$ref": "#/definitions/type.preview.image"
|
|
7411
7420
|
},
|
|
7412
7421
|
"icon": {
|
|
7413
|
-
"
|
|
7414
|
-
{
|
|
7415
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7416
|
-
}
|
|
7417
|
-
]
|
|
7422
|
+
"$ref": "#/definitions/type.preview.icon"
|
|
7418
7423
|
},
|
|
7419
7424
|
"icon_color": {
|
|
7420
|
-
"
|
|
7421
|
-
{
|
|
7422
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7423
|
-
}
|
|
7424
|
-
]
|
|
7425
|
+
"$ref": "#/definitions/type.preview.icon_color"
|
|
7425
7426
|
},
|
|
7426
7427
|
"icon_background_color": {
|
|
7427
|
-
"
|
|
7428
|
-
{
|
|
7429
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7430
|
-
}
|
|
7431
|
-
]
|
|
7428
|
+
"$ref": "#/definitions/type.preview.icon_background_color"
|
|
7432
7429
|
},
|
|
7433
7430
|
"tags": {
|
|
7434
7431
|
"$ref": "#/definitions/preview.tags"
|
|
@@ -7446,6 +7443,48 @@
|
|
|
7446
7443
|
},
|
|
7447
7444
|
"additionalProperties": false
|
|
7448
7445
|
},
|
|
7446
|
+
"type.preview.text": {
|
|
7447
|
+
"allOf": [
|
|
7448
|
+
{
|
|
7449
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7450
|
+
}
|
|
7451
|
+
]
|
|
7452
|
+
},
|
|
7453
|
+
"type.preview.subtext": {
|
|
7454
|
+
"allOf": [
|
|
7455
|
+
{
|
|
7456
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7457
|
+
}
|
|
7458
|
+
]
|
|
7459
|
+
},
|
|
7460
|
+
"type.preview.image": {
|
|
7461
|
+
"allOf": [
|
|
7462
|
+
{
|
|
7463
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7464
|
+
}
|
|
7465
|
+
]
|
|
7466
|
+
},
|
|
7467
|
+
"type.preview.icon": {
|
|
7468
|
+
"allOf": [
|
|
7469
|
+
{
|
|
7470
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7471
|
+
}
|
|
7472
|
+
]
|
|
7473
|
+
},
|
|
7474
|
+
"type.preview.icon_color": {
|
|
7475
|
+
"allOf": [
|
|
7476
|
+
{
|
|
7477
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7478
|
+
}
|
|
7479
|
+
]
|
|
7480
|
+
},
|
|
7481
|
+
"type.preview.icon_background_color": {
|
|
7482
|
+
"allOf": [
|
|
7483
|
+
{
|
|
7484
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7485
|
+
}
|
|
7486
|
+
]
|
|
7487
|
+
},
|
|
7449
7488
|
"preview.tags": {
|
|
7450
7489
|
"type": "array",
|
|
7451
7490
|
"items": {
|
|
@@ -7462,39 +7501,19 @@
|
|
|
7462
7501
|
"type": "object",
|
|
7463
7502
|
"properties": {
|
|
7464
7503
|
"text": {
|
|
7465
|
-
"
|
|
7466
|
-
{
|
|
7467
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7468
|
-
}
|
|
7469
|
-
]
|
|
7504
|
+
"$ref": "#/definitions/type.preview.text"
|
|
7470
7505
|
},
|
|
7471
7506
|
"image": {
|
|
7472
|
-
"
|
|
7473
|
-
{
|
|
7474
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7475
|
-
}
|
|
7476
|
-
]
|
|
7507
|
+
"$ref": "#/definitions/type.preview.image"
|
|
7477
7508
|
},
|
|
7478
7509
|
"icon": {
|
|
7479
|
-
"
|
|
7480
|
-
{
|
|
7481
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7482
|
-
}
|
|
7483
|
-
]
|
|
7510
|
+
"$ref": "#/definitions/type.preview.icon"
|
|
7484
7511
|
},
|
|
7485
7512
|
"icon_color": {
|
|
7486
|
-
"
|
|
7487
|
-
{
|
|
7488
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7489
|
-
}
|
|
7490
|
-
]
|
|
7513
|
+
"$ref": "#/definitions/type.preview.icon_color"
|
|
7491
7514
|
},
|
|
7492
7515
|
"icon_background_color": {
|
|
7493
|
-
"
|
|
7494
|
-
{
|
|
7495
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7496
|
-
}
|
|
7497
|
-
]
|
|
7516
|
+
"$ref": "#/definitions/type.preview.icon_background_color"
|
|
7498
7517
|
}
|
|
7499
7518
|
},
|
|
7500
7519
|
"additionalProperties": false
|
|
@@ -7503,49 +7522,25 @@
|
|
|
7503
7522
|
"type": "object",
|
|
7504
7523
|
"properties": {
|
|
7505
7524
|
"text": {
|
|
7506
|
-
"
|
|
7507
|
-
{
|
|
7508
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7509
|
-
}
|
|
7510
|
-
]
|
|
7525
|
+
"$ref": "#/definitions/type.preview.text"
|
|
7511
7526
|
},
|
|
7512
7527
|
"image": {
|
|
7513
|
-
"
|
|
7514
|
-
{
|
|
7515
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7516
|
-
}
|
|
7517
|
-
]
|
|
7528
|
+
"$ref": "#/definitions/type.preview.image"
|
|
7518
7529
|
},
|
|
7519
7530
|
"icon": {
|
|
7520
|
-
"
|
|
7521
|
-
{
|
|
7522
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7523
|
-
}
|
|
7524
|
-
]
|
|
7531
|
+
"$ref": "#/definitions/type.preview.icon"
|
|
7525
7532
|
},
|
|
7526
7533
|
"icon_color": {
|
|
7527
|
-
"
|
|
7528
|
-
{
|
|
7529
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7530
|
-
}
|
|
7531
|
-
]
|
|
7534
|
+
"$ref": "#/definitions/type.preview.icon_color"
|
|
7532
7535
|
},
|
|
7533
7536
|
"icon_background_color": {
|
|
7534
|
-
"
|
|
7535
|
-
{
|
|
7536
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7537
|
-
}
|
|
7538
|
-
]
|
|
7537
|
+
"$ref": "#/definitions/type.preview.icon_background_color"
|
|
7539
7538
|
},
|
|
7540
7539
|
"fit": {
|
|
7541
7540
|
"$ref": "#/definitions/preview.gallery.fit"
|
|
7542
7541
|
},
|
|
7543
7542
|
"background_color": {
|
|
7544
|
-
"
|
|
7545
|
-
{
|
|
7546
|
-
"$ref": "#/definitions/PreviewEntries"
|
|
7547
|
-
}
|
|
7548
|
-
]
|
|
7543
|
+
"$ref": "#/definitions/type.preview.gallery.background_color"
|
|
7549
7544
|
}
|
|
7550
7545
|
},
|
|
7551
7546
|
"additionalProperties": false
|
|
@@ -7560,19 +7555,26 @@
|
|
|
7560
7555
|
"cover-top"
|
|
7561
7556
|
]
|
|
7562
7557
|
},
|
|
7563
|
-
"
|
|
7558
|
+
"type.preview.gallery.background_color": {
|
|
7559
|
+
"allOf": [
|
|
7560
|
+
{
|
|
7561
|
+
"$ref": "#/definitions/PreviewEntries"
|
|
7562
|
+
}
|
|
7563
|
+
]
|
|
7564
|
+
},
|
|
7565
|
+
"type._inputs.*.options.allow_create": {
|
|
7564
7566
|
"description": "Allows new text values to be created at edit time.",
|
|
7565
7567
|
"default": false,
|
|
7566
7568
|
"type": "boolean",
|
|
7567
7569
|
"markdownDescription": "Allows new text values to be created at edit time."
|
|
7568
7570
|
},
|
|
7569
|
-
"allow_empty": {
|
|
7571
|
+
"type._inputs.*.options.allow_empty": {
|
|
7570
7572
|
"description": "Provides an empty option alongside the options provided by values.",
|
|
7571
7573
|
"default": true,
|
|
7572
7574
|
"type": "boolean",
|
|
7573
7575
|
"markdownDescription": "Provides an empty option alongside the options provided by values."
|
|
7574
7576
|
},
|
|
7575
|
-
"values": {
|
|
7577
|
+
"type._inputs.*.options.values": {
|
|
7576
7578
|
"description": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors).",
|
|
7577
7579
|
"anyOf": [
|
|
7578
7580
|
{
|
|
@@ -7626,12 +7628,12 @@
|
|
|
7626
7628
|
],
|
|
7627
7629
|
"markdownDescription": "Defines the values available to choose from. Optional, defaults to fetching values from the naming convention (e.g. colors or my_colors for data set colors)."
|
|
7628
7630
|
},
|
|
7629
|
-
"value_key": {
|
|
7631
|
+
"type._inputs.*.options.value_key": {
|
|
7630
7632
|
"description": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types.",
|
|
7631
7633
|
"type": "string",
|
|
7632
7634
|
"markdownDescription": "Defines the key used for mapping between saved values and objects in values. This changes how the input saves selected values to match. Defaults to checking for \"id\", \"uuid\", \"path\", \"title\", then \"name\". Has no effect unless values is an array of objects, the key is used instead for objects, and the value itself is used for primitive types."
|
|
7633
7635
|
},
|
|
7634
|
-
"view": {
|
|
7636
|
+
"type._inputs.*.options.view": {
|
|
7635
7637
|
"description": "Controls how selected items are rendered.",
|
|
7636
7638
|
"type": "string",
|
|
7637
7639
|
"enum": [
|
|
@@ -7642,7 +7644,7 @@
|
|
|
7642
7644
|
],
|
|
7643
7645
|
"markdownDescription": "Controls how selected items are rendered."
|
|
7644
7646
|
},
|
|
7645
|
-
"picker_view": {
|
|
7647
|
+
"type._inputs.*.options.picker_view": {
|
|
7646
7648
|
"description": "Controls how selectable options are rendered.",
|
|
7647
7649
|
"type": "string",
|
|
7648
7650
|
"enum": [
|
|
@@ -7659,12 +7661,12 @@
|
|
|
7659
7661
|
"type": "object",
|
|
7660
7662
|
"properties": {
|
|
7661
7663
|
"comment": {
|
|
7662
|
-
"$ref": "#/definitions/comment"
|
|
7664
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
7663
7665
|
},
|
|
7664
7666
|
"context": {
|
|
7665
7667
|
"allOf": [
|
|
7666
7668
|
{
|
|
7667
|
-
"$ref": "#/definitions/context"
|
|
7669
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
7668
7670
|
}
|
|
7669
7671
|
]
|
|
7670
7672
|
},
|
|
@@ -7672,28 +7674,28 @@
|
|
|
7672
7674
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
7673
7675
|
"allOf": [
|
|
7674
7676
|
{
|
|
7675
|
-
"$ref": "#/definitions/documentation"
|
|
7677
|
+
"$ref": "#/definitions/type.documentation"
|
|
7676
7678
|
}
|
|
7677
7679
|
],
|
|
7678
7680
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
7679
7681
|
},
|
|
7680
7682
|
"label": {
|
|
7681
|
-
"$ref": "#/definitions/label"
|
|
7683
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
7682
7684
|
},
|
|
7683
7685
|
"hidden": {
|
|
7684
|
-
"$ref": "#/definitions/hidden"
|
|
7686
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
7685
7687
|
},
|
|
7686
7688
|
"disabled": {
|
|
7687
|
-
"$ref": "#/definitions/disabled"
|
|
7689
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
7688
7690
|
},
|
|
7689
7691
|
"instance_value": {
|
|
7690
|
-
"$ref": "#/definitions/instance_value"
|
|
7692
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
7691
7693
|
},
|
|
7692
7694
|
"disable_instance_value_rehydration": {
|
|
7693
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
7695
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
7694
7696
|
},
|
|
7695
7697
|
"cascade": {
|
|
7696
|
-
"$ref": "#/definitions/cascade"
|
|
7698
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
7697
7699
|
},
|
|
7698
7700
|
"type": {
|
|
7699
7701
|
"title": "Type",
|
|
@@ -7707,10 +7709,10 @@
|
|
|
7707
7709
|
"type": "object",
|
|
7708
7710
|
"properties": {
|
|
7709
7711
|
"required": {
|
|
7710
|
-
"$ref": "#/definitions/required"
|
|
7712
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
7711
7713
|
},
|
|
7712
7714
|
"required_message": {
|
|
7713
|
-
"$ref": "#/definitions/required_message"
|
|
7715
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
7714
7716
|
},
|
|
7715
7717
|
"preview": {
|
|
7716
7718
|
"allOf": [
|
|
@@ -7727,45 +7729,45 @@
|
|
|
7727
7729
|
]
|
|
7728
7730
|
},
|
|
7729
7731
|
"allow_create": {
|
|
7730
|
-
"$ref": "#/definitions/allow_create"
|
|
7732
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_create"
|
|
7731
7733
|
},
|
|
7732
7734
|
"allow_empty": {
|
|
7733
|
-
"$ref": "#/definitions/allow_empty"
|
|
7735
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_empty"
|
|
7734
7736
|
},
|
|
7735
7737
|
"values": {
|
|
7736
|
-
"$ref": "#/definitions/values"
|
|
7738
|
+
"$ref": "#/definitions/type._inputs.*.options.values"
|
|
7737
7739
|
},
|
|
7738
7740
|
"value_key": {
|
|
7739
|
-
"$ref": "#/definitions/value_key"
|
|
7741
|
+
"$ref": "#/definitions/type._inputs.*.options.value_key"
|
|
7740
7742
|
},
|
|
7741
7743
|
"view": {
|
|
7742
|
-
"$ref": "#/definitions/view"
|
|
7744
|
+
"$ref": "#/definitions/type._inputs.*.options.view"
|
|
7743
7745
|
},
|
|
7744
7746
|
"picker_view": {
|
|
7745
|
-
"$ref": "#/definitions/picker_view"
|
|
7747
|
+
"$ref": "#/definitions/type._inputs.*.options.picker_view"
|
|
7746
7748
|
},
|
|
7747
7749
|
"max_items": {
|
|
7748
|
-
"$ref": "#/definitions/max_items"
|
|
7750
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items"
|
|
7749
7751
|
},
|
|
7750
7752
|
"max_items_message": {
|
|
7751
|
-
"$ref": "#/definitions/max_items_message"
|
|
7753
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items_message"
|
|
7752
7754
|
},
|
|
7753
7755
|
"min_items": {
|
|
7754
|
-
"$ref": "#/definitions/min_items"
|
|
7756
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items"
|
|
7755
7757
|
},
|
|
7756
7758
|
"min_items_message": {
|
|
7757
|
-
"$ref": "#/definitions/min_items_message"
|
|
7759
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items_message"
|
|
7758
7760
|
},
|
|
7759
7761
|
"unique_on": {
|
|
7760
|
-
"$ref": "#/definitions/unique_on"
|
|
7762
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on"
|
|
7761
7763
|
},
|
|
7762
7764
|
"unique_on_message": {
|
|
7763
|
-
"$ref": "#/definitions/unique_on_message"
|
|
7765
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on_message"
|
|
7764
7766
|
},
|
|
7765
7767
|
"empty_type": {
|
|
7766
7768
|
"allOf": [
|
|
7767
7769
|
{
|
|
7768
|
-
"$ref": "#/definitions/empty_type_array"
|
|
7770
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_array"
|
|
7769
7771
|
}
|
|
7770
7772
|
]
|
|
7771
7773
|
}
|
|
@@ -7780,37 +7782,37 @@
|
|
|
7780
7782
|
"additionalProperties": false,
|
|
7781
7783
|
"markdownDescription": "Provides an editing interface for data with multiple predefined options. Multiselect inputs allow several values."
|
|
7782
7784
|
},
|
|
7783
|
-
"max_items": {
|
|
7785
|
+
"type._inputs.*.options.max_items": {
|
|
7784
7786
|
"description": "This key defines the maximum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from adding more items to this Input. If the Input already contains more items, CloudCannon will require you to remove items until the Input contains a valid number to save your changes, or discard your unsaved changes.",
|
|
7785
7787
|
"type": "number",
|
|
7786
7788
|
"markdownDescription": "This key defines the maximum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from adding more items to this Input. If the Input already contains more items, CloudCannon will require you to remove items until the Input contains a valid number to save your changes, or discard your unsaved changes."
|
|
7787
7789
|
},
|
|
7788
|
-
"max_items_message": {
|
|
7790
|
+
"type._inputs.*.options.max_items_message": {
|
|
7789
7791
|
"description": "This key defines the message that explains why an Input needs to have a maximum number of items. This key requires you to define `options.max_items`.",
|
|
7790
7792
|
"type": "string",
|
|
7791
7793
|
"markdownDescription": "This key defines the message that explains why an Input needs to have a maximum number of items. This key requires you to define `options.max_items`."
|
|
7792
7794
|
},
|
|
7793
|
-
"min_items": {
|
|
7795
|
+
"type._inputs.*.options.min_items": {
|
|
7794
7796
|
"description": "This key defines the minimum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from removing items from this Input below this value. If the Input already contains fewer items, CloudCannon will require you to add items until the Input contains a valid number to save your changes, or discard your unsaved changes.",
|
|
7795
7797
|
"type": "number",
|
|
7796
7798
|
"markdownDescription": "This key defines the minimum number of items CloudCannon will allow in an Input. When configured, CloudCannon will prevent you from removing items from this Input below this value. If the Input already contains fewer items, CloudCannon will require you to add items until the Input contains a valid number to save your changes, or discard your unsaved changes."
|
|
7797
7799
|
},
|
|
7798
|
-
"min_items_message": {
|
|
7800
|
+
"type._inputs.*.options.min_items_message": {
|
|
7799
7801
|
"description": "This key defines the message that explains why an Input needs to have a minimum number of items. This key requires you to define `options.min_items`.",
|
|
7800
7802
|
"type": "string",
|
|
7801
7803
|
"markdownDescription": "This key defines the message that explains why an Input needs to have a minimum number of items. This key requires you to define `options.min_items`."
|
|
7802
7804
|
},
|
|
7803
|
-
"unique_on": {
|
|
7805
|
+
"type._inputs.*.options.unique_on": {
|
|
7804
7806
|
"description": "This key defines the JSON Path selector that CloudCannon should use to determine if the value of an Input is unique. When configured, CloudCannon will require the value of the Input to be unique compared to the value defined on the JSON Path. If the Input already contains a non-unique value, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes.",
|
|
7805
7807
|
"type": "string",
|
|
7806
7808
|
"markdownDescription": "This key defines the JSON Path selector that CloudCannon should use to determine if the value of an Input is unique. When configured, CloudCannon will require the value of the Input to be unique compared to the value defined on the JSON Path. If the Input already contains a non-unique value, CloudCannon will require you to change it to a valid value to save your changes, or discard your unsaved changes."
|
|
7807
7809
|
},
|
|
7808
|
-
"unique_on_message": {
|
|
7810
|
+
"type._inputs.*.options.unique_on_message": {
|
|
7809
7811
|
"description": "This key defines the message that explains why an Input needs to be unique. This key requires you to define `options.unique_on`.",
|
|
7810
7812
|
"type": "string",
|
|
7811
7813
|
"markdownDescription": "This key defines the message that explains why an Input needs to be unique. This key requires you to define `options.unique_on`."
|
|
7812
7814
|
},
|
|
7813
|
-
"empty_type_array": {
|
|
7815
|
+
"type._inputs.*.options.empty_type_array": {
|
|
7814
7816
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
7815
7817
|
"default": "null",
|
|
7816
7818
|
"type": "string",
|
|
@@ -7826,12 +7828,12 @@
|
|
|
7826
7828
|
"type": "object",
|
|
7827
7829
|
"properties": {
|
|
7828
7830
|
"comment": {
|
|
7829
|
-
"$ref": "#/definitions/comment"
|
|
7831
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
7830
7832
|
},
|
|
7831
7833
|
"context": {
|
|
7832
7834
|
"allOf": [
|
|
7833
7835
|
{
|
|
7834
|
-
"$ref": "#/definitions/context"
|
|
7836
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
7835
7837
|
}
|
|
7836
7838
|
]
|
|
7837
7839
|
},
|
|
@@ -7839,28 +7841,28 @@
|
|
|
7839
7841
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
7840
7842
|
"allOf": [
|
|
7841
7843
|
{
|
|
7842
|
-
"$ref": "#/definitions/documentation"
|
|
7844
|
+
"$ref": "#/definitions/type.documentation"
|
|
7843
7845
|
}
|
|
7844
7846
|
],
|
|
7845
7847
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
7846
7848
|
},
|
|
7847
7849
|
"label": {
|
|
7848
|
-
"$ref": "#/definitions/label"
|
|
7850
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
7849
7851
|
},
|
|
7850
7852
|
"hidden": {
|
|
7851
|
-
"$ref": "#/definitions/hidden"
|
|
7853
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
7852
7854
|
},
|
|
7853
7855
|
"disabled": {
|
|
7854
|
-
"$ref": "#/definitions/disabled"
|
|
7856
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
7855
7857
|
},
|
|
7856
7858
|
"instance_value": {
|
|
7857
|
-
"$ref": "#/definitions/instance_value"
|
|
7859
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
7858
7860
|
},
|
|
7859
7861
|
"disable_instance_value_rehydration": {
|
|
7860
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
7862
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
7861
7863
|
},
|
|
7862
7864
|
"cascade": {
|
|
7863
|
-
"$ref": "#/definitions/cascade"
|
|
7865
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
7864
7866
|
},
|
|
7865
7867
|
"type": {
|
|
7866
7868
|
"title": "Type",
|
|
@@ -7874,10 +7876,10 @@
|
|
|
7874
7876
|
"type": "object",
|
|
7875
7877
|
"properties": {
|
|
7876
7878
|
"required": {
|
|
7877
|
-
"$ref": "#/definitions/required"
|
|
7879
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
7878
7880
|
},
|
|
7879
7881
|
"required_message": {
|
|
7880
|
-
"$ref": "#/definitions/required_message"
|
|
7882
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
7881
7883
|
},
|
|
7882
7884
|
"preview": {
|
|
7883
7885
|
"allOf": [
|
|
@@ -7894,45 +7896,45 @@
|
|
|
7894
7896
|
]
|
|
7895
7897
|
},
|
|
7896
7898
|
"allow_empty": {
|
|
7897
|
-
"$ref": "#/definitions/allow_empty"
|
|
7899
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_empty"
|
|
7898
7900
|
},
|
|
7899
7901
|
"values": {
|
|
7900
|
-
"$ref": "#/definitions/values"
|
|
7902
|
+
"$ref": "#/definitions/type._inputs.*.options.values"
|
|
7901
7903
|
},
|
|
7902
7904
|
"value_key": {
|
|
7903
|
-
"$ref": "#/definitions/value_key"
|
|
7905
|
+
"$ref": "#/definitions/type._inputs.*.options.value_key"
|
|
7904
7906
|
},
|
|
7905
7907
|
"view": {
|
|
7906
|
-
"$ref": "#/definitions/view"
|
|
7908
|
+
"$ref": "#/definitions/type._inputs.*.options.view"
|
|
7907
7909
|
},
|
|
7908
7910
|
"picker_view": {
|
|
7909
|
-
"$ref": "#/definitions/picker_view"
|
|
7911
|
+
"$ref": "#/definitions/type._inputs.*.options.picker_view"
|
|
7910
7912
|
},
|
|
7911
7913
|
"max_length": {
|
|
7912
|
-
"$ref": "#/definitions/max_length"
|
|
7914
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length"
|
|
7913
7915
|
},
|
|
7914
7916
|
"max_length_message": {
|
|
7915
|
-
"$ref": "#/definitions/max_length_message"
|
|
7917
|
+
"$ref": "#/definitions/type._inputs.*.options.max_length_message"
|
|
7916
7918
|
},
|
|
7917
7919
|
"min_length": {
|
|
7918
|
-
"$ref": "#/definitions/min_length"
|
|
7920
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length"
|
|
7919
7921
|
},
|
|
7920
7922
|
"min_length_message": {
|
|
7921
|
-
"$ref": "#/definitions/min_length_message"
|
|
7923
|
+
"$ref": "#/definitions/type._inputs.*.options.min_length_message"
|
|
7922
7924
|
},
|
|
7923
7925
|
"pattern": {
|
|
7924
|
-
"$ref": "#/definitions/pattern"
|
|
7926
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern"
|
|
7925
7927
|
},
|
|
7926
7928
|
"pattern_message": {
|
|
7927
|
-
"$ref": "#/definitions/pattern_message"
|
|
7929
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_message"
|
|
7928
7930
|
},
|
|
7929
7931
|
"pattern_flags": {
|
|
7930
|
-
"$ref": "#/definitions/pattern_flags"
|
|
7932
|
+
"$ref": "#/definitions/type._inputs.*.options.pattern_flags"
|
|
7931
7933
|
},
|
|
7932
7934
|
"empty_type": {
|
|
7933
7935
|
"allOf": [
|
|
7934
7936
|
{
|
|
7935
|
-
"$ref": "#/definitions/empty_type_text"
|
|
7937
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_text"
|
|
7936
7938
|
}
|
|
7937
7939
|
]
|
|
7938
7940
|
}
|
|
@@ -7953,12 +7955,12 @@
|
|
|
7953
7955
|
"type": "object",
|
|
7954
7956
|
"properties": {
|
|
7955
7957
|
"comment": {
|
|
7956
|
-
"$ref": "#/definitions/comment"
|
|
7958
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
7957
7959
|
},
|
|
7958
7960
|
"context": {
|
|
7959
7961
|
"allOf": [
|
|
7960
7962
|
{
|
|
7961
|
-
"$ref": "#/definitions/context"
|
|
7963
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
7962
7964
|
}
|
|
7963
7965
|
]
|
|
7964
7966
|
},
|
|
@@ -7966,28 +7968,28 @@
|
|
|
7966
7968
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
7967
7969
|
"allOf": [
|
|
7968
7970
|
{
|
|
7969
|
-
"$ref": "#/definitions/documentation"
|
|
7971
|
+
"$ref": "#/definitions/type.documentation"
|
|
7970
7972
|
}
|
|
7971
7973
|
],
|
|
7972
7974
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
7973
7975
|
},
|
|
7974
7976
|
"label": {
|
|
7975
|
-
"$ref": "#/definitions/label"
|
|
7977
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
7976
7978
|
},
|
|
7977
7979
|
"hidden": {
|
|
7978
|
-
"$ref": "#/definitions/hidden"
|
|
7980
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
7979
7981
|
},
|
|
7980
7982
|
"disabled": {
|
|
7981
|
-
"$ref": "#/definitions/disabled"
|
|
7983
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
7982
7984
|
},
|
|
7983
7985
|
"instance_value": {
|
|
7984
|
-
"$ref": "#/definitions/instance_value"
|
|
7986
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
7985
7987
|
},
|
|
7986
7988
|
"disable_instance_value_rehydration": {
|
|
7987
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
7989
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
7988
7990
|
},
|
|
7989
7991
|
"cascade": {
|
|
7990
|
-
"$ref": "#/definitions/cascade"
|
|
7992
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
7991
7993
|
},
|
|
7992
7994
|
"type": {
|
|
7993
7995
|
"title": "Type",
|
|
@@ -8001,10 +8003,10 @@
|
|
|
8001
8003
|
"type": "object",
|
|
8002
8004
|
"properties": {
|
|
8003
8005
|
"required": {
|
|
8004
|
-
"$ref": "#/definitions/required"
|
|
8006
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
8005
8007
|
},
|
|
8006
8008
|
"required_message": {
|
|
8007
|
-
"$ref": "#/definitions/required_message"
|
|
8009
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
8008
8010
|
},
|
|
8009
8011
|
"preview": {
|
|
8010
8012
|
"allOf": [
|
|
@@ -8021,42 +8023,42 @@
|
|
|
8021
8023
|
]
|
|
8022
8024
|
},
|
|
8023
8025
|
"allow_empty": {
|
|
8024
|
-
"$ref": "#/definitions/allow_empty"
|
|
8026
|
+
"$ref": "#/definitions/type._inputs.*.options.allow_empty"
|
|
8025
8027
|
},
|
|
8026
8028
|
"values": {
|
|
8027
|
-
"$ref": "#/definitions/values"
|
|
8029
|
+
"$ref": "#/definitions/type._inputs.*.options.values"
|
|
8028
8030
|
},
|
|
8029
8031
|
"value_key": {
|
|
8030
|
-
"$ref": "#/definitions/value_key"
|
|
8032
|
+
"$ref": "#/definitions/type._inputs.*.options.value_key"
|
|
8031
8033
|
},
|
|
8032
8034
|
"view": {
|
|
8033
|
-
"$ref": "#/definitions/view"
|
|
8035
|
+
"$ref": "#/definitions/type._inputs.*.options.view"
|
|
8034
8036
|
},
|
|
8035
8037
|
"picker_view": {
|
|
8036
|
-
"$ref": "#/definitions/picker_view"
|
|
8038
|
+
"$ref": "#/definitions/type._inputs.*.options.picker_view"
|
|
8037
8039
|
},
|
|
8038
8040
|
"max_items": {
|
|
8039
|
-
"$ref": "#/definitions/max_items"
|
|
8041
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items"
|
|
8040
8042
|
},
|
|
8041
8043
|
"max_items_message": {
|
|
8042
|
-
"$ref": "#/definitions/max_items_message"
|
|
8044
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items_message"
|
|
8043
8045
|
},
|
|
8044
8046
|
"min_items": {
|
|
8045
|
-
"$ref": "#/definitions/min_items"
|
|
8047
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items"
|
|
8046
8048
|
},
|
|
8047
8049
|
"min_items_message": {
|
|
8048
|
-
"$ref": "#/definitions/min_items_message"
|
|
8050
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items_message"
|
|
8049
8051
|
},
|
|
8050
8052
|
"unique_on": {
|
|
8051
|
-
"$ref": "#/definitions/unique_on"
|
|
8053
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on"
|
|
8052
8054
|
},
|
|
8053
8055
|
"unique_on_message": {
|
|
8054
|
-
"$ref": "#/definitions/unique_on_message"
|
|
8056
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on_message"
|
|
8055
8057
|
},
|
|
8056
8058
|
"empty_type": {
|
|
8057
8059
|
"allOf": [
|
|
8058
8060
|
{
|
|
8059
|
-
"$ref": "#/definitions/empty_type_array"
|
|
8061
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_array"
|
|
8060
8062
|
}
|
|
8061
8063
|
]
|
|
8062
8064
|
}
|
|
@@ -8077,12 +8079,12 @@
|
|
|
8077
8079
|
"type": "object",
|
|
8078
8080
|
"properties": {
|
|
8079
8081
|
"comment": {
|
|
8080
|
-
"$ref": "#/definitions/comment"
|
|
8082
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
8081
8083
|
},
|
|
8082
8084
|
"context": {
|
|
8083
8085
|
"allOf": [
|
|
8084
8086
|
{
|
|
8085
|
-
"$ref": "#/definitions/context"
|
|
8087
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
8086
8088
|
}
|
|
8087
8089
|
]
|
|
8088
8090
|
},
|
|
@@ -8090,28 +8092,28 @@
|
|
|
8090
8092
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
8091
8093
|
"allOf": [
|
|
8092
8094
|
{
|
|
8093
|
-
"$ref": "#/definitions/documentation"
|
|
8095
|
+
"$ref": "#/definitions/type.documentation"
|
|
8094
8096
|
}
|
|
8095
8097
|
],
|
|
8096
8098
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
8097
8099
|
},
|
|
8098
8100
|
"label": {
|
|
8099
|
-
"$ref": "#/definitions/label"
|
|
8101
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
8100
8102
|
},
|
|
8101
8103
|
"hidden": {
|
|
8102
|
-
"$ref": "#/definitions/hidden"
|
|
8104
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
8103
8105
|
},
|
|
8104
8106
|
"disabled": {
|
|
8105
|
-
"$ref": "#/definitions/disabled"
|
|
8107
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
8106
8108
|
},
|
|
8107
8109
|
"instance_value": {
|
|
8108
|
-
"$ref": "#/definitions/instance_value"
|
|
8110
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
8109
8111
|
},
|
|
8110
8112
|
"disable_instance_value_rehydration": {
|
|
8111
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
8113
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
8112
8114
|
},
|
|
8113
8115
|
"cascade": {
|
|
8114
|
-
"$ref": "#/definitions/cascade"
|
|
8116
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
8115
8117
|
},
|
|
8116
8118
|
"type": {
|
|
8117
8119
|
"title": "Type",
|
|
@@ -8125,15 +8127,15 @@
|
|
|
8125
8127
|
"type": "object",
|
|
8126
8128
|
"properties": {
|
|
8127
8129
|
"required": {
|
|
8128
|
-
"$ref": "#/definitions/required"
|
|
8130
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
8129
8131
|
},
|
|
8130
8132
|
"required_message": {
|
|
8131
|
-
"$ref": "#/definitions/required_message"
|
|
8133
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
8132
8134
|
},
|
|
8133
8135
|
"empty_type": {
|
|
8134
8136
|
"allOf": [
|
|
8135
8137
|
{
|
|
8136
|
-
"$ref": "#/definitions/empty_type_object"
|
|
8138
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_object"
|
|
8137
8139
|
}
|
|
8138
8140
|
]
|
|
8139
8141
|
},
|
|
@@ -8196,7 +8198,13 @@
|
|
|
8196
8198
|
"$ref": "#/definitions/entries_comment"
|
|
8197
8199
|
},
|
|
8198
8200
|
"documentation": {
|
|
8199
|
-
"
|
|
8201
|
+
"description": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input.",
|
|
8202
|
+
"allOf": [
|
|
8203
|
+
{
|
|
8204
|
+
"$ref": "#/definitions/type.documentation"
|
|
8205
|
+
}
|
|
8206
|
+
],
|
|
8207
|
+
"markdownDescription": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input."
|
|
8200
8208
|
}
|
|
8201
8209
|
},
|
|
8202
8210
|
"additionalProperties": false,
|
|
@@ -8236,7 +8244,7 @@
|
|
|
8236
8244
|
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
8237
8245
|
"allOf": [
|
|
8238
8246
|
{
|
|
8239
|
-
"$ref": "#/definitions/documentation"
|
|
8247
|
+
"$ref": "#/definitions/type.documentation"
|
|
8240
8248
|
}
|
|
8241
8249
|
],
|
|
8242
8250
|
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
@@ -8291,7 +8299,7 @@
|
|
|
8291
8299
|
"additionalProperties": false,
|
|
8292
8300
|
"markdownDescription": "Provides a user interface for a group of inputs."
|
|
8293
8301
|
},
|
|
8294
|
-
"empty_type_object": {
|
|
8302
|
+
"type._inputs.*.options.empty_type_object": {
|
|
8295
8303
|
"description": "Set how an ‘empty’ value will be saved. Does not apply to existing empty values.",
|
|
8296
8304
|
"default": "null",
|
|
8297
8305
|
"type": "string",
|
|
@@ -8390,10 +8398,11 @@
|
|
|
8390
8398
|
]
|
|
8391
8399
|
},
|
|
8392
8400
|
"_inputs_from_glob": {
|
|
8393
|
-
"
|
|
8394
|
-
|
|
8395
|
-
|
|
8396
|
-
|
|
8401
|
+
"allOf": [
|
|
8402
|
+
{
|
|
8403
|
+
"$ref": "#/definitions/type._inputs_from_glob"
|
|
8404
|
+
}
|
|
8405
|
+
]
|
|
8397
8406
|
},
|
|
8398
8407
|
"_select_data": {
|
|
8399
8408
|
"allOf": [
|
|
@@ -8410,10 +8419,11 @@
|
|
|
8410
8419
|
]
|
|
8411
8420
|
},
|
|
8412
8421
|
"_structures_from_glob": {
|
|
8413
|
-
"
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8422
|
+
"allOf": [
|
|
8423
|
+
{
|
|
8424
|
+
"$ref": "#/definitions/type._structures_from_glob"
|
|
8425
|
+
}
|
|
8426
|
+
]
|
|
8417
8427
|
},
|
|
8418
8428
|
"id": {
|
|
8419
8429
|
"description": "A unique reference value used when referring to this structure value from the Object input's assigned_structures option.",
|
|
@@ -8487,7 +8497,7 @@
|
|
|
8487
8497
|
"description": "Provides a custom link for documentation for editors shown above the collection file list.",
|
|
8488
8498
|
"allOf": [
|
|
8489
8499
|
{
|
|
8490
|
-
"$ref": "#/definitions/documentation"
|
|
8500
|
+
"$ref": "#/definitions/type.documentation"
|
|
8491
8501
|
}
|
|
8492
8502
|
],
|
|
8493
8503
|
"markdownDescription": "Provides a custom link for documentation for editors shown above the collection file list."
|
|
@@ -8522,7 +8532,7 @@
|
|
|
8522
8532
|
"description": "Provides a custom link for documentation for editors shown in the Data Editor for expanded values matching this Structure value. Has no default.",
|
|
8523
8533
|
"allOf": [
|
|
8524
8534
|
{
|
|
8525
|
-
"$ref": "#/definitions/documentation"
|
|
8535
|
+
"$ref": "#/definitions/type.documentation"
|
|
8526
8536
|
}
|
|
8527
8537
|
],
|
|
8528
8538
|
"markdownDescription": "Provides a custom link for documentation for editors shown in the Data Editor for expanded values matching this Structure value. Has no default."
|
|
@@ -8565,6 +8575,12 @@
|
|
|
8565
8575
|
"additionalProperties": false,
|
|
8566
8576
|
"markdownDescription": "Provides data formats when adding new items to arrays and objects, with options for how editors choose from available values."
|
|
8567
8577
|
},
|
|
8578
|
+
"type._inputs_from_glob": {
|
|
8579
|
+
"type": "array",
|
|
8580
|
+
"items": {
|
|
8581
|
+
"type": "string"
|
|
8582
|
+
}
|
|
8583
|
+
},
|
|
8568
8584
|
"type._select_data": {
|
|
8569
8585
|
"title": "Select Data",
|
|
8570
8586
|
"description": "Fixed datasets that can be referenced by the _Values_ configuration for _Select_ and _Multiselect_ inputs.",
|
|
@@ -8628,32 +8644,29 @@
|
|
|
8628
8644
|
},
|
|
8629
8645
|
"markdownDescription": "Structured values for editors adding new items to arrays and objects. Entries here can be referenced in the configuration for `array` or `object` inputs."
|
|
8630
8646
|
},
|
|
8647
|
+
"type._structures_from_glob": {
|
|
8648
|
+
"type": "array",
|
|
8649
|
+
"items": {
|
|
8650
|
+
"type": "string"
|
|
8651
|
+
}
|
|
8652
|
+
},
|
|
8631
8653
|
"entries_comment": {
|
|
8632
8654
|
"description": "Used to supply help text above the key input when adding/renaming within a mutable object input. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript and inline code elements are allowed.",
|
|
8633
8655
|
"type": "string",
|
|
8634
8656
|
"markdownDescription": "Used to supply help text above the key input when adding/renaming within a mutable object input. Has no default. Supports a limited set of Markdown: links, bold, italic, subscript, superscript and inline code elements are allowed."
|
|
8635
8657
|
},
|
|
8636
|
-
"entries_documentation": {
|
|
8637
|
-
"description": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input.",
|
|
8638
|
-
"allOf": [
|
|
8639
|
-
{
|
|
8640
|
-
"$ref": "#/definitions/documentation"
|
|
8641
|
-
}
|
|
8642
|
-
],
|
|
8643
|
-
"markdownDescription": "Provides a custom link for documentation for editors shown above the key input when adding/renaming within a mutable object input."
|
|
8644
|
-
},
|
|
8645
8658
|
"ArrayInput": {
|
|
8646
8659
|
"title": "Array Input",
|
|
8647
8660
|
"description": "Provides a user interface for lists of inputs or input groups.",
|
|
8648
8661
|
"type": "object",
|
|
8649
8662
|
"properties": {
|
|
8650
8663
|
"comment": {
|
|
8651
|
-
"$ref": "#/definitions/comment"
|
|
8664
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
8652
8665
|
},
|
|
8653
8666
|
"context": {
|
|
8654
8667
|
"allOf": [
|
|
8655
8668
|
{
|
|
8656
|
-
"$ref": "#/definitions/context"
|
|
8669
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
8657
8670
|
}
|
|
8658
8671
|
]
|
|
8659
8672
|
},
|
|
@@ -8661,28 +8674,28 @@
|
|
|
8661
8674
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
8662
8675
|
"allOf": [
|
|
8663
8676
|
{
|
|
8664
|
-
"$ref": "#/definitions/documentation"
|
|
8677
|
+
"$ref": "#/definitions/type.documentation"
|
|
8665
8678
|
}
|
|
8666
8679
|
],
|
|
8667
8680
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
8668
8681
|
},
|
|
8669
8682
|
"label": {
|
|
8670
|
-
"$ref": "#/definitions/label"
|
|
8683
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
8671
8684
|
},
|
|
8672
8685
|
"hidden": {
|
|
8673
|
-
"$ref": "#/definitions/hidden"
|
|
8686
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
8674
8687
|
},
|
|
8675
8688
|
"disabled": {
|
|
8676
|
-
"$ref": "#/definitions/disabled"
|
|
8689
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
8677
8690
|
},
|
|
8678
8691
|
"instance_value": {
|
|
8679
|
-
"$ref": "#/definitions/instance_value"
|
|
8692
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
8680
8693
|
},
|
|
8681
8694
|
"disable_instance_value_rehydration": {
|
|
8682
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
8695
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
8683
8696
|
},
|
|
8684
8697
|
"cascade": {
|
|
8685
|
-
"$ref": "#/definitions/cascade"
|
|
8698
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
8686
8699
|
},
|
|
8687
8700
|
"type": {
|
|
8688
8701
|
"title": "Type",
|
|
@@ -8696,28 +8709,28 @@
|
|
|
8696
8709
|
"type": "object",
|
|
8697
8710
|
"properties": {
|
|
8698
8711
|
"required": {
|
|
8699
|
-
"$ref": "#/definitions/required"
|
|
8712
|
+
"$ref": "#/definitions/type._inputs.*.options.required"
|
|
8700
8713
|
},
|
|
8701
8714
|
"required_message": {
|
|
8702
|
-
"$ref": "#/definitions/required_message"
|
|
8715
|
+
"$ref": "#/definitions/type._inputs.*.options.required_message"
|
|
8703
8716
|
},
|
|
8704
8717
|
"max_items": {
|
|
8705
|
-
"$ref": "#/definitions/max_items"
|
|
8718
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items"
|
|
8706
8719
|
},
|
|
8707
8720
|
"max_items_message": {
|
|
8708
|
-
"$ref": "#/definitions/max_items_message"
|
|
8721
|
+
"$ref": "#/definitions/type._inputs.*.options.max_items_message"
|
|
8709
8722
|
},
|
|
8710
8723
|
"min_items": {
|
|
8711
|
-
"$ref": "#/definitions/min_items"
|
|
8724
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items"
|
|
8712
8725
|
},
|
|
8713
8726
|
"min_items_message": {
|
|
8714
|
-
"$ref": "#/definitions/min_items_message"
|
|
8727
|
+
"$ref": "#/definitions/type._inputs.*.options.min_items_message"
|
|
8715
8728
|
},
|
|
8716
8729
|
"unique_on": {
|
|
8717
|
-
"$ref": "#/definitions/unique_on"
|
|
8730
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on"
|
|
8718
8731
|
},
|
|
8719
8732
|
"unique_on_message": {
|
|
8720
|
-
"$ref": "#/definitions/unique_on_message"
|
|
8733
|
+
"$ref": "#/definitions/type._inputs.*.options.unique_on_message"
|
|
8721
8734
|
},
|
|
8722
8735
|
"disable_add": {
|
|
8723
8736
|
"$ref": "#/definitions/ArrayInput.disable_add"
|
|
@@ -8731,7 +8744,7 @@
|
|
|
8731
8744
|
"empty_type": {
|
|
8732
8745
|
"allOf": [
|
|
8733
8746
|
{
|
|
8734
|
-
"$ref": "#/definitions/empty_type_array"
|
|
8747
|
+
"$ref": "#/definitions/type._inputs.*.options.empty_type_array"
|
|
8735
8748
|
}
|
|
8736
8749
|
]
|
|
8737
8750
|
},
|
|
@@ -8783,12 +8796,12 @@
|
|
|
8783
8796
|
"type": "object",
|
|
8784
8797
|
"properties": {
|
|
8785
8798
|
"comment": {
|
|
8786
|
-
"$ref": "#/definitions/comment"
|
|
8799
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
8787
8800
|
},
|
|
8788
8801
|
"context": {
|
|
8789
8802
|
"allOf": [
|
|
8790
8803
|
{
|
|
8791
|
-
"$ref": "#/definitions/context"
|
|
8804
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
8792
8805
|
}
|
|
8793
8806
|
]
|
|
8794
8807
|
},
|
|
@@ -8796,28 +8809,28 @@
|
|
|
8796
8809
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
8797
8810
|
"allOf": [
|
|
8798
8811
|
{
|
|
8799
|
-
"$ref": "#/definitions/documentation"
|
|
8812
|
+
"$ref": "#/definitions/type.documentation"
|
|
8800
8813
|
}
|
|
8801
8814
|
],
|
|
8802
8815
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
8803
8816
|
},
|
|
8804
8817
|
"label": {
|
|
8805
|
-
"$ref": "#/definitions/label"
|
|
8818
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
8806
8819
|
},
|
|
8807
8820
|
"hidden": {
|
|
8808
|
-
"$ref": "#/definitions/hidden"
|
|
8821
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
8809
8822
|
},
|
|
8810
8823
|
"disabled": {
|
|
8811
|
-
"$ref": "#/definitions/disabled"
|
|
8824
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
8812
8825
|
},
|
|
8813
8826
|
"instance_value": {
|
|
8814
|
-
"$ref": "#/definitions/instance_value"
|
|
8827
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
8815
8828
|
},
|
|
8816
8829
|
"disable_instance_value_rehydration": {
|
|
8817
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
8830
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
8818
8831
|
},
|
|
8819
8832
|
"cascade": {
|
|
8820
|
-
"$ref": "#/definitions/cascade"
|
|
8833
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
8821
8834
|
},
|
|
8822
8835
|
"type": {
|
|
8823
8836
|
"title": "Type",
|
|
@@ -8844,12 +8857,12 @@
|
|
|
8844
8857
|
"type": "object",
|
|
8845
8858
|
"properties": {
|
|
8846
8859
|
"comment": {
|
|
8847
|
-
"$ref": "#/definitions/comment"
|
|
8860
|
+
"$ref": "#/definitions/type._inputs.*.comment"
|
|
8848
8861
|
},
|
|
8849
8862
|
"context": {
|
|
8850
8863
|
"allOf": [
|
|
8851
8864
|
{
|
|
8852
|
-
"$ref": "#/definitions/context"
|
|
8865
|
+
"$ref": "#/definitions/type._inputs.*.context"
|
|
8853
8866
|
}
|
|
8854
8867
|
]
|
|
8855
8868
|
},
|
|
@@ -8857,28 +8870,28 @@
|
|
|
8857
8870
|
"description": "Provides a custom link for documentation for editors shown above input.",
|
|
8858
8871
|
"allOf": [
|
|
8859
8872
|
{
|
|
8860
|
-
"$ref": "#/definitions/documentation"
|
|
8873
|
+
"$ref": "#/definitions/type.documentation"
|
|
8861
8874
|
}
|
|
8862
8875
|
],
|
|
8863
8876
|
"markdownDescription": "Provides a custom link for documentation for editors shown above input."
|
|
8864
8877
|
},
|
|
8865
8878
|
"label": {
|
|
8866
|
-
"$ref": "#/definitions/label"
|
|
8879
|
+
"$ref": "#/definitions/type._inputs.*.label"
|
|
8867
8880
|
},
|
|
8868
8881
|
"hidden": {
|
|
8869
|
-
"$ref": "#/definitions/hidden"
|
|
8882
|
+
"$ref": "#/definitions/type._inputs.*.hidden"
|
|
8870
8883
|
},
|
|
8871
8884
|
"disabled": {
|
|
8872
|
-
"$ref": "#/definitions/disabled"
|
|
8885
|
+
"$ref": "#/definitions/type._inputs.*.disabled"
|
|
8873
8886
|
},
|
|
8874
8887
|
"instance_value": {
|
|
8875
|
-
"$ref": "#/definitions/instance_value"
|
|
8888
|
+
"$ref": "#/definitions/type._inputs.*.instance_value"
|
|
8876
8889
|
},
|
|
8877
8890
|
"disable_instance_value_rehydration": {
|
|
8878
|
-
"$ref": "#/definitions/disable_instance_value_rehydration"
|
|
8891
|
+
"$ref": "#/definitions/type._inputs.*.disable_instance_value_rehydration"
|
|
8879
8892
|
},
|
|
8880
8893
|
"cascade": {
|
|
8881
|
-
"$ref": "#/definitions/cascade"
|
|
8894
|
+
"$ref": "#/definitions/type._inputs.*.cascade"
|
|
8882
8895
|
},
|
|
8883
8896
|
"options": {
|
|
8884
8897
|
"description": "Options that are specific to this `type` of input.",
|
|
@@ -8939,31 +8952,31 @@
|
|
|
8939
8952
|
"type": "object",
|
|
8940
8953
|
"properties": {
|
|
8941
8954
|
"mime_type": {
|
|
8942
|
-
"$ref": "#/definitions/mime_type"
|
|
8955
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
8943
8956
|
},
|
|
8944
8957
|
"resize_style": {
|
|
8945
|
-
"$ref": "#/definitions/resize_style"
|
|
8958
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
8946
8959
|
},
|
|
8947
8960
|
"width": {
|
|
8948
|
-
"$ref": "#/definitions/width"
|
|
8961
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
8949
8962
|
},
|
|
8950
8963
|
"height": {
|
|
8951
|
-
"$ref": "#/definitions/height"
|
|
8964
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
8952
8965
|
},
|
|
8953
8966
|
"expandable": {
|
|
8954
|
-
"$ref": "#/definitions/expandable"
|
|
8967
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
8955
8968
|
},
|
|
8956
8969
|
"image_size_attributes": {
|
|
8957
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
8970
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
8958
8971
|
},
|
|
8959
8972
|
"allowed_sources": {
|
|
8960
|
-
"$ref": "#/definitions/allowed_sources"
|
|
8973
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
8961
8974
|
},
|
|
8962
8975
|
"prevent_resize_existing_files": {
|
|
8963
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
8976
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
8964
8977
|
},
|
|
8965
8978
|
"sizes": {
|
|
8966
|
-
"$ref": "#/definitions/sizes"
|
|
8979
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
8967
8980
|
},
|
|
8968
8981
|
"paths": {
|
|
8969
8982
|
"allOf": [
|
|
@@ -8973,106 +8986,106 @@
|
|
|
8973
8986
|
]
|
|
8974
8987
|
},
|
|
8975
8988
|
"bold": {
|
|
8976
|
-
"$ref": "#/definitions/bold"
|
|
8989
|
+
"$ref": "#/definitions/type._editables.*.bold"
|
|
8977
8990
|
},
|
|
8978
8991
|
"copyformatting": {
|
|
8979
|
-
"$ref": "#/definitions/copyformatting"
|
|
8992
|
+
"$ref": "#/definitions/type._editables.*.copyformatting"
|
|
8980
8993
|
},
|
|
8981
8994
|
"italic": {
|
|
8982
|
-
"$ref": "#/definitions/italic"
|
|
8995
|
+
"$ref": "#/definitions/type._editables.*.italic"
|
|
8983
8996
|
},
|
|
8984
8997
|
"link": {
|
|
8985
|
-
"$ref": "#/definitions/link"
|
|
8998
|
+
"$ref": "#/definitions/type._editables.*.link"
|
|
8986
8999
|
},
|
|
8987
9000
|
"redo": {
|
|
8988
|
-
"$ref": "#/definitions/redo"
|
|
9001
|
+
"$ref": "#/definitions/type._editables.*.redo"
|
|
8989
9002
|
},
|
|
8990
9003
|
"removeformat": {
|
|
8991
|
-
"$ref": "#/definitions/removeformat"
|
|
9004
|
+
"$ref": "#/definitions/type._editables.*.removeformat"
|
|
8992
9005
|
},
|
|
8993
9006
|
"strike": {
|
|
8994
|
-
"$ref": "#/definitions/strike"
|
|
9007
|
+
"$ref": "#/definitions/type._editables.*.strike"
|
|
8995
9008
|
},
|
|
8996
9009
|
"subscript": {
|
|
8997
|
-
"$ref": "#/definitions/subscript"
|
|
9010
|
+
"$ref": "#/definitions/type._editables.*.subscript"
|
|
8998
9011
|
},
|
|
8999
9012
|
"superscript": {
|
|
9000
|
-
"$ref": "#/definitions/superscript"
|
|
9013
|
+
"$ref": "#/definitions/type._editables.*.superscript"
|
|
9001
9014
|
},
|
|
9002
9015
|
"underline": {
|
|
9003
|
-
"$ref": "#/definitions/underline"
|
|
9016
|
+
"$ref": "#/definitions/type._editables.*.underline"
|
|
9004
9017
|
},
|
|
9005
9018
|
"undo": {
|
|
9006
|
-
"$ref": "#/definitions/undo"
|
|
9019
|
+
"$ref": "#/definitions/type._editables.*.undo"
|
|
9007
9020
|
},
|
|
9008
9021
|
"remove_custom_markup": {
|
|
9009
|
-
"$ref": "#/definitions/remove_custom_markup"
|
|
9022
|
+
"$ref": "#/definitions/type._editables.*.remove_custom_markup"
|
|
9010
9023
|
},
|
|
9011
9024
|
"allow_custom_markup": {
|
|
9012
|
-
"$ref": "#/definitions/allow_custom_markup"
|
|
9025
|
+
"$ref": "#/definitions/type._editables.*.allow_custom_markup"
|
|
9013
9026
|
},
|
|
9014
9027
|
"blockquote": {
|
|
9015
|
-
"$ref": "#/definitions/blockquote"
|
|
9028
|
+
"$ref": "#/definitions/type._editables.*.blockquote"
|
|
9016
9029
|
},
|
|
9017
9030
|
"bulletedlist": {
|
|
9018
|
-
"$ref": "#/definitions/bulletedlist"
|
|
9031
|
+
"$ref": "#/definitions/type._editables.*.bulletedlist"
|
|
9019
9032
|
},
|
|
9020
9033
|
"center": {
|
|
9021
|
-
"$ref": "#/definitions/center"
|
|
9034
|
+
"$ref": "#/definitions/type._editables.*.center"
|
|
9022
9035
|
},
|
|
9023
9036
|
"code_inline": {
|
|
9024
|
-
"$ref": "#/definitions/code_inline"
|
|
9037
|
+
"$ref": "#/definitions/type._editables.*.code_inline"
|
|
9025
9038
|
},
|
|
9026
9039
|
"code_block": {
|
|
9027
|
-
"$ref": "#/definitions/code_block"
|
|
9040
|
+
"$ref": "#/definitions/type._editables.*.code_block"
|
|
9028
9041
|
},
|
|
9029
9042
|
"code": {
|
|
9030
|
-
"$ref": "#/definitions/code"
|
|
9043
|
+
"$ref": "#/definitions/type._editables.*.code"
|
|
9031
9044
|
},
|
|
9032
9045
|
"embed": {
|
|
9033
|
-
"$ref": "#/definitions/embed"
|
|
9046
|
+
"$ref": "#/definitions/type._editables.*.embed"
|
|
9034
9047
|
},
|
|
9035
9048
|
"format": {
|
|
9036
|
-
"$ref": "#/definitions/format"
|
|
9049
|
+
"$ref": "#/definitions/type._editables.*.format"
|
|
9037
9050
|
},
|
|
9038
9051
|
"horizontalrule": {
|
|
9039
|
-
"$ref": "#/definitions/horizontalrule"
|
|
9052
|
+
"$ref": "#/definitions/type._editables.*.horizontalrule"
|
|
9040
9053
|
},
|
|
9041
9054
|
"image": {
|
|
9042
|
-
"$ref": "#/definitions/image"
|
|
9055
|
+
"$ref": "#/definitions/type._editables.*.image"
|
|
9043
9056
|
},
|
|
9044
9057
|
"indent": {
|
|
9045
|
-
"$ref": "#/definitions/indent"
|
|
9058
|
+
"$ref": "#/definitions/type._editables.*.indent"
|
|
9046
9059
|
},
|
|
9047
9060
|
"justify": {
|
|
9048
|
-
"$ref": "#/definitions/justify"
|
|
9061
|
+
"$ref": "#/definitions/type._editables.*.justify"
|
|
9049
9062
|
},
|
|
9050
9063
|
"left": {
|
|
9051
|
-
"$ref": "#/definitions/left"
|
|
9064
|
+
"$ref": "#/definitions/type._editables.*.left"
|
|
9052
9065
|
},
|
|
9053
9066
|
"numberedlist": {
|
|
9054
|
-
"$ref": "#/definitions/numberedlist"
|
|
9067
|
+
"$ref": "#/definitions/type._editables.*.numberedlist"
|
|
9055
9068
|
},
|
|
9056
9069
|
"outdent": {
|
|
9057
|
-
"$ref": "#/definitions/outdent"
|
|
9070
|
+
"$ref": "#/definitions/type._editables.*.outdent"
|
|
9058
9071
|
},
|
|
9059
9072
|
"right": {
|
|
9060
|
-
"$ref": "#/definitions/right"
|
|
9073
|
+
"$ref": "#/definitions/type._editables.*.right"
|
|
9061
9074
|
},
|
|
9062
9075
|
"snippet": {
|
|
9063
|
-
"$ref": "#/definitions/snippet"
|
|
9076
|
+
"$ref": "#/definitions/type._editables.*.snippet"
|
|
9064
9077
|
},
|
|
9065
9078
|
"styles": {
|
|
9066
|
-
"$ref": "#/definitions/styles"
|
|
9079
|
+
"$ref": "#/definitions/type._editables.*.styles"
|
|
9067
9080
|
},
|
|
9068
9081
|
"table": {
|
|
9069
|
-
"$ref": "#/definitions/table"
|
|
9082
|
+
"$ref": "#/definitions/type._editables.*.table"
|
|
9070
9083
|
},
|
|
9071
9084
|
"join_above": {
|
|
9072
|
-
"$ref": "#/definitions/join_above"
|
|
9085
|
+
"$ref": "#/definitions/type._editables.*.join_above"
|
|
9073
9086
|
},
|
|
9074
9087
|
"join_below": {
|
|
9075
|
-
"$ref": "#/definitions/join_below"
|
|
9088
|
+
"$ref": "#/definitions/type._editables.*.join_below"
|
|
9076
9089
|
}
|
|
9077
9090
|
},
|
|
9078
9091
|
"additionalProperties": false,
|
|
@@ -9084,31 +9097,31 @@
|
|
|
9084
9097
|
"type": "object",
|
|
9085
9098
|
"properties": {
|
|
9086
9099
|
"mime_type": {
|
|
9087
|
-
"$ref": "#/definitions/mime_type"
|
|
9100
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
9088
9101
|
},
|
|
9089
9102
|
"resize_style": {
|
|
9090
|
-
"$ref": "#/definitions/resize_style"
|
|
9103
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
9091
9104
|
},
|
|
9092
9105
|
"width": {
|
|
9093
|
-
"$ref": "#/definitions/width"
|
|
9106
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
9094
9107
|
},
|
|
9095
9108
|
"height": {
|
|
9096
|
-
"$ref": "#/definitions/height"
|
|
9109
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
9097
9110
|
},
|
|
9098
9111
|
"expandable": {
|
|
9099
|
-
"$ref": "#/definitions/expandable"
|
|
9112
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
9100
9113
|
},
|
|
9101
9114
|
"image_size_attributes": {
|
|
9102
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
9115
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
9103
9116
|
},
|
|
9104
9117
|
"allowed_sources": {
|
|
9105
|
-
"$ref": "#/definitions/allowed_sources"
|
|
9118
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
9106
9119
|
},
|
|
9107
9120
|
"prevent_resize_existing_files": {
|
|
9108
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
9121
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
9109
9122
|
},
|
|
9110
9123
|
"sizes": {
|
|
9111
|
-
"$ref": "#/definitions/sizes"
|
|
9124
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
9112
9125
|
},
|
|
9113
9126
|
"paths": {
|
|
9114
9127
|
"allOf": [
|
|
@@ -9118,106 +9131,106 @@
|
|
|
9118
9131
|
]
|
|
9119
9132
|
},
|
|
9120
9133
|
"bold": {
|
|
9121
|
-
"$ref": "#/definitions/bold"
|
|
9134
|
+
"$ref": "#/definitions/type._editables.*.bold"
|
|
9122
9135
|
},
|
|
9123
9136
|
"copyformatting": {
|
|
9124
|
-
"$ref": "#/definitions/copyformatting"
|
|
9137
|
+
"$ref": "#/definitions/type._editables.*.copyformatting"
|
|
9125
9138
|
},
|
|
9126
9139
|
"italic": {
|
|
9127
|
-
"$ref": "#/definitions/italic"
|
|
9140
|
+
"$ref": "#/definitions/type._editables.*.italic"
|
|
9128
9141
|
},
|
|
9129
9142
|
"link": {
|
|
9130
|
-
"$ref": "#/definitions/link"
|
|
9143
|
+
"$ref": "#/definitions/type._editables.*.link"
|
|
9131
9144
|
},
|
|
9132
9145
|
"redo": {
|
|
9133
|
-
"$ref": "#/definitions/redo"
|
|
9146
|
+
"$ref": "#/definitions/type._editables.*.redo"
|
|
9134
9147
|
},
|
|
9135
9148
|
"removeformat": {
|
|
9136
|
-
"$ref": "#/definitions/removeformat"
|
|
9149
|
+
"$ref": "#/definitions/type._editables.*.removeformat"
|
|
9137
9150
|
},
|
|
9138
9151
|
"strike": {
|
|
9139
|
-
"$ref": "#/definitions/strike"
|
|
9152
|
+
"$ref": "#/definitions/type._editables.*.strike"
|
|
9140
9153
|
},
|
|
9141
9154
|
"subscript": {
|
|
9142
|
-
"$ref": "#/definitions/subscript"
|
|
9155
|
+
"$ref": "#/definitions/type._editables.*.subscript"
|
|
9143
9156
|
},
|
|
9144
9157
|
"superscript": {
|
|
9145
|
-
"$ref": "#/definitions/superscript"
|
|
9158
|
+
"$ref": "#/definitions/type._editables.*.superscript"
|
|
9146
9159
|
},
|
|
9147
9160
|
"underline": {
|
|
9148
|
-
"$ref": "#/definitions/underline"
|
|
9161
|
+
"$ref": "#/definitions/type._editables.*.underline"
|
|
9149
9162
|
},
|
|
9150
9163
|
"undo": {
|
|
9151
|
-
"$ref": "#/definitions/undo"
|
|
9164
|
+
"$ref": "#/definitions/type._editables.*.undo"
|
|
9152
9165
|
},
|
|
9153
9166
|
"remove_custom_markup": {
|
|
9154
|
-
"$ref": "#/definitions/remove_custom_markup"
|
|
9167
|
+
"$ref": "#/definitions/type._editables.*.remove_custom_markup"
|
|
9155
9168
|
},
|
|
9156
9169
|
"allow_custom_markup": {
|
|
9157
|
-
"$ref": "#/definitions/allow_custom_markup"
|
|
9170
|
+
"$ref": "#/definitions/type._editables.*.allow_custom_markup"
|
|
9158
9171
|
},
|
|
9159
9172
|
"blockquote": {
|
|
9160
|
-
"$ref": "#/definitions/blockquote"
|
|
9173
|
+
"$ref": "#/definitions/type._editables.*.blockquote"
|
|
9161
9174
|
},
|
|
9162
9175
|
"bulletedlist": {
|
|
9163
|
-
"$ref": "#/definitions/bulletedlist"
|
|
9176
|
+
"$ref": "#/definitions/type._editables.*.bulletedlist"
|
|
9164
9177
|
},
|
|
9165
9178
|
"center": {
|
|
9166
|
-
"$ref": "#/definitions/center"
|
|
9179
|
+
"$ref": "#/definitions/type._editables.*.center"
|
|
9167
9180
|
},
|
|
9168
9181
|
"code_inline": {
|
|
9169
|
-
"$ref": "#/definitions/code_inline"
|
|
9182
|
+
"$ref": "#/definitions/type._editables.*.code_inline"
|
|
9170
9183
|
},
|
|
9171
9184
|
"code_block": {
|
|
9172
|
-
"$ref": "#/definitions/code_block"
|
|
9185
|
+
"$ref": "#/definitions/type._editables.*.code_block"
|
|
9173
9186
|
},
|
|
9174
9187
|
"code": {
|
|
9175
|
-
"$ref": "#/definitions/code"
|
|
9188
|
+
"$ref": "#/definitions/type._editables.*.code"
|
|
9176
9189
|
},
|
|
9177
9190
|
"embed": {
|
|
9178
|
-
"$ref": "#/definitions/embed"
|
|
9191
|
+
"$ref": "#/definitions/type._editables.*.embed"
|
|
9179
9192
|
},
|
|
9180
9193
|
"format": {
|
|
9181
|
-
"$ref": "#/definitions/format"
|
|
9194
|
+
"$ref": "#/definitions/type._editables.*.format"
|
|
9182
9195
|
},
|
|
9183
9196
|
"horizontalrule": {
|
|
9184
|
-
"$ref": "#/definitions/horizontalrule"
|
|
9197
|
+
"$ref": "#/definitions/type._editables.*.horizontalrule"
|
|
9185
9198
|
},
|
|
9186
9199
|
"image": {
|
|
9187
|
-
"$ref": "#/definitions/image"
|
|
9200
|
+
"$ref": "#/definitions/type._editables.*.image"
|
|
9188
9201
|
},
|
|
9189
9202
|
"indent": {
|
|
9190
|
-
"$ref": "#/definitions/indent"
|
|
9203
|
+
"$ref": "#/definitions/type._editables.*.indent"
|
|
9191
9204
|
},
|
|
9192
9205
|
"justify": {
|
|
9193
|
-
"$ref": "#/definitions/justify"
|
|
9206
|
+
"$ref": "#/definitions/type._editables.*.justify"
|
|
9194
9207
|
},
|
|
9195
9208
|
"left": {
|
|
9196
|
-
"$ref": "#/definitions/left"
|
|
9209
|
+
"$ref": "#/definitions/type._editables.*.left"
|
|
9197
9210
|
},
|
|
9198
9211
|
"numberedlist": {
|
|
9199
|
-
"$ref": "#/definitions/numberedlist"
|
|
9212
|
+
"$ref": "#/definitions/type._editables.*.numberedlist"
|
|
9200
9213
|
},
|
|
9201
9214
|
"outdent": {
|
|
9202
|
-
"$ref": "#/definitions/outdent"
|
|
9215
|
+
"$ref": "#/definitions/type._editables.*.outdent"
|
|
9203
9216
|
},
|
|
9204
9217
|
"right": {
|
|
9205
|
-
"$ref": "#/definitions/right"
|
|
9218
|
+
"$ref": "#/definitions/type._editables.*.right"
|
|
9206
9219
|
},
|
|
9207
9220
|
"snippet": {
|
|
9208
|
-
"$ref": "#/definitions/snippet"
|
|
9221
|
+
"$ref": "#/definitions/type._editables.*.snippet"
|
|
9209
9222
|
},
|
|
9210
9223
|
"styles": {
|
|
9211
|
-
"$ref": "#/definitions/styles"
|
|
9224
|
+
"$ref": "#/definitions/type._editables.*.styles"
|
|
9212
9225
|
},
|
|
9213
9226
|
"table": {
|
|
9214
|
-
"$ref": "#/definitions/table"
|
|
9227
|
+
"$ref": "#/definitions/type._editables.*.table"
|
|
9215
9228
|
},
|
|
9216
9229
|
"join_above": {
|
|
9217
|
-
"$ref": "#/definitions/join_above"
|
|
9230
|
+
"$ref": "#/definitions/type._editables.*.join_above"
|
|
9218
9231
|
},
|
|
9219
9232
|
"join_below": {
|
|
9220
|
-
"$ref": "#/definitions/join_below"
|
|
9233
|
+
"$ref": "#/definitions/type._editables.*.join_below"
|
|
9221
9234
|
}
|
|
9222
9235
|
},
|
|
9223
9236
|
"additionalProperties": false,
|
|
@@ -9245,31 +9258,31 @@
|
|
|
9245
9258
|
"type": "object",
|
|
9246
9259
|
"properties": {
|
|
9247
9260
|
"mime_type": {
|
|
9248
|
-
"$ref": "#/definitions/mime_type"
|
|
9261
|
+
"$ref": "#/definitions/type._inputs.*.options.mime_type"
|
|
9249
9262
|
},
|
|
9250
9263
|
"resize_style": {
|
|
9251
|
-
"$ref": "#/definitions/resize_style"
|
|
9264
|
+
"$ref": "#/definitions/type._inputs.*.options.resize_style"
|
|
9252
9265
|
},
|
|
9253
9266
|
"width": {
|
|
9254
|
-
"$ref": "#/definitions/width"
|
|
9267
|
+
"$ref": "#/definitions/type._inputs.*.options.width"
|
|
9255
9268
|
},
|
|
9256
9269
|
"height": {
|
|
9257
|
-
"$ref": "#/definitions/height"
|
|
9270
|
+
"$ref": "#/definitions/type._inputs.*.options.height"
|
|
9258
9271
|
},
|
|
9259
9272
|
"expandable": {
|
|
9260
|
-
"$ref": "#/definitions/expandable"
|
|
9273
|
+
"$ref": "#/definitions/type._inputs.*.options.expandable"
|
|
9261
9274
|
},
|
|
9262
9275
|
"image_size_attributes": {
|
|
9263
|
-
"$ref": "#/definitions/image_size_attributes"
|
|
9276
|
+
"$ref": "#/definitions/type._inputs.*.options.image_size_attributes"
|
|
9264
9277
|
},
|
|
9265
9278
|
"allowed_sources": {
|
|
9266
|
-
"$ref": "#/definitions/allowed_sources"
|
|
9279
|
+
"$ref": "#/definitions/type._inputs.*.options.allowed_sources"
|
|
9267
9280
|
},
|
|
9268
9281
|
"prevent_resize_existing_files": {
|
|
9269
|
-
"$ref": "#/definitions/prevent_resize_existing_files"
|
|
9282
|
+
"$ref": "#/definitions/type._inputs.*.options.prevent_resize_existing_files"
|
|
9270
9283
|
},
|
|
9271
9284
|
"sizes": {
|
|
9272
|
-
"$ref": "#/definitions/sizes"
|
|
9285
|
+
"$ref": "#/definitions/type._inputs.*.options.sizes"
|
|
9273
9286
|
},
|
|
9274
9287
|
"paths": {
|
|
9275
9288
|
"allOf": [
|
|
@@ -9295,47 +9308,53 @@
|
|
|
9295
9308
|
]
|
|
9296
9309
|
},
|
|
9297
9310
|
"bold": {
|
|
9298
|
-
"$ref": "#/definitions/bold"
|
|
9311
|
+
"$ref": "#/definitions/type._editables.*.bold"
|
|
9299
9312
|
},
|
|
9300
9313
|
"copyformatting": {
|
|
9301
|
-
"$ref": "#/definitions/copyformatting"
|
|
9314
|
+
"$ref": "#/definitions/type._editables.*.copyformatting"
|
|
9302
9315
|
},
|
|
9303
9316
|
"italic": {
|
|
9304
|
-
"$ref": "#/definitions/italic"
|
|
9317
|
+
"$ref": "#/definitions/type._editables.*.italic"
|
|
9305
9318
|
},
|
|
9306
9319
|
"link": {
|
|
9307
|
-
"$ref": "#/definitions/link"
|
|
9320
|
+
"$ref": "#/definitions/type._editables.*.link"
|
|
9308
9321
|
},
|
|
9309
9322
|
"redo": {
|
|
9310
|
-
"$ref": "#/definitions/redo"
|
|
9323
|
+
"$ref": "#/definitions/type._editables.*.redo"
|
|
9311
9324
|
},
|
|
9312
9325
|
"removeformat": {
|
|
9313
|
-
"$ref": "#/definitions/removeformat"
|
|
9326
|
+
"$ref": "#/definitions/type._editables.*.removeformat"
|
|
9314
9327
|
},
|
|
9315
9328
|
"strike": {
|
|
9316
|
-
"$ref": "#/definitions/strike"
|
|
9329
|
+
"$ref": "#/definitions/type._editables.*.strike"
|
|
9317
9330
|
},
|
|
9318
9331
|
"subscript": {
|
|
9319
|
-
"$ref": "#/definitions/subscript"
|
|
9332
|
+
"$ref": "#/definitions/type._editables.*.subscript"
|
|
9320
9333
|
},
|
|
9321
9334
|
"superscript": {
|
|
9322
|
-
"$ref": "#/definitions/superscript"
|
|
9335
|
+
"$ref": "#/definitions/type._editables.*.superscript"
|
|
9323
9336
|
},
|
|
9324
9337
|
"underline": {
|
|
9325
|
-
"$ref": "#/definitions/underline"
|
|
9338
|
+
"$ref": "#/definitions/type._editables.*.underline"
|
|
9326
9339
|
},
|
|
9327
9340
|
"undo": {
|
|
9328
|
-
"$ref": "#/definitions/undo"
|
|
9341
|
+
"$ref": "#/definitions/type._editables.*.undo"
|
|
9329
9342
|
},
|
|
9330
9343
|
"remove_custom_markup": {
|
|
9331
|
-
"$ref": "#/definitions/remove_custom_markup"
|
|
9344
|
+
"$ref": "#/definitions/type._editables.*.remove_custom_markup"
|
|
9332
9345
|
},
|
|
9333
9346
|
"allow_custom_markup": {
|
|
9334
|
-
"$ref": "#/definitions/allow_custom_markup"
|
|
9347
|
+
"$ref": "#/definitions/type._editables.*.allow_custom_markup"
|
|
9335
9348
|
}
|
|
9336
9349
|
},
|
|
9337
9350
|
"additionalProperties": false,
|
|
9338
9351
|
"markdownDescription": "Contains input options for text Editable Regions."
|
|
9352
|
+
},
|
|
9353
|
+
"type._editables_from_glob": {
|
|
9354
|
+
"type": "array",
|
|
9355
|
+
"items": {
|
|
9356
|
+
"type": "string"
|
|
9357
|
+
}
|
|
9339
9358
|
}
|
|
9340
9359
|
}
|
|
9341
9360
|
}
|