@allthings/structured-ticket-form 4.0.2 → 5.0.0-dev1
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 +1 -1
- package/lib/App.d.ts +1 -0
- package/lib/App.js +1187 -0
- package/lib/App.js.map +1 -0
- package/lib/assets/svg/VectorIcon.d.ts +1 -3
- package/lib/assets/svg/VectorIcon.js +14 -3
- package/lib/assets/svg/VectorIcon.js.map +1 -1
- package/lib/components/atoms/ErrorMessage.js +14 -6
- package/lib/components/atoms/ErrorMessage.js.map +1 -1
- package/lib/components/atoms/LanguageSelector.js +17 -17
- package/lib/components/atoms/LanguageSelector.js.map +1 -1
- package/lib/components/atoms/SchemaHeader.js +14 -6
- package/lib/components/atoms/SchemaHeader.js.map +1 -1
- package/lib/components/molecules/CustomForm.d.ts +1 -3
- package/lib/components/molecules/CustomForm.js +3 -5
- package/lib/components/molecules/CustomForm.js.map +1 -1
- package/lib/components/molecules/SchemaEditor.js +15 -17
- package/lib/components/molecules/SchemaEditor.js.map +1 -1
- package/lib/components/organism/StructuredTicketEditor.js +9 -12
- package/lib/components/organism/StructuredTicketEditor.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/root.d.ts +1 -0
- package/lib/root.js +33 -0
- package/lib/root.js.map +1 -0
- package/package.json +35 -23
package/package.json
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allthings/structured-ticket-form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-dev1",
|
|
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
|
+
"targets": {
|
|
7
|
+
"main": false
|
|
8
|
+
},
|
|
9
|
+
"browserslist": "> 0.5%, last 2 versions, not dead",
|
|
6
10
|
"private": false,
|
|
7
11
|
"repository": {
|
|
8
12
|
"type": "git",
|
|
9
13
|
"url": "git+https://github.com/allthings/structured-ticket-form"
|
|
10
14
|
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18.16",
|
|
17
|
+
"npm": ">=8",
|
|
18
|
+
"yarn": "^1.22"
|
|
19
|
+
},
|
|
11
20
|
"author": "Allthings",
|
|
12
21
|
"license": "MIT",
|
|
13
22
|
"bugs": {
|
|
@@ -15,22 +24,22 @@
|
|
|
15
24
|
},
|
|
16
25
|
"homepage": "https://github.com/allthings/structured-ticket-form/#readme",
|
|
17
26
|
"scripts": {
|
|
18
|
-
"build:sandbox": "
|
|
27
|
+
"build:sandbox": "parcel build src/index.html --no-cache",
|
|
19
28
|
"build": "ttsc --build tsconfig.build.json",
|
|
20
29
|
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
|
|
21
30
|
"prebuild": "rimraf lib",
|
|
22
|
-
"prepare": "husky
|
|
31
|
+
"prepare": "husky",
|
|
23
32
|
"prettier": "prettier --write",
|
|
24
33
|
"preversion": "yarn lint",
|
|
25
34
|
"release": "yarn build && yarn publish --new-version $npm_package_version --tag latest --access public && git push --tags origin HEAD",
|
|
26
35
|
"security-check": "yarn audit --groups dependencies --level high || test $? -lt 7",
|
|
27
|
-
"start": "
|
|
36
|
+
"start": "parcel src/index.html --no-cache --open",
|
|
28
37
|
"test": "jest --passWithNoTests",
|
|
29
38
|
"test:watch": "jest --watch",
|
|
30
39
|
"up": "yarn upgrade-interactive --latest --exact"
|
|
31
40
|
},
|
|
32
41
|
"resolutions": {
|
|
33
|
-
"@types/react": "17.0.
|
|
42
|
+
"@types/react": "17.0.80",
|
|
34
43
|
"@types/react-dom": "17.0.25"
|
|
35
44
|
},
|
|
36
45
|
"dependencies": {
|
|
@@ -49,27 +58,30 @@
|
|
|
49
58
|
},
|
|
50
59
|
"devDependencies": {
|
|
51
60
|
"@allthings/eslint-config": "2.1.1",
|
|
52
|
-
"@commitlint/cli": "
|
|
53
|
-
"@commitlint/config-conventional": "
|
|
54
|
-
"@
|
|
55
|
-
"@types/
|
|
56
|
-
"@types/
|
|
57
|
-
"@types/react": "
|
|
58
|
-
"@types/react-dom": "17.0.25",
|
|
61
|
+
"@commitlint/cli": "19.3.0",
|
|
62
|
+
"@commitlint/config-conventional": "19.2.2",
|
|
63
|
+
"@types/jest": "29.5.12",
|
|
64
|
+
"@types/lodash": "4.17.5",
|
|
65
|
+
"@types/react": "18.3.3",
|
|
66
|
+
"@types/react-dom": "18.3.0",
|
|
59
67
|
"@types/react-jsonschema-form": "1.7.13",
|
|
60
|
-
"eslint": "8.
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
68
|
+
"eslint": "8.57.0",
|
|
69
|
+
"eslint-import-resolver-alias": "1.1.2",
|
|
70
|
+
"eslint-plugin-import": "2.29.1",
|
|
71
|
+
"husky": "9.0.11",
|
|
72
|
+
"jest": "29.7.0",
|
|
73
|
+
"jest-environment-jsdom": "29.7.0",
|
|
74
|
+
"lint-staged": "15.2.7",
|
|
75
|
+
"parcel": "2.12.0",
|
|
76
|
+
"prettier": "3.3.2",
|
|
77
|
+
"process": "0.11.10",
|
|
78
|
+
"react": "18.3.1",
|
|
79
|
+
"react-dom": "18.3.1",
|
|
80
|
+
"rimraf": "5.0.7",
|
|
81
|
+
"ts-jest": "29.1.5",
|
|
70
82
|
"ttypescript": "1.5.15",
|
|
71
83
|
"typescript": "4.9.5",
|
|
72
|
-
"typescript-transform-paths": "3.4.
|
|
84
|
+
"typescript-transform-paths": "3.4.7"
|
|
73
85
|
},
|
|
74
86
|
"peerDependencies": {
|
|
75
87
|
"react": "^16.8 || ^17",
|