Skip to content

Commit

Permalink
Illiar/fix/select input placeholder color & text input (#2752)
Browse files Browse the repository at this point in the history
* fix: fixed theme colors

* fix: fixed text input placeholder color & bump ui

* fix: lock

---------

Co-authored-by: Alon Peretz <8467965+alonp99@users.noreply.github.com>
  • Loading branch information
chesterkmr and alonp99 authored Oct 8, 2024
1 parent 321243f commit 277be19
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 8 deletions.
7 changes: 7 additions & 0 deletions apps/kyb-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# kyb-app

## 0.3.63

### Patch Changes

- Updated dependencies
- @ballerine/ui@0.5.36

## 0.3.62

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/kyb-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/kyb-app",
"private": true,
"version": "0.3.62",
"version": "0.3.63",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -16,7 +16,7 @@
"dependencies": {
"@ballerine/blocks": "0.2.21",
"@ballerine/common": "^0.9.37",
"@ballerine/ui": "0.5.35",
"@ballerine/ui": "0.5.36",
"@ballerine/workflow-browser-sdk": "0.6.49",
"@lukemorales/query-key-factory": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
Expand Down
4 changes: 4 additions & 0 deletions apps/kyb-app/theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"color": "hsl(226, 100%, 97%)",
"foreground": "hsl(0, 0%, 0%)"
},
"muted": {
"color": "hsl(223, 47%, 11%)",
"foreground": "hsl(215.4, 16.3%, 56.9%)"
},
"controls": {
"color": "hsl(0, 0%, 0%)",
"foreground": "hsl(0, 0%, 100%)"
Expand Down
7 changes: 7 additions & 0 deletions packages/react-pdf-toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @ballerine/react-pdf-toolkit

## 1.2.36

### Patch Changes

- Updated dependencies
- @ballerine/ui@0.5.36

## 1.2.35

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-pdf-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/react-pdf-toolkit",
"private": false,
"version": "1.2.35",
"version": "1.2.36",
"types": "./dist/build.d.ts",
"main": "./dist/react-pdf-toolkit.js",
"module": "./dist/react-pdf-toolkit.mjs",
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@ballerine/config": "^1.1.19",
"@ballerine/ui": "0.5.35",
"@ballerine/ui": "0.5.36",
"@react-pdf/renderer": "^3.1.14",
"@sinclair/typebox": "^0.31.7",
"ajv": "^8.12.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ballerine/ui

## 0.5.36

### Patch Changes

- Fixed text field placeholder color

## 0.5.35

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/ui",
"private": false,
"version": "0.5.35",
"version": "0.5.36",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/atoms/inputs/Input/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Input = React.forwardRef<HTMLInputElement, React.InputHTMLAttributes<HTMLI
<input
type={type}
className={ctw(
'border-input bg-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-9 w-full rounded-md border px-2 py-1.5 align-middle text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50',
'border-input bg-background !placeholder:text-muted-foreground focus-visible:ring-ring flex h-9 w-full rounded-md border px-2 py-1.5 align-middle text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-1 disabled:cursor-not-allowed disabled:opacity-50',
className,
)}
ref={ref}
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 277be19

Please sign in to comment.