Skip to content

Commit 2a642f6

Browse files
Merge pull request #2235 from appbaseio/feat/compound-clause
Feat/compound clause
2 parents c24da41 + 5e0d9b3 commit 2a642f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+48
-0
lines changed

packages/maps/src/components/basic/GeoDistanceDropdown.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,7 @@ GeoDistanceDropdown.propTypes = {
583583
beforeValueChange: types.func,
584584
className: types.string,
585585
componentId: types.stringRequired,
586+
compoundClause: types.compoundClause,
586587
countries: types.stringArray,
587588
customQuery: types.func,
588589
data: types.data,

packages/maps/src/components/basic/GeoDistanceSlider.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ GeoDistanceSlider.propTypes = {
558558
beforeValueChange: types.func,
559559
className: types.string,
560560
componentId: types.stringRequired,
561+
compoundClause: types.compoundClause,
561562
countries: types.stringArray,
562563
customQuery: types.func,
563564
data: types.data,

packages/maps/src/components/result/ReactiveGoogleMap.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ ReactiveGoogleMap.propTypes = {
185185
center: types.location,
186186
className: types.string,
187187
componentId: types.stringRequired,
188+
compoundClause: types.compoundClause,
188189
dataField: types.stringRequired,
189190
defaultCenter: types.location,
190191
defaultMapStyle: types.string,

packages/maps/src/components/result/ReactiveMap.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,7 @@ ReactiveMap.propTypes = {
10301030
center: types.location,
10311031
className: types.string,
10321032
componentId: types.stringRequired,
1033+
compoundClause: types.compoundClause,
10331034
dataField: types.stringRequired,
10341035
defaultCenter: types.location,
10351036
defaultMapStyle: types.string,

packages/maps/src/components/result/ReactiveOpenStreetMap.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,7 @@ ReactiveOpenStreetMap.propTypes = {
231231
center: types.location,
232232
className: types.string,
233233
componentId: types.stringRequired,
234+
compoundClause: types.compoundClause,
234235
dataField: types.stringRequired,
235236
defaultCenter: types.location,
236237
defaultZoom: types.number,

packages/vue/src/components/basic/ReactiveComponent.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const ReactiveComponent = {
2525
name: 'ReactiveComponent',
2626
props: {
2727
componentId: types.stringRequired,
28+
compoundClause: types.compoundClause,
2829
aggregationField: types.string,
2930
aggregationSize: VueTypes.number,
3031
size: VueTypes.number,

packages/vue/src/components/list/MultiDropdownList.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const MultiDropdownList = {
5050
beforeValueChange: types.func,
5151
className: VueTypes.string.def(''),
5252
componentId: types.stringRequired,
53+
compoundClause: types.compoundClause,
5354
customQuery: types.func,
5455
dataField: types.stringRequired,
5556
defaultValue: types.stringArray,

packages/vue/src/components/list/MultiList.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const MultiList = {
4242
beforeValueChange: types.func,
4343
className: VueTypes.string.def(''),
4444
componentId: types.stringRequired,
45+
compoundClause: types.compoundClause,
4546
customQuery: types.func,
4647
dataField: types.stringRequired,
4748
defaultQuery: types.func,

packages/vue/src/components/list/SingleDropdownList.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const SingleDropdownList = {
4848
beforeValueChange: types.func,
4949
className: VueTypes.string.def(''),
5050
componentId: types.stringRequired,
51+
compoundClause: types.compoundClause,
5152
customQuery: types.func,
5253
dataField: types.stringRequired,
5354
defaultQuery: types.func,

packages/vue/src/components/list/SingleList.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const SingleList = {
3737
beforeValueChange: types.func,
3838
className: VueTypes.string.def(''),
3939
componentId: types.stringRequired,
40+
compoundClause: types.compoundClause,
4041
customQuery: types.func,
4142
dataField: types.stringRequired,
4243
defaultValue: types.string,

0 commit comments

Comments
 (0)