innodep-ds 0.0.6 → 0.0.7
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 +26 -1
- package/dist/index.cjs.js +88 -58
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +22 -2
- package/dist/index.es.js +11199 -7609
- package/dist/index.es.js.map +1 -1
- package/dist/stories/components/dataDisplay/collapsible/Collapsible.d.ts +5 -0
- package/dist/stories/components/dataDisplay/label/Label.d.ts +5 -0
- package/dist/stories/components/dataDisplay/popover/Popover.d.ts +7 -0
- package/dist/stories/components/dataDisplay/progress/Progress.d.ts +4 -0
- package/dist/stories/components/dataDisplay/separator/Separator.d.ts +4 -0
- package/dist/stories/components/dataDisplay/skeleton/Skeleton.d.ts +2 -0
- package/dist/stories/components/dataDisplay/spinner/Spinner.d.ts +7 -0
- package/dist/stories/components/dataDisplay/table/Table.d.ts +10 -0
- package/dist/stories/components/dataDisplay/toggle/Toggle.d.ts +12 -0
- package/dist/stories/components/dataDisplay/togglegroup/Togglegroup.d.ts +12 -0
- package/dist/stories/components/forms/select/Select.d.ts +4 -1
- package/dist/stories/components/forms/slider/Slider.d.ts +7 -0
- package/dist/stories/components/forms/switch/Switch.d.ts +4 -0
- package/dist/stories/components/forms/textarea/Textarea.d.ts +3 -0
- package/dist/stories/components/overlay/alertdialog/Alertdialog.d.ts +20 -0
- package/dist/stories/components/overlay/command/Command.d.ts +80 -0
- package/dist/stories/components/overlay/contextmenu/Contextmenu.d.ts +27 -0
- package/dist/stories/components/overlay/dialog/Dialog.d.ts +19 -0
- package/dist/stories/components/overlay/sheet/Sheet.d.ts +25 -0
- package/dist/stories/components/overlay/tabs/Tabs.d.ts +7 -0
- package/dist/stories/components/overlay/tooltip/Tooltip.d.ts +7 -0
- package/package.json +17 -1
package/README.md
CHANGED
|
@@ -1,20 +1,45 @@
|
|
|
1
1
|
# Innodep Design System
|
|
2
2
|
##### Innodep Design System입니다.
|
|
3
3
|
|
|
4
|
+
|
|
4
5
|
## 사용 가능 Components
|
|
5
6
|
|
|
6
7
|
### Form
|
|
7
8
|
```
|
|
8
9
|
Button
|
|
9
|
-
Checkbox
|
|
10
10
|
Calendar
|
|
11
|
+
Checkbox
|
|
11
12
|
Input
|
|
12
13
|
RadioGroup
|
|
13
14
|
Select
|
|
15
|
+
Slider
|
|
16
|
+
Switch
|
|
17
|
+
Textarea
|
|
14
18
|
```
|
|
15
19
|
|
|
16
20
|
### DATA DISPLAY
|
|
17
21
|
```
|
|
18
22
|
Badge
|
|
23
|
+
Collapsible
|
|
24
|
+
Label
|
|
25
|
+
Popover
|
|
26
|
+
Progress
|
|
27
|
+
Separator
|
|
28
|
+
Skeleton
|
|
29
|
+
Spinner
|
|
30
|
+
Table
|
|
31
|
+
Toggle
|
|
32
|
+
ToggleGroup
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### OVERLAY
|
|
36
|
+
```
|
|
37
|
+
AlertDialog
|
|
38
|
+
Command
|
|
39
|
+
ContextMenu
|
|
40
|
+
Dialog
|
|
41
|
+
Sheet
|
|
42
|
+
Tabs
|
|
43
|
+
Tooltip
|
|
19
44
|
```
|
|
20
45
|
- shadcn/ui와 tailwindcss를 기반으로 구성되어 있습니다.
|