@revisium/schema-toolkit-ui 0.1.0-alpha.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Anton Kashirov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ <div align="center">
2
+
3
+ # @revisium/schema-toolkit-ui
4
+
5
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=revisium_schema-toolkit-ui&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=revisium_schema-toolkit-ui)
6
+ [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=revisium_schema-toolkit-ui&metric=coverage)](https://sonarcloud.io/summary/new_code?id=revisium_schema-toolkit-ui)
7
+ [![npm version](https://img.shields.io/npm/v/@revisium/schema-toolkit-ui.svg)](https://www.npmjs.com/package/@revisium/schema-toolkit-ui)
8
+ [![GitHub License](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/revisium/schema-toolkit-ui/blob/master/LICENSE)
9
+ [![GitHub Release](https://img.shields.io/github/v/release/revisium/schema-toolkit-ui)](https://github.com/revisium/schema-toolkit-ui/releases)
10
+
11
+ React UI components for JSON Schema manipulation and data editing. Built on top of [@revisium/schema-toolkit](https://github.com/revisium/schema-toolkit).
12
+
13
+ </div>
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ npm install @revisium/schema-toolkit-ui
19
+ ```
20
+
21
+ **Peer dependencies:**
22
+ ```bash
23
+ npm install react react-dom @chakra-ui/react @emotion/react next-themes
24
+ ```
25
+
26
+ ## Features
27
+
28
+ - React components for schema-based data editing
29
+ - TypeScript support with full type definitions
30
+ - Tree-shakeable ESM and CommonJS builds
31
+ - Chakra UI integration
32
+ - Storybook documentation
33
+
34
+ ## Usage
35
+
36
+ ```tsx
37
+ import { Button } from '@revisium/schema-toolkit-ui';
38
+
39
+ function App() {
40
+ return <Button variant="primary">Click me</Button>;
41
+ }
42
+ ```
43
+
44
+ ## License
45
+
46
+ MIT