@allthings/structured-ticket-form 7.0.0-dev.0 → 7.0.0-dev.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/lib/models.d.ts +1 -1
- package/package.json +8 -7
package/lib/models.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FormProps } from '@rjsf/core';
|
|
2
|
+
import type { UiSchema } from '@rjsf/utils';
|
|
2
3
|
import { JSONSchema7 } from 'json-schema';
|
|
3
|
-
import { UiSchema } from 'react-jsonschema-form';
|
|
4
4
|
export type validatorStatus = 'JSON' | 'Translator';
|
|
5
5
|
export declare enum EditorTab {
|
|
6
6
|
JSON = "JSON",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allthings/structured-ticket-form",
|
|
3
|
-
"version": "7.0.0-dev.
|
|
3
|
+
"version": "7.0.0-dev.1",
|
|
4
4
|
"description": "Simple component to create and edit jsonSchemaForm with possibility to adding translated fields and custom UISchema.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"targets": {
|
|
@@ -17,9 +17,8 @@
|
|
|
17
17
|
"url": "git+https://github.com/allthings/structured-ticket-form"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
|
-
"node": "
|
|
21
|
-
"npm": ">=10"
|
|
22
|
-
"yarn": "^1.22"
|
|
20
|
+
"node": "^22",
|
|
21
|
+
"npm": ">=10"
|
|
23
22
|
},
|
|
24
23
|
"packageManager": "yarn@1.22.22",
|
|
25
24
|
"author": "Allthings",
|
|
@@ -55,8 +54,7 @@
|
|
|
55
54
|
"@rjsf/utils": "^6.2.5",
|
|
56
55
|
"@rjsf/validator-ajv8": "^6.2.5",
|
|
57
56
|
"json-schema": "^0.4.0",
|
|
58
|
-
"lodash": "^4.17.21"
|
|
59
|
-
"react-jsonschema-form": "^1.8.1"
|
|
57
|
+
"lodash": "^4.17.21"
|
|
60
58
|
},
|
|
61
59
|
"devDependencies": {
|
|
62
60
|
"@allthings/eslint-config": "2.2.3",
|
|
@@ -66,7 +64,6 @@
|
|
|
66
64
|
"@types/lodash": "4.17.23",
|
|
67
65
|
"@types/react": "18.3.28",
|
|
68
66
|
"@types/react-dom": "18.3.7",
|
|
69
|
-
"@types/react-jsonschema-form": "1.7.13",
|
|
70
67
|
"eslint": "8.57.1",
|
|
71
68
|
"eslint-import-resolver-alias": "1.1.2",
|
|
72
69
|
"eslint-plugin-import": "2.32.0",
|
|
@@ -91,6 +88,7 @@
|
|
|
91
88
|
"@x0k/json-schema-merge/lib/array": "@x0k/json-schema-merge/dist/lib/array.js"
|
|
92
89
|
},
|
|
93
90
|
"peerDependencies": {
|
|
91
|
+
"monaco-editor": ">= 0.25.0 < 1",
|
|
94
92
|
"react": "^17 || ^18",
|
|
95
93
|
"react-dom": "^17 || ^18"
|
|
96
94
|
},
|
|
@@ -109,6 +107,9 @@
|
|
|
109
107
|
"<rootDir>/src"
|
|
110
108
|
],
|
|
111
109
|
"testEnvironment": "jsdom",
|
|
110
|
+
"moduleNameMapper": {
|
|
111
|
+
"^@x0k/json-schema-merge/lib/array$": "<rootDir>/node_modules/@x0k/json-schema-merge/dist/lib/array.js"
|
|
112
|
+
},
|
|
112
113
|
"transform": {
|
|
113
114
|
"\\.[jt]sx?$": "ts-jest"
|
|
114
115
|
},
|