@kubuild/react 0.0.1 → 0.2.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +119 -0
  3. package/package.json +14 -15
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 kustora
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,119 @@
1
+ # @kubuild/react
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@kubuild/react.svg)](https://www.npmjs.com/package/@kubuild/react)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue)](https://www.typescriptlang.org/)
6
+
7
+ Unified React entrypoint for **KUBUILD**: combines `@kubuild/schema`, `@kubuild/core`, `@kubuild/components`, `@kubuild/renderer`, and `@kubuild/editor` into a single, comprehensive package.
8
+
9
+ ---
10
+
11
+ ## 📦 Installation
12
+
13
+ ```bash
14
+ # Using pnpm (recommended)
15
+ pnpm add @kubuild/react react react-dom
16
+
17
+ # Using npm
18
+ npm install @kubuild/react react react-dom
19
+
20
+ # Using yarn
21
+ yarn add @kubuild/react react react-dom
22
+ ```
23
+
24
+ ---
25
+
26
+ ## ✨ Features
27
+
28
+ - **All-in-One Convenience**: Single package install that gives you the complete visual page builder suite:
29
+ - 🎨 **Visual Editor** (`@kubuild/editor`)
30
+ - ⚡ **Recursive Renderer** (`@kubuild/renderer`)
31
+ - 🧩 **Component Registry & Templates** (`@kubuild/components`)
32
+ - ⚙️ **Command Engine, Pipeline Executor & Undo/Redo** (`@kubuild/core`)
33
+ - 📐 **Zod Schemas & Document Types** (`@kubuild/schema`)
34
+ - **Seamless Types & Re-exports**: Everything is re-exported from the top-level `@kubuild/react` module.
35
+ - **Production Ready**: Fully tree-shakeable with ESM and CJS builds.
36
+
37
+ ---
38
+
39
+ ## 🚀 Quick Usage
40
+
41
+ ### Full Page Builder Application
42
+
43
+ ```tsx
44
+ import React from 'react';
45
+ import {
46
+ Editor,
47
+ Renderer,
48
+ PageDocumentSchema,
49
+ type PageDocument
50
+ } from '@kubuild/react';
51
+
52
+ const initialDoc: PageDocument = {
53
+ schema: 'stora.page',
54
+ version: '1.0.0',
55
+ metadata: {
56
+ title: 'Landing Page'
57
+ },
58
+ document: {
59
+ id: 'root-1',
60
+ type: 'container',
61
+ children: [
62
+ {
63
+ id: 'heading-1',
64
+ type: 'heading',
65
+ props: { content: 'Welcome to KUBUILD' },
66
+ styles: { fontSize: '2.5rem', fontWeight: 'bold' }
67
+ }
68
+ ]
69
+ }
70
+ };
71
+
72
+ export const App: React.FC = () => {
73
+ const [isEditing, setIsEditing] = React.useState(true);
74
+ const [doc, setDoc] = React.useState<PageDocument>(initialDoc);
75
+
76
+ return (
77
+ <div style={{ width: '100vw', height: '100vh' }}>
78
+ <button
79
+ onClick={() => setIsEditing(!isEditing)}
80
+ style={{ position: 'fixed', top: 12, right: 12, zIndex: 9999 }}
81
+ >
82
+ {isEditing ? 'Switch to Preview' : 'Back to Editor'}
83
+ </button>
84
+
85
+ {isEditing ? (
86
+ <Editor
87
+ initialDocument={doc}
88
+ onSave={(newDoc) => setDoc(newDoc)}
89
+ />
90
+ ) : (
91
+ <div style={{ padding: '2rem' }}>
92
+ <Renderer document={doc} />
93
+ </div>
94
+ )}
95
+ </div>
96
+ );
97
+ };
98
+ ```
99
+
100
+ ---
101
+
102
+ ## 🏗️ Architecture
103
+
104
+ `@kubuild/react` serves as the umbrella package for the KUBUILD ecosystem:
105
+
106
+ ```
107
+ @kubuild/react
108
+ ├── @kubuild/editor (Visual builder UI, canvas, inspector, action builder)
109
+ ├── @kubuild/renderer (Recursive React renderer, action dispatcher, styles)
110
+ ├── @kubuild/components (Registry, definitions, starter form templates)
111
+ ├── @kubuild/core (Document engine, pipeline executor, state store)
112
+ └── @kubuild/schema (Zod validation schemas, TypeScript interfaces)
113
+ ```
114
+
115
+ ---
116
+
117
+ ## 📄 License
118
+
119
+ MIT © [KUBUILD](https://github.com/kustora/kubuild)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubuild/react",
3
- "version": "0.0.1",
3
+ "version": "0.2.0",
4
4
  "description": "Unified React entrypoint for KUBUILD: editor, renderer, and document utilities",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -20,14 +20,6 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "scripts": {
24
- "build": "tsup && tsc --emitDeclarationOnly",
25
- "dev": "tsup --watch",
26
- "typecheck": "tsc --noEmit",
27
- "lint": "eslint src",
28
- "test": "vitest run",
29
- "prepublishOnly": "pnpm run build"
30
- },
31
23
  "repository": {
32
24
  "type": "git",
33
25
  "url": "git+https://github.com/kustora/kubuild.git"
@@ -47,11 +39,11 @@
47
39
  },
48
40
  "homepage": "https://github.com/kustora/kubuild#readme",
49
41
  "dependencies": {
50
- "@kubuild/components": "workspace:*",
51
- "@kubuild/core": "workspace:*",
52
- "@kubuild/editor": "workspace:*",
53
- "@kubuild/renderer": "workspace:*",
54
- "@kubuild/schema": "workspace:*"
42
+ "@kubuild/components": "0.2.0",
43
+ "@kubuild/renderer": "0.2.0",
44
+ "@kubuild/core": "0.2.0",
45
+ "@kubuild/editor": "0.2.0",
46
+ "@kubuild/schema": "0.2.0"
55
47
  },
56
48
  "peerDependencies": {
57
49
  "react": ">=18.0.0",
@@ -65,5 +57,12 @@
65
57
  "tsup": "^8.3.6",
66
58
  "typescript": "^6.0.0",
67
59
  "vitest": "^3.0.5"
60
+ },
61
+ "scripts": {
62
+ "build": "tsup && tsc --emitDeclarationOnly",
63
+ "dev": "tsup --watch",
64
+ "typecheck": "tsc --noEmit",
65
+ "lint": "eslint src",
66
+ "test": "vitest run"
68
67
  }
69
- }
68
+ }