You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "A format string compatible with PHP's date() function"
228
+
inherits: [HTMLFieldValue]
175
229
176
230
DateAndTimeFieldValue:
177
231
type: object
178
232
inherits: ["DateFieldValue"]
179
233
config:
180
234
interfaces: [FieldValue]
235
+
inherits: [HTMLFieldValue]
181
236
182
237
EmailAddressFieldValue:
183
238
type: object
@@ -188,6 +243,7 @@ EmailAddressFieldValue:
188
243
type: "String"
189
244
description: "String representation of the value"
190
245
resolve: "@=value.email"
246
+
inherits: [HTMLFieldValue]
191
247
192
248
FloatFieldValue:
193
249
type: object
@@ -198,6 +254,7 @@ FloatFieldValue:
198
254
type: "String"
199
255
description: "String representation of the value"
200
256
resolve: "@=value.value"
257
+
inherits: [HTMLFieldValue]
201
258
202
259
IntegerFieldValue:
203
260
type: object
@@ -208,6 +265,7 @@ IntegerFieldValue:
208
265
type: "String"
209
266
description: "String representation of the value"
210
267
resolve: "@=value.value"
268
+
inherits: [HTMLFieldValue]
211
269
212
270
KeywordFieldValue:
213
271
type: object
@@ -219,6 +277,7 @@ KeywordFieldValue:
219
277
description: "String representation of the value"
220
278
# @todo will fail, array to string conversion
221
279
resolve: "@=value"
280
+
inherits: [HTMLFieldValue]
222
281
223
282
MapLocationFieldValue:
224
283
type: object
@@ -238,6 +297,26 @@ MapLocationFieldValue:
238
297
address:
239
298
type: "String"
240
299
resolve: "@=value.address"
300
+
html:
301
+
type: "String"
302
+
args:
303
+
params:
304
+
type: "MapLocationHtmlParameters"
305
+
306
+
inherits: [HTMLFieldValue]
307
+
308
+
MapLocationHtmlParameters:
309
+
type: "input-object"
310
+
config:
311
+
fields:
312
+
draggable: { type: "Boolean" }
313
+
height: { type: "String", description: "The height of the rendered map with its unit (for example \"200px\" or \"20em\")." }
314
+
width: { type: "String", description: "The width of the rendered map with its unit (for example \"500px\" or \"50em\")." }
315
+
mapType: { type: "String", description: "One of the GMap types of map (https://developers.google.com/maps/documentation/javascript/maptypes#BasicMapTypes)" }
316
+
scrollWheel: { type: "Boolean", description: "Allows you to disable scroll wheel starting to zoom when mouse comes over the map as user scrolls down a page." }
317
+
showInfo: { type: "Boolean", description: "Whether to show a latitude, longitude and the address outside of the map" }
318
+
showMap: { type: "Boolean", description: "Whether to show a Map" }
0 commit comments