bahmni-form-controls-cure 0.93.21
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/LICENSE +661 -0
- package/README.md +26 -0
- package/dist/bundle.js +3074 -0
- package/dist/helpers.js +2480 -0
- package/package.json +106 -0
package/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Form Controls
|
|
2
|
+
-------------
|
|
3
|
+
|
|
4
|
+
This library provides a range of form controls that can be used to create customized forms within the Bahmni platform.
|
|
5
|
+
|
|
6
|
+
### File naming conventions
|
|
7
|
+
|
|
8
|
+
1. All components should be in Pascal Case (camel case starting with uppercase letter)
|
|
9
|
+
2. Other files including styles should be in Camel Case starting with lowercase letter
|
|
10
|
+
3. Test files should have the same name as the file followed by .spec.js
|
|
11
|
+
|
|
12
|
+
### Setup Steps
|
|
13
|
+
|
|
14
|
+
1. Install nvm
|
|
15
|
+
2. Install node
|
|
16
|
+
3. Install yarn - https://yarnpkg.com/en/docs/install
|
|
17
|
+
|
|
18
|
+
### Build
|
|
19
|
+
|
|
20
|
+
1. Install dependencies - `yarn`
|
|
21
|
+
2. Build - `yarn build`
|
|
22
|
+
3. Test - `yarn test`
|
|
23
|
+
|
|
24
|
+
### SNOMED Integration Support
|
|
25
|
+
|
|
26
|
+
form-controls also integrates with SNOMED for terminology lookup as part of form configuration and generation. More details can be found in [this](https://bahmni.atlassian.net/wiki/spaces/BAH/pages/3132686337/SNOMED+FHIR+Terminology+Server+Integration+with+Bahmni) Wiki link
|