@elliemae/ds-mobile 2.0.0-rc.5 → 2.0.0-rc.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/package.json +18 -6
- package/types/CategoryBox/CategoryBox.d.ts +36 -5
- package/types/CollectionBox/CollectionBox.d.ts +36 -5
- package/types/GlobalHeader/MobileGlobalHeader.d.ts +43 -6
- package/types/GlobalHeader/styles.d.ts +6 -6
- package/types/GroupBox/GroupBox.d.ts +43 -6
- package/types/InfiniteLoader/Infiniteloader.d.ts +29 -4
- package/types/InfiniteLoader/VirtualizedInfiniteLoader.d.ts +56 -8
- package/types/InfiniteLoader/styled.d.ts +1 -1
- package/types/LoadingPage/Page.d.ts +1 -1
- package/types/MobileActionToolbar/MobileActionToolbar.d.ts +16 -4
- package/types/MobileActionToolbar/MobileActionToolbarItem.d.ts +15 -2
- package/types/MobileBanner/MobileBanner.d.ts +72 -12
- package/types/MobileBanner/propTypes.d.ts +67 -11
- package/types/MobileBanner/styles.d.ts +10 -69
- package/types/MobileCard/Card.d.ts +23 -13
- package/types/MobileCard/Group.d.ts +18 -8
- package/types/MobileCard/StyledCard.d.ts +1 -1
- package/types/MobileCard/index.d.ts +4 -12
- package/types/MobileContextMenu/MobileContextMenu.d.ts +13 -2
- package/types/MobileContextMenu/MobileContextMenuGroup.d.ts +37 -5
- package/types/MobileContextMenu/MobileContextMenuItem.d.ts +54 -9
- package/types/MobileDatePicker/MobileDatePicker.d.ts +42 -6
- package/types/MobileDropdownMenu/MobileDropdownInput.d.ts +2 -2
- package/types/MobileDropdownMenu/MobileDropdownMenu.d.ts +24 -4
- package/types/MobileEmtpyState/MobileEmptyState.d.ts +14 -2
- package/types/MobileFilterbar/Filterbar.d.ts +9 -2
- package/types/MobileFilterbar/FilterbarItem.d.ts +15 -2
- package/types/MobileFilterbar/FilterbarSort.d.ts +9 -2
- package/types/MobileFooter/Action.d.ts +19 -3
- package/types/MobileFooter/Footer.d.ts +8 -1
- package/types/MobileFooter/Text.d.ts +8 -1
- package/types/MobileListItem/MobileListItem.d.ts +17 -7
- package/types/MobilePageHeader/MobilePageHeader.d.ts +21 -11
- package/types/MobileSelectList/MobileSelectList.d.ts +3 -3
- package/types/MobileSelectList/styled.d.ts +4 -4
- package/types/MobileSeparator/Separator.d.ts +23 -5
- package/types/MobileTimePicker/MobileTimePicker.d.ts +31 -5
- package/types/MobileTouchable/MobileTouchable.d.ts +1 -1
- package/types/Modal/Modal.d.ts +50 -9
- package/types/Modal/styled.d.ts +6 -6
- package/types/PageList/PageList.d.ts +2 -2
- package/types/PageSearch/PageSearch.d.ts +2 -2
- package/types/PageSummary/Tags.d.ts +4 -4
- package/types/SideNav/SideNav.d.ts +25 -4
- package/types/SideNav/styles.d.ts +8 -8
- package/types/SwipeToRefresh/SwipeToRefresh.d.ts +22 -3
- package/types/SwipeToRefresh/styled.d.ts +4 -4
|
@@ -1,13 +1,69 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
export declare const propTypes: {
|
|
2
|
-
type:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
type: {
|
|
4
|
+
defaultValue<T = unknown>(arg: T): {
|
|
5
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
6
|
+
};
|
|
7
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
8
|
+
};
|
|
9
|
+
isOpen: {
|
|
10
|
+
defaultValue<T = unknown>(arg: T): {
|
|
11
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
12
|
+
};
|
|
13
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
15
|
+
closeButtonOnClick: {
|
|
16
|
+
defaultValue<T = unknown>(arg: T): {
|
|
17
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
18
|
+
};
|
|
19
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
20
|
+
};
|
|
21
|
+
actionLinkLabel: {
|
|
22
|
+
defaultValue<T = unknown>(arg: T): {
|
|
23
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
|
+
};
|
|
25
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
26
|
+
};
|
|
27
|
+
actionLinkHref: {
|
|
28
|
+
defaultValue<T = unknown>(arg: T): {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
actionLinkOnClick: {
|
|
34
|
+
defaultValue<T = unknown>(arg: T): {
|
|
35
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
|
+
};
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
label: {
|
|
40
|
+
defaultValue<T = unknown>(arg: T): {
|
|
41
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
body: {
|
|
46
|
+
defaultValue<T = unknown>(arg: T): {
|
|
47
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
48
|
+
};
|
|
49
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
showCloseButton: {
|
|
52
|
+
defaultValue<T = unknown>(arg: T): {
|
|
53
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
54
|
+
};
|
|
55
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
containerProps: {
|
|
58
|
+
defaultValue<T = unknown>(arg: T): {
|
|
59
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
60
|
+
};
|
|
61
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
62
|
+
};
|
|
63
|
+
focusOnOpen: {
|
|
64
|
+
defaultValue<T = unknown>(arg: T): {
|
|
65
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
66
|
+
};
|
|
67
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
68
|
+
};
|
|
13
69
|
};
|
|
@@ -1,70 +1,11 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { StyledBannerContainerT, StyledContentT, StyledInnerContainerT } from './index.d';
|
|
3
|
-
export declare const StyledInnerContainer: import("styled-components").StyledComponent<"div",
|
|
4
|
-
export declare const StyledTextContent: import("styled-components").StyledComponent<"div",
|
|
5
|
-
export declare const StyledTitle: import("styled-components").StyledComponent<"div",
|
|
6
|
-
export declare const StyledSubTitle: import("styled-components").StyledComponent<"div",
|
|
7
|
-
export declare const StyledIconContainer: import("styled-components").StyledComponent<"div",
|
|
8
|
-
export declare const StyledContent: import("styled-components").StyledComponent<"div",
|
|
9
|
-
export declare const StyledCloseButtonContainer: import("styled-components").StyledComponent<"div",
|
|
10
|
-
export declare const StyledCloseButton: import("styled-components").StyledComponent<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
innerRef: any;
|
|
14
|
-
disabled: any;
|
|
15
|
-
buttonType: any;
|
|
16
|
-
fluidWidth: any;
|
|
17
|
-
size: any;
|
|
18
|
-
labelText: any;
|
|
19
|
-
icon: any;
|
|
20
|
-
onBlur: any;
|
|
21
|
-
onClick: any;
|
|
22
|
-
onKeyPress: any;
|
|
23
|
-
leftIcon: any;
|
|
24
|
-
tabIndex: any;
|
|
25
|
-
variant: any;
|
|
26
|
-
intent: any;
|
|
27
|
-
containerProps: any;
|
|
28
|
-
className: any;
|
|
29
|
-
as: any;
|
|
30
|
-
type: any;
|
|
31
|
-
}): JSX.Element;
|
|
32
|
-
defaultProps: {
|
|
33
|
-
disabled: boolean;
|
|
34
|
-
fluidWidth: boolean;
|
|
35
|
-
labelText: string;
|
|
36
|
-
icon: null;
|
|
37
|
-
onBlur: () => null;
|
|
38
|
-
onClick: () => null;
|
|
39
|
-
onKeyPress: () => null;
|
|
40
|
-
leftIcon: null;
|
|
41
|
-
tabIndex: number;
|
|
42
|
-
variant: string;
|
|
43
|
-
containerProps: {};
|
|
44
|
-
as: string;
|
|
45
|
-
type: string;
|
|
46
|
-
};
|
|
47
|
-
propTypes: {
|
|
48
|
-
tabIndex: any;
|
|
49
|
-
className: any;
|
|
50
|
-
'aria-disabled': any;
|
|
51
|
-
as: any;
|
|
52
|
-
disabled: any;
|
|
53
|
-
fluidWidth: any;
|
|
54
|
-
labelText: any;
|
|
55
|
-
icon: any;
|
|
56
|
-
leftIcon: any;
|
|
57
|
-
buttonType: any;
|
|
58
|
-
size: any;
|
|
59
|
-
type: any;
|
|
60
|
-
variant: any;
|
|
61
|
-
innerRef: any;
|
|
62
|
-
onBlur: any;
|
|
63
|
-
intent: any;
|
|
64
|
-
containerProps: any;
|
|
65
|
-
onClick: any;
|
|
66
|
-
onKeyPress: any;
|
|
67
|
-
};
|
|
68
|
-
}, any, {}, never>;
|
|
69
|
-
export declare const StyledActionLink: import("styled-components").StyledComponent<"a", any, {}, never>;
|
|
70
|
-
export declare const StyledBannerContainer: import("styled-components").StyledComponent<"div", any, StyledBannerContainerT, never>;
|
|
2
|
+
export declare const StyledInnerContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledInnerContainerT, never>;
|
|
3
|
+
export declare const StyledTextContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const StyledTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const StyledSubTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const StyledIconContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const StyledContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledContentT, never>;
|
|
8
|
+
export declare const StyledCloseButtonContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
+
export declare const StyledCloseButton: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
10
|
+
export declare const StyledActionLink: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
+
export declare const StyledBannerContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledBannerContainerT, never>;
|
|
@@ -1,19 +1,29 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
import React from 'react';
|
|
2
|
-
declare const DSMobileCardWithSchema:
|
|
3
|
+
declare const DSMobileCardWithSchema: {
|
|
4
|
+
(props?: {
|
|
5
|
+
children: any;
|
|
6
|
+
height?: string | undefined;
|
|
7
|
+
leftAddOn: any;
|
|
8
|
+
leftProp: any;
|
|
9
|
+
rightProp: any;
|
|
10
|
+
subText: any;
|
|
11
|
+
subIcons: any;
|
|
12
|
+
details: any;
|
|
13
|
+
theme: any;
|
|
14
|
+
expandable?: boolean | undefined;
|
|
15
|
+
expandedContent: any;
|
|
16
|
+
value: any;
|
|
17
|
+
} | undefined): JSX.Element;
|
|
18
|
+
propTypes: unknown;
|
|
19
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
20
|
+
};
|
|
3
21
|
export { DSMobileCardWithSchema };
|
|
4
22
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
leftProp: any;
|
|
9
|
-
rightProp: any;
|
|
10
|
-
value: any;
|
|
11
|
-
leftAddOn: any;
|
|
12
|
-
subText: any;
|
|
13
|
-
subIcons: any;
|
|
14
|
-
expandable?: boolean | undefined;
|
|
15
|
-
expandedContent: any;
|
|
23
|
+
[x: string]: any;
|
|
24
|
+
[x: number]: any;
|
|
25
|
+
[x: symbol]: any;
|
|
16
26
|
} & {
|
|
17
|
-
theme?:
|
|
27
|
+
theme?: import("styled-components").DefaultTheme | undefined;
|
|
18
28
|
}>;
|
|
19
29
|
export default _default;
|
|
@@ -1,14 +1,24 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
import React from 'react';
|
|
2
|
-
declare const DSMobileCardGroupWithSchema:
|
|
3
|
+
declare const DSMobileCardGroupWithSchema: {
|
|
4
|
+
(props?: {
|
|
5
|
+
children: any;
|
|
6
|
+
theme: any;
|
|
7
|
+
title: any;
|
|
8
|
+
action: any;
|
|
9
|
+
activeValue: any;
|
|
10
|
+
allowMultipleOpen?: boolean | undefined;
|
|
11
|
+
onChange?: (() => null) | undefined;
|
|
12
|
+
} | undefined): JSX.Element;
|
|
13
|
+
propTypes: unknown;
|
|
14
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
15
|
+
};
|
|
3
16
|
export { DSMobileCardGroupWithSchema };
|
|
4
17
|
declare const _default: React.ForwardRefExoticComponent<{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
action: any;
|
|
9
|
-
activeValue: any;
|
|
10
|
-
allowMultipleOpen?: boolean | undefined;
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
[x: number]: any;
|
|
20
|
+
[x: symbol]: any;
|
|
11
21
|
} & {
|
|
12
|
-
theme?:
|
|
22
|
+
theme?: import("styled-components").DefaultTheme | undefined;
|
|
13
23
|
}>;
|
|
14
24
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const StyledCard: import("styled-components").StyledComponent<"div",
|
|
1
|
+
export declare const StyledCard: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -3,19 +3,11 @@ import MobileCard, { DSMobileCardWithSchema } from './Card';
|
|
|
3
3
|
import { DSMobileCardGroupWithSchema } from './Group';
|
|
4
4
|
import { ActionAddon } from './ActionAddon';
|
|
5
5
|
declare const DSMobileCard: import("react").ForwardRefExoticComponent<{
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
leftProp: any;
|
|
10
|
-
rightProp: any;
|
|
11
|
-
value: any;
|
|
12
|
-
leftAddOn: any;
|
|
13
|
-
subText: any;
|
|
14
|
-
subIcons: any;
|
|
15
|
-
expandable?: boolean | undefined;
|
|
16
|
-
expandedContent: any;
|
|
6
|
+
[x: string]: any;
|
|
7
|
+
[x: number]: any;
|
|
8
|
+
[x: symbol]: any;
|
|
17
9
|
} & {
|
|
18
|
-
theme?:
|
|
10
|
+
theme?: import("styled-components").DefaultTheme | undefined;
|
|
19
11
|
}>;
|
|
20
12
|
export { DSMobileCard, ActionAddon, DSMobileCardWithSchema, DSMobileCardGroupWithSchema, };
|
|
21
13
|
export * from './CardIcons';
|
|
@@ -1,10 +1,21 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
import React from 'react';
|
|
2
3
|
declare const DSMobileContextMenu: React.ForwardRefExoticComponent<{
|
|
3
4
|
[x: string]: any;
|
|
4
5
|
[x: number]: any;
|
|
5
6
|
[x: symbol]: any;
|
|
6
7
|
} & {
|
|
7
|
-
theme?:
|
|
8
|
+
theme?: import("styled-components").DefaultTheme | undefined;
|
|
8
9
|
}>;
|
|
9
|
-
declare const DSMobileContextMenuWithSchema:
|
|
10
|
+
declare const DSMobileContextMenuWithSchema: {
|
|
11
|
+
(props?: ({
|
|
12
|
+
[x: string]: any;
|
|
13
|
+
[x: number]: any;
|
|
14
|
+
[x: symbol]: any;
|
|
15
|
+
} & {
|
|
16
|
+
theme?: import("styled-components").DefaultTheme | undefined;
|
|
17
|
+
}) | undefined): JSX.Element;
|
|
18
|
+
propTypes: unknown;
|
|
19
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
20
|
+
};
|
|
10
21
|
export { DSMobileContextMenu, DSMobileContextMenuWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileContextMenuGroup: {
|
|
3
4
|
({ title, isMulti, singleSelect, children, value: groupValue, selectedItems }: {
|
|
@@ -18,15 +19,46 @@ declare const DSMobileContextMenuGroup: {
|
|
|
18
19
|
*/
|
|
19
20
|
children: any;
|
|
20
21
|
/** multi select */
|
|
21
|
-
isMulti:
|
|
22
|
+
isMulti: {
|
|
23
|
+
defaultValue<T = unknown>(arg: T): {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
27
|
+
};
|
|
22
28
|
/** single select */
|
|
23
|
-
singleSelect:
|
|
29
|
+
singleSelect: {
|
|
30
|
+
defaultValue<T = unknown>(arg: T): {
|
|
31
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
34
|
+
};
|
|
24
35
|
/** value for select */
|
|
25
|
-
value:
|
|
36
|
+
value: {
|
|
37
|
+
defaultValue<T = unknown>(arg: T): {
|
|
38
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
26
42
|
/** selected items, array for multi, string for single */
|
|
27
|
-
selectedItems:
|
|
43
|
+
selectedItems: {
|
|
44
|
+
defaultValue<T = unknown>(arg: T): {
|
|
45
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
46
|
+
};
|
|
47
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
48
|
+
};
|
|
28
49
|
};
|
|
29
50
|
componentType: string;
|
|
30
51
|
};
|
|
31
|
-
declare const DSMobileContextMenuGroupWithSchema:
|
|
52
|
+
declare const DSMobileContextMenuGroupWithSchema: {
|
|
53
|
+
(props?: {
|
|
54
|
+
title: any;
|
|
55
|
+
isMulti: any;
|
|
56
|
+
singleSelect: any;
|
|
57
|
+
children: any;
|
|
58
|
+
value: any;
|
|
59
|
+
selectedItems: any;
|
|
60
|
+
} | undefined): JSX.Element;
|
|
61
|
+
propTypes: unknown;
|
|
62
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
63
|
+
};
|
|
32
64
|
export { DSMobileContextMenuGroup, DSMobileContextMenuGroupWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
interface DSMobileContextMenuItemPropsT {
|
|
3
4
|
label: string;
|
|
@@ -14,24 +15,68 @@ declare const DSMobileContextMenuItem: {
|
|
|
14
15
|
({ label, title, leftProp, isGroup, isMulti, singleSelect, isSelected, onClick, value, }: DSMobileContextMenuItemPropsT): JSX.Element;
|
|
15
16
|
propTypes: {
|
|
16
17
|
/** label */
|
|
17
|
-
label:
|
|
18
|
+
label: {
|
|
19
|
+
defaultValue<T = unknown>(arg: T): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
18
24
|
/** menu item title */
|
|
19
25
|
title: any;
|
|
20
26
|
/** */
|
|
21
|
-
leftProp:
|
|
27
|
+
leftProp: {
|
|
28
|
+
defaultValue<T = unknown>(arg: T): {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
22
33
|
/** multi select */
|
|
23
|
-
isMulti:
|
|
34
|
+
isMulti: {
|
|
35
|
+
defaultValue<T = unknown>(arg: T): {
|
|
36
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
37
|
+
};
|
|
38
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
24
40
|
/** */
|
|
25
|
-
singleSelect:
|
|
41
|
+
singleSelect: {
|
|
42
|
+
defaultValue<T = unknown>(arg: T): {
|
|
43
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
44
|
+
};
|
|
45
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
46
|
+
};
|
|
26
47
|
/** */
|
|
27
|
-
isGroup:
|
|
48
|
+
isGroup: {
|
|
49
|
+
defaultValue<T = unknown>(arg: T): {
|
|
50
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
51
|
+
};
|
|
52
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
28
54
|
/** on click handler */
|
|
29
|
-
onClick:
|
|
55
|
+
onClick: {
|
|
56
|
+
defaultValue<T = unknown>(arg: T): {
|
|
57
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
58
|
+
};
|
|
59
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
60
|
+
};
|
|
30
61
|
/** value for select */
|
|
31
|
-
value:
|
|
62
|
+
value: {
|
|
63
|
+
defaultValue<T = unknown>(arg: T): {
|
|
64
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
65
|
+
};
|
|
66
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
67
|
+
};
|
|
32
68
|
/** selected value */
|
|
33
|
-
isSelected:
|
|
69
|
+
isSelected: {
|
|
70
|
+
defaultValue<T = unknown>(arg: T): {
|
|
71
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
72
|
+
};
|
|
73
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
74
|
+
};
|
|
34
75
|
};
|
|
35
76
|
};
|
|
36
|
-
declare const DSMobileContextMenuItemWithSchema:
|
|
77
|
+
declare const DSMobileContextMenuItemWithSchema: {
|
|
78
|
+
(props?: DSMobileContextMenuItemPropsT | undefined): JSX.Element;
|
|
79
|
+
propTypes: unknown;
|
|
80
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
81
|
+
};
|
|
37
82
|
export { DSMobileContextMenuItem, DSMobileContextMenuItemWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileDatePicker: {
|
|
3
4
|
({ disabled, value, tabIndex, placeholder, onChange }: {
|
|
@@ -16,24 +17,59 @@ declare const DSMobileDatePicker: {
|
|
|
16
17
|
/**
|
|
17
18
|
* defaults to false
|
|
18
19
|
*/
|
|
19
|
-
disabled:
|
|
20
|
+
disabled: {
|
|
21
|
+
defaultValue<T = unknown>(arg: T): {
|
|
22
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
23
|
+
};
|
|
24
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
20
26
|
/**
|
|
21
27
|
* 0 as default
|
|
22
28
|
*/
|
|
23
|
-
tabIndex:
|
|
29
|
+
tabIndex: {
|
|
30
|
+
defaultValue<T = unknown>(arg: T): {
|
|
31
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
|
+
};
|
|
33
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
34
|
+
};
|
|
24
35
|
/**
|
|
25
36
|
* MM / DD / YYYY as default
|
|
26
37
|
*/
|
|
27
|
-
placeholder:
|
|
38
|
+
placeholder: {
|
|
39
|
+
defaultValue<T = unknown>(arg: T): {
|
|
40
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
43
|
+
};
|
|
28
44
|
/**
|
|
29
45
|
* onChange handler, receives change event as first argument
|
|
30
46
|
*/
|
|
31
|
-
onChange:
|
|
47
|
+
onChange: {
|
|
48
|
+
defaultValue<T = unknown>(arg: T): {
|
|
49
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
50
|
+
};
|
|
51
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
52
|
+
};
|
|
32
53
|
/**
|
|
33
54
|
* ISO8601 string representing the date in format YYYY-MM-DD or empty string
|
|
34
55
|
*/
|
|
35
|
-
value:
|
|
56
|
+
value: {
|
|
57
|
+
defaultValue<T = unknown>(arg: T): {
|
|
58
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
61
|
+
};
|
|
36
62
|
};
|
|
37
63
|
};
|
|
38
|
-
declare const DSMobileDatePickerWithSchema:
|
|
64
|
+
declare const DSMobileDatePickerWithSchema: {
|
|
65
|
+
(props?: {
|
|
66
|
+
disabled: any;
|
|
67
|
+
value: any;
|
|
68
|
+
tabIndex: any;
|
|
69
|
+
placeholder: any;
|
|
70
|
+
onChange: any;
|
|
71
|
+
} | undefined): JSX.Element;
|
|
72
|
+
propTypes: unknown;
|
|
73
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
74
|
+
};
|
|
39
75
|
export { DSMobileDatePicker, DSMobileDatePickerWithSchema };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
export declare const MobileDropdownInput: import("styled-components").StyledComponent<"input",
|
|
4
|
-
export declare const MobileDropdownInputWrap: import("styled-components").StyledComponent<"span",
|
|
3
|
+
export declare const MobileDropdownInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const MobileDropdownInputWrap: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
5
5
|
export declare const Caret: {
|
|
6
6
|
({ onClick }: {
|
|
7
7
|
onClick: any;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
interface OptionT {
|
|
3
4
|
label: string;
|
|
@@ -22,12 +23,31 @@ declare const DSMobileDropdownMenu: {
|
|
|
22
23
|
({ placeholder, options, title, value, itemsProps, }: DSMobileDropdownMenuPropsT): JSX.Element;
|
|
23
24
|
propTypes: {
|
|
24
25
|
/** dropdown menu placeholder */
|
|
25
|
-
placeholder:
|
|
26
|
+
placeholder: {
|
|
27
|
+
defaultValue<T = unknown>(arg: T): {
|
|
28
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
31
|
+
};
|
|
26
32
|
/** context menu menu title */
|
|
27
|
-
title:
|
|
33
|
+
title: {
|
|
34
|
+
defaultValue<T = unknown>(arg: T): {
|
|
35
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
|
+
};
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
28
39
|
/** context menu options / items */
|
|
29
|
-
options:
|
|
40
|
+
options: {
|
|
41
|
+
defaultValue<T = unknown>(arg: T): {
|
|
42
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
43
|
+
};
|
|
44
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
45
|
+
};
|
|
30
46
|
};
|
|
31
47
|
};
|
|
32
|
-
declare const DSMobileDropdownMenuWithSchema:
|
|
48
|
+
declare const DSMobileDropdownMenuWithSchema: {
|
|
49
|
+
(props?: DSMobileDropdownMenuPropsT | undefined): JSX.Element;
|
|
50
|
+
propTypes: unknown;
|
|
51
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
52
|
+
};
|
|
33
53
|
export { DSMobileDropdownMenu, DSMobileDropdownMenuWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileEmptyState: {
|
|
3
4
|
({ label }: {
|
|
@@ -5,8 +6,19 @@ declare const DSMobileEmptyState: {
|
|
|
5
6
|
}): JSX.Element;
|
|
6
7
|
propTypes: {
|
|
7
8
|
/** empty state label */
|
|
8
|
-
label:
|
|
9
|
+
label: {
|
|
10
|
+
defaultValue<T = unknown>(arg: T): {
|
|
11
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
12
|
+
};
|
|
13
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
9
15
|
};
|
|
10
16
|
};
|
|
11
|
-
declare const DSMobileEmptyStateWithSchema:
|
|
17
|
+
declare const DSMobileEmptyStateWithSchema: {
|
|
18
|
+
(props?: {
|
|
19
|
+
label?: string | undefined;
|
|
20
|
+
} | undefined): JSX.Element;
|
|
21
|
+
propTypes: unknown;
|
|
22
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
23
|
+
};
|
|
12
24
|
export { DSMobileEmptyState, DSMobileEmptyStateWithSchema };
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileFilterbar: {
|
|
3
4
|
({ children }: {
|
|
4
5
|
children: any;
|
|
5
6
|
}): JSX.Element;
|
|
6
7
|
propTypes: {
|
|
7
|
-
children:
|
|
8
|
+
children: import("react-desc").PropTypesDescValidator;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
|
-
declare const FilterbarWithSchema:
|
|
11
|
+
declare const FilterbarWithSchema: {
|
|
12
|
+
(props?: {
|
|
13
|
+
children: any;
|
|
14
|
+
} | undefined): JSX.Element;
|
|
15
|
+
propTypes: unknown;
|
|
16
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
17
|
+
};
|
|
11
18
|
export { DSMobileFilterbar, FilterbarWithSchema };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileFilterbarItem: {
|
|
3
4
|
({ children, onClick }: {
|
|
@@ -5,9 +6,21 @@ declare const DSMobileFilterbarItem: {
|
|
|
5
6
|
onClick: any;
|
|
6
7
|
}): JSX.Element;
|
|
7
8
|
propTypes: {
|
|
9
|
+
children: import("react-desc").PropTypesDescValidator;
|
|
10
|
+
onClick: {
|
|
11
|
+
defaultValue<T = unknown>(arg: T): {
|
|
12
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
13
|
+
};
|
|
14
|
+
isRequired: import("react-desc").PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
declare const FilterbarItemWithSchema: {
|
|
19
|
+
(props?: {
|
|
8
20
|
children: any;
|
|
9
21
|
onClick: any;
|
|
10
|
-
};
|
|
22
|
+
} | undefined): JSX.Element;
|
|
23
|
+
propTypes: unknown;
|
|
24
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
11
25
|
};
|
|
12
|
-
declare const FilterbarItemWithSchema: any;
|
|
13
26
|
export { DSMobileFilterbarItem, FilterbarItemWithSchema };
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
1
2
|
/// <reference types="react" />
|
|
2
3
|
declare const DSMobileFilterbarSort: {
|
|
3
4
|
({ children }: {
|
|
4
5
|
children: any;
|
|
5
6
|
}): JSX.Element;
|
|
6
7
|
propTypes: {
|
|
7
|
-
children:
|
|
8
|
+
children: import("react-desc").PropTypesDescValidator;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
|
-
declare const FilterbarSortWithSchema:
|
|
11
|
+
declare const FilterbarSortWithSchema: {
|
|
12
|
+
(props?: {
|
|
13
|
+
children: any;
|
|
14
|
+
} | undefined): JSX.Element;
|
|
15
|
+
propTypes: unknown;
|
|
16
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
17
|
+
};
|
|
11
18
|
export { DSMobileFilterbarSort, FilterbarSortWithSchema };
|