Skip to content

Commit

Permalink
fix: import inputtag
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriAtzler committed Dec 9, 2024
1 parent 99f074b commit fd6f0df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@4bits/ui",
"version": "1.14.54",
"version": "1.14.55",
"private": false,
"main": "dist/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/ui/form/input-tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { cva } from "class-variance-authority";
import * as React from "react";
import { mergeRefs } from "react-merge-refs";

import type { Delimiter, TagType } from "@continha/formbuilder/lib/model/tag";
import { LuX } from "react-icons/lu";
import { cn } from "../../../lib/utils";
import type { Delimiter, TagType } from "@4bits/formbuilder/dist/model/tag";

export const selectInputVariants = cva(
"flex w-full rounded-md border border-gray-6 dark:border-graydark-6 bg-gray-1 dark:bg-graydark-1 px-3 text-xs ring-offset-transparent file:border-0 file:bg-transparent file:text-xs file:font-medium placeholder:text-gray-11 dark:placeholder:text-graydark-11 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-7 dark:focus-visible:ring-bluedark-7 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 text-black dark:text-white"
Expand Down

0 comments on commit fd6f0df

Please sign in to comment.