enerdot-front-system 0.0.8 → 0.0.9
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 +18 -2
- package/dist/index.cjs.js +424 -97
- package/dist/index.es.js +1532 -658
- package/dist/lib/components/ButtonFilter/Button.d.ts +6 -0
- package/dist/lib/components/ButtonFilter/CustomFilter.d.ts +13 -0
- package/dist/lib/components/ButtonFilter/index.d.ts +14 -0
- package/dist/lib/components/ButtonFilter/index.style.d.ts +8 -0
- package/dist/lib/components/Divider/index.d.ts +6 -0
- package/dist/lib/components/IconButton/OnlyIconButton.d.ts +3 -0
- package/dist/lib/components/IconButton/OnlyIconWhButton.d.ts +3 -0
- package/dist/lib/components/IconButton/PrimaryButton.d.ts +3 -0
- package/dist/lib/components/IconButton/SecondaryButton.d.ts +3 -0
- package/dist/lib/components/IconButton/TertiaryButton.d.ts +3 -0
- package/dist/lib/components/IconButton/common.d.ts +50 -0
- package/dist/lib/components/IconButton/index.d.ts +9 -0
- package/dist/lib/components/IconWithButton/index.d.ts +8 -0
- package/dist/lib/components/Inputs/Input.d.ts +15 -0
- package/dist/lib/components/Inputs/SearchInput.d.ts +7 -0
- package/dist/lib/components/Svg/arrow/ArrowDown.d.ts +5 -0
- package/dist/lib/components/Svg/arrow/ArrowUp.d.ts +5 -0
- package/dist/lib/hooks/useElementSize.d.ts +2 -0
- package/dist/lib/hooks/useTooltip.d.ts +2 -0
- package/dist/lib/index.d.ts +7 -0
- package/dist/lib/utils/input.d.ts +6 -0
- package/dist/lib/utils/throttle.d.ts +1 -0
- package/dist/lib/utils/validate.d.ts +14 -0
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -2,7 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
에너닷에서 공용으로 사용하는 디자인 시스템 컴포넌트, theme 등을 라이브러리로 제공합니다.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
rem을 사용했으며, root font-size: 10px; 을 기준으로 작성했습니다.
|
|
6
|
+
|
|
7
|
+
## 필요 라이브러리
|
|
8
|
+
|
|
9
|
+
- react
|
|
10
|
+
- react-dom
|
|
11
|
+
- styled-components
|
|
12
|
+
|
|
13
|
+
## 배포 요소
|
|
6
14
|
|
|
7
15
|
- color theme
|
|
8
|
-
-
|
|
16
|
+
- buttons
|
|
17
|
+
- inputs
|
|
18
|
+
- checkbox and radio button
|
|
19
|
+
- button filter
|
|
20
|
+
|
|
21
|
+
## Docs
|
|
22
|
+
|
|
23
|
+
- [Components Test](https://master.d2svwq2nmzbo12.amplifyapp.com/)
|
|
24
|
+
- [Npm](https://www.npmjs.com/package/enerdot-front-system)
|