File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/components-vue/src/components/table Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 180
180
<!-- Row children content -->
181
181
<tr class =" no--hover --width-100" >
182
182
<td :colspan =" propertiesMeta.length + 2" >
183
- <div
183
+ <BaseBox
184
184
v-show =" visibility[nodeIndex].show"
185
- class =" box --button --bdr-solid --bgColor-none"
185
+ :theme =" theme || themeValues"
186
+ transparent
187
+ button
188
+ solid
186
189
>
187
190
<slot
188
191
v-bind =" {
194
197
show: visibility[nodeIndex].show,
195
198
}"
196
199
></slot >
197
- </div >
200
+ </BaseBox >
198
201
</td >
199
202
</tr >
200
203
<!-- Row children actions (Acts as a divider of rows when children are hidden) -->
277
280
import InputToggle from " ../input/Toggle.vue" ;
278
281
import ValueComplex from " ../value/Complex.vue" ;
279
282
import Dropdown from " ../dropdown/Simple.vue" ;
283
+ import BaseBox from " ../base/Box.vue" ;
280
284
281
285
import type { iTableChildProps } from " ../../types/props" ;
282
286
import useTheme from " ../../composables/theme" ;
You can’t perform that action at this time.
0 commit comments