@medplum/react 3.0.9 → 3.0.10
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 +415 -5
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.d.ts +1 -0
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.mjs +415 -5
- package/dist/esm/index.mjs.map +4 -4
- package/package.json +12 -12
package/dist/cjs/index.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ export declare function DateTimeInput(props: DateTimeInputProps): JSX.Element;
|
|
|
449
449
|
|
|
450
450
|
export declare interface DateTimeInputProps {
|
|
451
451
|
readonly name?: string;
|
|
452
|
+
readonly label?: string;
|
|
452
453
|
readonly placeholder?: string;
|
|
453
454
|
readonly defaultValue?: string;
|
|
454
455
|
readonly autoFocus?: boolean;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ export declare function DateTimeInput(props: DateTimeInputProps): JSX.Element;
|
|
|
449
449
|
|
|
450
450
|
export declare interface DateTimeInputProps {
|
|
451
451
|
readonly name?: string;
|
|
452
|
+
readonly label?: string;
|
|
452
453
|
readonly placeholder?: string;
|
|
453
454
|
readonly defaultValue?: string;
|
|
454
455
|
readonly autoFocus?: boolean;
|