@regulaforensics/ui-components 8.4.690-nightly → 8.4.693-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/package.json CHANGED
@@ -1,23 +1,28 @@
1
1
  {
2
2
  "name": "@regulaforensics/ui-components",
3
- "version": "8.4.690-nightly",
3
+ "version": "8.4.693-nightly",
4
4
  "description": "Regula UI components",
5
5
  "author": "Regula Forensics, Inc.",
6
6
  "license": "MIT",
7
7
  "main": "./dist/main/index.js",
8
- "types": "./dist/index.d.ts",
8
+ "types": "./dist/main/index.d.ts",
9
9
  "type": "module",
10
10
  "exports": {
11
11
  ".": {
12
- "types": "./dist/index.d.ts",
12
+ "types": "./dist/main/index.d.ts",
13
13
  "import": "./dist/main/index.js",
14
14
  "require": "./dist/main/index.cjs"
15
15
  },
16
16
  "./core": {
17
- "types": "./dist/index.d.ts",
17
+ "types": "./dist/core/index.d.ts",
18
18
  "import": "./dist/core/index.js",
19
19
  "require": "./dist/core/index.cjs"
20
20
  },
21
+ "./typings": {
22
+ "types": "./dist/typings/index.d.ts",
23
+ "import": "./dist/typings/index.js",
24
+ "require": "./dist/typings/index.cjs"
25
+ },
21
26
  "./styles": "./dist/core/index.css",
22
27
  "./package.json": "./package.json"
23
28
  },
@@ -30,7 +35,15 @@
30
35
  "scripts": {
31
36
  "storybook": "storybook dev -p 6006",
32
37
  "build-storybook": "storybook build",
33
- "build": "npm run check-types && vite build --config vite-build.config.ts && vite build --config vite-build-core.config.ts",
38
+ "build": "npm run check-types && npm run build:main && npm run build:core && npm run build:typings",
39
+ "build:main": "vite build --config vite-build.config.ts && npm run extract:main",
40
+ "build:core": "vite build --config vite-build-core.config.ts && npm run extract:core",
41
+ "build:typings": "vite build --config vite-build-typings.config.ts && npm run extract:typings",
42
+ "extract:main": "api-extractor run --local --verbose --config api-extractor.main.json && rimraf dist/main/types",
43
+ "extract:core": "api-extractor run --local --verbose --config api-extractor.core.json && rimraf dist/core/types",
44
+ "extract:typings": "api-extractor run --local --verbose --config api-extractor.typings.json && rimraf dist/typings/types",
45
+ "test": "vitest run",
46
+ "docs": "typedoc --out docs src/document-reader/typings",
34
47
  "prepare": "husky",
35
48
  "check-types": "tsc --noEmit --skipLibCheck",
36
49
  "i18n:build": "npx node ./scripts/i18n-build.js --languages en,ru --file ./scripts/Translator.xml --src ./src",
@@ -40,32 +53,42 @@
40
53
  "*.{js,ts,tsx}": "eslint --fix"
41
54
  },
42
55
  "dependencies": {
43
- "@babel/runtime": "^7.28.4",
44
- "@regulaforensics/document-reader-typings": "^8.4.690-nightly",
56
+ "@regulaforensics/document-reader-webclient": "^8.4.558-nightly",
45
57
  "@regulaforensics/facesdk-webclient": "^7.1.291",
46
58
  "@uiw/react-json-view": "^2.0.0-alpha.39",
59
+ "class-transformer": "^0.5.1",
60
+ "class-validator": "^0.14.2",
47
61
  "classnames": "^2.5.1",
62
+ "date-fns": "^4.1.0",
48
63
  "i18next": "^25.6.0",
49
64
  "lodash": "^4.17.21",
50
65
  "overlayscrollbars": "^2.12.0",
51
66
  "overlayscrollbars-react": "^0.5.6",
67
+ "pako": "^2.1.0",
52
68
  "react-device-detect": "^2.2.3",
53
69
  "react-i18next": "^16.0.1",
54
70
  "react-scroll": "^1.9.3",
55
- "react-transition-group": "^4.4.5"
71
+ "react-transition-group": "^4.4.5",
72
+ "reflect-metadata": "^0.2.2",
73
+ "thenby": "^1.3.4"
56
74
  },
57
75
  "devDependencies": {
58
76
  "@eslint/js": "^9.37.0",
77
+ "@microsoft/api-extractor": "^7.54.0",
59
78
  "@storybook/addon-docs": "^9.1.10",
60
79
  "@storybook/react": "^9.1.10",
61
80
  "@storybook/react-vite": "^9.1.10",
81
+ "@types/deep-diff": "^1.0.5",
62
82
  "@types/lodash": "^4.17.20",
63
83
  "@types/node": "^24.7.2",
84
+ "@types/pako": "^2.0.4",
64
85
  "@types/react": "^18.3.13",
65
86
  "@types/react-dom": "^18.3.1",
66
87
  "@types/react-scroll": "^1.8.10",
67
88
  "@types/react-transition-group": "^4.4.12",
68
89
  "@vitejs/plugin-react-swc": "^4.0.1",
90
+ "deep-diff": "^1.0.2",
91
+ "dotenv": "^17.2.3",
69
92
  "eslint": "^9.37.0",
70
93
  "eslint-config-prettier": "^10.1.8",
71
94
  "eslint-plugin-prettier": "^5.5.4",
@@ -79,15 +102,18 @@
79
102
  "prettier": "^3.6.2",
80
103
  "react": "^18.3.1",
81
104
  "react-dom": "^18.3.1",
82
- "rimraf": "^6.0.1",
105
+ "rimraf": "^6.1.0",
83
106
  "rollup-preserve-directives": "^1.1.3",
84
107
  "sass": "^1.93.2",
85
108
  "storybook": "^9.1.10",
109
+ "typedoc": "^0.28.14",
110
+ "typedoc-plugin-coverage": "^4.0.2",
86
111
  "typescript": "^5.9.3",
87
112
  "typescript-eslint": "^8.46.1",
88
- "vite": "^7.1.11",
113
+ "vite": "^7.1.12",
89
114
  "vite-bundle-analyzer": "^1.2.3",
90
115
  "vite-plugin-dts": "^4.5.4",
116
+ "vitest": "^4.0.6",
91
117
  "xml2js": "^0.6.2",
92
118
  "yargs": "^18.0.0"
93
119
  },