Fix broken types in imported library
This commit is contained in:
@@ -2,8 +2,8 @@ import { DangerButton, DarkButton, LightButton, PrimaryButton, SecondaryButton,
|
||||
import InfoButton from "$/component/button/InfoButton";
|
||||
import MoltenButton from "$/component/button/MoltenButton";
|
||||
import { MattrixwvTabGroup } from "$/component/tab";
|
||||
import type { ButtonProps, ButtonSize } from "$/types/Button";
|
||||
import type { TabGroupContent } from "$/types/Tab";
|
||||
import type { ButtonProps, ButtonSize } from "$/types/ButtonTypes";
|
||||
import type { TabGroupContent } from "$/types/TabTypes";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { useState, type JSX } from "react";
|
||||
import { BsBag } from "react-icons/bs";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { MattrixwvTabGroup } from "$/component/tab";
|
||||
import type { TabGroupContent } from "$/types/Tab";
|
||||
import type { TabGroupContent } from "$/types/TabTypes";
|
||||
import { CheckboxContent, DateContent, FileContent, RadioContent, SwitchContent, TextContent } from "@/util/InputUtils";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { MattrixwvTabGroup } from "$/component/tab";
|
||||
import type { TabGroupContent } from "$/types/Tab";
|
||||
import type { TabGroupContent } from "$/types/TabTypes";
|
||||
import { generateBarsContent, generateBlocksContent, generateDotsContent, generatePulsesContent, generateSpinnersContent, generateVariousContent } from "@/util/LoadingUtils";
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ import { DangerMessageBlock, DarkMessageBlock, LightMessageBlock, PrimaryMessage
|
||||
import InfoMessageBlock from '$/component/message/InfoMessageBlock';
|
||||
import MoltenMessageBlock from '$/component/message/MoltenMessageBlock';
|
||||
import { MattrixwvTabGroup } from '$/component/tab';
|
||||
import type { MessageBlockProps } from '$/types/Message';
|
||||
import type { TabGroupContent } from '$/types/Tab';
|
||||
import type { MessageBlockProps } from '$/types/MessageTypes';
|
||||
import type { TabGroupContent } from '$/types/TabTypes';
|
||||
import { createFileRoute } from '@tanstack/react-router';
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { MattrixwvTabGroup } from '$/component/tab';
|
||||
import type { TabGroupContent } from '$/types/Tab';
|
||||
import type { TabGroupContent } from '$/types/TabTypes';
|
||||
import { createFileRoute } from '@tanstack/react-router';
|
||||
import { BsXLg } from 'react-icons/bs';
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ import SuccessSwitch from "$/component/input/switch/SuccessSwitch";
|
||||
import TertiarySwitch from "$/component/input/switch/TertiarySwitch";
|
||||
import WarningSwitch from "$/component/input/switch/WarningSwitch";
|
||||
import TextArea from "$/component/input/text/TextArea";
|
||||
import type { MattrixwvSwitchSize } from "$/types/Input";
|
||||
import type { MattrixwvSwitchSize } from "$/types/InputTypes";
|
||||
import { useState } from "react";
|
||||
import { BsCheck, BsX } from "react-icons/bs";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user