From 76ec211d8112b7ed1e83cdbe83cc898fd28611b1 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:51:26 +0900 Subject: [PATCH] refactor: update import statements in react components Updated the import statements in multiple react components to use the new `@pswui-lib` package instead of the deprecated `@pswui-lib/shared@1.0.0`. This makes the code cleaner and easier --- packages/react/components/Button.tsx | 2 +- packages/react/components/Checkbox.tsx | 2 +- packages/react/components/Dialog.tsx | 2 +- packages/react/components/Drawer.tsx | 2 +- packages/react/components/Input.tsx | 2 +- packages/react/components/Label.tsx | 2 +- packages/react/components/Popover.tsx | 2 +- packages/react/components/Switch.tsx | 2 +- packages/react/components/Tabs.tsx | 2 +- packages/react/components/Toast.tsx | 2 +- packages/react/components/Tooltip.tsx | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/react/components/Button.tsx b/packages/react/components/Button.tsx index 68b36d7..586027b 100644 --- a/packages/react/components/Button.tsx +++ b/packages/react/components/Button.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { vcn, VariantProps, Slot, AsChild } from "@pswui-lib/shared@1.0.0"; +import { vcn, VariantProps, Slot, AsChild } from "@pswui-lib"; const colors = { outline: { diff --git a/packages/react/components/Checkbox.tsx b/packages/react/components/Checkbox.tsx index 0de4d88..b37b5ff 100644 --- a/packages/react/components/Checkbox.tsx +++ b/packages/react/components/Checkbox.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; const checkboxColors = { background: { diff --git a/packages/react/components/Dialog.tsx b/packages/react/components/Dialog.tsx index bb40f43..704db6f 100644 --- a/packages/react/components/Dialog.tsx +++ b/packages/react/components/Dialog.tsx @@ -1,5 +1,5 @@ import React, { Dispatch, SetStateAction, useState } from "react"; -import { Slot, VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { Slot, VariantProps, vcn } from "@pswui-lib"; import ReactDOM from "react-dom"; /** diff --git a/packages/react/components/Drawer.tsx b/packages/react/components/Drawer.tsx index 4395306..fbaa187 100644 --- a/packages/react/components/Drawer.tsx +++ b/packages/react/components/Drawer.tsx @@ -7,7 +7,7 @@ import React, { useRef, useState, } from "react"; -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; import { createPortal } from "react-dom"; interface IDrawerContext { diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index 92fa57e..daf50e9 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; const inputColors = { background: { diff --git a/packages/react/components/Label.tsx b/packages/react/components/Label.tsx index 8c46cb2..d2ff753 100644 --- a/packages/react/components/Label.tsx +++ b/packages/react/components/Label.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; const [labelVariant, resolveLabelVariantProps] = vcn({ base: "has-[input[disabled]]:brightness-75 has-[input[disabled]]:cursor-not-allowed has-[input:invalid]:text-red-500", diff --git a/packages/react/components/Popover.tsx b/packages/react/components/Popover.tsx index cbd36d4..4f2ff0e 100644 --- a/packages/react/components/Popover.tsx +++ b/packages/react/components/Popover.tsx @@ -1,5 +1,5 @@ import React, { useContext, useEffect, useRef } from "react"; -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; interface IPopoverContext { opened: boolean; diff --git a/packages/react/components/Switch.tsx b/packages/react/components/Switch.tsx index 4535ed2..08d5599 100644 --- a/packages/react/components/Switch.tsx +++ b/packages/react/components/Switch.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; const switchColors = { background: { diff --git a/packages/react/components/Tabs.tsx b/packages/react/components/Tabs.tsx index fc9e1d6..7355f23 100644 --- a/packages/react/components/Tabs.tsx +++ b/packages/react/components/Tabs.tsx @@ -1,4 +1,4 @@ -import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { AsChild, Slot, VariantProps, vcn } from "@pswui-lib"; import React from "react"; interface Tab { diff --git a/packages/react/components/Toast.tsx b/packages/react/components/Toast.tsx index f22e771..92e292a 100644 --- a/packages/react/components/Toast.tsx +++ b/packages/react/components/Toast.tsx @@ -1,6 +1,6 @@ import React, { useEffect, useId, useRef } from "react"; import ReactDOM from "react-dom"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; interface ToastOption { closeButton: boolean; diff --git a/packages/react/components/Tooltip.tsx b/packages/react/components/Tooltip.tsx index bedf002..dfd3757 100644 --- a/packages/react/components/Tooltip.tsx +++ b/packages/react/components/Tooltip.tsx @@ -1,5 +1,5 @@ import React, { useState } from "react"; -import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0"; +import { VariantProps, vcn } from "@pswui-lib"; interface TooltipContextBody { position: "top" | "bottom" | "left" | "right";