@medplum/react 3.1.1 → 3.1.3
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 +57 -57
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.d.ts +3 -2
- package/dist/esm/index.d.ts +3 -2
- package/dist/esm/index.mjs +57 -57
- package/dist/esm/index.mjs.map +4 -4
- package/package.json +28 -27
package/dist/cjs/index.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ export declare interface AsyncAutocompleteProps<T> extends Omit<ComboboxProps, '
|
|
|
226
226
|
readonly placeholder?: string;
|
|
227
227
|
readonly leftSection?: ReactNode;
|
|
228
228
|
readonly maxValues?: number;
|
|
229
|
+
readonly optionsDropdownMaxHeight?: number;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
export declare function AttachmentArrayDisplay(props: AttachmentArrayDisplayProps): JSX.Element;
|
|
@@ -347,7 +348,7 @@ export declare function ChatModal(props: ChatModalProps): JSX.Element | null;
|
|
|
347
348
|
|
|
348
349
|
export declare interface ChatModalProps {
|
|
349
350
|
readonly open?: boolean;
|
|
350
|
-
readonly children:
|
|
351
|
+
readonly children: ReactNode;
|
|
351
352
|
}
|
|
352
353
|
|
|
353
354
|
export declare function CheckboxFormSection(props: CheckboxFormSectionProps): JSX.Element;
|
|
@@ -864,7 +865,7 @@ export declare function Panel(props: PanelProps): JSX.Element;
|
|
|
864
865
|
export declare interface PanelProps extends PaperProps {
|
|
865
866
|
readonly width?: number;
|
|
866
867
|
readonly fill?: boolean;
|
|
867
|
-
readonly children?:
|
|
868
|
+
readonly children?: ReactNode;
|
|
868
869
|
}
|
|
869
870
|
|
|
870
871
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ export declare interface AsyncAutocompleteProps<T> extends Omit<ComboboxProps, '
|
|
|
226
226
|
readonly placeholder?: string;
|
|
227
227
|
readonly leftSection?: ReactNode;
|
|
228
228
|
readonly maxValues?: number;
|
|
229
|
+
readonly optionsDropdownMaxHeight?: number;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
export declare function AttachmentArrayDisplay(props: AttachmentArrayDisplayProps): JSX.Element;
|
|
@@ -347,7 +348,7 @@ export declare function ChatModal(props: ChatModalProps): JSX.Element | null;
|
|
|
347
348
|
|
|
348
349
|
export declare interface ChatModalProps {
|
|
349
350
|
readonly open?: boolean;
|
|
350
|
-
readonly children:
|
|
351
|
+
readonly children: ReactNode;
|
|
351
352
|
}
|
|
352
353
|
|
|
353
354
|
export declare function CheckboxFormSection(props: CheckboxFormSectionProps): JSX.Element;
|
|
@@ -864,7 +865,7 @@ export declare function Panel(props: PanelProps): JSX.Element;
|
|
|
864
865
|
export declare interface PanelProps extends PaperProps {
|
|
865
866
|
readonly width?: number;
|
|
866
867
|
readonly fill?: boolean;
|
|
867
|
-
readonly children?:
|
|
868
|
+
readonly children?: ReactNode;
|
|
868
869
|
}
|
|
869
870
|
|
|
870
871
|
/**
|