From ae1ec571f82b07e6d057b05632e2c9b6948752ef Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Mon, 15 May 2023 23:26:23 +0200 Subject: [PATCH] Removed .d imports --- src/components/button.tsx | 1 - src/components/card.tsx | 1 - src/components/dialog.tsx | 1 - src/components/footer.tsx | 1 - src/components/header.tsx | 1 - src/components/input.tsx | 1 - src/components/layout.tsx | 1 - src/components/link.tsx | 1 - src/components/menu.tsx | 1 - src/components/output.tsx | 1 - src/components/row.tsx | 1 - src/components/truth-table.tsx | 2 -- src/index.tsx | 1 - src/truth-table.tsx | 1 - src/types/types.d.ts | 10 ++++------ 15 files changed, 4 insertions(+), 21 deletions(-) diff --git a/src/components/button.tsx b/src/components/button.tsx index 262c008..2aa7340 100644 --- a/src/components/button.tsx +++ b/src/components/button.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component, createSignal } from "solid-js"; -import type { ButtonProps, TitleProps } from "../types/types"; interface SwitchProps extends TitleProps { defaultValue?: boolean, diff --git a/src/components/card.tsx b/src/components/card.tsx index e199a3d..6794d55 100644 --- a/src/components/card.tsx +++ b/src/components/card.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component } from "solid-js"; -import type { CardProps } from "../types/types"; import { Link } from "./link"; const Card: Component = ( diff --git a/src/components/dialog.tsx b/src/components/dialog.tsx index 7355f81..8dbf5c5 100644 --- a/src/components/dialog.tsx +++ b/src/components/dialog.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { Dialog, DialogDescription, DialogPanel, DialogTitle } from "solid-headless"; -import type { TitleProps } from "../types/types"; import { Component, createEffect, createSignal, JSX } from "solid-js"; import { Button } from "./button"; import { Portal } from "solid-js/web"; diff --git a/src/components/footer.tsx b/src/components/footer.tsx index 3c627aa..14f6002 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component } from "solid-js"; -import type { SimpleProps } from "../types/types"; import { Link } from "./link"; const Footer: Component = ({ className }) => ( diff --git a/src/components/header.tsx b/src/components/header.tsx index dd3761e..a4a72ba 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component, Show } from "solid-js"; -import type { TitleProps } from "../types/types"; import { Icon } from "solid-heroicons"; import { chevronLeft } from "solid-heroicons/solid"; import { Link } from "./link"; diff --git a/src/components/input.tsx b/src/components/input.tsx index 63be4df..10bcf62 100644 --- a/src/components/input.tsx +++ b/src/components/input.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component, createSignal, JSX, onMount, Setter, Show } from "solid-js"; -import type { InputProps } from "../types/types"; import Row from "./row"; import { Icon } from "solid-heroicons"; import { magnifyingGlass, xMark } from "solid-heroicons/solid"; diff --git a/src/components/layout.tsx b/src/components/layout.tsx index a1f2cd2..e0a9d75 100644 --- a/src/components/layout.tsx +++ b/src/components/layout.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component } from "solid-js"; -import type { TitleProps } from "../types/types"; import Header from "./header"; import Footer from "./footer"; diff --git a/src/components/link.tsx b/src/components/link.tsx index d475b9a..6201263 100644 --- a/src/components/link.tsx +++ b/src/components/link.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component } from "solid-js"; -import type { LinkProps } from "../types/types"; export const Link: Component = ( { diff --git a/src/components/menu.tsx b/src/components/menu.tsx index 27f0351..631fd56 100644 --- a/src/components/menu.tsx +++ b/src/components/menu.tsx @@ -1,5 +1,4 @@ /* @refresh reload */ -import type { TitleProps } from "../types/types"; import { type Component, createEffect, createSignal, JSX, Show } from "solid-js"; import { Button } from "./button"; diff --git a/src/components/output.tsx b/src/components/output.tsx index c10b398..a15d0d9 100644 --- a/src/components/output.tsx +++ b/src/components/output.tsx @@ -1,7 +1,6 @@ /* @refresh reload */ import { Disclosure, DisclosureButton, DisclosurePanel, Transition } from "solid-headless"; import { Icon } from "solid-heroicons"; -import type { ChildProps, TitleProps } from "../types/types"; import { type Component, JSX } from "solid-js"; import { chevronUp } from "solid-heroicons/solid"; diff --git a/src/components/row.tsx b/src/components/row.tsx index 76975a0..47879ce 100644 --- a/src/components/row.tsx +++ b/src/components/row.tsx @@ -1,6 +1,5 @@ /* @refresh reload */ import { type Component } from "solid-js"; -import type { ChildProps } from "../types/types"; /** * A row that centers its children diff --git a/src/components/truth-table.tsx b/src/components/truth-table.tsx index 89e18c6..83ae479 100644 --- a/src/components/truth-table.tsx +++ b/src/components/truth-table.tsx @@ -1,6 +1,4 @@ /* @refresh reload */ -import type { SimpleProps } from "../types/types"; -import type { Table } from "../types/types"; import { For } from "solid-js/web"; import { type Component } from "solid-js"; diff --git a/src/index.tsx b/src/index.tsx index a10a875..077c2ed 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -5,7 +5,6 @@ import "./index.css"; import { type Component } from "solid-js"; import Layout from "./components/layout"; import Card from "./components/card"; -import type { CardProps } from "./types/types"; import { Link } from "./components/link"; const apiRoot = "https://api.martials.no"; diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 84532c6..ba977e5 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -6,7 +6,6 @@ import TruthTable from "./components/truth-table"; import { InfoBox, MyDisclosure, MyDisclosureContainer } from "./components/output"; import { diffChars } from "diff"; import MyMenu from "./components/menu"; -import type { FetchResult, OrderOfOperation } from "./types/types"; import { type Accessor, type Component, createSignal, JSX, onMount, Show } from "solid-js"; import { For, render } from "solid-js/web"; import Row from "./components/row"; diff --git a/src/types/types.d.ts b/src/types/types.d.ts index b96e6e7..bc5f134 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -1,15 +1,13 @@ -import { JSX } from "solid-js"; - interface SimpleProps { name?: string; className?: string, - style?: JSX.CSSProperties, + style?: import("solid-js").JSX.CSSProperties, id?: string, title?: string, } interface ChildProps extends SimpleProps { - children?: JSX.Element, + children?: import("solid-js").JSX.Element, } interface LinkProps extends ChildProps { @@ -23,12 +21,12 @@ interface TitleProps extends ChildProps { } interface ButtonProps extends TitleProps { - onClick?: JSX.EventHandlerUnion, + onClick?: import("solid-js").JSX.EventHandlerUnion, type?: "button" | "submit" | "reset", } interface InputProps extends TitleProps { - onInput?: JSX.EventHandlerUnion, + onInput?: import("solid-js").JSX.EventHandlerUnion, placeholder?: string, required?: boolean, type?: string,