enerdot-front-system 0.0.25 → 0.0.27
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 +8 -3
- package/dist/index.cjs.js +56 -39
- package/dist/index.es.js +6066 -1320
- package/dist/lib/components/Button/index.d.ts +1 -0
- package/dist/lib/components/DateSelector/DatePicker/Buttons/ArrowButton.d.ts +18 -0
- package/dist/lib/components/DateSelector/DatePicker/Buttons/InputButton.d.ts +10 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/DayButton.d.ts +13 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/MonthButton.d.ts +11 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/QuarterButton.d.ts +11 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/WeekButton.d.ts +12 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/YearButton.d.ts +11 -0
- package/dist/lib/components/DateSelector/DatePicker/Calendar/index.d.ts +17 -0
- package/dist/lib/components/DateSelector/DatePicker/index.d.ts +19 -0
- package/dist/lib/components/DateSelector/DateRangePicker/Button.d.ts +10 -0
- package/dist/lib/components/DateSelector/DateRangePicker/Calendar/DayButton.d.ts +13 -0
- package/dist/lib/components/DateSelector/DateRangePicker/Calendar/MonthButton.d.ts +11 -0
- package/dist/lib/components/DateSelector/DateRangePicker/Calendar/YearButton.d.ts +11 -0
- package/dist/lib/components/DateSelector/DateRangePicker/Calendar/index.d.ts +14 -0
- package/dist/lib/components/DateSelector/DateRangePicker/index.d.ts +20 -0
- package/dist/lib/components/DateSelector/common.d.ts +6 -0
- package/dist/lib/components/Dropdown/Button/index.d.ts +9 -0
- package/dist/lib/components/Dropdown/OptionList/CheckboxOption.d.ts +12 -0
- package/dist/lib/components/Dropdown/OptionList/RadioOption.d.ts +11 -0
- package/dist/lib/components/Dropdown/OptionList/SeletOption.d.ts +12 -0
- package/dist/lib/components/Dropdown/OptionList/common.d.ts +5 -0
- package/dist/lib/components/Dropdown/OptionList/index.d.ts +16 -0
- package/dist/lib/components/Dropdown/index.d.ts +19 -0
- package/dist/lib/components/IconButton/index.d.ts +1 -0
- package/dist/lib/components/Ripple/index.d.ts +13 -0
- package/dist/lib/components/Segment/index.d.ts +9 -0
- package/dist/lib/components/Svg/Symbol/Calendar.d.ts +2 -0
- package/dist/lib/components/Svg/arrow/ArrowLeft.d.ts +7 -0
- package/dist/lib/components/Svg/arrow/ArrowRight.d.ts +7 -0
- package/dist/lib/components/Tab/index.d.ts +13 -0
- package/dist/lib/components/Toast/index.d.ts +6 -0
- package/dist/lib/data/dateFormat.d.ts +17 -0
- package/dist/lib/hooks/useIndicator.d.ts +12 -0
- package/dist/lib/hooks/useToast.d.ts +11 -0
- package/dist/lib/hooks/useTooltipPosition.d.ts +5 -0
- package/dist/lib/hooks/useVirtualScroll.d.ts +10 -0
- package/dist/lib/index.d.ts +7 -0
- package/dist/lib/utils/calendar.d.ts +27 -0
- package/dist/lib/utils/formatter.d.ts +2 -0
- package/dist/lib/utils/ripple.d.ts +6 -0
- package/dist/lib/utils/validate.d.ts +8 -0
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -7,17 +7,22 @@
|
|
|
7
7
|
- react
|
|
8
8
|
- react-dom
|
|
9
9
|
- scss
|
|
10
|
+
- moment
|
|
11
|
+
- korean-regexp
|
|
10
12
|
|
|
11
13
|
## 배포 요소
|
|
12
14
|
|
|
13
15
|
- color theme
|
|
14
16
|
- buttons
|
|
15
17
|
- inputs
|
|
16
|
-
-
|
|
18
|
+
- textarea
|
|
17
19
|
- checkbox and radio button
|
|
18
20
|
- button filter
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
+
- (NEW) dropdown
|
|
22
|
+
- chip
|
|
23
|
+
- pagination
|
|
24
|
+
- (NEW) datePicker
|
|
25
|
+
- (NEW) tab
|
|
21
26
|
|
|
22
27
|
## Docs
|
|
23
28
|
|