mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
28 lines
747 B
TypeScript
28 lines
747 B
TypeScript
export default function resetSelectStyles() {
|
|
return {
|
|
clearIndicator: () => ({}),
|
|
container: () => ({}),
|
|
control: () => ({}),
|
|
dropdownIndicator: () => ({}),
|
|
group: () => ({}),
|
|
groupHeading: () => ({}),
|
|
indicatorsContainer: () => ({}),
|
|
indicatorSeparator: () => ({}),
|
|
input: () => ({}),
|
|
loadingIndicator: () => ({}),
|
|
loadingMessage: () => ({}),
|
|
menu: () => ({}),
|
|
menuList: ({ maxHeight }: { maxHeight: number }) => ({
|
|
maxHeight,
|
|
}),
|
|
multiValue: () => ({}),
|
|
multiValueLabel: () => ({}),
|
|
multiValueRemove: () => ({}),
|
|
noOptionsMessage: () => ({}),
|
|
option: () => ({}),
|
|
placeholder: () => ({}),
|
|
singleValue: () => ({}),
|
|
valueContainer: () => ({}),
|
|
};
|
|
}
|