@revisium/schema-toolkit-ui 0.2.3 → 0.3.0
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 +55 -0
- package/dist/index.cjs +1969 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +232 -20
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +232 -20
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1969 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revisium/schema-toolkit-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "React UI components for JSON Schema manipulation and data editing",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"json-schema",
|
|
@@ -69,7 +69,8 @@
|
|
|
69
69
|
"next-themes": "^0.4.0",
|
|
70
70
|
"react": "^18.0.0 || ^19.0.0",
|
|
71
71
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
72
|
-
"react-icons": "^5.0.0"
|
|
72
|
+
"react-icons": "^5.0.0",
|
|
73
|
+
"react-virtuoso": "^4.0.0"
|
|
73
74
|
},
|
|
74
75
|
"devDependencies": {
|
|
75
76
|
"@atlaskit/drag-and-drop": "^0.15.1",
|
|
@@ -114,6 +115,7 @@
|
|
|
114
115
|
"react": "^18.3.1",
|
|
115
116
|
"react-dom": "^18.3.1",
|
|
116
117
|
"react-icons": "^5.5.0",
|
|
118
|
+
"react-virtuoso": "^4.12.8",
|
|
117
119
|
"storybook": "^10.2.5",
|
|
118
120
|
"ts-jest": "^29.2.5",
|
|
119
121
|
"tsdown": "^0.20.1",
|
|
@@ -132,6 +134,6 @@
|
|
|
132
134
|
"access": "public"
|
|
133
135
|
},
|
|
134
136
|
"dependencies": {
|
|
135
|
-
"@revisium/schema-toolkit": "^0.
|
|
137
|
+
"@revisium/schema-toolkit": "^0.21.3"
|
|
136
138
|
}
|
|
137
139
|
}
|