File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-card v-if =" control.visible" :class =" styles.arrayList.root" >
3
- <v-card-title >
2
+ <v-card v-if =" control.visible" :class =" styles.arrayList.root" v-bind = " cardProps " >
3
+ <v-card-title :class = " styles.arrayList.title " >
4
4
<v-toolbar flat :class =" styles.arrayList.toolbar" >
5
5
<v-toolbar-title :class =" styles.arrayList.label" >{{
6
6
computedLabel
@@ -335,13 +335,15 @@ const controlRenderer = defineComponent({
335
335
control .vuetifyProps (' v-expansion-panels' )
336
336
)
337
337
);
338
+ const cardProps = computed (() => control .vuetifyProps (' v-card' ) )
338
339
const suggestToDelete = ref <null | number >(null );
339
340
// indicate to our child renderers that we are increasing the "nested" level
340
341
useNested (' array' );
341
342
const t = useTranslator ();
342
343
return {
343
344
... control ,
344
345
currentlyExpanded ,
346
+ cardProps ,
345
347
expansionPanelsProps ,
346
348
suggestToDelete ,
347
349
t ,
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export const defaultStyles: Styles = {
23
23
arrayList : {
24
24
root : 'array-list' ,
25
25
toolbar : 'array-list-toolbar' ,
26
+ title : 'array-list-title' ,
26
27
validationIcon : 'array-list-validation' ,
27
28
addButton : 'array-list-add' ,
28
29
label : 'array-list-label' ,
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export interface Styles {
37
37
arrayList : {
38
38
root ?: string ;
39
39
toolbar ?: string ;
40
+ title ?: string ,
40
41
validationIcon ?: string ;
41
42
container ?: string ;
42
43
addButton ?: string ;
You can’t perform that action at this time.
0 commit comments