Skip to content

Commit

Permalink
Created a Combobox element
Browse files Browse the repository at this point in the history
  • Loading branch information
ser888gio committed Oct 28, 2024
1 parent f341ef4 commit 1c63fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"scripts": {
"build": "npm run fonts && npm run tailwind",
"dev": "npm run fonts && npm run tailwind:watch",
"fonts": "if not exist .\\dist mkdir .\\dist && xcopy .\\src\\fonts .\\dist\\fonts /E /I",
"fonts": "mkdir -p ./dist && cp -r ./src/fonts ./dist/fonts",
"_comment": "Changed the code from line 14, which is a script for fonts from {mkdir -p ./dist && cp -r ./src/fonts ./dist/fonts} to use on Windows {if not exist .\\dist mkdir .\\dist && xcopy .\\src\\fonts .\\dist\\fonts /E /I}",
"format": "prettier . --check",
"format:fix": "prettier . --write",
Expand Down
3 changes: 1 addition & 2 deletions packages/design-system/src/ui/input/selectField.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import React, { forwardRef, useState } from "react";
import { Description } from "./description";
import { Field } from "./field";
import { Combobox, Input, Options, Option, Button } from "./combobox";
import { Combobox, Input, Options, Option } from "./combobox";
import { Label } from "./label";
import { ChevronDownIcon } from "../../icons/ChevronDown";
import { twMerge } from "tailwind-merge";

/*
Expand Down

0 comments on commit 1c63fed

Please sign in to comment.