@elliemae/ds-card-navigation 3.13.1-rc.1 → 3.13.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.
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { CardNavigationTypes, CardNavigationTypesValues } from './components/types';
|
|
2
|
+
declare const DSCardNavigation: {
|
|
3
|
+
({ containerProps, title, description, type, Icon, actions, ...rest }: {
|
|
4
|
+
[x: string]: any;
|
|
5
|
+
containerProps?: {} | undefined;
|
|
6
|
+
title?: string | undefined;
|
|
7
|
+
description?: string | undefined;
|
|
8
|
+
type: any;
|
|
9
|
+
Icon: any;
|
|
10
|
+
actions?: never[] | undefined;
|
|
11
|
+
}): JSX.Element;
|
|
12
|
+
defaultProps: {
|
|
13
|
+
type: string;
|
|
14
|
+
Icon: (rest: any) => JSX.Element;
|
|
15
|
+
};
|
|
16
|
+
propTypes: {
|
|
17
|
+
/** props to inject to card navigation wrapper */
|
|
18
|
+
containerProps: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
19
|
+
/** card navigation title */
|
|
20
|
+
title: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
21
|
+
/** card navigation main icon */
|
|
22
|
+
Icon: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
23
|
+
/** card navigation description */
|
|
24
|
+
description: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
25
|
+
/** card navigation type */
|
|
26
|
+
type: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
27
|
+
/** card navigation actions array */
|
|
28
|
+
actions: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
29
|
+
};
|
|
30
|
+
displayName: string;
|
|
31
|
+
};
|
|
32
|
+
declare const DSCardNavigationWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
|
|
33
|
+
[x: string]: any;
|
|
34
|
+
containerProps?: {} | undefined;
|
|
35
|
+
title?: string | undefined;
|
|
36
|
+
description?: string | undefined;
|
|
37
|
+
type: any;
|
|
38
|
+
Icon: any;
|
|
39
|
+
actions?: never[] | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
export { CardNavigationTypes, CardNavigationTypesValues, DSCardNavigationWithSchema, DSCardNavigation };
|
|
42
|
+
export default DSCardNavigation;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const StyledCardNavigationContentTitle: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
2
|
+
export declare const StyledCardNavigationContentDescription: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
3
|
+
export declare const StyledCardNavigationContentTitleWrapper: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
4
|
+
export declare const StyledCardNavigationContent: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
5
|
+
export declare const StyledCardNavigationCentralContent: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
6
|
+
export declare const StyledCardNavigationBoxWrapper: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
7
|
+
export declare const StyledCardNavigationIcon: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
8
|
+
export declare const StyledCardNavigationActions: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
9
|
+
export declare const StyledCardNavigationAction: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-card-navigation",
|
|
3
|
-
"version": "3.13.1
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Card Navigation",
|
|
6
6
|
"files": [
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"indent": 4
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@elliemae/ds-button": "3.13.1
|
|
51
|
-
"@elliemae/ds-icons": "3.13.1
|
|
52
|
-
"@elliemae/ds-system": "3.13.1
|
|
53
|
-
"@elliemae/ds-truncated-tooltip-text": "3.13.1
|
|
54
|
-
"@elliemae/ds-utilities": "3.13.1
|
|
50
|
+
"@elliemae/ds-button": "3.13.1",
|
|
51
|
+
"@elliemae/ds-icons": "3.13.1",
|
|
52
|
+
"@elliemae/ds-system": "3.13.1",
|
|
53
|
+
"@elliemae/ds-truncated-tooltip-text": "3.13.1",
|
|
54
|
+
"@elliemae/ds-utilities": "3.13.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@elliemae/pui-theme": "~2.6.0",
|