innodep-ds 0.0.4 → 0.0.6
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 +11 -27
- package/dist/index.cjs.js +90 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.es.js +8133 -996
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,36 +1,20 @@
|
|
|
1
1
|
# Innodep Design System
|
|
2
2
|
##### Innodep Design System입니다.
|
|
3
3
|
|
|
4
|
-
##
|
|
4
|
+
## 사용 가능 Components
|
|
5
5
|
|
|
6
|
-
###
|
|
6
|
+
### Form
|
|
7
7
|
```
|
|
8
|
-
|
|
8
|
+
Button
|
|
9
|
+
Checkbox
|
|
10
|
+
Calendar
|
|
11
|
+
Input
|
|
12
|
+
RadioGroup
|
|
13
|
+
Select
|
|
9
14
|
```
|
|
10
15
|
|
|
11
|
-
###
|
|
16
|
+
### DATA DISPLAY
|
|
12
17
|
```
|
|
13
|
-
|
|
18
|
+
Badge
|
|
14
19
|
```
|
|
15
|
-
|
|
16
|
-
### Build storybook
|
|
17
|
-
```
|
|
18
|
-
yarn build
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## npm Deployment
|
|
22
|
-
|
|
23
|
-
### 1. login
|
|
24
|
-
```
|
|
25
|
-
npm login
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### 2. publish
|
|
29
|
-
```
|
|
30
|
-
npm publish
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## 배포 주의 사항
|
|
34
|
-
- 배포 전 package.json 파일의 버전을 직접 변경해야합니다.
|
|
35
|
-
- 배포 전 `npm login`을 통해 로그인을 진행합니다.
|
|
36
|
-
- 배포 후 `npm whoami`를 통해 배포된 계정이 맞는지 확인합니다.
|
|
20
|
+
- shadcn/ui와 tailwindcss를 기반으로 구성되어 있습니다.
|