Skip to content

Commit fd16dad

Browse files
committed
feat: compoundClause support
1 parent b6ba1e4 commit fd16dad

27 files changed

+27
-0
lines changed

packages/web/src/components/basic/NumberBox.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ NumberBox.propTypes = {
228228
// component props
229229
className: types.string,
230230
componentId: types.stringRequired,
231+
compoundClause: types.compoundClause,
231232
data: types.dataNumberBox,
232233
dataField: types.stringRequired,
233234
defaultValue: types.number,

packages/web/src/components/basic/ReactiveComponent.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ ReactiveComponent.propTypes = {
337337
// component props
338338
children: types.func,
339339
componentId: types.stringRequired,
340+
compoundClause: types.compoundClause,
340341
defaultQuery: types.func,
341342
customQuery: types.func,
342343
defaultValue: types.any, // eslint-disable-line

packages/web/src/components/chart/ReactiveChart.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,7 @@ ReactiveChart.propTypes = {
751751
// ---- user props ---
752752
// props to configure query
753753
componentId: types.stringRequired,
754+
compoundClause: types.compoundClause,
754755
URLParams: types.bool,
755756
dataField: types.stringRequired,
756757
showFilter: types.bool,

packages/web/src/components/date/DatePicker.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ DatePicker.propTypes = {
261261
className: types.string,
262262
clickUnselectsDay: types.bool,
263263
componentId: types.stringRequired,
264+
compoundClause: types.compoundClause,
264265
dataField: types.stringRequired,
265266
dayPickerInputProps: types.props,
266267
defaultValue: types.date,

packages/web/src/components/date/DateRange.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ DateRange.propTypes = {
533533
beforeValueChange: types.func,
534534
className: types.string,
535535
componentId: types.stringRequired,
536+
compoundClause: types.compoundClause,
536537
dataField: types.dataFieldArray,
537538
dayPickerInputProps: types.props,
538539
defaultValue: types.dateObject,

packages/web/src/components/list/MultiDataList.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,6 +563,7 @@ MultiDataList.propTypes = {
563563
children: types.func,
564564
className: types.string,
565565
componentId: types.stringRequired,
566+
compoundClause: types.compoundClause,
566567
customQuery: types.func,
567568
defaultQuery: types.func,
568569
data: types.data,

packages/web/src/components/list/MultiDropdownList.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,7 @@ MultiDropdownList.propTypes = {
526526
children: types.func,
527527
className: types.string,
528528
componentId: types.stringRequired,
529+
compoundClause: types.compoundClause,
529530
customQuery: types.func,
530531
defaultQuery: types.func,
531532
dataField: types.stringRequired,

packages/web/src/components/list/MultiList.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,7 @@ MultiList.propTypes = {
706706
children: types.func,
707707
className: types.string,
708708
componentId: types.stringRequired,
709+
compoundClause: types.compoundClause,
709710
customQuery: types.func,
710711
defaultQuery: types.func,
711712
dataField: types.stringRequired,

packages/web/src/components/list/SingleDataList.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,7 @@ SingleDataList.propTypes = {
501501
children: types.func,
502502
className: types.string,
503503
componentId: types.stringRequired,
504+
compoundClause: types.compoundClause,
504505
customQuery: types.func,
505506
data: types.data,
506507
dataField: types.stringRequired,

packages/web/src/components/list/SingleDropdownList.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ SingleDropdownList.propTypes = {
402402
children: types.func,
403403
className: types.string,
404404
componentId: types.stringRequired,
405+
compoundClause: types.compoundClause,
405406
customQuery: types.func,
406407
defaultQuery: types.func,
407408
dataField: types.stringRequired,

0 commit comments

Comments
 (0)