1.0.0-beta.85
- Changed
Widget#scheduleRender()
to schedule render for all subjects when no subject is specified (invoked without parameters) - Bumped jora to 1.0.0-beta.13
- Added display of tens marks in
struct
view - Added new actions for expanded values in the
struct
view:These actions activate when certain actions are available in the context. First, if the
queryAcceptChanges
action exists and returns a truthy value for thestruct
's data (root value), then specific actions likequerySubquery
andqueryAppend
are checked for existence. If they exist, the relevant actions are added to the actions menu. These actions should take apath
andstruct
view data and make relevant changes to the query that the currentstruct
view instance is based on. Thediscovery
page provides such actions in the context, so anystruct
view that takes query editor output as its input data provides these actions.- "Create a subquery from the path" – calls the
querySubquery
action from the context (i.e.,#.action.querySubquery
), which creates on thediscovery
page a new node in the query graph with the selected path. - "Append path to current query" – calls the
queryAppend
action, which appends on thediscovery
page the selected path to the current query in the query editor.
- "Create a subquery from the path" – calls the
- Changes for
table
view:- Changed rendering of arrays when it's a row value, to render as other non-object values using
struct
view - Renamed
scalarCol
option intovalueCol
- Tweaked styles to dim the display of
true
,false
,null
,NaN
, andInfinity
values to differentiate them from strings and numbers - Changed in the
cols
configuration:- Added the
colWhen
option (likewhen
orwhenData
) for thetable
view to conditionally render columns based on the table's data - Added the
contentWhen
option (likewhen
orwhenData
) fortable-cell
to conditionally render cell content based on the cell's data - Changed the
when
andwhenData
options to behave as regular options for thetable-cell
view:- Previously,
when
canceled column rendering; nowcolWhen
should be used instead - Previously,
whenData
canceled cell content rendering; nowcontentWhen
(thetable-cell
option) should be used instead
- Previously,
- Added the
- Changed rendering of arrays when it's a row value, to render as other non-object values using