@regulaforensics/ui-components 7.6.338-nightly → 7.6.339-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.
Files changed (4) hide show
  1. package/README.md +7 -0
  2. package/dist/core.js +36110 -0
  3. package/dist/index.js +1 -36927
  4. package/package.json +15 -1
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
+ ```