@medplum/react 4.1.0 → 4.1.2
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 +5 -0
- package/dist/esm/index.d.ts +5 -0
- package/dist/esm/index.mjs +1 -1
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/cjs/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { Attachment } from '@medplum/fhirtypes';
|
|
|
6
6
|
import { AvatarProps } from '@mantine/core';
|
|
7
7
|
import { BaseLoginRequest } from '@medplum/core';
|
|
8
8
|
import { Bundle } from '@medplum/fhirtypes';
|
|
9
|
+
import { ButtonProps } from '@mantine/core';
|
|
9
10
|
import { CardProps } from '@mantine/core';
|
|
10
11
|
import { ClientApplication } from '@medplum/fhirtypes';
|
|
11
12
|
import { CodeableConcept } from '@medplum/fhirtypes';
|
|
@@ -1589,6 +1590,10 @@ export declare interface StatusBadgeProps {
|
|
|
1589
1590
|
readonly status: string;
|
|
1590
1591
|
}
|
|
1591
1592
|
|
|
1593
|
+
export declare function SubmitButton(props: ButtonProps): JSX.Element;
|
|
1594
|
+
|
|
1595
|
+
export declare type SubmitButtonProps = Omit<ButtonProps, 'type' | 'loading'>;
|
|
1596
|
+
|
|
1592
1597
|
export declare type SupportedProfileStructureDefinition = StructureDefinition & {
|
|
1593
1598
|
url: NonNullable<StructureDefinition['url']>;
|
|
1594
1599
|
name: NonNullable<StructureDefinition['name']>;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { Attachment } from '@medplum/fhirtypes';
|
|
|
6
6
|
import { AvatarProps } from '@mantine/core';
|
|
7
7
|
import { BaseLoginRequest } from '@medplum/core';
|
|
8
8
|
import { Bundle } from '@medplum/fhirtypes';
|
|
9
|
+
import { ButtonProps } from '@mantine/core';
|
|
9
10
|
import { CardProps } from '@mantine/core';
|
|
10
11
|
import { ClientApplication } from '@medplum/fhirtypes';
|
|
11
12
|
import { CodeableConcept } from '@medplum/fhirtypes';
|
|
@@ -1589,6 +1590,10 @@ export declare interface StatusBadgeProps {
|
|
|
1589
1590
|
readonly status: string;
|
|
1590
1591
|
}
|
|
1591
1592
|
|
|
1593
|
+
export declare function SubmitButton(props: ButtonProps): JSX.Element;
|
|
1594
|
+
|
|
1595
|
+
export declare type SubmitButtonProps = Omit<ButtonProps, 'type' | 'loading'>;
|
|
1596
|
+
|
|
1592
1597
|
export declare type SupportedProfileStructureDefinition = StructureDefinition & {
|
|
1593
1598
|
url: NonNullable<StructureDefinition['url']>;
|
|
1594
1599
|
name: NonNullable<StructureDefinition['name']>;
|