Skip to content

Commit 8244afb

Browse files
authored
fix: fixed checkbox styles in ui package (#3430)
1 parent acd2915 commit 8244afb

File tree

10 files changed

+39
-10
lines changed

10 files changed

+39
-10
lines changed

apps/backoffice-v2/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @ballerine/backoffice-v2
22

3+
## 0.7.171
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/ui@0.7.171
9+
- @ballerine/react-pdf-toolkit@1.2.131
10+
311
## 0.7.170
412

513
### Patch Changes

apps/backoffice-v2/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ballerine/backoffice-v2",
3-
"version": "0.7.170",
3+
"version": "0.7.171",
44
"description": "Ballerine - Backoffice",
55
"homepage": "https://github.com/ballerine-io/ballerine",
66
"type": "module",
@@ -52,8 +52,8 @@
5252
"preview": "vite preview"
5353
},
5454
"dependencies": {
55-
"@ballerine/react-pdf-toolkit": "^1.2.130",
56-
"@ballerine/ui": "0.7.169",
55+
"@ballerine/react-pdf-toolkit": "^1.2.131",
56+
"@ballerine/ui": "0.7.171",
5757
"@ballerine/blocks": "0.2.47",
5858
"@ballerine/common": "0.9.118",
5959
"@ballerine/workflow-browser-sdk": "0.6.142",

apps/kyb-app/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# kyb-app
22

3+
## 0.3.200
4+
5+
### Patch Changes
6+
7+
- Bump
8+
- Updated dependencies
9+
- @ballerine/ui@0.7.171
10+
311
## 0.3.199
412

513
### Patch Changes

apps/kyb-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/kyb-app",
33
"private": true,
4-
"version": "0.3.199",
4+
"version": "0.3.200",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@ballerine/blocks": "0.2.47",
2020
"@ballerine/common": "^0.9.118",
21-
"@ballerine/ui": "0.7.169",
21+
"@ballerine/ui": "0.7.171",
2222
"@ballerine/workflow-browser-sdk": "0.6.142",
2323
"@lukemorales/query-key-factory": "^1.0.3",
2424
"@radix-ui/react-icons": "^1.3.0",

packages/react-pdf-toolkit/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @ballerine/react-pdf-toolkit
22

3+
## 1.2.131
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @ballerine/ui@0.7.171
9+
310
## 1.2.130
411

512
### Patch Changes

packages/react-pdf-toolkit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/react-pdf-toolkit",
33
"private": false,
4-
"version": "1.2.130",
4+
"version": "1.2.131",
55
"types": "./dist/build.d.ts",
66
"main": "./dist/react-pdf-toolkit.js",
77
"module": "./dist/react-pdf-toolkit.mjs",
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@ballerine/config": "^1.1.44",
30-
"@ballerine/ui": "0.7.169",
30+
"@ballerine/ui": "0.7.171",
3131
"@react-pdf/renderer": "^3.1.14",
3232
"@sinclair/typebox": "^0.31.7",
3333
"ajv": "^8.12.0",

packages/ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ballerine/ui
22

3+
## 0.7.171
4+
5+
### Patch Changes
6+
7+
- Bump
8+
39
## 0.7.169
410

511
### Patch Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ballerine/ui",
33
"private": false,
4-
"version": "0.7.169",
4+
"version": "0.7.171",
55
"type": "module",
66
"main": "dist/index.js",
77
"types": "dist/index.d.ts",

packages/ui/src/components/atoms/inputs/Checkbox/Checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const Checkbox = React.forwardRef<
1010
<Root
1111
ref={ref}
1212
className={ctw(
13-
'border-primary ring-offset-background focus-visible:ring-ring data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground peer h-4 w-4 shrink-0 rounded-sm border focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
13+
'border-slate-900 ring-offset-background focus-visible:ring-ring data-[state=checked]:bg-white data-[state=checked]:text-slate-900 peer h-4 w-4 shrink-0 rounded-sm border focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
1414
className,
1515
)}
1616
{...props}

0 commit comments

Comments
 (0)