Skip to content

Commit cd07444

Browse files
authored
Merge pull request #6 from dev-five-git/main
ㅁㄴㅇㅁㄴㅇ
2 parents ef579ac + 3e9bb94 commit cd07444

File tree

32 files changed

+1562
-215
lines changed

32 files changed

+1562
-215
lines changed

apps/rsbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@devup-ui/react": "workspace:*"
1717
},
1818
"devDependencies": {
19-
"@rsbuild/core": "^1.5.3",
19+
"@rsbuild/core": "^1.5.6",
2020
"@rsbuild/plugin-react": "^1.4.0",
2121
"@devup-ui/rsbuild-plugin": "workspace:*"
2222
}

apps/vite-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"vite-plugin-dts": "^4.5.4",
2020
"@devup-ui/vite-plugin": "workspace:*",
2121
"@vitejs/plugin-react": "^5.0.2",
22-
"vite": "^7.1.4",
22+
"vite": "^7.1.5",
2323
"typescript": "^5",
2424
"@types/node": "^24",
2525
"@types/react": "^19"

apps/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"devDependencies": {
1919
"@devup-ui/vite-plugin": "workspace:*",
20-
"vite": "^7.1.4",
20+
"vite": "^7.1.5",
2121
"@vitejs/plugin-react": "^5.0.2",
2222
"typescript": "^5",
2323
"@types/node": "^24",

libs/extractor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ pub fn extract(
113113
)
114114
};
115115
let mut css_files = vec![css_file.clone()];
116-
if option.import_main_css {
116+
if option.import_main_css && !option.single_css {
117117
css_files.insert(0, format!("{}/devup-ui.css", option.css_dir));
118118
}
119119
let allocator = Allocator::default();

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414
},
1515
"devDependencies": {
1616
"eslint-plugin-devup": "^2.0.5",
17-
"eslint": "^9.34.0",
17+
"eslint": "^9.35.0",
1818
"vitest": "^3.2.4",
1919
"@vitest/coverage-v8": "^3.2.4",
20-
"@changesets/cli": "^2.29.6",
20+
"@changesets/cli": "^2.29.7",
2121
"@types/node": "^24.3.1",
2222
"happy-dom": "^18.0.1",
2323
"@testing-library/react": "^16.3.0",
24+
"@testing-library/user-event": "14.6.1",
2425
"@testing-library/jest-dom": "^6.8.0",
2526
"@devup-ui/vite-plugin": "workspace:*"
2627
},

packages/components/CHANGELOG.md

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

3+
## 0.1.15
4+
5+
### Patch Changes
6+
7+
- ee704ad: Feat Radio components
8+
39
## 0.1.14
410

511
### Patch Changes

packages/components/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"css-in-js-framework",
1717
"react"
1818
],
19-
"version": "0.1.14",
19+
"version": "0.1.15",
2020
"type": "module",
2121
"scripts": {
2222
"lint": "eslint",
@@ -49,15 +49,15 @@
4949
},
5050
"devDependencies": {
5151
"@devup-ui/vite-plugin": "workspace:*",
52-
"@storybook/addon-docs": "^9.1.4",
53-
"@storybook/addon-onboarding": "^9.1.4",
54-
"@storybook/react-vite": "^9.1.4",
52+
"@storybook/addon-docs": "^9.1.5",
53+
"@storybook/addon-onboarding": "^9.1.5",
54+
"@storybook/react-vite": "^9.1.5",
5555
"@types/react": "^19.1.12",
56-
"eslint-plugin-storybook": "^9.1.4",
56+
"eslint-plugin-storybook": "^9.1.5",
5757
"rollup-plugin-preserve-directives": "^0.4.0",
58-
"storybook": "^9.1.4",
58+
"storybook": "^9.1.5",
5959
"typescript": "^5.9.2",
60-
"vite": "^7.1.4",
60+
"vite": "^7.1.5",
6161
"vite-plugin-dts": "^4.5.4",
6262
"vitest": "^3.2.4"
6363
},

packages/components/src/__tests__/index.browser.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ describe('export', () => {
66
Input: expect.any(Function),
77
Stepper: expect.any(Function),
88
Select: expect.any(Function),
9+
Radio: expect.any(Function),
10+
RadioGroup: expect.any(Function),
911
SelectContainer: expect.any(Function),
1012
SelectDivider: expect.any(Function),
1113
SelectOption: expect.any(Function),
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { Radio } from '.'
2+
3+
export default {
4+
title: 'Devfive/Radio',
5+
component: Radio,
6+
}
7+
8+
export const Default = {
9+
args: {
10+
checked: undefined,
11+
colors: {
12+
primary: 'var(--primary)',
13+
border: 'var(--border)',
14+
text: 'var(--text)',
15+
bg: 'var(--bg)',
16+
hoverBg: 'var(--hoverBg)',
17+
hoverBorder: 'var(--hoverBorder)',
18+
hoverColor: 'var(--hoverColor)',
19+
checkedBg: 'var(--checkedBg)',
20+
checkedBorder: 'var(--checkedBorder)',
21+
checkedColor: 'var(--checkedColor)',
22+
disabledBg: 'var(--disabledBg)',
23+
disabledColor: 'var(--disabledColor)',
24+
},
25+
name: 'radio',
26+
children: '옵션1',
27+
variant: 'default',
28+
},
29+
}

packages/components/src/components/Radio/__tests__/__snapshots__/index.browser.test.tsx.snap

Lines changed: 218 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)