@ntix/components-scorad 1.0.4 → 1.0.5
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 -22
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -49,28 +49,6 @@ Then add the component to your HTML:
|
|
|
49
49
|
<scorad-component></scorad-component>
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
## Documentation
|
|
53
|
-
|
|
54
|
-
### 🧱 Components
|
|
55
|
-
*Primary UI elements for building the assessment.*
|
|
56
|
-
|
|
57
|
-
- [**Scorad Root**](./docs/component.md) – The main coordinator and score aggregator.
|
|
58
|
-
- [**Extent (Section A)**](./docs/extent.component.md) – Surface area calculation.
|
|
59
|
-
- [**Intensity (Section B)**](./docs/intensity.component.md) – Clinical sign grading.
|
|
60
|
-
- [**Subjective (Section C)**](./docs/subjective.component.md) – Patient-reported symptoms.
|
|
61
|
-
- [**Weightings**](./docs/weightings.component.md) – Adult/Child toggle.
|
|
62
|
-
|
|
63
|
-
### 📊 Data Models & Logic
|
|
64
|
-
*Records and calculation engines.*
|
|
65
|
-
|
|
66
|
-
- [**ScoradScore**](./docs/ScoradScore.md) – The output structure (A, B, C, Total).
|
|
67
|
-
- [**ScoradData**](./docs/ScoradData.md) – The complete assessment state.
|
|
68
|
-
- [**getScoradScore**](./docs/getScoradScore.md) – The mathematical formula implementation.
|
|
69
|
-
- [**Clinical Constants**](./docs/constants.md) – Max values and defaults.
|
|
70
|
-
|
|
71
|
-
### 🌐 Resources
|
|
72
|
-
- [**Localization (ScoradResources)**](./docs/ScoradResources.md) – UI strings and descriptions.
|
|
73
|
-
|
|
74
52
|
## Licensing
|
|
75
53
|
|
|
76
54
|
This package is NOT open-source. Usage is governed by the Antix Software License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ntix/components-scorad",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"homepage": "https://antix.co.uk/scorad",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,8 +31,5 @@
|
|
|
31
31
|
"build": "vite build && npm run docs",
|
|
32
32
|
"preview": "vite preview",
|
|
33
33
|
"prepublishOnly": "npm run test && npm run build"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"typedoc-plugin-markdown": "^4.9.0"
|
|
37
34
|
}
|
|
38
35
|
}
|