@sellmate/design-system-react 1.20.1 → 1.21.0
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/index.d.ts +1 -1
- package/lib/index.ts +72 -16
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -6,4 +6,4 @@ export { sdModal } from './sdModal';
|
|
|
6
6
|
export type { SdModalCreateOption } from './sdModal';
|
|
7
7
|
export { sdLoading } from '@sellmate/design-system/utils';
|
|
8
8
|
export type { SdLoadingShowOptions } from '@sellmate/design-system/utils';
|
|
9
|
-
export type {
|
|
9
|
+
export type { ButtonName, ButtonProps, ButtonType, ButtonSize, GhostButtonIntent, GhostButtonSize, DropdownButtonItem, DropdownButtonName, DropdownButtonSize, DropdownButtonValue, BadgeColor, FieldAddonAlign, FieldSize, Rule, FieldIdentifier, ValidatableField, InputSize, NumberInputSize, BarcodeInputSize, ChipInputSize, SdTooltipProps, TooltipType, CalloutType, CalendarEventGroup, CheckedType, RadioValue, RadioOption, SelectOption, SelectOptionSelectDetail, SelectType, SelectValue, ConfirmModalMainButton, ConfirmModalType, ConfirmModalOptions, TagName, SdModalCreateOptions, ModalDialogRefLike, SdLoadingShowArgs, LoadingModalState, LoadingModalOptions, Type as DateBoxType, DatePickerSize, DateRangeValue, SdKeyValueField, SdKeyValueChangeDetail, LinearProgressType, CircleProgressType, PopoverButton, PopoverLink, PopupType, GuideType, TextLinkSize, TabOption, TabSize, ToastType, ToastPosition, ToastEntry, ToastNotifyOptions, SdTableColumn, Row as SdTableRow, SdTablePagination, SdTableStickyColumn, SdTableConfig, } from '@sellmate/design-system';
|
package/lib/index.ts
CHANGED
|
@@ -9,38 +9,94 @@ export type { SdModalCreateOption } from './sdModal';
|
|
|
9
9
|
export { sdLoading } from '@sellmate/design-system/utils';
|
|
10
10
|
export type { SdLoadingShowOptions } from '@sellmate/design-system/utils';
|
|
11
11
|
|
|
12
|
-
// Export
|
|
12
|
+
// Export component types for React usage
|
|
13
13
|
export type {
|
|
14
|
-
// Table types
|
|
15
|
-
SdTableColumn,
|
|
16
|
-
Row as SdTableRow,
|
|
17
|
-
// Select types
|
|
18
|
-
SelectOption,
|
|
19
|
-
// Radio types
|
|
20
|
-
RadioValue,
|
|
21
|
-
RadioOption,
|
|
22
14
|
// Button types
|
|
23
15
|
ButtonName,
|
|
16
|
+
ButtonProps,
|
|
17
|
+
ButtonType,
|
|
18
|
+
ButtonSize,
|
|
19
|
+
GhostButtonIntent,
|
|
20
|
+
GhostButtonSize,
|
|
21
|
+
// DropdownButton types
|
|
24
22
|
DropdownButtonItem,
|
|
25
23
|
DropdownButtonName,
|
|
26
24
|
DropdownButtonSize,
|
|
27
25
|
DropdownButtonValue,
|
|
26
|
+
// Badge types
|
|
27
|
+
BadgeColor,
|
|
28
|
+
// Field types
|
|
29
|
+
FieldAddonAlign,
|
|
30
|
+
FieldSize,
|
|
28
31
|
// Form types
|
|
29
32
|
Rule,
|
|
33
|
+
FieldIdentifier,
|
|
30
34
|
ValidatableField,
|
|
35
|
+
// Input types
|
|
36
|
+
InputSize,
|
|
37
|
+
NumberInputSize,
|
|
38
|
+
BarcodeInputSize,
|
|
39
|
+
ChipInputSize,
|
|
31
40
|
// Tooltip types
|
|
32
41
|
SdTooltipProps,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
42
|
+
TooltipType,
|
|
43
|
+
// Callout types
|
|
44
|
+
CalloutType,
|
|
45
|
+
// Calendar types
|
|
46
|
+
CalendarEventGroup,
|
|
38
47
|
// Checkbox types
|
|
39
48
|
CheckedType,
|
|
49
|
+
// Radio types
|
|
50
|
+
RadioValue,
|
|
51
|
+
RadioOption,
|
|
52
|
+
// Select types
|
|
53
|
+
SelectOption,
|
|
54
|
+
SelectOptionSelectDetail,
|
|
55
|
+
SelectType,
|
|
56
|
+
SelectValue,
|
|
57
|
+
// ConfirmModal types
|
|
58
|
+
ConfirmModalMainButton,
|
|
59
|
+
ConfirmModalType,
|
|
60
|
+
ConfirmModalOptions,
|
|
61
|
+
TagName,
|
|
62
|
+
// Modal types
|
|
63
|
+
SdModalCreateOptions,
|
|
64
|
+
ModalDialogRefLike,
|
|
65
|
+
// Loading types
|
|
66
|
+
SdLoadingShowArgs,
|
|
67
|
+
LoadingModalState,
|
|
68
|
+
LoadingModalOptions,
|
|
40
69
|
// Date types
|
|
41
70
|
Type as DateBoxType,
|
|
71
|
+
DatePickerSize,
|
|
72
|
+
DateRangeValue,
|
|
73
|
+
// KeyValueTable types
|
|
74
|
+
SdKeyValueField,
|
|
75
|
+
SdKeyValueChangeDetail,
|
|
76
|
+
// Progress types
|
|
77
|
+
LinearProgressType,
|
|
78
|
+
CircleProgressType,
|
|
79
|
+
// Popover types
|
|
80
|
+
PopoverButton,
|
|
81
|
+
PopoverLink,
|
|
82
|
+
// Popup types
|
|
83
|
+
PopupType,
|
|
84
|
+
// Guide types
|
|
85
|
+
GuideType,
|
|
86
|
+
// TextLink types
|
|
87
|
+
TextLinkSize,
|
|
42
88
|
// Tab types
|
|
43
89
|
TabOption,
|
|
44
|
-
|
|
45
|
-
|
|
90
|
+
TabSize,
|
|
91
|
+
// Toast types
|
|
92
|
+
ToastType,
|
|
93
|
+
ToastPosition,
|
|
94
|
+
ToastEntry,
|
|
95
|
+
ToastNotifyOptions,
|
|
96
|
+
// Table types
|
|
97
|
+
SdTableColumn,
|
|
98
|
+
Row as SdTableRow,
|
|
99
|
+
SdTablePagination,
|
|
100
|
+
SdTableStickyColumn,
|
|
101
|
+
SdTableConfig,
|
|
46
102
|
} from '@sellmate/design-system';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "Design System - React Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@sellmate/design-system": "^1.
|
|
58
|
+
"@sellmate/design-system": "^1.21.0",
|
|
59
59
|
"@stencil/react-output-target": "^1.2.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|