fix: fix pswui component imports
This commit is contained in:
parent
4154c8211c
commit
8e981b02c8
@ -10,7 +10,7 @@ import Home from "./Home";
|
|||||||
import DocsLayout from "./DocsLayout";
|
import DocsLayout from "./DocsLayout";
|
||||||
import ErrorBoundary from "./ErrorHandler";
|
import ErrorBoundary from "./ErrorHandler";
|
||||||
import DynamicLayout from "./DynamicLayout";
|
import DynamicLayout from "./DynamicLayout";
|
||||||
import { Code } from "./components/LoadedCode";
|
import { Code } from "@/components/LoadedCode";
|
||||||
|
|
||||||
import DocsIntroduction, {
|
import DocsIntroduction, {
|
||||||
tableOfContents as docsIntroductionToc,
|
tableOfContents as docsIntroductionToc,
|
||||||
@ -31,7 +31,7 @@ import React, {
|
|||||||
useRef,
|
useRef,
|
||||||
useState,
|
useState,
|
||||||
} from "react";
|
} from "react";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip.tsx";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
function buildThresholdList() {
|
function buildThresholdList() {
|
||||||
const thresholds: number[] = [];
|
const thresholds: number[] = [];
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import { Button } from "../components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
function Home() {
|
function Home() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { Link, Outlet, useLocation } from "react-router-dom";
|
import { Link, Outlet, useLocation } from "react-router-dom";
|
||||||
import { Button } from "../components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import RouteObject from "./RouteObject";
|
import RouteObject from "./RouteObject";
|
||||||
import { Toaster } from "@components/Toast";
|
import { Toaster } from "@pswui/Toast";
|
||||||
import { Popover, PopoverContent, PopoverTrigger } from "@components/Popover";
|
import { Popover, PopoverContent, PopoverTrigger } from "@pswui/Popover";
|
||||||
import {
|
import {
|
||||||
DrawerClose,
|
DrawerClose,
|
||||||
DrawerContent,
|
DrawerContent,
|
||||||
DrawerOverlay,
|
DrawerOverlay,
|
||||||
DrawerRoot,
|
DrawerRoot,
|
||||||
DrawerTrigger,
|
DrawerTrigger,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
|
|
||||||
type Theme = "light" | "dark" | "system";
|
type Theme = "light" | "dark" | "system";
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import { forwardRef, useEffect, useState } from "react";
|
import { forwardRef, useEffect, useState } from "react";
|
||||||
import SyntaxHighlighter from "react-syntax-highlighter";
|
import SyntaxHighlighter from "react-syntax-highlighter";
|
||||||
import { gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs";
|
import { gruvboxDark } from "react-syntax-highlighter/dist/cjs/styles/hljs";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { useToast } from "@components/Toast";
|
import { useToast } from "@pswui/Toast";
|
||||||
import { twMerge } from "tailwind-merge";
|
import { twMerge } from "tailwind-merge";
|
||||||
|
|
||||||
export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main";
|
export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { ButtonDemo } from "./ButtonBlocks/Preview";
|
import { ButtonDemo } from "./ButtonBlocks/Preview";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Danger = () => {
|
export const Danger = () => {
|
||||||
return <Button preset="danger">Danger</Button>;
|
return <Button preset="danger">Danger</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Default = () => {
|
export const Default = () => {
|
||||||
return <Button preset="default">Default</Button>;
|
return <Button preset="default">Default</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Ghost = () => {
|
export const Ghost = () => {
|
||||||
return <Button preset="ghost">Ghost</Button>;
|
return <Button preset="ghost">Ghost</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Link = () => {
|
export const Link = () => {
|
||||||
return <Button preset="link">Link</Button>;
|
return <Button preset="link">Link</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Success = () => {
|
export const Success = () => {
|
||||||
return <Button preset="success">Success</Button>;
|
return <Button preset="success">Success</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Warning = () => {
|
export const Warning = () => {
|
||||||
return <Button preset="warning">Warning</Button>;
|
return <Button preset="warning">Warning</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export function ButtonDemo() {
|
export function ButtonDemo() {
|
||||||
return <Button>Button</Button>;
|
return <Button>Button</Button>;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { CheckboxDemo } from "./CheckboxBlocks/Preview";
|
import { CheckboxDemo } from "./CheckboxBlocks/Preview";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Checkbox } from "@components/Checkbox";
|
import { Checkbox } from "@pswui/Checkbox";
|
||||||
|
|
||||||
export function Disabled() {
|
export function Disabled() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Checkbox } from "@components/Checkbox";
|
import { Checkbox } from "@pswui/Checkbox";
|
||||||
|
|
||||||
export function Text() {
|
export function Text() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Checkbox } from "@components/Checkbox";
|
import { Checkbox } from "@pswui/Checkbox";
|
||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
|
|
||||||
export function CheckboxDemo() {
|
export function CheckboxDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { DialogDemo } from "./DialogBlocks/Preview";
|
import { DialogDemo } from "./DialogBlocks/Preview";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import {
|
import {
|
||||||
DialogRoot,
|
DialogRoot,
|
||||||
DialogTrigger,
|
DialogTrigger,
|
||||||
@ -9,7 +9,7 @@ import {
|
|||||||
DialogSubtitle,
|
DialogSubtitle,
|
||||||
DialogFooter,
|
DialogFooter,
|
||||||
DialogClose,
|
DialogClose,
|
||||||
} from "@components/Dialog";
|
} from "@pswui/Dialog";
|
||||||
|
|
||||||
export function BasicInformationalDialog() {
|
export function BasicInformationalDialog() {
|
||||||
return (
|
return (
|
||||||
|
@ -8,9 +8,9 @@ import {
|
|||||||
DialogSubtitle,
|
DialogSubtitle,
|
||||||
DialogFooter,
|
DialogFooter,
|
||||||
DialogClose,
|
DialogClose,
|
||||||
} from "@components/Dialog";
|
} from "@pswui/Dialog";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { useToast } from "@components/Toast";
|
import { useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
export function DeletingItem() {
|
export function DeletingItem() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -8,8 +8,8 @@ import {
|
|||||||
DialogSubtitle,
|
DialogSubtitle,
|
||||||
DialogFooter,
|
DialogFooter,
|
||||||
DialogClose,
|
DialogClose,
|
||||||
} from "@components/Dialog";
|
} from "@pswui/Dialog";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export function DialogDemo() {
|
export function DialogDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from '@/components/LoadedCode';
|
import { LoadedCode, GITHUB } from '@/components/LoadedCode';
|
||||||
import { DrawerDemo } from "./DrawerBlocks/Preview";
|
import { DrawerDemo } from "./DrawerBlocks/Preview";
|
||||||
|
@ -7,8 +7,8 @@ import {
|
|||||||
DrawerBody,
|
DrawerBody,
|
||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
DrawerClose,
|
DrawerClose,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Bottom = () => {
|
export const Bottom = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -7,8 +7,8 @@ import {
|
|||||||
DrawerBody,
|
DrawerBody,
|
||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
DrawerClose,
|
DrawerClose,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Left = () => {
|
export const Left = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -7,8 +7,8 @@ import {
|
|||||||
DrawerBody,
|
DrawerBody,
|
||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
DrawerClose,
|
DrawerClose,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Right = () => {
|
export const Right = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -7,8 +7,8 @@ import {
|
|||||||
DrawerBody,
|
DrawerBody,
|
||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
DrawerClose,
|
DrawerClose,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
export const Top = () => {
|
export const Top = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import {
|
import {
|
||||||
DrawerRoot,
|
DrawerRoot,
|
||||||
DrawerTrigger,
|
DrawerTrigger,
|
||||||
@ -8,7 +8,7 @@ import {
|
|||||||
DrawerHeader,
|
DrawerHeader,
|
||||||
DrawerBody,
|
DrawerBody,
|
||||||
DrawerFooter,
|
DrawerFooter,
|
||||||
} from "@components/Drawer";
|
} from "@pswui/Drawer";
|
||||||
|
|
||||||
export const DrawerDemo = () => {
|
export const DrawerDemo = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { InputDemo } from "./InputBlocks/Preview";
|
import { InputDemo } from "./InputBlocks/Preview";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function Disabled() {
|
export function Disabled() {
|
||||||
return <Input type="text" disabled />;
|
return <Input type="text" disabled />;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function Invalid() {
|
export function Invalid() {
|
||||||
return <Input type="text" invalid="Invalid Input" />;
|
return <Input type="text" invalid="Invalid Input" />;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function InputDemo() {
|
export function InputDemo() {
|
||||||
return <Input type="text" />;
|
return <Input type="text" />;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Input, InputFrame } from "@components/Input";
|
import { Input, InputFrame } from "@pswui/Input";
|
||||||
|
|
||||||
export function InputFrameDemo() {
|
export function InputFrameDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import {
|
import {
|
||||||
TabProvider, TabTrigger, TabContent, TabList
|
TabProvider, TabTrigger, TabContent, TabList
|
||||||
} from "@components/Tabs";
|
} from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { LabelDemo } from "./LabelBlocks/Preview";
|
import { LabelDemo } from "./LabelBlocks/Preview";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function Disabled() {
|
export function Disabled() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Checkbox } from "@components/Checkbox";
|
import { Checkbox } from "@pswui/Checkbox";
|
||||||
|
|
||||||
export function Horizontal() {
|
export function Horizontal() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function Invalid() {
|
export function Invalid() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function Vertical() {
|
export function Vertical() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Label } from "@components/Label";
|
import { Label } from "@pswui/Label";
|
||||||
import { Input } from "@components/Input";
|
import { Input } from "@pswui/Input";
|
||||||
|
|
||||||
export function LabelDemo() {
|
export function LabelDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { PopoverDemo } from "./PopoverBlocks/Preview";
|
import { PopoverDemo } from "./PopoverBlocks/Preview";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Popover, PopoverTrigger, PopoverContent } from "@components/Popover.tsx";
|
import { Popover, PopoverTrigger, PopoverContent } from "@pswui/Popover.tsx";
|
||||||
import { Button } from "@components/Button.tsx";
|
import { Button } from "@pswui/Button.tsx";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
const DarkIcon = () => {
|
const DarkIcon = () => {
|
||||||
|
@ -2,9 +2,9 @@ import {
|
|||||||
Popover,
|
Popover,
|
||||||
PopoverTrigger,
|
PopoverTrigger,
|
||||||
PopoverContent,
|
PopoverContent,
|
||||||
} from "@components/Popover.tsx";
|
} from "@pswui/Popover.tsx";
|
||||||
import { Button } from "@components/Button.tsx";
|
import { Button } from "@pswui/Button.tsx";
|
||||||
import { useToast } from "@components/Toast.tsx";
|
import { useToast } from "@pswui/Toast.tsx";
|
||||||
import {
|
import {
|
||||||
createContext,
|
createContext,
|
||||||
Dispatch,
|
Dispatch,
|
||||||
@ -14,8 +14,8 @@ import {
|
|||||||
useState,
|
useState,
|
||||||
useTransition,
|
useTransition,
|
||||||
} from "react";
|
} from "react";
|
||||||
import { Label } from "@components/Label.tsx";
|
import { Label } from "@pswui/Label.tsx";
|
||||||
import { Input } from "@components/Input.tsx";
|
import { Input } from "@pswui/Input.tsx";
|
||||||
|
|
||||||
interface UserControlState {
|
interface UserControlState {
|
||||||
signIn: boolean;
|
signIn: boolean;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Popover, PopoverContent, PopoverTrigger } from "@components/Popover";
|
import { Popover, PopoverContent, PopoverTrigger } from "@pswui/Popover";
|
||||||
|
|
||||||
export function PopoverDemo() {
|
export function PopoverDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { SwitchDemo } from "./SwitchBlocks/Preview";
|
import { SwitchDemo } from "./SwitchBlocks/Preview";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { Switch } from "@components/Switch";
|
import { Switch } from "@pswui/Switch";
|
||||||
|
|
||||||
export function SwitchDemo() {
|
export function SwitchDemo() {
|
||||||
return <Switch />;
|
return <Switch />;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { TabsDemo } from "./TabsBlocks/Preview";
|
import { TabsDemo } from "./TabsBlocks/Preview";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
|
|
||||||
export function TabsDemo() {
|
export function TabsDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs"
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs"
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { ToastDemo } from "./ToastBlocks/Preview";
|
import { ToastDemo } from "./ToastBlocks/Preview";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Toaster, useToast } from "@components/Toast";
|
import { Toaster, useToast } from "@pswui/Toast";
|
||||||
|
|
||||||
function Children() {
|
function Children() {
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { TabProvider, TabTrigger, TabContent, TabList } from "@components/Tabs";
|
import { TabProvider, TabTrigger, TabContent, TabList } from "@pswui/Tabs";
|
||||||
import { Story } from "@/components/Story";
|
import { Story } from "@/components/Story";
|
||||||
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
import { LoadedCode, GITHUB } from "@/components/LoadedCode";
|
||||||
import { TooltipDemo } from "./TooltipBlocks/Preview";
|
import { TooltipDemo } from "./TooltipBlocks/Preview";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function Bottom() {
|
export function Bottom() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
|
||||||
export function Controlled() {
|
export function Controlled() {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function EarlyDelay() {
|
export function EarlyDelay() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function LateDelay() {
|
export function LateDelay() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function Left() {
|
export function Left() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function NoDelay() {
|
export function NoDelay() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function Right() {
|
export function Right() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function Top() {
|
export function Top() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Button } from "@components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
import { Tooltip, TooltipContent } from "@components/Tooltip";
|
import { Tooltip, TooltipContent } from "@pswui/Tooltip";
|
||||||
|
|
||||||
export function TooltipDemo() {
|
export function TooltipDemo() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {TabProvider, TabContent, TabList, TabTrigger} from "@components/Tabs";
|
import {TabProvider, TabContent, TabList, TabTrigger} from "@pswui/Tabs";
|
||||||
import {Code} from "@/components/LoadedCode";
|
import {Code} from "@/components/LoadedCode";
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import { Button } from "../../components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
function PageNotFound() {
|
function PageNotFound() {
|
||||||
return (
|
return (
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Link } from "react-router-dom";
|
import { Link } from "react-router-dom";
|
||||||
import { Button } from "../../components/Button";
|
import { Button } from "@pswui/Button";
|
||||||
|
|
||||||
function UnexpectedError() {
|
function UnexpectedError() {
|
||||||
return (
|
return (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user