@allthings/structured-ticket-form 6.0.2 → 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 +28 -26
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": "
|
|
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",
|
|
@@ -47,49 +46,49 @@
|
|
|
47
46
|
"dependencies": {
|
|
48
47
|
"@emotion/react": "^11.13.3",
|
|
49
48
|
"@emotion/styled": "^11.13.0",
|
|
50
|
-
"@monaco-editor/react": "^4.
|
|
51
|
-
"@mui/icons-material": "^
|
|
52
|
-
"@mui/material": "^
|
|
53
|
-
"@rjsf/core": "^
|
|
54
|
-
"@rjsf/mui": "^
|
|
55
|
-
"@rjsf/utils": "^
|
|
56
|
-
"@rjsf/validator-ajv8": "^
|
|
49
|
+
"@monaco-editor/react": "^4.7.0",
|
|
50
|
+
"@mui/icons-material": "^7.3.7",
|
|
51
|
+
"@mui/material": "^7.3.7",
|
|
52
|
+
"@rjsf/core": "^6.2.5",
|
|
53
|
+
"@rjsf/mui": "^6.2.5",
|
|
54
|
+
"@rjsf/utils": "^6.2.5",
|
|
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
|
-
"@allthings/eslint-config": "2.2.
|
|
63
|
-
"@commitlint/cli": "20.1
|
|
64
|
-
"@commitlint/config-conventional": "20.
|
|
60
|
+
"@allthings/eslint-config": "2.2.3",
|
|
61
|
+
"@commitlint/cli": "20.4.1",
|
|
62
|
+
"@commitlint/config-conventional": "20.4.1",
|
|
65
63
|
"@types/jest": "30.0.0",
|
|
66
|
-
"@types/lodash": "4.17.
|
|
67
|
-
"@types/react": "18.3.
|
|
64
|
+
"@types/lodash": "4.17.23",
|
|
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",
|
|
73
70
|
"husky": "9.1.7",
|
|
74
71
|
"jest": "30.2.0",
|
|
75
72
|
"jest-environment-jsdom": "30.2.0",
|
|
76
|
-
"lint-staged": "16.2.
|
|
77
|
-
"parcel": "2.16.
|
|
78
|
-
"prettier": "3.
|
|
73
|
+
"lint-staged": "16.2.7",
|
|
74
|
+
"parcel": "2.16.4",
|
|
75
|
+
"prettier": "3.8.1",
|
|
79
76
|
"react": "18.3.1",
|
|
80
77
|
"react-dom": "18.3.1",
|
|
81
|
-
"rimraf": "6.1.
|
|
82
|
-
"ts-jest": "29.4.
|
|
78
|
+
"rimraf": "6.1.2",
|
|
79
|
+
"ts-jest": "29.4.6",
|
|
83
80
|
"ts-patch": "3.3.0",
|
|
84
81
|
"typescript": "5.9.3",
|
|
85
|
-
"typescript-transform-paths": "3.5.
|
|
82
|
+
"typescript-transform-paths": "3.5.6"
|
|
86
83
|
},
|
|
87
84
|
"alias": {
|
|
88
85
|
"process": {
|
|
89
86
|
"global": "process"
|
|
90
|
-
}
|
|
87
|
+
},
|
|
88
|
+
"@x0k/json-schema-merge/lib/array": "@x0k/json-schema-merge/dist/lib/array.js"
|
|
91
89
|
},
|
|
92
90
|
"peerDependencies": {
|
|
91
|
+
"monaco-editor": ">= 0.25.0 < 1",
|
|
93
92
|
"react": "^17 || ^18",
|
|
94
93
|
"react-dom": "^17 || ^18"
|
|
95
94
|
},
|
|
@@ -108,6 +107,9 @@
|
|
|
108
107
|
"<rootDir>/src"
|
|
109
108
|
],
|
|
110
109
|
"testEnvironment": "jsdom",
|
|
110
|
+
"moduleNameMapper": {
|
|
111
|
+
"^@x0k/json-schema-merge/lib/array$": "<rootDir>/node_modules/@x0k/json-schema-merge/dist/lib/array.js"
|
|
112
|
+
},
|
|
111
113
|
"transform": {
|
|
112
114
|
"\\.[jt]sx?$": "ts-jest"
|
|
113
115
|
},
|