@react-querybuilder/native
Advanced tools
Changelog
[v6.1.3] - 2023-03-24
size
, variant
, and colorScheme
.schema
prop will no longer be passed down to Ant Design and Chakra UI components.Changelog
[v6.1.2] - 2023-03-21
parseCEL
now recognizes dot-separated identifiers correctly.Changelog
[v6.1.0] - 2023-03-16
formatQuery
option quoteFieldNamesWith
now applies to values that represent field names (i.e. valueSource: 'field'
) when exporting to a SQL-based format.formatQuery
option ruleProcessor
now applies to the "sql" format (though notably not the other SQL-based formats, "parameterized" and "parameterized_named"), allowing complete control over each rule's translation to SQL. The default rule processor for "sql" is exported as defaultRuleProcessorSQL
.Changelog
[v6.0.7] - 2023-03-10
valueProcessor
functions called from formatQuery
will now receive all relevant options, not only parseNumbers
.Changelog
[v6.0.6] - 2023-03-07
parseSQL
in the previous version was capturing too many characters when field names were wrapped in delimiters.Changelog
[v6.0.5] - 2023-03-06
parseSQL
is now much more permissive of valid characters within strings and identifiers (whether they are delimited or plain). ([#478] only added recognition of spaces within delimited identifiers.)Changelog
[v6.0.4] - 2023-03-05
parseSQL
now recognizes field names wrapped in square brackets, like [field name]
. (The corresponding update to formatQuery
was made in [#463] as part of v6.0.0).Changelog
[v6.0.3] - 2023-03-02
process is not defined
issue.BulmaValueSelector
now adds the "is-multiple"
class to the wrapper div
when the multiple
prop is true
.Changelog
[v6.0.2] - 2023-02-25
parseSQL
now handles escaped single quotes within strings