[WEB-5027] fix: replace lodash package with lodash-es (#7856)
* fix: replace lodash pacakge with lodash-es * fix: lint errors * fix: import fixes
This commit is contained in:
parent
c05a5eb5ee
commit
bedc1fae1f
199 changed files with 261 additions and 396 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import range from "lodash/range";
|
||||
import { range } from "lodash-es";
|
||||
import React from "react";
|
||||
|
||||
export const DropdownOptionsLoader = () => (
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { Combobox } from "@headlessui/react";
|
||||
import sortBy from "lodash/sortBy";
|
||||
import { sortBy } from "lodash-es";
|
||||
import React, { FC, useMemo, useRef, useState } from "react";
|
||||
import { usePopper } from "react-popper";
|
||||
// plane imports
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { Combobox } from "@headlessui/react";
|
||||
import sortBy from "lodash/sortBy";
|
||||
import { sortBy } from "lodash-es";
|
||||
import React, { FC, useMemo, useRef, useState } from "react";
|
||||
import { usePopper } from "react-popper";
|
||||
// plane imports
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import { combine } from "@atlaskit/pragmatic-drag-and-drop/combine";
|
||||
import { draggable, dropTargetForElements } from "@atlaskit/pragmatic-drag-and-drop/element/adapter";
|
||||
import { attachClosestEdge, extractClosestEdge } from "@atlaskit/pragmatic-drag-and-drop-hitbox/closest-edge";
|
||||
import { isEqual } from "lodash";
|
||||
import { isEqual } from "lodash-es";
|
||||
import React, { useEffect, useRef, useState } from "react";
|
||||
import { DropIndicator } from "../drop-indicator";
|
||||
import { cn } from "../utils";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue