@cashdoc/cashdoc-cms-design-system 1.2.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -31,9 +31,11 @@ Storybook과 JSDoc, 둘 중 더 편한 쪽을 보면 됩니다.
31
31
  ## 설치
32
32
 
33
33
  ```bash
34
- pnpm install cashdoc-cms-design-system
34
+ pnpm install @cashdoc/cashdoc-cms-design-system
35
35
  ```
36
36
 
37
+ > `pnpm install cashdoc-cms-design-system`은 deprecated 되었습니다.
38
+
37
39
  <br />
38
40
 
39
41
  ## 사용법
@@ -41,11 +43,11 @@ pnpm install cashdoc-cms-design-system
41
43
  프로젝트 최상단에서 cashdoc-cms-design-system의 `style.css` 파일을 import 후 사용하면 됩니다.
42
44
 
43
45
  ```tsx
44
- import "cashdoc-cms-design-system/dist/style.css";
46
+ import "@cashdoc/cashdoc-cms-design-system/dist/style.css";
45
47
  ```
46
48
 
47
49
  ```tsx
48
- import { Button, Modal, DatePicker } from "cashdoc-cms-design-system";
50
+ import { Button, Modal, DatePicker } from "@cashdoc/cashdoc-cms-design-system";
49
51
 
50
52
  function App() {
51
53
  return <Button variant="default">버튼</Button>;
@@ -61,7 +63,7 @@ function App() {
61
63
  - `Button` - 기본 버튼
62
64
  - `Checkbox` - 체크박스
63
65
  - `RadioButton` - 라디오 버튼
64
- - `Switch` - 토글 스위치
66
+ - `Switch` - 토글 스위치 (가변 길이 및 내부 상태 텍스트 지원)
65
67
  - `TextInput` - 텍스트 입력 필드
66
68
  - `TagInput` - 태그 입력 필드
67
69