@cashdoc/cashdoc-cms-design-system 1.2.0 → 1.3.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 +4 -3
- package/dist/index.es.js +1199 -1164
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +4 -4
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,8 +31,9 @@ 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
|
+
> `pnpm install cashdoc-cms-design-system`은 deprecated 되었습니다.
|
|
36
37
|
|
|
37
38
|
<br />
|
|
38
39
|
|
|
@@ -41,11 +42,11 @@ pnpm install cashdoc-cms-design-system
|
|
|
41
42
|
프로젝트 최상단에서 cashdoc-cms-design-system의 `style.css` 파일을 import 후 사용하면 됩니다.
|
|
42
43
|
|
|
43
44
|
```tsx
|
|
44
|
-
import "cashdoc-cms-design-system/dist/style.css";
|
|
45
|
+
import "@cashdoc/cashdoc-cms-design-system/dist/style.css";
|
|
45
46
|
```
|
|
46
47
|
|
|
47
48
|
```tsx
|
|
48
|
-
import { Button, Modal, DatePicker } from "cashdoc-cms-design-system";
|
|
49
|
+
import { Button, Modal, DatePicker } from "@cashdoc/cashdoc-cms-design-system";
|
|
49
50
|
|
|
50
51
|
function App() {
|
|
51
52
|
return <Button variant="default">버튼</Button>;
|