@regulaforensics/ui-components 7.6.338-nightly → 7.6.340-nightly
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 +7 -0
- package/dist/core.js +36110 -0
- package/dist/index.js +1 -36927
- package/package.json +16 -2
package/README.md
CHANGED
|
@@ -68,5 +68,12 @@ const root = createRoot(document.getElementById('root'));
|
|
|
68
68
|
root.render(<Results />);
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
## Document-reader processing result tabs
|
|
72
|
+
|
|
73
|
+
By default, styles are automatically imported into the package build and there is no need to make additional style imports. But there are times when you need to control the style import process yourself:
|
|
71
74
|
|
|
75
|
+
```typescript
|
|
76
|
+
import '@regulaforensics/ui-components/styles' // connect styles where you need to
|
|
72
77
|
|
|
78
|
+
import { Collapse } from '@regulaforensics/ui-components/core' // use the components
|
|
79
|
+
```
|