@elliemae/ds-chat-system-message 3.70.0-next.63 → 3.70.0-next.69
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/react-desc-prop-types.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;
|
|
4
|
+
"sourcesContent": ["import type { DSPropTypesSchema, GlobalAttributesT, ValidationMap, XstyledProps } from '@elliemae/ds-props-helpers';\nimport {\n PropTypes,\n getPropsPerSlotPropTypes,\n globalAttributesPropTypes,\n xstyledPropTypes,\n} from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport { CHAT_SYSTEM_MESSAGE_SLOTS, DSChatSystemMessageName } from './constants/index.js';\n\nexport declare namespace DSChatSystemMessageT {\n export type SlotFunctionArguments = {\n dsChatsystemmessageRoot: () => object;\n dsChatsystemmessageHeader: () => object;\n dsChatsystemmessageLeftSpacer: () => object;\n dsChatsystemmessageTitle: () => object;\n dsChatsystemmessageTime: () => object;\n dsChatsystemmessageBody: () => object;\n };\n\n export interface DefaultProps {\n title: string;\n }\n\n export interface OptionalProps extends TypescriptHelpersT.PropsForGlobalOnSlots<\n typeof DSChatSystemMessageName,\n typeof CHAT_SYSTEM_MESSAGE_SLOTS\n > {\n time?: string;\n }\n\n export interface RequiredProps {\n body: string;\n }\n\n export interface Props\n extends\n Partial<DefaultProps>,\n OptionalProps,\n Omit<GlobalAttributesT<HTMLDivElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>,\n XstyledProps,\n RequiredProps {}\n\n export interface InternalProps\n extends\n DefaultProps,\n OptionalProps,\n Omit<GlobalAttributesT<HTMLDivElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>,\n XstyledProps,\n RequiredProps {}\n}\n\nexport const defaultProps: DSChatSystemMessageT.DefaultProps = {\n title: 'System Message',\n};\n\nexport const DSChatSystemMessagePropTypes: DSPropTypesSchema<DSChatSystemMessageT.Props> = {\n ...getPropsPerSlotPropTypes(DSChatSystemMessageName, CHAT_SYSTEM_MESSAGE_SLOTS),\n ...globalAttributesPropTypes,\n ...xstyledPropTypes,\n body: PropTypes.string.isRequired.description('message'),\n title: PropTypes.string.description('Message title').defaultValue('System Message'),\n time: PropTypes.string.description('data of the message, ie: hour'),\n};\n\nexport const DSChatSystemMessagePropTypesSchema =\n DSChatSystemMessagePropTypes as unknown as ValidationMap<DSChatSystemMessageT.Props>;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADCvB,8BAKO;AAEP,uBAAmE;AA4C5D,MAAM,eAAkD;AAAA,EAC7D,OAAO;AACT;AAEO,MAAM,+BAA8E;AAAA,EACzF,OAAG,kDAAyB,0CAAyB,0CAAyB;AAAA,EAC9E,GAAG;AAAA,EACH,GAAG;AAAA,EACH,MAAM,kCAAU,OAAO,WAAW,YAAY,SAAS;AAAA,EACvD,OAAO,kCAAU,OAAO,YAAY,eAAe,EAAE,aAAa,gBAAgB;AAAA,EAClF,MAAM,kCAAU,OAAO,YAAY,+BAA+B;AACpE;AAEO,MAAM,qCACX;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/react-desc-prop-types.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import type { DSPropTypesSchema, GlobalAttributesT, ValidationMap, XstyledProps } from '@elliemae/ds-props-helpers';\nimport {\n PropTypes,\n getPropsPerSlotPropTypes,\n globalAttributesPropTypes,\n xstyledPropTypes,\n} from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport { CHAT_SYSTEM_MESSAGE_SLOTS, DSChatSystemMessageName } from './constants/index.js';\n\nexport declare namespace DSChatSystemMessageT {\n export type SlotFunctionArguments = {\n dsChatsystemmessageRoot: () => object;\n dsChatsystemmessageHeader: () => object;\n dsChatsystemmessageLeftSpacer: () => object;\n dsChatsystemmessageTitle: () => object;\n dsChatsystemmessageTime: () => object;\n dsChatsystemmessageBody: () => object;\n };\n\n export interface DefaultProps {\n title: string;\n }\n\n export interface OptionalProps extends TypescriptHelpersT.PropsForGlobalOnSlots<\n typeof DSChatSystemMessageName,\n typeof CHAT_SYSTEM_MESSAGE_SLOTS\n > {\n time?: string;\n }\n\n export interface RequiredProps {\n body: string;\n }\n\n export interface Props\n extends\n Partial<DefaultProps>,\n OptionalProps,\n Omit<GlobalAttributesT<HTMLDivElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>,\n XstyledProps,\n RequiredProps {}\n\n export interface InternalProps\n extends\n DefaultProps,\n OptionalProps,\n Omit<GlobalAttributesT<HTMLDivElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>,\n XstyledProps,\n RequiredProps {}\n}\n\nexport const defaultProps: DSChatSystemMessageT.DefaultProps = {\n title: 'System Message',\n};\n\nexport const DSChatSystemMessagePropTypes: DSPropTypesSchema<DSChatSystemMessageT.Props> = {\n ...getPropsPerSlotPropTypes(DSChatSystemMessageName, CHAT_SYSTEM_MESSAGE_SLOTS),\n ...globalAttributesPropTypes,\n ...xstyledPropTypes,\n body: PropTypes.string.isRequired.description('message'),\n title: PropTypes.string.description('Message title').defaultValue('System Message'),\n time: PropTypes.string.description('data of the message, ie: hour'),\n};\n\nexport const DSChatSystemMessagePropTypesSchema =\n DSChatSystemMessagePropTypes as unknown as ValidationMap<DSChatSystemMessageT.Props>;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACCvB;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,SAAS,2BAA2B,+BAA+B;AA4C5D,MAAM,eAAkD;AAAA,EAC7D,OAAO;AACT;AAEO,MAAM,+BAA8E;AAAA,EACzF,GAAG,yBAAyB,yBAAyB,yBAAyB;AAAA,EAC9E,GAAG;AAAA,EACH,GAAG;AAAA,EACH,MAAM,UAAU,OAAO,WAAW,YAAY,SAAS;AAAA,EACvD,OAAO,UAAU,OAAO,YAAY,eAAe,EAAE,aAAa,gBAAgB;AAAA,EAClF,MAAM,UAAU,OAAO,YAAY,+BAA+B;AACpE;AAEO,MAAM,qCACX;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-chat-system-message",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.69",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Chat System Message",
|
|
6
6
|
"files": [
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"typeSafety": true
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@elliemae/ds-
|
|
40
|
-
"@elliemae/ds-
|
|
41
|
-
"@elliemae/ds-
|
|
39
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.69",
|
|
40
|
+
"@elliemae/ds-system": "3.70.0-next.69",
|
|
41
|
+
"@elliemae/ds-grid": "3.70.0-next.69"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"jest": "^30.0.0",
|
|
45
45
|
"styled-components": "~5.3.11",
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
46
|
+
"@elliemae/ds-test-utils": "3.70.0-next.69",
|
|
47
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.69"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"lodash-es": "^4.18.1",
|