Skip to content

Commit

Permalink
chore(Dropdown): adjust imports
Browse files Browse the repository at this point in the history
  • Loading branch information
talkor committed Oct 8, 2024
1 parent 6645d09 commit 682599f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import cx from "classnames";
import { BaseSizes, SIZES_VALUES } from "../../constants";
import React, { forwardRef, useCallback, useMemo, useRef, useState, useEffect } from "react";
import Select, { InputProps, components, createFilter, ActionMeta } from "react-select";
import AsyncSelect from "react-select/async/dist/react-select.esm.js";
import BaseSelect from "react-select/base/dist/react-select.esm.js";
import AsyncSelect from "react-select/async/dist/react-select.cjs.js";
import BaseSelect from "react-select/base/dist/react-select.cjs.js";
import { noop as NOOP } from "lodash-es";
import MenuComponent from "./components/menu/menu";
import DropdownIndicatorComponent from "./components/DropdownIndicator/DropdownIndicator";
Expand Down
4 changes: 2 additions & 2 deletions packages/core/types/packages.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Packages
declare module "react-windowed-select";
declare module "react-select/async/dist/react-select.esm.js";
declare module "react-select/base/dist/react-select.esm.js";
declare module "react-select/async/dist/react-select.cjs.js";
declare module "react-select/base/dist/react-select.cjs.js";

0 comments on commit 682599f

Please sign in to comment.