@rezi-ui/jsx 0.1.0-alpha.7 → 0.1.0-alpha.70
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 +45 -2
- package/dist/components.d.ts +41 -1
- package/dist/components.d.ts.map +1 -1
- package/dist/components.js +215 -223
- package/dist/components.js.map +1 -1
- package/dist/createElement.d.ts.map +1 -1
- package/dist/createElement.js +33 -1
- package/dist/createElement.js.map +1 -1
- package/dist/index.d.ts +6 -30
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -28
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +154 -7
- package/dist/types.d.ts.map +1 -1
- package/package.json +9 -6
- package/dist/__tests__/advanced.test.d.ts +0 -3
- package/dist/__tests__/advanced.test.d.ts.map +0 -1
- package/dist/__tests__/advanced.test.js +0 -146
- package/dist/__tests__/advanced.test.js.map +0 -1
- package/dist/__tests__/children.test.d.ts +0 -2
- package/dist/__tests__/children.test.d.ts.map +0 -1
- package/dist/__tests__/children.test.js +0 -31
- package/dist/__tests__/children.test.js.map +0 -1
- package/dist/__tests__/containers.test.d.ts +0 -3
- package/dist/__tests__/containers.test.d.ts.map +0 -1
- package/dist/__tests__/containers.test.js +0 -30
- package/dist/__tests__/containers.test.js.map +0 -1
- package/dist/__tests__/data.test.d.ts +0 -3
- package/dist/__tests__/data.test.d.ts.map +0 -1
- package/dist/__tests__/data.test.js +0 -30
- package/dist/__tests__/data.test.js.map +0 -1
- package/dist/__tests__/fragment.test.d.ts +0 -3
- package/dist/__tests__/fragment.test.d.ts.map +0 -1
- package/dist/__tests__/fragment.test.js +0 -21
- package/dist/__tests__/fragment.test.js.map +0 -1
- package/dist/__tests__/function-components.test.d.ts +0 -3
- package/dist/__tests__/function-components.test.d.ts.map +0 -1
- package/dist/__tests__/function-components.test.js +0 -42
- package/dist/__tests__/function-components.test.js.map +0 -1
- package/dist/__tests__/integration.test.d.ts +0 -3
- package/dist/__tests__/integration.test.d.ts.map +0 -1
- package/dist/__tests__/integration.test.js +0 -23
- package/dist/__tests__/integration.test.js.map +0 -1
- package/dist/__tests__/interactive.test.d.ts +0 -3
- package/dist/__tests__/interactive.test.d.ts.map +0 -1
- package/dist/__tests__/interactive.test.js +0 -23
- package/dist/__tests__/interactive.test.js.map +0 -1
- package/dist/__tests__/jsx-runtime.test.d.ts +0 -3
- package/dist/__tests__/jsx-runtime.test.d.ts.map +0 -1
- package/dist/__tests__/jsx-runtime.test.js +0 -50
- package/dist/__tests__/jsx-runtime.test.js.map +0 -1
- package/dist/__tests__/layout.test.d.ts +0 -3
- package/dist/__tests__/layout.test.d.ts.map +0 -1
- package/dist/__tests__/layout.test.js +0 -44
- package/dist/__tests__/layout.test.js.map +0 -1
- package/dist/__tests__/text.test.d.ts +0 -3
- package/dist/__tests__/text.test.d.ts.map +0 -1
- package/dist/__tests__/text.test.js +0 -39
- package/dist/__tests__/text.test.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# @rezi-ui/jsx
|
|
2
2
|
|
|
3
|
-
JSX runtime for
|
|
3
|
+
`@rezi-ui/jsx` is the native JSX runtime for Rezi. It maps JSX directly to Rezi VNodes and keeps full API parity with `ui.*()` from `@rezi-ui/core`.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Quick Setup
|
|
6
|
+
|
|
7
|
+
Install:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @rezi-ui/core @rezi-ui/jsx @rezi-ui/node
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Configure TypeScript:
|
|
6
14
|
|
|
7
15
|
```json
|
|
8
16
|
{
|
|
@@ -12,3 +20,38 @@ Use with TypeScript automatic JSX runtime:
|
|
|
12
20
|
}
|
|
13
21
|
}
|
|
14
22
|
```
|
|
23
|
+
|
|
24
|
+
## Minimal Example
|
|
25
|
+
|
|
26
|
+
```tsx
|
|
27
|
+
import { createNodeApp } from "@rezi-ui/node";
|
|
28
|
+
import { Button, Page, Panel, Text } from "@rezi-ui/jsx";
|
|
29
|
+
|
|
30
|
+
const app = createNodeApp({ initialState: { count: 0 } });
|
|
31
|
+
|
|
32
|
+
app.view((state) => (
|
|
33
|
+
<Page
|
|
34
|
+
p={1}
|
|
35
|
+
body={
|
|
36
|
+
<Panel title="Counter">
|
|
37
|
+
<Text>Count: {state.count}</Text>
|
|
38
|
+
<Button id="inc" label="+1" intent="primary" />
|
|
39
|
+
</Panel>
|
|
40
|
+
}
|
|
41
|
+
/>
|
|
42
|
+
));
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Component Surface
|
|
46
|
+
|
|
47
|
+
- 84 exported JSX components/functions
|
|
48
|
+
- 83 `ui.*()` parity components + `Fragment`
|
|
49
|
+
|
|
50
|
+
## Performance Note
|
|
51
|
+
|
|
52
|
+
The JSX layer is intentionally thin. Components delegate to core `ui.*()` factories so behavior stays consistent and overhead remains minimal.
|
|
53
|
+
|
|
54
|
+
## Documentation
|
|
55
|
+
|
|
56
|
+
- Full guide: `docs/getting-started/jsx.md`
|
|
57
|
+
- Package docs: `docs/packages/jsx.md`
|
package/dist/components.d.ts
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
import type { VNode } from "@rezi-ui/core";
|
|
2
2
|
import { type JsxChildren } from "./children.js";
|
|
3
|
-
import type { BadgeJsxProps, BarChartJsxProps, BoxJsxProps, ButtonJsxProps, CalloutJsxProps, CheckboxJsxProps, CodeEditorJsxProps, ColumnJsxProps, CommandPaletteJsxProps, DiffViewerJsxProps, DividerJsxProps, DropdownJsxProps, EmptyJsxProps, ErrorDisplayJsxProps, FieldJsxProps, FilePickerJsxProps, FileTreeExplorerJsxProps, FocusTrapJsxProps, FocusZoneJsxProps, GaugeJsxProps, IconJsxProps, InputJsxProps, KbdJsxProps, LayerJsxProps, LayersJsxProps, LogsConsoleJsxProps, MiniChartJsxProps, ModalJsxProps, PanelGroupJsxProps, ProgressJsxProps, RadioGroupJsxProps, ResizablePanelJsxProps, RichTextJsxProps, RowJsxProps, SelectJsxProps, SkeletonJsxProps, SpacerJsxProps, SparklineJsxProps, SpinnerJsxProps, SplitPaneJsxProps, StatusJsxProps, TableJsxProps, TagJsxProps, TextJsxProps, ToastContainerJsxProps, ToolApprovalDialogJsxProps, TreeJsxProps, VirtualListJsxProps } from "./types.js";
|
|
3
|
+
import type { AccordionJsxProps, ActionsJsxProps, AppShellJsxProps, BadgeJsxProps, BarChartJsxProps, BoxJsxProps, BreadcrumbJsxProps, ButtonJsxProps, CalloutJsxProps, CanvasJsxProps, CardJsxProps, CenterJsxProps, CheckboxJsxProps, CodeEditorJsxProps, ColumnJsxProps, CommandPaletteJsxProps, DialogJsxProps, DiffViewerJsxProps, DividerJsxProps, DropdownJsxProps, EmptyJsxProps, ErrorBoundaryJsxProps, ErrorDisplayJsxProps, FieldJsxProps, FilePickerJsxProps, FileTreeExplorerJsxProps, FocusAnnouncerJsxProps, FocusTrapJsxProps, FocusZoneJsxProps, FormJsxProps, GaugeJsxProps, GridJsxProps, HeaderJsxProps, HeatmapJsxProps, IconJsxProps, ImageJsxProps, InputJsxProps, KbdJsxProps, KeybindingHelpJsxProps, LayerJsxProps, LayersJsxProps, LineChartJsxProps, LinkJsxProps, LogsConsoleJsxProps, MasterDetailJsxProps, MiniChartJsxProps, ModalJsxProps, PageJsxProps, PaginationJsxProps, PanelGroupJsxProps, PanelJsxProps, ProgressJsxProps, RadioGroupJsxProps, ResizablePanelJsxProps, RichTextJsxProps, RouterBreadcrumbJsxProps, RouterTabsJsxProps, RowJsxProps, ScatterJsxProps, SelectJsxProps, SidebarJsxProps, SkeletonJsxProps, SliderJsxProps, SpacerJsxProps, SparklineJsxProps, SpinnerJsxProps, SplitPaneJsxProps, StatusBarJsxProps, StatusJsxProps, TableJsxProps, TabsJsxProps, TagJsxProps, TextJsxProps, TextareaJsxProps, ThemedJsxProps, ToastContainerJsxProps, ToolApprovalDialogJsxProps, ToolbarJsxProps, TreeJsxProps, VirtualListJsxProps } from "./types.js";
|
|
4
4
|
export declare function Box(props: BoxJsxProps): VNode;
|
|
5
5
|
export declare function Row(props: RowJsxProps): VNode;
|
|
6
6
|
export declare function Column(props: ColumnJsxProps): VNode;
|
|
7
|
+
export declare function Themed(props: ThemedJsxProps): VNode;
|
|
8
|
+
export declare function Grid(props: GridJsxProps): VNode;
|
|
7
9
|
export declare function Layers(props: LayersJsxProps): VNode;
|
|
8
10
|
export declare function FocusZone(props: FocusZoneJsxProps): VNode;
|
|
9
11
|
export declare function FocusTrap(props: FocusTrapJsxProps): VNode;
|
|
10
12
|
export declare function SplitPane(props: SplitPaneJsxProps): VNode;
|
|
11
13
|
export declare function PanelGroup(props: PanelGroupJsxProps): VNode;
|
|
12
14
|
export declare function ResizablePanel(props: ResizablePanelJsxProps): VNode;
|
|
15
|
+
export declare function Panel(props: PanelJsxProps): VNode;
|
|
16
|
+
export declare function Form(props: FormJsxProps): VNode;
|
|
17
|
+
export declare function Actions(props: ActionsJsxProps): VNode;
|
|
18
|
+
export declare function Center(props: CenterJsxProps): VNode;
|
|
19
|
+
export declare function Page(props: PageJsxProps): VNode;
|
|
20
|
+
export declare function AppShell(props: AppShellJsxProps): VNode;
|
|
21
|
+
export declare function Card(props: CardJsxProps): VNode;
|
|
22
|
+
export declare function Toolbar(props: ToolbarJsxProps): VNode;
|
|
23
|
+
export declare function StatusBar(props: StatusBarJsxProps): VNode;
|
|
24
|
+
export declare function Header(props: HeaderJsxProps): VNode;
|
|
25
|
+
export declare function Sidebar(props: SidebarJsxProps): VNode;
|
|
26
|
+
export declare function MasterDetail(props: MasterDetailJsxProps): VNode;
|
|
13
27
|
export declare function Text(props: TextJsxProps): VNode;
|
|
14
28
|
export declare function Field(props: FieldJsxProps): VNode;
|
|
15
29
|
export declare function Spacer(props: SpacerJsxProps): VNode;
|
|
@@ -26,13 +40,23 @@ export declare function Tag(props: TagJsxProps): VNode;
|
|
|
26
40
|
export declare function Gauge(props: GaugeJsxProps): VNode;
|
|
27
41
|
export declare function Empty(props: EmptyJsxProps): VNode;
|
|
28
42
|
export declare function ErrorDisplay(props: ErrorDisplayJsxProps): VNode;
|
|
43
|
+
export declare function ErrorBoundary(props: ErrorBoundaryJsxProps): VNode;
|
|
29
44
|
export declare function Callout(props: CalloutJsxProps): VNode;
|
|
45
|
+
export declare function Link(props: LinkJsxProps): VNode;
|
|
46
|
+
export declare function Canvas(props: CanvasJsxProps): VNode;
|
|
47
|
+
export declare function Image(props: ImageJsxProps): VNode;
|
|
48
|
+
export declare function LineChart(props: LineChartJsxProps): VNode;
|
|
49
|
+
export declare function Scatter(props: ScatterJsxProps): VNode;
|
|
50
|
+
export declare function Heatmap(props: HeatmapJsxProps): VNode;
|
|
30
51
|
export declare function Sparkline(props: SparklineJsxProps): VNode;
|
|
31
52
|
export declare function BarChart(props: BarChartJsxProps): VNode;
|
|
32
53
|
export declare function MiniChart(props: MiniChartJsxProps): VNode;
|
|
33
54
|
export declare function Button(props: ButtonJsxProps): VNode;
|
|
34
55
|
export declare function Input(props: InputJsxProps): VNode;
|
|
56
|
+
export declare function Textarea(props: TextareaJsxProps): VNode;
|
|
57
|
+
export declare function Slider(props: SliderJsxProps): VNode;
|
|
35
58
|
export declare function VirtualList<T = unknown>(props: VirtualListJsxProps<T>): VNode;
|
|
59
|
+
export declare function Dialog(props: DialogJsxProps): VNode;
|
|
36
60
|
export declare function Modal(props: ModalJsxProps): VNode;
|
|
37
61
|
export declare function Dropdown(props: DropdownJsxProps): VNode;
|
|
38
62
|
export declare function Layer(props: LayerJsxProps): VNode;
|
|
@@ -41,6 +65,14 @@ export declare function Tree<T = unknown>(props: TreeJsxProps<T>): VNode;
|
|
|
41
65
|
export declare function Select(props: SelectJsxProps): VNode;
|
|
42
66
|
export declare function Checkbox(props: CheckboxJsxProps): VNode;
|
|
43
67
|
export declare function RadioGroup(props: RadioGroupJsxProps): VNode;
|
|
68
|
+
export declare function Tabs(props: TabsJsxProps): VNode;
|
|
69
|
+
export declare function Accordion(props: AccordionJsxProps): VNode;
|
|
70
|
+
export declare function Breadcrumb(props: BreadcrumbJsxProps): VNode;
|
|
71
|
+
export declare function Pagination(props: PaginationJsxProps): VNode;
|
|
72
|
+
export declare function FocusAnnouncer(props: FocusAnnouncerJsxProps): VNode;
|
|
73
|
+
export declare function KeybindingHelp(props: KeybindingHelpJsxProps): VNode;
|
|
74
|
+
export declare function RouterBreadcrumb<S = unknown>(props: RouterBreadcrumbJsxProps<S>): VNode;
|
|
75
|
+
export declare function RouterTabs<S = unknown>(props: RouterTabsJsxProps<S>): VNode;
|
|
44
76
|
export declare function CommandPalette(props: CommandPaletteJsxProps): VNode;
|
|
45
77
|
export declare function FilePicker(props: FilePickerJsxProps): VNode;
|
|
46
78
|
export declare function FileTreeExplorer(props: FileTreeExplorerJsxProps): VNode;
|
|
@@ -49,7 +81,15 @@ export declare function DiffViewer(props: DiffViewerJsxProps): VNode;
|
|
|
49
81
|
export declare function ToolApprovalDialog(props: ToolApprovalDialogJsxProps): VNode;
|
|
50
82
|
export declare function LogsConsole(props: LogsConsoleJsxProps): VNode;
|
|
51
83
|
export declare function ToastContainer(props: ToastContainerJsxProps): VNode;
|
|
84
|
+
/**
|
|
85
|
+
* JSX Fragment — renders children inside a `ui.column({ gap: 0 })`.
|
|
86
|
+
*
|
|
87
|
+
* NOTE: Unlike React fragments, this is NOT transparent. It creates
|
|
88
|
+
* a real column layout node. Inside a `<Row>`, prefer explicit
|
|
89
|
+
* children instead of `<>...</>` to avoid an intermediate column.
|
|
90
|
+
*/
|
|
52
91
|
export declare function Fragment(props: {
|
|
53
92
|
children?: JsxChildren;
|
|
93
|
+
key?: string;
|
|
54
94
|
}): VNode;
|
|
55
95
|
//# sourceMappingURL=components.d.ts.map
|
package/dist/components.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
|