-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextras.ts
More file actions
88 lines (78 loc) · 3.12 KB
/
Copy pathextras.ts
File metadata and controls
88 lines (78 loc) · 3.12 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// ---------------------------------------------------------------------------
// SibuJS — Extras
// Convenience re-export of all advanced features. Prefer importing from
// specific subpaths for better tree-shaking:
// import { query } from "sibujs/data";
// import { media } from "sibujs/browser";
// import { machine } from "sibujs/patterns";
// import { transition } from "sibujs/motion";
// ---------------------------------------------------------------------------
// Domain subpaths (re-exported for convenience)
export * from "./data";
export * from "./browser";
export * from "./patterns";
export * from "./motion";
// UI utilities (not in a subpath yet)
export * from "./src/ui/form";
export * from "./src/ui/virtualList";
export * from "./src/ui/intersection";
export * from "./src/ui/inputMask";
export * from "./src/ui/a11y";
export * from "./src/ui/scopedStyle";
export * from "./src/ui/reactiveAttr";
export * from "./src/ui/dialog";
export * from "./src/ui/toast";
export * from "./src/ui/infiniteScroll";
export * from "./src/ui/pagination";
export * from "./src/ui/eventBus";
// Performance & scheduling
export * from "./src/performance/scheduler";
export * from "./src/performance/concurrent";
export * from "./src/performance/domRecycler";
export * from "./src/performance/bundleOptimize";
export * from "./src/performance/compiled";
export * from "./src/performance/normalize";
export * from "./src/performance/chunkLoader";
// Head & SSR
export * from "./src/platform/head";
export * from "./src/platform/ssr";
// Platform integration
export * from "./src/platform/customElement";
export * from "./src/platform/worker";
export * from "./src/platform/wasm";
export * from "./src/platform/microfrontend";
export * from "./src/platform/serviceWorker";
export * from "./src/platform/staticSiteGenerator";
export * from "./src/platform/incrementalRegeneration";
export * from "./src/platform/routeActions";
export * from "./src/platform/scrollRestoration";
export * from "./src/platform/routeMiddleware";
// Plugin system & extensibility
export * from "./src/plugins/plugin";
export * from "./src/plugins/modular";
export * from "./src/plugins/ecosystem";
export * from "./src/plugins/versioning";
export * from "./src/plugins/startup";
// Developer tools
export * from "./src/devtools/debug";
export * from "./src/devtools/devtools";
export * from "./src/devtools/hmr";
export * from "./src/devtools/sourceMaps";
export * from "./src/devtools/debugValue";
export * from "./src/devtools/componentProfiler";
export * from "./src/devtools/introspect";
export * from "./src/devtools/devtoolsOverlay";
// Design system widgets
export * from "./src/widgets/Combobox";
export * from "./src/widgets/Tabs";
export * from "./src/widgets/Accordion";
export * from "./src/widgets/Popover";
export * from "./src/widgets/Select";
export * from "./src/widgets/Tooltip";
export * from "./src/widgets/FileUpload";
export * from "./src/widgets/contentEditable";
export * from "./src/widgets/datePicker";
// Ecosystem — State management adapters
export * from "./src/ecosystem/adapters";
// Ecosystem — UI component library adapters
export * from "./src/ecosystem/ui";