@riab/vendor-due-diligence 0.0.1
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 +33 -0
- package/dist/vendor-due-diligence.js +4191 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# General
|
|
2
|
+
|
|
3
|
+
This package contains the new and updated modularized version of the risk assessment tool previously on MyRIACompliance.
|
|
4
|
+
|
|
5
|
+
# Usage
|
|
6
|
+
|
|
7
|
+
To install: run `npm i @riab/risk-assessment`
|
|
8
|
+
Once installed, make sure to register the component by importing it.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
Depending on the framework used, this can be done in multiple ways.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
```html
|
|
15
|
+
<body>
|
|
16
|
+
<script type="module">
|
|
17
|
+
import '@riab/risk-assessment';
|
|
18
|
+
</script>
|
|
19
|
+
</body>
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Now render the web component
|
|
24
|
+
|
|
25
|
+
```html
|
|
26
|
+
<body>
|
|
27
|
+
<script type="module">
|
|
28
|
+
import '@riab/risk-assessment';
|
|
29
|
+
</script>
|
|
30
|
+
<risk-assessment-page environment="<insert_uat_or_production_here>" user="<insert_encrypted_user_here>"></risk-assessment-page>
|
|
31
|
+
</body>
|
|
32
|
+
|
|
33
|
+
```
|