@medplum/react 3.0.11 → 3.0.12
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 +4 -4
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/cjs/index.d.ts +2 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.mjs +4 -4
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +21 -21
package/dist/cjs/index.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ export declare interface AttachmentArrayInputProps {
|
|
|
250
250
|
export declare function AttachmentButton(props: AttachmentButtonProps): JSX.Element;
|
|
251
251
|
|
|
252
252
|
export declare interface AttachmentButtonProps {
|
|
253
|
+
readonly securityContext?: Reference;
|
|
253
254
|
readonly onUpload: (attachment: Attachment) => void;
|
|
254
255
|
readonly onUploadStart?: () => void;
|
|
255
256
|
readonly onUploadProgress?: (e: ProgressEvent) => void;
|
|
@@ -272,6 +273,7 @@ export declare interface AttachmentInputProps {
|
|
|
272
273
|
readonly name: string;
|
|
273
274
|
readonly defaultValue?: Attachment;
|
|
274
275
|
readonly arrayElement?: boolean;
|
|
276
|
+
readonly securityContext?: Reference;
|
|
275
277
|
readonly onChange?: (value: Attachment | undefined) => void;
|
|
276
278
|
}
|
|
277
279
|
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -250,6 +250,7 @@ export declare interface AttachmentArrayInputProps {
|
|
|
250
250
|
export declare function AttachmentButton(props: AttachmentButtonProps): JSX.Element;
|
|
251
251
|
|
|
252
252
|
export declare interface AttachmentButtonProps {
|
|
253
|
+
readonly securityContext?: Reference;
|
|
253
254
|
readonly onUpload: (attachment: Attachment) => void;
|
|
254
255
|
readonly onUploadStart?: () => void;
|
|
255
256
|
readonly onUploadProgress?: (e: ProgressEvent) => void;
|
|
@@ -272,6 +273,7 @@ export declare interface AttachmentInputProps {
|
|
|
272
273
|
readonly name: string;
|
|
273
274
|
readonly defaultValue?: Attachment;
|
|
274
275
|
readonly arrayElement?: boolean;
|
|
276
|
+
readonly securityContext?: Reference;
|
|
275
277
|
readonly onChange?: (value: Attachment | undefined) => void;
|
|
276
278
|
}
|
|
277
279
|
|