@fuego-systems/react 0.1.4
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/Logo/FuegoLogo.d.ts +4 -0
- package/dist/Logo/FuegoLogo.d.ts.map +1 -0
- package/dist/Logo/FuegoLogo.js +8 -0
- package/dist/Logo/FuegoLogo.js.map +1 -0
- package/dist/Logo/LogoProps.d.ts +5 -0
- package/dist/Logo/LogoProps.d.ts.map +1 -0
- package/dist/Logo/LogoProps.js +2 -0
- package/dist/Logo/LogoProps.js.map +1 -0
- package/dist/Logo/RossiLogo.d.ts +4 -0
- package/dist/Logo/RossiLogo.d.ts.map +1 -0
- package/dist/Logo/RossiLogo.js +5 -0
- package/dist/Logo/RossiLogo.js.map +1 -0
- package/dist/OtpInput/OtpInput.d.ts +18 -0
- package/dist/OtpInput/OtpInput.d.ts.map +1 -0
- package/dist/OtpInput/OtpInput.js +76 -0
- package/dist/OtpInput/OtpInput.js.map +1 -0
- package/dist/WizardStepper/WizardStepper.d.ts +35 -0
- package/dist/WizardStepper/WizardStepper.d.ts.map +1 -0
- package/dist/WizardStepper/WizardStepper.js +9 -0
- package/dist/WizardStepper/WizardStepper.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/medplum.d.ts +7 -0
- package/dist/medplum.d.ts.map +1 -0
- package/dist/medplum.js +4 -0
- package/dist/medplum.js.map +1 -0
- package/dist/search/FuegoSearchControl.d.ts +41 -0
- package/dist/search/FuegoSearchControl.d.ts.map +1 -0
- package/dist/search/FuegoSearchControl.js +314 -0
- package/dist/search/FuegoSearchControl.js.map +1 -0
- package/dist/search/HealthcareServiceAutocomplete.d.ts +12 -0
- package/dist/search/HealthcareServiceAutocomplete.d.ts.map +1 -0
- package/dist/search/HealthcareServiceAutocomplete.js +43 -0
- package/dist/search/HealthcareServiceAutocomplete.js.map +1 -0
- package/dist/search/PlanDefinitionAutocomplete.d.ts +12 -0
- package/dist/search/PlanDefinitionAutocomplete.d.ts.map +1 -0
- package/dist/search/PlanDefinitionAutocomplete.js +130 -0
- package/dist/search/PlanDefinitionAutocomplete.js.map +1 -0
- package/dist/search/ServiceAutocomplete.d.ts +25 -0
- package/dist/search/ServiceAutocomplete.d.ts.map +1 -0
- package/dist/search/ServiceAutocomplete.js +103 -0
- package/dist/search/ServiceAutocomplete.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fuego-systems/react",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./medplum": {
|
|
14
|
+
"import": "./dist/medplum.js",
|
|
15
|
+
"types": "./dist/medplum.d.ts"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.json",
|
|
20
|
+
"dev": "tsc -p tsconfig.json -w --preserveWatchOutput",
|
|
21
|
+
"clean": "rimraf dist",
|
|
22
|
+
"lint": "eslint src/",
|
|
23
|
+
"test": "jest --passWithNoTests",
|
|
24
|
+
"test:coverage": "jest --coverage --passWithNoTests"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@mantine/core": "^8.0.0",
|
|
28
|
+
"@mantine/hooks": "^8.0.0",
|
|
29
|
+
"@medplum/react": "^5.0.2",
|
|
30
|
+
"@medplum/core": "^5.0.2",
|
|
31
|
+
"@medplum/fhirtypes": "^5.0.2",
|
|
32
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
33
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
34
|
+
},
|
|
35
|
+
"peerDependenciesMeta": {
|
|
36
|
+
"@medplum/react": {
|
|
37
|
+
"optional": true
|
|
38
|
+
},
|
|
39
|
+
"@medplum/core": {
|
|
40
|
+
"optional": true
|
|
41
|
+
},
|
|
42
|
+
"@medplum/fhirtypes": {
|
|
43
|
+
"optional": true
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@mantine/core": "8.3.7",
|
|
48
|
+
"@mantine/hooks": "8.3.7",
|
|
49
|
+
"@medplum/react": "^5.0.2",
|
|
50
|
+
"@medplum/core": "^5.0.2",
|
|
51
|
+
"@medplum/fhirtypes": "^5.0.2"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"dist"
|
|
55
|
+
],
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": "^22.18.0 || >=24.2.0"
|
|
58
|
+
}
|
|
59
|
+
}
|