Fix broken types in imported library

This commit is contained in:
2025-08-10 23:11:56 -04:00
parent 4402edcfa0
commit 7a31eade87
153 changed files with 171 additions and 150 deletions

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import { Checkbox } from "@headlessui/react";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { CheckboxProps } from "$/types/Input";
import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";

View File

@@ -1,4 +1,4 @@
import type { DateInputProps } from "$/types/Input";
import type { DateInputProps } from "$/types/InputTypes";
import clsx from "clsx";
import moment from "moment";

View File

@@ -1,4 +1,4 @@
import type { DateInputProps } from "$/types/Input";
import type { DateInputProps } from "$/types/InputTypes";
import clsx from "clsx";
import moment from "moment";

View File

@@ -1,4 +1,4 @@
import type { DateInputProps } from "$/types/Input";
import type { DateInputProps } from "$/types/InputTypes";
import clsx from "clsx";
import moment from "moment";

View File

@@ -1,4 +1,4 @@
import type { FileInputProps } from "$/types/Input";
import type { FileInputProps } from "$/types/InputTypes";
import { humanReadableBytes } from "$/util/FileUtil";
import clsx from "clsx";
import { useEffect, useRef, useState } from "react";

View File

@@ -1,5 +1,5 @@
import { SecondaryButton } from "$/component/button";
import type { FileInputProps } from "$/types/Input";
import type { FileInputProps } from "$/types/InputTypes";
import { humanReadableBytes } from "$/util/FileUtil";
import clsx from "clsx";
import { useRef, useState } from "react";

View File

@@ -1,4 +1,4 @@
import type { NumberInputProps } from "$/types/Input";
import type { NumberInputProps } from "$/types/InputTypes";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { NumberSliderProps } from "$/types/Input";
import type { NumberSliderProps } from "$/types/InputTypes";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import { Radio } from "@headlessui/react";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { RadioListProps } from "$/types/Input";
import type { RadioListProps } from "$/types/InputTypes";
import { RadioGroup } from "@headlessui/react";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { RadioButtonProps } from "$/types/Input";
import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvButtonSwitchProps } from "$/types/Input";
import type { MattrixwvButtonSwitchProps } from "$/types/InputTypes";
import { Switch } from "@headlessui/react";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import { Field, Label, Switch } from "@headlessui/react";
import clsx from "clsx";
import { Fragment } from "react/jsx-runtime";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { MattrixwvSwitchProps } from "$/types/Input";
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
import clsx from "clsx";
import MattrixwvSwitch from "./MattrixwvSwitch";

View File

@@ -1,4 +1,4 @@
import type { OptionInputProps } from "$/types/Input";
import type { OptionInputProps } from "$/types/InputTypes";
import { ListboxOption } from "@headlessui/react";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { SelectInputProps } from "$/types/Input";
import type { SelectInputProps } from "$/types/InputTypes";
import { Listbox, ListboxButton, ListboxOptions } from "@headlessui/react";
import clsx from "clsx";
import { BsChevronDown } from "react-icons/bs";

View File

@@ -1,4 +1,4 @@
import type { TextAreaProps } from "$/types/Input";
import type { TextAreaProps } from "$/types/InputTypes";
import clsx from "clsx";

View File

@@ -1,4 +1,4 @@
import type { TextInputProps } from "$/types/Input";
import type { TextInputProps } from "$/types/InputTypes";
import clsx from "clsx";