Skip to content

Commit 6f2472e

Browse files
committed
feat: compound clause prop
1 parent 5b0d775 commit 6f2472e

17 files changed

+18
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const ReactiveComponent = {
2424
name: 'ReactiveComponent',
2525
props: {
2626
componentId: types.stringRequired,
27+
compoundClause: types.compoundClause,
2728
aggregationField: types.string,
2829
aggregationSize: VueTypes.number,
2930
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,

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const ToggleButton = {
1616
name: 'ToggleButton',
1717
props: {
1818
componentId: types.stringRequired,
19+
compoundClause: types.compoundClause,
1920
customQuery: types.func,
2021
data: types.data,
2122
dataField: types.stringRequired,

packages/vue/src/components/maps/ReactiveGoogleMap.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const ReactiveGoogleMap = {
1212
props: {
1313
className: types.string,
1414
componentId: types.stringRequired,
15+
compoundClause: types.compoundClause,
1516
dataField: types.stringRequired,
1617
defaultQuery: VueTypes.func,
1718
loader: types.title,
@@ -161,6 +162,7 @@ const ReactiveGoogleMap = {
161162
getMapPromise={this.getMapRefPromise}
162163
renderMap={this.renderMap}
163164
componentId={this.componentId}
165+
compoundClause={this.compoundClause}
164166
className={this.className}
165167
dataField={this.dataField}
166168
defaultZoom={this.defaultZoom}

packages/vue/src/components/maps/ReactiveMap.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const ReactiveMap = {
9999
props: {
100100
className: types.string,
101101
componentId: types.stringRequired,
102+
compoundClause: types.compoundClause,
102103
dataField: types.stringRequired,
103104
react: types.react,
104105
size: types.number,

packages/vue/src/components/range/DynamicRangeSlider.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const DynamicRangeSlider = {
4141
className: VueTypes.string.def(''),
4242
rangeLabels: types.func,
4343
componentId: types.stringRequired,
44+
compoundClause: types.compoundClause,
4445
customQuery: types.func,
4546
data: types.data,
4647
dataField: types.stringRequired,

packages/vue/src/components/range/MultiRange.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const MultiRange = {
2727
beforeValueChange: types.func,
2828
className: VueTypes.string.def(''),
2929
componentId: types.stringRequired,
30+
compoundClause: types.compoundClause,
3031
customQuery: types.func,
3132
data: types.data,
3233
dataField: types.stringRequired,

0 commit comments

Comments
 (0)