wini-web-components 2.2.8 → 2.3.2
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/dist/component/button/button.d.ts +16 -16
- package/dist/component/button/button.js +39 -39
- package/dist/component/calendar/calendar.d.ts +30 -46
- package/dist/component/calendar/calendar.js +437 -432
- package/dist/component/checkbox/checkbox.d.ts +24 -22
- package/dist/component/checkbox/checkbox.js +120 -81
- package/dist/component/component-status.d.ts +8 -8
- package/dist/component/component-status.js +39 -39
- package/dist/component/date-picker/date-picker.d.ts +25 -36
- package/dist/component/date-picker/date-picker.js +362 -359
- package/dist/component/dialog/dialog.d.ts +36 -34
- package/dist/component/dialog/dialog.js +99 -97
- package/dist/component/import-file/import-file.d.ts +24 -36
- package/dist/component/import-file/import-file.js +154 -119
- package/dist/component/infinite-scroll/infinite-scroll.d.ts +17 -17
- package/dist/component/infinite-scroll/infinite-scroll.js +103 -103
- package/dist/component/input-multi-select/input-multi-select.d.ts +21 -38
- package/dist/component/input-multi-select/input-multi-select.js +334 -323
- package/dist/component/input-opt/input-opt.d.ts +21 -21
- package/dist/component/input-opt/input-opt.js +157 -147
- package/dist/component/number-picker/number-picker.d.ts +19 -19
- package/dist/component/number-picker/number-picker.js +137 -127
- package/dist/component/pagination/pagination.d.ts +13 -13
- package/dist/component/pagination/pagination.js +93 -82
- package/dist/component/popup/popup.d.ts +33 -33
- package/dist/component/popup/popup.js +138 -105
- package/dist/component/progress-bar/progress-bar.d.ts +16 -16
- package/dist/component/progress-bar/progress-bar.js +35 -36
- package/dist/component/progress-circle/progress-circle.d.ts +14 -14
- package/dist/component/progress-circle/progress-circle.js +30 -31
- package/dist/component/radio-button/radio-button.d.ts +20 -20
- package/dist/component/radio-button/radio-button.js +64 -64
- package/dist/component/rating/rating.d.ts +23 -23
- package/dist/component/rating/rating.js +73 -74
- package/dist/component/select1/select1.d.ts +31 -50
- package/dist/component/select1/select1.js +320 -309
- package/dist/component/slider/slider.d.ts +31 -31
- package/dist/component/slider/slider.js +80 -81
- package/dist/component/switch/switch.d.ts +23 -23
- package/dist/component/switch/switch.js +80 -81
- package/dist/component/table/table.d.ts +51 -51
- package/dist/component/table/table.js +119 -119
- package/dist/component/tag/tag.d.ts +17 -17
- package/dist/component/tag/tag.js +39 -39
- package/dist/component/text/text.d.ts +16 -16
- package/dist/component/text/text.js +51 -51
- package/dist/component/text-area/text-area.d.ts +28 -28
- package/dist/component/text-area/text-area.js +83 -73
- package/dist/component/text-field/text-field.d.ts +33 -33
- package/dist/component/text-field/text-field.js +107 -97
- package/dist/component/toast-noti/toast-noti.d.ts +5 -5
- package/dist/component/toast-noti/toast-noti.js +28 -28
- package/dist/component/wini-icon/winicon.d.ts +16 -16
- package/dist/component/wini-icon/winicon.js +121 -112
- package/dist/form/login/view.d.ts +40 -40
- package/dist/form/login/view.js +66 -65
- package/dist/i18n.d.ts +2 -0
- package/dist/i18n.js +125 -0
- package/dist/index.d.ts +32 -31
- package/dist/index.js +1 -1
- package/dist/language/i18n.d.ts +2 -0
- package/dist/language/i18n.js +125 -0
- package/package.json +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
|
-
import { Checkbox } from './component/checkbox/checkbox';
|
|
2
|
-
import { Select1, OptionsItem } from './component/select1/select1';
|
|
3
|
-
import { Switch } from './component/switch/switch';
|
|
4
|
-
import { showPopup, closePopup, Popup } from './component/popup/popup';
|
|
5
|
-
import { showDialog, Dialog, DialogAlignment } from './component/dialog/dialog';
|
|
6
|
-
import { DatePicker } from './component/date-picker/date-picker';
|
|
7
|
-
import { SelectMultiple } from './component/input-multi-select/input-multi-select';
|
|
8
|
-
import { ProgressBar } from './component/progress-bar/progress-bar';
|
|
9
|
-
import { ComponentStatus, getStatusIcon } from './component/component-status';
|
|
10
|
-
import { Text } from './component/text/text';
|
|
11
|
-
import { Pagination } from './component/pagination/pagination';
|
|
12
|
-
import { Table, TbCell, TbHeader, TbRow, TbBody, CellAlignItems } from './component/table/table';
|
|
13
|
-
import { TextField } from './component/text-field/text-field';
|
|
14
|
-
import { RadioButton } from './component/radio-button/radio-button';
|
|
15
|
-
import { TextArea } from './component/text-area/text-area';
|
|
16
|
-
import { ImportFile } from './component/import-file/import-file';
|
|
17
|
-
import { ToastMessage } from './component/toast-noti/toast-noti';
|
|
18
|
-
import { Calendar, CalendarType } from './component/calendar/calendar';
|
|
19
|
-
import { InfiniteScroll } from './component/infinite-scroll/infinite-scroll';
|
|
20
|
-
import { Rating } from './component/rating/rating';
|
|
21
|
-
import { ProgressCircle } from './component/progress-circle/progress-circle';
|
|
22
|
-
import { CustomSlider } from './component/slider/slider';
|
|
23
|
-
import { ToastContainer } from 'react-toastify';
|
|
24
|
-
import { Button } from './component/button/button';
|
|
25
|
-
import { Tag } from './component/tag/tag';
|
|
26
|
-
import { Winicon } from './component/wini-icon/winicon';
|
|
27
|
-
import { NumberPicker } from './component/number-picker/number-picker';
|
|
28
|
-
import { InputOpt } from './component/input-opt/input-opt';
|
|
29
|
-
import { WLoginView } from './form/login/view';
|
|
30
|
-
export { Calendar, CalendarType, ComponentStatus, getStatusIcon, Checkbox, Select1, Switch, Popup, showPopup, closePopup, Dialog, showDialog, DialogAlignment, DatePicker, SelectMultiple, ProgressBar, Text, Pagination, Table, TbCell, TbHeader, TbBody, TbRow, CellAlignItems, TextField, RadioButton, TextArea, ImportFile, ToastMessage, InfiniteScroll, Rating, ProgressCircle, CustomSlider, ToastContainer, Button, Tag, Winicon, NumberPicker, InputOpt, WLoginView };
|
|
31
|
-
export type { OptionsItem };
|
|
1
|
+
import { Checkbox } from './component/checkbox/checkbox';
|
|
2
|
+
import { Select1, OptionsItem } from './component/select1/select1';
|
|
3
|
+
import { Switch } from './component/switch/switch';
|
|
4
|
+
import { showPopup, closePopup, Popup } from './component/popup/popup';
|
|
5
|
+
import { showDialog, Dialog, DialogAlignment } from './component/dialog/dialog';
|
|
6
|
+
import { DatePicker } from './component/date-picker/date-picker';
|
|
7
|
+
import { SelectMultiple } from './component/input-multi-select/input-multi-select';
|
|
8
|
+
import { ProgressBar } from './component/progress-bar/progress-bar';
|
|
9
|
+
import { ComponentStatus, getStatusIcon } from './component/component-status';
|
|
10
|
+
import { Text } from './component/text/text';
|
|
11
|
+
import { Pagination } from './component/pagination/pagination';
|
|
12
|
+
import { Table, TbCell, TbHeader, TbRow, TbBody, CellAlignItems } from './component/table/table';
|
|
13
|
+
import { TextField } from './component/text-field/text-field';
|
|
14
|
+
import { RadioButton } from './component/radio-button/radio-button';
|
|
15
|
+
import { TextArea } from './component/text-area/text-area';
|
|
16
|
+
import { ImportFile } from './component/import-file/import-file';
|
|
17
|
+
import { ToastMessage } from './component/toast-noti/toast-noti';
|
|
18
|
+
import { Calendar, CalendarType } from './component/calendar/calendar';
|
|
19
|
+
import { InfiniteScroll } from './component/infinite-scroll/infinite-scroll';
|
|
20
|
+
import { Rating } from './component/rating/rating';
|
|
21
|
+
import { ProgressCircle } from './component/progress-circle/progress-circle';
|
|
22
|
+
import { CustomSlider } from './component/slider/slider';
|
|
23
|
+
import { ToastContainer } from 'react-toastify';
|
|
24
|
+
import { Button } from './component/button/button';
|
|
25
|
+
import { Tag } from './component/tag/tag';
|
|
26
|
+
import { Winicon } from './component/wini-icon/winicon';
|
|
27
|
+
import { NumberPicker } from './component/number-picker/number-picker';
|
|
28
|
+
import { InputOpt } from './component/input-opt/input-opt';
|
|
29
|
+
import { WLoginView } from './form/login/view';
|
|
30
|
+
export { Calendar, CalendarType, ComponentStatus, getStatusIcon, Checkbox, Select1, Switch, Popup, showPopup, closePopup, Dialog, showDialog, DialogAlignment, DatePicker, SelectMultiple, ProgressBar, Text, Pagination, Table, TbCell, TbHeader, TbBody, TbRow, CellAlignItems, TextField, RadioButton, TextArea, ImportFile, ToastMessage, InfiniteScroll, Rating, ProgressCircle, CustomSlider, ToastContainer, Button, Tag, Winicon, NumberPicker, InputOpt, WLoginView, };
|
|
31
|
+
export type { OptionsItem };
|
|
32
|
+
export { i18n } from './language/i18n';
|