Formatted class typing
parent
937d690711
commit
067c29b071
|
@ -284,7 +284,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
tabview: {
|
tabview: {
|
||||||
navContainer: ({ props, context, parent }) => ({
|
navContainer: ({ props }) => ({
|
||||||
class: [
|
class: [
|
||||||
'relative', // Relative positioning.
|
'relative', // Relative positioning.
|
||||||
{ 'overflow-hidden': props.scrollable } // Overflow condition.
|
{ 'overflow-hidden': props.scrollable } // Overflow condition.
|
||||||
|
@ -1128,9 +1128,9 @@ export default {
|
||||||
icon: 'w-4 h-4 transition-all duration-200 text-white text-base dark:text-gray-900'
|
icon: 'w-4 h-4 transition-all duration-200 text-white text-base dark:text-gray-900'
|
||||||
},
|
},
|
||||||
radiobutton: {
|
radiobutton: {
|
||||||
root: ({ props }) => ({
|
root: {
|
||||||
class: ['relative inline-flex cursor-pointer select-none align-bottom', 'w-6 h-6']
|
class: ['relative inline-flex cursor-pointer select-none align-bottom', 'w-6 h-6']
|
||||||
}),
|
},
|
||||||
input: ({ props }) => ({
|
input: ({ props }) => ({
|
||||||
class: [
|
class: [
|
||||||
'flex justify-center items-center',
|
'flex justify-center items-center',
|
||||||
|
|
Loading…
Reference in New Issue