innodep-ds 0.0.53 → 0.0.55
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 +53 -53
- package/dist/index.cjs.js +28 -28
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +1464 -1435
- package/dist/index.es.js.map +1 -1
- package/dist/stories/components/dataDisplay/badge/Badge.d.ts +1 -1
- package/dist/stories/components/dataDisplay/chip/Chip.d.ts +1 -1
- package/dist/stories/components/forms/button/Button.d.ts +2 -2
- package/package.json +123 -120
package/README.md
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
# Innodep Design System
|
|
2
|
-
##### Innodep Design System입니다.
|
|
3
|
-
|
|
4
|
-
##### Storybook Link
|
|
5
|
-
[Innodep Design System Storybook](https://innodep-ds.netlify.app/)
|
|
6
|
-
|
|
7
|
-
## 사용 가능 Components
|
|
8
|
-
|
|
9
|
-
### Form
|
|
10
|
-
```
|
|
11
|
-
Button
|
|
12
|
-
Calendar
|
|
13
|
-
Checkbox
|
|
14
|
-
DateTimePicker
|
|
15
|
-
DropdownMenu
|
|
16
|
-
Input
|
|
17
|
-
RadioGroup
|
|
18
|
-
Select
|
|
19
|
-
Slider
|
|
20
|
-
Switch
|
|
21
|
-
Textarea
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### DATA DISPLAY
|
|
25
|
-
```
|
|
26
|
-
Badge
|
|
27
|
-
Chip
|
|
28
|
-
Collapsible
|
|
29
|
-
Label
|
|
30
|
-
Popover
|
|
31
|
-
Progress
|
|
32
|
-
Scroll-Area
|
|
33
|
-
Separator
|
|
34
|
-
Skeleton
|
|
35
|
-
Spinner
|
|
36
|
-
Table
|
|
37
|
-
Toggle
|
|
38
|
-
ToggleGroup
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
### OVERLAY
|
|
42
|
-
```
|
|
43
|
-
Alert
|
|
44
|
-
AlertDialog
|
|
45
|
-
Card
|
|
46
|
-
Command
|
|
47
|
-
ContextMenu
|
|
48
|
-
Dialog
|
|
49
|
-
Sheet
|
|
50
|
-
Sonner
|
|
51
|
-
Tabs
|
|
52
|
-
Tooltip
|
|
53
|
-
```
|
|
1
|
+
# Innodep Design System
|
|
2
|
+
##### Innodep Design System입니다.
|
|
3
|
+
|
|
4
|
+
##### Storybook Link
|
|
5
|
+
[Innodep Design System Storybook](https://innodep-ds.netlify.app/)
|
|
6
|
+
|
|
7
|
+
## 사용 가능 Components
|
|
8
|
+
|
|
9
|
+
### Form
|
|
10
|
+
```
|
|
11
|
+
Button
|
|
12
|
+
Calendar
|
|
13
|
+
Checkbox
|
|
14
|
+
DateTimePicker
|
|
15
|
+
DropdownMenu
|
|
16
|
+
Input
|
|
17
|
+
RadioGroup
|
|
18
|
+
Select
|
|
19
|
+
Slider
|
|
20
|
+
Switch
|
|
21
|
+
Textarea
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### DATA DISPLAY
|
|
25
|
+
```
|
|
26
|
+
Badge
|
|
27
|
+
Chip
|
|
28
|
+
Collapsible
|
|
29
|
+
Label
|
|
30
|
+
Popover
|
|
31
|
+
Progress
|
|
32
|
+
Scroll-Area
|
|
33
|
+
Separator
|
|
34
|
+
Skeleton
|
|
35
|
+
Spinner
|
|
36
|
+
Table
|
|
37
|
+
Toggle
|
|
38
|
+
ToggleGroup
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### OVERLAY
|
|
42
|
+
```
|
|
43
|
+
Alert
|
|
44
|
+
AlertDialog
|
|
45
|
+
Card
|
|
46
|
+
Command
|
|
47
|
+
ContextMenu
|
|
48
|
+
Dialog
|
|
49
|
+
Sheet
|
|
50
|
+
Sonner
|
|
51
|
+
Tabs
|
|
52
|
+
Tooltip
|
|
53
|
+
```
|
|
54
54
|
- shadcn/ui와 tailwindcss를 기반으로 구성되어 있습니다.
|