@medplum/react 5.1.27 → 5.1.28
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/README.md +0 -1
- package/dist/cjs/index.cjs +8 -8
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +4 -4
- package/dist/cjs/index.d.ts +87 -56
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +4 -4
- package/dist/esm/index.d.ts +87 -56
- package/dist/esm/index.mjs +7 -7
- package/dist/esm/index.mjs.map +4 -4
- package/package.json +19 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/react",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.28",
|
|
4
4
|
"description": "Medplum React Component Library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"medplum",
|
|
@@ -60,12 +60,9 @@
|
|
|
60
60
|
"scripts": {
|
|
61
61
|
"api-extractor": "api-extractor run --local && shx cp dist/types.d.ts dist/cjs/index.d.ts && shx cp dist/types.d.ts dist/esm/index.d.ts",
|
|
62
62
|
"build": "npm run clean && tsc && node esbuild.mjs && npm run api-extractor",
|
|
63
|
-
"
|
|
64
|
-
"clean": "rimraf dist storybook-static",
|
|
65
|
-
"dev": "storybook dev -p 6006",
|
|
63
|
+
"clean": "rimraf dist",
|
|
66
64
|
"lint": "eslint .",
|
|
67
65
|
"lint:fix": "eslint . --fix",
|
|
68
|
-
"storybook": "storybook build",
|
|
69
66
|
"test": "vitest run"
|
|
70
67
|
},
|
|
71
68
|
"devDependencies": {
|
|
@@ -73,36 +70,26 @@
|
|
|
73
70
|
"@mantine/hooks": "8.3.18",
|
|
74
71
|
"@mantine/notifications": "8.3.18",
|
|
75
72
|
"@mantine/spotlight": "8.3.18",
|
|
76
|
-
"@medplum/core": "5.1.
|
|
77
|
-
"@medplum/definitions": "5.1.
|
|
78
|
-
"@medplum/fhirtypes": "5.1.
|
|
79
|
-
"@medplum/mock": "5.1.
|
|
80
|
-
"@medplum/react-hooks": "5.1.
|
|
81
|
-
"@
|
|
82
|
-
"@storybook/addon-links": "10.5.2",
|
|
83
|
-
"@storybook/builder-vite": "10.5.2",
|
|
84
|
-
"@storybook/react": "10.5.2",
|
|
85
|
-
"@storybook/react-vite": "10.5.2",
|
|
86
|
-
"@tabler/icons-react": "3.45.0",
|
|
73
|
+
"@medplum/core": "5.1.28",
|
|
74
|
+
"@medplum/definitions": "5.1.28",
|
|
75
|
+
"@medplum/fhirtypes": "5.1.28",
|
|
76
|
+
"@medplum/mock": "5.1.28",
|
|
77
|
+
"@medplum/react-hooks": "5.1.28",
|
|
78
|
+
"@tabler/icons-react": "3.46.0",
|
|
87
79
|
"@testing-library/dom": "10.4.1",
|
|
88
|
-
"@testing-library/jest-dom": "
|
|
80
|
+
"@testing-library/jest-dom": "7.0.0",
|
|
89
81
|
"@testing-library/react": "16.3.2",
|
|
90
82
|
"@testing-library/user-event": "14.6.1",
|
|
91
|
-
"@types/react": "19.2.
|
|
92
|
-
"@types/react-dom": "19.2.
|
|
93
|
-
"@vitejs/plugin-react": "6.0.
|
|
94
|
-
"@vueless/storybook-dark-mode": "10.0.8",
|
|
95
|
-
"chromatic": "18.0.1",
|
|
83
|
+
"@types/react": "19.2.18",
|
|
84
|
+
"@types/react-dom": "19.2.4",
|
|
85
|
+
"@vitejs/plugin-react": "6.0.5",
|
|
96
86
|
"dotenv": "17.4.2",
|
|
97
87
|
"jsqr": "1.4.0",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"react": "
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"signature_pad": "5.1.3",
|
|
104
|
-
"sinon": "22.0.0",
|
|
105
|
-
"storybook": "10.5.2",
|
|
88
|
+
"react": "19.2.8",
|
|
89
|
+
"react-dom": "19.2.8",
|
|
90
|
+
"react-router": "7.18.2",
|
|
91
|
+
"signature_pad": "5.1.4",
|
|
92
|
+
"sinon": "22.1.0",
|
|
106
93
|
"typescript": "6.0.3"
|
|
107
94
|
},
|
|
108
95
|
"peerDependencies": {
|
|
@@ -110,8 +97,8 @@
|
|
|
110
97
|
"@mantine/hooks": "^8.0.0",
|
|
111
98
|
"@mantine/notifications": "^8.0.0",
|
|
112
99
|
"@mantine/spotlight": "^8.0.0",
|
|
113
|
-
"@medplum/core": "5.1.
|
|
114
|
-
"@medplum/react-hooks": "5.1.
|
|
100
|
+
"@medplum/core": "5.1.28",
|
|
101
|
+
"@medplum/react-hooks": "5.1.28",
|
|
115
102
|
"jsqr": "^1.4.0",
|
|
116
103
|
"react": "^18.0.0 || ^19.0.0",
|
|
117
104
|
"react-dom": "^18.0.0 || ^19.0.0",
|