Keep any types for selects
This commit is contained in:
parent
94be3a7448
commit
d631754b50
|
@ -4,10 +4,10 @@ import { useEffect, useState } from "react";
|
||||||
import { styles } from "./styles";
|
import { styles } from "./styles";
|
||||||
import { Options } from "./types";
|
import { Options } from "./types";
|
||||||
import CreatableSelect from "react-select/creatable";
|
import CreatableSelect from "react-select/creatable";
|
||||||
import Select, { ActionMeta } from "react-select";
|
import Select from "react-select";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
onChange: (newValue: unknown, actionMeta: ActionMeta<unknown>) => void;
|
onChange: any;
|
||||||
showDefaultValue?: boolean;
|
showDefaultValue?: boolean;
|
||||||
defaultValue?:
|
defaultValue?:
|
||||||
| {
|
| {
|
||||||
|
|
|
@ -3,10 +3,9 @@ import { useEffect, useState } from "react";
|
||||||
import CreatableSelect from "react-select/creatable";
|
import CreatableSelect from "react-select/creatable";
|
||||||
import { styles } from "./styles";
|
import { styles } from "./styles";
|
||||||
import { Options } from "./types";
|
import { Options } from "./types";
|
||||||
import { ActionMeta } from "react-select";
|
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
onChange: (newValue: unknown, actionMeta: ActionMeta<unknown>) => void;
|
onChange: any;
|
||||||
defaultValue?: {
|
defaultValue?: {
|
||||||
value: number;
|
value: number;
|
||||||
label: string;
|
label: string;
|
||||||
|
|
Ŝarĝante…
Reference in New Issue