@medplum/react 3.2.31 → 3.2.32
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/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/cjs/index.d.ts +8 -0
- package/dist/esm/index.d.ts +8 -0
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +2 -2
- package/package.json +12 -12
package/dist/cjs/index.d.ts
CHANGED
|
@@ -327,6 +327,14 @@ export declare interface BackboneElementInputProps extends BaseInputProps {
|
|
|
327
327
|
readonly accessPolicyResource?: AccessPolicyResource;
|
|
328
328
|
}
|
|
329
329
|
|
|
330
|
+
/**
|
|
331
|
+
* BaseChat component for displaying and managing communications.
|
|
332
|
+
*
|
|
333
|
+
* **NOTE: The component automatically filters `Communication` resources where the `sent` property is `undefined`.**
|
|
334
|
+
*
|
|
335
|
+
* @param props - The BaseChat React props.
|
|
336
|
+
* @returns The BaseChat React node.
|
|
337
|
+
*/
|
|
330
338
|
export declare function BaseChat(props: BaseChatProps): JSX.Element | null;
|
|
331
339
|
|
|
332
340
|
export declare interface BaseChatProps extends PaperProps {
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -327,6 +327,14 @@ export declare interface BackboneElementInputProps extends BaseInputProps {
|
|
|
327
327
|
readonly accessPolicyResource?: AccessPolicyResource;
|
|
328
328
|
}
|
|
329
329
|
|
|
330
|
+
/**
|
|
331
|
+
* BaseChat component for displaying and managing communications.
|
|
332
|
+
*
|
|
333
|
+
* **NOTE: The component automatically filters `Communication` resources where the `sent` property is `undefined`.**
|
|
334
|
+
*
|
|
335
|
+
* @param props - The BaseChat React props.
|
|
336
|
+
* @returns The BaseChat React node.
|
|
337
|
+
*/
|
|
330
338
|
export declare function BaseChat(props: BaseChatProps): JSX.Element | null;
|
|
331
339
|
|
|
332
340
|
export declare interface BaseChatProps extends PaperProps {
|