Skip to content

Commit

Permalink
Merge branch 'main' into feat/ui-dropzone
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokyeom committed Dec 5, 2024
2 parents 87942a3 + da32f45 commit 3deaaad
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
7 changes: 7 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# docs

## 0.0.26

### Patch Changes

- Updated dependencies [2ccc009]
- @sopt-makers/ui@2.8.1

## 0.0.25

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs",
"private": true,
"version": "0.0.25",
"version": "0.0.26",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
19 changes: 11 additions & 8 deletions packages/ui/Button/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ import theme from '../theme.css';
import { bgColors, borderRadiuses, borders, fontSizes, paddings, textColors } from './constants';

export const root = style({
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
gap: '4px',
border: 'none',
cursor: 'pointer',
fontWeight: 600,
minWidth: 'max-content',
'display': 'flex',
'justifyContent': 'center',
'alignItems': 'center',
'gap': '4px',
'border': 'none',
'cursor': 'pointer',
'fontWeight': 600,
'minWidth': 'max-content',
':disabled': {
cursor: 'not-allowed',
},
});

const sprinkleProperties = defineProperties({
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 @@
# @sopt-makers/ui

## 2.8.1

### Patch Changes

- 2ccc009: fix: Add `cursor: not-allowed` style when `disabled` attribute is active

## 2.8.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sopt-makers/ui",
"version": "2.8.0",
"version": "2.8.1",
"description": "sopt-makers의 frontend repository에 사용되는 ui를 제공해요.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit 3deaaad

Please sign in to comment.