File tree Expand file tree Collapse file tree 3 files changed +48
-4
lines changed
theme-saas/src/query-builder
vue/src/query-builder/src/components Expand file tree Collapse file tree 3 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 171171 flex : auto ;
172172 }
173173
174+ .custom-rule-value-editor {
175+ display : flex ;
176+ width : 40% ;
177+
178+ & > div {
179+ width : 100% ;
180+ }
181+
182+ &_multi {
183+ display : flex ;
184+ gap : 8px ;
185+
186+ &-item {
187+ width : 50% ;
188+
189+ & > div {
190+ width : 100% ;
191+ }
192+ }
193+ }
194+ }
195+
174196 .rule-item--wrap {
175197 display : flex ;
176198 padding : 0 10px ;
Original file line number Diff line number Diff line change 167167 flex : auto ;
168168 }
169169
170+ .custom-rule-value-editor {
171+ display : flex ;
172+ width : 40% ;
173+
174+ & > div {
175+ width : 100% ;
176+ }
177+
178+ &_multi {
179+ display : flex ;
180+ gap : 8px ;
181+
182+ &-item {
183+ width : 50% ;
184+
185+ & > div {
186+ width : 100% ;
187+ }
188+ }
189+ }
190+ }
191+
170192 .rule-item--wrap {
171193 display : flex ;
172194 padding : 0 10px ;
Original file line number Diff line number Diff line change 11<template >
2- <div v-if =" !show" class = " hide " ></div >
2+ <div v-if =" !show" style = " display : none " ></div >
33 <span
44 v-else-if =" ['text', 'select'].includes(type) && ['between', 'notBetween'].includes(operator)"
55 :data-testid =" testID"
6666 :events =" { change }"
6767 ></custom-input >
6868 </span >
69- <span v-else-if =" type === 'custom' && allProps.fieldData.component" >
70- <div v-if =" ['between', 'notBetween'].includes(operator)" >
71- <div v-for =" (key, i) in ['from', 'to']" :key =" key" >
69+ <span v-else-if =" type === 'custom' && allProps.fieldData.component" class = " custom-rule-value-editor " >
70+ <div v-if =" ['between', 'notBetween'].includes(operator)" class = " custom-rule-value-editor_multi " >
71+ <div v-for =" (key, i) in ['from', 'to']" :key =" key" class = " custom-rule-value-editor_multi-item " >
7272 <component
7373 :is =" allProps.fieldData.component"
7474 v-bind =" getProps(allProps.fieldData)"
You can’t perform that action at this time.
0 commit comments