@elliemae/ds-chat-system-message 3.14.0-next.15 → 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
+ export declare const ChatSystemMessageDataTestIds: {
2
+ SYSTEM_MSG_TITLE: string;
3
+ SYSTEM_MSG_BODY: string;
4
+ SYSTEM_MSG_TIME: string;
5
+ };
@@ -0,0 +1 @@
1
+ export declare const DSChatSystemMessageName = "DSChatSystemMessage";
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import type { DSChatSystemMessageT } from './react-desc-prop-types';
3
+ declare const SystemMessage: React.ComponentType<DSChatSystemMessageT.Props>;
4
+ declare const SystemMessageWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSChatSystemMessageT.Props>;
5
+ export { SystemMessage, SystemMessageWithSchema };
@@ -0,0 +1,4 @@
1
+ export { SystemMessage, SystemMessageWithSchema } from './SystemMessage';
2
+ export { ChatSystemMessageDataTestIds } from './ChatSystemMessageDataTestIds';
3
+ export * from './style';
4
+ export type { DSChatSystemMessageT } from './react-desc-prop-types';
@@ -0,0 +1,13 @@
1
+ export declare namespace DSChatSystemMessageT {
2
+ interface Props {
3
+ title: string;
4
+ body: string;
5
+ time: string;
6
+ }
7
+ }
8
+ export declare const defaultProps: DSChatSystemMessageT.Props;
9
+ export declare const systemMessageProps: {
10
+ title: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
11
+ time: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
12
+ body: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
13
+ };
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ 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
+ declare const Header: 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>;
4
+ declare const Title: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
5
+ declare const Time: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
6
+ declare const Message: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
7
+ export { Wrapper, Header, Title, Time, Message };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-chat-system-message",
3
- "version": "3.14.0-next.15",
3
+ "version": "3.14.0-next.17",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Chat System Message",
6
6
  "files": [
@@ -47,9 +47,9 @@
47
47
  "typeSafety": true
48
48
  },
49
49
  "dependencies": {
50
- "@elliemae/ds-grid": "3.14.0-next.15",
51
- "@elliemae/ds-system": "3.14.0-next.15",
52
- "@elliemae/ds-utilities": "3.14.0-next.15"
50
+ "@elliemae/ds-system": "3.14.0-next.17",
51
+ "@elliemae/ds-grid": "3.14.0-next.17",
52
+ "@elliemae/ds-utilities": "3.14.0-next.17"
53
53
  },
54
54
  "devDependencies": {
55
55
  "styled-components": "~5.3.6"