@medplum/react 2.1.8 → 2.1.9
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/README.md +7 -9
- package/dist/cjs/index.cjs +4 -4
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/esm/index.mjs +4 -4
- package/dist/esm/index.mjs.map +4 -4
- package/dist/types/AttachmentButton/AttachmentButton.d.ts +2 -1
- package/dist/types/index.d.ts +1 -4
- package/package.json +2 -1
- package/dist/types/MedplumProvider/MedplumProvider.context.d.ts +0 -32
- package/dist/types/MedplumProvider/MedplumProvider.d.ts +0 -18
- package/dist/types/useResource/useResource.d.ts +0 -9
- package/dist/types/useSearch/useSearch.d.ts +0 -32
package/README.md
CHANGED
|
@@ -6,15 +6,6 @@ The Medplum SDK can be used with any compliant FHIR server. However, some advanc
|
|
|
6
6
|
|
|
7
7
|
Check out a live demo: <https://storybook.medplum.com/>
|
|
8
8
|
|
|
9
|
-
## Key Features
|
|
10
|
-
|
|
11
|
-
- SmartText - Detect clinical concepts, tag with SNOMED and ICD codes
|
|
12
|
-
- Chat - FHIR-based chat with real time push events
|
|
13
|
-
- Data Table - For a FHIR search, show the results as a live table
|
|
14
|
-
- SSE for server side push
|
|
15
|
-
- Evaluation of [FhirPath](https://hl7.org/fhirpath/N1/index.html)
|
|
16
|
-
- No external dependencies
|
|
17
|
-
|
|
18
9
|
## Installation
|
|
19
10
|
|
|
20
11
|
Add as a dependency:
|
|
@@ -30,6 +21,13 @@ Note the following peer dependencies:
|
|
|
30
21
|
- [react-dom](https://www.npmjs.com/package/react-dom)
|
|
31
22
|
- [react-router-dom](https://www.npmjs.com/package/react-router-dom)
|
|
32
23
|
|
|
24
|
+
Note the following optional peer dependencies:
|
|
25
|
+
|
|
26
|
+
- [@emotion/react](https://www.npmjs.com/package/@emotion/react)
|
|
27
|
+
- [@mantine/core](https://www.npmjs.com/package/@mantine/core)
|
|
28
|
+
- [@mantine/hooks](https://www.npmjs.com/package/@mantine/hooks)
|
|
29
|
+
- [@mantine/notifications](https://www.npmjs.com/package/@mantine/notifications)
|
|
30
|
+
|
|
33
31
|
## Basic Usage
|
|
34
32
|
|
|
35
33
|
```tsx
|