-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
31 lines (29 loc) · 853 Bytes
/
index.ts
File metadata and controls
31 lines (29 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
/**
* UI Protocol Exports
*
* Presentation & Interaction
* - App, Page, View (Grid/Kanban)
* - Dashboard (Widgets), Report
* - Action (Triggers)
* - Chart (Unified Visualization Types)
*/
export * from './chart.zod';
export * from './i18n.zod';
export * from './responsive.zod';
export * from './app.zod';
export * from './view.zod';
export * from './dashboard.zod';
export * from './report.zod';
export * from './action.zod';
export * from './page.zod';
export * from './widget.zod';
export * from './component.zod';
export * from './theme.zod';
export * from './touch.zod';
export * from './offline.zod';
export * from './keyboard.zod';
export * from './animation.zod';
export * from './notification.zod';
export * from './dnd.zod';
export * from './interface.zod';