Skip to content

Commit

Permalink
fix: combo box component not exported (#96)
Browse files Browse the repository at this point in the history
* fix(combo-box): combo-box component not exported

* refactor: remove unused useDomRef hook

* refactor: rename theme utils directory to utilities
  • Loading branch information
PHILLIPS71 authored May 19, 2024
1 parent 97913d9 commit 4c17904
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 15 deletions.
13 changes: 0 additions & 13 deletions packages/react/src/hooks/use-dom-ref.ts

This file was deleted.

1 change: 1 addition & 0 deletions packages/react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export * from '@/components/button'
export * from '@/components/card'
export * from '@/components/checkbox'
export * from '@/components/chip'
export * from '@/components/combo-box'
export * from '@/components/dialog'
export * from '@/components/divider'
export * from '@/components/form'
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/colors/semantic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import colors from 'tailwindcss/colors'
import { brand } from '@/colors/brand'
import { seashell } from '@/colors/seashell'
import { shark } from '@/colors/shark'
import { flip } from '@/utils/flip'
import { flip } from '@/utilities/flip'

export const semantic = {
light: {
Expand Down
2 changes: 1 addition & 1 deletion packages/theme/src/components/chip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const chip = tv({
variants: {
color: {
neutral: {
chip: ['text-subtitle', 'bg-shark/20', 'border-partition'],
chip: ['text-subtitle', 'bg-shark/20', 'border-subtitle'],
},
brand: {
chip: ['text-brand', 'bg-brand/20', 'border-brand'],
Expand Down
File renamed without changes.

0 comments on commit 4c17904

Please sign in to comment.