1717 :cancel-icon =" componentOptions.cancelIcon"
1818 :cancel-icon-color =" componentOptions.cancelIconColor"
1919 :cancel-icon-text =" componentOptions.cancelIconText"
20+ :card-field =" componentOptions.cardField"
21+ :card-props =" componentOptions.cardProps"
2022 :close-siblings =" componentOptions.closeSiblings"
2123 :color =" componentOptions.color"
2224 :density =" componentOptions.density"
2729 :icon-true =" componentOptions.iconTrue"
2830 :icon-true-title =" componentOptions.iconTrueTitle"
2931 :item =" item"
32+ :label =" componentOptions.label"
3033 :loading =" item.raw.loading"
3134 :loading-wait =" componentOptions.loadingWait"
3235 name =" active"
4649 :cancel-button-title =" componentOptions.cancelButtonTitle"
4750 :cancel-button-variant =" componentOptions.cancelButtonVariant"
4851 :cancel-icon-color =" componentOptions.cancelIconColor"
52+ :card-field =" componentOptions.cardField"
53+ :card-props =" componentOptions.cardProps"
4954 :clearable =" componentOptions.clearable"
5055 :close-siblings =" componentOptions.closeSiblings"
5156 :color =" componentOptions.color"
5762 :display-append-inner-icon-color =" componentOptions.displayAppendInnerIconColor"
5863 :empty-text =" componentOptions.emptyText"
5964 :field-only =" componentOptions.fieldOnly"
65+ :hide-details =" componentOptions.hideDetails"
6066 :hide-selected =" componentOptions.hideSelected"
6167 :item =" item"
6268 item-title =" name"
6369 item-value =" id"
6470 :items =" users"
71+ :label =" componentOptions.label"
6572 :loading =" item.raw.loading"
6673 :loading-wait =" componentOptions.loadingWait"
6774 :menu =" componentOptions.menu"
9198 :cancel-button-title =" componentOptions.cancelButtonTitle"
9299 :cancel-button-variant =" componentOptions.cancelButtonVariant"
93100 :cancel-icon-color =" componentOptions.cancelIconColor"
101+ :card-field =" componentOptions.cardField"
102+ :card-props =" componentOptions.cardProps"
94103 :clearable =" componentOptions.clearable"
95104 :close-siblings =" componentOptions.closeSiblings"
96105 :color =" componentOptions.color"
105114 :display-prepend-inner-icon =" componentOptions.displayPrependInnerIcon"
106115 :display-prepend-inner-icon-color =" componentOptions.displayPrependInnerIconColor"
107116 :field-only =" componentOptions.fieldOnly"
117+ :hide-details =" componentOptions.hideDetails"
108118 :item =" item"
119+ :label =" componentOptions.label"
109120 :loading =" item.raw.loading"
110121 :loading-wait =" componentOptions.loadingWait"
111122 name =" title"
138149 :cancel-button-title =" componentOptions.cancelButtonTitle"
139150 :cancel-button-variant =" componentOptions.cancelButtonVariant"
140151 :cancel-icon-color =" componentOptions.cancelIconColor"
152+ :card-field =" componentOptions.cardField"
153+ :card-props =" componentOptions.cardProps"
141154 :close-siblings =" componentOptions.closeSiblings"
142155 :color =" componentOptions.color"
143156 :density =" componentOptions.density"
147160 :display-append-inner-icon =" componentOptions.displayAppendInnerIcon"
148161 :display-append-inner-icon-color =" componentOptions.displayAppendInnerIconColor"
149162 :field-only =" componentOptions.fieldOnly"
163+ :hide-details =" componentOptions.hideDetails"
150164 :item =" item"
165+ :label =" componentOptions.label"
151166 :loading =" item.raw.loading"
152167 :loading-wait =" componentOptions.loadingWait"
153168 name =" body"
170185 <template #[` item.range ` ]=" { item } " >
171186 <VInlineCustomField
172187 v-model =" item.raw.range"
188+ :card-field =" componentOptions.cardField"
189+ :card-props =" componentOptions.cardProps"
173190 :loading =" item.raw.loading"
174191 @update =" updatedValue(item.raw, 'range')"
175192 >
176193 <template #default =" " >
177194 <v-slider
178195 v-model =" item.raw.range"
196+ hide-details
179197 show-ticks
180198 step =" 10"
181199 ></v-slider >
190208 :cancel-button-title =" componentOptions.cancelButtonTitle"
191209 :cancel-button-variant =" componentOptions.cancelButtonVariant"
192210 :cancel-icon-color =" componentOptions.cancelIconColor"
211+ :card-field =" componentOptions.cardField"
212+ :card-props =" componentOptions.cardProps"
193213 :close-siblings =" componentOptions.closeSiblings"
194214 :color =" componentOptions.color"
195215 :density =" componentOptions.density"
198218 :icon-false-title =" componentOptions.iconFalseTitle"
199219 :icon-true-title =" componentOptions.iconTrueTitle"
200220 :item =" item"
221+ :label =" componentOptions.label"
201222 :loading =" item.raw.loading"
202223 :loading-wait =" componentOptions.loadingWait"
203224 name =" reviewed"
@@ -238,6 +259,13 @@ const componentOptions = reactive({
238259 cancelButtonVariant: ' text' ,
239260 cancelIcon: undefined ,
240261 cancelIconColor: ' default' ,
262+ cardField: true ,
263+ cardProps: {
264+ color: ' --v-theme-primary' ,
265+ elevation: 0 ,
266+ variant: ' flat' ,
267+ width: undefined ,
268+ },
241269 clearable: false ,
242270 closeSiblings: false ,
243271 color: ' primary' ,
@@ -257,11 +285,13 @@ const componentOptions = reactive({
257285 // displayPrependInnerIconSize: 'x-small',
258286 emptyText: ' empty' ,
259287 fieldOnly: false ,
288+ hideDetails: true ,
260289 hideSelected: false ,
261290 iconFalse: undefined ,
262291 iconFalseTitle: undefined ,
263292 iconTrue: undefined ,
264293 iconTrueTitle: undefined ,
294+ label: undefined ,
265295 loadingWait: true ,
266296 menu: true ,
267297 rules: {
0 commit comments