@regulaforensics/ui-components 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 +17 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +20454 -0
- package/dist/style.css +1 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Regula React UI components
|
|
2
|
+
|
|
3
|
+
This package contains React UI components for Regula products.
|
|
4
|
+
|
|
5
|
+
## Installing
|
|
6
|
+
You should complete next steps:
|
|
7
|
+
|
|
8
|
+
1. Use command line and run command `npm install`
|
|
9
|
+
|
|
10
|
+
## Develop mode
|
|
11
|
+
|
|
12
|
+
1. use `npm run storybook`
|
|
13
|
+
2. you can develop all local files with started HMR mode
|
|
14
|
+
|
|
15
|
+
## Build package
|
|
16
|
+
|
|
17
|
+
1. use `npm run build-package`
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { ProcessResponse } from '@regulaforensics/document-reader-typings';
|
|
3
|
+
|
|
4
|
+
declare interface IProcessingResults {
|
|
5
|
+
response: ProcessResponse;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export declare const ProcessingResults: FC<IProcessingResults>;
|
|
9
|
+
|
|
10
|
+
export { }
|