From 68323f818e1f38a57fd07bcd995f8bb3c47c65fa Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Sun, 7 Oct 2018 13:27:14 -0700 Subject: [PATCH] Adds documentation for the snake_case field property (closes #5379) Adds documentation for the caseSensitive, min_value, and max_value field properties --- data/presets/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/data/presets/README.md b/data/presets/README.md index 24df5b0e8..b76dac1a5 100644 --- a/data/presets/README.md +++ b/data/presets/README.md @@ -210,6 +210,21 @@ the user can not type their own value, they must choose one of the given values. If a combo field does not specify `options` or `strings`, the field will fetch common tag values from the Taginfo service to use as dropdown values. +##### `snake_case` + +For combo fields, spaces are replaced with underscores in the tag value if `snake_case` is `true`. The default is `true`. + +##### `caseSensitive` + +For combo fields, case-sensitve field values are allowed if `caseSensitive` is `true`. The default is `false`. + +##### `min_value` + +For number fields, the lowest valid value. There is no default. + +##### `max_value` + +For number fields, the greatest valid value. There is no defualt. ## Icons