@medplum/react 2.1.17 → 2.1.19

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/.env.defaults ADDED
@@ -0,0 +1,2 @@
1
+ GOOGLE_CLIENT_ID=921088377005-3j1sa10vr6hj86jgmdfh2l53v3mp7lfi.apps.googleusercontent.com
2
+ GOOGLE_AUTH_ORIGINS=http://localhost:3000,https://app.medplum.com,https://docs.medplum.com
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/react",
3
- "version": "2.1.17",
3
+ "version": "2.1.19",
4
4
  "description": "Medplum React Component Library",
5
5
  "keywords": [
6
6
  "medplum",
@@ -22,6 +22,9 @@
22
22
  "react-component"
23
23
  ],
24
24
  "homepage": "https://www.medplum.com/",
25
+ "bugs": {
26
+ "url": "https://github.com/medplum/medplum/issues"
27
+ },
25
28
  "repository": {
26
29
  "type": "git",
27
30
  "url": "git+https://github.com/medplum/medplum.git",
@@ -29,16 +32,28 @@
29
32
  },
30
33
  "license": "Apache-2.0",
31
34
  "author": "Medplum <hello@medplum.com>",
32
- "type": "module",
33
35
  "sideEffects": false,
36
+ "type": "module",
34
37
  "exports": {
35
- "require": "./dist/cjs/index.cjs",
36
- "import": "./dist/esm/index.mjs"
38
+ "import": {
39
+ "types": "./dist/esm/index.d.ts",
40
+ "default": "./dist/esm/index.mjs"
41
+ },
42
+ "require": {
43
+ "types": "./dist/cjs/index.d.ts",
44
+ "default": "./dist/cjs/index.cjs"
45
+ }
37
46
  },
38
47
  "main": "dist/cjs/index.cjs",
39
48
  "module": "dist/esm/index.mjs",
49
+ "types": "dist/esm/index.d.ts",
50
+ "files": [
51
+ ".env.defaults",
52
+ "dist/cjs",
53
+ "dist/esm"
54
+ ],
40
55
  "scripts": {
41
- "api-extractor": "api-extractor run --local && cp dist/types.d.ts dist/cjs/index.d.cts && cp dist/types.d.ts dist/esm/index.d.mts",
56
+ "api-extractor": "api-extractor run --local && cp dist/types.d.ts dist/cjs/index.d.ts && cp dist/types.d.ts dist/esm/index.d.ts",
42
57
  "build": "npm run clean && tsc --project tsconfig.build.json && node esbuild.mjs && npm run api-extractor",
43
58
  "clean": "rimraf dist storybook-static",
44
59
  "dev": "storybook dev -p 6006",
File without changes
File without changes