@elliemae/ds-mobile 2.0.0 → 2.1.0-rc.1
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/cjs/FullPageContainer/FullPageContainer.js +2 -2
- package/cjs/FullPageContainer/FullPageContainerScroll.js +2 -2
- package/cjs/GlobalHeader/MobileGlobalHeader.js +2 -2
- package/cjs/LoadingPage/Page.js +2 -2
- package/cjs/MobileActionToolbar/MobileActionToolbarItem.js +2 -2
- package/cjs/MobileBanner/MobileBanner.js +2 -2
- package/cjs/MobileCard/Card.js +3 -3
- package/cjs/MobileContextMenu/MobileContextMenu.js +2 -2
- package/cjs/MobileContextMenu/MobileContextMenuGroup.js +2 -2
- package/cjs/MobileContextMenu/MobileContextMenuItem.js +2 -2
- package/cjs/MobileDatePicker/Input.js +2 -2
- package/cjs/MobileDropdownMenu/MobileDropdownInput.js +2 -2
- package/cjs/MobileFooter/Action.js +2 -2
- package/cjs/MobileSelectList/MobileSelectList.js +2 -2
- package/cjs/MobileSeparator/Separator.js +2 -2
- package/cjs/MobileTimePicker/Input.js +2 -2
- package/cjs/MobileTouchable/MobileTouchable.js +2 -2
- package/cjs/Modal/Modal.js +2 -2
- package/cjs/Tabs/index.js +2 -2
- package/esm/FullPageContainer/FullPageContainer.js +2 -2
- package/esm/FullPageContainer/FullPageContainerScroll.js +2 -2
- package/esm/GlobalHeader/MobileGlobalHeader.js +2 -2
- package/esm/LoadingPage/Page.js +2 -2
- package/esm/MobileActionToolbar/MobileActionToolbarItem.js +2 -2
- package/esm/MobileBanner/MobileBanner.js +2 -2
- package/esm/MobileCard/Card.js +3 -3
- package/esm/MobileContextMenu/MobileContextMenu.js +2 -2
- package/esm/MobileContextMenu/MobileContextMenuGroup.js +2 -2
- package/esm/MobileContextMenu/MobileContextMenuItem.js +2 -2
- package/esm/MobileDatePicker/Input.js +2 -2
- package/esm/MobileDropdownMenu/MobileDropdownInput.js +2 -2
- package/esm/MobileFooter/Action.js +1 -1
- package/esm/MobileSelectList/MobileSelectList.js +2 -2
- package/esm/MobileSeparator/Separator.js +2 -2
- package/esm/MobileTimePicker/Input.js +2 -2
- package/esm/MobileTouchable/MobileTouchable.js +2 -2
- package/esm/Modal/Modal.js +2 -2
- package/esm/Tabs/index.js +2 -2
- package/package.json +16 -15
- package/types/CategoryBox/CategoryBox.d.ts +8 -8
- package/types/CollectionBox/CollectionBox.d.ts +8 -8
- package/types/GlobalHeader/MobileGlobalHeader.d.ts +10 -10
- package/types/GroupBox/GroupBox.d.ts +10 -10
- package/types/InfiniteLoader/Infiniteloader.d.ts +6 -6
- package/types/InfiniteLoader/VirtualizedInfiniteLoader.d.ts +14 -14
- package/types/MobileActionToolbar/MobileActionToolbarItem.d.ts +2 -2
- package/types/MobileBanner/MobileBanner.d.ts +22 -22
- package/types/MobileBanner/propTypes.d.ts +22 -22
- package/types/MobileCard/props.d.ts +24 -24
- package/types/MobileContextMenu/MobileContextMenuGroup.d.ts +8 -8
- package/types/MobileContextMenu/MobileContextMenuItem.d.ts +16 -16
- package/types/MobileDatePicker/MobileDatePicker.d.ts +10 -10
- package/types/MobileDropdownMenu/MobileDropdownMenu.d.ts +6 -6
- package/types/MobileEmtpyState/MobileEmptyState.d.ts +2 -2
- package/types/MobileFilterbar/Filterbar.d.ts +1 -1
- package/types/MobileFilterbar/FilterbarItem.d.ts +3 -3
- package/types/MobileFilterbar/FilterbarSort.d.ts +1 -1
- package/types/MobileFooter/Action.d.ts +6 -6
- package/types/MobileTimePicker/MobileTimePicker.d.ts +10 -10
- package/types/Modal/Modal.d.ts +8 -8
- package/types/SideNav/SideNav.d.ts +8 -8
- package/types/SwipeToRefresh/SwipeToRefresh.d.ts +4 -4
- package/types/Tabs/propTypes.d.ts +1 -1
|
@@ -21,98 +21,98 @@ export declare const cardPropsTypes: {
|
|
|
21
21
|
* card height
|
|
22
22
|
*/
|
|
23
23
|
height: {
|
|
24
|
-
defaultValue
|
|
24
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
25
25
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
26
26
|
};
|
|
27
|
-
isRequired: import("react-desc").
|
|
27
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* Defines mobile card title
|
|
31
31
|
*/
|
|
32
|
-
children: import("react-desc").
|
|
32
|
+
children: import("react-desc").PropTypesDescValue;
|
|
33
33
|
/**
|
|
34
34
|
* Wheter if the card is expandable or not
|
|
35
35
|
*/
|
|
36
36
|
expandable: {
|
|
37
|
-
defaultValue
|
|
37
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
38
38
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
39
|
};
|
|
40
|
-
isRequired: import("react-desc").
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
41
41
|
};
|
|
42
42
|
/**
|
|
43
43
|
* content to display in expand card section
|
|
44
44
|
*/
|
|
45
45
|
expandedContent: {
|
|
46
|
-
defaultValue
|
|
46
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
47
47
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
48
|
};
|
|
49
|
-
isRequired: import("react-desc").
|
|
49
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
50
50
|
};
|
|
51
51
|
/**
|
|
52
52
|
* Icon to the left of the card. Size is adjusted automatically.
|
|
53
53
|
*/
|
|
54
54
|
leftAddOn: {
|
|
55
|
-
defaultValue
|
|
55
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
56
56
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
57
57
|
};
|
|
58
|
-
isRequired: import("react-desc").
|
|
58
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
61
61
|
* Pass an element to render left. For example a Button with an icon
|
|
62
62
|
*/
|
|
63
63
|
leftProp: {
|
|
64
|
-
defaultValue
|
|
64
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
65
65
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
66
|
};
|
|
67
|
-
isRequired: import("react-desc").
|
|
67
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* Pass an array of 1 or 2 elements to render right. For example a Button with an icon
|
|
71
71
|
*/
|
|
72
72
|
rightProp: {
|
|
73
|
-
defaultValue
|
|
73
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
74
74
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
75
75
|
};
|
|
76
|
-
isRequired: import("react-desc").
|
|
76
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
77
77
|
};
|
|
78
78
|
/**
|
|
79
79
|
* Pass an array of 1 or 2 strings
|
|
80
80
|
*/
|
|
81
81
|
subText: {
|
|
82
|
-
defaultValue
|
|
82
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
83
83
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
84
84
|
};
|
|
85
|
-
isRequired: import("react-desc").
|
|
85
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
88
|
* SubIcons component
|
|
89
89
|
*/
|
|
90
90
|
subIcons: {
|
|
91
|
-
defaultValue
|
|
91
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
92
92
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
93
93
|
};
|
|
94
|
-
isRequired: import("react-desc").
|
|
94
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
95
95
|
};
|
|
96
96
|
/**
|
|
97
97
|
* Pass an array of 1, 2 or 3 strings
|
|
98
98
|
*/
|
|
99
99
|
details: {
|
|
100
|
-
defaultValue
|
|
100
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
101
101
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
102
102
|
};
|
|
103
|
-
isRequired: import("react-desc").
|
|
103
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
104
104
|
};
|
|
105
|
-
theme: import("react-desc").
|
|
105
|
+
theme: import("react-desc").PropTypesDescValue;
|
|
106
106
|
value: {
|
|
107
|
-
defaultValue
|
|
107
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
108
108
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
109
109
|
};
|
|
110
|
-
isRequired: import("react-desc").
|
|
110
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
111
111
|
};
|
|
112
112
|
cardContent: {
|
|
113
|
-
defaultValue
|
|
113
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
114
114
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
115
115
|
};
|
|
116
|
-
isRequired: import("react-desc").
|
|
116
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
117
117
|
};
|
|
118
118
|
};
|
|
@@ -20,31 +20,31 @@ declare const DSMobileContextMenuGroup: {
|
|
|
20
20
|
children: any;
|
|
21
21
|
/** multi select */
|
|
22
22
|
isMulti: {
|
|
23
|
-
defaultValue
|
|
23
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
24
24
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
25
|
};
|
|
26
|
-
isRequired: import("react-desc").
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
27
27
|
};
|
|
28
28
|
/** single select */
|
|
29
29
|
singleSelect: {
|
|
30
|
-
defaultValue
|
|
30
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
31
31
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
32
|
};
|
|
33
|
-
isRequired: import("react-desc").
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
34
34
|
};
|
|
35
35
|
/** value for select */
|
|
36
36
|
value: {
|
|
37
|
-
defaultValue
|
|
37
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
38
38
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
39
|
};
|
|
40
|
-
isRequired: import("react-desc").
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
41
41
|
};
|
|
42
42
|
/** selected items, array for multi, string for single */
|
|
43
43
|
selectedItems: {
|
|
44
|
-
defaultValue
|
|
44
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
45
45
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
46
46
|
};
|
|
47
|
-
isRequired: import("react-desc").
|
|
47
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
componentType: string;
|
|
@@ -16,61 +16,61 @@ declare const DSMobileContextMenuItem: {
|
|
|
16
16
|
propTypes: {
|
|
17
17
|
/** label */
|
|
18
18
|
label: {
|
|
19
|
-
defaultValue
|
|
19
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
20
20
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
21
|
};
|
|
22
|
-
isRequired: import("react-desc").
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
23
23
|
};
|
|
24
24
|
/** menu item title */
|
|
25
25
|
title: any;
|
|
26
26
|
/** */
|
|
27
27
|
leftProp: {
|
|
28
|
-
defaultValue
|
|
28
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
29
29
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
30
|
};
|
|
31
|
-
isRequired: import("react-desc").
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
32
32
|
};
|
|
33
33
|
/** multi select */
|
|
34
34
|
isMulti: {
|
|
35
|
-
defaultValue
|
|
35
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
36
36
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
37
37
|
};
|
|
38
|
-
isRequired: import("react-desc").
|
|
38
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
39
39
|
};
|
|
40
40
|
/** */
|
|
41
41
|
singleSelect: {
|
|
42
|
-
defaultValue
|
|
42
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
43
43
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
44
44
|
};
|
|
45
|
-
isRequired: import("react-desc").
|
|
45
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
46
46
|
};
|
|
47
47
|
/** */
|
|
48
48
|
isGroup: {
|
|
49
|
-
defaultValue
|
|
49
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
50
50
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
51
|
};
|
|
52
|
-
isRequired: import("react-desc").
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
53
53
|
};
|
|
54
54
|
/** on click handler */
|
|
55
55
|
onClick: {
|
|
56
|
-
defaultValue
|
|
56
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
57
57
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
58
58
|
};
|
|
59
|
-
isRequired: import("react-desc").
|
|
59
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
60
60
|
};
|
|
61
61
|
/** value for select */
|
|
62
62
|
value: {
|
|
63
|
-
defaultValue
|
|
63
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
64
64
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
65
65
|
};
|
|
66
|
-
isRequired: import("react-desc").
|
|
66
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
67
67
|
};
|
|
68
68
|
/** selected value */
|
|
69
69
|
isSelected: {
|
|
70
|
-
defaultValue
|
|
70
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
71
71
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
72
72
|
};
|
|
73
|
-
isRequired: import("react-desc").
|
|
73
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
74
74
|
};
|
|
75
75
|
};
|
|
76
76
|
};
|
|
@@ -18,46 +18,46 @@ declare const DSMobileDatePicker: {
|
|
|
18
18
|
* defaults to false
|
|
19
19
|
*/
|
|
20
20
|
disabled: {
|
|
21
|
-
defaultValue
|
|
21
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
22
22
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
23
|
};
|
|
24
|
-
isRequired: import("react-desc").
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
25
25
|
};
|
|
26
26
|
/**
|
|
27
27
|
* 0 as default
|
|
28
28
|
*/
|
|
29
29
|
tabIndex: {
|
|
30
|
-
defaultValue
|
|
30
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
31
31
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
32
|
};
|
|
33
|
-
isRequired: import("react-desc").
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
34
34
|
};
|
|
35
35
|
/**
|
|
36
36
|
* MM / DD / YYYY as default
|
|
37
37
|
*/
|
|
38
38
|
placeholder: {
|
|
39
|
-
defaultValue
|
|
39
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
40
40
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
41
|
};
|
|
42
|
-
isRequired: import("react-desc").
|
|
42
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
43
43
|
};
|
|
44
44
|
/**
|
|
45
45
|
* onChange handler, receives change event as first argument
|
|
46
46
|
*/
|
|
47
47
|
onChange: {
|
|
48
|
-
defaultValue
|
|
48
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
49
49
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
50
50
|
};
|
|
51
|
-
isRequired: import("react-desc").
|
|
51
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
52
52
|
};
|
|
53
53
|
/**
|
|
54
54
|
* ISO8601 string representing the date in format YYYY-MM-DD or empty string
|
|
55
55
|
*/
|
|
56
56
|
value: {
|
|
57
|
-
defaultValue
|
|
57
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
58
58
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
59
|
};
|
|
60
|
-
isRequired: import("react-desc").
|
|
60
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
63
|
};
|
|
@@ -24,24 +24,24 @@ declare const DSMobileDropdownMenu: {
|
|
|
24
24
|
propTypes: {
|
|
25
25
|
/** dropdown menu placeholder */
|
|
26
26
|
placeholder: {
|
|
27
|
-
defaultValue
|
|
27
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
28
28
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
29
|
};
|
|
30
|
-
isRequired: import("react-desc").
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
31
31
|
};
|
|
32
32
|
/** context menu menu title */
|
|
33
33
|
title: {
|
|
34
|
-
defaultValue
|
|
34
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
35
35
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
36
|
};
|
|
37
|
-
isRequired: import("react-desc").
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
38
38
|
};
|
|
39
39
|
/** context menu options / items */
|
|
40
40
|
options: {
|
|
41
|
-
defaultValue
|
|
41
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
42
42
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
43
43
|
};
|
|
44
|
-
isRequired: import("react-desc").
|
|
44
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
};
|
|
@@ -7,10 +7,10 @@ declare const DSMobileEmptyState: {
|
|
|
7
7
|
propTypes: {
|
|
8
8
|
/** empty state label */
|
|
9
9
|
label: {
|
|
10
|
-
defaultValue
|
|
10
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
11
11
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
12
12
|
};
|
|
13
|
-
isRequired: import("react-desc").
|
|
13
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
};
|
|
@@ -6,12 +6,12 @@ declare const DSMobileFilterbarItem: {
|
|
|
6
6
|
onClick: any;
|
|
7
7
|
}): JSX.Element;
|
|
8
8
|
propTypes: {
|
|
9
|
-
children: import("react-desc").
|
|
9
|
+
children: import("react-desc").PropTypesDescValue;
|
|
10
10
|
onClick: {
|
|
11
|
-
defaultValue
|
|
11
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
12
12
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
13
13
|
};
|
|
14
|
-
isRequired: import("react-desc").
|
|
14
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
};
|
|
@@ -9,24 +9,24 @@ declare const DSMobileFooterAction: {
|
|
|
9
9
|
propTypes: {
|
|
10
10
|
/** Action label */
|
|
11
11
|
label: {
|
|
12
|
-
defaultValue
|
|
12
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
13
13
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
14
|
};
|
|
15
|
-
isRequired: import("react-desc").
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
16
16
|
};
|
|
17
17
|
/** Action icon */
|
|
18
18
|
icon: {
|
|
19
|
-
defaultValue
|
|
19
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
20
20
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
21
|
};
|
|
22
|
-
isRequired: import("react-desc").
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
23
23
|
};
|
|
24
24
|
/** onClick callback */
|
|
25
25
|
onClick: {
|
|
26
|
-
defaultValue
|
|
26
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
27
27
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
28
28
|
};
|
|
29
|
-
isRequired: import("react-desc").
|
|
29
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
};
|
|
@@ -19,46 +19,46 @@ declare const DSMobileTimePicker: {
|
|
|
19
19
|
* defaults to false
|
|
20
20
|
*/
|
|
21
21
|
disabled: {
|
|
22
|
-
defaultValue
|
|
22
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
23
23
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
24
|
};
|
|
25
|
-
isRequired: import("react-desc").
|
|
25
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* 0 as default
|
|
29
29
|
*/
|
|
30
30
|
tabIndex: {
|
|
31
|
-
defaultValue
|
|
31
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
32
32
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
33
33
|
};
|
|
34
|
-
isRequired: import("react-desc").
|
|
34
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
37
37
|
* HH : MM am as default
|
|
38
38
|
*/
|
|
39
39
|
placeholder: {
|
|
40
|
-
defaultValue
|
|
40
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
41
41
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
42
|
};
|
|
43
|
-
isRequired: import("react-desc").
|
|
43
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
44
44
|
};
|
|
45
45
|
/**
|
|
46
46
|
* onChange handler, receives change event as first argument
|
|
47
47
|
*/
|
|
48
48
|
onChange: {
|
|
49
|
-
defaultValue
|
|
49
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
50
50
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
51
|
};
|
|
52
|
-
isRequired: import("react-desc").
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
55
|
* HH:MM string representing the time or empty string
|
|
56
56
|
*/
|
|
57
57
|
value: {
|
|
58
|
-
defaultValue
|
|
58
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
59
59
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
60
60
|
};
|
|
61
|
-
isRequired: import("react-desc").
|
|
61
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
};
|
package/types/Modal/Modal.d.ts
CHANGED
|
@@ -24,28 +24,28 @@ declare const Modal: {
|
|
|
24
24
|
zIndex: {
|
|
25
25
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
26
26
|
};
|
|
27
|
-
title: import("react-desc").
|
|
28
|
-
description: import("react-desc").
|
|
27
|
+
title: import("react-desc").PropTypesDescValue;
|
|
28
|
+
description: import("react-desc").PropTypesDescValue;
|
|
29
29
|
onClose: {
|
|
30
|
-
defaultValue
|
|
30
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
31
31
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
32
|
};
|
|
33
|
-
isRequired: import("react-desc").
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
34
34
|
};
|
|
35
35
|
showSecondaryAction: {
|
|
36
36
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
37
37
|
};
|
|
38
38
|
secondaryActionProps: {
|
|
39
|
-
defaultValue
|
|
39
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
40
40
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
41
|
};
|
|
42
|
-
isRequired: import("react-desc").
|
|
42
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
43
43
|
};
|
|
44
44
|
primaryActionProps: {
|
|
45
|
-
defaultValue
|
|
45
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
46
46
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
47
|
};
|
|
48
|
-
isRequired: import("react-desc").
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
};
|
|
@@ -11,10 +11,10 @@ declare const DSSideNav: {
|
|
|
11
11
|
propTypes: {
|
|
12
12
|
/** inject props to wrapper element of side nav */
|
|
13
13
|
containerProps: {
|
|
14
|
-
defaultValue
|
|
14
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
15
15
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
16
16
|
};
|
|
17
|
-
isRequired: import("react-desc").
|
|
17
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
20
20
|
* Heading Title
|
|
@@ -24,28 +24,28 @@ declare const DSSideNav: {
|
|
|
24
24
|
* Callback function when close is menu is triggered
|
|
25
25
|
*/
|
|
26
26
|
onClose: {
|
|
27
|
-
defaultValue
|
|
27
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
28
28
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
29
|
};
|
|
30
|
-
isRequired: import("react-desc").
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
31
31
|
};
|
|
32
32
|
/**
|
|
33
33
|
* Top Menu items array
|
|
34
34
|
*/
|
|
35
35
|
menuItems: {
|
|
36
|
-
defaultValue
|
|
36
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
37
37
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
38
|
};
|
|
39
|
-
isRequired: import("react-desc").
|
|
39
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
40
40
|
};
|
|
41
41
|
/**
|
|
42
42
|
* Bottom Menu items array
|
|
43
43
|
*/
|
|
44
44
|
bottomMenuItems: {
|
|
45
|
-
defaultValue
|
|
45
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
46
46
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
47
|
};
|
|
48
|
-
isRequired: import("react-desc").
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
};
|
|
@@ -11,17 +11,17 @@ declare const SwipeToRefresh: {
|
|
|
11
11
|
children: any;
|
|
12
12
|
/** toggle loading state for swipe */
|
|
13
13
|
loading: {
|
|
14
|
-
defaultValue
|
|
14
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
15
15
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
16
16
|
};
|
|
17
|
-
isRequired: import("react-desc").
|
|
17
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
18
18
|
};
|
|
19
19
|
/** callback on refresh swipe */
|
|
20
20
|
onRefresh: {
|
|
21
|
-
defaultValue
|
|
21
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
22
22
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
23
|
};
|
|
24
|
-
isRequired: import("react-desc").
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
25
25
|
};
|
|
26
26
|
};
|
|
27
27
|
};
|
|
@@ -29,7 +29,7 @@ export declare const MobileTabsPropTypes: {
|
|
|
29
29
|
activeTab: {
|
|
30
30
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
31
31
|
};
|
|
32
|
-
children: import("react-desc").
|
|
32
|
+
children: import("react-desc").PropTypesDescValue;
|
|
33
33
|
tabsListAriaLabel: {
|
|
34
34
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
35
|
};
|