@@ -14,13 +14,14 @@ import { componentName } from '../utils/globals';
1414
1515// -------------------------------------------------- Main Container //
1616export const useInlineFieldsContainerClass : UseInlineFieldsContainerClass = ( options ) => {
17- const { field = '' , density = '' , disabled = false , iconSet = 'mdi' , loading = false , loadingWait, tableField = false , variant } = options ;
17+ const { cell = false , field = '' , density = '' , disabled = false , iconSet = 'mdi' , loading = false , loadingWait, tableField = false , variant } = options ;
1818
1919 const hasDensityAndVariant = density && variant ;
2020
2121 return {
2222 [ `${ componentName } ` ] : true ,
2323 [ `${ componentName } --container` ] : true ,
24+ [ `${ componentName } --container-cell` ] : cell ,
2425 [ `${ componentName } --container-disabled` ] : unref ( disabled ) ,
2526 [ `${ componentName } --container-table` ] : tableField ,
2627 [ `${ componentName } --container-icon-set-${ iconSet } ` ] : true ,
@@ -47,9 +48,11 @@ export const useInlineFieldsContainerClass: UseInlineFieldsContainerClass = (opt
4748
4849// -------------------------------------------------- Display Value Container //
4950export const useDisplayContainerClass : UseDisplayContainerClass = ( options ) => {
50- const { field = '' , density = '' } = options ;
51+ const { cell = false , cellUnderlineFullWidth = true , field = '' , density = '' } = options ;
5152
5253 return {
54+ [ `${ componentName } --display-container-cell` ] : cell ,
55+ [ `${ componentName } --display-container-cell-underline-full-width` ] : cellUnderlineFullWidth ,
5356 [ `${ componentName } --display-container` ] : true ,
5457 [ `${ componentName } --display-wrapper-value` ] : true ,
5558 [ `${ field } ` ] : true ,
@@ -76,6 +79,7 @@ export const useDisplaySelectionControlClasses: UseDisplaySelectionControlClass
7679 const { density = '' } = options ;
7780
7881 return {
82+ [ `${ componentName } --selection-control` ] : true ,
7983 [ `v-selection-control--density-${ density } ` ] : true ,
8084 } ;
8185} ;
0 commit comments