@medplum/react 0.9.30 → 0.9.31
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/auth/AuthenticationForm.d.ts +14 -0
- package/dist/cjs/auth/ChooseProfileForm.d.ts +8 -0
- package/dist/cjs/auth/NewProjectForm.d.ts +7 -0
- package/dist/cjs/auth/NewUserForm.d.ts +10 -0
- package/dist/cjs/auth/RegisterForm.d.ts +12 -0
- package/dist/cjs/{SignInForm.d.ts → auth/SignInForm.d.ts} +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.js +671 -648
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.min.js +1 -1
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/cjs/styles.css +197 -197
- package/dist/esm/MedplumLink.js +29 -14
- package/dist/esm/MedplumLink.js.map +1 -1
- package/dist/esm/ResourceHistoryTable.js +15 -11
- package/dist/esm/ResourceHistoryTable.js.map +1 -1
- package/dist/esm/ResourceTimeline.js +3 -1
- package/dist/esm/ResourceTimeline.js.map +1 -1
- package/dist/esm/auth/AuthenticationForm.d.ts +14 -0
- package/dist/esm/auth/AuthenticationForm.js +67 -0
- package/dist/esm/auth/AuthenticationForm.js.map +1 -0
- package/dist/esm/auth/ChooseProfileForm.d.ts +8 -0
- package/dist/esm/auth/ChooseProfileForm.js +32 -0
- package/dist/esm/auth/ChooseProfileForm.js.map +1 -0
- package/dist/esm/auth/NewProjectForm.d.ts +7 -0
- package/dist/esm/auth/NewProjectForm.js +42 -0
- package/dist/esm/auth/NewProjectForm.js.map +1 -0
- package/dist/esm/auth/NewUserForm.d.ts +10 -0
- package/dist/esm/auth/NewUserForm.js +87 -0
- package/dist/esm/auth/NewUserForm.js.map +1 -0
- package/dist/esm/auth/RegisterForm.d.ts +12 -0
- package/dist/esm/auth/RegisterForm.js +39 -0
- package/dist/esm/auth/RegisterForm.js.map +1 -0
- package/dist/esm/{SignInForm.d.ts → auth/SignInForm.d.ts} +1 -1
- package/dist/esm/auth/SignInForm.js +52 -0
- package/dist/esm/auth/SignInForm.js.map +1 -0
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.min.js +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/dist/esm/styles.css +197 -197
- package/package.json +16 -18
- package/dist/cjs/RegisterForm.d.ts +0 -18
- package/dist/esm/RegisterForm.d.ts +0 -18
- package/dist/esm/RegisterForm.js +0 -121
- package/dist/esm/RegisterForm.js.map +0 -1
- package/dist/esm/SignInForm.js +0 -167
- package/dist/esm/SignInForm.js.map +0 -1
package/dist/esm/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export * from './AddressInput';
|
|
|
3
3
|
export * from './AttachmentArrayDisplay';
|
|
4
4
|
export * from './AttachmentArrayInput';
|
|
5
5
|
export * from './AttachmentInput';
|
|
6
|
+
export * from './auth/RegisterForm';
|
|
7
|
+
export * from './auth/SignInForm';
|
|
6
8
|
export * from './Autocomplete';
|
|
7
9
|
export * from './Avatar';
|
|
8
10
|
export * from './BackboneElementInput';
|
|
@@ -48,7 +50,6 @@ export * from './QuestionnaireUtils';
|
|
|
48
50
|
export * from './RangeDisplay';
|
|
49
51
|
export * from './RangeInput';
|
|
50
52
|
export * from './ReferenceInput';
|
|
51
|
-
export * from './RegisterForm';
|
|
52
53
|
export * from './RequestGroupDisplay';
|
|
53
54
|
export * from './ResourceArrayDisplay';
|
|
54
55
|
export * from './ResourceArrayInput';
|
|
@@ -71,7 +72,6 @@ export * from './SearchFilterEditor';
|
|
|
71
72
|
export * from './SearchUtils';
|
|
72
73
|
export * from './Select';
|
|
73
74
|
export * from './ServiceRequestTimeline';
|
|
74
|
-
export * from './SignInForm';
|
|
75
75
|
export * from './StatusBadge';
|
|
76
76
|
export * from './Tab';
|
|
77
77
|
export * from './TabList';
|
package/dist/esm/index.js
CHANGED
|
@@ -3,6 +3,8 @@ export { AddressInput } from './AddressInput.js';
|
|
|
3
3
|
export { AttachmentArrayDisplay } from './AttachmentArrayDisplay.js';
|
|
4
4
|
export { AttachmentArrayInput } from './AttachmentArrayInput.js';
|
|
5
5
|
export { AttachmentInput } from './AttachmentInput.js';
|
|
6
|
+
export { RegisterForm } from './auth/RegisterForm.js';
|
|
7
|
+
export { SignInForm } from './auth/SignInForm.js';
|
|
6
8
|
export { Autocomplete } from './Autocomplete.js';
|
|
7
9
|
export { Avatar } from './Avatar.js';
|
|
8
10
|
export { BackboneElementInput } from './BackboneElementInput.js';
|
|
@@ -48,7 +50,6 @@ export { QuestionnaireItemType, addQuestionnaireInitialValues, isChoiceQuestion
|
|
|
48
50
|
export { RangeDisplay, formatRangeString } from './RangeDisplay.js';
|
|
49
51
|
export { RangeInput } from './RangeInput.js';
|
|
50
52
|
export { ReferenceInput } from './ReferenceInput.js';
|
|
51
|
-
export { RegisterForm } from './RegisterForm.js';
|
|
52
53
|
export { RequestGroupDisplay } from './RequestGroupDisplay.js';
|
|
53
54
|
export { ResourceArrayDisplay } from './ResourceArrayDisplay.js';
|
|
54
55
|
export { ResourceArrayInput } from './ResourceArrayInput.js';
|
|
@@ -71,7 +72,6 @@ export { SearchFilterEditor } from './SearchFilterEditor.js';
|
|
|
71
72
|
export { addDateEqualsFilter, addDateFilter, addDateFilterBetween, addField, addFilter, addLastMonthFilter, addMissingFilter, addNextMonthFilter, addThisMonthFilter, addTodayFilter, addTomorrowFilter, addYearToDateFilter, addYesterdayFilter, buildFieldNameString, clearFilters, clearFiltersOnField, deleteFilter, getOpString, getSearchOperators, getSortField, hasFilterOnField, isSortDescending, movePage, renderValue, setFilters, setOffset, setSort, toggleSort } from './SearchUtils.js';
|
|
72
73
|
export { Select } from './Select.js';
|
|
73
74
|
export { ServiceRequestTimeline } from './ServiceRequestTimeline.js';
|
|
74
|
-
export { SignInForm } from './SignInForm.js';
|
|
75
75
|
export { StatusBadge } from './StatusBadge.js';
|
|
76
76
|
export { Tab } from './Tab.js';
|
|
77
77
|
export { TabList } from './TabList.js';
|