fix: storybook build error (#8041)

This commit is contained in:
sriram veeraghanta 2025-10-30 19:21:32 +05:30 committed by GitHub
parent e8bdc47d6a
commit 961cdf6c8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@
import * as React from "react";
import { DayPicker } from "react-day-picker";
import { ChevronLeftIcon } from "@plane/propel/icons";
import { ChevronLeftIcon } from "../icons";
import { cn } from "../utils";

View file

@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { ChevronDownIcon } from "@plane/propel/icons";
import { ChevronDownIcon } from "../icons";
import { Collapsible } from "./collapsible";
const meta = {

View file

@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react-vite";
import { Copy, Download, Edit, Share, Trash, Star, Archive } from "lucide-react";
import { ChevronRightIcon } from "@plane/propel/icons";
import { ChevronRightIcon } from "../icons";
import { ContextMenu } from "./context-menu";
// cannot use satisfies here because base-ui does not have portable types.

View file

@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { CloseIcon } from "@plane/propel/icons";
import { CloseIcon } from "../icons";
import { Dialog, EDialogWidth } from "./root";
const meta = {

View file

@ -151,7 +151,7 @@ import {
Search,
User,
} from "lucide-react";
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "@plane/propel/icons";
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "../icons";
export const LUCIDE_ICONS_LIST = [
{ name: "Activity", element: Activity },

View file

@ -1,7 +1,7 @@
import * as React from "react";
import { Menu as BaseMenu } from "@base-ui-components/react/menu";
import { MoreHorizontal } from "lucide-react";
import { ChevronDownIcon, ChevronRightIcon } from "@plane/propel/icons";
import { ChevronDownIcon, ChevronRightIcon } from "../icons";
import { cn } from "../utils/classname";
import { TMenuProps, TSubMenuProps, TMenuItemProps } from "./types";

View file

@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { CloseIcon } from "@plane/propel/icons";
import { CloseIcon } from "../icons";
import { Popover } from "./root";
// cannot use satifies here because base-ui does not have portable types.