2024-02-21 10:48:13 +00:00
|
|
|
export default {
|
|
|
|
root: {
|
|
|
|
background: '{form.field.background}',
|
2024-03-13 18:50:24 +00:00
|
|
|
disabledBackground: '{form.field.disabled.background}',
|
|
|
|
filledBackground: '{form.field.filled.background}',
|
|
|
|
filledFocusBackground: '{form.field.filled.focus.background}',
|
2024-02-21 10:48:13 +00:00
|
|
|
borderColor: '{form.field.border.color}',
|
2024-03-13 18:50:24 +00:00
|
|
|
hoverBorderColor: '{form.field.hover.border.color}',
|
|
|
|
focusBorderColor: '{form.field.focus.border.color}',
|
|
|
|
invalidBorderColor: '{form.field.invalid.border.color}',
|
|
|
|
color: '{form.field.color}',
|
|
|
|
disabledColor: '{form.field.disabled.color}',
|
|
|
|
placeholderColor: '{form.field.placeholder.color}',
|
2024-05-08 09:58:43 +00:00
|
|
|
shadow: '{form.field.shadow}',
|
|
|
|
paddingX: '{form.field.padding.x}',
|
|
|
|
paddingY: '{form.field.padding.y}',
|
|
|
|
borderRadius: '{form.field.border.radius}',
|
|
|
|
focusRing: {
|
|
|
|
width: '{form.field.focus.ring.width}',
|
|
|
|
style: '{form.field.focus.ring.style}',
|
|
|
|
color: '{form.field.focus.ring.color}',
|
|
|
|
offset: '{form.field.focus.ring.offset}',
|
|
|
|
shadow: '{form.field.focus.ring.shadow}'
|
|
|
|
}
|
2024-02-21 10:48:13 +00:00
|
|
|
},
|
2024-05-05 17:12:09 +00:00
|
|
|
dropdown: {
|
2024-05-08 09:58:43 +00:00
|
|
|
width: '2.5rem',
|
2024-05-05 17:12:09 +00:00
|
|
|
color: '{form.field.icon.color}'
|
|
|
|
},
|
|
|
|
overlay: {
|
|
|
|
background: '{overlay.select.background}',
|
|
|
|
borderColor: '{overlay.select.border.color}',
|
2024-05-08 09:58:43 +00:00
|
|
|
borderRadius: '{overlay.select.border.radius}',
|
|
|
|
color: '{overlay.select.color}',
|
|
|
|
shadow: '{overlay.select.shadow}'
|
|
|
|
},
|
|
|
|
tree: {
|
|
|
|
padding: '{list.padding}'
|
|
|
|
},
|
|
|
|
emptyMessage: {
|
|
|
|
padding: '{list.option.padding}'
|
|
|
|
},
|
|
|
|
chip: {
|
|
|
|
borderRadius: '{border.radius.sm}'
|
2024-02-21 10:48:13 +00:00
|
|
|
}
|
|
|
|
};
|