@elliemae/ds-chat-card 3.14.0-next.16 → 3.14.0-next.17
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,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DSChatCardT } from './react-desc-prop-types';
|
|
3
|
+
declare const ChatCard: React.ComponentType<DSChatCardT.Props>;
|
|
4
|
+
declare const ChatCardWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSChatCardT.Props>;
|
|
5
|
+
export { ChatCard, ChatCardWithSchema };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DSChatCardName = "DSChatCard";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare namespace DSChatCardT {
|
|
2
|
+
interface RequiredProps {
|
|
3
|
+
title: string;
|
|
4
|
+
}
|
|
5
|
+
interface DefaultProps {
|
|
6
|
+
content: string;
|
|
7
|
+
time: string;
|
|
8
|
+
}
|
|
9
|
+
interface OptionalProps {
|
|
10
|
+
rightAddon?: JSX.Element;
|
|
11
|
+
}
|
|
12
|
+
interface Props extends DefaultProps, RequiredProps, OptionalProps {
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export declare const defaultProps: DSChatCardT.DefaultProps;
|
|
16
|
+
export declare const propTypes: {
|
|
17
|
+
title: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
18
|
+
content: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
19
|
+
time: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
20
|
+
rightAddon: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
|
|
21
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const Wrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("@elliemae/ds-grid/dist/types/react-desc-prop-types").DSGridT.Props & import("react").RefAttributes<HTMLDivElement>>, import("@elliemae/ds-system").Theme, object, never>;
|
|
3
|
+
export declare const MainContent: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
4
|
+
export declare const Title: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
5
|
+
export declare const Content: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
6
|
+
export declare const Time: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
|
7
|
+
export declare const RightAddon: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-chat-card",
|
|
3
|
-
"version": "3.14.0-next.
|
|
3
|
+
"version": "3.14.0-next.17",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Chat Card",
|
|
6
6
|
"files": [
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
"typeSafety": false
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@elliemae/ds-grid": "3.14.0-next.
|
|
51
|
-
"@elliemae/ds-system": "3.14.0-next.
|
|
52
|
-
"@elliemae/ds-truncated-tooltip-text": "3.14.0-next.
|
|
53
|
-
"@elliemae/ds-utilities": "3.14.0-next.
|
|
50
|
+
"@elliemae/ds-grid": "3.14.0-next.17",
|
|
51
|
+
"@elliemae/ds-system": "3.14.0-next.17",
|
|
52
|
+
"@elliemae/ds-truncated-tooltip-text": "3.14.0-next.17",
|
|
53
|
+
"@elliemae/ds-utilities": "3.14.0-next.17"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"styled-components": "~5.3.6"
|